Changeset 645 for branches/RWT/modules
- Timestamp:
- Feb 27, 2014, 12:32:14 PM (11 years ago)
- Location:
- branches/RWT/modules/vci_cc_vcache_wrapper/caba/source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RWT/modules/vci_cc_vcache_wrapper/caba/source/include/vci_cc_vcache_wrapper.h
r615 r645 541 541 //bool *r_dcache_in_tlb; // copy exist in dtlb or itlb 542 542 //bool *r_dcache_contains_ptd; // cache line contains a PTD 543 int *r_dcache_content_state; // content state of one cache line 544 int *r_dcache_dirty_word; // content state of one cache line 543 int *r_dcache_content_state; // content state of one cache line 544 int *r_dcache_dirty_word; 545 bool *r_dcache_zombi_ncc; 545 546 ////////////////////////////////////////////////////////////////////////////////////// 546 547 … … 644 645 // Activity counters 645 646 //////////////////////////////// 646 uint32_t m_cpt_dcache_data_read; // DCACHE DATA READ647 uint32_t m_cpt_dcache_data_write; // DCACHE DATA WRITE648 uint32_t m_cpt_dcache_dir_read; // DCACHE DIR READ649 uint32_t m_cpt_dcache_dir_write; // DCACHE DIR WRITE650 651 uint32_t m_cpt_icache_data_read; // ICACHE DATA READ652 uint32_t m_cpt_icache_data_write; // ICACHE DATA WRITE653 uint32_t m_cpt_icache_dir_read; // ICACHE DIR READ654 uint32_t m_cpt_icache_dir_write; // ICACHE DIR WRITE655 656 uint32_t m_cpt_frz_cycles; // number of cycles where the cpu is frozen657 uint32_t m_cpt_total_cycles; // total number of cycles647 uint32_t m_cpt_dcache_data_read; // DCACHE DATA READ 648 uint32_t m_cpt_dcache_data_write; // DCACHE DATA WRITE 649 uint32_t m_cpt_dcache_dir_read; // DCACHE DIR READ 650 uint32_t m_cpt_dcache_dir_write; // DCACHE DIR WRITE 651 652 uint32_t m_cpt_icache_data_read; // ICACHE DATA READ 653 uint32_t m_cpt_icache_data_write; // ICACHE DATA WRITE 654 uint32_t m_cpt_icache_dir_read; // ICACHE DIR READ 655 uint32_t m_cpt_icache_dir_write; // ICACHE DIR WRITE 656 657 uint32_t m_cpt_frz_cycles; // number of cycles where the cpu is frozen 658 uint32_t m_cpt_total_cycles; // total number of cycles 658 659 659 660 // Cache activity counters 660 uint32_t m_cpt_data_read; // total number of read data661 uint32_t m_cpt_data_write; // total number of write data661 uint32_t m_cpt_data_read; // total number of read data 662 uint32_t m_cpt_data_write; // total number of write data 662 663 uint32_t m_cpt_data_write_back; 663 664 uint32_t m_cpt_data_cleanup; 664 665 uint32_t m_cpt_data_sc; 665 uint32_t m_cpt_data_miss; // number of read miss666 uint32_t m_cpt_ins_miss; // number of instruction miss667 uint32_t m_cpt_unc_read; // number of read uncached668 uint32_t m_cpt_write_cached; // number of cached write669 uint32_t m_cpt_ins_read; // number of instruction read670 uint32_t m_cpt_ins_spc_miss; // number of speculative instruction miss671 672 uint32_t m_cost_write_frz; // number of frozen cycles related to write buffer673 uint32_t m_cost_data_miss_frz; // number of frozen cycles related to data miss674 uint32_t m_cost_unc_read_frz; // number of frozen cycles related to uncached read675 uint32_t m_cost_ins_miss_frz; // number of frozen cycles related to ins miss676 677 uint32_t m_cpt_imiss_transaction; // number of VCI instruction miss transactions678 uint32_t m_cpt_dmiss_transaction; // number of VCI data miss transactions679 uint32_t m_cpt_unc_transaction; // number of VCI uncached read transactions680 uint32_t m_cpt_dunc_transaction; // number of VCI uncached read transactions681 uint32_t m_cpt_ll_transaction; // number of VCI uncached read transactions682 uint32_t m_cpt_write_transaction; // number of VCI write transactions666 uint32_t m_cpt_data_miss; // number of read miss 667 uint32_t m_cpt_ins_miss; // number of instruction miss 668 uint32_t m_cpt_unc_read; // number of read uncached 669 uint32_t m_cpt_write_cached; // number of cached write 670 uint32_t m_cpt_ins_read; // number of instruction read 671 uint32_t m_cpt_ins_spc_miss; // number of speculative instruction miss 672 673 uint32_t m_cost_write_frz; // number of frozen cycles related to write buffer 674 uint32_t m_cost_data_miss_frz; // number of frozen cycles related to data miss 675 uint32_t m_cost_unc_read_frz; // number of frozen cycles related to uncached read 676 uint32_t m_cost_ins_miss_frz; // number of frozen cycles related to ins miss 677 678 uint32_t m_cpt_imiss_transaction; // number of VCI instruction miss transactions 679 uint32_t m_cpt_dmiss_transaction; // number of VCI data miss transactions 680 uint32_t m_cpt_unc_transaction; // number of VCI uncached read transactions 681 uint32_t m_cpt_dunc_transaction; // number of VCI uncached read transactions 682 uint32_t m_cpt_ll_transaction; // number of VCI uncached read transactions 683 uint32_t m_cpt_write_transaction; // number of VCI write transactions 683 684 uint32_t m_cpt_icache_unc_transaction; 684 685 685 uint32_t m_cost_imiss_transaction; // cumulated duration for VCI IMISS transactions686 uint32_t m_cost_dmiss_transaction; // cumulated duration for VCI DMISS transactions687 uint32_t m_cost_unc_transaction; // cumulated duration for VCI UNC transactions688 uint32_t m_cost_write_transaction; // cumulated duration for VCI WRITE transactions689 uint32_t m_cost_icache_unc_transaction; // cumulated duration for VCI IUNC transactions690 uint32_t m_length_write_transaction; // cumulated length for VCI WRITE transactions686 uint32_t m_cost_imiss_transaction; // cumulated duration for VCI IMISS transactions 687 uint32_t m_cost_dmiss_transaction; // cumulated duration for VCI DMISS transactions 688 uint32_t m_cost_unc_transaction; // cumulated duration for VCI UNC transactions 689 uint32_t m_cost_write_transaction; // cumulated duration for VCI WRITE transactions 690 uint32_t m_cost_icache_unc_transaction; // cumulated duration for VCI IUNC transactions 691 uint32_t m_length_write_transaction; // cumulated length for VCI WRITE transactions 691 692 692 693 // TLB activity counters 693 uint32_t m_cpt_ins_tlb_read; // number of instruction tlb read694 uint32_t m_cpt_ins_tlb_miss; // number of instruction tlb miss695 uint32_t m_cpt_ins_tlb_update_acc; // number of instruction tlb update696 uint32_t m_cpt_ins_tlb_occup_cache; // number of instruction tlb occupy data cache line697 uint32_t m_cpt_ins_tlb_hit_dcache; // number of instruction tlb hit in data cache698 699 uint32_t m_cpt_data_tlb_read; // number of data tlb read700 uint32_t m_cpt_data_tlb_miss; // number of data tlb miss701 uint32_t m_cpt_data_tlb_update_acc; // number of data tlb update702 uint32_t m_cpt_data_tlb_update_dirty; // number of data tlb update dirty703 uint32_t m_cpt_data_tlb_hit_dcache; // number of data tlb hit in data cache704 uint32_t m_cpt_data_tlb_occup_cache; // number of data tlb occupy data cache line694 uint32_t m_cpt_ins_tlb_read; // number of instruction tlb read 695 uint32_t m_cpt_ins_tlb_miss; // number of instruction tlb miss 696 uint32_t m_cpt_ins_tlb_update_acc; // number of instruction tlb update 697 uint32_t m_cpt_ins_tlb_occup_cache; // number of instruction tlb occupy data cache line 698 uint32_t m_cpt_ins_tlb_hit_dcache; // number of instruction tlb hit in data cache 699 700 uint32_t m_cpt_data_tlb_read; // number of data tlb read 701 uint32_t m_cpt_data_tlb_miss; // number of data tlb miss 702 uint32_t m_cpt_data_tlb_update_acc; // number of data tlb update 703 uint32_t m_cpt_data_tlb_update_dirty; // number of data tlb update dirty 704 uint32_t m_cpt_data_tlb_hit_dcache; // number of data tlb hit in data cache 705 uint32_t m_cpt_data_tlb_occup_cache; // number of data tlb occupy data cache line 705 706 uint32_t m_cpt_tlb_occup_dcache; 706 707 707 uint32_t m_cost_ins_tlb_miss_frz; // number of frozen cycles related to instruction tlb miss708 uint32_t m_cost_data_tlb_miss_frz; // number of frozen cycles related to data tlb miss708 uint32_t m_cost_ins_tlb_miss_frz; // number of frozen cycles related to instruction tlb miss 709 uint32_t m_cost_data_tlb_miss_frz; // number of frozen cycles related to data tlb miss 709 710 uint32_t m_cost_ins_tlb_update_acc_frz; // number of frozen cycles related to instruction tlb update acc 710 711 uint32_t m_cost_data_tlb_update_acc_frz; // number of frozen cycles related to data tlb update acc … … 722 723 uint32_t m_cpt_dtlb_sc_dirty_transaction; // number of dtlb sc dirty transactions 723 724 724 uint32_t m_cost_itlbmiss_transaction; 725 uint32_t m_cost_itlb_ll_transaction; 726 uint32_t m_cost_itlb_sc_transaction; 727 uint32_t m_cost_dtlbmiss_transaction; 728 uint32_t m_cost_dtlb_ll_transaction; 729 uint32_t m_cost_dtlb_sc_transaction; 730 uint32_t m_cost_dtlb_ll_dirty_transaction; 731 uint32_t m_cost_dtlb_sc_dirty_transaction; 725 uint32_t m_cost_itlbmiss_transaction; // cumulated duration for VCI instruction TLB miss transactions 726 uint32_t m_cost_itlb_ll_transaction; // cumulated duration for VCI instruction TLB ll acc transactions 727 uint32_t m_cost_itlb_sc_transaction; // cumulated duration for VCI instruction TLB sc acc transactions 728 uint32_t m_cost_dtlbmiss_transaction; // cumulated duration for VCI data TLB miss transactions 729 uint32_t m_cost_dtlb_ll_transaction; // cumulated duration for VCI data TLB ll acc transactions 730 uint32_t m_cost_dtlb_sc_transaction; // cumulated duration for VCI data TLB sc acc transactions 731 uint32_t m_cost_dtlb_ll_dirty_transaction; // cumulated duration for VCI data TLB ll dirty transactions 732 uint32_t m_cost_dtlb_sc_dirty_transaction; // cumulated duration for VCI data TLB sc dirty transactions 732 733 733 734 // coherence activity counters 734 uint32_t m_cpt_cc_update_icache; // number of coherence update instruction commands 735 uint32_t m_cpt_cc_update_dcache; // number of coherence update data commands 736 uint32_t m_cpt_cc_inval_icache; // number of coherence inval instruction commands 737 uint32_t m_cpt_cc_inval_dcache; // number of coherence inval data commands 738 uint32_t m_cpt_cc_broadcast; // number of coherence broadcast commands 739 740 uint32_t m_cost_updt_data_frz; // number of frozen cycles related to coherence update data packets 741 uint32_t m_cost_inval_ins_frz; // number of frozen cycles related to coherence inval instruction packets 742 uint32_t m_cost_inval_data_frz; // number of frozen cycles related to coherence inval data packets 743 uint32_t m_cost_broadcast_frz; // number of frozen cycles related to coherence broadcast packets 744 745 uint32_t m_cpt_cc_cleanup_ins; // number of coherence cleanup packets 746 uint32_t m_cpt_cc_cleanup_data; // number of coherence cleanup packets 747 uint32_t m_cpt_cleanup_data_not_dirty; 748 uint32_t m_cpt_cleanup_data_dirty_word; 749 750 uint32_t m_cpt_icleanup_transaction; // number of instruction cleanup transactions 751 uint32_t m_cpt_dcleanup_transaction; // number of instructinumber of data cleanup transactions 752 uint32_t m_cost_icleanup_transaction; // cumulated duration for VCI instruction cleanup transactions 753 uint32_t m_cost_dcleanup_transaction; // cumulated duration for VCI data cleanup transactions 754 755 uint32_t m_cost_ins_tlb_inval_frz; // number of frozen cycles related to checking ins tlb invalidate 756 uint32_t m_cpt_ins_tlb_inval; // number of ins tlb invalidate 757 758 uint32_t m_cost_data_tlb_inval_frz; // number of frozen cycles related to checking data tlb invalidate 759 uint32_t m_cpt_data_tlb_inval; // number of data tlb invalidate 735 uint32_t m_cpt_cc_update_icache; // number of coherence update instruction commands 736 uint32_t m_cpt_cc_update_dcache; // number of coherence update data commands 737 uint32_t m_cpt_cc_inval_icache; // number of coherence inval instruction commands 738 uint32_t m_cpt_cc_inval_dcache; // number of coherence inval data commands 739 uint32_t m_cpt_cc_broadcast; // number of coherence broadcast commands 740 741 uint32_t m_cost_updt_data_frz; // number of frozen cycles related to coherence update data packets 742 uint32_t m_cost_inval_ins_frz; // number of frozen cycles related to coherence inval instruction packets 743 uint32_t m_cost_inval_data_frz; // number of frozen cycles related to coherence inval data packets 744 uint32_t m_cost_broadcast_frz; // number of frozen cycles related to coherence broadcast packets 745 746 uint32_t m_cpt_cc_cleanup_ins; // number of coherence cleanup packets 747 uint32_t m_cpt_cc_cleanup_data; // number of coherence cleanup packets 748 uint32_t m_cpt_cleanup_data_not_dirty; // number of total cleanup data without extra data flits 749 uint32_t m_cpt_cleanup_data_dirty_word; // number of total words dirty in cleanup data 750 uint32_t m_cpt_data_write_miss; // number of total write miss 751 uint32_t m_cpt_data_write_on_zombi; // number of frozen cycles related to blocked write on line NCC/CC ZOMBI 752 uint32_t m_cpt_data_write_on_zombi_ncc; // number of frozen cycles related to blocked write on line NCC ZOMBI 753 754 uint32_t m_cpt_icleanup_transaction; // number of instruction cleanup transactions 755 uint32_t m_cpt_dcleanup_transaction; // number of instructinumber of data cleanup transactions 756 uint32_t m_cost_icleanup_transaction; // cumulated duration for VCI instruction cleanup transactions 757 uint32_t m_cost_dcleanup_transaction; // cumulated duration for VCI data cleanup transactions 758 759 uint32_t m_cost_ins_tlb_inval_frz; // number of frozen cycles related to checking ins tlb invalidate 760 uint32_t m_cpt_ins_tlb_inval; // number of ins tlb invalidate 761 762 uint32_t m_cost_data_tlb_inval_frz; // number of frozen cycles related to checking data tlb invalidate 763 uint32_t m_cpt_data_tlb_inval; // number of data tlb invalidate 760 764 761 765 // FSM activity counters -
branches/RWT/modules/vci_cc_vcache_wrapper/caba/source/src/vci_cc_vcache_wrapper.cpp
r615 r645 441 441 //r_dcache_in_tlb = new bool[dcache_ways*dcache_sets]; 442 442 //r_dcache_contains_ptd = new bool[dcache_ways*dcache_sets]; 443 r_dcache_content_state = new int [dcache_ways*dcache_sets]; 444 r_dcache_dirty_word = new int [dcache_ways*dcache_sets*dcache_words]; 443 r_dcache_content_state = new int [dcache_ways*dcache_sets]; 444 r_dcache_dirty_word = new int [dcache_ways*dcache_sets*dcache_words]; 445 r_dcache_zombi_ncc = new bool [dcache_ways*dcache_sets]; 445 446 /////////////////////////////////////////////////////////// 446 447 … … 474 475 delete [] r_dcache_content_state; 475 476 delete [] r_dcache_dirty_word; 477 delete [] r_dcache_zombi_ncc; 476 478 ///////////////////////////////// 479 print_stats(); 477 480 } 478 481 … … 642 645 << "- DUNC TRANSACTION = " << m_cpt_dunc_transaction << std::endl 643 646 << "- LL TRANSACTION = " << m_cpt_ll_transaction << std::endl 647 << "- WRITE DATA MISS = " << m_cpt_data_write_miss << std::endl 648 << "- WRITE DATA ON ZOMBI = " << m_cpt_data_write_on_zombi << std::endl 649 << "- WRITE DATA ON ZOMBI NCC = " << m_cpt_data_write_on_zombi_ncc << std::endl 644 650 << "- CLEANUP DATA NOT DIRTY = " << m_cpt_cleanup_data_not_dirty << std::endl 645 651 << "- CLEANUP DATA DIRTY WORD = " << m_cpt_cleanup_data_dirty_word << std::endl; … … 743 749 m_cpt_cleanup_data_not_dirty = 0; 744 750 m_cpt_cleanup_data_dirty_word = 0; 751 m_cpt_data_write_miss = 0; 752 m_cpt_data_write_on_zombi = 0; 753 m_cpt_data_write_on_zombi_ncc = 0; 745 754 746 755 } … … 778 787 //r_dcache_contains_ptd[i] = false; 779 788 r_dcache_content_state[i] = LINE_CACHE_DATA_NOT_DIRTY; 780 r_dcache_dirty_word[i] = 0; 789 r_dcache_dirty_word[i] = 0; 790 r_dcache_zombi_ncc[i] = false; 781 791 } 782 792 … … 943 953 m_cpt_cleanup_data_not_dirty = 0; 944 954 m_cpt_cleanup_data_dirty_word = 0; 955 m_cpt_data_write_miss = 0; 956 m_cpt_data_write_on_zombi = 0; 957 m_cpt_data_write_on_zombi_ncc = 0; 945 958 946 959 m_cpt_itlbmiss_transaction = 0; … … 2293 2306 2294 2307 2295 // physical address computation : systematic DTLB access if activated)2308 // physical address computation : systematic DTLB access (if activated) 2296 2309 if ( m_dreq.valid ) 2297 2310 { 2298 2299 2311 2300 2312 if ( r_mmu_mode.read() & DATA_TLB_MASK ) // DTLB activated … … 2930 2942 // response to processor 2931 2943 m_drsp.valid = true; 2944 2945 2932 2946 // activating P1 stage 2933 if( (cache_state != CACHE_SLOT_STATE_ZOMBI )&&(cache_state != CACHE_SLOT_STATE_EMPTY )&&(cacheable) )2947 if( (cache_state != CACHE_SLOT_STATE_ZOMBI) && (cache_state != CACHE_SLOT_STATE_EMPTY) && (cacheable) ) 2934 2948 { 2935 2949 wbuf_request = (cache_state == CACHE_SLOT_STATE_VALID_CC); //write to L2 only if CC 2936 2950 updt_request = true; 2937 if ( cache_state == CACHE_SLOT_STATE_VALID_NCC)2951 if ( cache_state == CACHE_SLOT_STATE_VALID_NCC ) 2938 2952 { 2939 if ( r_dcache_content_state[cache_way*m_dcache_sets+cache_set] == LINE_CACHE_DATA_NOT_DIRTY)2953 if ( r_dcache_content_state[cache_way*m_dcache_sets+cache_set] == LINE_CACHE_DATA_NOT_DIRTY ) 2940 2954 { 2941 2955 r_dcache_content_state[cache_way*m_dcache_sets+cache_set] = LINE_CACHE_DATA_DIRTY; 2942 2956 } 2943 r_dcache_dirty_word[(cache_way*m_dcache_sets +cache_set)*m_dcache_words+cache_word] = 1;//dirty bit with word granularity (only for stats) 2957 //dirty bit with word granularity (only for stats) 2958 r_dcache_dirty_word[(cache_way*m_dcache_sets +cache_set)*m_dcache_words+cache_word] = 1; 2944 2959 m_cpt_data_write_back ++; 2945 2960 } 2946 2961 } 2962 // We stall proc if a write request is on line ZOMBI 2963 // Invalidation from memcache on a non-coherent 2964 // line can cause cleanup_data. While sending this 2965 // cleanup the processor can do a write on the same 2966 // line. However there is no guarantee that the 2967 // memcache will receive transactions in the 2968 // correct order, ie it can handle writing before 2969 // cleanup and therefore overwrite the new value of 2970 // writing that is more current than the data 2971 // contained in the cleanup . 2972 // TODO : MAYBE NEED TO OPTIMIZE 2973 else if ( cache_state == CACHE_SLOT_STATE_ZOMBI ) 2974 { 2975 m_drsp.valid = false; 2976 r_dcache_fsm = DCACHE_IDLE; 2977 // STAT : WRITE ON ZOMBI NCC LINE 2978 if (r_dcache_zombi_ncc[cache_way*m_dcache_sets+cache_set] == true) 2979 { 2980 m_cpt_data_write_on_zombi_ncc++; 2981 } 2982 2983 m_cpt_data_write_on_zombi++; 2984 } 2947 2985 else 2948 2986 { 2987 if ( cacheable ) m_cpt_data_write_miss++; 2988 2949 2989 wbuf_request = true; 2950 2990 updt_request = false; … … 4086 4126 m_cpt_dcache_dir_write++; 4087 4127 #endif 4128 4129 4130 4088 4131 r_dcache.write_dir( way, 4089 4132 set, … … 4818 4861 4819 4862 r_dcache_content_state[way*m_dcache_sets+set] = LINE_CACHE_DATA_NOT_DIRTY; 4863 4820 4864 } 4821 4865 else … … 4830 4874 r_dcache_dirty_word[(way*m_dcache_sets +set)*m_dcache_words+word] = 0; 4831 4875 } 4876 4877 // STAT : WRITE ON ZOMBI NCC LINE 4878 r_dcache_zombi_ncc[r_dcache_miss_way.read()*m_dcache_sets+r_dcache_miss_set.read()] = true; 4832 4879 } 4833 4880 … … 5187 5234 r_dcache_clack_set.read(), 5188 5235 CACHE_SLOT_STATE_EMPTY); 5236 5237 // STAT : WRITE ON ZOMBI NCC LINE 5238 r_dcache_zombi_ncc[r_dcache_clack_way.read()*m_dcache_sets+r_dcache_clack_set.read()] = false; 5189 5239 5190 5240 if ( (r_dcache_miss_set.read() == r_dcache_clack_set.read()) and
Note: See TracChangeset
for help on using the changeset viewer.