From: Nilay Vaish Date: Tue, 25 Jun 2013 05:32:03 +0000 (-0500) Subject: ruby: mesi cmp directory: separate actions for external hits X-Git-Tag: stable_2013_10_14~30 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=128ab50c47dffb321dc51caeb67b062dcebb3125;p=gem5.git ruby: mesi cmp directory: separate actions for external hits This patch adds separate actions for requests that missed in the local cache and messages were sent out to get the requested line. These separate actions are required for differentiating between the hit and miss latencies in the statistics collected. --- diff --git a/src/mem/protocol/MESI_CMP_directory-L1cache.sm b/src/mem/protocol/MESI_CMP_directory-L1cache.sm index 454e01050..347e548bb 100644 --- a/src/mem/protocol/MESI_CMP_directory-L1cache.sm +++ b/src/mem/protocol/MESI_CMP_directory-L1cache.sm @@ -790,19 +790,40 @@ machine(L1Cache, "MESI Directory L1 Cache CMP") sequencer.invalidateSC(address); } - action(h_load_hit, "h", desc="If not prefetch, notify sequencer the load completed.") { + action(h_load_hit, "h", + desc="If not prefetch, notify sequencer the load completed.") + { assert(is_valid(cache_entry)); DPRINTF(RubySlicc, "%s\n", cache_entry.DataBlk); sequencer.readCallback(address, cache_entry.DataBlk); } - action(hh_store_hit, "\h", desc="If not prefetch, notify sequencer that store completed.") { + action(hx_load_hit, "hx", + desc="If not prefetch, notify sequencer the load completed.") + { + assert(is_valid(cache_entry)); + DPRINTF(RubySlicc, "%s\n", cache_entry.DataBlk); + sequencer.readCallback(address, cache_entry.DataBlk, true); + } + + action(hh_store_hit, "\h", + desc="If not prefetch, notify sequencer that store completed.") + { assert(is_valid(cache_entry)); DPRINTF(RubySlicc, "%s\n", cache_entry.DataBlk); sequencer.writeCallback(address, cache_entry.DataBlk); cache_entry.Dirty := true; } + action(hhx_store_hit, "\hx", + desc="If not prefetch, notify sequencer that store completed.") + { + assert(is_valid(cache_entry)); + DPRINTF(RubySlicc, "%s\n", cache_entry.DataBlk); + sequencer.writeCallback(address, cache_entry.DataBlk, true); + cache_entry.Dirty := true; + } + action(i_allocateTBE, "i", desc="Allocate TBE (isPrefetch=0, number of invalidates=0)") { check_allocate(L1_TBEs); assert(is_valid(cache_entry)); @@ -1158,7 +1179,7 @@ machine(L1Cache, "MESI Directory L1 Cache CMP") transition(IS, Data_all_Acks, S) { u_writeDataToL1Cache; - h_load_hit; + hx_load_hit; s_deallocateTBE; o_popIncomingResponseQueue; kd_wakeUpDependents; @@ -1174,7 +1195,7 @@ machine(L1Cache, "MESI Directory L1 Cache CMP") transition(IS_I, Data_all_Acks, I) { u_writeDataToL1Cache; - h_load_hit; + hx_load_hit; s_deallocateTBE; o_popIncomingResponseQueue; kd_wakeUpDependents; @@ -1189,7 +1210,7 @@ machine(L1Cache, "MESI Directory L1 Cache CMP") transition(IS, DataS_fromL1, S) { u_writeDataToL1Cache; j_sendUnblock; - h_load_hit; + hx_load_hit; s_deallocateTBE; o_popIncomingResponseQueue; kd_wakeUpDependents; @@ -1206,7 +1227,7 @@ machine(L1Cache, "MESI Directory L1 Cache CMP") transition(IS_I, DataS_fromL1, I) { u_writeDataToL1Cache; j_sendUnblock; - h_load_hit; + hx_load_hit; s_deallocateTBE; o_popIncomingResponseQueue; kd_wakeUpDependents; @@ -1222,7 +1243,7 @@ machine(L1Cache, "MESI Directory L1 Cache CMP") // directory is blocked when sending exclusive data transition(IS_I, Data_Exclusive, E) { u_writeDataToL1Cache; - h_load_hit; + hx_load_hit; jj_sendExclusiveUnblock; s_deallocateTBE; o_popIncomingResponseQueue; @@ -1240,7 +1261,7 @@ machine(L1Cache, "MESI Directory L1 Cache CMP") transition(IS, Data_Exclusive, E) { u_writeDataToL1Cache; - h_load_hit; + hx_load_hit; jj_sendExclusiveUnblock; s_deallocateTBE; o_popIncomingResponseQueue; @@ -1281,7 +1302,7 @@ machine(L1Cache, "MESI Directory L1 Cache CMP") transition(IM, Data_all_Acks, M) { u_writeDataToL1Cache; - hh_store_hit; + hhx_store_hit; jj_sendExclusiveUnblock; s_deallocateTBE; o_popIncomingResponseQueue; @@ -1311,7 +1332,7 @@ machine(L1Cache, "MESI Directory L1 Cache CMP") transition(SM, Ack_all, M) { jj_sendExclusiveUnblock; - hh_store_hit; + hhx_store_hit; s_deallocateTBE; o_popIncomingResponseQueue; kd_wakeUpDependents;