Changeset 50 for trunk/modules/vci_cc_vcache_wrapper2_v1
- Timestamp:
- Jun 13, 2010, 11:16:35 AM (14 years ago)
- Location:
- trunk/modules/vci_cc_vcache_wrapper2_v1/caba/source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/vci_cc_vcache_wrapper2_v1/caba/source/include/vci_cc_vcache_wrapper2_v1.h
r48 r50 482 482 uint32_t m_cpt_ins_tlb_occup_cache; // number of instruction tlb occupy data cache line 483 483 uint32_t m_cpt_data_tlb_occup_cache; // number of data tlb occupy data cache line 484 uint32_t m_cpt_tlb_occup y_dcache;484 uint32_t m_cpt_tlb_occup_dcache; 485 485 486 486 uint32_t m_cost_ins_tlb_miss_frz; // number of frozen cycles related to instruction tlb miss … … 514 514 uint32_t m_cpt_cc_inval_data; // number of coherence inval data packets 515 515 uint32_t m_cpt_cc_broadcast; // number of coherence broadcast packets 516 uint32_t m_cpt_cc_cleanup_ins; // number of coherence cleanup packets 517 uint32_t m_cpt_cc_cleanup_data; // number of coherence cleanup packets 518 519 uint32_t m_cpt_icleanup_transaction; // number of instruction cleanup transactions 520 uint32_t m_cpt_dcleanup_transaction; // number of instructinumber of data cleanup transactions 521 uint32_t m_cost_icleanup_transaction; // cumulated duration for VCI instruction cleanup transactions 522 uint32_t m_cost_dcleanup_transaction; // cumulated duration for VCI data cleanup transactions 516 523 517 524 uint32_t m_cost_ins_tlb_inval_frz; // number of frozen cycles related to checking ins tlb invalidate -
trunk/modules/vci_cc_vcache_wrapper2_v1/caba/source/src/vci_cc_vcache_wrapper2_v1.cpp
r48 r50 938 938 if (r_dcache_xtn_req) 939 939 { 940 if ( ireq.valid ) m_cost_ins_waste_wait_frz++;941 942 940 if ((int)r_dcache_type_save == (int)iss_t::XTN_PTPR ) 943 941 { … … 1996 1994 } 1997 1995 if( (( r_icache_fsm_save == ICACHE_TLB1_READ ) || ( r_icache_fsm_save == ICACHE_TLB2_READ ) || 1998 ( r_icache_fsm_save == ICACHE_TLB1_WRIT R) || ( r_icache_fsm_save == ICACHE_TLB2_WRITE ) ||1996 ( r_icache_fsm_save == ICACHE_TLB1_WRITE ) || ( r_icache_fsm_save == ICACHE_TLB2_WRITE ) || 1999 1997 ( r_icache_fsm_save == ICACHE_TLB1_UPDT ) || ( r_icache_fsm_save == ICACHE_TLB2_UPDT )) && (ireq.valid) ) 2000 1998 { … … 2027 2025 } 2028 2026 if( (( r_icache_fsm_save == ICACHE_TLB1_READ ) || ( r_icache_fsm_save == ICACHE_TLB2_READ ) || 2029 ( r_icache_fsm_save == ICACHE_TLB1_WRIT R) || ( r_icache_fsm_save == ICACHE_TLB2_WRITE ) ||2027 ( r_icache_fsm_save == ICACHE_TLB1_WRITE ) || ( r_icache_fsm_save == ICACHE_TLB2_WRITE ) || 2030 2028 ( r_icache_fsm_save == ICACHE_TLB1_UPDT ) || ( r_icache_fsm_save == ICACHE_TLB2_UPDT )) && (ireq.valid) ) 2031 2029 {
Note: See TracChangeset
for help on using the changeset viewer.