Changeset 788 for branches/MESI
- Timestamp:
- Sep 3, 2014, 10:56:02 AM (10 years ago)
- Location:
- branches/MESI/modules/vci_mem_cache/caba/source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/MESI/modules/vci_mem_cache/caba/source/include/vci_mem_cache.h
r785 r788 542 542 void reset_counters(); 543 543 void print_stats(bool activity_counters, bool stats); 544 void print_trace( size_t detailled = 0);544 void print_trace(size_t detailled = 0); 545 545 void cache_monitor(addr_t addr); 546 546 void start_monitor(addr_t addr, addr_t length); -
branches/MESI/modules/vci_mem_cache/caba/source/src/vci_mem_cache.cpp
r785 r788 891 891 892 892 ///////////////////////////////////////// 893 tmpl(void)::print_stats(bool activity_counters) 893 tmpl(void)::print_stats(bool activity_counters, bool stats) 894 ///////////////////////////////////////// 895 // @param stats is unused at the moment 894 896 { 895 897 std::cout << "**********************************" << std::dec << std::endl; … … 7683 7685 case CC_SEND_CONFIG_IDLE: // XRAM_RSP FSM has highest priority 7684 7686 { 7685 bool cc_send_updt_delay = not r_read_to_cc_send_type.read() andr_tgt_rsp_fsm.read() == TGT_RSP_CLEANUP and7687 bool cc_send_updt_delay = r_tgt_rsp_fsm.read() == TGT_RSP_CLEANUP and 7686 7688 r_read_to_cc_send_nline.read() == r_cleanup_to_tgt_rsp_nline.read() and 7687 7689 m_read_to_cc_send_srcid_fifo.read() == r_cleanup_to_tgt_rsp_srcid.read(); … … 7752 7754 case CC_SEND_WRITE_IDLE: // CONFIG FSM has highest priority 7753 7755 { 7754 bool cc_send_updt_delay = not r_read_to_cc_send_type.read() andr_tgt_rsp_fsm.read() == TGT_RSP_CLEANUP and7756 bool cc_send_updt_delay = r_tgt_rsp_fsm.read() == TGT_RSP_CLEANUP and 7755 7757 r_read_to_cc_send_nline.read() == r_cleanup_to_tgt_rsp_nline.read() and 7756 7758 m_read_to_cc_send_srcid_fifo.read() == r_cleanup_to_tgt_rsp_srcid.read(); … … 7819 7821 case CC_SEND_XRAM_RSP_IDLE: // CAS FSM has highest priority 7820 7822 { 7821 bool cc_send_updt_delay = not r_read_to_cc_send_type.read() andr_tgt_rsp_fsm.read() == TGT_RSP_CLEANUP and7823 bool cc_send_updt_delay = r_tgt_rsp_fsm.read() == TGT_RSP_CLEANUP and 7822 7824 r_read_to_cc_send_nline.read() == r_cleanup_to_tgt_rsp_nline.read() and 7823 7825 m_read_to_cc_send_srcid_fifo.read() == r_cleanup_to_tgt_rsp_srcid.read(); … … 7886 7888 case CC_SEND_CAS_IDLE: // CLEANUP FSM has highest priority 7887 7889 { 7888 bool cc_send_updt_delay = not r_read_to_cc_send_type.read() andr_tgt_rsp_fsm.read() == TGT_RSP_CLEANUP and7890 bool cc_send_updt_delay = r_tgt_rsp_fsm.read() == TGT_RSP_CLEANUP and 7889 7891 r_read_to_cc_send_nline.read() == r_cleanup_to_tgt_rsp_nline.read() and 7890 7892 m_read_to_cc_send_srcid_fifo.read() == r_cleanup_to_tgt_rsp_srcid.read(); … … 7953 7955 case CC_SEND_READ_IDLE: // WRITE FSM has highest priority 7954 7956 { 7955 bool cc_send_updt_delay = not r_read_to_cc_send_type.read() andr_tgt_rsp_fsm.read() == TGT_RSP_CLEANUP and7957 bool cc_send_updt_delay = r_tgt_rsp_fsm.read() == TGT_RSP_CLEANUP and 7956 7958 r_read_to_cc_send_nline.read() == r_cleanup_to_tgt_rsp_nline.read() and 7957 7959 m_read_to_cc_send_srcid_fifo.read() == r_cleanup_to_tgt_rsp_srcid.read();
Note: See TracChangeset
for help on using the changeset viewer.