Changeset 445
- Timestamp:
- Jul 18, 2013, 10:49:36 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/v5/modules/vci_mem_cache/caba/source/src/vci_mem_cache.cpp
r442 r445 266 266 { 267 267 "ALLOC_DIR_RESET", 268 "ALLOC_DIR_CONFIG", 268 269 "ALLOC_DIR_READ", 269 270 "ALLOC_DIR_WRITE", … … 283 284 { 284 285 "ALLOC_UPT_WRITE", 285 "ALLOC_UPT_XRAM_RSP", 286 "ALLOC_UPT_MULTI_ACK", 287 "ALLOC_UPT_CLEANUP", 288 "ALLOC_UPT_CAS" 286 "ALLOC_UPT_CAS", 287 "ALLOC_UPT_MULTI_ACK" 288 }; 289 const char *alloc_ivt_fsm_str[] = 290 { 291 "ALLOC_IVT_WRITE", 292 "ALLOC_IVT_XRAM_RSP", 293 "ALLOC_IVT_CLEANUP", 294 "ALLOC_IVT_CAS", 295 "ALLOC_IVT_CONFIG" 289 296 }; 290 297 const char *alloc_heap_fsm_str[] = … … 601 608 << " | " << ixr_cmd_fsm_str[r_ixr_cmd_fsm.read()] 602 609 << " | " << ixr_rsp_fsm_str[r_ixr_rsp_fsm.read()] 603 << " | " << xram_rsp_fsm_str[r_xram_rsp_fsm ] << std::endl;610 << " | " << xram_rsp_fsm_str[r_xram_rsp_fsm.read()] << std::endl; 604 611 std::cout << " " << alloc_dir_fsm_str[r_alloc_dir_fsm.read()] 605 612 << " | " << alloc_trt_fsm_str[r_alloc_trt_fsm.read()] 606 613 << " | " << alloc_upt_fsm_str[r_alloc_upt_fsm.read()] 614 << " | " << alloc_ivt_fsm_str[r_alloc_ivt_fsm.read()] 607 615 << " | " << alloc_heap_fsm_str[r_alloc_heap_fsm.read()] << std::endl; 608 616 } … … 5000 5008 std::cout << " <MEMC " << name() 5001 5009 << " CLEANUP_SEND_CLACK> Send the response to a cleanup request:" 5002 << " srcid = " << std::dec << r_cleanup_srcid.read() << std::endl; 5010 << " nline = " << std::hex << r_cleanup_nline.read() 5011 << " / way = " << std::dec << r_cleanup_way.read() 5012 << " / srcid = " << std::dec << r_cleanup_srcid.read() 5013 << std::endl; 5003 5014 #endif 5004 5015 break; … … 6173 6184 if(m_debug) 6174 6185 std::cout << " <MEMC " << name() 6175 << " CC_SEND_XRAM_RSP_INVAL_NLINE> BC-Inval for line "6186 << " CC_SEND_XRAM_RSP_INVAL_NLINE> Multicast-Inval for line " 6176 6187 << std::hex << r_xram_rsp_to_cc_send_nline.read() << std::endl; 6177 6188 #endif
Note: See TracChangeset
for help on using the changeset viewer.