Changeset 330 for branches/v5
- Timestamp:
- Mar 20, 2013, 10:55:39 AM (12 years ago)
- Location:
- branches/v5/modules
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/v5/modules/dspin_local_ring_fast_c/caba/source/include/dspin_half_gateway_initiator_fast_c.h
r326 r330 34 34 35 35 #define BRDCST_TGT_MASK 0xFFFFFFFFE1ULL 36 #define HI_DEBUG36 //#define HI_DEBUG 37 37 38 38 namespace soclib { namespace caba { -
branches/v5/modules/dspin_local_ring_fast_c/caba/source/include/dspin_half_gateway_target_fast_c.h
r326 r330 33 33 #include "dspin_interface.h" 34 34 35 #define HT_DEBUG35 //#define HT_DEBUG 36 36 37 37 namespace soclib { namespace caba { -
branches/v5/modules/dspin_local_ring_fast_c/caba/source/include/dspin_local_ring_initiator_fast_c.h
r326 r330 88 88 89 89 #define BRDCST_TGT_MASK 0xFFFFFFFFE1ULL 90 #define I_DEBUG90 //#define I_DEBUG 91 91 92 92 namespace soclib { namespace caba { -
branches/v5/modules/dspin_local_ring_fast_c/caba/source/include/dspin_local_ring_target_fast_c.h
r326 r330 33 33 #include "dspin_interface.h" 34 34 35 #define T_DEBUG35 //#define T_DEBUG 36 36 37 37 namespace soclib { namespace caba { -
branches/v5/modules/vci_cc_vcache_wrapper_dspin_coherence/caba/source/src/vci_cc_vcache_wrapper.cpp
r329 r330 1610 1610 { 1611 1611 if ( m_ireq.valid ) m_cost_ins_miss_frz++; 1612 1613 // coherence interrupt1614 if ( r_cc_receive_icache_req.read() )1615 {1616 r_icache_fsm = ICACHE_CC_CHECK;1617 r_icache_fsm_save = r_icache_fsm.read();1618 break;1619 }1620 1612 1621 1613 if ( not r_icache_miss_clack.read() ) // waiting cleanup acknowledge for victim line … … 4039 4031 if ( m_dreq.valid) m_cost_data_miss_frz++; 4040 4032 4041 // coherence request (from CC_RECEIVE FSM)4042 if ( r_cc_receive_dcache_req.read() )4043 {4044 r_dcache_fsm = DCACHE_CC_CHECK;4045 r_dcache_fsm_cc_save = r_dcache_fsm.read();4046 break;4047 }4048 4049 4033 if ( not r_dcache_miss_clack.read() ) // waiting cleanup acknowledge 4050 4034 { -
branches/v5/modules/vci_mem_cache/caba/source/src/vci_mem_cache.cpp
r313 r330 916 916 exit(0); 917 917 } 918 if((p_vci_tgt.cmd.read() == vci_param::CMD_LOCKED_READ) && (p_vci_tgt.plen.read() != 8)) 919 { 920 std::cout 921 << "VCI_MEM_CACHE ERROR " << name() << " TGT_CMD_READ state" 922 << std::endl; 923 std::cout 924 << " ll command packets must have a plen of 8" 925 << std::endl; 926 exit(0); 927 } 918 928 919 929 if ( p_vci_tgt.cmdval && m_cmd_read_addr_fifo.wok() ) -
branches/v5/modules/vci_mem_cache_dspin_coherence/caba/source/src/vci_mem_cache.cpp
r328 r330 980 980 exit(0); 981 981 } 982 if((p_vci_tgt.cmd.read() == vci_param::CMD_LOCKED_READ) && (p_vci_tgt.plen.read() != 8)) 983 { 984 std::cout 985 << "VCI_MEM_CACHE ERROR " << name() << " TGT_CMD_READ state" 986 << std::endl; 987 std::cout 988 << " ll command packets must have a plen of 8" 989 << std::endl; 990 exit(0); 991 } 982 992 983 993 if(p_vci_tgt.cmdval && m_cmd_read_addr_fifo.wok())
Note: See TracChangeset
for help on using the changeset viewer.