diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-06-25 00:32:03 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-06-25 00:32:03 -0500 |
commit | 128ab50c47dffb321dc51caeb67b062dcebb3125 (patch) | |
tree | bc06ff3719d4a1c5e317165e86886f5f9714bfb7 /src/mem | |
parent | beb6e57c6f6141ad959bb97b49daad7f1fa54af3 (diff) | |
download | gem5-128ab50c47dffb321dc51caeb67b062dcebb3125.tar.xz |
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.
Diffstat (limited to 'src/mem')
-rw-r--r-- | src/mem/protocol/MESI_CMP_directory-L1cache.sm | 41 |
1 files changed, 31 insertions, 10 deletions
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; |