diff --git a/cache/cache.hpp b/cache/cache.hpp index d05468e..e64b073 100644 --- a/cache/cache.hpp +++ b/cache/cache.hpp @@ -160,8 +160,8 @@ class CacheBase : public CacheMonitorSupport virtual bool hit(uint64_t addr, uint32_t *ai, // index of the hitting cache array in "arrays" uint32_t *s, uint32_t *w, - uint16_t prio = 0, // transaction priority - bool check_and_set = false // whether to check and set the priority if hit + uint16_t prio, // transaction priority + bool check_and_set // whether to check and set the priority if hit ) = 0; __always_inline bool hit(uint64_t addr) { @@ -340,8 +340,8 @@ class CacheSkewed : public CacheBase if constexpr (EnMon || !C_VOID) monitors->hook_write(addr, ai, s, w, hit, meta, data, delay); } - virtual void hook_manage(uint64_t addr, uint32_t ai, uint32_t s, uint32_t w, bool hit, bool evict, bool writeback, const CMMetadataBase * meta, const CMDataBase *data, uint64_t *delay) override { - if(ai < P && hit && evict) replacer[ai].invalid(s, w); + virtual void hook_manage(uint64_t addr, uint32_t ai, uint32_t s, uint32_t w, bool hit, uint32_t evict, bool writeback, const CMMetadataBase * meta, const CMDataBase *data, uint64_t *delay) override { + if(ai < P && hit && evict) replacer[ai].invalid(s, w, evict == 2); if constexpr (EnMon || !C_VOID) monitors->hook_manage(addr, ai, s, w, hit, evict, writeback, meta, data, delay); } diff --git a/cache/coherence.hpp b/cache/coherence.hpp index b1d7774..84c83ac 100644 --- a/cache/coherence.hpp +++ b/cache/coherence.hpp @@ -182,7 +182,7 @@ class OuterCohPortT : public OPUC break; } } else { - hit = cache->hit(addr, &ai, &s, &w); + hit = cache->hit(addr, &ai, &s, &w, 0, false); if(hit) std::tie(meta, data) = cache->access_line(ai, s, w); } @@ -198,12 +198,12 @@ class OuterCohPortT : public OPUC if constexpr (EnMT) {assert(meta->match(addr)); meta_outer->lock(); } if((writeback = Policy::probe_need_writeback(outer_cmd, meta))) { if(data_outer) data_outer->copy(data); } // writeback if dirty Policy::meta_after_probe(outer_cmd, meta, meta_outer, coh_id, writeback); // alway update meta - cache->hook_manage(addr, ai, s, w, hit, coh::is_evict(outer_cmd), writeback, meta, data, delay); + cache->hook_manage(addr, ai, s, w, hit, (coh::is_evict(outer_cmd) ? 1 : 0), writeback, meta, data, delay); if constexpr (EnMT) { meta_outer->unlock(); meta->unlock(); cache->reset_mt_state(ai, s, XactPrio::probe); } } else { if constexpr (EnMT) meta_outer->lock(); Policy::meta_after_probe(outer_cmd, meta, meta_outer, coh_id, writeback); // alway update meta - cache->hook_manage(addr, ai, s, w, hit, coh::is_evict(outer_cmd), writeback, meta, data, delay); + cache->hook_manage(addr, ai, s, w, hit, (coh::is_evict(outer_cmd) ? 1 : 0), writeback, meta, data, delay); if constexpr (EnMT) meta_outer->unlock(); } return std::make_pair(hit, writeback); @@ -264,7 +264,7 @@ class InnerCohPortUncached : public InnerCohPortBase auto writeback = Policy::writeback_need_writeback(meta); if(writeback.first) outer->writeback_req(addr, meta, data, writeback.second, delay); // writeback if dirty Policy::meta_after_evict(meta); - cache->hook_manage(addr, ai, s, w, true, true, writeback.first, meta, data, delay); + cache->hook_manage(addr, ai, s, w, true, 1, writeback.first, meta, data, delay); } virtual std::tuple @@ -301,7 +301,7 @@ class InnerCohPortUncached : public InnerCohPortBase break; } } else { - hit = cache->hit(addr, &ai, &s, &w); + hit = cache->hit(addr, &ai, &s, &w, 0, false); if(!hit && do_replace) cache->replace(addr, &ai, &s, &w, prio); if(hit || do_replace) std::tie(meta, data) = cache->access_line(ai, s, w); } @@ -359,7 +359,7 @@ class InnerCohPortUncached : public InnerCohPortBase if(writeback.first) outer->writeback_req(addr, meta, data, writeback.second, delay); // writeback if dirty Policy::meta_after_flush(cmd, meta, cache); - cache->hook_manage(addr, ai, s, w, hit, coh::is_evict(cmd), writeback.first, meta, data, delay); + cache->hook_manage(addr, ai, s, w, hit, (coh::is_evict(cmd) ? 2 : 0), writeback.first, meta, data, delay); // identify flush to hook_manager if constexpr (EnMT) { meta->unlock(); cache->reset_mt_state(ai, s, XactPrio::flush); } } diff --git a/cache/dynamic_random.hpp b/cache/dynamic_random.hpp index 9aeb39b..319e489 100644 --- a/cache/dynamic_random.hpp +++ b/cache/dynamic_random.hpp @@ -3,6 +3,7 @@ #include "cache/coherence.hpp" #include "util/monitor.hpp" +#include #define MAGIC_ID_REMAP 2024091300ul @@ -140,7 +141,7 @@ class InnerCohPortRemapT : public InnerCohPortTaddr(new_idx); if (m_meta->is_valid()) { if (static_cast(m_meta)->is_relocated()) this->evict(m_meta, m_data, new_ai, new_idx, new_way, nullptr); - else cache->hook_manage(m_addr, new_ai, new_idx, new_way, true, true, false, m_meta, m_data, nullptr); + else cache->hook_manage(m_addr, new_ai, new_idx, new_way, true, 1, false, m_meta, m_data, nullptr); } static_cast(cache)->swap(m_addr, c_addr, m_meta, c_meta, m_data, c_data); cache->hook_read(c_addr, new_ai, new_idx, new_way, false, false, m_meta, m_data, nullptr); @@ -156,7 +157,7 @@ class InnerCohPortRemapT : public InnerCohPortTdata_copy_buffer() : nullptr; static_cast(cache)->relocate(c_addr, meta, c_meta, data, c_data); static_cast(meta)->to_relocated(); - cache->hook_manage(c_addr, ai, idx, way, true, true, false, c_meta, c_data, nullptr); + cache->hook_manage(c_addr, ai, idx, way, true, 1, false, c_meta, c_data, nullptr); while(c_meta->is_valid()){ relocation(c_meta, c_data, c_addr); @@ -209,4 +210,79 @@ class SimpleEVRemapper : public RemapperBase } }; +template +class ZSEVRemapper : public RemapperBase +{ +protected: + static constexpr uint32_t nset = 1ul << IW; + const double factor; + const double threshold; + const uint64_t access_period, evict_period; + std::array evicts{}; + std::array set_evict_history{}; + + bool Z_Score_detect(){ + double qrm = sqrt(std::accumulate(evicts.begin(), evicts.end(), 0.0, + [](double q, const uint64_t& d){return q + d * d;}) + / (nset-1.0) + ); + double mu = std::accumulate(evicts.begin(), evicts.end(), 0.0) / (double)(nset); + for(size_t i=0; i mu ? delta : -delta); + } + + for(size_t i=0; i= threshold) { + // std::cerr << "found set " << i << std::endl; + return true; + } + } + return false; + } + +public: + ZSEVRemapper(const double factor, uint64_t access_period, uint64_t evict_period, double th, bool remap_enable = true) + : RemapperBase(remap_enable), factor(factor), threshold(th), + access_period(access_period), evict_period(evict_period){} + + virtual void read(uint64_t cache_id, uint64_t addr, int32_t ai, int32_t s, int32_t w, bool hit, const CMMetadataBase *meta, const CMDataBase *data) override { + if(!active) return; + cnt_access++; + if(!hit) cnt_miss++; + if(access_period != 0 && (cnt_access % access_period) == 0) { + if(Z_Score_detect()) { + remap = true; + } + evicts.fill(0); + } + } + virtual void write(uint64_t cache_id, uint64_t addr, int32_t ai, int32_t s, int32_t w, bool hit, const CMMetadataBase *meta, const CMDataBase *data) override { + if(!active) return; + cnt_access++; cnt_write++; + if(!hit) { cnt_miss++; cnt_write_miss++;} + if(access_period != 0 && (cnt_access % access_period) == 0) { + if(Z_Score_detect()) { + remap = true; + } + evicts.fill(0); + } + } + virtual void invalid(uint64_t cache_id, uint64_t addr, int32_t ai, int32_t s, int32_t w, const CMMetadataBase *meta, const CMDataBase *data) override { + if(!active) return; + cnt_invalid++; + evicts[s]++; + if(evict_period != 0 && (cnt_invalid % evict_period) == 0) { + remap = true; + // std::cerr << " remapped by eviction limit @" << cnt_invalid << std::endl; + } + } + + virtual void reset() override { + evicts.fill(0); + set_evict_history.fill(0.0); + RemapperBase::reset(); + } +}; + #endif diff --git a/cache/exclusive.hpp b/cache/exclusive.hpp index b343274..b44749e 100644 --- a/cache/exclusive.hpp +++ b/cache/exclusive.hpp @@ -147,11 +147,11 @@ class CacheSkewedExclusive : public CacheSkewed= NW) ext_replacer[ai].invalid(s, w-NW); - else replacer[ai].invalid(s, w); + else replacer[ai].invalid(s, w, evict == 2); } if constexpr (EnMon || !C_VOID) monitors->hook_manage(addr, ai, s, w, hit, evict, writeback, meta, data, delay); } else { @@ -313,7 +313,7 @@ class ExclusiveInnerCohPortUncachedBroadcast : public InnerCohPortUncachedwriteback_req(addr, meta, data, writeback.second, delay); // writeback if dirty Policy::meta_after_flush(cmd, meta, cache); - cache->hook_manage(addr, ai, s, w, hit, coh::is_evict(cmd), writeback.first, meta, data, delay); + cache->hook_manage(addr, ai, s, w, hit, (coh::is_evict(cmd) ? 2 : 0), writeback.first, meta, data, delay); if(!hit) { cache->meta_return_buffer(meta); @@ -495,7 +495,7 @@ class ExclusiveInnerCohPortUncachedDirectory : public InnerCohPortUncachedwriteback_req(addr, meta, data, writeback.second, delay); // writeback if dirty Policy::meta_after_flush(cmd, meta, cache); - cache->hook_manage(addr, ai, s, w, hit, coh::is_evict(cmd), writeback.first, meta, data, delay); + cache->hook_manage(addr, ai, s, w, hit, (coh::is_evict(cmd) ? 2 : 0), writeback.first, meta, data, delay); if(meta->is_extend()) cache->data_return_buffer(data); } @@ -540,7 +540,7 @@ class ExclusiveOuterCohPortBroadcastT : public OPUC } Policy::meta_after_probe(outer_cmd, meta, meta_outer, coh_id, writeback); - cache->hook_manage(addr, ai, s, w, hit, coh::is_evict(outer_cmd), writeback, meta, data, delay); + cache->hook_manage(addr, ai, s, w, hit, (coh::is_evict(outer_cmd) ? 1 : 0), writeback, meta, data, delay); if(!hit) { cache->meta_return_buffer(meta); @@ -590,7 +590,7 @@ class ExclusiveOuterCohPortDirectoryT : public OPUC } Policy::meta_after_probe(outer_cmd, meta, meta_outer, coh_id, writeback); - cache->hook_manage(addr, ai, s, w, hit, coh::is_evict(outer_cmd), writeback, meta, data, delay); + cache->hook_manage(addr, ai, s, w, hit, (coh::is_evict(outer_cmd) ? 1 : 0), writeback, meta, data, delay); if(hit && meta->is_extend()) { cache->data_return_buffer(data); diff --git a/cache/memory.hpp b/cache/memory.hpp index c15c0d4..55b410b 100644 --- a/cache/memory.hpp +++ b/cache/memory.hpp @@ -139,7 +139,7 @@ class SimpleMemoryModel : public InnerCohPortUncached, publ } private: - virtual void hook_manage(uint64_t, uint32_t, uint32_t, uint32_t, bool, bool, bool, const CMMetadataBase *, const CMDataBase *, uint64_t *) override {} + virtual void hook_manage(uint64_t, uint32_t, uint32_t, uint32_t, bool, uint32_t, bool, const CMMetadataBase *, const CMDataBase *, uint64_t *) override {} virtual void query_loc_resp(uint64_t, std::list *) override {} virtual std::pair probe_req(uint64_t, CMMetadataBase *, CMDataBase *, coh_cmd_t, uint64_t *) override { return std::make_pair(false,false); } }; diff --git a/cache/mirage.hpp b/cache/mirage.hpp index 6226ebc..3c2a99c 100644 --- a/cache/mirage.hpp +++ b/cache/mirage.hpp @@ -65,20 +65,23 @@ struct MirageMSIPolicy : public MSIPolicy // always LLC, alw } }; +struct MirageHelper { + static const unsigned int replace_for_relocate = 202410140ul; +}; + // Mirage // IW: index width, NW: number of ways, EW: extra tag ways, P: number of partitions, MaxRelocN: max number of relocations // MT: metadata type, DT: data type (void if not in use), DTMT: data meta type // MIDX: indexer type, MRPC: replacer type // DIDX: data indexer type, DRPC: data replacer type // EnMon: whether to enable monitoring -// EnableRelocation : whether to enable relocation -template requires C_DERIVE && C_DERIVE_OR_VOID && C_DERIVE && C_DERIVE && C_DERIVE && C_DERIVE_OR_VOID -class MirageCache : public CacheSkewed +class MirageCache : public CacheSkewed, protected MirageHelper { // see: https://www.usenix.org/system/files/sec21fall-saileshwar.pdf @@ -91,7 +94,14 @@ class MirageCache : public CacheSkewed > candidates(P); uint32_t m_s; @@ -149,8 +159,8 @@ class MirageCache : public CacheSkewed replace_data(uint64_t addr) { uint32_t d_s, d_w; - d_s = d_indexer.index(addr, 0); - d_replacer.replace(d_s, &d_w); + d_s = (*loc_random)() % (1ul << IW); + d_replacer.replace(d_s, &d_w, false); return std::make_pair(d_s, d_w); } @@ -170,7 +180,7 @@ class MirageCache : public CacheSkewed(this->access(ai, s, w))->pointer(); d_replacer.invalid(ds, dw); @@ -178,35 +188,12 @@ class MirageCache : public CacheSkewed > &stack) { - if constexpr (EnableRelocation) { - uint32_t relocation = 0; - uint32_t m_ai, m_s, m_w; - std::unordered_set remapped; - auto addr = meta->addr(*s); - while(meta->is_valid() && relocation++ < MaxRelocN){ - m_ai = (*ai+1)%P; // Do we need total random selection of partition here, does not matter for Mirage as P=2 - m_s = indexer.index(addr, m_ai); - replacer[m_ai].replace(m_s, &m_w); - auto m_meta = static_cast(this->access(m_ai, m_s, m_w)); - auto m_addr = m_meta->addr(m_s); - if(remapped.count(m_addr)) break; // ToDo: here will break the replace state! allocate() without access() - remapped.insert(addr); - stack.push(std::make_tuple(*ai, *s, *w)); - std::tie(meta, addr, *ai, *s, *w) = std::make_tuple(m_meta, m_addr, m_ai, m_s, m_w); - } - } + void relocate_invalidate(uint64_t addr, uint32_t ai, uint32_t s, uint32_t w, bool hit, uint32_t evict, bool writeback, const CMMetadataBase * meta, const CMDataBase *data, uint64_t *delay) { + CacheT::hook_manage(addr, ai, s, w, hit, evict, writeback, meta, data, delay); } - void cuckoo_relocate(uint32_t *ai, uint32_t *s, uint32_t *w, std::stack > &stack, uint64_t *delay) { - while(!stack.empty()) { - auto [m_ai, m_s, m_w] = stack.top(); stack.pop(); - auto [meta, addr] = this->relocate(m_ai, m_s, m_w, *ai, *s, *w); - get_data_meta(static_cast(meta))->bind(*ai, *s, *w); - CacheT::hook_manage(addr, m_ai, m_s, m_w, true, true, false, nullptr, nullptr, delay); - CacheT::hook_read(addr, *ai, *s, *w, false, false, nullptr, nullptr, delay); // read or write? // hit is true or false? may have impact on delay - std::tie(*ai, *s, *w) = std::make_tuple(m_ai, m_s, m_w); - } + bool pre_finish_reloc(uint64_t addr, uint32_t s_ai, uint32_t s_s, uint32_t ai){ + return (s_ai == next_ai(ai)) && (s_s == indexer.index(addr, next_ai(ai))); } }; @@ -214,22 +201,75 @@ class MirageCache : public CacheSkewed +template requires C_DERIVE && C_DERIVE && C_DERIVE -class MirageInnerPortUncached : public InnerCohPortUncached +class MirageInnerPortUncached : public InnerCohPortUncached, protected MirageHelper { + typedef InnerCohPortUncached Inner; + protected: using InnerCohPortBase::outer; + void bind_data(uint64_t addr, CMMetadataBase *meta, CMDataBase *&data, int32_t ai, uint32_t s, uint32_t w, uint64_t *delay){ + auto cache = static_cast(InnerCohPortBase::cache); + auto data_pointer = cache->replace_data(addr); + auto data_meta = cache->get_data_meta(data_pointer); + data = cache->get_data_data(data_pointer); + if(data_meta->is_valid()) { + auto meta_pointer = data_meta->pointer(); + auto replace_meta = cache->get_meta_meta(meta_pointer); + global_evict(replace_meta, data, std::get<0>(meta_pointer), std::get<1>(meta_pointer), std::get<2>(meta_pointer), delay); + replace_meta->to_invalid(); + } + static_cast(meta)->bind(data_pointer.first, data_pointer.second); + data_meta->bind(ai, s, w); + } + + virtual void evict(CMMetadataBase *meta, CMDataBase *data, int32_t ai, uint32_t s, uint32_t w, uint64_t *delay) { + // evict a block due to conflict + // do the cuckoo relocation + if constexpr (EnableRelocation) { + auto cache = static_cast(InnerCohPortBase::cache); + uint32_t relocation = 0; + uint32_t m_ai = ai; uint32_t m_s, m_w; + auto buf_meta = cache->meta_copy_buffer(); + auto addr = meta->addr(s); + cache->relocate(addr, meta, buf_meta); + cache->relocate_invalidate(addr, ai, s, w, true, 1, false, nullptr, nullptr, delay); + while(buf_meta->is_valid()){ + relocation++; + cache->replace(addr, &m_ai, &m_s, &m_w, XactPrio::acquire, replace_for_relocate); + auto m_meta = static_cast(cache->access(m_ai, m_s, m_w)); + auto m_addr = m_meta->addr(m_s); + if (m_meta->is_valid()) { + if (relocation >= MaxRelocN || cache->pre_finish_reloc(m_addr, ai, s, m_ai)){ + global_evict(m_meta, cache->get_data_data(static_cast(m_meta)), m_ai, m_s, w, delay); // associative eviction! + } + else cache->relocate_invalidate(m_addr, m_ai, m_s, m_w, true, 1, false, nullptr, nullptr, delay); + } + cache->swap(m_addr, addr, m_meta, buf_meta, nullptr, nullptr); + cache->get_data_meta(static_cast(m_meta))->bind(m_ai, m_s, m_w); + cache->hook_read(addr, m_ai, m_s, m_w, false, false, nullptr, nullptr, delay); + addr = m_addr; + } + cache->meta_return_buffer(buf_meta); + } + else{ + global_evict(meta, data, ai, s, w, delay); + } + } + + void global_evict(CMMetadataBase *meta, CMDataBase *data, int32_t ai, uint32_t s, uint32_t w, uint64_t *delay) { + // global evict a block due to conflict + Inner::evict(meta, data, ai, s, w, delay); + static_cast(InnerCohPortBase::cache)->get_data_meta(static_cast(meta))->to_invalid(); + } + virtual std::tuple access_line(uint64_t addr, coh_cmd_t cmd, uint16_t prio, uint64_t *delay) override { // common function for access a line in the cache - uint32_t ai, s, w; - CMMetadataBase *meta; - CMDataBase *data; auto cache = static_cast(InnerCohPortBase::cache); - bool hit = cache->hit(addr, &ai, &s, &w, prio, EnMT); + auto [hit, meta, data, ai, s, w] = this->check_hit_or_replace(addr, prio, true, false, delay); if(hit) { - std::tie(meta, data) = cache->access_line(ai, s, w); auto sync = Policy::access_need_sync(cmd, meta); if(sync.first) { auto [phit, pwb] = this->probe_req(addr, meta, data, sync.second, delay); // sync if necessary @@ -239,36 +279,39 @@ class MirageInnerPortUncached : public InnerCohPortUncached if(promote) { outer->acquire_req(addr, meta, data, promote_cmd, delay); hit = false; } // promote permission if needed else if(promote_local) meta->to_modified(-1); } else { // miss - // do the cuckoo replacement - cache->replace(addr, &ai, &s, &w, prio); - meta = static_cast(cache->access(ai, s, w)); - std::stack > stack; - if(meta->is_valid()) cache->cuckoo_search(&ai, &s, &w, meta, stack); - if(meta->is_valid()) { // associative eviction! - this->evict(meta, cache->get_data_data(static_cast(meta)), ai, s, w, delay); - cache->get_data_meta(static_cast(meta))->to_invalid(); - } - cache->cuckoo_relocate(&ai, &s, &w, stack, delay); - meta = static_cast(cache->access(ai, s, w)); - auto data_pointer = cache->replace_data(addr); - auto data_meta = cache->get_data_meta(data_pointer); - data = cache->get_data_data(data_pointer); - if(data_meta->is_valid()) { - auto meta_pointer = data_meta->pointer(); - auto replace_meta = cache->get_meta_meta(meta_pointer); - this->evict(replace_meta, data, std::get<0>(meta_pointer), std::get<1>(meta_pointer), std::get<2>(meta_pointer), delay); - replace_meta->to_invalid(); - } - static_cast(meta)->bind(data_pointer.first, data_pointer.second); - data_meta->bind(ai, s, w); - + if(meta->is_valid()) evict(meta, data, ai, s, w, delay); + bind_data(addr, meta, data, ai, s, w, delay); outer->acquire_req(addr, meta, data, Policy::cmd_for_outer_acquire(cmd), delay); // fetch the missing block } return std::make_tuple(meta, data, ai, s, w, hit); } + + virtual void flush_line(uint64_t addr, coh_cmd_t cmd, uint64_t *delay) { + auto [hit, meta, data, ai, s, w] = this->check_hit_or_replace(addr, XactPrio::flush, false, false, delay); + if(!hit) return; + Inner::flush_line(addr, cmd, delay); + static_cast(InnerCohPortBase::cache)->get_data_meta(static_cast(meta))->to_invalid(); + } + + virtual void prefetch_line(uint64_t addr, coh_cmd_t cmd, uint64_t *delay) { + auto cache = static_cast(InnerCohPortBase::cache); + auto [hit, meta, data, ai, s, w] = this->check_hit_or_replace(addr, XactPrio::acquire, true, true, delay); + if(!hit) { + if(meta->is_valid()) evict(meta, data, ai, s, w, delay); + bind_data(addr, meta, data, ai, s, w, delay); + outer->acquire_req(addr, meta, data, coh::cmd_for_prefetch(), delay); // fetch the missing block + cache->hook_read(addr, ai, s, w, hit, true, meta, data, delay); + this->finish_record(addr, coh::cmd_for_finish(-1), !hit, meta, ai, s); + this->finish_resp(addr, coh::cmd_for_finish(-1)); + } + } }; -template -using MirageInnerCohPort = InnerCohPortT; +// template helper for pass the compiler +template +struct MirageInnerCohPortUncachedT { + template + using type = MirageInnerPortUncached; +}; #endif diff --git a/cache/replace.hpp b/cache/replace.hpp index d52db85..4a9c96d 100644 --- a/cache/replace.hpp +++ b/cache/replace.hpp @@ -16,7 +16,7 @@ /////////////////////////////////// // Base class // EF: empty first, EnMT: multithread -template requires NW <= 64 +template requires (NW <= 64) class ReplaceFuncBase { protected: @@ -152,9 +152,9 @@ class ReplaceFuncBase #endif } - virtual void replace(uint32_t s, uint32_t *w) { + virtual void replace(uint32_t s, uint32_t *w, bool empty_fill_rt = true) { int32_t i = 0; - if constexpr (EF) { + if (EF && empty_fill_rt) { i = alloc_from_free(s); if (i<0) i = select(s); } else { @@ -168,9 +168,13 @@ class ReplaceFuncBase virtual void access(uint32_t s, uint32_t w, bool demand_acc, bool prefetch) = 0; - virtual void invalid(uint32_t s, uint32_t w) { + virtual void invalid(uint32_t s, uint32_t w, bool flush = false) { if((int32_t)w != alloc_map[s]) list_to_free(s, w); } + + virtual uint32_t eviction_rank(uint32_t s, uint32_t w) const { + return used_map[s][w]; + } }; ///////////////////////////////// @@ -282,9 +286,16 @@ class ReplaceSRRIP : public ReplaceFuncBase if constexpr (EnMT) RPT::delist_from_free(s, w, demand_acc); } - virtual void invalid(uint32_t s, uint32_t w) override { + virtual void invalid(uint32_t s, uint32_t w, bool flush) override { used_map[s][w] = 3; - RPT::invalid(s, w); + RPT::invalid(s, w, false); + } + + virtual uint32_t eviction_rank(uint32_t s, uint32_t w) const { + uint32_t prio = used_map[s][w]; + uint32_t rank = 0; + for(uint32_t i=1; i prio || (used_map[s][i] == prio && i < w)) rank++; + return rank; } }; @@ -313,6 +324,10 @@ class ReplaceRandom : public ReplaceFuncBase if((int32_t)w == alloc_map[s] && demand_acc) this->set_alloc_map(s, -1); if constexpr (EnMT) RPT::delist_from_free(s, w, demand_acc); } + + virtual uint32_t eviction_rank(uint32_t s, uint32_t w) const { + return (*loc_random)() % NW; + } }; #endif diff --git a/regression/c2-l2-mirage.cpp b/regression/c2-l2-mirage.cpp index 9bb1a5c..f4e6d4d 100644 --- a/regression/c2-l2-mirage.cpp +++ b/regression/c2-l2-mirage.cpp @@ -2,8 +2,8 @@ #include "util/cache_type.hpp" #include "util/regression.hpp" -#define PAddrN 128 -#define SAddrN 64 +#define PAddrN 256 +#define SAddrN 128 #define NCore 2 #define TestN ((PAddrN + SAddrN) * NCore * 2) @@ -12,7 +12,7 @@ #define L2IW 5 #define L2WN 4 -#define L2EW 3 +#define L2EW 1 #define L2P 2 #define L2RN 2 diff --git a/regression/c2-l2-mirage.expect b/regression/c2-l2-mirage.expect index 64008d4..d1743ce 100644 --- a/regression/c2-l2-mirage.expect +++ b/regression/c2-l2-mirage.expect @@ -1,1613 +1,5354 @@ -mem read 000039a6b2ebcd00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000039a6b2ebcd00 00 0001 00 0 [McW(0009,00)] 0000000000000000 -l1d-1 write 000039a6b2ebcd00 00 0004 00 0 [MdW] 92f3c8ee96a39ad8 -mem read 000018c9dccfc840 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000018c9dccfc840 01 0020 00 0 [McW(0021,00)] 0000000000000000 -l1d-0 write 000018c9dccfc840 00 0001 00 0 [MdW] 83b569fd7e2f93d0 -mem read 00005a86b1c246c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00005a86b1c246c0 00 0017 00 0 [McW(0029,00)] 0000000000000000 -l1d-1 write 00005a86b1c246c0 00 0011 00 0 [MdW] a4ed9aaf1420592d -mem read 00007a0ccec77d00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00007a0ccec77d00 00 0004 00 0 [McW(0006,00)] 0000000000000000 -l1d-1 write 00007a0ccec77d00 00 0004 01 0 [MdW] 603f902534bdd00d -l2 write 00007a0ccec77d00 00 0004 00 1 [MdW(0006,00)] 603f902534bdd00d -l2 read 00007a0ccec77d00 00 0004 00 1 [SdW(0006,00)] 603f902534bdd00d -l1d-0 read 00007a0ccec77d00 00 0004 00 0 [ScR] 603f902534bdd00d -mem read 000019a40a160240 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000019a40a160240 01 0009 00 0 [McW(0027,00)] 0000000000000000 -l1d-0 write 000019a40a160240 00 0009 00 0 [MdW] 8330cfb2dc469827 -mem read 0000ced5eac0d680 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000ced5eac0d680 00 0002 00 0 [McW(0022,00)] 0000000000000000 -l1d-0 write 0000ced5eac0d680 00 0010 00 0 [MdW] 286cd5e99abee408 -mem read 000039a5e213fe00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000039a5e213fe00 01 0022 00 0 [McW(0019,00)] 0000000000000000 -l1d-1 write 000039a5e213fe00 00 0008 00 0 [MdW] ab1570a6fc8f5e64 -mem read 000066e78b358f00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000066e78b358f00 00 0009 00 0 [McW(0025,00)] 0000000000000000 -l1d-0 write 000066e78b358f00 00 0012 00 0 [MdW] 46e305bdddfc6574 -mem read 0000c97dfb94fd80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c97dfb94fd80 00 0019 00 0 [McW(0017,00)] 0000000000000000 -l1d-1 write 0000c97dfb94fd80 00 0006 00 0 [MdW] 866e8372e740908a -mem read 0000033616c7e540 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000033616c7e540 00 0022 00 0 [McW(0023,00)] 0000000000000000 -l1d-0 write 0000033616c7e540 00 0005 00 0 [MdW] 505e4c2fc450e2ad -mem read 000049afd5e02b40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000049afd5e02b40 00 0015 00 0 [McW(0024,00)] 0000000000000000 -l1d-0 write 000049afd5e02b40 00 0013 00 0 [MdW] 0d73762cec20ec64 -mem read 0000b5cd51622240 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000b5cd51622240 01 0027 00 0 [McW(0030,00)] 0000000000000000 -l1d-1 write 0000b5cd51622240 00 0009 00 0 [MdW] 4f9c1718ca9de14e -mem read 00004d48d3ab6400 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00004d48d3ab6400 01 0025 00 0 [McW(0001,00)] 0000000000000000 -l1d-1 write 00004d48d3ab6400 00 0000 00 0 [MdW] ba6e57907407aadf -mem read 00003f232f338000 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00003f232f338000 01 0030 00 0 [McW(0018,00)] 0000000000000000 -l1d-0 write 00003f232f338000 00 0000 00 0 [MdW] a2d413acae95e3cd -l1d-1 read 000039a5e213fe00 00 0008 00 1 [MdW] ab1570a6fc8f5e64 -mem read 00005dfc154ee8c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00005dfc154ee8c0 01 0005 00 0 [McW(0015,00)] 0000000000000000 -l1d-0 write 00005dfc154ee8c0 00 0003 00 0 [MdW] 8a7139c015313d43 -mem read 000057ef223eb2c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000057ef223eb2c0 00 0009 01 0 [McW(0021,01)] 0000000000000000 -l1d-0 write 000057ef223eb2c0 00 0011 00 0 [MdW] fcc2619e1793c524 -mem read 0000a65bf8171680 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000a65bf8171680 00 0024 00 0 [McW(0012,00)] 0000000000000000 -l1d-0 write 0000a65bf8171680 00 0010 01 0 [MdW] e92d6a6544b2e04a -mem read 00002d9824d83d80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00002d9824d83d80 00 0021 00 0 [McW(0028,00)] 0000000000000000 -l1d-1 write 00002d9824d83d80 00 0006 01 0 [MdW] 101aad3e107bdbf7 -mem read 00005066f9d0b480 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00005066f9d0b480 00 0026 00 0 [McW(0023,01)] 0000000000000000 -l1d-0 write 00005066f9d0b480 00 0002 00 0 [MdW] 137a92d6da9c98a8 -mem read 0000d99af3531440 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000d99af3531440 01 0031 00 0 [McW(0009,01)] 0000000000000000 -l1d-1 write 0000d99af3531440 00 0001 00 0 [MdW] e66ccdd010b2f326 -mem read 0000ff71c82dc900 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000ff71c82dc900 01 0006 00 0 [McW(0010,00)] 0000000000000000 -l1d-0 write 0000ff71c82dc900 00 0004 01 0 [MdW] 75c7c14436ed60c6 -mem read 0000c20e6058a4c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c20e6058a4c0 01 0014 00 0 [McW(0027,01)] 0000000000000000 -l1d-1 write 0000c20e6058a4c0 00 0003 00 0 [MdW] 82e8d84a28a779bb -l1d-1 read 0000d99af3531440 00 0001 00 1 [MdW] e66ccdd010b2f326 -mem read 0000c477f06039c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c477f06039c0 01 0004 00 0 [McW(0022,01)] 0000000000000000 -l1d-0 write 0000c477f06039c0 00 0007 00 0 [MdW] 07a43d1b05d30814 -l1d-0 read 00005066f9d0b480 00 0002 00 1 [MdW] 137a92d6da9c98a8 -mem read 0000ed89583b9580 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000ed89583b9580 00 0018 00 0 [McW(0002,00)] 0000000000000000 -l1d-1 write 0000ed89583b9580 00 0006 02 0 [MdW] df138b65bf1ba81e -mem read 00009a603343d580 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00009a603343d580 00 0031 00 0 [McW(0019,01)] 0000000000000000 -l1d-0 write 00009a603343d580 00 0006 00 0 [MdW] c162b9927026ea74 -mem read 000078135d3f5200 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000078135d3f5200 01 0026 00 0 [McW(0017,01)] 0000000000000000 -l1d-1 write 000078135d3f5200 00 0008 01 0 [MdW] 0ec0b79ad41353f3 -l1d-1 read 00007a0ccec77d00 00 0004 01 1 [ScR] 603f902534bdd00d -l1d-0 read 00009a603343d580 00 0006 00 1 [MdW] c162b9927026ea74 -mem read 000087a8e7348c80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000087a8e7348c80 01 0019 00 0 [McW(0010,01)] 0000000000000000 -l1d-0 write 000087a8e7348c80 00 0002 01 0 [MdW] f525efac2f3cf7fd -l1d-1 read 000039a5e213fe00 00 0008 00 1 [MdW] ab1570a6fc8f5e64 -mem read 00002ccb051018c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00002ccb051018c0 01 0011 00 0 [McW(0002,01)] 0000000000000000 -l1d-1 write 00002ccb051018c0 00 0003 01 0 [MdW] 37430a6ae2ed6122 -mem read 000016f64b35ad40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000016f64b35ad40 00 0025 00 0 [McW(0005,00)] 0000000000000000 -l1d-1 write 000016f64b35ad40 00 0005 00 0 [MdW] 0a3253895fd4c544 -mem read 0000a6f9f0803d80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000a6f9f0803d80 00 0010 00 0 [McW(0030,01)] 0000000000000000 -l1d-0 write 0000a6f9f0803d80 00 0006 01 0 [MdW] 2efe16e086b3c230 -mem read 0000c662cc646980 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c662cc646980 00 0000 00 0 [McW(0014,00)] 0000000000000000 -l1d-0 write 0000c662cc646980 00 0006 02 0 [MdW] cd75106db33edfb9 -l1d-0 read 000018c9dccfc840 00 0001 00 1 [MdW] 83b569fd7e2f93d0 -mem read 000052d61b6d5a00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000052d61b6d5a00 00 0016 00 0 [McW(0017,02)] 0000000000000000 -l1d-0 write 000052d61b6d5a00 00 0008 00 0 [MdW] a4ca6d0b4cdb32f8 -mem read 000043ca5c07b240 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000043ca5c07b240 01 0013 00 0 [McW(0012,01)] 0000000000000000 -l1d-1 write 000043ca5c07b240 00 0009 01 0 [MdW] eb220539d65d1d1d -mem read 0000242235f69b80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000242235f69b80 00 0023 00 0 [McW(0024,01)] 0000000000000000 -l1d-1 write 0000242235f69b80 00 0014 00 0 [MdW] cd0f83c76caa72c4 -mem read 00002814eea2cf80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00002814eea2cf80 00 0019 01 0 [McW(0005,01)] 0000000000000000 -l1d-1 write 00002814eea2cf80 00 0014 01 0 [MdW] ac76c3067a593258 -mem read 00003bd14ab212c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00003bd14ab212c0 01 0008 00 0 [McW(0028,01)] 0000000000000000 -l1d-1 write 00003bd14ab212c0 00 0011 01 0 [MdW] 338c39d468604fc8 -l1d-1 read 00002ccb051018c0 00 0003 01 1 [MdW] 37430a6ae2ed6122 -l1d-0 write 00009a603343d580 00 0006 00 1 [MdW] 020e5e644f2ad57f -mem read 0000bb75517c9b80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000bb75517c9b80 01 0029 00 0 [McW(0007,00)] 0000000000000000 -l1d-1 write 0000bb75517c9b80 00 0014 02 0 [MdW] 7b7218fdb561dee4 -mem read 00001cff7cd11500 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00001cff7cd11500 01 0028 00 0 [McW(0028,02)] 0000000000000000 -l1d-1 write 00001cff7cd11500 00 0004 02 0 [MdW] 0e4d4bf31c06ad0e -l1d-1 write 000043ca5c07b240 00 0009 01 1 [MdW] 0b03165c64b25b52 -mem read 0000cb3c5e49d5c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000cb3c5e49d5c0 01 0015 00 0 [McW(0024,02)] 0000000000000000 -l1d-1 write 0000cb3c5e49d5c0 00 0007 00 0 [MdW] 96d85584f5f75334 -l1d-1 read 0000bb75517c9b80 00 0014 02 1 [MdW] 7b7218fdb561dee4 -l1d-0 write 0000c662cc646980 00 0006 02 1 [MdW] 3987fbb7ff0e452f -mem read 00002cbcc4bef440 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00002cbcc4bef440 01 0028 01 0 [McW(0011,00)] 0000000000000000 -l1d-0 write 00002cbcc4bef440 00 0001 01 0 [MdW] ab6b5c43445d1eaf -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] a4ca6d0b4cdb32f8 -l1d-0 read 000087a8e7348c80 00 0002 01 1 [MdW] f525efac2f3cf7fd -mem read 0000605ba6057540 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000605ba6057540 01 0008 01 0 [McW(0002,02)] 0000000000000000 -l1d-0 write 0000605ba6057540 00 0005 01 0 [MdW] cfc80859e336b176 -l1d-1 read 0000ed89583b9580 00 0006 02 1 [MdW] df138b65bf1ba81e -mem read 00007c5378aae380 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00007c5378aae380 00 0008 00 0 [McW(0003,00)] 0000000000000000 -l1d-1 write 00007c5378aae380 00 0014 03 0 [MdW] 53d9575e9769a4f8 -l1d-1 write 000016f64b35ad40 00 0005 00 1 [MdW] f0cf83fbebb65de6 -mem read 0000f66f9acff100 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000f66f9acff100 01 0000 00 0 [McW(0012,02)] 0000000000000000 -l1d-0 write 0000f66f9acff100 00 0004 02 0 [MdW] c7f5ae053c4b54cf -mem read 00007b42479583c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00007b42479583c0 00 0026 01 0 [McW(0002,03)] 0000000000000000 -l1d-1 write 00007b42479583c0 00 0015 00 0 [MdW] 1fca5feae77517e8 -l1d-0 read 0000a65bf8171680 00 0010 01 1 [MdW] e92d6a6544b2e04a -mem read 0000b78d2a790900 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000b78d2a790900 00 0023 01 0 [McW(0000,00)] 0000000000000000 -l1d-0 write 0000b78d2a790900 00 0004 03 0 [MdW] 4b286894f1b254a4 -mem read 000065dc0cb58f00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000065dc0cb58f00 00 0010 01 0 [McW(0008,00)] 0000000000000000 -l1d-0 write 000065dc0cb58f00 00 0012 01 0 [MdW] 33d1db34ba341148 -mem read 00003be6b01765c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00003be6b01765c0 01 0029 01 0 [McW(0022,02)] 0000000000000000 -l1d-0 write 00003be6b01765c0 00 0007 01 0 [MdW] b07105a9381db806 -l1d-0 read 000057ef223eb2c0 00 0011 00 1 [MdW] fcc2619e1793c524 -mem read 0000fa408c35ba00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000fa408c35ba00 00 0005 00 0 [McW(0025,01)] 0000000000000000 -l1d-0 write 0000fa408c35ba00 00 0008 01 0 [MdW] 0f510d0082c38a2a -l1d-1 read 00002814eea2cf80 00 0014 01 1 [MdW] ac76c3067a593258 -mem read 0000792d5ad259c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000792d5ad259c0 00 0024 01 0 [McW(0030,02)] 0000000000000000 -l1d-1 write 0000792d5ad259c0 00 0007 01 0 [MdW] 14078fc202486941 -l1d-1 read 0000bb75517c9b80 00 0014 02 1 [MdW] 7b7218fdb561dee4 -mem read 000073703a455800 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000073703a455800 00 0004 01 0 [McW(0028,03)] 0000000000000000 -l1d-1 write 000073703a455800 00 0000 01 0 [MdW] 84b896eee0ea8bfb -mem read 0000bd16375b9000 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000bd16375b9000 01 0012 00 0 [McW(0007,01)] 0000000000000000 -l1d-0 write 0000bd16375b9000 00 0000 01 0 [MdW] 471f2cfa81d3ac5a -mem read 00001ad58832f640 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00001ad58832f640 01 0009 01 0 [McW(0003,01)] 0000000000000000 -l1d-0 write 00001ad58832f640 00 0009 01 0 [MdW] 1ff8b0b6c912b3c9 -mem read 00006a25c963e900 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00006a25c963e900 00 0028 00 0 [McW(0018,01)] 0000000000000000 -l1d-1 write 00006a25c963e900 00 0004 03 0 [MdW] ae43245b0fd92af4 -mem read 0000acd63c8d1880 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000acd63c8d1880 00 0017 01 0 [McW(0021,02)] 0000000000000000 -l1d-0 write 0000acd63c8d1880 00 0002 02 0 [MdW] 8995eace539d8fd8 -mem read 00006d3f203d79c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00006d3f203d79c0 01 0014 01 0 [McW(0021,03)] 0000000000000000 -l1d-1 write 00006d3f203d79c0 00 0007 02 0 [MdW] 6e8f92dc574cb465 -mem read 00004dcada9f52c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00004dcada9f52c0 01 0010 00 0 [McW(0015,01)] 0000000000000000 -l1d-0 write 00004dcada9f52c0 00 0011 01 0 [MdW] df2509b29fb62744 -mem read 000030295cbb89c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000030295cbb89c0 01 0015 01 0 [McW(0018,02)] 0000000000000000 -l1d-1 write 000030295cbb89c0 00 0007 03 0 [MdW] 9dc7657dd695cd8c -mem read 000035b33dc0d400 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000035b33dc0d400 00 0003 00 0 [McW(0024,03)] 0000000000000000 -l1d-0 write 000035b33dc0d400 00 0000 02 0 [MdW] b3fa26fb2bb1072d -mem read 00004f46a7d2ea80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00004f46a7d2ea80 00 0020 00 0 [McW(0015,02)] 0000000000000000 -l1d-1 write 00004f46a7d2ea80 00 0010 00 0 [MdW] 5cc39e710db580f0 -mem read 00000b438aedb2c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00000b438aedb2c0 00 0027 00 0 [McW(0016,00)] 0000000000000000 -l1d-1 write 00000b438aedb2c0 00 0011 02 0 [MdW] 5ecbef1f072d7164 -l2 write 00001cff7cd11500 01 0028 00 1 [MdW(0028,02)] 0e4d4bf31c06ad0e -l2 read 00001cff7cd11500 01 0028 00 1 [SdW(0028,02)] 0e4d4bf31c06ad0e -l1i-1 read 00001cff7cd11500 00 0004 00 0 [ScR] 0e4d4bf31c06ad0e -mem read 0000aaaf5454e400 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000aaaf5454e400 01 0004 01 0 [McW(0029,01)] 0000000000000000 -l1d-0 write 0000aaaf5454e400 00 0000 03 0 [MdW] 9eb60b8de359e983 -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] a4ca6d0b4cdb32f8 -mem read 0000a40aa8666480 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000a40aa8666480 01 0000 01 0 [McW(0028,04)] 0000000000000000 -l1d-0 write 0000a40aa8666480 00 0002 03 0 [MdW] 173c5f4478ac31b3 -mem read 0000c0773417d200 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c0773417d200 01 0023 00 0 [McW(0019,02)] 0000000000000000 -l1d-1 write 0000c0773417d200 00 0008 02 0 [MdW] 729cc719bf00c2c7 -l2 write 00005066f9d0b480 00 0026 00 1 [MdW(0023,01)] 137a92d6da9c98a8 -l1d-0 evict 00005066f9d0b480 00 0002 00 [IcR] 137a92d6da9c98a8 -mem read 0000f448c073e880 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000f448c073e880 00 0022 01 0 [McW(0010,02)] 0000000000000000 -l1d-0 write 0000f448c073e880 00 0002 00 0 [MdW] 563a359b9f3978a0 -mem read 0000c86d27a3d040 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c86d27a3d040 01 0022 01 0 [McW(0003,02)] 0000000000000000 -l1d-0 write 0000c86d27a3d040 00 0001 02 0 [MdW] 3034aadc83c0c12c -mem read 0000883768b6a3c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000883768b6a3c0 00 0013 00 0 [McW(0029,02)] 0000000000000000 -l1d-1 write 0000883768b6a3c0 00 0015 01 0 [MdW] 380bc1e40165d228 -mem read 0000012233313580 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000012233313580 01 0002 00 0 [McW(0006,01)] 0000000000000000 -l1d-1 write 0000012233313580 00 0006 03 0 [MdW] 035a85acce905784 -l2 write 000039a6b2ebcd00 00 0001 00 1 [MdW(0009,00)] 92f3c8ee96a39ad8 -l1d-1 evict 000039a6b2ebcd00 00 0004 00 [IcR] 92f3c8ee96a39ad8 -mem read 0000803bdde89900 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000803bdde89900 00 0008 01 0 [McW(0031,00)] 0000000000000000 -l1d-1 write 0000803bdde89900 00 0004 00 0 [MdW] 4149d9c5522ff4aa -l1d-1 write 0000883768b6a3c0 00 0015 01 1 [MdW] 2ff8705424575c12 +mem read 0000811bf3b99ac0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000811bf3b99ac0 00 0027 00 0 [McW(0029,00)] 0000000000000000 +l1d-0 write 0000811bf3b99ac0 00 0011 00 0 [MdW] 80f59a91c0340835 +mem read 0000333bb344eb40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000333bb344eb40 00 0013 00 0 [McW(0006,05)] 0000000000000000 +l1d-0 write 0000333bb344eb40 00 0013 00 0 [MdW] 2a5c80345e469f5d +mem read 000077988753abc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000077988753abc0 01 0030 00 0 [McW(0016,04)] 0000000000000000 +l1d-1 write 000077988753abc0 00 0015 00 0 [MdW] 6a88399658070358 +mem read 00006bb87d1516c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006bb87d1516c0 01 0000 00 0 [McW(0006,06)] 0000000000000000 +l1d-1 write 00006bb87d1516c0 00 0011 00 0 [MdW] 7bd8aa2129e9a455 mem read 00006980d04a3400 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00006980d04a3400 00 0009 02 0 [McW(0012,03)] 0000000000000000 -l1d-1 write 00006980d04a3400 00 0000 02 0 [MdW] 7e87cb6b5a7c5b20 -mem read 000015c671e31180 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000015c671e31180 00 0030 00 0 [McW(0022,03)] 0000000000000000 -l1d-0 write 000015c671e31180 00 0006 03 0 [MdW] f2046a186505ea97 -l1d-1 read 0000242235f69b80 00 0014 00 1 [MdW] cd0f83c76caa72c4 -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] 101aad3e107bdbf7 -l1d-1 evict 0000c0773417d200 00 0008 02 [IcR] 729cc719bf00c2c7 -l2 write 0000c0773417d200 01 0023 00 1 [MdW(0019,02)] 729cc719bf00c2c7 -l2 read 0000c0773417d200 01 0023 00 1 [MdW(0019,02)] 729cc719bf00c2c7 -l1d-0 write 0000c0773417d200 00 0008 02 0 [MdW] 2f46e337ff7072cf -l1d-1 write 00004f46a7d2ea80 00 0010 00 1 [MdW] 72fa0bb71628eb88 -mem read 0000136b8cb094c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000136b8cb094c0 01 0030 01 0 [McW(0017,03)] 0000000000000000 -l1d-1 write 0000136b8cb094c0 00 0003 02 0 [MdW] 0222675c83eb04dd -l1d-0 write 000052d61b6d5a00 00 0008 00 1 [MdW] f2ba597f630895bc -l2 write 00007c5378aae380 00 0008 00 1 [MdW(0003,00)] 53d9575e9769a4f8 -l1d-1 evict 00007c5378aae380 00 0014 03 [IcR] 53d9575e9769a4f8 -mem read 00007d0902e50f80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00007d0902e50f80 01 0030 02 0 [McW(0022,04)] 0000000000000000 -l1d-1 write 00007d0902e50f80 00 0014 03 0 [MdW] 7db9c8fa6d0f39e2 -mem read 0000a0082dda2840 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000a0082dda2840 01 0021 00 0 [McW(0019,03)] 0000000000000000 -l1d-1 write 0000a0082dda2840 00 0001 01 0 [MdW] e32363faf3579882 -l1d-0 read 00009a603343d580 00 0006 00 1 [MdW] 020e5e644f2ad57f -l1d-0 write 0000c662cc646980 00 0006 02 1 [MdW] 2890bd85006b410f -l1d-1 read 0000b5cd51622240 00 0009 00 1 [MdW] 4f9c1718ca9de14e -l1d-1 write 00007d0902e50f80 00 0014 03 1 [MdW] 4175eb4d906962c0 -l1d-1 read 00004f46a7d2ea80 00 0010 00 1 [MdW] 72fa0bb71628eb88 -l1d-1 read 000043ca5c07b240 00 0009 01 1 [MdW] 0b03165c64b25b52 -l1d-0 read 00009a603343d580 00 0006 00 1 [MdW] 020e5e644f2ad57f -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] 101aad3e107bdbf7 -l1d-0 read 000057ef223eb2c0 00 0011 00 1 [MdW] fcc2619e1793c524 -l1d-0 read 000015c671e31180 00 0006 03 1 [MdW] f2046a186505ea97 -l1d-0 read 0000a65bf8171680 00 0010 01 1 [MdW] e92d6a6544b2e04a +l2 read 00006980d04a3400 00 0009 00 0 [McW(0015,03)] 0000000000000000 +l1d-1 write 00006980d04a3400 00 0000 00 0 [MdW] fe5ed69efed3831b +mem read 0000b8f3e311dac0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000b8f3e311dac0 00 0015 00 0 [McW(0023,00)] 0000000000000000 +l1d-0 write 0000b8f3e311dac0 00 0011 01 0 [MdW] e250fdaf6f64e5b7 +mem read 000066c650c81940 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000066c650c81940 01 0011 00 0 [McW(0019,05)] 0000000000000000 +l1d-0 write 000066c650c81940 00 0005 00 0 [MdW] e718d2e1df2aaa8e +mem read 0000d3afe5d1ca40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d3afe5d1ca40 01 0001 00 0 [McW(0012,06)] 0000000000000000 +l1d-0 write 0000d3afe5d1ca40 00 0009 00 0 [MdW] e87fc143f4844ad9 mem read 00006f44ab8bcf80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00006f44ab8bcf80 01 0003 00 0 [McW(0010,03)] 0000000000000000 -l1d-0 write 00006f44ab8bcf80 00 0014 00 0 [MdW] 53a8a8925ca7b5c1 -l2 write 00004f46a7d2ea80 00 0020 00 1 [MdW(0015,02)] 72fa0bb71628eb88 -l2 read 00004f46a7d2ea80 00 0020 00 1 [SdW(0015,02)] 72fa0bb71628eb88 -l1d-0 read 00004f46a7d2ea80 00 0010 02 0 [ScR] 72fa0bb71628eb88 -l1d-1 read 0000a0082dda2840 00 0001 01 1 [MdW] e32363faf3579882 -mem read 00004813c834cdc0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00004813c834cdc0 01 0021 01 0 [McW(0003,03)] 0000000000000000 -l1d-0 write 00004813c834cdc0 00 0007 02 0 [MdW] 6490dcecd59b9e65 -l1d-0 read 00004813c834cdc0 00 0007 02 1 [MdW] 6490dcecd59b9e65 -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] 101aad3e107bdbf7 -l1d-0 read 00001ad58832f640 00 0009 01 1 [MdW] 1ff8b0b6c912b3c9 -mem read 0000045cce7b2a40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000045cce7b2a40 00 0030 01 0 [McW(0002,04)] 0000000000000000 -l1d-0 write 0000045cce7b2a40 00 0009 02 0 [MdW] 9732b992490f2bec -l2 write 000087a8e7348c80 01 0019 00 1 [MdW(0010,01)] f525efac2f3cf7fd -l1d-0 evict 000087a8e7348c80 00 0002 01 [IcR] f525efac2f3cf7fd -mem read 0000418397142480 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000418397142480 01 0006 01 0 [McW(0004,00)] 0000000000000000 -l1d-0 write 0000418397142480 00 0002 01 0 [MdW] d5ca42501735883b +l2 read 00006f44ab8bcf80 00 0017 00 0 [McW(0002,02)] 0000000000000000 +l1d-0 write 00006f44ab8bcf80 00 0014 00 0 [MdW] 23fb33a840c4d118 mem read 0000908064eef6c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000908064eef6c0 01 0001 00 0 [McW(0001,01)] 0000000000000000 -l1d-1 write 0000908064eef6c0 00 0011 03 0 [MdW] f840ce71fef19440 -mem read 0000d1a495bc3400 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000d1a495bc3400 00 0007 00 0 [McW(0012,04)] 0000000000000000 -l1d-1 write 0000d1a495bc3400 00 0000 03 0 [MdW] b09506206c0eb875 +l2 read 0000908064eef6c0 00 0003 00 0 [McW(0000,07)] 0000000000000000 +l1d-0 write 0000908064eef6c0 00 0011 02 0 [MdW] 63b934d5bef74a33 +mem read 00004e306c77ba80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004e306c77ba80 00 0005 00 0 [McW(0019,04)] 0000000000000000 +l1d-1 write 00004e306c77ba80 00 0010 00 0 [MdW] e1a5b4847aabaabd +mem read 0000adfec432bac0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000adfec432bac0 00 0006 00 0 [McW(0014,07)] 0000000000000000 +l1d-1 write 0000adfec432bac0 00 0011 01 0 [MdW] 59f49d91de97aae8 +mem read 0000418397142480 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000418397142480 01 0006 00 0 [McW(0007,01)] 0000000000000000 +l1d-0 write 0000418397142480 00 0002 00 0 [MdW] 30dbb666b2eba234 +mem read 0000c662cc646980 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c662cc646980 01 0025 00 0 [McW(0017,03)] 0000000000000000 +l1d-0 write 0000c662cc646980 00 0006 00 0 [MdW] 07ae6380dda02047 +mem read 0000a4ed67fcb240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000a4ed67fcb240 01 0015 00 0 [McW(0028,07)] 0000000000000000 +l1d-0 write 0000a4ed67fcb240 00 0009 01 0 [MdW] 4dbd028faad33d6c +mem read 000016f64b35ad40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000016f64b35ad40 01 0019 00 0 [McW(0022,04)] 0000000000000000 +l1d-0 write 000016f64b35ad40 00 0005 01 0 [MdW] 292bf8907b74edd2 +mem read 00007e15eb118b00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007e15eb118b00 00 0004 00 0 [McW(0001,04)] 0000000000000000 +l1d-1 write 00007e15eb118b00 00 0012 00 0 [MdW] 9419ebae6d75d1b9 +mem read 0000726ad1114c40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000726ad1114c40 00 0011 00 0 [McW(0006,02)] 0000000000000000 +l1d-1 write 0000726ad1114c40 00 0001 00 0 [MdW] 018da7dff3d2ca2c +l2 write 00006980d04a3400 00 0009 00 1 [MdW(0015,03)] fe5ed69efed3831b +l2 read 00006980d04a3400 00 0009 00 1 [SdW(0015,03)] fe5ed69efed3831b +l1i-1 read 00006980d04a3400 00 0000 00 0 [ScR] fe5ed69efed3831b +mem read 0000dcedffd5d840 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000dcedffd5d840 00 0018 00 0 [McW(0001,01)] 0000000000000000 +l1d-0 write 0000dcedffd5d840 00 0001 00 0 [MdW] df69ebf16388cff7 +mem read 00004d48d3ab6400 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004d48d3ab6400 00 0025 00 0 [McW(0005,00)] 0000000000000000 +l1d-1 write 00004d48d3ab6400 00 0000 01 0 [MdW] 0bad902dc5dbfa0f +mem read 0000d2e78beabf80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d2e78beabf80 01 0007 00 0 [McW(0001,07)] 0000000000000000 +l1d-0 write 0000d2e78beabf80 00 0014 01 0 [MdW] bebed8958f71442d +mem read 0000d69a075d9a00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d69a075d9a00 01 0001 01 0 [McW(0005,03)] 0000000000000000 +l1d-1 write 0000d69a075d9a00 00 0008 00 0 [MdW] b97446909df2721a +mem read 0000c8ee96a39ac0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c8ee96a39ac0 00 0028 00 0 [McW(0016,05)] 0000000000000000 +l1d-1 write 0000c8ee96a39ac0 00 0011 02 0 [MdW] 020b007dc30de857 +mem read 0000799fa07cabc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000799fa07cabc0 01 0016 00 0 [McW(0031,06)] 0000000000000000 +l1d-1 write 0000799fa07cabc0 00 0015 01 0 [MdW] edd694c83890bee6 +l1i-1 read 00006980d04a3400 00 0000 00 1 [ScR] fe5ed69efed3831b +mem read 0000a18bf258f2c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000a18bf258f2c0 01 0029 00 0 [McW(0004,04)] 0000000000000000 +l1d-0 write 0000a18bf258f2c0 00 0011 03 0 [MdW] 3e7401997ef17cd7 +mem read 0000e5a32a13e780 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e5a32a13e780 00 0019 00 0 [McW(0023,07)] 0000000000000000 +l1d-0 write 0000e5a32a13e780 00 0014 02 0 [MdW] 2ffc914fca61ecc0 +mem read 00003174403caf00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00003174403caf00 00 0014 00 0 [McW(0012,07)] 0000000000000000 +l1d-0 write 00003174403caf00 00 0012 00 0 [MdW] 547038c816082f31 +mem read 000089351da6e1c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000089351da6e1c0 00 0029 00 0 [McW(0016,01)] 0000000000000000 +l1d-1 write 000089351da6e1c0 00 0007 00 0 [MdW] 3ca049e9cff6d872 +l1d-0 write 00003174403caf00 00 0012 00 1 [MdW] c334dfcfde2552e3 +mem read 000005ccfbfe3240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000005ccfbfe3240 00 0012 00 0 [McW(0029,03)] 0000000000000000 +l1d-0 write 000005ccfbfe3240 00 0009 02 0 [MdW] 816f140018ef71ee +mem read 000052d61b6d5a00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000052d61b6d5a00 01 0013 00 0 [McW(0000,04)] 0000000000000000 +l1d-0 write 000052d61b6d5a00 00 0008 00 0 [MdW] e775afa1004c0eb4 +mem read 000011812db55cc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000011812db55cc0 00 0023 00 0 [McW(0003,07)] 0000000000000000 +l1d-0 write 000011812db55cc0 00 0003 00 0 [MdW] b1bf6b2b3542a0b8 +mem read 00004813c834cdc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004813c834cdc0 01 0021 00 0 [McW(0024,06)] 0000000000000000 +l1d-0 write 00004813c834cdc0 00 0007 00 0 [MdW] 705c2dbf4c432cbe +mem read 0000df0f11cce0c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000df0f11cce0c0 01 0013 01 0 [McW(0029,05)] 0000000000000000 +l1d-1 write 0000df0f11cce0c0 00 0003 00 0 [MdW] b0fddea366d09da1 +mem read 0000aa6ad32c4a40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000aa6ad32c4a40 01 0012 00 0 [McW(0012,01)] 0000000000000000 +l1d-1 write 0000aa6ad32c4a40 00 0009 00 0 [MdW] 600bfac00272b065 +l1d-0 evict 00004813c834cdc0 00 0007 00 [IcR] 705c2dbf4c432cbe +l2 write 00004813c834cdc0 01 0021 00 1 [MdW(0024,06)] 705c2dbf4c432cbe +mem write 00004813c834cdc0 -1 -001 -1 1 [MdW] 705c2dbf4c432cbe +l2 evict 00004813c834cdc0 01 0021 00 [IcR(0024,06)] 705c2dbf4c432cbe +mem read 00002b4766af8580 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00002b4766af8580 00 0026 00 0 [McW(0024,06)] 0000000000000000 +l1d-0 write 00002b4766af8580 00 0006 01 0 [MdW] 9f9038d2bb1fa8a4 +mem read 0000fe2140a6f980 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000fe2140a6f980 01 0009 00 0 [McW(0009,06)] 0000000000000000 +l1d-1 write 0000fe2140a6f980 00 0006 00 0 [MdW] 4e2ed36498da5bfc +l1d-0 evict 00003174403caf00 00 0012 00 [IcR] c334dfcfde2552e3 +l2 write 00003174403caf00 00 0014 00 1 [MdW(0012,07)] c334dfcfde2552e3 +mem write 00003174403caf00 -1 -001 -1 1 [MdW] c334dfcfde2552e3 +l2 evict 00003174403caf00 00 0014 00 [IcR(0012,07)] c334dfcfde2552e3 +mem read 000036f519c3f6c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000036f519c3f6c0 00 0000 00 0 [McW(0012,07)] 0000000000000000 +l1d-1 write 000036f519c3f6c0 00 0011 03 0 [MdW] 55e565dc6cf2d794 +mem read 00006894f1b25480 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006894f1b25480 00 0020 00 0 [McW(0014,01)] 0000000000000000 +l1d-1 write 00006894f1b25480 00 0002 00 0 [MdW] 1e6ece905e742562 +mem read 000084af1bf9eb80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000084af1bf9eb80 00 0022 00 0 [McW(0025,01)] 0000000000000000 +l1d-1 write 000084af1bf9eb80 00 0014 00 0 [MdW] 2898ddc5bb04ad23 +mem read 0000dd1751df6340 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000dd1751df6340 00 0004 01 0 [McW(0024,05)] 0000000000000000 +l1d-0 write 0000dd1751df6340 00 0013 01 0 [MdW] ca36f02aad46d4dd +l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] e775afa1004c0eb4 +l1d-1 evict 00006980d04a3400 00 0000 00 [IcR] fe5ed69efed3831b +mem write 00006980d04a3400 -1 -001 -1 1 [MdW] fe5ed69efed3831b +l2 evict 00006980d04a3400 00 0009 00 [IcR(0015,03)] fe5ed69efed3831b +mem read 00009aaf14205900 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00009aaf14205900 01 0030 01 0 [McW(0015,03)] 0000000000000000 +l1d-1 write 00009aaf14205900 00 0004 00 0 [MdW] 6e85f64de7e125d5 +mem read 0000eeb339250a80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000eeb339250a80 01 0022 00 0 [McW(0026,01)] 0000000000000000 +l1d-1 write 0000eeb339250a80 00 0010 01 0 [MdW] baaf248a8b7b28a3 +mem read 00006074635435c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006074635435c0 01 0023 00 0 [McW(0008,01)] 0000000000000000 +l1d-0 write 00006074635435c0 00 0007 00 0 [MdW] 2d3837be469f574c +mem read 0000c7e07b801e00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c7e07b801e00 01 0001 02 0 [McW(0018,05)] 0000000000000000 +l1d-0 write 0000c7e07b801e00 00 0008 01 0 [MdW] edaed707c9f0d11e +l2 write 0000811bf3b99ac0 00 0027 00 1 [MdW(0029,00)] 80f59a91c0340835 +l1d-0 evict 0000811bf3b99ac0 00 0011 00 [IcR] 80f59a91c0340835 +l1d-1 evict 00006bb87d1516c0 00 0011 00 [IcR] 7bd8aa2129e9a455 +l2 write 00006bb87d1516c0 01 0000 00 1 [MdW(0006,06)] 7bd8aa2129e9a455 +mem write 00006bb87d1516c0 -1 -001 -1 1 [MdW] 7bd8aa2129e9a455 +l2 evict 00006bb87d1516c0 01 0000 00 [IcR(0006,06)] 7bd8aa2129e9a455 +mem read 00006cfd00fe8ac0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006cfd00fe8ac0 00 0024 00 0 [McW(0006,06)] 0000000000000000 +l1d-0 write 00006cfd00fe8ac0 00 0011 00 0 [MdW] b025b1f23a5ed092 mem read 00009fde26f888c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00009fde26f888c0 01 0016 00 0 [McW(0031,01)] 0000000000000000 -l1d-0 write 00009fde26f888c0 00 0003 01 0 [MdW] 8686d9ef6a6a287c -l2 write 00004d48d3ab6400 01 0025 00 1 [MdW(0001,00)] ba6e57907407aadf -l1d-1 evict 00004d48d3ab6400 00 0000 00 [IcR] ba6e57907407aadf -mem read 000013d16c815400 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000013d16c815400 00 0018 01 0 [McW(0014,01)] 0000000000000000 -l1d-1 write 000013d16c815400 00 0000 00 0 [MdW] 25524688721323dc -mem read 000073f8f4229a80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000073f8f4229a80 00 0006 00 0 [McW(0003,04)] 0000000000000000 -l1d-0 write 000073f8f4229a80 00 0010 03 0 [MdW] 1702ea018319b29e -mem read 0000750cdfd9ed40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000750cdfd9ed40 01 0027 01 0 [McW(0009,02)] 0000000000000000 -l1d-0 write 0000750cdfd9ed40 00 0005 02 0 [MdW] a1fecd85f61fe080 -l1d-0 write 000019a40a160240 00 0009 00 1 [MdW] 003301b2273c5e28 -mem read 000095873da506c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000095873da506c0 00 0012 00 0 [McW(0003,05)] 0000000000000000 -l1d-0 write 000095873da506c0 00 0011 02 0 [MdW] 5d652850f1d45f1d -mem read 000000f97fae5cc0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000000f97fae5cc0 00 0003 01 0 [McW(0021,04)] 0000000000000000 -l1d-0 write 000000f97fae5cc0 00 0003 02 0 [MdW] 5a9b67dc4f76dfb0 -l1d-0 read 0000b78d2a790900 00 0004 03 1 [MdW] 4b286894f1b254a4 -mem read 0000c92c00098fc0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c92c00098fc0 00 0011 00 0 [McW(0030,03)] 0000000000000000 -l1d-1 write 0000c92c00098fc0 00 0015 02 0 [MdW] 5ac8f2c9a0464889 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -mem read 000040f7755c2ac0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000040f7755c2ac0 01 0018 00 0 [McW(0027,02)] 0000000000000000 -l1d-0 write 000040f7755c2ac0 00 0011 03 0 [MdW] 25a76a616407309f -l1d-1 write 000039a5e213fe00 00 0008 00 1 [MdW] 936f106a592e18f2 -mem read 0000f76720bc2480 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000f76720bc2480 00 0027 01 0 [McW(0015,03)] 0000000000000000 -l1d-1 write 0000f76720bc2480 00 0002 00 0 [MdW] 565b8595108a30b2 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l1d-0 write 0000c662cc646980 00 0006 02 1 [MdW] 07a6036c839cdbf5 -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] 2ff8705424575c12 -l1d-0 write 0000c662cc646980 00 0006 02 1 [MdW] 5a40dd098e0e0eef -l2 write 00002814eea2cf80 00 0019 01 1 [MdW(0005,01)] ac76c3067a593258 -l1d-1 evict 00002814eea2cf80 00 0014 01 [IcR] ac76c3067a593258 -mem read 000092e2f479cf80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000092e2f479cf80 00 0031 01 0 [McW(0022,05)] 0000000000000000 -l1d-1 write 000092e2f479cf80 00 0014 01 0 [MdW] 33c61b349e0e4999 -l1d-1 write 0000bb75517c9b80 00 0014 02 1 [MdW] 78786a2e713dca43 -l1d-1 write 0000c20e6058a4c0 00 0003 00 1 [MdW] 9d29d9cac786a1e3 -l2 write 000073703a455800 00 0004 01 1 [MdW(0028,03)] 84b896eee0ea8bfb -l1d-1 evict 000073703a455800 00 0000 01 [IcR] 84b896eee0ea8bfb +l2 read 00009fde26f888c0 00 0005 01 0 [McW(0015,00)] 0000000000000000 +l1d-0 write 00009fde26f888c0 00 0003 01 0 [MdW] 405e3e9d2ede086b +mem read 000049afd5e02b40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000049afd5e02b40 01 0028 00 0 [McW(0010,03)] 0000000000000000 +l1d-0 write 000049afd5e02b40 00 0013 02 0 [MdW] bf398b0d859fce39 +mem read 0000fa408c35ba00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000fa408c35ba00 01 0031 00 0 [McW(0019,07)] 0000000000000000 +l1d-0 write 0000fa408c35ba00 00 0008 02 0 [MdW] 7eec603efdcdea3b +mem read 000014810cf26a80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000014810cf26a80 01 0020 00 0 [McW(0013,07)] 0000000000000000 +l1d-0 write 000014810cf26a80 00 0010 00 0 [MdW] dd8f7f397459bd40 +l1d-0 read 0000c662cc646980 00 0006 00 1 [MdW] 07ae6380dda02047 mem read 00007e3437831800 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00007e3437831800 01 0013 01 0 [McW(0018,03)] 0000000000000000 -l1d-1 write 00007e3437831800 00 0000 01 0 [MdW] ccaa263c2051e1d1 -mem read 0000534534d814c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000534534d814c0 00 0006 01 0 [McW(0011,01)] 0000000000000000 -l1d-0 write 0000534534d814c0 00 0003 03 0 [MdW] 5488878000e9ca11 -l1d-1 read 00006a25c963e900 00 0004 03 1 [MdW] ae43245b0fd92af4 -l1d-0 write 000040f7755c2ac0 00 0011 03 1 [MdW] b7c65bf46efbfe6e +l2 read 00007e3437831800 00 0017 01 0 [McW(0026,04)] 0000000000000000 +l1d-1 write 00007e3437831800 00 0000 00 0 [MdW] 6b9d76bb27c3ffa3 +mem read 0000740d5897eb00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000740d5897eb00 00 0016 00 0 [McW(0020,01)] 0000000000000000 +l1d-0 write 0000740d5897eb00 00 0012 00 0 [MdW] 024d94b6ba577e25 +mem read 0000a40aa8666480 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000a40aa8666480 01 0000 00 0 [McW(0018,07)] 0000000000000000 +l1d-0 write 0000a40aa8666480 00 0002 01 0 [MdW] b516458655735b72 +mem read 00006a36c42b4840 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006a36c42b4840 01 0024 00 0 [McW(0030,04)] 0000000000000000 +l1d-1 write 00006a36c42b4840 00 0001 01 0 [MdW] f142984e5c1a9135 +l2 write 0000b8f3e311dac0 00 0015 00 1 [MdW(0023,00)] e250fdaf6f64e5b7 +l1d-0 evict 0000b8f3e311dac0 00 0011 01 [IcR] e250fdaf6f64e5b7 +l1d-1 evict 000077988753abc0 00 0015 00 [IcR] 6a88399658070358 +l2 write 000077988753abc0 01 0030 00 1 [MdW(0016,04)] 6a88399658070358 +mem write 000077988753abc0 -1 -001 -1 1 [MdW] 6a88399658070358 +l2 evict 000077988753abc0 01 0030 00 [IcR(0016,04)] 6a88399658070358 +mem read 000095873da506c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000095873da506c0 01 0012 01 0 [McW(0016,04)] 0000000000000000 +l1d-0 write 000095873da506c0 00 0011 01 0 [MdW] 64a74b273feb83c9 +l1d-1 read 00004d48d3ab6400 00 0000 01 1 [MdW] 0bad902dc5dbfa0f +l1d-1 read 0000fe2140a6f980 00 0006 00 1 [MdW] 4e2ed36498da5bfc +mem read 000086890a9e27c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000086890a9e27c0 01 0005 00 0 [McW(0030,06)] 0000000000000000 +l1d-0 write 000086890a9e27c0 00 0015 00 0 [MdW] e5b8948696e0bed1 +l1d-0 evict 00009fde26f888c0 00 0003 01 [IcR] 405e3e9d2ede086b +l2 write 00009fde26f888c0 00 0005 01 1 [MdW(0015,00)] 405e3e9d2ede086b +mem write 00009fde26f888c0 -1 -001 -1 1 [MdW] 405e3e9d2ede086b +l2 evict 00009fde26f888c0 00 0005 01 [IcR(0015,00)] 405e3e9d2ede086b +mem read 00004ff679346ec0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004ff679346ec0 01 0026 00 0 [McW(0015,00)] 0000000000000000 +l1d-1 write 00004ff679346ec0 00 0011 00 0 [MdW] 69165a7d7db29609 +l1d-1 evict 0000eeb339250a80 00 0010 01 [IcR] baaf248a8b7b28a3 +l2 write 0000eeb339250a80 01 0022 00 1 [MdW(0026,01)] baaf248a8b7b28a3 +mem write 0000eeb339250a80 -1 -001 -1 1 [MdW] baaf248a8b7b28a3 +l2 evict 0000eeb339250a80 01 0022 00 [IcR(0026,01)] baaf248a8b7b28a3 +mem read 000008ededd7fd80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000008ededd7fd80 01 0009 01 0 [McW(0026,01)] 0000000000000000 +l1d-1 write 000008ededd7fd80 00 0006 01 0 [MdW] c37903f669eafd0e +mem read 00005f4478ac3180 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00005f4478ac3180 00 0023 01 0 [McW(0028,05)] 0000000000000000 +l1d-1 write 00005f4478ac3180 00 0006 02 0 [MdW] 8d9cf30f1c4ad7ad +mem read 000011abc3e7fe80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000011abc3e7fe80 01 0004 00 0 [McW(0012,05)] 0000000000000000 +l1d-1 write 000011abc3e7fe80 00 0010 01 0 [MdW] d8e6dec1c6caebeb +mem write 0000811bf3b99ac0 -1 -001 -1 1 [MdW] 80f59a91c0340835 +l2 evict 0000811bf3b99ac0 00 0027 00 [IcR(0029,00)] 80f59a91c0340835 +mem read 0000205a116a7d40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000205a116a7d40 00 0022 01 0 [McW(0029,00)] 0000000000000000 +l1d-1 write 0000205a116a7d40 00 0005 00 0 [MdW] 813d9d6b77fd8ec7 +l1d-0 write 000049afd5e02b40 00 0013 02 1 [MdW] 283b644b3a7a9886 +l1d-1 write 000008ededd7fd80 00 0006 01 1 [MdW] 7e9c23661053827d +l1d-1 evict 000011abc3e7fe80 00 0010 01 [IcR] d8e6dec1c6caebeb +l2 write 000011abc3e7fe80 01 0004 00 1 [MdW(0012,05)] d8e6dec1c6caebeb +mem write 000011abc3e7fe80 -1 -001 -1 1 [MdW] d8e6dec1c6caebeb +l2 evict 000011abc3e7fe80 01 0004 00 [IcR(0012,05)] d8e6dec1c6caebeb +mem read 00006e7158c618c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006e7158c618c0 01 0006 01 0 [McW(0012,05)] 0000000000000000 +l1d-0 write 00006e7158c618c0 00 0003 01 0 [MdW] 5179e06e6d1134ab +mem read 000046663e4def00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000046663e4def00 00 0031 00 0 [McW(0023,03)] 0000000000000000 +l1d-0 write 000046663e4def00 00 0012 01 0 [MdW] e21542a5128e9ecb +mem read 0000c86d27a3d040 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c86d27a3d040 00 0002 00 0 [McW(0030,03)] 0000000000000000 +l1d-0 write 0000c86d27a3d040 00 0001 01 0 [MdW] 86409ff435d1c7bf +mem read 000029aaf453f380 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000029aaf453f380 01 0017 00 0 [McW(0028,00)] 0000000000000000 +l1d-1 write 000029aaf453f380 00 0014 01 0 [MdW] a9bb42631a861d60 +l1d-0 evict 0000a40aa8666480 00 0002 01 [IcR] b516458655735b72 +l2 write 0000a40aa8666480 01 0000 00 1 [MdW(0018,07)] b516458655735b72 +mem write 0000a40aa8666480 -1 -001 -1 1 [MdW] b516458655735b72 +l2 evict 0000a40aa8666480 01 0000 00 [IcR(0018,07)] b516458655735b72 +mem read 00002cbcc4bef440 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00002cbcc4bef440 00 0001 00 0 [McW(0018,07)] 0000000000000000 +l1d-0 write 00002cbcc4bef440 00 0001 02 0 [MdW] dd17905e4616865e +l1d-0 evict 0000c7e07b801e00 00 0008 01 [IcR] edaed707c9f0d11e +l2 write 0000c7e07b801e00 01 0001 02 1 [MdW(0018,05)] edaed707c9f0d11e +mem write 0000c7e07b801e00 -1 -001 -1 1 [MdW] edaed707c9f0d11e +l2 evict 0000c7e07b801e00 01 0001 02 [IcR(0018,05)] edaed707c9f0d11e +mem read 00001ffbc4ff1a40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00001ffbc4ff1a40 01 0029 01 0 [McW(0018,05)] 0000000000000000 +l1d-1 write 00001ffbc4ff1a40 00 0009 01 0 [MdW] 3e4f7192e70a1235 +mem read 00009a603343d580 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00009a603343d580 01 0003 00 0 [McW(0020,03)] 0000000000000000 +l1d-0 write 00009a603343d580 00 0006 02 0 [MdW] 75aae8a3bba85efe +mem read 00004149ff11d440 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004149ff11d440 01 0016 01 0 [McW(0007,04)] 0000000000000000 +l1d-0 write 00004149ff11d440 00 0001 03 0 [MdW] 72b1be7a9fb5a8cd +mem read 0000c3a56b5f8bc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c3a56b5f8bc0 00 0010 00 0 [McW(0018,04)] 0000000000000000 +l1d-1 write 0000c3a56b5f8bc0 00 0015 00 0 [MdW] 9b4a314f80de0e14 +l2 write 0000adfec432bac0 00 0006 00 1 [MdW(0014,07)] 59f49d91de97aae8 +l1d-1 evict 0000adfec432bac0 00 0011 01 [IcR] 59f49d91de97aae8 +mem read 000048777e448ac0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000048777e448ac0 01 0020 01 0 [McW(0006,00)] 0000000000000000 +l1d-1 write 000048777e448ac0 00 0011 01 0 [MdW] ebc6d4db1d9b7ded +mem read 0000c72e4af4f8c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c72e4af4f8c0 01 0000 00 0 [McW(0007,06)] 0000000000000000 +l1d-1 write 0000c72e4af4f8c0 00 0003 01 0 [MdW] 9dd6e27e91bc9863 +mem read 0000872d66386580 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000872d66386580 01 0015 01 0 [McW(0021,01)] 0000000000000000 +l1d-1 write 0000872d66386580 00 0006 03 0 [MdW] b53b1938ff066c6d +mem read 0000d090b8181100 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d090b8181100 01 0017 01 0 [McW(0004,03)] 0000000000000000 +l1d-1 write 0000d090b8181100 00 0004 01 0 [MdW] 916619a5f0fd52ba +l2 write 0000908064eef6c0 00 0003 00 1 [MdW(0000,07)] 63b934d5bef74a33 +l1d-0 evict 0000908064eef6c0 00 0011 02 [IcR] 63b934d5bef74a33 +mem read 00004dcada9f52c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004dcada9f52c0 01 0010 00 0 [McW(0025,04)] 0000000000000000 +l1d-0 write 00004dcada9f52c0 00 0011 02 0 [MdW] e9b8fce55ce2beb8 +l1d-1 read 00007e3437831800 00 0000 00 1 [MdW] 6b9d76bb27c3ffa3 +l2 write 0000c8ee96a39ac0 00 0028 00 1 [MdW(0016,05)] 020b007dc30de857 +l1d-1 evict 0000c8ee96a39ac0 00 0011 02 [IcR] 020b007dc30de857 +mem read 0000e21b98b426c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e21b98b426c0 00 0013 01 0 [McW(0010,01)] 0000000000000000 +l1d-1 write 0000e21b98b426c0 00 0011 02 0 [MdW] efda01f1f1ed6559 +l1d-1 read 000029aaf453f380 00 0014 01 1 [MdW] a9bb42631a861d60 +mem read 000057c442889400 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000057c442889400 01 0025 01 0 [McW(0002,06)] 0000000000000000 +l1d-1 write 000057c442889400 00 0000 02 0 [MdW] d17309df336a0e01 +l1d-1 evict 00001ffbc4ff1a40 00 0009 01 [IcR] 3e4f7192e70a1235 +l2 write 00001ffbc4ff1a40 01 0029 01 1 [MdW(0018,05)] 3e4f7192e70a1235 +mem write 00001ffbc4ff1a40 -1 -001 -1 1 [MdW] 3e4f7192e70a1235 +l2 evict 00001ffbc4ff1a40 01 0029 01 [IcR(0018,05)] 3e4f7192e70a1235 +mem read 00001e12c123a180 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00001e12c123a180 01 0018 00 0 [McW(0018,05)] 0000000000000000 +l1d-0 write 00001e12c123a180 00 0006 03 0 [MdW] ff1d2beb43b9b33b +mem read 000031e4a2646740 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000031e4a2646740 00 0031 01 0 [McW(0027,01)] 0000000000000000 +l1d-0 write 000031e4a2646740 00 0013 03 0 [MdW] ad706d8054dc34c1 +l1d-0 evict 000052d61b6d5a00 00 0008 00 [IcR] e775afa1004c0eb4 +l2 write 000052d61b6d5a00 01 0013 00 1 [MdW(0000,04)] e775afa1004c0eb4 +mem write 000052d61b6d5a00 -1 -001 -1 1 [MdW] e775afa1004c0eb4 +l2 evict 000052d61b6d5a00 01 0013 00 [IcR(0000,04)] e775afa1004c0eb4 +mem read 00005de844e94fc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00005de844e94fc0 00 0010 01 0 [McW(0000,04)] 0000000000000000 +l1d-1 write 00005de844e94fc0 00 0015 02 0 [MdW] 81b80adc76842711 +mem read 0000f88b44bf5840 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000f88b44bf5840 01 0027 00 0 [McW(0017,00)] 0000000000000000 +l1d-1 write 0000f88b44bf5840 00 0001 02 0 [MdW] 5835bf5c1572177d +l1d-1 read 000008ededd7fd80 00 0006 01 1 [MdW] 7e9c23661053827d +l2 write 0000fe2140a6f980 01 0009 00 1 [MdW(0009,06)] 4e2ed36498da5bfc +l1d-1 evict 0000fe2140a6f980 00 0006 00 [IcR] 4e2ed36498da5bfc +l1d-0 evict 0000fa408c35ba00 00 0008 02 [IcR] 7eec603efdcdea3b +l2 write 0000fa408c35ba00 01 0031 00 1 [MdW(0019,07)] 7eec603efdcdea3b +mem write 0000fa408c35ba00 -1 -001 -1 1 [MdW] 7eec603efdcdea3b +l2 evict 0000fa408c35ba00 01 0031 00 [IcR(0019,07)] 7eec603efdcdea3b +mem read 0000780ab040b980 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000780ab040b980 01 0002 00 0 [McW(0019,07)] 0000000000000000 +l1d-1 write 0000780ab040b980 00 0006 00 0 [MdW] 0968e82e4bb02b18 +l1d-0 evict 0000e5a32a13e780 00 0014 02 [IcR] 2ffc914fca61ecc0 +l2 write 0000e5a32a13e780 00 0019 00 1 [MdW(0023,07)] 2ffc914fca61ecc0 +mem write 0000e5a32a13e780 -1 -001 -1 1 [MdW] 2ffc914fca61ecc0 +l2 evict 0000e5a32a13e780 00 0019 00 [IcR(0023,07)] 2ffc914fca61ecc0 +mem read 00009fde26f888c0 -1 -001 -1 1 [McW] 405e3e9d2ede086b +l2 read 00009fde26f888c0 00 0005 01 0 [ScW(0023,07)] 405e3e9d2ede086b +l1d-0 read 00009fde26f888c0 00 0003 02 0 [ScR] 405e3e9d2ede086b +l1d-1 read 00009aaf14205900 00 0004 00 1 [MdW] 6e85f64de7e125d5 +mem read 0000a91cd2b18040 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000a91cd2b18040 00 0024 01 0 [McW(0030,07)] 0000000000000000 +l1d-1 write 0000a91cd2b18040 00 0001 03 0 [MdW] 826c97612426419e +mem read 0000ae053b607e40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ae053b607e40 00 0011 01 0 [McW(0028,02)] 0000000000000000 +l1d-1 write 0000ae053b607e40 00 0009 01 0 [MdW] 33aab749622ce144 +l1d-1 write 0000799fa07cabc0 00 0015 01 1 [MdW] 5045fca347d4f27e +l1d-0 write 0000c86d27a3d040 00 0001 01 1 [MdW] 11d1789f7e517168 +l1d-0 evict 0000dd1751df6340 00 0013 01 [IcR] ca36f02aad46d4dd +l2 write 0000dd1751df6340 00 0004 01 1 [MdW(0024,05)] ca36f02aad46d4dd +mem write 0000dd1751df6340 -1 -001 -1 1 [MdW] ca36f02aad46d4dd +l2 evict 0000dd1751df6340 00 0004 01 [IcR(0024,05)] ca36f02aad46d4dd +mem read 0000d8ad57bdad00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d8ad57bdad00 00 0020 01 0 [McW(0024,05)] 0000000000000000 +l1d-1 write 0000d8ad57bdad00 00 0004 02 0 [MdW] d54d77b5577490c8 +l1d-1 evict 00004ff679346ec0 00 0011 00 [IcR] 69165a7d7db29609 +l2 write 00004ff679346ec0 01 0026 00 1 [MdW(0015,00)] 69165a7d7db29609 +mem write 00004ff679346ec0 -1 -001 -1 1 [MdW] 69165a7d7db29609 +l2 evict 00004ff679346ec0 01 0026 00 [IcR(0015,00)] 69165a7d7db29609 +mem read 00006afec145fe80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006afec145fe80 00 0006 01 0 [McW(0015,00)] 0000000000000000 +l1d-1 write 00006afec145fe80 00 0010 01 0 [MdW] 36968b104d056d30 +mem read 000052d61b6d5a00 -1 -001 -1 1 [McW] e775afa1004c0eb4 +l2 read 000052d61b6d5a00 00 0016 01 0 [ScW(0002,07)] e775afa1004c0eb4 +l1d-0 read 000052d61b6d5a00 00 0008 00 0 [ScR] e775afa1004c0eb4 +l1d-1 read 00006a36c42b4840 00 0001 01 1 [MdW] f142984e5c1a9135 +l1d-1 read 0000d090b8181100 00 0004 01 1 [MdW] 916619a5f0fd52ba +l2 write 0000a18bf258f2c0 01 0029 00 1 [MdW(0004,04)] 3e7401997ef17cd7 +l1d-0 evict 0000a18bf258f2c0 00 0011 03 [IcR] 3e7401997ef17cd7 +l2 write 000048777e448ac0 01 0020 01 1 [MdW(0006,00)] ebc6d4db1d9b7ded +l2 read 000048777e448ac0 01 0020 01 1 [SdW(0006,00)] ebc6d4db1d9b7ded +l1d-0 read 000048777e448ac0 00 0011 03 0 [ScR] ebc6d4db1d9b7ded +mem read 0000ba16e8b8b540 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ba16e8b8b540 01 0011 01 0 [McW(0014,02)] 0000000000000000 +l1d-0 write 0000ba16e8b8b540 00 0005 02 0 [MdW] 3de612c8e734de20 +mem read 0000d314b6aa3a80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d314b6aa3a80 01 0021 00 0 [McW(0031,04)] 0000000000000000 +l1d-1 write 0000d314b6aa3a80 00 0010 02 0 [MdW] 078cbf83c936f307 +l2 write 0000726ad1114c40 00 0011 00 1 [MdW(0006,02)] 018da7dff3d2ca2c +l1d-1 evict 0000726ad1114c40 00 0001 00 [IcR] 018da7dff3d2ca2c +l1d-0 evict 00004149ff11d440 00 0001 03 [IcR] 72b1be7a9fb5a8cd +l2 write 00004149ff11d440 01 0016 01 1 [MdW(0007,04)] 72b1be7a9fb5a8cd +l2 read 00004149ff11d440 01 0016 01 1 [MdW(0007,04)] 72b1be7a9fb5a8cd +l1d-1 write 00004149ff11d440 00 0001 00 0 [MdW] dbc0b014e9a8cd6b +mem read 00001ad58832f640 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00001ad58832f640 00 0009 00 0 [McW(0025,06)] 0000000000000000 +l1d-0 write 00001ad58832f640 00 0009 03 0 [MdW] 98a208d3aedf4d84 +l1d-1 read 000057c442889400 00 0000 02 1 [MdW] d17309df336a0e01 +mem read 000065dc0cb58f00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000065dc0cb58f00 01 0029 01 0 [McW(0025,02)] 0000000000000000 +l1d-0 write 000065dc0cb58f00 00 0012 02 0 [MdW] 01d6f903bd704355 +l1d-0 evict 0000d2e78beabf80 00 0014 01 [IcR] bebed8958f71442d +l2 write 0000d2e78beabf80 01 0007 00 1 [MdW(0001,07)] bebed8958f71442d +mem write 0000d2e78beabf80 -1 -001 -1 1 [MdW] bebed8958f71442d +l2 evict 0000d2e78beabf80 01 0007 00 [IcR(0001,07)] bebed8958f71442d mem read 00006bf6751e90c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00006bf6751e90c0 01 0013 02 0 [McW(0022,06)] 0000000000000000 -l1d-1 write 00006bf6751e90c0 00 0003 03 0 [MdW] 1bb491472e86fbd8 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l1d-0 write 00002cbcc4bef440 00 0001 01 1 [MdW] 4dbd028faad33d6c -mem read 0000ade5546e9640 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000ade5546e9640 00 0019 02 0 [McW(0011,02)] 0000000000000000 -l1d-0 write 0000ade5546e9640 00 0009 03 0 [MdW] 292bf8907b74edd2 -mem read 00008e48523b3e80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00008e48523b3e80 00 0028 01 0 [McW(0011,03)] 0000000000000000 -l1d-1 write 00008e48523b3e80 00 0010 01 0 [MdW] 9419ebae6d75d1b9 -l1d-1 read 00002ccb051018c0 00 0003 01 1 [MdW] 37430a6ae2ed6122 -l1d-0 read 00004dcada9f52c0 00 0011 01 1 [MdW] df2509b29fb62744 -l1d-0 write 0000a6f9f0803d80 00 0006 01 1 [MdW] c0f82e8e69025d47 -mem read 000063036c943940 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000063036c943940 01 0022 02 0 [McW(0019,04)] 0000000000000000 -l1d-0 write 000063036c943940 00 0005 03 0 [MdW] fe254bc894940d80 -l2 write 00001ad58832f640 01 0009 01 1 [MdW(0003,01)] 1ff8b0b6c912b3c9 -l1d-0 evict 00001ad58832f640 00 0009 01 [IcR] 1ff8b0b6c912b3c9 -mem read 0000d6eae7df0a40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000d6eae7df0a40 01 0025 01 0 [McW(0027,03)] 0000000000000000 -l1d-0 write 0000d6eae7df0a40 00 0009 01 0 [MdW] 212009caf997e0d1 -mem read 000025cc871abf00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000025cc871abf00 00 0017 02 0 [McW(0030,04)] 0000000000000000 -l1d-1 write 000025cc871abf00 00 0012 00 0 [MdW] a36cd516217674c5 -l1d-1 evict 00007a0ccec77d00 00 0004 01 [IcR] 603f902534bdd00d -mem read 0000fc3d1a588d00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000fc3d1a588d00 01 0007 00 0 [McW(0006,02)] 0000000000000000 -l1d-1 write 0000fc3d1a588d00 00 0004 01 0 [MdW] 20d6291b6fceeaa3 -l2 write 00005dfc154ee8c0 01 0005 00 1 [MdW(0015,00)] 8a7139c015313d43 -l1d-0 evict 00005dfc154ee8c0 00 0003 00 [IcR] 8a7139c015313d43 +l2 read 00006bf6751e90c0 00 0004 01 0 [McW(0001,07)] 0000000000000000 +l1d-0 write 00006bf6751e90c0 00 0003 03 0 [MdW] d8e76133f5e6b04d +l1d-0 evict 0000d3afe5d1ca40 00 0009 00 [IcR] e87fc143f4844ad9 +l2 write 0000d3afe5d1ca40 01 0001 00 1 [MdW(0012,06)] e87fc143f4844ad9 +mem write 0000d3afe5d1ca40 -1 -001 -1 1 [MdW] e87fc143f4844ad9 +l2 evict 0000d3afe5d1ca40 01 0001 00 [IcR(0012,06)] e87fc143f4844ad9 +mem read 0000015d1559b380 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000015d1559b380 01 0021 01 0 [McW(0012,06)] 0000000000000000 +l1d-1 write 0000015d1559b380 00 0014 02 0 [MdW] 70b67a115d2588f4 +mem read 0000f8857becc7c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000f8857becc7c0 00 0017 02 0 [McW(0023,02)] 0000000000000000 +l1d-1 write 0000f8857becc7c0 00 0015 03 0 [MdW] 72975557d7d3aa91 +l1d-1 read 0000f8857becc7c0 00 0015 03 1 [MdW] 72975557d7d3aa91 +mem read 00005549adeaf440 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00005549adeaf440 01 0014 00 0 [McW(0009,07)] 0000000000000000 +l1d-0 write 00005549adeaf440 00 0001 03 0 [MdW] f710a3fc6c88c778 +l2 write 000011812db55cc0 00 0023 00 1 [MdW(0003,07)] b1bf6b2b3542a0b8 +l1d-0 evict 000011812db55cc0 00 0003 00 [IcR] b1bf6b2b3542a0b8 mem read 00009a461a9864c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00009a461a9864c0 01 0006 02 0 [McW(0017,04)] 0000000000000000 -l1d-0 write 00009a461a9864c0 00 0003 00 0 [MdW] ba1ecfdec3d1dc5d -l1d-0 evict 00004f46a7d2ea80 00 0010 02 [IcR] 72fa0bb71628eb88 -l2 read 00004f46a7d2ea80 00 0020 00 1 [MdW(0015,02)] 72fa0bb71628eb88 -l1d-1 write 00004f46a7d2ea80 00 0010 00 0 [MdW] d8a5addb7e65e806 -l1d-1 read 0000cb3c5e49d5c0 00 0007 00 1 [MdW] 96d85584f5f75334 -l2 write 00003f232f338000 01 0030 00 1 [MdW(0018,00)] a2d413acae95e3cd -l1d-0 evict 00003f232f338000 00 0000 00 [IcR] a2d413acae95e3cd -l1d-1 evict 00007e3437831800 00 0000 01 [IcR] ccaa263c2051e1d1 -l2 write 00007e3437831800 01 0013 01 1 [MdW(0018,03)] ccaa263c2051e1d1 -l2 read 00007e3437831800 01 0013 01 1 [MdW(0018,03)] ccaa263c2051e1d1 -l1d-0 write 00007e3437831800 00 0000 00 0 [MdW] 9ac69dc0ff6bf852 -l2 write 0000045cce7b2a40 00 0030 01 1 [MdW(0002,04)] 9732b992490f2bec -l1d-0 evict 0000045cce7b2a40 00 0009 02 [IcR] 9732b992490f2bec -l2 read 00001ad58832f640 01 0009 01 1 [MdW(0003,01)] 1ff8b0b6c912b3c9 -l1d-0 write 00001ad58832f640 00 0009 02 0 [MdW] 84fce73def654b09 -l1d-0 read 0000c86d27a3d040 00 0001 02 1 [MdW] 3034aadc83c0c12c -l1d-0 read 0000c662cc646980 00 0006 02 1 [MdW] 5a40dd098e0e0eef -l1d-0 write 00009a603343d580 00 0006 00 1 [MdW] c334dfcfde2552e3 -l1d-0 write 0000c662cc646980 00 0006 02 1 [MdW] 816f140018ef71ee -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] f2ba597f630895bc -l1d-0 read 000019a40a160240 00 0009 00 1 [MdW] 003301b2273c5e28 -l1d-0 read 000063036c943940 00 0005 03 1 [MdW] fe254bc894940d80 -l1d-1 read 000016f64b35ad40 00 0005 00 1 [MdW] f0cf83fbebb65de6 -l1d-1 read 000039a5e213fe00 00 0008 00 1 [MdW] 936f106a592e18f2 -l1d-1 read 0000c97dfb94fd80 00 0006 00 1 [MdW] 866e8372e740908a -l2 write 0000242235f69b80 00 0023 00 1 [MdW(0024,01)] cd0f83c76caa72c4 -l1d-1 evict 0000242235f69b80 00 0014 00 [IcR] cd0f83c76caa72c4 -mem read 00005d35d68c9380 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00005d35d68c9380 00 0019 03 0 [McW(0022,07)] 0000000000000000 -l1d-1 write 00005d35d68c9380 00 0014 00 0 [MdW] 51bed99eb8f604e9 -mem read 0000333bb344eb40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000333bb344eb40 00 0013 01 0 [McW(0027,04)] 0000000000000000 -l1d-0 write 0000333bb344eb40 00 0013 01 0 [MdW] b8f60836dc885f73 -l1d-0 read 0000c86d27a3d040 00 0001 02 1 [MdW] 3034aadc83c0c12c -l1d-1 write 000039a5e213fe00 00 0008 00 1 [MdW] 7892a8403ecb4af3 -mem read 0000095a29bb9340 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000095a29bb9340 00 0011 01 0 [McW(0008,01)] 0000000000000000 -l1d-1 write 0000095a29bb9340 00 0013 00 0 [MdW] 482146cfbf6e77c6 -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] f2ba597f630895bc -l1d-1 write 00008e48523b3e80 00 0010 01 1 [MdW] 665d67bf32230465 -l1d-0 write 000000f97fae5cc0 00 0003 02 1 [MdW] d6f7e41866f9a4a8 +l2 read 00009a461a9864c0 00 0019 00 0 [McW(0024,03)] 0000000000000000 +l1d-0 write 00009a461a9864c0 00 0003 00 0 [MdW] ad2c5b4dca99e317 +mem read 0000219accc59ec0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000219accc59ec0 01 0014 01 0 [McW(0005,06)] 0000000000000000 +l1d-1 write 0000219accc59ec0 00 0011 00 0 [MdW] eb4acfe9e698c78e +l2 write 00006e7158c618c0 01 0006 01 1 [MdW(0012,05)] 5179e06e6d1134ab +l1d-0 evict 00006e7158c618c0 00 0003 01 [IcR] 5179e06e6d1134ab +mem read 00004fefb0cb7cc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004fefb0cb7cc0 00 0016 02 0 [McW(0031,05)] 0000000000000000 +l1d-0 write 00004fefb0cb7cc0 00 0003 01 0 [MdW] e98c3d92048e71e7 +mem read 00007cc1e5f42e40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007cc1e5f42e40 00 0027 00 0 [McW(0023,05)] 0000000000000000 +l1d-1 write 00007cc1e5f42e40 00 0009 02 0 [MdW] 38334869bbcf71a3 +mem read 0000045cce7b2a40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000045cce7b2a40 00 0030 00 0 [McW(0005,02)] 0000000000000000 +l1d-0 write 0000045cce7b2a40 00 0009 00 0 [MdW] 23260c93a8186343 +mem read 00004813c834cdc0 -1 -001 -1 1 [McW] 705c2dbf4c432cbe +l2 read 00004813c834cdc0 00 0025 01 0 [ScW(0020,02)] 705c2dbf4c432cbe +l1d-0 read 00004813c834cdc0 00 0007 01 0 [ScR] 705c2dbf4c432cbe +l1d-0 read 0000ba16e8b8b540 00 0005 02 1 [MdW] 3de612c8e734de20 +mem read 000019e8db69b240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000019e8db69b240 00 0001 01 0 [McW(0021,04)] 0000000000000000 +l1d-1 write 000019e8db69b240 00 0009 03 0 [MdW] e88dd55a43222698 +l1d-0 evict 00009fde26f888c0 00 0003 02 [IcR] 405e3e9d2ede086b +l2 read 00006e7158c618c0 01 0006 01 1 [SdW(0012,05)] 5179e06e6d1134ab +l1d-0 read 00006e7158c618c0 00 0003 02 0 [ScR] 5179e06e6d1134ab +l1d-1 read 00005de844e94fc0 00 0015 02 1 [MdW] 81b80adc76842711 +mem read 0000c0773417d200 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c0773417d200 01 0023 01 0 [McW(0013,05)] 0000000000000000 +l1d-1 write 0000c0773417d200 00 0008 01 0 [MdW] 092299a4bfa2bf4f +l2 write 0000c3a56b5f8bc0 00 0010 00 1 [MdW(0018,04)] 9b4a314f80de0e14 +l1d-1 evict 0000c3a56b5f8bc0 00 0015 00 [IcR] 9b4a314f80de0e14 +mem read 000077988753abc0 -1 -001 -1 1 [McW] 6a88399658070358 +l2 read 000077988753abc0 01 0030 00 0 [ScW(0007,02)] 6a88399658070358 +l1d-1 read 000077988753abc0 00 0015 00 0 [ScR] 6a88399658070358 +l2 write 00006bf6751e90c0 00 0004 01 1 [MdW(0001,07)] d8e76133f5e6b04d +l1d-0 evict 00006bf6751e90c0 00 0003 03 [IcR] d8e76133f5e6b04d +mem write 0000adfec432bac0 -1 -001 -1 1 [MdW] 59f49d91de97aae8 +l2 evict 0000adfec432bac0 00 0006 00 [IcR(0014,07)] 59f49d91de97aae8 +mem read 0000c66c607618c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c66c607618c0 00 0023 02 0 [McW(0014,07)] 0000000000000000 +l1d-0 write 0000c66c607618c0 00 0003 03 0 [MdW] ecc19bfa60ae4cae +l1d-0 write 0000c662cc646980 00 0006 00 1 [MdW] cb7a2ac78d75ea1e +l1d-0 evict 000086890a9e27c0 00 0015 00 [IcR] e5b8948696e0bed1 +l2 write 000086890a9e27c0 01 0005 00 1 [MdW(0030,06)] e5b8948696e0bed1 +mem write 000086890a9e27c0 -1 -001 -1 1 [MdW] e5b8948696e0bed1 +l2 evict 000086890a9e27c0 01 0005 00 [IcR(0030,06)] e5b8948696e0bed1 +mem read 0000a462f1bb1500 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000a462f1bb1500 00 0029 01 0 [McW(0030,06)] 0000000000000000 +l1d-0 write 0000a462f1bb1500 00 0004 00 0 [MdW] 836865657f27e721 +l1d-1 read 000008ededd7fd80 00 0006 01 1 [MdW] 7e9c23661053827d +mem read 00007a0ccec77d00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007a0ccec77d00 01 0014 02 0 [McW(0015,07)] 0000000000000000 +l1d-1 write 00007a0ccec77d00 00 0004 03 0 [MdW] c921aab4717f265e +mem read 0000b78d2a790900 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000b78d2a790900 01 0011 02 0 [McW(0007,00)] 0000000000000000 +l1d-0 write 0000b78d2a790900 00 0004 01 0 [MdW] e1b5104d91b6911e +l1d-1 evict 00005f4478ac3180 00 0006 02 [IcR] 8d9cf30f1c4ad7ad +l2 write 00005f4478ac3180 00 0023 01 1 [MdW(0028,05)] 8d9cf30f1c4ad7ad +mem write 00005f4478ac3180 -1 -001 -1 1 [MdW] 8d9cf30f1c4ad7ad +l2 evict 00005f4478ac3180 00 0023 01 [IcR(0028,05)] 8d9cf30f1c4ad7ad +mem read 0000517854abf080 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000517854abf080 01 0004 00 0 [McW(0028,05)] 0000000000000000 +l1d-1 write 0000517854abf080 00 0002 01 0 [MdW] e0a55470670fd6c5 +l1d-0 evict 00001ad58832f640 00 0009 03 [IcR] 98a208d3aedf4d84 +l2 write 00001ad58832f640 00 0009 00 1 [MdW(0025,06)] 98a208d3aedf4d84 +mem write 00001ad58832f640 -1 -001 -1 1 [MdW] 98a208d3aedf4d84 +l2 evict 00001ad58832f640 00 0009 00 [IcR(0025,06)] 98a208d3aedf4d84 +mem read 0000d053f6b48540 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d053f6b48540 00 0006 00 0 [McW(0025,06)] 0000000000000000 +l1d-1 write 0000d053f6b48540 00 0005 01 0 [MdW] a4fca9060769b884 +mem read 0000ced5eac0d680 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ced5eac0d680 01 0007 00 0 [McW(0029,04)] 0000000000000000 +l1d-0 write 0000ced5eac0d680 00 0010 01 0 [MdW] 1d2194cf7fc214b2 +l2 write 0000f88b44bf5840 01 0027 00 1 [MdW(0017,00)] 5835bf5c1572177d +l1d-1 evict 0000f88b44bf5840 00 0001 02 [IcR] 5835bf5c1572177d +l2 read 0000726ad1114c40 00 0011 00 1 [MdW(0006,02)] 018da7dff3d2ca2c +l1d-1 write 0000726ad1114c40 00 0001 02 0 [MdW] bd10168e51a99e6f +mem write 00006bf6751e90c0 -1 -001 -1 1 [MdW] d8e76133f5e6b04d +l2 evict 00006bf6751e90c0 00 0004 01 [IcR(0001,07)] d8e76133f5e6b04d +mem read 000063036c943940 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000063036c943940 01 0022 00 0 [McW(0001,07)] 0000000000000000 +l1d-0 write 000063036c943940 00 0005 03 0 [MdW] 1d26ae93ce6a6db6 +l2 read 0000fe2140a6f980 01 0009 00 1 [SdW(0009,06)] 4e2ed36498da5bfc +l1d-1 read 0000fe2140a6f980 00 0006 02 0 [ScR] 4e2ed36498da5bfc +l2 write 00002b4766af8580 00 0026 00 1 [MdW(0024,06)] 9f9038d2bb1fa8a4 +l1d-0 evict 00002b4766af8580 00 0006 01 [IcR] 9f9038d2bb1fa8a4 +mem read 0000c97dfb94fd80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c97dfb94fd80 00 0019 01 0 [McW(0026,07)] 0000000000000000 +l1d-0 write 0000c97dfb94fd80 00 0006 01 0 [MdW] 2fba7336b9505ed4 +mem read 0000bb8c7eafac00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000bb8c7eafac00 01 0022 01 0 [McW(0012,02)] 0000000000000000 +l1d-1 write 0000bb8c7eafac00 00 0000 03 0 [MdW] 209d7976d327f65d +l1d-1 read 0000fe2140a6f980 00 0006 02 1 [ScR] 4e2ed36498da5bfc +l1d-0 read 00009a603343d580 00 0006 02 1 [MdW] 75aae8a3bba85efe +mem read 0000fa408c35ba00 -1 -001 -1 1 [McW] 7eec603efdcdea3b +l2 read 0000fa408c35ba00 01 0031 00 0 [ScW(0026,00)] 7eec603efdcdea3b +l1d-0 read 0000fa408c35ba00 00 0008 01 0 [ScR] 7eec603efdcdea3b +l2 write 00006cfd00fe8ac0 00 0024 00 1 [MdW(0006,06)] b025b1f23a5ed092 +l2 read 00006cfd00fe8ac0 00 0024 00 1 [SdW(0006,06)] b025b1f23a5ed092 +l1i-0 read 00006cfd00fe8ac0 00 0011 00 0 [ScR] b025b1f23a5ed092 +l1d-1 evict 00007e3437831800 00 0000 00 [IcR] 6b9d76bb27c3ffa3 +l2 write 00007e3437831800 00 0017 01 1 [MdW(0026,04)] 6b9d76bb27c3ffa3 +mem write 00007e3437831800 -1 -001 -1 1 [MdW] 6b9d76bb27c3ffa3 +l2 evict 00007e3437831800 00 0017 01 [IcR(0026,04)] 6b9d76bb27c3ffa3 +mem read 0000afd2a9e735c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000afd2a9e735c0 01 0005 00 0 [McW(0026,04)] 0000000000000000 +l1d-1 write 0000afd2a9e735c0 00 0007 01 0 [MdW] 5f63bfdb9b9fe352 +l1d-1 read 0000219accc59ec0 00 0011 00 1 [MdW] eb4acfe9e698c78e +mem read 0000f448c073e880 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000f448c073e880 01 0030 02 0 [McW(0005,01)] 0000000000000000 +l1d-0 write 0000f448c073e880 00 0002 01 0 [MdW] 8c8ab877bdd6b24f mem read 00002c011c660300 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00002c011c660300 00 0012 01 0 [McW(0020,00)] 0000000000000000 -l1d-0 write 00002c011c660300 00 0012 02 0 [MdW] 7a2d736a5722d9e9 -l2 write 000015c671e31180 00 0030 00 1 [MdW(0022,03)] f2046a186505ea97 -l1d-0 evict 000015c671e31180 00 0006 03 [IcR] f2046a186505ea97 -mem read 00000701e403e980 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00000701e403e980 01 0024 00 0 [McW(0005,02)] 0000000000000000 -l1d-0 write 00000701e403e980 00 0006 03 0 [MdW] d91c439474d9ea75 -l1d-0 read 000095873da506c0 00 0011 02 1 [MdW] 5d652850f1d45f1d -l1d-1 write 00007d0902e50f80 00 0014 03 1 [MdW] b58da730dd4416c2 -l1d-0 read 00004813c834cdc0 00 0007 02 1 [MdW] 6490dcecd59b9e65 -l1d-1 read 0000bb75517c9b80 00 0014 02 1 [MdW] 78786a2e713dca43 -l1d-0 read 000057ef223eb2c0 00 0011 00 1 [MdW] fcc2619e1793c524 -l1d-1 write 0000883768b6a3c0 00 0015 01 1 [MdW] d8bb918563e07612 -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] d8bb918563e07612 -l1d-0 read 0000ade5546e9640 00 0009 03 1 [MdW] 292bf8907b74edd2 -l1d-0 read 00004813c834cdc0 00 0007 02 1 [MdW] 6490dcecd59b9e65 -l1d-1 write 0000095a29bb9340 00 0013 00 1 [MdW] 43acdf402f9215fc -l1d-0 write 000057ef223eb2c0 00 0011 00 1 [MdW] 33fc07f29b2cfaff -l1d-0 read 0000aaaf5454e400 00 0000 03 1 [MdW] 9eb60b8de359e983 -l1d-1 read 0000bb75517c9b80 00 0014 02 1 [MdW] 78786a2e713dca43 -l1d-0 write 000073f8f4229a80 00 0010 03 1 [MdW] 64a74b273feb83c9 -l1d-1 read 000039a5e213fe00 00 0008 00 1 [MdW] 7892a8403ecb4af3 -l1d-1 read 0000012233313580 00 0006 03 1 [MdW] 035a85acce905784 -l1d-0 read 000063036c943940 00 0005 03 1 [MdW] fe254bc894940d80 -mem read 0000bb381b2db600 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000bb381b2db600 01 0009 02 0 [McW(0005,03)] 0000000000000000 -l1d-1 write 0000bb381b2db600 00 0008 02 0 [MdW] e215c0b496405f9e -l1d-1 read 00007d0902e50f80 00 0014 03 1 [MdW] b58da730dd4416c2 -l1d-0 evict 00007a0ccec77d00 00 0004 00 [IcR] 603f902534bdd00d -mem read 00008a30b4505100 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00008a30b4505100 01 0003 01 0 [McW(0019,05)] 0000000000000000 -l1d-0 write 00008a30b4505100 00 0004 00 0 [MdW] a3b0cfd024518f31 -l2 write 0000ed89583b9580 00 0018 00 1 [MdW(0002,00)] df138b65bf1ba81e -l1d-1 evict 0000ed89583b9580 00 0006 02 [IcR] df138b65bf1ba81e -mem read 0000ccd4a1523d80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000ccd4a1523d80 01 0000 02 0 [McW(0000,01)] 0000000000000000 -l1d-1 write 0000ccd4a1523d80 00 0006 02 0 [MdW] 2e58730cb2f43705 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l2 write 0000acd63c8d1880 00 0017 01 1 [MdW(0021,02)] 8995eace539d8fd8 -l1d-0 evict 0000acd63c8d1880 00 0002 02 [IcR] 8995eace539d8fd8 -l2 read 000087a8e7348c80 01 0019 00 1 [MdW(0010,01)] f525efac2f3cf7fd -l1d-0 write 000087a8e7348c80 00 0002 02 0 [MdW] 06d5c4a0dca92e1a -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -mem read 0000b17eb0082080 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000b17eb0082080 00 0016 01 0 [McW(0006,03)] 0000000000000000 -l1d-1 write 0000b17eb0082080 00 0002 01 0 [MdW] d9a4ae41c0817096 -l1d-0 read 000057ef223eb2c0 00 0011 00 1 [MdW] 33fc07f29b2cfaff -l1d-0 write 00002cbcc4bef440 00 0001 01 1 [MdW] e21542a5128e9ecb -l2 write 0000a40aa8666480 01 0000 01 1 [MdW(0028,04)] 173c5f4478ac31b3 -l1d-0 evict 0000a40aa8666480 00 0002 03 [IcR] 173c5f4478ac31b3 -l2 read 0000acd63c8d1880 00 0017 01 1 [SdW(0021,02)] 8995eace539d8fd8 -l1d-0 read 0000acd63c8d1880 00 0002 03 0 [ScR] 8995eace539d8fd8 -l1d-1 read 00002ccb051018c0 00 0003 01 1 [MdW] 37430a6ae2ed6122 -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] d8bb918563e07612 -l2 write 0000792d5ad259c0 00 0024 01 1 [MdW(0030,02)] 14078fc202486941 -l1d-1 evict 0000792d5ad259c0 00 0007 01 [IcR] 14078fc202486941 -mem read 0000ecb652ef69c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000ecb652ef69c0 00 0029 00 0 [McW(0031,02)] 0000000000000000 -l1d-1 write 0000ecb652ef69c0 00 0007 01 0 [MdW] 9b9abf9df1c1a30b -l1d-0 evict 000066e78b358f00 00 0012 00 [IcR] 46e305bdddfc6574 -l2 write 000066e78b358f00 00 0009 00 1 [MdW(0025,00)] 46e305bdddfc6574 -l2 read 000066e78b358f00 00 0009 00 1 [MdW(0025,00)] 46e305bdddfc6574 -l1d-1 write 000066e78b358f00 00 0012 01 0 [MdW] 4be2debb8d9625f2 -l1d-0 write 0000f448c073e880 00 0002 00 1 [MdW] 559a57ec385bc2c2 -mem read 0000f029765c7540 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000f029765c7540 00 0020 01 0 [McW(0004,01)] 0000000000000000 -l1d-1 write 0000f029765c7540 00 0005 01 0 [MdW] 2b0306dcb419a086 -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] 101aad3e107bdbf7 -l2 write 0000d6eae7df0a40 01 0025 01 1 [MdW(0027,03)] 212009caf997e0d1 -l1d-0 evict 0000d6eae7df0a40 00 0009 01 [IcR] 212009caf997e0d1 -l2 read 0000045cce7b2a40 00 0030 01 1 [SdW(0002,04)] 9732b992490f2bec -l1d-0 read 0000045cce7b2a40 00 0009 01 0 [ScR] 9732b992490f2bec -l1d-1 write 0000d99af3531440 00 0001 00 1 [MdW] 9dd6e27e91bc9863 -mem read 00006a36c42b4840 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00006a36c42b4840 00 0014 00 0 [McW(0029,03)] 0000000000000000 -l1d-1 write 00006a36c42b4840 00 0001 02 0 [MdW] b53b1938ff066c6d -mem read 00001c9702375bc0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00001c9702375bc0 00 0021 01 0 [McW(0005,04)] 0000000000000000 -l1d-1 write 00001c9702375bc0 00 0015 03 0 [MdW] 916619a5f0fd52ba -l1d-0 read 000019a40a160240 00 0009 00 1 [MdW] 003301b2273c5e28 -l1d-0 read 0000418397142480 00 0002 01 1 [MdW] d5ca42501735883b -l1d-1 write 0000095a29bb9340 00 0013 00 1 [MdW] 67fb54c3292395a9 -l2 write 0000136b8cb094c0 01 0030 01 1 [MdW(0017,03)] 0222675c83eb04dd -l1d-1 evict 0000136b8cb094c0 00 0003 02 [IcR] 0222675c83eb04dd -mem read 000050012c6eb8c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000050012c6eb8c0 00 0006 02 0 [McW(0008,02)] 0000000000000000 -l1d-1 write 000050012c6eb8c0 00 0003 02 0 [MdW] 8d505e21d3399d55 -l1d-1 write 000092e2f479cf80 00 0014 01 1 [MdW] d17309df336a0e01 -l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] 33d1db34ba341148 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l1d-0 read 00008a30b4505100 00 0004 00 1 [MdW] a3b0cfd024518f31 -l1d-0 read 00004813c834cdc0 00 0007 02 1 [MdW] 6490dcecd59b9e65 -l1d-1 read 0000b5cd51622240 00 0009 00 1 [MdW] 4f9c1718ca9de14e -l1d-1 read 0000908064eef6c0 00 0011 03 1 [MdW] f840ce71fef19440 -mem read 0000fe371a542400 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000fe371a542400 00 0004 02 0 [McW(0021,05)] 0000000000000000 -l1d-1 write 0000fe371a542400 00 0000 01 0 [MdW] 0968e82e4bb02b18 -mem read 0000f27b5523ddc0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000f27b5523ddc0 01 0017 00 0 [McW(0000,02)] 0000000000000000 -l1d-0 write 0000f27b5523ddc0 00 0007 03 0 [MdW] 8a77fd2642a4e939 -l1d-0 read 0000605ba6057540 00 0005 01 1 [MdW] cfc80859e336b176 -l1d-1 evict 00001cff7cd11500 00 0004 02 [IcR] 0e4d4bf31c06ad0e +l2 read 00002c011c660300 00 0012 01 0 [McW(0023,04)] 0000000000000000 +l1d-0 write 00002c011c660300 00 0012 03 0 [MdW] aacfbf30c579992e +l1d-0 read 000031e4a2646740 00 0013 03 1 [MdW] ad706d8054dc34c1 +l2 write 00009aaf14205900 01 0030 01 1 [MdW(0015,03)] 6e85f64de7e125d5 +l1d-1 evict 00009aaf14205900 00 0004 00 [IcR] 6e85f64de7e125d5 mem read 00001fd6787ba100 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00001fd6787ba100 00 0007 01 0 [McW(0002,05)] 0000000000000000 -l1d-1 write 00001fd6787ba100 00 0004 02 0 [MdW] df1b827b0bffd943 -mem read 000049889647d200 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000049889647d200 00 0022 02 0 [McW(0029,04)] 0000000000000000 -l1d-1 write 000049889647d200 00 0008 03 0 [MdW] 77793b7a2d13abb1 -l2 write 00005d35d68c9380 00 0019 03 1 [MdW(0022,07)] 51bed99eb8f604e9 -l1d-1 evict 00005d35d68c9380 00 0014 00 [IcR] 51bed99eb8f604e9 -mem read 00006d9316738f80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00006d9316738f80 00 0027 02 0 [McW(0004,02)] 0000000000000000 -l1d-1 write 00006d9316738f80 00 0014 00 0 [MdW] 6700e6b15b3571ec -l1d-1 write 00000b438aedb2c0 00 0011 02 1 [MdW] f960a061cdcbd97f -l1d-1 write 00007d0902e50f80 00 0014 03 1 [MdW] cb58c668f7241e9f -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] d8bb918563e07612 -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] f2ba597f630895bc -l1d-1 read 00003bd14ab212c0 00 0011 01 1 [MdW] 338c39d468604fc8 -l1d-1 read 00001c9702375bc0 00 0015 03 1 [MdW] 916619a5f0fd52ba -l1d-0 read 00007e3437831800 00 0000 00 1 [MdW] 9ac69dc0ff6bf852 -l1d-0 read 0000045cce7b2a40 00 0009 01 1 [ScR] 9732b992490f2bec -l1d-0 read 000073f8f4229a80 00 0010 03 1 [MdW] 64a74b273feb83c9 -l1d-1 write 0000012233313580 00 0006 03 1 [MdW] 0aa2d7ab5dfce8cc -mem read 00003174403caf00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00003174403caf00 00 0014 01 0 [McW(0000,03)] 0000000000000000 -l1d-0 write 00003174403caf00 00 0012 00 0 [MdW] e27dc8a846a78e56 -l1d-1 write 000039a5e213fe00 00 0008 00 1 [MdW] 8dc08ec49d595537 -l1d-0 write 000065dc0cb58f00 00 0012 01 1 [MdW] 5d6e440d0dd55dd5 -mem read 0000e030a3d78740 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000e030a3d78740 01 0010 01 0 [McW(0021,06)] 0000000000000000 -l1d-1 write 0000e030a3d78740 00 0013 01 0 [MdW] bccc952adbed9749 -l1d-1 read 000043ca5c07b240 00 0009 01 1 [MdW] 0b03165c64b25b52 -l2 write 0000033616c7e540 00 0022 00 1 [MdW(0023,00)] 505e4c2fc450e2ad -l1d-0 evict 0000033616c7e540 00 0005 00 [IcR] 505e4c2fc450e2ad -mem read 0000e4f3a6fe9140 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000e4f3a6fe9140 01 0020 01 0 [McW(0007,02)] 0000000000000000 -l1d-0 write 0000e4f3a6fe9140 00 0005 00 0 [MdW] 3cd13398bb7792b5 -l1d-0 read 00009a461a9864c0 00 0003 00 1 [MdW] ba1ecfdec3d1dc5d -l1d-1 read 0000012233313580 00 0006 03 1 [MdW] 0aa2d7ab5dfce8cc -mem read 00001b6fc10d9840 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00001b6fc10d9840 00 0027 03 0 [McW(0007,03)] 0000000000000000 -l1d-0 write 00001b6fc10d9840 00 0001 03 0 [MdW] 7f5c255dd3c361e0 -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] 101aad3e107bdbf7 -l1d-1 write 000066e78b358f00 00 0012 01 1 [MdW] 9d96c52a7d69d60e -l1d-1 read 0000bb381b2db600 00 0008 02 1 [MdW] e215c0b496405f9e -l1d-1 read 0000d99af3531440 00 0001 00 1 [MdW] 9dd6e27e91bc9863 -l2 write 0000c97dfb94fd80 00 0019 00 1 [MdW(0017,00)] 866e8372e740908a -l1d-1 evict 0000c97dfb94fd80 00 0006 00 [IcR] 866e8372e740908a -l2 read 0000ed89583b9580 00 0018 00 1 [SdW(0002,00)] df138b65bf1ba81e -l1d-1 read 0000ed89583b9580 00 0006 00 0 [ScR] df138b65bf1ba81e -l2 write 00006bf6751e90c0 01 0013 02 1 [MdW(0022,06)] 1bb491472e86fbd8 -l2 read 00006bf6751e90c0 01 0013 02 1 [SdW(0022,06)] 1bb491472e86fbd8 -l1i-1 read 00006bf6751e90c0 00 0003 00 0 [ScR] 1bb491472e86fbd8 -l2 write 0000ccd4a1523d80 01 0000 02 1 [MdW(0000,01)] 2e58730cb2f43705 -l2 read 0000ccd4a1523d80 01 0000 02 1 [SdW(0000,01)] 2e58730cb2f43705 -l1i-1 read 0000ccd4a1523d80 00 0006 00 0 [ScR] 2e58730cb2f43705 -l1d-1 evict 0000ccd4a1523d80 00 0006 02 [IcR] 2e58730cb2f43705 -mem read 0000780ab040b980 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000780ab040b980 01 0002 01 0 [McW(0005,05)] 0000000000000000 -l1d-1 write 0000780ab040b980 00 0006 02 0 [MdW] e88dd55a43222698 -l1d-0 read 0000c0773417d200 00 0008 02 1 [MdW] 2f46e337ff7072cf -l1d-1 read 000043ca5c07b240 00 0009 01 1 [MdW] 0b03165c64b25b52 -l1i-1 read 0000ccd4a1523d80 00 0006 00 1 [ScR] 2e58730cb2f43705 -l1d-1 read 0000ed89583b9580 00 0006 00 1 [ScR] df138b65bf1ba81e -l2 write 0000ff71c82dc900 01 0006 00 1 [MdW(0010,00)] 75c7c14436ed60c6 -l1d-0 evict 0000ff71c82dc900 00 0004 01 [IcR] 75c7c14436ed60c6 -l2 write 00001fd6787ba100 00 0007 01 1 [MdW(0002,05)] df1b827b0bffd943 -l2 read 00001fd6787ba100 00 0007 01 1 [SdW(0002,05)] df1b827b0bffd943 -l1d-0 read 00001fd6787ba100 00 0004 01 0 [ScR] df1b827b0bffd943 -l2 write 0000a6f9f0803d80 00 0010 00 1 [MdW(0030,01)] c0f82e8e69025d47 -l1d-0 evict 0000a6f9f0803d80 00 0006 01 [IcR] c0f82e8e69025d47 -mem read 00002b4766af8580 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00002b4766af8580 01 0026 01 0 [McW(0004,03)] 0000000000000000 -l1d-0 write 00002b4766af8580 00 0006 01 0 [MdW] 66d6c51c457e98ea -l2 write 0000750cdfd9ed40 01 0027 01 1 [MdW(0009,02)] a1fecd85f61fe080 -l1d-0 evict 0000750cdfd9ed40 00 0005 02 [IcR] a1fecd85f61fe080 -mem read 0000ba16e8b8b540 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000ba16e8b8b540 01 0011 01 0 [McW(0010,04)] 0000000000000000 -l1d-0 write 0000ba16e8b8b540 00 0005 02 0 [MdW] 9baa72244d2761d2 -mem read 000042ff28b0ea40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000042ff28b0ea40 01 0023 01 0 [McW(0004,04)] 0000000000000000 -l1d-1 write 000042ff28b0ea40 00 0009 02 0 [MdW] 21186ad558f150fb -l1d-1 write 00002d9824d83d80 00 0006 01 1 [MdW] c921aab4717f265e -l1d-0 write 00009fde26f888c0 00 0003 01 1 [MdW] e1b5104d91b6911e -l2 write 0000bb75517c9b80 01 0029 00 1 [MdW(0007,00)] 78786a2e713dca43 -l1d-1 evict 0000bb75517c9b80 00 0014 02 [IcR] 78786a2e713dca43 -l2 read 00002814eea2cf80 00 0019 01 1 [SdW(0005,01)] ac76c3067a593258 -l1d-1 read 00002814eea2cf80 00 0014 02 0 [ScR] ac76c3067a593258 -l1i-1 read 00001cff7cd11500 00 0004 00 1 [ScR] 0e4d4bf31c06ad0e -l2 write 00009a603343d580 00 0031 00 1 [MdW(0019,01)] c334dfcfde2552e3 -l1d-0 evict 00009a603343d580 00 0006 00 [IcR] c334dfcfde2552e3 -l1d-1 evict 0000ed89583b9580 00 0006 00 [IcR] df138b65bf1ba81e -l2 read 0000ed89583b9580 00 0018 00 1 [MdW(0002,00)] df138b65bf1ba81e -l1d-0 write 0000ed89583b9580 00 0006 00 0 [MdW] 6c07dacfdb56821e -l1d-0 write 000063036c943940 00 0005 03 1 [MdW] 05816e4fa46226e6 -l1d-1 read 000039a5e213fe00 00 0008 00 1 [MdW] 8dc08ec49d595537 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l2 write 000092e2f479cf80 00 0031 01 1 [MdW(0022,05)] d17309df336a0e01 -l1d-1 evict 000092e2f479cf80 00 0014 01 [IcR] d17309df336a0e01 -mem read 0000b1312a1f2f80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000b1312a1f2f80 01 0019 01 0 [McW(0026,00)] 0000000000000000 -l1d-1 write 0000b1312a1f2f80 00 0014 01 0 [MdW] 63f4a195a598fedc -l2 write 0000bd16375b9000 01 0012 00 1 [MdW(0007,01)] 471f2cfa81d3ac5a -l1d-0 evict 0000bd16375b9000 00 0000 01 [IcR] 471f2cfa81d3ac5a -l2 read 00003f232f338000 01 0030 00 1 [SdW(0018,00)] a2d413acae95e3cd -l1d-0 read 00003f232f338000 00 0000 01 0 [ScR] a2d413acae95e3cd -l2 write 00001ad58832f640 01 0009 01 1 [MdW(0003,01)] 84fce73def654b09 -l1d-0 evict 00001ad58832f640 00 0009 02 [IcR] 84fce73def654b09 -mem read 00004c22aaaafa40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00004c22aaaafa40 00 0020 02 0 [McW(0003,06)] 0000000000000000 -l1d-0 write 00004c22aaaafa40 00 0009 02 0 [MdW] 508089914b57b049 -l2 write 000035b33dc0d400 00 0003 00 1 [MdW(0024,03)] b3fa26fb2bb1072d -l1d-0 evict 000035b33dc0d400 00 0000 02 [IcR] b3fa26fb2bb1072d -l2 read 0000bd16375b9000 01 0012 00 1 [SdW(0007,01)] 471f2cfa81d3ac5a -l1d-0 read 0000bd16375b9000 00 0000 02 0 [ScR] 471f2cfa81d3ac5a -l1d-1 read 000039a5e213fe00 00 0008 00 1 [MdW] 8dc08ec49d595537 -l2 write 0000ade5546e9640 00 0019 02 1 [MdW(0011,02)] 292bf8907b74edd2 -l1d-0 evict 0000ade5546e9640 00 0009 03 [IcR] 292bf8907b74edd2 -l2 read 00001ad58832f640 01 0009 01 1 [MdW(0003,01)] 84fce73def654b09 -l1d-0 write 00001ad58832f640 00 0009 03 0 [MdW] 42b739607dd8504e -l1d-1 read 000039a5e213fe00 00 0008 00 1 [MdW] 8dc08ec49d595537 -l1d-0 read 000018c9dccfc840 00 0001 00 1 [MdW] 83b569fd7e2f93d0 -l2 write 0000c20e6058a4c0 01 0014 00 1 [MdW(0027,01)] 9d29d9cac786a1e3 -l1d-1 evict 0000c20e6058a4c0 00 0003 00 [IcR] 9d29d9cac786a1e3 -l2 read 0000136b8cb094c0 01 0030 01 1 [MdW(0017,03)] 0222675c83eb04dd -l1d-1 write 0000136b8cb094c0 00 0003 00 0 [MdW] 4d51034c84140818 -l1d-1 write 000013d16c815400 00 0000 00 1 [MdW] 7d923acd36856c0b -l1d-0 read 000019a40a160240 00 0009 00 1 [MdW] 003301b2273c5e28 -l1d-0 read 0000333bb344eb40 00 0013 01 1 [MdW] b8f60836dc885f73 -l1d-1 evict 00006bf6751e90c0 00 0003 03 [IcR] 1bb491472e86fbd8 -mem read 000093de24a554c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000093de24a554c0 00 0025 01 0 [McW(0015,04)] 0000000000000000 -l1d-1 write 000093de24a554c0 00 0003 03 0 [MdW] e1280befc25cd4a1 -mem read 0000443a27100c40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000443a27100c40 00 0008 02 0 [McW(0000,04)] 0000000000000000 -l1d-1 write 0000443a27100c40 00 0001 03 0 [MdW] 3be61c8763ba8f77 -l1d-0 read 00001ad58832f640 00 0009 03 1 [MdW] 42b739607dd8504e -l1d-1 read 0000e030a3d78740 00 0013 01 1 [MdW] bccc952adbed9749 -l1d-1 read 000049889647d200 00 0008 03 1 [MdW] 77793b7a2d13abb1 -l1d-1 read 0000b1312a1f2f80 00 0014 01 1 [MdW] 63f4a195a598fedc -l2 write 0000c662cc646980 00 0000 00 1 [MdW(0014,00)] 816f140018ef71ee -l1d-0 evict 0000c662cc646980 00 0006 02 [IcR] 816f140018ef71ee -l2 write 0000780ab040b980 01 0002 01 1 [MdW(0005,05)] e88dd55a43222698 -l2 read 0000780ab040b980 01 0002 01 1 [SdW(0005,05)] e88dd55a43222698 -l1d-0 read 0000780ab040b980 00 0006 02 0 [ScR] e88dd55a43222698 -l2 write 00000701e403e980 01 0024 00 1 [MdW(0005,02)] d91c439474d9ea75 -l1d-0 evict 00000701e403e980 00 0006 03 [IcR] d91c439474d9ea75 -l2 read 00009a603343d580 00 0031 00 1 [MdW(0019,01)] c334dfcfde2552e3 -l1d-0 write 00009a603343d580 00 0006 03 0 [MdW] e4bd1c98fd7a6b9f -l1d-1 read 000039a5e213fe00 00 0008 00 1 [MdW] 8dc08ec49d595537 -l1d-0 read 000057ef223eb2c0 00 0011 00 1 [MdW] 33fc07f29b2cfaff -l1d-0 read 00002c011c660300 00 0012 02 1 [MdW] 7a2d736a5722d9e9 -l1d-1 read 00002814eea2cf80 00 0014 02 1 [ScR] ac76c3067a593258 -l1d-0 read 0000ed89583b9580 00 0006 00 1 [MdW] 6c07dacfdb56821e -l1d-1 read 0000b17eb0082080 00 0002 01 1 [MdW] d9a4ae41c0817096 -l1d-0 write 00001ad58832f640 00 0009 03 1 [MdW] f1d026232e24dd48 -l1d-1 write 0000095a29bb9340 00 0013 00 1 [MdW] 398750ee00ee1b8d -l2 write 0000aaaf5454e400 01 0004 01 1 [MdW(0029,01)] 9eb60b8de359e983 -l1d-0 evict 0000aaaf5454e400 00 0000 03 [IcR] 9eb60b8de359e983 -l2 read 000035b33dc0d400 00 0003 00 1 [SdW(0024,03)] b3fa26fb2bb1072d -l1d-0 read 000035b33dc0d400 00 0000 03 0 [ScR] b3fa26fb2bb1072d -l1d-1 read 000050012c6eb8c0 00 0003 02 1 [MdW] 8d505e21d3399d55 -l1d-1 read 00007b42479583c0 00 0015 00 1 [MdW] 1fca5feae77517e8 -l1d-1 read 0000012233313580 00 0006 03 1 [MdW] 0aa2d7ab5dfce8cc -l1d-0 read 0000418397142480 00 0002 01 1 [MdW] d5ca42501735883b -l1d-1 read 000030295cbb89c0 00 0007 03 1 [MdW] 9dc7657dd695cd8c -l2 write 0000c477f06039c0 01 0004 00 1 [MdW(0022,01)] 07a43d1b05d30814 -l1d-0 evict 0000c477f06039c0 00 0007 00 [IcR] 07a43d1b05d30814 +l2 read 00001fd6787ba100 00 0007 00 0 [McW(0010,06)] 0000000000000000 +l1d-1 write 00001fd6787ba100 00 0004 00 0 [MdW] 6ec02943a5ad4367 +l1d-0 evict 00004fefb0cb7cc0 00 0003 01 [IcR] e98c3d92048e71e7 +l2 write 00004fefb0cb7cc0 00 0016 02 1 [MdW(0031,05)] e98c3d92048e71e7 +mem write 00004fefb0cb7cc0 -1 -001 -1 1 [MdW] e98c3d92048e71e7 +l2 evict 00004fefb0cb7cc0 00 0016 02 [IcR(0031,05)] e98c3d92048e71e7 +mem read 000044ca9c649400 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000044ca9c649400 00 0030 01 0 [McW(0031,05)] 0000000000000000 +l1d-1 write 000044ca9c649400 00 0000 00 0 [MdW] 58da3250723bdd77 +l1d-1 write 000008ededd7fd80 00 0006 01 1 [MdW] ae3bc19b04dd337c +l1d-1 read 0000afd2a9e735c0 00 0007 01 1 [MdW] 5f63bfdb9b9fe352 +mem write 0000f88b44bf5840 -1 -001 -1 1 [MdW] 5835bf5c1572177d +l2 evict 0000f88b44bf5840 01 0027 00 [IcR(0017,00)] 5835bf5c1572177d +mem read 00004ed4d0955b80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004ed4d0955b80 00 0014 00 0 [McW(0017,00)] 0000000000000000 +l1d-1 write 00004ed4d0955b80 00 0014 03 0 [MdW] 5d48e651e3307f1b +l1d-0 read 0000a462f1bb1500 00 0004 00 1 [MdW] 836865657f27e721 +l1d-1 evict 00004149ff11d440 00 0001 00 [IcR] dbc0b014e9a8cd6b +l2 write 00004149ff11d440 01 0016 01 1 [MdW(0007,04)] dbc0b014e9a8cd6b +mem write 00004149ff11d440 -1 -001 -1 1 [MdW] dbc0b014e9a8cd6b +l2 evict 00004149ff11d440 01 0016 01 [IcR(0007,04)] dbc0b014e9a8cd6b +mem read 00001ad58832f640 -1 -001 -1 1 [McW] 98a208d3aedf4d84 +l2 read 00001ad58832f640 00 0009 00 0 [McW(0007,04)] 98a208d3aedf4d84 +l1d-0 write 00001ad58832f640 00 0009 03 0 [MdW] 796192d34cb6befd +mem read 000091e69e86bc00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000091e69e86bc00 01 0002 01 0 [McW(0006,03)] 0000000000000000 +l1d-0 write 000091e69e86bc00 00 0000 00 0 [MdW] 1efa6f33b940169e +l1d-0 evict 00006cfd00fe8ac0 00 0011 00 [IcR] b025b1f23a5ed092 +l1d-0 evict 000063036c943940 00 0005 03 [IcR] 1d26ae93ce6a6db6 +l2 write 000063036c943940 01 0022 00 1 [MdW(0001,07)] 1d26ae93ce6a6db6 +mem write 000063036c943940 -1 -001 -1 1 [MdW] 1d26ae93ce6a6db6 +l2 evict 000063036c943940 01 0022 00 [IcR(0001,07)] 1d26ae93ce6a6db6 +mem read 000057ef223eb2c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000057ef223eb2c0 00 0009 01 0 [McW(0001,07)] 0000000000000000 +l1d-0 write 000057ef223eb2c0 00 0011 00 0 [MdW] 2d826de3e09ee626 +mem read 00004f46a7d2ea80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004f46a7d2ea80 00 0020 02 0 [McW(0017,02)] 0000000000000000 +l1d-1 write 00004f46a7d2ea80 00 0010 03 0 [MdW] a5bec612d1eb9d9a mem read 0000c79b07073dc0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c79b07073dc0 01 0017 01 0 [McW(0017,05)] 0000000000000000 -l1d-0 write 0000c79b07073dc0 00 0007 00 0 [MdW] 31397f4080bef586 -l2 write 00006d9316738f80 00 0027 02 1 [MdW(0004,02)] 6700e6b15b3571ec -l1d-1 evict 00006d9316738f80 00 0014 00 [IcR] 6700e6b15b3571ec -l2 read 0000bb75517c9b80 01 0029 00 1 [SdW(0007,00)] 78786a2e713dca43 -l1d-1 read 0000bb75517c9b80 00 0014 00 0 [ScR] 78786a2e713dca43 -l1d-0 evict 0000045cce7b2a40 00 0009 01 [IcR] 9732b992490f2bec -l2 read 0000ade5546e9640 00 0019 02 1 [MdW(0011,02)] 292bf8907b74edd2 -l1d-0 write 0000ade5546e9640 00 0009 01 0 [MdW] 5209bc09f2897536 -l2 write 00006d3f203d79c0 01 0014 01 1 [MdW(0021,03)] 6e8f92dc574cb465 -l1d-1 evict 00006d3f203d79c0 00 0007 02 [IcR] 6e8f92dc574cb465 -mem read 00008c87a41659c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00008c87a41659c0 01 0017 02 0 [McW(0002,06)] 0000000000000000 -l1d-1 write 00008c87a41659c0 00 0007 02 0 [MdW] 80dfdd5b1394ac8c -l1d-0 read 000063036c943940 00 0005 03 1 [MdW] 05816e4fa46226e6 -l1d-0 write 0000f448c073e880 00 0002 00 1 [MdW] 180aac06cd400335 -l1d-1 write 00002d9824d83d80 00 0006 01 1 [MdW] 789fd761f0d30dbc -l2 write 00007d0902e50f80 01 0030 02 1 [MdW(0022,04)] cb58c668f7241e9f -l1d-1 evict 00007d0902e50f80 00 0014 03 [IcR] cb58c668f7241e9f -l2 read 000092e2f479cf80 00 0031 01 1 [SdW(0022,05)] d17309df336a0e01 -l1d-1 read 000092e2f479cf80 00 0014 03 0 [ScR] d17309df336a0e01 -l1i-1 evict 00006bf6751e90c0 00 0003 00 [IcR] 1bb491472e86fbd8 -l2 write 00002ccb051018c0 01 0011 00 1 [MdW(0002,01)] 37430a6ae2ed6122 -l1d-1 evict 00002ccb051018c0 00 0003 01 [IcR] 37430a6ae2ed6122 -l2 read 00006bf6751e90c0 01 0013 02 1 [MdW(0022,06)] 1bb491472e86fbd8 -l1d-1 write 00006bf6751e90c0 00 0003 01 0 [MdW] c8f6e6fa1d07acdd -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] 789fd761f0d30dbc -l1d-0 read 000035b33dc0d400 00 0000 03 1 [ScR] b3fa26fb2bb1072d -l2 write 0000b1312a1f2f80 01 0019 01 1 [MdW(0026,00)] 63f4a195a598fedc -l1d-1 evict 0000b1312a1f2f80 00 0014 01 [IcR] 63f4a195a598fedc -l2 read 00007d0902e50f80 01 0030 02 1 [SdW(0022,04)] cb58c668f7241e9f -l1d-1 read 00007d0902e50f80 00 0014 01 0 [ScR] cb58c668f7241e9f -mem read 000059bb4b098240 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000059bb4b098240 01 0029 02 0 [McW(0018,04)] 0000000000000000 -l1d-1 write 000059bb4b098240 00 0009 03 0 [MdW] a816cf9eeece6498 -mem read 0000ffac00a71b80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000ffac00a71b80 00 0025 02 0 [McW(0001,02)] 0000000000000000 -l1d-0 write 0000ffac00a71b80 00 0014 01 0 [MdW] e178f2d9faca3dba -l2 write 0000cb3c5e49d5c0 01 0015 00 1 [MdW(0024,02)] 96d85584f5f75334 -l1d-1 evict 0000cb3c5e49d5c0 00 0007 00 [IcR] 96d85584f5f75334 -l2 read 00006d3f203d79c0 01 0014 01 1 [SdW(0021,03)] 6e8f92dc574cb465 -l1d-1 read 00006d3f203d79c0 00 0007 00 0 [ScR] 6e8f92dc574cb465 -l2 write 00007e3437831800 01 0013 01 1 [MdW(0018,03)] 9ac69dc0ff6bf852 -l1d-0 evict 00007e3437831800 00 0000 00 [IcR] 9ac69dc0ff6bf852 -mem read 000057c442889400 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000057c442889400 01 0025 02 0 [McW(0005,06)] 0000000000000000 -l1d-0 write 000057c442889400 00 0000 00 0 [MdW] 41f1903bf6dd8949 -l1d-0 read 00004c22aaaafa40 00 0009 02 1 [MdW] 508089914b57b049 -l1d-0 write 000063036c943940 00 0005 03 1 [MdW] 2f9cc192d2218654 -l2 write 0000605ba6057540 01 0008 01 1 [MdW(0002,02)] cfc80859e336b176 -l1d-0 evict 0000605ba6057540 00 0005 01 [IcR] cfc80859e336b176 -l2 read 0000033616c7e540 00 0022 00 1 [SdW(0023,00)] 505e4c2fc450e2ad -l1d-0 read 0000033616c7e540 00 0005 01 0 [ScR] 505e4c2fc450e2ad +l2 read 0000c79b07073dc0 01 0017 02 0 [McW(0013,06)] 0000000000000000 +l1d-1 write 0000c79b07073dc0 00 0007 02 0 [MdW] dc55730c9000f4d6 +l1d-0 read 0000418397142480 00 0002 00 1 [MdW] 30dbb666b2eba234 +l2 write 000036f519c3f6c0 00 0000 00 1 [MdW(0012,07)] 55e565dc6cf2d794 +l1d-1 evict 000036f519c3f6c0 00 0011 03 [IcR] 55e565dc6cf2d794 +l1d-0 evict 000052d61b6d5a00 00 0008 00 [IcR] e775afa1004c0eb4 +l2 evict 000052d61b6d5a00 00 0016 01 [IcR(0002,07)] e775afa1004c0eb4 +mem read 0000302899d8cac0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000302899d8cac0 01 0012 02 0 [McW(0002,07)] 0000000000000000 +l1d-1 write 0000302899d8cac0 00 0011 03 0 [MdW] bdd24610b537bb57 +mem read 000034b9affcc8c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000034b9affcc8c0 01 0005 01 0 [McW(0006,04)] 0000000000000000 +l1d-1 write 000034b9affcc8c0 00 0003 02 0 [MdW] 1c123c3c03dd01e9 +l2 write 0000a4ed67fcb240 01 0015 00 1 [MdW(0028,07)] 4dbd028faad33d6c +l1d-0 evict 0000a4ed67fcb240 00 0009 01 [IcR] 4dbd028faad33d6c +l1d-0 evict 0000333bb344eb40 00 0013 00 [IcR] 2a5c80345e469f5d +l2 write 0000333bb344eb40 00 0013 00 1 [MdW(0006,05)] 2a5c80345e469f5d +mem write 0000333bb344eb40 -1 -001 -1 1 [MdW] 2a5c80345e469f5d +l2 evict 0000333bb344eb40 00 0013 00 [IcR(0006,05)] 2a5c80345e469f5d +mem read 00004c22aaaafa40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004c22aaaafa40 01 0021 02 0 [McW(0006,05)] 0000000000000000 +l1d-0 write 00004c22aaaafa40 00 0009 01 0 [MdW] 2d93d3fed33d69e0 +l1d-0 read 0000c86d27a3d040 00 0001 01 1 [MdW] 11d1789f7e517168 +l2 write 0000740d5897eb00 00 0016 00 1 [MdW(0020,01)] 024d94b6ba577e25 +l1d-0 evict 0000740d5897eb00 00 0012 00 [IcR] 024d94b6ba577e25 +mem read 00007fdc5854bb00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007fdc5854bb00 00 0007 01 0 [McW(0031,02)] 0000000000000000 +l1d-0 write 00007fdc5854bb00 00 0012 00 0 [MdW] 5239f66a34ddf76a +l1d-0 read 0000c97dfb94fd80 00 0006 01 1 [MdW] 2fba7336b9505ed4 +l1d-0 read 00006f44ab8bcf80 00 0014 00 1 [MdW] 23fb33a840c4d118 +mem read 0000f88b44bf5840 -1 -001 -1 1 [McW] 5835bf5c1572177d +l2 read 0000f88b44bf5840 01 0027 00 0 [ScW(0022,02)] 5835bf5c1572177d +l1d-1 read 0000f88b44bf5840 00 0001 00 0 [ScR] 5835bf5c1572177d +l1d-1 read 000044ca9c649400 00 0000 00 1 [MdW] 58da3250723bdd77 +l1d-0 write 0000c86d27a3d040 00 0001 01 1 [MdW] b7fe082719be048b +l1d-1 read 000057c442889400 00 0000 02 1 [MdW] d17309df336a0e01 +l1d-0 evict 00004813c834cdc0 00 0007 01 [IcR] 705c2dbf4c432cbe +l2 evict 00004813c834cdc0 00 0025 01 [IcR(0020,02)] 705c2dbf4c432cbe +mem read 00004cfb5e6fc8c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004cfb5e6fc8c0 00 0002 01 0 [McW(0020,02)] 0000000000000000 +l1d-0 write 00004cfb5e6fc8c0 00 0003 01 0 [MdW] bb786e37d55629f0 +l2 read 0000c3a56b5f8bc0 00 0010 00 1 [SdW(0018,04)] 9b4a314f80de0e14 +l1d-0 read 0000c3a56b5f8bc0 00 0015 00 0 [ScR] 9b4a314f80de0e14 +l1d-0 evict 0000fa408c35ba00 00 0008 01 [IcR] 7eec603efdcdea3b +l2 evict 0000fa408c35ba00 01 0031 00 [IcR(0026,00)] 7eec603efdcdea3b +mem read 000087a8e7348c80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000087a8e7348c80 01 0019 01 0 [McW(0026,00)] 0000000000000000 +l1d-0 write 000087a8e7348c80 00 0002 02 0 [MdW] 479e4ab56425a27e +l2 write 000095873da506c0 01 0012 01 1 [MdW(0016,04)] 64a74b273feb83c9 +l1d-0 evict 000095873da506c0 00 0011 01 [IcR] 64a74b273feb83c9 +mem read 0000afa7e0db12c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000afa7e0db12c0 01 0019 02 0 [McW(0013,04)] 0000000000000000 +l1d-0 write 0000afa7e0db12c0 00 0011 01 0 [MdW] fbf332b5f72ab798 +mem read 00003f232f338000 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00003f232f338000 00 0021 00 0 [McW(0000,03)] 0000000000000000 +l1d-0 write 00003f232f338000 00 0000 01 0 [MdW] 304bee8ad7731636 +l2 write 000046663e4def00 00 0031 00 1 [MdW(0023,03)] e21542a5128e9ecb +l1d-0 evict 000046663e4def00 00 0012 01 [IcR] e21542a5128e9ecb +mem write 000036f519c3f6c0 -1 -001 -1 1 [MdW] 55e565dc6cf2d794 +l2 evict 000036f519c3f6c0 00 0000 00 [IcR(0012,07)] 55e565dc6cf2d794 mem read 0000d9b688e86700 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000d9b688e86700 01 0031 01 0 [McW(0029,05)] 0000000000000000 -l1d-0 write 0000d9b688e86700 00 0012 03 0 [MdW] 9cff86c4f5d7b689 -l2 write 000078135d3f5200 01 0026 00 1 [MdW(0017,01)] 0ec0b79ad41353f3 -l1d-1 evict 000078135d3f5200 00 0008 01 [IcR] 0ec0b79ad41353f3 -l2 write 0000c0773417d200 01 0023 00 1 [MdW(0019,02)] 2f46e337ff7072cf -l2 read 0000c0773417d200 01 0023 00 1 [SdW(0019,02)] 2f46e337ff7072cf -l1d-1 read 0000c0773417d200 00 0008 01 0 [ScR] 2f46e337ff7072cf -l2 write 0000ed89583b9580 00 0018 00 1 [MdW(0002,00)] 6c07dacfdb56821e -l2 read 0000ed89583b9580 00 0018 00 1 [SdW(0002,00)] 6c07dacfdb56821e -l1d-1 read 0000ed89583b9580 00 0006 00 0 [ScR] 6c07dacfdb56821e -l1d-0 read 00003174403caf00 00 0012 00 1 [MdW] e27dc8a846a78e56 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l1d-0 read 000018c9dccfc840 00 0001 00 1 [MdW] 83b569fd7e2f93d0 -l1i-1 read 00001cff7cd11500 00 0004 00 1 [ScR] 0e4d4bf31c06ad0e -l1d-1 read 0000ed89583b9580 00 0006 00 1 [ScR] 6c07dacfdb56821e -l2 write 00002b4766af8580 01 0026 01 1 [MdW(0004,03)] 66d6c51c457e98ea -l1d-0 evict 00002b4766af8580 00 0006 01 [IcR] 66d6c51c457e98ea -l2 read 0000c662cc646980 00 0000 00 1 [MdW(0014,00)] 816f140018ef71ee -l1d-0 write 0000c662cc646980 00 0006 01 0 [MdW] 9178878696de8c91 -l1d-0 read 00004813c834cdc0 00 0007 02 1 [MdW] 6490dcecd59b9e65 -l2 write 00006980d04a3400 00 0009 02 1 [MdW(0012,03)] 7e87cb6b5a7c5b20 -l1d-1 evict 00006980d04a3400 00 0000 02 [IcR] 7e87cb6b5a7c5b20 -l2 read 000073703a455800 00 0004 01 1 [SdW(0028,03)] 84b896eee0ea8bfb -l1d-1 read 000073703a455800 00 0000 02 0 [ScR] 84b896eee0ea8bfb -l1d-0 read 0000ffac00a71b80 00 0014 01 1 [MdW] e178f2d9faca3dba -l1d-1 write 0000095a29bb9340 00 0013 00 1 [MdW] 30470642eb039e5b -l2 write 000059bb4b098240 01 0029 02 1 [MdW(0018,04)] a816cf9eeece6498 -l2 read 000059bb4b098240 01 0029 02 1 [SdW(0018,04)] a816cf9eeece6498 -l1i-1 read 000059bb4b098240 00 0009 00 0 [ScR] a816cf9eeece6498 -l2 write 0000136b8cb094c0 01 0030 01 1 [MdW(0017,03)] 4d51034c84140818 -l1d-1 evict 0000136b8cb094c0 00 0003 00 [IcR] 4d51034c84140818 -l2 read 00002ccb051018c0 01 0011 00 1 [SdW(0002,01)] 37430a6ae2ed6122 -l1d-1 read 00002ccb051018c0 00 0003 00 0 [ScR] 37430a6ae2ed6122 -l1d-1 read 0000bb381b2db600 00 0008 02 1 [MdW] e215c0b496405f9e -l1d-0 read 00004813c834cdc0 00 0007 02 1 [MdW] 6490dcecd59b9e65 -l2 write 0000f66f9acff100 01 0000 00 1 [MdW(0012,02)] c7f5ae053c4b54cf -l1d-0 evict 0000f66f9acff100 00 0004 02 [IcR] c7f5ae053c4b54cf -l2 read 0000ff71c82dc900 01 0006 00 1 [MdW(0010,00)] 75c7c14436ed60c6 -l1d-0 write 0000ff71c82dc900 00 0004 02 0 [MdW] ead7b1b4f2b53fe5 -l1d-0 read 000049afd5e02b40 00 0013 00 1 [MdW] 0d73762cec20ec64 -l1d-0 read 0000c662cc646980 00 0006 01 1 [MdW] 9178878696de8c91 -l1d-1 read 00006a25c963e900 00 0004 03 1 [MdW] ae43245b0fd92af4 -l1i-1 evict 00001cff7cd11500 00 0004 00 [IcR] 0e4d4bf31c06ad0e -l2 write 0000803bdde89900 00 0008 01 1 [MdW(0031,00)] 4149d9c5522ff4aa -l1d-1 evict 0000803bdde89900 00 0004 00 [IcR] 4149d9c5522ff4aa -l2 read 00001cff7cd11500 01 0028 00 1 [MdW(0028,02)] 0e4d4bf31c06ad0e -l1d-1 write 00001cff7cd11500 00 0004 00 0 [MdW] 6b0180ad5bfc6aa3 -l1d-0 read 000000f97fae5cc0 00 0003 02 1 [MdW] d6f7e41866f9a4a8 -l1d-1 evict 00002814eea2cf80 00 0014 02 [IcR] ac76c3067a593258 -l2 read 0000242235f69b80 00 0023 00 1 [MdW(0024,01)] cd0f83c76caa72c4 -l1d-1 write 0000242235f69b80 00 0014 02 0 [MdW] 22713d9fb41fbafa -l1i-1 read 000059bb4b098240 00 0009 00 1 [ScR] a816cf9eeece6498 -l1d-0 read 000087a8e7348c80 00 0002 02 1 [MdW] 06d5c4a0dca92e1a -l2 write 0000b5cd51622240 01 0027 00 1 [MdW(0030,00)] 4f9c1718ca9de14e -l1d-1 evict 0000b5cd51622240 00 0009 00 [IcR] 4f9c1718ca9de14e -mem read 000095996286e640 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000095996286e640 01 0013 03 0 [McW(0018,05)] 0000000000000000 -l1d-1 write 000095996286e640 00 0009 00 0 [MdW] f1b509cda89b9e6b -l1d-0 evict 00003f232f338000 00 0000 01 [IcR] a2d413acae95e3cd -l2 read 00006980d04a3400 00 0009 02 1 [SdW(0012,03)] 7e87cb6b5a7c5b20 -l1d-0 read 00006980d04a3400 00 0000 01 0 [ScR] 7e87cb6b5a7c5b20 -l1d-1 read 0000780ab040b980 00 0006 02 1 [ScR] e88dd55a43222698 -l2 read 0000acd63c8d1880 00 0017 01 1 [MdW(0021,02)] 8995eace539d8fd8 -l1d-0 write 0000acd63c8d1880 00 0002 03 0 [MdW] 9440c2c945444381 -l1d-0 read 000073f8f4229a80 00 0010 03 1 [MdW] 64a74b273feb83c9 -l1d-0 read 0000c662cc646980 00 0006 01 1 [MdW] 9178878696de8c91 -l1d-0 read 000087a8e7348c80 00 0002 02 1 [MdW] 06d5c4a0dca92e1a -l1d-0 read 000087a8e7348c80 00 0002 02 1 [MdW] 06d5c4a0dca92e1a -l1d-1 read 0000a0082dda2840 00 0001 01 1 [MdW] e32363faf3579882 -l2 write 000049889647d200 00 0022 02 1 [MdW(0029,04)] 77793b7a2d13abb1 -l1d-1 evict 000049889647d200 00 0008 03 [IcR] 77793b7a2d13abb1 -mem read 00005d7bb4b3fa00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00005d7bb4b3fa00 00 0031 02 0 [McW(0010,05)] 0000000000000000 -l1d-1 write 00005d7bb4b3fa00 00 0008 03 0 [MdW] e908b2478d834bdb -l2 write 000019a40a160240 01 0009 00 1 [MdW(0027,00)] 003301b2273c5e28 -l1d-0 evict 000019a40a160240 00 0009 00 [IcR] 003301b2273c5e28 -l2 read 0000045cce7b2a40 00 0030 01 1 [SdW(0002,04)] 9732b992490f2bec -l1d-0 read 0000045cce7b2a40 00 0009 00 0 [ScR] 9732b992490f2bec -l2 write 0000534534d814c0 00 0006 01 1 [MdW(0011,01)] 5488878000e9ca11 -l1d-0 evict 0000534534d814c0 00 0003 03 [IcR] 5488878000e9ca11 -mem read 0000c72e4af4f8c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c72e4af4f8c0 01 0000 03 0 [McW(0018,06)] 0000000000000000 -l1d-0 write 0000c72e4af4f8c0 00 0003 03 0 [MdW] e7800ffc079ed92a -l1d-1 evict 0000bb75517c9b80 00 0014 00 [IcR] 78786a2e713dca43 -mem read 0000015d1559b380 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000015d1559b380 01 0021 02 0 [McW(0016,01)] 0000000000000000 -l1d-1 write 0000015d1559b380 00 0014 00 0 [MdW] 042dac84e3de4101 -l1d-1 write 00006a36c42b4840 00 0001 02 1 [MdW] 1eeac5371ae03949 -l1d-0 read 00002cbcc4bef440 00 0001 01 1 [MdW] e21542a5128e9ecb -l1d-0 evict 0000780ab040b980 00 0006 02 [IcR] e88dd55a43222698 -l2 read 000015c671e31180 00 0030 00 1 [SdW(0022,03)] f2046a186505ea97 -l1d-0 read 000015c671e31180 00 0006 02 0 [ScR] f2046a186505ea97 -l2 write 0000fc3d1a588d00 01 0007 00 1 [MdW(0006,02)] 20d6291b6fceeaa3 -l1d-1 evict 0000fc3d1a588d00 00 0004 01 [IcR] 20d6291b6fceeaa3 -l2 read 0000803bdde89900 00 0008 01 1 [SdW(0031,00)] 4149d9c5522ff4aa -l1d-1 read 0000803bdde89900 00 0004 01 0 [ScR] 4149d9c5522ff4aa -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] d8bb918563e07612 -l2 write 000043ca5c07b240 01 0013 00 1 [MdW(0012,01)] 0b03165c64b25b52 -l1d-1 evict 000043ca5c07b240 00 0009 01 [IcR] 0b03165c64b25b52 -l2 read 0000b5cd51622240 01 0027 00 1 [SdW(0030,00)] 4f9c1718ca9de14e -l1d-1 read 0000b5cd51622240 00 0009 01 0 [ScR] 4f9c1718ca9de14e -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] f2ba597f630895bc -l1d-1 evict 000092e2f479cf80 00 0014 03 [IcR] d17309df336a0e01 -l2 read 00002814eea2cf80 00 0019 01 1 [MdW(0005,01)] ac76c3067a593258 -l1d-1 write 00002814eea2cf80 00 0014 03 0 [MdW] c6da95c57f5d5cb2 -l1d-1 read 00007b42479583c0 00 0015 00 1 [MdW] 1fca5feae77517e8 -l1d-1 evict 00007d0902e50f80 00 0014 01 [IcR] cb58c668f7241e9f -l2 read 0000bb75517c9b80 01 0029 00 1 [SdW(0007,00)] 78786a2e713dca43 -l1d-1 read 0000bb75517c9b80 00 0014 01 0 [ScR] 78786a2e713dca43 -l2 write 0000242235f69b80 00 0023 00 1 [MdW(0024,01)] 22713d9fb41fbafa -l1d-1 evict 0000242235f69b80 00 0014 02 [IcR] 22713d9fb41fbafa -mem read 00000463b4c5cf80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00000463b4c5cf80 00 0022 03 0 [McW(0020,01)] 0000000000000000 -l1d-1 write 00000463b4c5cf80 00 0014 02 0 [MdW] d8778ea3f72f9753 -l1d-1 read 0000e030a3d78740 00 0013 01 1 [MdW] bccc952adbed9749 -l2 write 0000e4f3a6fe9140 01 0020 01 1 [MdW(0007,02)] 3cd13398bb7792b5 -l1d-0 evict 0000e4f3a6fe9140 00 0005 00 [IcR] 3cd13398bb7792b5 -l2 read 0000750cdfd9ed40 01 0027 01 1 [SdW(0009,02)] a1fecd85f61fe080 -l1d-0 read 0000750cdfd9ed40 00 0005 00 0 [ScR] a1fecd85f61fe080 -l1d-1 read 000095996286e640 00 0009 00 1 [MdW] f1b509cda89b9e6b -l2 read 00006980d04a3400 00 0009 02 1 [SdW(0012,03)] 7e87cb6b5a7c5b20 -l1i-0 read 00006980d04a3400 00 0000 00 0 [ScR] 7e87cb6b5a7c5b20 -l2 write 0000b78d2a790900 00 0023 01 1 [MdW(0000,00)] 4b286894f1b254a4 -l1d-0 evict 0000b78d2a790900 00 0004 03 [IcR] 4b286894f1b254a4 -mem read 0000a462f1bb1500 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000a462f1bb1500 00 0029 01 0 [McW(0019,06)] 0000000000000000 -l1d-0 write 0000a462f1bb1500 00 0004 03 0 [MdW] 2f9d5892b243a4f9 -l2 write 0000012233313580 01 0002 00 1 [MdW(0006,01)] 0aa2d7ab5dfce8cc -l1d-1 evict 0000012233313580 00 0006 03 [IcR] 0aa2d7ab5dfce8cc -l2 read 0000c97dfb94fd80 00 0019 00 1 [SdW(0017,00)] 866e8372e740908a -l1d-1 read 0000c97dfb94fd80 00 0006 03 0 [ScR] 866e8372e740908a -l2 write 0000ecb652ef69c0 00 0029 00 1 [MdW(0031,02)] 9b9abf9df1c1a30b -l1d-1 evict 0000ecb652ef69c0 00 0007 01 [IcR] 9b9abf9df1c1a30b -l2 read 0000792d5ad259c0 00 0024 01 1 [SdW(0030,02)] 14078fc202486941 -l1d-1 read 0000792d5ad259c0 00 0007 01 0 [ScR] 14078fc202486941 -l1d-0 read 00004813c834cdc0 00 0007 02 1 [MdW] 6490dcecd59b9e65 -l2 write 00009a461a9864c0 01 0006 02 1 [MdW(0017,04)] ba1ecfdec3d1dc5d -l1d-0 evict 00009a461a9864c0 00 0003 00 [IcR] ba1ecfdec3d1dc5d -l2 read 0000534534d814c0 00 0006 01 1 [SdW(0011,01)] 5488878000e9ca11 -l1d-0 read 0000534534d814c0 00 0003 00 0 [ScR] 5488878000e9ca11 -l1d-0 read 000095873da506c0 00 0011 02 1 [MdW] 5d652850f1d45f1d -l2 write 000030295cbb89c0 01 0015 01 1 [MdW(0018,02)] 9dc7657dd695cd8c -l1d-1 evict 000030295cbb89c0 00 0007 03 [IcR] 9dc7657dd695cd8c -mem read 00008edcd3eccdc0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00008edcd3eccdc0 01 0028 02 0 [McW(0008,03)] 0000000000000000 -l1d-1 write 00008edcd3eccdc0 00 0007 03 0 [MdW] 62582b34270ac5fc -l1d-0 read 00004813c834cdc0 00 0007 02 1 [MdW] 6490dcecd59b9e65 -l2 write 00009fde26f888c0 01 0016 00 1 [MdW(0031,01)] e1b5104d91b6911e -l1d-0 evict 00009fde26f888c0 00 0003 01 [IcR] e1b5104d91b6911e -mem read 0000df0f11cce0c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000df0f11cce0c0 00 0018 02 0 [McW(0013,00)] 0000000000000000 -l1d-0 write 0000df0f11cce0c0 00 0003 01 0 [MdW] b46e0cda852ad2e2 -l1d-0 write 00004813c834cdc0 00 0007 02 1 [MdW] 943fd65d38c4092e -l1d-1 read 0000ed89583b9580 00 0006 00 1 [ScR] 6c07dacfdb56821e -l1d-0 read 000095873da506c0 00 0011 02 1 [MdW] 5d652850f1d45f1d -l1d-1 read 00006d3f203d79c0 00 0007 00 1 [ScR] 6e8f92dc574cb465 -l2 write 0000015d1559b380 01 0021 02 1 [MdW(0016,01)] 042dac84e3de4101 -l1d-1 evict 0000015d1559b380 00 0014 00 [IcR] 042dac84e3de4101 -l2 read 00007d0902e50f80 01 0030 02 1 [SdW(0022,04)] cb58c668f7241e9f -l1d-1 read 00007d0902e50f80 00 0014 00 0 [ScR] cb58c668f7241e9f -l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] 5d6e440d0dd55dd5 -l1d-0 read 0000d9b688e86700 00 0012 03 1 [MdW] 9cff86c4f5d7b689 -l1d-0 read 00009a603343d580 00 0006 03 1 [MdW] e4bd1c98fd7a6b9f -l2 write 000000f97fae5cc0 00 0003 01 1 [MdW(0021,04)] d6f7e41866f9a4a8 -l1d-0 evict 000000f97fae5cc0 00 0003 02 [IcR] d6f7e41866f9a4a8 -l2 read 00009fde26f888c0 01 0016 00 1 [SdW(0031,01)] e1b5104d91b6911e -l1d-0 read 00009fde26f888c0 00 0003 02 0 [ScR] e1b5104d91b6911e -l1i-1 read 000059bb4b098240 00 0009 00 1 [ScR] a816cf9eeece6498 -l1d-0 read 0000033616c7e540 00 0005 01 1 [ScR] 505e4c2fc450e2ad -l2 write 00003be6b01765c0 01 0029 01 1 [MdW(0022,02)] b07105a9381db806 -l1d-0 evict 00003be6b01765c0 00 0007 01 [IcR] b07105a9381db806 -mem read 0000b54aff87b9c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000b54aff87b9c0 01 0031 02 0 [McW(0020,02)] 0000000000000000 -l1d-0 write 0000b54aff87b9c0 00 0007 01 0 [MdW] 06b7c521daf2ebd7 -l2 write 00008c87a41659c0 01 0017 02 1 [MdW(0002,06)] 80dfdd5b1394ac8c -l1d-1 evict 00008c87a41659c0 00 0007 02 [IcR] 80dfdd5b1394ac8c -mem read 000072629a2641c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000072629a2641c0 00 0011 02 0 [McW(0006,04)] 0000000000000000 -l1d-1 write 000072629a2641c0 00 0007 02 0 [MdW] 074c637b3568f695 -l2 write 00004f46a7d2ea80 00 0020 00 1 [MdW(0015,02)] d8a5addb7e65e806 -l2 read 00004f46a7d2ea80 00 0020 00 1 [SdW(0015,02)] d8a5addb7e65e806 -l1d-0 read 00004f46a7d2ea80 00 0010 02 0 [ScR] d8a5addb7e65e806 -l2 write 00006bf6751e90c0 01 0013 02 1 [MdW(0022,06)] c8f6e6fa1d07acdd -l2 read 00006bf6751e90c0 01 0013 02 1 [SdW(0022,06)] c8f6e6fa1d07acdd -l1i-1 read 00006bf6751e90c0 00 0003 00 0 [ScR] c8f6e6fa1d07acdd -l1d-0 read 0000ffac00a71b80 00 0014 01 1 [MdW] e178f2d9faca3dba -l1d-1 read 0000bb75517c9b80 00 0014 01 1 [ScR] 78786a2e713dca43 -l1d-0 read 000057ef223eb2c0 00 0011 00 1 [MdW] 33fc07f29b2cfaff -l1d-0 read 0000c662cc646980 00 0006 01 1 [MdW] 9178878696de8c91 -l1d-0 evict 0000ed89583b9580 00 0006 00 [IcR] 6c07dacfdb56821e -l2 read 00002b4766af8580 01 0026 01 1 [MdW(0004,03)] 66d6c51c457e98ea -l1d-0 write 00002b4766af8580 00 0006 00 0 [MdW] ec0af5df425fb3d3 -l2 write 0000c72e4af4f8c0 01 0000 03 1 [MdW(0018,06)] e7800ffc079ed92a -l1d-0 evict 0000c72e4af4f8c0 00 0003 03 [IcR] e7800ffc079ed92a -l2 read 000000f97fae5cc0 00 0003 01 1 [MdW(0021,04)] d6f7e41866f9a4a8 -l1d-0 write 000000f97fae5cc0 00 0003 03 0 [MdW] adf40caecba14b7b -l1d-0 read 00001ad58832f640 00 0009 03 1 [MdW] f1d026232e24dd48 -l2 write 0000ade5546e9640 00 0019 02 1 [MdW(0011,02)] 5209bc09f2897536 -l1d-0 evict 0000ade5546e9640 00 0009 01 [IcR] 5209bc09f2897536 -l2 read 0000d6eae7df0a40 01 0025 01 1 [SdW(0027,03)] 212009caf997e0d1 -l1d-0 read 0000d6eae7df0a40 00 0009 01 0 [ScR] 212009caf997e0d1 -l1d-0 evict 000015c671e31180 00 0006 02 [IcR] f2046a186505ea97 -l2 read 0000780ab040b980 01 0002 01 1 [SdW(0005,05)] e88dd55a43222698 -l1d-0 read 0000780ab040b980 00 0006 02 0 [ScR] e88dd55a43222698 -l2 write 000093de24a554c0 00 0025 01 1 [MdW(0015,04)] e1280befc25cd4a1 -l1d-1 evict 000093de24a554c0 00 0003 03 [IcR] e1280befc25cd4a1 -l2 write 0000df0f11cce0c0 00 0018 02 1 [MdW(0013,00)] b46e0cda852ad2e2 -l2 read 0000df0f11cce0c0 00 0018 02 1 [SdW(0013,00)] b46e0cda852ad2e2 -l1d-1 read 0000df0f11cce0c0 00 0003 03 0 [ScR] b46e0cda852ad2e2 -l1d-0 read 00001fd6787ba100 00 0004 01 1 [ScR] df1b827b0bffd943 -l1d-0 read 0000750cdfd9ed40 00 0005 00 1 [ScR] a1fecd85f61fe080 -l1d-1 read 0000792d5ad259c0 00 0007 01 1 [ScR] 14078fc202486941 -l1d-0 read 0000ffac00a71b80 00 0014 01 1 [MdW] e178f2d9faca3dba -l1d-0 read 0000045cce7b2a40 00 0009 00 1 [ScR] 9732b992490f2bec -l2 write 00008a30b4505100 01 0003 01 1 [MdW(0019,05)] a3b0cfd024518f31 -l1d-0 evict 00008a30b4505100 00 0004 00 [IcR] a3b0cfd024518f31 -l2 read 00007a0ccec77d00 00 0004 00 1 [SdW(0006,00)] 603f902534bdd00d -l1d-0 read 00007a0ccec77d00 00 0004 00 0 [ScR] 603f902534bdd00d -l1d-1 read 00002814eea2cf80 00 0014 03 1 [MdW] c6da95c57f5d5cb2 -l2 read 00006980d04a3400 00 0009 02 1 [SdW(0012,03)] 7e87cb6b5a7c5b20 -l1i-1 read 00006980d04a3400 00 0000 00 0 [ScR] 7e87cb6b5a7c5b20 -l1d-0 read 0000333bb344eb40 00 0013 01 1 [MdW] b8f60836dc885f73 -l2 write 00009a603343d580 00 0031 00 1 [MdW(0019,01)] e4bd1c98fd7a6b9f -l1d-0 evict 00009a603343d580 00 0006 03 [IcR] e4bd1c98fd7a6b9f -l2 read 0000ed89583b9580 00 0018 00 1 [SdW(0002,00)] 6c07dacfdb56821e -l1d-0 read 0000ed89583b9580 00 0006 03 0 [ScR] 6c07dacfdb56821e -l1d-0 read 000000f97fae5cc0 00 0003 03 1 [MdW] adf40caecba14b7b -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] d8bb918563e07612 -l2 write 0000c86d27a3d040 01 0022 01 1 [MdW(0003,02)] 3034aadc83c0c12c -l1d-0 evict 0000c86d27a3d040 00 0001 02 [IcR] 3034aadc83c0c12c -l2 write 00006a36c42b4840 00 0014 00 1 [MdW(0029,03)] 1eeac5371ae03949 -l2 read 00006a36c42b4840 00 0014 00 1 [SdW(0029,03)] 1eeac5371ae03949 -l1d-0 read 00006a36c42b4840 00 0001 02 0 [ScR] 1eeac5371ae03949 -l1d-0 read 0000acd63c8d1880 00 0002 03 1 [MdW] 9440c2c945444381 -l2 write 000042ff28b0ea40 01 0023 01 1 [MdW(0004,04)] 21186ad558f150fb -l1d-1 evict 000042ff28b0ea40 00 0009 02 [IcR] 21186ad558f150fb -mem read 0000fc0f3e0e0240 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000fc0f3e0e0240 00 0013 02 0 [McW(0011,04)] 0000000000000000 -l1d-1 write 0000fc0f3e0e0240 00 0009 02 0 [MdW] 297f6f72b9a770ce -mem read 0000799fa07cabc0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000799fa07cabc0 01 0016 01 0 [McW(0024,04)] 0000000000000000 -l1d-0 write 0000799fa07cabc0 00 0015 00 0 [MdW] 51888f97616533a8 -l2 write 000050012c6eb8c0 00 0006 02 1 [MdW(0008,02)] 8d505e21d3399d55 -l1d-1 evict 000050012c6eb8c0 00 0003 02 [IcR] 8d505e21d3399d55 -l2 read 0000c20e6058a4c0 01 0014 00 1 [SdW(0027,01)] 9d29d9cac786a1e3 -l1d-1 read 0000c20e6058a4c0 00 0003 02 0 [ScR] 9d29d9cac786a1e3 -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] d8bb918563e07612 -l1d-1 read 0000c92c00098fc0 00 0015 02 1 [MdW] 5ac8f2c9a0464889 -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] 789fd761f0d30dbc -l1d-1 read 0000ed89583b9580 00 0006 00 1 [ScR] 6c07dacfdb56821e -l2 read 0000792d5ad259c0 00 0024 01 1 [MdW(0030,02)] 14078fc202486941 -l1d-1 write 0000792d5ad259c0 00 0007 01 0 [MdW] c05f08a4b165d0bf -l1d-0 write 000040f7755c2ac0 00 0011 03 1 [MdW] 0ca06c02deb05937 -l1d-0 read 000063036c943940 00 0005 03 1 [MdW] 2f9cc192d2218654 -l1d-0 evict 0000bd16375b9000 00 0000 02 [IcR] 471f2cfa81d3ac5a -mem read 0000fa4efe47a000 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000fa4efe47a000 01 0026 02 0 [McW(0011,05)] 0000000000000000 -l1d-0 write 0000fa4efe47a000 00 0000 02 0 [MdW] df2c433ed877cb6c -mem read 0000da7033404e80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000da7033404e80 00 0016 02 0 [McW(0001,03)] 0000000000000000 -l1d-1 write 0000da7033404e80 00 0010 02 0 [MdW] def0d5cb9fb03510 -l1d-1 read 00002814eea2cf80 00 0014 03 1 [MdW] c6da95c57f5d5cb2 -l1d-0 evict 000035b33dc0d400 00 0000 03 [IcR] b3fa26fb2bb1072d -l2 read 000073703a455800 00 0004 01 1 [SdW(0028,03)] 84b896eee0ea8bfb -l1d-0 read 000073703a455800 00 0000 03 0 [ScR] 84b896eee0ea8bfb -l1d-1 read 0000f76720bc2480 00 0002 00 1 [MdW] 565b8595108a30b2 -l1d-0 read 000087a8e7348c80 00 0002 02 1 [MdW] 06d5c4a0dca92e1a -l2 write 000039a5e213fe00 01 0022 00 1 [MdW(0019,00)] 8dc08ec49d595537 -l1d-1 evict 000039a5e213fe00 00 0008 00 [IcR] 8dc08ec49d595537 -l2 read 000049889647d200 00 0022 02 1 [MdW(0029,04)] 77793b7a2d13abb1 -l1d-1 write 000049889647d200 00 0008 00 0 [MdW] 47834119196c606b -l1d-0 read 0000045cce7b2a40 00 0009 00 1 [ScR] 9732b992490f2bec -l1d-1 read 0000792d5ad259c0 00 0007 01 1 [MdW] c05f08a4b165d0bf -l2 write 0000c662cc646980 00 0000 00 1 [MdW(0014,00)] 9178878696de8c91 -l1d-0 evict 0000c662cc646980 00 0006 01 [IcR] 9178878696de8c91 -l2 read 00000701e403e980 01 0024 00 1 [SdW(0005,02)] d91c439474d9ea75 -l1d-0 read 00000701e403e980 00 0006 01 0 [ScR] d91c439474d9ea75 +l2 read 0000d9b688e86700 01 0031 00 0 [McW(0012,07)] 0000000000000000 +l1d-0 write 0000d9b688e86700 00 0012 01 0 [MdW] c311a871a624c062 +l1d-1 read 0000fe2140a6f980 00 0006 02 1 [ScR] 4e2ed36498da5bfc +l2 write 0000dcedffd5d840 00 0018 00 1 [MdW(0001,01)] df69ebf16388cff7 +l1d-0 evict 0000dcedffd5d840 00 0001 00 [IcR] df69ebf16388cff7 +l2 evict 00009fde26f888c0 00 0005 01 [IcR(0023,07)] 405e3e9d2ede086b +mem read 0000232a73ed2040 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000232a73ed2040 00 0013 00 0 [McW(0023,07)] 0000000000000000 +l1d-0 write 0000232a73ed2040 00 0001 00 0 [MdW] f06374fe1abab634 +mem read 0000fb280d796f00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000fb280d796f00 00 0016 01 0 [McW(0003,02)] 0000000000000000 +l1d-1 write 0000fb280d796f00 00 0012 01 0 [MdW] 034702017a6f4b77 +l1d-1 read 00007a0ccec77d00 00 0004 03 1 [MdW] c921aab4717f265e +l1d-0 read 000087a8e7348c80 00 0002 02 1 [MdW] 479e4ab56425a27e +mem read 000026d8a5685e00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000026d8a5685e00 01 0027 01 0 [McW(0020,05)] 0000000000000000 +l1d-0 write 000026d8a5685e00 00 0008 00 0 [MdW] bdc0ca095c5c90ba +l1d-0 read 00006e7158c618c0 00 0003 02 1 [ScR] 5179e06e6d1134ab +l1d-1 read 00004ed4d0955b80 00 0014 03 1 [MdW] 5d48e651e3307f1b +l2 write 00009a461a9864c0 00 0019 00 1 [MdW(0024,03)] ad2c5b4dca99e317 +l1d-0 evict 00009a461a9864c0 00 0003 00 [IcR] ad2c5b4dca99e317 +l1d-1 evict 0000799fa07cabc0 00 0015 01 [IcR] 5045fca347d4f27e +l2 write 0000799fa07cabc0 01 0016 00 1 [MdW(0031,06)] 5045fca347d4f27e +mem write 0000799fa07cabc0 -1 -001 -1 1 [MdW] 5045fca347d4f27e +l2 evict 0000799fa07cabc0 01 0016 00 [IcR(0031,06)] 5045fca347d4f27e +mem read 0000c2b04eebfcc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c2b04eebfcc0 01 0018 01 0 [McW(0031,06)] 0000000000000000 +l1d-0 write 0000c2b04eebfcc0 00 0003 00 0 [MdW] aa640df3e7475762 +mem read 0000a40aa8666480 -1 -001 -1 1 [McW] b516458655735b72 +l2 read 0000a40aa8666480 01 0000 01 0 [ScW(0015,01)] b516458655735b72 +l1d-0 read 0000a40aa8666480 00 0002 03 0 [ScR] b516458655735b72 +l2 write 00004d48d3ab6400 00 0025 00 1 [MdW(0005,00)] 0bad902dc5dbfa0f +l1d-1 evict 00004d48d3ab6400 00 0000 01 [IcR] 0bad902dc5dbfa0f +l1d-0 evict 0000d9b688e86700 00 0012 01 [IcR] c311a871a624c062 +l2 write 0000d9b688e86700 01 0031 00 1 [MdW(0012,07)] c311a871a624c062 +mem write 0000d9b688e86700 -1 -001 -1 1 [MdW] c311a871a624c062 +l2 evict 0000d9b688e86700 01 0031 00 [IcR(0012,07)] c311a871a624c062 +mem read 0000df16e7f1d400 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000df16e7f1d400 00 0028 01 0 [McW(0012,07)] 0000000000000000 +l1d-1 write 0000df16e7f1d400 00 0000 01 0 [MdW] a67a11e1cf49b77b +l1i-1 evict 00006980d04a3400 00 0000 00 [IcR] fe5ed69efed3831b +l2 write 0000bb8c7eafac00 01 0022 01 1 [MdW(0012,02)] 209d7976d327f65d +l1d-1 evict 0000bb8c7eafac00 00 0000 03 [IcR] 209d7976d327f65d +mem read 00006980d04a3400 -1 -001 -1 1 [McW] fe5ed69efed3831b +l2 read 00006980d04a3400 00 0009 02 0 [McW(0000,05)] fe5ed69efed3831b +l1d-1 write 00006980d04a3400 00 0000 03 0 [MdW] 7ef963a07731ba85 +l1d-1 read 000077988753abc0 00 0015 00 1 [ScR] 6a88399658070358 +l2 write 0000c66c607618c0 00 0023 02 1 [MdW(0014,07)] ecc19bfa60ae4cae +l1d-0 evict 0000c66c607618c0 00 0003 03 [IcR] ecc19bfa60ae4cae +mem read 0000c20e6058a4c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c20e6058a4c0 00 0004 01 0 [McW(0009,05)] 0000000000000000 +l1d-0 write 0000c20e6058a4c0 00 0003 03 0 [MdW] 5831af44fc76ffdb +l2 write 000084af1bf9eb80 00 0022 00 1 [MdW(0025,01)] 2898ddc5bb04ad23 +l1d-1 evict 000084af1bf9eb80 00 0014 00 [IcR] 2898ddc5bb04ad23 +mem read 0000d2e78beabf80 -1 -001 -1 1 [McW] bebed8958f71442d +l2 read 0000d2e78beabf80 01 0007 01 0 [ScW(0011,05)] bebed8958f71442d +l1d-1 read 0000d2e78beabf80 00 0014 00 0 [ScR] bebed8958f71442d +mem read 0000e030a3d78740 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e030a3d78740 01 0010 01 0 [McW(0010,04)] 0000000000000000 +l1d-0 write 0000e030a3d78740 00 0013 00 0 [MdW] 707af21411b2423c +l1d-0 read 0000c662cc646980 00 0006 00 1 [MdW] cb7a2ac78d75ea1e +mem read 000063036c943940 -1 -001 -1 1 [McW] 1d26ae93ce6a6db6 +l2 read 000063036c943940 00 0026 01 0 [McW(0022,06)] 1d26ae93ce6a6db6 +l1d-0 write 000063036c943940 00 0005 03 0 [MdW] 7fa9ed2821c9db2a +l2 write 0000872d66386580 01 0015 01 1 [MdW(0021,01)] b53b1938ff066c6d +l1d-1 evict 0000872d66386580 00 0006 03 [IcR] b53b1938ff066c6d +mem read 0000e0ad5d373580 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e0ad5d373580 00 0008 00 0 [McW(0031,01)] 0000000000000000 +l1d-1 write 0000e0ad5d373580 00 0006 03 0 [MdW] 5c9bdc6f4e724176 +l1d-1 write 000008ededd7fd80 00 0006 01 1 [MdW] dffe7dbda5a630ab +l1d-1 write 0000205a116a7d40 00 0005 00 1 [MdW] 64c5ac835efc8d57 +l2 write 0000aa6ad32c4a40 01 0012 00 1 [MdW(0012,01)] 600bfac00272b065 +l1d-1 evict 0000aa6ad32c4a40 00 0009 00 [IcR] 600bfac00272b065 +mem write 00009aaf14205900 -1 -001 -1 1 [MdW] 6e85f64de7e125d5 +l2 evict 00009aaf14205900 01 0030 01 [IcR(0015,03)] 6e85f64de7e125d5 +mem read 0000f081b09aa240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000f081b09aa240 00 0029 02 0 [McW(0015,03)] 0000000000000000 +l1d-1 write 0000f081b09aa240 00 0009 00 0 [MdW] 30470642eb039e5b +l2 write 000044ca9c649400 00 0030 01 1 [MdW(0031,05)] 58da3250723bdd77 +l1d-1 evict 000044ca9c649400 00 0000 00 [IcR] 58da3250723bdd77 +mem write 0000bb8c7eafac00 -1 -001 -1 1 [MdW] 209d7976d327f65d +l2 evict 0000bb8c7eafac00 01 0022 01 [IcR(0012,02)] 209d7976d327f65d +mem read 000073703a455800 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000073703a455800 00 0004 02 0 [McW(0012,02)] 0000000000000000 +l1d-1 write 000073703a455800 00 0000 00 0 [MdW] 9fc569fe6ed32a01 +l1d-1 read 0000726ad1114c40 00 0001 02 1 [MdW] bd10168e51a99e6f +l1d-1 read 0000c0773417d200 00 0008 01 1 [MdW] 092299a4bfa2bf4f +mem read 00004813c834cdc0 -1 -001 -1 1 [McW] 705c2dbf4c432cbe +l2 read 00004813c834cdc0 00 0025 01 0 [ScW(0007,03)] 705c2dbf4c432cbe +l1d-0 read 00004813c834cdc0 00 0007 01 0 [ScR] 705c2dbf4c432cbe +l1d-0 write 000026d8a5685e00 00 0008 00 1 [MdW] ead7b1b4f2b53fe5 +l2 write 00004cfb5e6fc8c0 00 0002 01 1 [MdW(0020,02)] bb786e37d55629f0 +l1d-0 evict 00004cfb5e6fc8c0 00 0003 01 [IcR] bb786e37d55629f0 +mem read 000000f97fae5cc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000000f97fae5cc0 00 0003 01 0 [McW(0021,02)] 0000000000000000 +l1d-0 write 000000f97fae5cc0 00 0003 01 0 [MdW] fb933a96c629912c +l1d-1 evict 000048777e448ac0 00 0011 01 [IcR] ebc6d4db1d9b7ded +mem read 00003f92117466c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00003f92117466c0 01 0009 02 0 [McW(0003,05)] 0000000000000000 +l1d-1 write 00003f92117466c0 00 0011 01 0 [MdW] e875ffc98e7626d6 +l1d-1 evict 0000726ad1114c40 00 0001 02 [IcR] bd10168e51a99e6f +l2 write 0000726ad1114c40 00 0011 00 1 [MdW(0006,02)] bd10168e51a99e6f +mem write 0000726ad1114c40 -1 -001 -1 1 [MdW] bd10168e51a99e6f +l2 evict 0000726ad1114c40 00 0011 00 [IcR(0006,02)] bd10168e51a99e6f mem read 0000ade01f76c940 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000ade01f76c940 00 0029 02 0 [McW(0001,04)] 0000000000000000 -l1d-1 write 0000ade01f76c940 00 0005 02 0 [MdW] d967632a5e9ed335 -l2 read 0000045cce7b2a40 00 0030 01 1 [MdW(0002,04)] 9732b992490f2bec -l1d-0 write 0000045cce7b2a40 00 0009 00 0 [MdW] b93463c7c6882c2d -l1d-0 read 000073f8f4229a80 00 0010 03 1 [MdW] 64a74b273feb83c9 -l1d-1 read 0000f029765c7540 00 0005 01 1 [MdW] 2b0306dcb419a086 -l1d-1 read 00004f46a7d2ea80 00 0010 00 1 [ScR] d8a5addb7e65e806 -l1d-1 read 0000d99af3531440 00 0001 00 1 [MdW] 9dd6e27e91bc9863 -l2 read 0000d6eae7df0a40 01 0025 01 1 [MdW(0027,03)] 212009caf997e0d1 -l1d-0 write 0000d6eae7df0a40 00 0009 01 0 [MdW] 1bb178ab1f40b28c -l1d-1 write 0000d99af3531440 00 0001 00 1 [MdW] dbc90c66dea50e65 -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] d8bb918563e07612 -l1d-0 write 000052d61b6d5a00 00 0008 00 1 [MdW] d59c432eac30fa04 -l1d-0 read 00006f44ab8bcf80 00 0014 00 1 [MdW] 53a8a8925ca7b5c1 -l1d-0 write 000057ef223eb2c0 00 0011 00 1 [MdW] fc7cb9051b6d5fb5 -l1i-0 read 00006980d04a3400 00 0000 00 1 [ScR] 7e87cb6b5a7c5b20 -l2 write 00002b4766af8580 01 0026 01 1 [MdW(0004,03)] ec0af5df425fb3d3 -l1d-0 evict 00002b4766af8580 00 0006 00 [IcR] ec0af5df425fb3d3 -l2 read 0000c662cc646980 00 0000 00 1 [SdW(0014,00)] 9178878696de8c91 -l1d-0 read 0000c662cc646980 00 0006 00 0 [ScR] 9178878696de8c91 -l1i-1 read 00006980d04a3400 00 0000 00 1 [ScR] 7e87cb6b5a7c5b20 -l1d-0 read 0000a65bf8171680 00 0010 01 1 [MdW] e92d6a6544b2e04a -l1d-0 evict 0000780ab040b980 00 0006 02 [IcR] e88dd55a43222698 -l2 read 00009a603343d580 00 0031 00 1 [SdW(0019,01)] e4bd1c98fd7a6b9f -l1d-0 read 00009a603343d580 00 0006 02 0 [ScR] e4bd1c98fd7a6b9f -l2 write 00008edcd3eccdc0 01 0028 02 1 [MdW(0008,03)] 62582b34270ac5fc -l1d-1 evict 00008edcd3eccdc0 00 0007 03 [IcR] 62582b34270ac5fc -mem read 0000494fead535c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000494fead535c0 01 0019 02 0 [McW(0024,05)] 0000000000000000 -l1d-1 write 0000494fead535c0 00 0007 03 0 [MdW] 613b6d57ad34e57a -l2 write 00000463b4c5cf80 00 0022 03 1 [MdW(0020,01)] d8778ea3f72f9753 -l2 read 00000463b4c5cf80 00 0022 03 1 [SdW(0020,01)] d8778ea3f72f9753 -l1i-1 read 00000463b4c5cf80 00 0014 00 0 [ScR] d8778ea3f72f9753 -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] d59c432eac30fa04 -l1d-1 read 0000ed89583b9580 00 0006 00 1 [ScR] 6c07dacfdb56821e -l1d-0 read 000049afd5e02b40 00 0013 00 1 [MdW] 0d73762cec20ec64 -l1d-0 read 0000fa4efe47a000 00 0000 02 1 [MdW] df2c433ed877cb6c -l1d-0 write 0000f448c073e880 00 0002 00 1 [MdW] e586cd2ebfeffde9 -l2 write 0000ba16e8b8b540 01 0011 01 1 [MdW(0010,04)] 9baa72244d2761d2 -l1d-0 evict 0000ba16e8b8b540 00 0005 02 [IcR] 9baa72244d2761d2 -l2 write 0000ade01f76c940 00 0029 02 1 [MdW(0001,04)] d967632a5e9ed335 -l2 read 0000ade01f76c940 00 0029 02 1 [SdW(0001,04)] d967632a5e9ed335 -l1d-0 read 0000ade01f76c940 00 0005 02 0 [ScR] d967632a5e9ed335 -l1d-0 read 00000701e403e980 00 0006 01 1 [ScR] d91c439474d9ea75 -l1d-1 evict 000059bb4b098240 00 0009 03 [IcR] a816cf9eeece6498 -l2 read 000043ca5c07b240 01 0013 00 1 [SdW(0012,01)] 0b03165c64b25b52 -l1d-1 read 000043ca5c07b240 00 0009 03 0 [ScR] 0b03165c64b25b52 -l1d-0 read 00000701e403e980 00 0006 01 1 [ScR] d91c439474d9ea75 -l1d-0 write 0000f27b5523ddc0 00 0007 03 1 [MdW] 630f01551a3a523f -l1d-1 read 000043ca5c07b240 00 0009 03 1 [ScR] 0b03165c64b25b52 -l1d-0 read 0000acd63c8d1880 00 0002 03 1 [MdW] 9440c2c945444381 -l1d-0 read 0000045cce7b2a40 00 0009 00 1 [MdW] b93463c7c6882c2d -l1d-0 read 0000c79b07073dc0 00 0007 00 1 [MdW] 31397f4080bef586 -l1d-1 read 00007d0902e50f80 00 0014 00 1 [ScR] cb58c668f7241e9f -l1d-0 write 000063036c943940 00 0005 03 1 [MdW] fb71c5cb4335e2f5 -l2 write 00001c9702375bc0 00 0021 01 1 [MdW(0005,04)] 916619a5f0fd52ba -l1d-1 evict 00001c9702375bc0 00 0015 03 [IcR] 916619a5f0fd52ba +l2 read 0000ade01f76c940 01 0028 01 0 [McW(0006,02)] 0000000000000000 +l1d-1 write 0000ade01f76c940 00 0005 02 0 [MdW] 7e76db3a89663ea8 +l1d-0 evict 00006e7158c618c0 00 0003 02 [IcR] 5179e06e6d1134ab +mem read 0000136b8cb094c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000136b8cb094c0 01 0030 01 0 [McW(0010,02)] 0000000000000000 +l1d-0 write 0000136b8cb094c0 00 0003 02 0 [MdW] 93f725490a41ea1d +l1d-0 read 00003f232f338000 00 0000 01 1 [MdW] 304bee8ad7731636 +mem read 00007b42479583c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007b42479583c0 01 0008 00 0 [McW(0008,03)] 0000000000000000 +l1d-0 write 00007b42479583c0 00 0015 01 0 [MdW] 1eb25cab9f3314d6 +l2 write 0000780ab040b980 01 0002 00 1 [MdW(0019,07)] 0968e82e4bb02b18 +l1d-1 evict 0000780ab040b980 00 0006 00 [IcR] 0968e82e4bb02b18 +mem read 0000ed89583b9580 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ed89583b9580 00 0018 01 0 [McW(0024,00)] 0000000000000000 +l1d-1 write 0000ed89583b9580 00 0006 00 0 [MdW] fb960620c6243046 +l2 write 00004dcada9f52c0 01 0010 00 1 [MdW(0025,04)] e9b8fce55ce2beb8 +l1d-0 evict 00004dcada9f52c0 00 0011 02 [IcR] e9b8fce55ce2beb8 +l2 read 0000b8f3e311dac0 00 0015 00 1 [SdW(0023,00)] e250fdaf6f64e5b7 +l1d-0 read 0000b8f3e311dac0 00 0011 02 0 [ScR] e250fdaf6f64e5b7 +mem read 000086890a9e27c0 -1 -001 -1 1 [McW] e5b8948696e0bed1 +l2 read 000086890a9e27c0 01 0005 02 0 [McW(0031,00)] e5b8948696e0bed1 +l1d-0 write 000086890a9e27c0 00 0015 02 0 [MdW] f1e17884a7f951c6 +l1d-0 evict 000048777e448ac0 00 0011 03 [IcR] ebc6d4db1d9b7ded +mem read 00006bb87d1516c0 -1 -001 -1 1 [McW] 7bd8aa2129e9a455 +l2 read 00006bb87d1516c0 00 0012 02 0 [McW(0025,05)] 7bd8aa2129e9a455 +l1d-0 write 00006bb87d1516c0 00 0011 03 0 [MdW] 8ad9943922ec9dad +l1d-1 read 0000c0773417d200 00 0008 01 1 [MdW] 092299a4bfa2bf4f +l2 write 000057ef223eb2c0 00 0009 01 1 [MdW(0001,07)] 2d826de3e09ee626 +l1d-0 evict 000057ef223eb2c0 00 0011 00 [IcR] 2d826de3e09ee626 +l2 read 000095873da506c0 01 0012 01 1 [SdW(0016,04)] 64a74b273feb83c9 +l1d-0 read 000095873da506c0 00 0011 00 0 [ScR] 64a74b273feb83c9 +l1d-0 read 000026d8a5685e00 00 0008 00 1 [MdW] ead7b1b4f2b53fe5 +l1d-0 read 00002c011c660300 00 0012 03 1 [MdW] aacfbf30c579992e +l2 write 000057c442889400 01 0025 01 1 [MdW(0002,06)] d17309df336a0e01 +l1d-1 evict 000057c442889400 00 0000 02 [IcR] d17309df336a0e01 +mem write 0000aa6ad32c4a40 -1 -001 -1 1 [MdW] 600bfac00272b065 +l2 evict 0000aa6ad32c4a40 01 0012 00 [IcR(0012,01)] 600bfac00272b065 +mem read 00007e3437831800 -1 -001 -1 1 [McW] 6b9d76bb27c3ffa3 +l2 read 00007e3437831800 01 0013 00 0 [ScW(0012,01)] 6b9d76bb27c3ffa3 +l1d-1 read 00007e3437831800 00 0000 02 0 [ScR] 6b9d76bb27c3ffa3 +l1d-0 evict 0000c97dfb94fd80 00 0006 01 [IcR] 2fba7336b9505ed4 +l2 write 0000c97dfb94fd80 00 0019 01 1 [MdW(0026,07)] 2fba7336b9505ed4 +mem write 0000c97dfb94fd80 -1 -001 -1 1 [MdW] 2fba7336b9505ed4 +l2 evict 0000c97dfb94fd80 00 0019 01 [IcR(0026,07)] 2fba7336b9505ed4 +mem read 00005066f9d0b480 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00005066f9d0b480 00 0026 02 0 [McW(0026,07)] 0000000000000000 +l1d-1 write 00005066f9d0b480 00 0002 02 0 [MdW] 53940c35436b8a64 +l1d-1 read 00007e3437831800 00 0000 02 1 [ScR] 6b9d76bb27c3ffa3 +l1d-0 write 000087a8e7348c80 00 0002 02 1 [MdW] b4727a351299efba +mem write 000046663e4def00 -1 -001 -1 1 [MdW] e21542a5128e9ecb +l2 evict 000046663e4def00 00 0031 00 [IcR(0023,03)] e21542a5128e9ecb +mem read 0000bbc9c32465c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000bbc9c32465c0 00 0015 01 0 [McW(0023,03)] 0000000000000000 +l1d-0 write 0000bbc9c32465c0 00 0007 02 0 [MdW] a06ae50259dfb6f1 +l1d-0 read 0000bbc9c32465c0 00 0007 02 1 [MdW] a06ae50259dfb6f1 +l2 write 0000df16e7f1d400 00 0028 01 1 [MdW(0012,07)] a67a11e1cf49b77b +l1d-1 evict 0000df16e7f1d400 00 0000 01 [IcR] a67a11e1cf49b77b +l2 read 000057c442889400 01 0025 01 1 [MdW(0002,06)] d17309df336a0e01 +l1d-1 write 000057c442889400 00 0000 01 0 [MdW] 3bbaa19fee680867 +l1d-0 read 0000232a73ed2040 00 0001 00 1 [MdW] f06374fe1abab634 +l2 write 0000afa7e0db12c0 01 0019 02 1 [MdW(0013,04)] fbf332b5f72ab798 +l1d-0 evict 0000afa7e0db12c0 00 0011 01 [IcR] fbf332b5f72ab798 +l2 read 0000908064eef6c0 00 0003 00 1 [SdW(0000,07)] 63b934d5bef74a33 +l1d-0 read 0000908064eef6c0 00 0011 01 0 [ScR] 63b934d5bef74a33 +l1d-1 write 000008ededd7fd80 00 0006 01 1 [MdW] 650994f63b533953 +l1d-1 read 000008ededd7fd80 00 0006 01 1 [MdW] 650994f63b533953 +mem read 00002d9824d83d80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00002d9824d83d80 00 0021 01 0 [McW(0010,07)] 0000000000000000 +l1d-0 write 00002d9824d83d80 00 0006 01 0 [MdW] 78173ca74385638d +l1d-0 evict 00002cbcc4bef440 00 0001 02 [IcR] dd17905e4616865e +l2 write 00002cbcc4bef440 00 0001 00 1 [MdW(0018,07)] dd17905e4616865e +mem write 00002cbcc4bef440 -1 -001 -1 1 [MdW] dd17905e4616865e +l2 evict 00002cbcc4bef440 00 0001 00 [IcR(0018,07)] dd17905e4616865e +mem read 000052d61b6d5a00 -1 -001 -1 1 [McW] e775afa1004c0eb4 +l2 read 000052d61b6d5a00 01 0013 02 0 [ScW(0018,07)] e775afa1004c0eb4 +l1d-0 read 000052d61b6d5a00 00 0008 01 0 [ScR] e775afa1004c0eb4 +l1d-1 write 00004f46a7d2ea80 00 0010 03 1 [MdW] c6da95c57f5d5cb2 +l2 write 0000d8ad57bdad00 00 0020 01 1 [MdW(0024,05)] d54d77b5577490c8 +l1d-1 evict 0000d8ad57bdad00 00 0004 02 [IcR] d54d77b5577490c8 +mem read 000084e1ad47e100 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000084e1ad47e100 00 0008 01 0 [McW(0014,06)] 0000000000000000 +l1d-1 write 000084e1ad47e100 00 0004 02 0 [MdW] 4e8fcbcb2b46a775 +l1d-0 read 00001ad58832f640 00 0009 03 1 [MdW] 796192d34cb6befd +mem read 000072629a2641c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000072629a2641c0 00 0011 00 0 [McW(0018,06)] 0000000000000000 +l1d-1 write 000072629a2641c0 00 0007 03 0 [MdW] cff65dd3605c7fe3 +mem read 0000f59b70013a00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000f59b70013a00 01 0023 02 0 [McW(0018,02)] 0000000000000000 +l1d-1 write 0000f59b70013a00 00 0008 02 0 [MdW] 4f9092de9564d05f +l1d-0 evict 000016f64b35ad40 00 0005 01 [IcR] 292bf8907b74edd2 +l2 write 000016f64b35ad40 01 0019 00 1 [MdW(0022,04)] 292bf8907b74edd2 +mem write 000016f64b35ad40 -1 -001 -1 1 [MdW] 292bf8907b74edd2 +l2 evict 000016f64b35ad40 01 0019 00 [IcR(0022,04)] 292bf8907b74edd2 +mem read 000030295cbb89c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000030295cbb89c0 00 0031 00 0 [McW(0022,04)] 0000000000000000 +l1d-0 write 000030295cbb89c0 00 0007 03 0 [MdW] 808a6a34835c5ae7 +l2 write 00001e12c123a180 01 0018 00 1 [MdW(0018,05)] ff1d2beb43b9b33b +l1d-0 evict 00001e12c123a180 00 0006 03 [IcR] ff1d2beb43b9b33b +mem read 000018d5c901f980 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000018d5c901f980 01 0001 00 0 [McW(0014,00)] 0000000000000000 +l1d-0 write 000018d5c901f980 00 0006 03 0 [MdW] 3ab4306e1fd65d85 +l1d-0 read 000049afd5e02b40 00 0013 02 1 [MdW] 283b644b3a7a9886 +mem read 0000c194bc8acb40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c194bc8acb40 01 0003 01 0 [McW(0016,00)] 0000000000000000 +l1d-1 write 0000c194bc8acb40 00 0013 00 0 [MdW] b2a2ff4da4c2c04b +l2 write 000089351da6e1c0 00 0029 00 1 [MdW(0016,01)] 3ca049e9cff6d872 +l1d-1 evict 000089351da6e1c0 00 0007 00 [IcR] 3ca049e9cff6d872 +l1d-0 evict 00002c011c660300 00 0012 03 [IcR] aacfbf30c579992e +l2 write 00002c011c660300 00 0012 01 1 [MdW(0023,04)] aacfbf30c579992e +mem write 00002c011c660300 -1 -001 -1 1 [MdW] aacfbf30c579992e +l2 evict 00002c011c660300 00 0012 01 [IcR(0023,04)] aacfbf30c579992e +mem read 0000ecb652ef69c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ecb652ef69c0 01 0012 00 0 [McW(0023,04)] 0000000000000000 +l1d-1 write 0000ecb652ef69c0 00 0007 00 0 [MdW] eb59c87e9e41fe96 +l1d-0 read 00004813c834cdc0 00 0007 01 1 [ScR] 705c2dbf4c432cbe +mem read 0000e5a32a13e780 -1 -001 -1 1 [McW] 2ffc914fca61ecc0 +l2 read 0000e5a32a13e780 00 0019 01 0 [ScW(0005,07)] 2ffc914fca61ecc0 +l1i-0 read 0000e5a32a13e780 00 0014 00 0 [ScR] 2ffc914fca61ecc0 +l1d-0 read 0000c86d27a3d040 00 0001 01 1 [MdW] b7fe082719be048b +mem read 0000c9ac457e9140 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c9ac457e9140 00 0007 02 0 [McW(0001,02)] 0000000000000000 +l1d-1 write 0000c9ac457e9140 00 0005 03 0 [MdW] 246c1639ddc18c48 +l1d-1 evict 0000fe2140a6f980 00 0006 02 [IcR] 4e2ed36498da5bfc +l1d-0 evict 00006f44ab8bcf80 00 0014 00 [IcR] 23fb33a840c4d118 +l2 write 00006f44ab8bcf80 00 0017 00 1 [MdW(0002,02)] 23fb33a840c4d118 +mem write 00006f44ab8bcf80 -1 -001 -1 1 [MdW] 23fb33a840c4d118 +l2 evict 00006f44ab8bcf80 00 0017 00 [IcR(0002,02)] 23fb33a840c4d118 +mem read 000075fd554aed80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000075fd554aed80 00 0021 02 0 [McW(0002,02)] 0000000000000000 +l1d-1 write 000075fd554aed80 00 0006 02 0 [MdW] 96f8c40189bf5862 +l1d-0 write 0000c20e6058a4c0 00 0003 03 1 [MdW] 212a13ad0ffcb4e3 +l2 write 000005ccfbfe3240 00 0012 00 1 [MdW(0029,03)] 816f140018ef71ee +l1d-0 evict 000005ccfbfe3240 00 0009 02 [IcR] 816f140018ef71ee +mem write 00001e12c123a180 -1 -001 -1 1 [MdW] ff1d2beb43b9b33b +l2 evict 00001e12c123a180 01 0018 00 [IcR(0018,05)] ff1d2beb43b9b33b +mem read 0000af4203bc4640 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000af4203bc4640 00 0024 02 0 [McW(0018,05)] 0000000000000000 +l1d-0 write 0000af4203bc4640 00 0009 02 0 [MdW] 8ec0b565fb3202a0 +l2 write 0000ae053b607e40 00 0011 01 1 [MdW(0028,02)] 33aab749622ce144 +l1d-1 evict 0000ae053b607e40 00 0009 01 [IcR] 33aab749622ce144 +l1d-0 evict 000063036c943940 00 0005 03 [IcR] 7fa9ed2821c9db2a +l2 write 000063036c943940 00 0026 01 1 [MdW(0022,06)] 7fa9ed2821c9db2a +mem write 000063036c943940 -1 -001 -1 1 [MdW] 7fa9ed2821c9db2a +l2 evict 000063036c943940 00 0026 01 [IcR(0022,06)] 7fa9ed2821c9db2a +mem read 00004be09470fa40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004be09470fa40 00 0000 00 0 [McW(0022,06)] 0000000000000000 +l1d-1 write 00004be09470fa40 00 0009 01 0 [MdW] d75b3bf448b79ed6 +l2 write 00007cc1e5f42e40 00 0027 00 1 [MdW(0023,05)] 38334869bbcf71a3 +l1d-1 evict 00007cc1e5f42e40 00 0009 02 [IcR] 38334869bbcf71a3 +mem read 0000b5edcfe07e40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000b5edcfe07e40 01 0016 00 0 [McW(0026,05)] 0000000000000000 +l1d-1 write 0000b5edcfe07e40 00 0009 02 0 [MdW] df83c9e60deff983 +mem read 0000cb907584dc80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000cb907584dc80 01 0004 01 0 [McW(0025,07)] 0000000000000000 +l1d-1 write 0000cb907584dc80 00 0002 03 0 [MdW] 7d8a4e2a232b5292 +l2 write 00009a603343d580 01 0003 00 1 [MdW(0020,03)] 75aae8a3bba85efe +l1d-0 evict 00009a603343d580 00 0006 02 [IcR] 75aae8a3bba85efe +mem read 00005f4478ac3180 -1 -001 -1 1 [McW] 8d9cf30f1c4ad7ad +l2 read 00005f4478ac3180 01 0025 02 0 [ScW(0028,06)] 8d9cf30f1c4ad7ad +l1d-0 read 00005f4478ac3180 00 0006 02 0 [ScR] 8d9cf30f1c4ad7ad +l1d-1 read 00006a36c42b4840 00 0001 01 1 [MdW] f142984e5c1a9135 +mem write 0000740d5897eb00 -1 -001 -1 1 [MdW] 024d94b6ba577e25 +l2 evict 0000740d5897eb00 00 0016 00 [IcR(0020,01)] 024d94b6ba577e25 +mem read 000046663e4def00 -1 -001 -1 1 [McW] e21542a5128e9ecb +l2 read 000046663e4def00 00 0031 02 0 [ScW(0020,01)] e21542a5128e9ecb +l1d-0 read 000046663e4def00 00 0012 01 0 [ScR] e21542a5128e9ecb +l2 write 0000e21b98b426c0 00 0013 01 1 [MdW(0010,01)] efda01f1f1ed6559 +l1d-1 evict 0000e21b98b426c0 00 0011 02 [IcR] efda01f1f1ed6559 +l1d-0 evict 000030295cbb89c0 00 0007 03 [IcR] 808a6a34835c5ae7 +l2 write 000030295cbb89c0 00 0031 00 1 [MdW(0022,04)] 808a6a34835c5ae7 +mem write 000030295cbb89c0 -1 -001 -1 1 [MdW] 808a6a34835c5ae7 +l2 evict 000030295cbb89c0 00 0031 00 [IcR(0022,04)] 808a6a34835c5ae7 +mem read 0000dda2631186c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000dda2631186c0 00 0026 01 0 [McW(0022,04)] 0000000000000000 +l1d-1 write 0000dda2631186c0 00 0011 02 0 [MdW] 2389031e21d4a9ca +l1d-0 evict 0000b8f3e311dac0 00 0011 02 [IcR] e250fdaf6f64e5b7 +l2 read 000057ef223eb2c0 00 0009 01 1 [SdW(0001,07)] 2d826de3e09ee626 +l1d-0 read 000057ef223eb2c0 00 0011 02 0 [ScR] 2d826de3e09ee626 +mem read 000098857a80b0c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000098857a80b0c0 01 0015 02 0 [McW(0000,01)] 0000000000000000 +l1d-1 write 000098857a80b0c0 00 0003 03 0 [MdW] 4af1df55aebdd3e6 +l1d-0 evict 000065dc0cb58f00 00 0012 02 [IcR] 01d6f903bd704355 +l2 write 000065dc0cb58f00 01 0029 01 1 [MdW(0025,02)] 01d6f903bd704355 +mem write 000065dc0cb58f00 -1 -001 -1 1 [MdW] 01d6f903bd704355 +l2 evict 000065dc0cb58f00 01 0029 01 [IcR(0025,02)] 01d6f903bd704355 mem read 0000b16b39d563c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000b16b39d563c0 01 0011 02 0 [McW(0010,06)] 0000000000000000 -l1d-1 write 0000b16b39d563c0 00 0015 03 0 [MdW] c4e2fe434591c591 -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] 789fd761f0d30dbc -l2 write 000057c442889400 01 0025 02 1 [MdW(0005,06)] 41f1903bf6dd8949 -l1d-0 evict 000057c442889400 00 0000 00 [IcR] 41f1903bf6dd8949 -mem read 000042cda8d19c00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000042cda8d19c00 01 0018 01 0 [McW(0016,02)] 0000000000000000 -l1d-0 write 000042cda8d19c00 00 0000 00 0 [MdW] bf4e3ef9cf917b73 -l2 write 0000ff71c82dc900 01 0006 00 1 [MdW(0010,00)] ead7b1b4f2b53fe5 -l1d-0 evict 0000ff71c82dc900 00 0004 02 [IcR] ead7b1b4f2b53fe5 -l2 read 0000f66f9acff100 01 0000 00 1 [SdW(0012,02)] c7f5ae053c4b54cf -l1d-0 read 0000f66f9acff100 00 0004 02 0 [ScR] c7f5ae053c4b54cf -l1d-0 write 00006f44ab8bcf80 00 0014 00 1 [MdW] 5b34bc35144399f8 -l1d-0 read 0000c0773417d200 00 0008 02 1 [ScR] 2f46e337ff7072cf -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] 789fd761f0d30dbc -l1d-1 read 00000b438aedb2c0 00 0011 02 1 [MdW] f960a061cdcbd97f -l1d-0 read 000049afd5e02b40 00 0013 00 1 [MdW] 0d73762cec20ec64 -l2 write 0000f27b5523ddc0 01 0017 00 1 [MdW(0000,02)] 630f01551a3a523f -l2 read 0000f27b5523ddc0 01 0017 00 1 [SdW(0000,02)] 630f01551a3a523f -l1i-0 read 0000f27b5523ddc0 00 0007 00 0 [ScR] 630f01551a3a523f -l1d-0 read 000063036c943940 00 0005 03 1 [MdW] fb71c5cb4335e2f5 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l1d-0 read 0000045cce7b2a40 00 0009 00 1 [MdW] b93463c7c6882c2d -l1d-1 read 00007d0902e50f80 00 0014 00 1 [ScR] cb58c668f7241e9f -l1d-0 write 00006f44ab8bcf80 00 0014 00 1 [MdW] aedb2159a3c4680e -l1i-1 evict 00006bf6751e90c0 00 0003 00 [IcR] c8f6e6fa1d07acdd -l2 read 00006bf6751e90c0 01 0013 02 1 [MdW(0022,06)] c8f6e6fa1d07acdd -l1d-1 write 00006bf6751e90c0 00 0003 01 0 [MdW] 3c0c3449cec62aac -l1d-0 evict 0000df0f11cce0c0 00 0003 01 [IcR] b46e0cda852ad2e2 -l2 read 0000df0f11cce0c0 00 0018 02 1 [MdW(0013,00)] b46e0cda852ad2e2 -l1d-1 write 0000df0f11cce0c0 00 0003 03 0 [MdW] 9c0f2328e5a76eca -mem read 0000cf04a7d0b7c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000cf04a7d0b7c0 00 0012 02 0 [McW(0007,04)] 0000000000000000 -l1d-0 write 0000cf04a7d0b7c0 00 0015 01 0 [MdW] 640faa68409ae8f8 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l1d-0 evict 0000c0773417d200 00 0008 02 [IcR] 2f46e337ff7072cf -l2 read 0000c0773417d200 01 0023 00 1 [MdW(0019,02)] 2f46e337ff7072cf -l1d-1 write 0000c0773417d200 00 0008 01 0 [MdW] 01c0de693ddfa9f2 -l1d-0 write 000057ef223eb2c0 00 0011 00 1 [MdW] d1c802c4f83738f4 -l1d-1 read 000043ca5c07b240 00 0009 03 1 [ScR] 0b03165c64b25b52 -l1d-1 write 0000f76720bc2480 00 0002 00 1 [MdW] 5d585c9b6a7f6b9f -l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] 5d6e440d0dd55dd5 -l2 write 0000908064eef6c0 01 0001 00 1 [MdW(0001,01)] f840ce71fef19440 -l1d-1 evict 0000908064eef6c0 00 0011 03 [IcR] f840ce71fef19440 -mem read 0000c5d1227ee6c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c5d1227ee6c0 00 0001 01 0 [McW(0002,07)] 0000000000000000 -l1d-1 write 0000c5d1227ee6c0 00 0011 03 0 [MdW] 37aa7cac493fcf20 -l2 write 00004813c834cdc0 01 0021 01 1 [MdW(0003,03)] 943fd65d38c4092e -l1d-0 evict 00004813c834cdc0 00 0007 02 [IcR] 943fd65d38c4092e -l2 read 00003be6b01765c0 01 0029 01 1 [SdW(0022,02)] b07105a9381db806 -l1d-0 read 00003be6b01765c0 00 0007 02 0 [ScR] b07105a9381db806 -l1d-0 evict 00006a36c42b4840 00 0001 02 [IcR] 1eeac5371ae03949 -l2 read 00006a36c42b4840 00 0014 00 1 [MdW(0029,03)] 1eeac5371ae03949 -l1d-1 write 00006a36c42b4840 00 0001 02 0 [MdW] d9265abb2499f188 -l1d-0 write 0000f448c073e880 00 0002 00 1 [MdW] a6a1a8066252f6a4 -l1d-1 read 0000da7033404e80 00 0010 02 1 [MdW] def0d5cb9fb03510 -l1d-1 read 0000b16b39d563c0 00 0015 03 1 [MdW] c4e2fe434591c591 -l1d-0 write 0000fa408c35ba00 00 0008 01 1 [MdW] 7ecba1cd63a2cbbe -l1d-1 evict 00001fd6787ba100 00 0004 02 [IcR] df1b827b0bffd943 -l2 read 0000fc3d1a588d00 01 0007 00 1 [SdW(0006,02)] 20d6291b6fceeaa3 -l1d-1 read 0000fc3d1a588d00 00 0004 02 0 [ScR] 20d6291b6fceeaa3 -l1d-1 evict 00000463b4c5cf80 00 0014 02 [IcR] d8778ea3f72f9753 -l2 read 00006d9316738f80 00 0027 02 1 [SdW(0004,02)] 6700e6b15b3571ec -l1d-1 read 00006d9316738f80 00 0014 02 0 [ScR] 6700e6b15b3571ec -l1d-0 read 0000534534d814c0 00 0003 00 1 [ScR] 5488878000e9ca11 -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] d8bb918563e07612 -l1d-0 read 0000f66f9acff100 00 0004 02 1 [ScR] c7f5ae053c4b54cf -l1d-0 evict 00006980d04a3400 00 0000 01 [IcR] 7e87cb6b5a7c5b20 -l2 read 00007e3437831800 01 0013 01 1 [SdW(0018,03)] 9ac69dc0ff6bf852 -l1d-0 read 00007e3437831800 00 0000 01 0 [ScR] 9ac69dc0ff6bf852 -l1d-1 evict 0000bb75517c9b80 00 0014 01 [IcR] 78786a2e713dca43 -l2 read 00005d35d68c9380 00 0019 03 1 [SdW(0022,07)] 51bed99eb8f604e9 -l1d-1 read 00005d35d68c9380 00 0014 01 0 [ScR] 51bed99eb8f604e9 -l1d-1 evict 0000b5cd51622240 00 0009 01 [IcR] 4f9c1718ca9de14e -mem read 0000c1546879c240 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000c1546879c240 00 0000 01 0 [McW(0003,07)] 0000000000000000 -l1d-1 write 0000c1546879c240 00 0009 01 0 [MdW] 000a8f23aa537d49 -l2 write 00004c22aaaafa40 00 0020 02 1 [MdW(0003,06)] 508089914b57b049 -l1d-0 evict 00004c22aaaafa40 00 0009 02 [IcR] 508089914b57b049 -l2 read 000019a40a160240 01 0009 00 1 [SdW(0027,00)] 003301b2273c5e28 -l1d-0 read 000019a40a160240 00 0009 02 0 [ScR] 003301b2273c5e28 -l1d-1 write 0000883768b6a3c0 00 0015 01 1 [MdW] f278520dc139b5ed -l1d-1 read 0000095a29bb9340 00 0013 00 1 [MdW] 30470642eb039e5b -l1d-0 read 000057ef223eb2c0 00 0011 00 1 [MdW] d1c802c4f83738f4 -l1d-0 read 00009a603343d580 00 0006 02 1 [ScR] e4bd1c98fd7a6b9f -l2 write 0000b54aff87b9c0 01 0031 02 1 [MdW(0020,02)] 06b7c521daf2ebd7 -l1d-0 evict 0000b54aff87b9c0 00 0007 01 [IcR] 06b7c521daf2ebd7 -mem read 00006074635435c0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00006074635435c0 00 0007 02 0 [McW(0006,05)] 0000000000000000 -l1d-0 write 00006074635435c0 00 0007 01 0 [MdW] 427f5edbe26fb649 -mem read 0000e2c595bb5e80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000e2c595bb5e80 01 0002 02 0 [McW(0004,05)] 0000000000000000 -l1d-1 write 0000e2c595bb5e80 00 0010 03 0 [MdW] 426159303ad0aed9 -l2 read 0000c86d27a3d040 01 0022 01 1 [SdW(0003,02)] 3034aadc83c0c12c -l1d-0 read 0000c86d27a3d040 00 0001 02 0 [ScR] 3034aadc83c0c12c -l1d-1 read 00007d0902e50f80 00 0014 00 1 [ScR] cb58c668f7241e9f -l1d-0 evict 0000f27b5523ddc0 00 0007 03 [IcR] 630f01551a3a523f -l2 read 0000c477f06039c0 01 0004 00 1 [SdW(0022,01)] 07a43d1b05d30814 -l1d-0 read 0000c477f06039c0 00 0007 03 0 [ScR] 07a43d1b05d30814 -l2 write 0000418397142480 01 0006 01 1 [MdW(0004,00)] d5ca42501735883b -l1d-0 evict 0000418397142480 00 0002 01 [IcR] d5ca42501735883b -l2 read 0000a40aa8666480 01 0000 01 1 [SdW(0028,04)] 173c5f4478ac31b3 -l1d-0 read 0000a40aa8666480 00 0002 01 0 [ScR] 173c5f4478ac31b3 -l1d-0 read 000063036c943940 00 0005 03 1 [MdW] fb71c5cb4335e2f5 -l1d-1 evict 00002ccb051018c0 00 0003 00 [IcR] 37430a6ae2ed6122 -l2 read 0000136b8cb094c0 01 0030 01 1 [SdW(0017,03)] 4d51034c84140818 -l1d-1 read 0000136b8cb094c0 00 0003 00 0 [ScR] 4d51034c84140818 -l2 write 00006a25c963e900 00 0028 00 1 [MdW(0018,01)] ae43245b0fd92af4 -l1d-1 evict 00006a25c963e900 00 0004 03 [IcR] ae43245b0fd92af4 -l2 read 00007a0ccec77d00 00 0004 00 1 [SdW(0006,00)] 603f902534bdd00d -l1d-1 read 00007a0ccec77d00 00 0004 03 0 [ScR] 603f902534bdd00d -l1d-0 write 000073f8f4229a80 00 0010 03 1 [MdW] e8eef9e821b9b361 -l2 read 0000a6f9f0803d80 00 0010 00 1 [SdW(0030,01)] c0f82e8e69025d47 -l1i-0 read 0000a6f9f0803d80 00 0006 00 0 [ScR] c0f82e8e69025d47 -l2 write 00002c011c660300 00 0012 01 1 [MdW(0020,00)] 7a2d736a5722d9e9 -l1d-0 evict 00002c011c660300 00 0012 02 [IcR] 7a2d736a5722d9e9 -l2 write 000066e78b358f00 00 0009 00 1 [MdW(0025,00)] 9d96c52a7d69d60e -l2 read 000066e78b358f00 00 0009 00 1 [SdW(0025,00)] 9d96c52a7d69d60e -l1d-0 read 000066e78b358f00 00 0012 02 0 [ScR] 9d96c52a7d69d60e -l2 write 0000ced5eac0d680 00 0002 00 1 [MdW(0022,00)] 286cd5e99abee408 -l1d-0 evict 0000ced5eac0d680 00 0010 00 [IcR] 286cd5e99abee408 +l2 read 0000b16b39d563c0 00 0027 01 0 [McW(0025,02)] 0000000000000000 +l1d-0 write 0000b16b39d563c0 00 0015 03 0 [MdW] 911f9c450394e00e +mem write 0000872d66386580 -1 -001 -1 1 [MdW] b53b1938ff066c6d +l2 evict 0000872d66386580 01 0015 01 [IcR(0021,01)] b53b1938ff066c6d mem read 00007121fd387e80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00007121fd387e80 01 0025 03 0 [McW(0015,05)] 0000000000000000 -l1d-0 write 00007121fd387e80 00 0010 00 0 [MdW] ad519a24c56e4188 -l1d-0 write 0000045cce7b2a40 00 0009 00 1 [MdW] a17c5d2d47e695af -l1d-0 read 0000ffac00a71b80 00 0014 01 1 [MdW] e178f2d9faca3dba -l1d-0 write 00006f44ab8bcf80 00 0014 00 1 [MdW] 54ef841c985c9745 -l1d-0 write 000052d61b6d5a00 00 0008 00 1 [MdW] 47f09fd7ab0208ac -l1d-1 evict 0000780ab040b980 00 0006 02 [IcR] e88dd55a43222698 -mem read 000080a8ac776580 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000080a8ac776580 01 0024 01 0 [McW(0010,07)] 0000000000000000 -l1d-1 write 000080a8ac776580 00 0006 02 0 [MdW] 50545394e7113224 -l2 read 0000534534d814c0 00 0006 01 1 [MdW(0011,01)] 5488878000e9ca11 -l1d-0 write 0000534534d814c0 00 0003 00 0 [MdW] 4c19d65a8afebebd +l2 read 00007121fd387e80 00 0004 03 0 [McW(0021,01)] 0000000000000000 +l1d-0 write 00007121fd387e80 00 0010 02 0 [MdW] 1be8eab393ca122c +l1d-0 read 0000c662cc646980 00 0006 00 1 [MdW] cb7a2ac78d75ea1e +mem read 0000fa408c35ba00 -1 -001 -1 1 [McW] 7eec603efdcdea3b +l2 read 0000fa408c35ba00 01 0031 00 0 [ScW(0028,01)] 7eec603efdcdea3b +l1d-0 read 0000fa408c35ba00 00 0008 02 0 [ScR] 7eec603efdcdea3b +mem read 0000a240433c0100 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000a240433c0100 00 0022 02 0 [McW(0003,04)] 0000000000000000 +l1d-0 write 0000a240433c0100 00 0004 02 0 [MdW] 3c86a591f8f297ce +l2 write 0000045cce7b2a40 00 0030 00 1 [MdW(0005,02)] 23260c93a8186343 +l1d-0 evict 0000045cce7b2a40 00 0009 00 [IcR] 23260c93a8186343 +l1d-1 evict 0000c72e4af4f8c0 00 0003 01 [IcR] 9dd6e27e91bc9863 +l2 write 0000c72e4af4f8c0 01 0000 00 1 [MdW(0007,06)] 9dd6e27e91bc9863 +mem write 0000c72e4af4f8c0 -1 -001 -1 1 [MdW] 9dd6e27e91bc9863 +l2 evict 0000c72e4af4f8c0 01 0000 00 [IcR(0007,06)] 9dd6e27e91bc9863 +mem read 000090b2573a1240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000090b2573a1240 01 0009 03 0 [McW(0007,06)] 0000000000000000 +l1d-0 write 000090b2573a1240 00 0009 00 0 [MdW] a6b936148fd55125 +l2 write 0000afd2a9e735c0 01 0005 00 1 [MdW(0026,04)] 5f63bfdb9b9fe352 +l1d-1 evict 0000afd2a9e735c0 00 0007 01 [IcR] 5f63bfdb9b9fe352 +mem read 0000e44fac6af1c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e44fac6af1c0 01 0018 00 0 [McW(0006,07)] 0000000000000000 +l1d-1 write 0000e44fac6af1c0 00 0007 01 0 [MdW] 3b888b23c33eb7f2 +l2 write 0000c2b04eebfcc0 01 0018 01 1 [MdW(0031,06)] aa640df3e7475762 +l1d-0 evict 0000c2b04eebfcc0 00 0003 00 [IcR] aa640df3e7475762 +mem read 0000534534d814c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000534534d814c0 00 0006 02 0 [McW(0002,05)] 0000000000000000 +l1d-0 write 0000534534d814c0 00 0003 00 0 [MdW] ec0af5df425fb3d3 +l1d-0 evict 00006074635435c0 00 0007 00 [IcR] 2d3837be469f574c +l2 write 00006074635435c0 01 0023 00 1 [MdW(0008,01)] 2d3837be469f574c +mem write 00006074635435c0 -1 -001 -1 1 [MdW] 2d3837be469f574c +l2 evict 00006074635435c0 01 0023 00 [IcR(0008,01)] 2d3837be469f574c +mem read 0000dd1751df6340 -1 -001 -1 1 [McW] ca36f02aad46d4dd +l2 read 0000dd1751df6340 01 0011 03 0 [McW(0008,01)] ca36f02aad46d4dd +l1d-0 write 0000dd1751df6340 00 0013 01 0 [MdW] adf40caecba14b7b +mem read 000076807a07f540 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000076807a07f540 01 0017 03 0 [McW(0019,03)] 0000000000000000 +l1d-0 write 000076807a07f540 00 0005 01 0 [MdW] 5e9696a11ad02c72 +l2 write 00006bb87d1516c0 00 0012 02 1 [MdW(0025,05)] 8ad9943922ec9dad +l1d-0 evict 00006bb87d1516c0 00 0011 03 [IcR] 8ad9943922ec9dad +l1d-0 evict 000086890a9e27c0 00 0015 02 [IcR] f1e17884a7f951c6 +l2 write 000086890a9e27c0 01 0005 02 1 [MdW(0031,00)] f1e17884a7f951c6 +mem write 000086890a9e27c0 -1 -001 -1 1 [MdW] f1e17884a7f951c6 +l2 evict 000086890a9e27c0 01 0005 02 [IcR(0031,00)] f1e17884a7f951c6 +mem read 0000adfec432bac0 -1 -001 -1 1 [McW] 59f49d91de97aae8 +l2 read 0000adfec432bac0 01 0000 00 0 [ScW(0031,00)] 59f49d91de97aae8 +l1d-0 read 0000adfec432bac0 00 0011 03 0 [ScR] 59f49d91de97aae8 +l1d-0 read 000046663e4def00 00 0012 01 1 [ScR] e21542a5128e9ecb +l1d-0 read 000091e69e86bc00 00 0000 00 1 [MdW] 1efa6f33b940169e +l1d-0 read 0000b78d2a790900 00 0004 01 1 [MdW] e1b5104d91b6911e +l1d-0 read 0000232a73ed2040 00 0001 00 1 [MdW] f06374fe1abab634 +l1d-0 read 000031e4a2646740 00 0013 03 1 [MdW] ad706d8054dc34c1 +l2 write 00002d9824d83d80 00 0021 01 1 [MdW(0010,07)] 78173ca74385638d +l1d-0 evict 00002d9824d83d80 00 0006 01 [IcR] 78173ca74385638d +l1d-1 evict 0000e0ad5d373580 00 0006 03 [IcR] 5c9bdc6f4e724176 +l2 write 0000e0ad5d373580 00 0008 00 1 [MdW(0031,01)] 5c9bdc6f4e724176 +l2 read 0000e0ad5d373580 00 0008 00 1 [MdW(0031,01)] 5c9bdc6f4e724176 +l1d-0 write 0000e0ad5d373580 00 0006 01 0 [MdW] 032c152e3f44b83d +l2 write 0000d053f6b48540 00 0006 00 1 [MdW(0025,06)] a4fca9060769b884 +l1d-1 evict 0000d053f6b48540 00 0005 01 [IcR] a4fca9060769b884 +l1d-0 evict 000046663e4def00 00 0012 01 [IcR] e21542a5128e9ecb +l2 evict 000046663e4def00 00 0031 02 [IcR(0020,01)] e21542a5128e9ecb +mem read 00005e644f2ad540 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00005e644f2ad540 00 0031 00 0 [McW(0020,01)] 0000000000000000 +l1d-1 write 00005e644f2ad540 00 0005 01 0 [MdW] c7002ca6c9947314 +l2 write 00004c22aaaafa40 01 0021 02 1 [MdW(0006,05)] 2d93d3fed33d69e0 +l1d-0 evict 00004c22aaaafa40 00 0009 01 [IcR] 2d93d3fed33d69e0 +mem write 00007cc1e5f42e40 -1 -001 -1 1 [MdW] 38334869bbcf71a3 +l2 evict 00007cc1e5f42e40 00 0027 00 [IcR(0023,05)] 38334869bbcf71a3 +mem read 000019a40a160240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000019a40a160240 00 0008 02 0 [McW(0023,05)] 0000000000000000 +l1d-0 write 000019a40a160240 00 0009 01 0 [MdW] 49b4646d11db34bf +l2 write 00004e306c77ba80 00 0005 00 1 [MdW(0019,04)] e1a5b4847aabaabd +l1d-1 evict 00004e306c77ba80 00 0010 00 [IcR] e1a5b4847aabaabd +mem read 000011abc3e7fe80 -1 -001 -1 1 [McW] d8e6dec1c6caebeb +l2 read 000011abc3e7fe80 00 0023 01 0 [ScW(0020,04)] d8e6dec1c6caebeb +l1d-1 read 000011abc3e7fe80 00 0010 00 0 [ScR] d8e6dec1c6caebeb +l1d-1 read 00004f46a7d2ea80 00 0010 03 1 [MdW] c6da95c57f5d5cb2 +l2 write 000019e8db69b240 00 0001 01 1 [MdW(0021,04)] e88dd55a43222698 +l1d-1 evict 000019e8db69b240 00 0009 03 [IcR] e88dd55a43222698 +l1d-0 evict 0000908064eef6c0 00 0011 01 [IcR] 63b934d5bef74a33 +mem write 0000908064eef6c0 -1 -001 -1 1 [MdW] 63b934d5bef74a33 +l2 evict 0000908064eef6c0 00 0003 00 [IcR(0000,07)] 63b934d5bef74a33 +mem read 00001ffbc4ff1a40 -1 -001 -1 1 [McW] 3e4f7192e70a1235 +l2 read 00001ffbc4ff1a40 01 0029 01 0 [McW(0000,07)] 3e4f7192e70a1235 +l1d-1 write 00001ffbc4ff1a40 00 0009 03 0 [MdW] ab659f32bcd3041b +l1d-0 read 000000f97fae5cc0 00 0003 01 1 [MdW] fb933a96c629912c +l1d-1 read 0000df0f11cce0c0 00 0003 00 1 [MdW] b0fddea366d09da1 +l2 write 000018d5c901f980 01 0001 00 1 [MdW(0014,00)] 3ab4306e1fd65d85 +l1d-0 evict 000018d5c901f980 00 0006 03 [IcR] 3ab4306e1fd65d85 +l1d-1 evict 0000cb907584dc80 00 0002 03 [IcR] 7d8a4e2a232b5292 +l2 write 0000cb907584dc80 01 0004 01 1 [MdW(0025,07)] 7d8a4e2a232b5292 +mem write 0000cb907584dc80 -1 -001 -1 1 [MdW] 7d8a4e2a232b5292 +l2 evict 0000cb907584dc80 01 0004 01 [IcR(0025,07)] 7d8a4e2a232b5292 +mem read 0000872d66386580 -1 -001 -1 1 [McW] b53b1938ff066c6d +l2 read 0000872d66386580 01 0015 01 0 [ScW(0025,07)] b53b1938ff066c6d +l1d-0 read 0000872d66386580 00 0006 03 0 [ScR] b53b1938ff066c6d +l1d-0 read 0000c86d27a3d040 00 0001 01 1 [MdW] b7fe082719be048b +l1d-0 evict 00005f4478ac3180 00 0006 02 [IcR] 8d9cf30f1c4ad7ad +l2 read 00005f4478ac3180 01 0025 02 1 [McW(0028,06)] 8d9cf30f1c4ad7ad +l1d-1 write 00005f4478ac3180 00 0006 03 0 [MdW] 297f6f72b9a770ce +mem read 0000811bf3b99ac0 -1 -001 -1 1 [McW] 80f59a91c0340835 +l2 read 0000811bf3b99ac0 00 0027 00 0 [ScW(0024,07)] 80f59a91c0340835 +l1d-0 read 0000811bf3b99ac0 00 0011 01 0 [ScR] 80f59a91c0340835 +l1d-0 read 000087a8e7348c80 00 0002 02 1 [MdW] b4727a351299efba +mem read 0000bb75517c9b80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000bb75517c9b80 00 0011 02 0 [McW(0027,05)] 0000000000000000 +l1d-0 write 0000bb75517c9b80 00 0014 00 0 [MdW] 6bde4c0523ccba1a +l2 write 0000d090b8181100 01 0017 01 1 [MdW(0004,03)] 916619a5f0fd52ba +l1d-1 evict 0000d090b8181100 00 0004 01 [IcR] 916619a5f0fd52ba +l1d-1 evict 0000d2e78beabf80 00 0014 00 [IcR] bebed8958f71442d +l2 evict 0000d2e78beabf80 01 0007 01 [IcR(0011,05)] bebed8958f71442d +mem read 0000d08d1f920900 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d08d1f920900 00 0017 00 0 [McW(0011,05)] 0000000000000000 +l1d-1 write 0000d08d1f920900 00 0004 01 0 [MdW] 640f520396727bfb +l1d-1 read 00006980d04a3400 00 0000 03 1 [MdW] 7ef963a07731ba85 +l2 write 0000f081b09aa240 00 0029 02 1 [MdW(0015,03)] 30470642eb039e5b +l1d-1 evict 0000f081b09aa240 00 0009 00 [IcR] 30470642eb039e5b +mem read 000099fa8471ba40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000099fa8471ba40 01 0030 03 0 [McW(0017,04)] 0000000000000000 +l1d-1 write 000099fa8471ba40 00 0009 00 0 [MdW] 9b4f9dd5637abf43 +mem write 000019e8db69b240 -1 -001 -1 1 [MdW] e88dd55a43222698 +l2 evict 000019e8db69b240 00 0001 01 [IcR(0021,04)] e88dd55a43222698 +mem read 0000750cdfd9ed40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000750cdfd9ed40 00 0031 02 0 [McW(0021,04)] 0000000000000000 +l1d-0 write 0000750cdfd9ed40 00 0005 03 0 [MdW] d70a3a98f65651fb +mem read 0000f27b5523ddc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000f27b5523ddc0 00 0026 03 0 [McW(0010,00)] 0000000000000000 +l1d-0 write 0000f27b5523ddc0 00 0007 00 0 [MdW] b8bf2af308099005 +l1d-1 read 000084e1ad47e100 00 0004 02 1 [MdW] 4e8fcbcb2b46a775 +mem read 0000b1312a1f2f80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000b1312a1f2f80 01 0019 00 0 [McW(0001,05)] 0000000000000000 +l1d-0 write 0000b1312a1f2f80 00 0014 01 0 [MdW] db32e76b65f38b73 +l2 write 0000ed89583b9580 00 0018 01 1 [MdW(0024,00)] fb960620c6243046 +l1d-1 evict 0000ed89583b9580 00 0006 00 [IcR] fb960620c6243046 +mem read 00006a5fbc380d80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006a5fbc380d80 01 0031 01 0 [McW(0013,01)] 0000000000000000 +l1d-1 write 00006a5fbc380d80 00 0006 00 0 [MdW] 274f82841cd9a691 +mem read 0000c1e40165d200 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c1e40165d200 00 0030 02 0 [McW(0010,05)] 0000000000000000 +l1d-0 write 0000c1e40165d200 00 0008 03 0 [MdW] a09b433b028212d0 +mem write 0000d090b8181100 -1 -001 -1 1 [MdW] 916619a5f0fd52ba +l2 evict 0000d090b8181100 01 0017 01 [IcR(0004,03)] 916619a5f0fd52ba +mem read 00005584f5f75300 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00005584f5f75300 01 0008 01 0 [McW(0004,03)] 0000000000000000 +l1d-1 write 00005584f5f75300 00 0012 02 0 [MdW] 71726f4857083034 +l1d-0 evict 000095873da506c0 00 0011 00 [IcR] 64a74b273feb83c9 +l2 read 0000b8f3e311dac0 00 0015 00 1 [SdW(0023,00)] e250fdaf6f64e5b7 +l1d-0 read 0000b8f3e311dac0 00 0011 00 0 [ScR] e250fdaf6f64e5b7 +l2 write 000073703a455800 00 0004 02 1 [MdW(0012,02)] 9fc569fe6ed32a01 +l1d-1 evict 000073703a455800 00 0000 00 [IcR] 9fc569fe6ed32a01 +l2 read 000044ca9c649400 00 0030 01 1 [SdW(0031,05)] 58da3250723bdd77 +l1d-1 read 000044ca9c649400 00 0000 00 0 [ScR] 58da3250723bdd77 +l1d-0 read 0000c86d27a3d040 00 0001 01 1 [MdW] b7fe082719be048b +l2 write 0000c1e40165d200 00 0030 02 1 [MdW(0010,05)] a09b433b028212d0 +l2 read 0000c1e40165d200 00 0030 02 1 [SdW(0010,05)] a09b433b028212d0 +l1d-1 read 0000c1e40165d200 00 0008 03 0 [ScR] a09b433b028212d0 +l1d-0 read 0000750cdfd9ed40 00 0005 03 1 [MdW] d70a3a98f65651fb +l2 write 00004be09470fa40 00 0000 00 1 [MdW(0022,06)] d75b3bf448b79ed6 +l1d-1 evict 00004be09470fa40 00 0009 01 [IcR] d75b3bf448b79ed6 +l1d-1 evict 00007a0ccec77d00 00 0004 03 [IcR] c921aab4717f265e +l2 write 00007a0ccec77d00 01 0014 02 1 [MdW(0015,07)] c921aab4717f265e +mem write 00007a0ccec77d00 -1 -001 -1 1 [MdW] c921aab4717f265e +l2 evict 00007a0ccec77d00 01 0014 02 [IcR(0015,07)] c921aab4717f265e +mem read 00002c482fedb640 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00002c482fedb640 01 0027 02 0 [McW(0015,07)] 0000000000000000 +l1d-1 write 00002c482fedb640 00 0009 01 0 [MdW] d967632a5e9ed335 +l1d-1 evict 0000c79b07073dc0 00 0007 02 [IcR] dc55730c9000f4d6 +l2 write 0000c79b07073dc0 01 0017 02 1 [MdW(0013,06)] dc55730c9000f4d6 +mem write 0000c79b07073dc0 -1 -001 -1 1 [MdW] dc55730c9000f4d6 +l2 evict 0000c79b07073dc0 01 0017 02 [IcR(0013,06)] dc55730c9000f4d6 +mem read 000035b33dc0d400 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000035b33dc0d400 00 0003 00 0 [McW(0013,06)] 0000000000000000 +l1d-0 write 000035b33dc0d400 00 0000 02 0 [MdW] b93463c7c6882c2d +mem write 00006cfd00fe8ac0 -1 -001 -1 1 [MdW] b025b1f23a5ed092 +l2 evict 00006cfd00fe8ac0 00 0024 00 [IcR(0006,06)] b025b1f23a5ed092 +mem read 000073f8f4229a80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000073f8f4229a80 01 0005 02 0 [McW(0006,06)] 0000000000000000 +l1d-0 write 000073f8f4229a80 00 0010 03 0 [MdW] d40c3ec8164f1ef5 +l2 read 00002b4766af8580 00 0026 00 1 [SdW(0024,06)] 9f9038d2bb1fa8a4 +l1d-0 read 00002b4766af8580 00 0006 02 0 [ScR] 9f9038d2bb1fa8a4 +l1d-0 read 0000c86d27a3d040 00 0001 01 1 [MdW] b7fe082719be048b +mem read 000066d344c0bd00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000066d344c0bd00 01 0004 01 0 [McW(0009,04)] 0000000000000000 +l1d-1 write 000066d344c0bd00 00 0004 03 0 [MdW] c13adece18482753 +l1d-1 evict 0000015d1559b380 00 0014 02 [IcR] 70b67a115d2588f4 +l2 write 0000015d1559b380 01 0021 01 1 [MdW(0012,06)] 70b67a115d2588f4 +mem write 0000015d1559b380 -1 -001 -1 1 [MdW] 70b67a115d2588f4 +l2 evict 0000015d1559b380 01 0021 01 [IcR(0012,06)] 70b67a115d2588f4 +mem read 0000fad1bdc1cf00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000fad1bdc1cf00 00 0025 02 0 [McW(0012,06)] 0000000000000000 +l1d-0 write 0000fad1bdc1cf00 00 0012 01 0 [MdW] bc47178377830961 +l1d-1 read 000008ededd7fd80 00 0006 01 1 [MdW] 650994f63b533953 +mem read 000002d094c53dc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000002d094c53dc0 01 0004 02 0 [McW(0027,03)] 0000000000000000 +l1d-1 write 000002d094c53dc0 00 0007 02 0 [MdW] a0f76de140ef6fc6 +l2 write 000072629a2641c0 00 0011 00 1 [MdW(0018,06)] cff65dd3605c7fe3 +l1d-1 evict 000072629a2641c0 00 0007 03 [IcR] cff65dd3605c7fe3 +l1d-1 evict 0000e44fac6af1c0 00 0007 01 [IcR] 3b888b23c33eb7f2 +l2 write 0000e44fac6af1c0 01 0018 00 1 [MdW(0006,07)] 3b888b23c33eb7f2 +mem write 0000e44fac6af1c0 -1 -001 -1 1 [MdW] 3b888b23c33eb7f2 +l2 evict 0000e44fac6af1c0 01 0018 00 [IcR(0006,07)] 3b888b23c33eb7f2 +mem read 0000792d5ad259c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000792d5ad259c0 01 0028 02 0 [McW(0006,07)] 0000000000000000 +l1d-1 write 0000792d5ad259c0 00 0007 03 0 [MdW] 04aa8a778a45e9be +l1d-1 evict 00007e3437831800 00 0000 02 [IcR] 6b9d76bb27c3ffa3 +l2 read 000073703a455800 00 0004 02 1 [SdW(0012,02)] 9fc569fe6ed32a01 +l1d-1 read 000073703a455800 00 0000 02 0 [ScR] 9fc569fe6ed32a01 +l1d-1 read 000066d344c0bd00 00 0004 03 1 [MdW] c13adece18482753 +mem read 00007d0902e50f80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007d0902e50f80 00 0023 03 0 [McW(0016,06)] 0000000000000000 +l1d-0 write 00007d0902e50f80 00 0014 02 0 [MdW] 7acc9b6fe084c114 +l2 write 0000c662cc646980 01 0025 00 1 [MdW(0017,03)] cb7a2ac78d75ea1e +l1d-0 evict 0000c662cc646980 00 0006 00 [IcR] cb7a2ac78d75ea1e +l2 read 00009a603343d580 01 0003 00 1 [SdW(0020,03)] 75aae8a3bba85efe +l1d-0 read 00009a603343d580 00 0006 00 0 [ScR] 75aae8a3bba85efe +l1d-0 read 00007fdc5854bb00 00 0012 00 1 [MdW] 5239f66a34ddf76a +l1d-0 read 0000fa408c35ba00 00 0008 02 1 [ScR] 7eec603efdcdea3b +l1d-0 read 00009a603343d580 00 0006 00 1 [ScR] 75aae8a3bba85efe +l1d-0 evict 000031e4a2646740 00 0013 03 [IcR] ad706d8054dc34c1 +l2 write 000031e4a2646740 00 0031 01 1 [MdW(0027,01)] ad706d8054dc34c1 +l2 read 000031e4a2646740 00 0031 01 1 [MdW(0027,01)] ad706d8054dc34c1 +l1d-1 write 000031e4a2646740 00 0013 01 0 [MdW] 613b6d57ad34e57a +l2 write 00001fd6787ba100 00 0007 00 1 [MdW(0010,06)] 6ec02943a5ad4367 +l1d-1 evict 00001fd6787ba100 00 0004 00 [IcR] 6ec02943a5ad4367 +mem read 0000d090b8181100 -1 -001 -1 1 [McW] 916619a5f0fd52ba +l2 read 0000d090b8181100 01 0017 01 0 [ScW(0027,07)] 916619a5f0fd52ba +l1d-1 read 0000d090b8181100 00 0004 00 0 [ScR] 916619a5f0fd52ba +l2 write 000026d8a5685e00 01 0027 01 1 [MdW(0020,05)] ead7b1b4f2b53fe5 +l1d-0 evict 000026d8a5685e00 00 0008 00 [IcR] ead7b1b4f2b53fe5 +mem read 000039a5e213fe00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000039a5e213fe00 01 0022 00 0 [McW(0000,02)] 0000000000000000 +l1d-0 write 000039a5e213fe00 00 0008 00 0 [MdW] e51f77c7f4ba657a +l1d-1 read 000077988753abc0 00 0015 00 1 [ScR] 6a88399658070358 +l1d-0 read 000049afd5e02b40 00 0013 02 1 [MdW] 283b644b3a7a9886 +l1d-0 evict 0000a240433c0100 00 0004 02 [IcR] 3c86a591f8f297ce +l2 write 0000a240433c0100 00 0022 02 1 [MdW(0003,04)] 3c86a591f8f297ce +mem write 0000a240433c0100 -1 -001 -1 1 [MdW] 3c86a591f8f297ce +l2 evict 0000a240433c0100 00 0022 02 [IcR(0003,04)] 3c86a591f8f297ce +mem read 000039a6b2ebcd00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000039a6b2ebcd00 00 0001 00 0 [McW(0003,04)] 0000000000000000 +l1d-0 write 000039a6b2ebcd00 00 0004 03 0 [MdW] d8bc4ce2696fd1ea +l1d-0 evict 000052d61b6d5a00 00 0008 01 [IcR] e775afa1004c0eb4 +l1d-1 evict 000011abc3e7fe80 00 0010 00 [IcR] d8e6dec1c6caebeb +l2 evict 000011abc3e7fe80 00 0023 01 [IcR(0020,04)] d8e6dec1c6caebeb +mem read 00001eab7edaca00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00001eab7edaca00 00 0015 02 0 [McW(0020,04)] 0000000000000000 +l1d-0 write 00001eab7edaca00 00 0008 01 0 [MdW] fd9df1bbcda6b980 +mem read 0000942a1345ef40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000942a1345ef40 01 0026 00 0 [McW(0011,01)] 0000000000000000 +l1d-0 write 0000942a1345ef40 00 0013 03 0 [MdW] b82b61ab6fc7eaf4 +l1d-0 evict 0000c1e40165d200 00 0008 03 [IcR] a09b433b028212d0 +l2 read 000052d61b6d5a00 01 0013 02 1 [ScW(0018,07)] e775afa1004c0eb4 +l1d-0 read 000052d61b6d5a00 00 0008 03 0 [ScR] e775afa1004c0eb4 +l1d-0 evict 000057ef223eb2c0 00 0011 02 [IcR] 2d826de3e09ee626 +mem write 00006e7158c618c0 -1 -001 -1 1 [MdW] 5179e06e6d1134ab +l2 evict 00006e7158c618c0 01 0006 01 [IcR(0012,05)] 5179e06e6d1134ab +mem read 00006a2ba09892c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006a2ba09892c0 01 0018 00 0 [McW(0012,05)] 0000000000000000 +l1d-0 write 00006a2ba09892c0 00 0011 02 0 [MdW] 05f0103b8fa109da +l2 write 0000d08d1f920900 00 0017 00 1 [MdW(0011,05)] 640f520396727bfb +l1d-1 evict 0000d08d1f920900 00 0004 01 [IcR] 640f520396727bfb +l1d-0 evict 0000534534d814c0 00 0003 00 [IcR] ec0af5df425fb3d3 +l2 write 0000534534d814c0 00 0006 02 1 [MdW(0002,05)] ec0af5df425fb3d3 +mem write 0000534534d814c0 -1 -001 -1 1 [MdW] ec0af5df425fb3d3 +l2 evict 0000534534d814c0 00 0006 02 [IcR(0002,05)] ec0af5df425fb3d3 +mem read 00007a0ccec77d00 -1 -001 -1 1 [McW] c921aab4717f265e +l2 read 00007a0ccec77d00 01 0014 02 0 [McW(0002,05)] c921aab4717f265e +l1d-1 write 00007a0ccec77d00 00 0004 01 0 [MdW] 5bb323ab7bff0284 +mem write 0000dcedffd5d840 -1 -001 -1 1 [MdW] df69ebf16388cff7 +l2 evict 0000dcedffd5d840 00 0018 00 [IcR(0001,01)] df69ebf16388cff7 +mem read 0000d8e31ae65a80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d8e31ae65a80 00 0013 02 0 [McW(0001,01)] 0000000000000000 +l1d-1 write 0000d8e31ae65a80 00 0010 00 0 [MdW] 2bedd934c961c1a5 +l1d-0 read 0000c86d27a3d040 00 0001 01 1 [MdW] b7fe082719be048b +l1d-0 read 0000c86d27a3d040 00 0001 01 1 [MdW] b7fe082719be048b +l2 write 000066c650c81940 01 0011 00 1 [MdW(0019,05)] e718d2e1df2aaa8e +l1d-0 evict 000066c650c81940 00 0005 00 [IcR] e718d2e1df2aaa8e +mem read 00002feadfa86d40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00002feadfa86d40 01 0021 01 0 [McW(0004,01)] 0000000000000000 +l1d-0 write 00002feadfa86d40 00 0005 00 0 [MdW] b433bdc2cb8d107d +l1d-0 evict 0000adfec432bac0 00 0011 03 [IcR] 59f49d91de97aae8 +mem read 0000e337ff7072c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e337ff7072c0 01 0030 04 0 [McW(0017,06)] 0000000000000000 +l1d-0 write 0000e337ff7072c0 00 0011 03 0 [MdW] 80fed586eeb4f46f +l1d-0 read 0000e030a3d78740 00 0013 00 1 [MdW] 707af21411b2423c +mem read 0000015d1559b380 -1 -001 -1 1 [McW] 70b67a115d2588f4 +l2 read 0000015d1559b380 01 0021 03 0 [ScW(0027,02)] 70b67a115d2588f4 +l1d-1 read 0000015d1559b380 00 0014 00 0 [ScR] 70b67a115d2588f4 +mem read 00004ea43defa840 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004ea43defa840 01 0010 02 0 [McW(0024,01)] 0000000000000000 +l1d-1 write 00004ea43defa840 00 0001 02 0 [MdW] a75b4d9fd3c53664 +l1d-0 read 00002b4766af8580 00 0006 02 1 [ScR] 9f9038d2bb1fa8a4 +l2 write 00001ad58832f640 00 0009 00 1 [MdW(0007,04)] 796192d34cb6befd +l1d-0 evict 00001ad58832f640 00 0009 03 [IcR] 796192d34cb6befd +l2 read 0000045cce7b2a40 00 0030 00 1 [SdW(0005,02)] 23260c93a8186343 +l1d-0 read 0000045cce7b2a40 00 0009 03 0 [ScR] 23260c93a8186343 +l1d-0 write 0000b78d2a790900 00 0004 01 1 [MdW] 5b34bc35144399f8 +mem write 00004e306c77ba80 -1 -001 -1 1 [MdW] e1a5b4847aabaabd +l2 evict 00004e306c77ba80 00 0005 00 [IcR(0019,04)] e1a5b4847aabaabd +mem read 00006e7158c618c0 -1 -001 -1 1 [McW] 5179e06e6d1134ab +l2 read 00006e7158c618c0 01 0006 01 0 [ScW(0019,04)] 5179e06e6d1134ab +l1d-0 read 00006e7158c618c0 00 0003 00 0 [ScR] 5179e06e6d1134ab +l1d-0 evict 0000c86d27a3d040 00 0001 01 [IcR] b7fe082719be048b +l2 write 0000c86d27a3d040 00 0002 00 1 [MdW(0030,03)] b7fe082719be048b +mem write 0000c86d27a3d040 -1 -001 -1 1 [MdW] b7fe082719be048b +l2 evict 0000c86d27a3d040 00 0002 00 [IcR(0030,03)] b7fe082719be048b +mem read 00003c52cd2e1f40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00003c52cd2e1f40 00 0007 03 0 [McW(0030,03)] 0000000000000000 +l1d-1 write 00003c52cd2e1f40 00 0013 02 0 [MdW] 254c1bb063a0705f +l2 write 0000dd1751df6340 01 0011 03 1 [MdW(0008,01)] adf40caecba14b7b +l1d-0 evict 0000dd1751df6340 00 0013 01 [IcR] adf40caecba14b7b +l1d-0 evict 0000b16b39d563c0 00 0015 03 [IcR] 911f9c450394e00e +l2 write 0000b16b39d563c0 00 0027 01 1 [MdW(0025,02)] 911f9c450394e00e +mem write 0000b16b39d563c0 -1 -001 -1 1 [MdW] 911f9c450394e00e +l2 evict 0000b16b39d563c0 00 0027 01 [IcR(0025,02)] 911f9c450394e00e +mem read 0000333bb344eb40 -1 -001 -1 1 [McW] 2a5c80345e469f5d +l2 read 0000333bb344eb40 01 0001 02 0 [McW(0025,02)] 2a5c80345e469f5d +l1d-0 write 0000333bb344eb40 00 0013 01 0 [MdW] 29afea6d6951b528 +mem read 00002c011c660300 -1 -001 -1 1 [McW] aacfbf30c579992e +l2 read 00002c011c660300 00 0012 01 0 [ScW(0021,07)] aacfbf30c579992e +l1d-0 read 00002c011c660300 00 0012 02 0 [ScR] aacfbf30c579992e +l1d-0 write 00007121fd387e80 00 0010 02 1 [MdW] 537270cd2e4bdbd7 +l1d-1 read 0000d8e31ae65a80 00 0010 00 1 [MdW] 2bedd934c961c1a5 +mem read 000056d4fe3257c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000056d4fe3257c0 01 0024 01 0 [McW(0016,02)] 0000000000000000 +l1d-1 write 000056d4fe3257c0 00 0015 01 0 [MdW] 2d6d78e60e44fcb9 +l2 evict 00007e3437831800 01 0013 00 [IcR(0012,01)] 6b9d76bb27c3ffa3 +mem read 00007600dddbb740 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007600dddbb740 01 0025 03 0 [McW(0012,01)] 0000000000000000 +l1d-1 write 00007600dddbb740 00 0013 03 0 [MdW] 03513838cc9cbb95 +l1d-0 write 0000b78d2a790900 00 0004 01 1 [MdW] aedb2159a3c4680e +l2 write 0000a91cd2b18040 00 0024 01 1 [MdW(0030,07)] 826c97612426419e +l1d-1 evict 0000a91cd2b18040 00 0001 03 [IcR] 826c97612426419e +l1d-0 evict 00006a2ba09892c0 00 0011 02 [IcR] 05f0103b8fa109da +l2 write 00006a2ba09892c0 01 0018 00 1 [MdW(0012,05)] 05f0103b8fa109da +mem write 00006a2ba09892c0 -1 -001 -1 1 [MdW] 05f0103b8fa109da +l2 evict 00006a2ba09892c0 01 0018 00 [IcR(0012,05)] 05f0103b8fa109da +mem read 0000c1182c224c40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c1182c224c40 00 0009 03 0 [McW(0012,05)] 0000000000000000 +l1d-1 write 0000c1182c224c40 00 0001 03 0 [MdW] 3c0c3449cec62aac +l2 write 000057c442889400 01 0025 01 1 [MdW(0002,06)] 3bbaa19fee680867 +l1d-1 evict 000057c442889400 00 0000 01 [IcR] 3bbaa19fee680867 +l1d-0 evict 000091e69e86bc00 00 0000 00 [IcR] 1efa6f33b940169e +l2 write 000091e69e86bc00 01 0002 01 1 [MdW(0006,03)] 1efa6f33b940169e +l2 read 000091e69e86bc00 01 0002 01 1 [MdW(0006,03)] 1efa6f33b940169e +l1d-1 write 000091e69e86bc00 00 0000 01 0 [MdW] 9c0f2328e5a76eca +l1d-0 read 00007b42479583c0 00 0015 01 1 [MdW] 1eb25cab9f3314d6 +l1d-0 read 000039a5e213fe00 00 0008 00 1 [MdW] e51f77c7f4ba657a +mem write 000048777e448ac0 -1 -001 -1 1 [MdW] ebc6d4db1d9b7ded +l2 evict 000048777e448ac0 01 0020 01 [IcR(0006,00)] ebc6d4db1d9b7ded +mem read 0000740d5897eb00 -1 -001 -1 1 [McW] 024d94b6ba577e25 +l2 read 0000740d5897eb00 01 0016 01 0 [ScW(0006,00)] 024d94b6ba577e25 +l1d-0 read 0000740d5897eb00 00 0012 03 0 [ScR] 024d94b6ba577e25 +l1d-0 read 0000c20e6058a4c0 00 0003 03 1 [MdW] 212a13ad0ffcb4e3 +l1d-0 evict 000052d61b6d5a00 00 0008 03 [IcR] e775afa1004c0eb4 +l2 evict 000052d61b6d5a00 01 0013 02 [IcR(0018,07)] e775afa1004c0eb4 +mem read 0000198865cee000 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000198865cee000 01 0015 03 0 [McW(0018,07)] 0000000000000000 +l1d-0 write 0000198865cee000 00 0000 00 0 [MdW] ba3a7c09d4bf6671 +l1d-1 read 0000792d5ad259c0 00 0007 03 1 [MdW] 04aa8a778a45e9be +l2 read 0000b8f3e311dac0 00 0015 00 1 [MdW(0023,00)] e250fdaf6f64e5b7 +l1d-0 write 0000b8f3e311dac0 00 0011 00 0 [MdW] 55a68786c179e4b5 +l2 read 0000afd2a9e735c0 01 0005 00 1 [SdW(0026,04)] 5f63bfdb9b9fe352 +l1d-1 read 0000afd2a9e735c0 00 0007 01 0 [ScR] 5f63bfdb9b9fe352 +l1d-0 read 000000f97fae5cc0 00 0003 01 1 [MdW] fb933a96c629912c +l1d-1 read 00006a36c42b4840 00 0001 01 1 [MdW] f142984e5c1a9135 +l2 write 0000f448c073e880 01 0030 02 1 [MdW(0005,01)] 8c8ab877bdd6b24f +l1d-0 evict 0000f448c073e880 00 0002 01 [IcR] 8c8ab877bdd6b24f +mem write 000011812db55cc0 -1 -001 -1 1 [MdW] b1bf6b2b3542a0b8 +l2 evict 000011812db55cc0 00 0023 00 [IcR(0003,07)] b1bf6b2b3542a0b8 +mem read 0000acd63c8d1880 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000acd63c8d1880 00 0017 01 0 [McW(0003,07)] 0000000000000000 +l1d-0 write 0000acd63c8d1880 00 0002 01 0 [MdW] 7f6838498cb83e72 +l1d-0 write 0000acd63c8d1880 00 0002 01 1 [MdW] fbd72a3c29e95637 +l1d-1 read 000044ca9c649400 00 0000 00 1 [ScR] 58da3250723bdd77 +l1d-0 evict 0000045cce7b2a40 00 0009 03 [IcR] 23260c93a8186343 +mem write 0000045cce7b2a40 -1 -001 -1 1 [MdW] 23260c93a8186343 +l2 evict 0000045cce7b2a40 00 0030 00 [IcR(0005,02)] 23260c93a8186343 +mem read 0000c477f06039c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c477f06039c0 00 0016 00 0 [McW(0005,02)] 0000000000000000 +l1d-0 write 0000c477f06039c0 00 0007 03 0 [MdW] c6426fc9e8124d7f +l1d-1 read 0000f88b44bf5840 00 0001 00 1 [ScR] 5835bf5c1572177d +mem read 000052d61b6d5a00 -1 -001 -1 1 [McW] e775afa1004c0eb4 +l2 read 000052d61b6d5a00 01 0013 00 0 [ScW(0000,06)] e775afa1004c0eb4 +l1d-0 read 000052d61b6d5a00 00 0008 03 0 [ScR] e775afa1004c0eb4 +l2 write 0000136b8cb094c0 01 0030 01 1 [MdW(0010,02)] 93f725490a41ea1d +l1d-0 evict 0000136b8cb094c0 00 0003 02 [IcR] 93f725490a41ea1d +l1d-1 evict 0000d090b8181100 00 0004 00 [IcR] 916619a5f0fd52ba +l2 evict 0000d090b8181100 01 0017 01 [IcR(0027,07)] 916619a5f0fd52ba +mem read 0000534534d814c0 -1 -001 -1 1 [McW] ec0af5df425fb3d3 +l2 read 0000534534d814c0 00 0006 02 0 [ScW(0027,07)] ec0af5df425fb3d3 +l1d-0 read 0000534534d814c0 00 0003 02 0 [ScR] ec0af5df425fb3d3 +l2 write 0000b5edcfe07e40 01 0016 00 1 [MdW(0026,05)] df83c9e60deff983 +l1d-1 evict 0000b5edcfe07e40 00 0009 02 [IcR] df83c9e60deff983 +l1d-0 evict 00009a603343d580 00 0006 00 [IcR] 75aae8a3bba85efe +mem write 00009a603343d580 -1 -001 -1 1 [MdW] 75aae8a3bba85efe +l2 evict 00009a603343d580 01 0003 00 [IcR(0020,03)] 75aae8a3bba85efe +mem read 0000b6ebb009be40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000b6ebb009be40 01 0018 00 0 [McW(0020,03)] 0000000000000000 +l1d-1 write 0000b6ebb009be40 00 0009 02 0 [MdW] 522882a3ec706ec7 +l2 write 0000fad1bdc1cf00 00 0025 02 1 [MdW(0012,06)] bc47178377830961 +l1d-0 evict 0000fad1bdc1cf00 00 0012 01 [IcR] bc47178377830961 +mem write 0000dd1751df6340 -1 -001 -1 1 [MdW] adf40caecba14b7b +l2 evict 0000dd1751df6340 01 0011 03 [IcR(0008,01)] adf40caecba14b7b +mem read 0000d9b688e86700 -1 -001 -1 1 [McW] c311a871a624c062 +l2 read 0000d9b688e86700 00 0000 01 0 [ScW(0008,01)] c311a871a624c062 +l1d-0 read 0000d9b688e86700 00 0012 01 0 [ScR] c311a871a624c062 +l1d-0 write 000019a40a160240 00 0009 01 1 [MdW] 89d7589ee0039216 +l1d-1 read 00007a0ccec77d00 00 0004 01 1 [MdW] 5bb323ab7bff0284 +l1d-1 evict 000075fd554aed80 00 0006 02 [IcR] 96f8c40189bf5862 +l2 write 000075fd554aed80 00 0021 02 1 [MdW(0002,02)] 96f8c40189bf5862 +mem write 000075fd554aed80 -1 -001 -1 1 [MdW] 96f8c40189bf5862 +l2 evict 000075fd554aed80 00 0021 02 [IcR(0002,02)] 96f8c40189bf5862 +mem read 00009aaf14205900 -1 -001 -1 1 [McW] 6e85f64de7e125d5 +l2 read 00009aaf14205900 00 0020 03 0 [ScW(0002,02)] 6e85f64de7e125d5 +l1d-1 read 00009aaf14205900 00 0004 00 0 [ScR] 6e85f64de7e125d5 +l1d-0 read 0000534534d814c0 00 0003 02 1 [ScR] ec0af5df425fb3d3 +l1d-1 evict 0000792d5ad259c0 00 0007 03 [IcR] 04aa8a778a45e9be +l2 write 0000792d5ad259c0 01 0028 02 1 [MdW(0006,07)] 04aa8a778a45e9be +mem write 0000792d5ad259c0 -1 -001 -1 1 [MdW] 04aa8a778a45e9be +l2 evict 0000792d5ad259c0 01 0028 02 [IcR(0006,07)] 04aa8a778a45e9be +mem read 000066e78b358f00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000066e78b358f00 01 0015 04 0 [McW(0006,07)] 0000000000000000 +l1d-1 write 000066e78b358f00 00 0012 03 0 [MdW] 50bcdb51cf5071b0 +l2 read 0000c662cc646980 01 0025 00 1 [SdW(0017,03)] cb7a2ac78d75ea1e +l1d-0 read 0000c662cc646980 00 0006 00 0 [ScR] cb7a2ac78d75ea1e +l2 write 0000ba16e8b8b540 01 0011 01 1 [MdW(0014,02)] 3de612c8e734de20 +l1d-0 evict 0000ba16e8b8b540 00 0005 02 [IcR] 3de612c8e734de20 +mem write 0000ba16e8b8b540 -1 -001 -1 1 [MdW] 3de612c8e734de20 +l2 evict 0000ba16e8b8b540 01 0011 01 [IcR(0014,02)] 3de612c8e734de20 +mem read 000063036c943940 -1 -001 -1 1 [McW] 7fa9ed2821c9db2a +l2 read 000063036c943940 01 0022 01 0 [McW(0014,02)] 7fa9ed2821c9db2a +l1d-0 write 000063036c943940 00 0005 02 0 [MdW] 1ebeb72e217d5d25 +l2 write 00006980d04a3400 00 0009 02 1 [MdW(0000,05)] 7ef963a07731ba85 +l1d-1 evict 00006980d04a3400 00 0000 03 [IcR] 7ef963a07731ba85 +mem read 00007e3437831800 -1 -001 -1 1 [McW] 6b9d76bb27c3ffa3 +l2 read 00007e3437831800 01 0013 02 0 [ScW(0015,06)] 6b9d76bb27c3ffa3 +l1d-1 read 00007e3437831800 00 0000 03 0 [ScR] 6b9d76bb27c3ffa3 +l1d-1 evict 0000015d1559b380 00 0014 00 [IcR] 70b67a115d2588f4 +l2 evict 0000015d1559b380 01 0021 03 [IcR(0027,02)] 70b67a115d2588f4 +mem read 0000d57075091b80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d57075091b80 01 0029 02 0 [McW(0027,02)] 0000000000000000 +l1d-1 write 0000d57075091b80 00 0014 02 0 [MdW] 3dc17f34a5250850 +l2 write 000084e1ad47e100 00 0008 01 1 [MdW(0014,06)] 4e8fcbcb2b46a775 +l1d-1 evict 000084e1ad47e100 00 0004 02 [IcR] 4e8fcbcb2b46a775 +l2 read 00001fd6787ba100 00 0007 00 1 [SdW(0010,06)] 6ec02943a5ad4367 +l1d-1 read 00001fd6787ba100 00 0004 02 0 [ScR] 6ec02943a5ad4367 +l1d-0 write 000063036c943940 00 0005 02 1 [MdW] 00ee9e7cb9678a31 +l2 read 0000a18bf258f2c0 01 0029 00 1 [SdW(0004,04)] 3e7401997ef17cd7 +l1i-0 read 0000a18bf258f2c0 00 0011 01 0 [ScR] 3e7401997ef17cd7 +l1d-0 read 0000fa408c35ba00 00 0008 02 1 [ScR] 7eec603efdcdea3b +l1d-0 read 0000942a1345ef40 00 0013 03 1 [MdW] b82b61ab6fc7eaf4 +l1d-0 read 000063036c943940 00 0005 02 1 [MdW] 00ee9e7cb9678a31 +l1d-1 evict 000073703a455800 00 0000 02 [IcR] 9fc569fe6ed32a01 +l1d-1 evict 00004ea43defa840 00 0001 02 [IcR] a75b4d9fd3c53664 +l2 write 00004ea43defa840 01 0010 02 1 [MdW(0024,01)] a75b4d9fd3c53664 +mem write 00004ea43defa840 -1 -001 -1 1 [MdW] a75b4d9fd3c53664 +l2 evict 00004ea43defa840 01 0010 02 [IcR(0024,01)] a75b4d9fd3c53664 +mem read 0000cfb2dc469800 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000cfb2dc469800 01 0000 02 0 [McW(0024,01)] 0000000000000000 +l1d-1 write 0000cfb2dc469800 00 0000 02 0 [MdW] ec3eea9e61f4addb +l1d-1 evict 0000c9ac457e9140 00 0005 03 [IcR] 246c1639ddc18c48 +l2 write 0000c9ac457e9140 00 0007 02 1 [MdW(0001,02)] 246c1639ddc18c48 +mem write 0000c9ac457e9140 -1 -001 -1 1 [MdW] 246c1639ddc18c48 +l2 evict 0000c9ac457e9140 00 0007 02 [IcR(0001,02)] 246c1639ddc18c48 +mem read 0000bd16375b9000 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000bd16375b9000 00 0030 00 0 [McW(0001,02)] 0000000000000000 +l1d-0 write 0000bd16375b9000 00 0000 03 0 [MdW] 01729ac3b5b468ad +mem read 0000ee65dae92ec0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ee65dae92ec0 00 0019 02 0 [McW(0003,01)] 0000000000000000 +l1d-0 write 0000ee65dae92ec0 00 0011 02 0 [MdW] 330bcb33c3315b47 +l1d-0 evict 00006e7158c618c0 00 0003 00 [IcR] 5179e06e6d1134ab +l2 read 00009a461a9864c0 00 0019 00 1 [MdW(0024,03)] ad2c5b4dca99e317 +l1d-0 write 00009a461a9864c0 00 0003 00 0 [MdW] 8b973d84cfd7dcc4 +l2 write 000091e69e86bc00 01 0002 01 1 [MdW(0006,03)] 9c0f2328e5a76eca +l1d-1 evict 000091e69e86bc00 00 0000 01 [IcR] 9c0f2328e5a76eca +l2 read 000073703a455800 00 0004 02 1 [SdW(0012,02)] 9fc569fe6ed32a01 +l1d-1 read 000073703a455800 00 0000 01 0 [ScR] 9fc569fe6ed32a01 +l2 write 00006afec145fe80 00 0006 01 1 [MdW(0015,00)] 36968b104d056d30 +l1d-1 evict 00006afec145fe80 00 0010 01 [IcR] 36968b104d056d30 +l1d-0 evict 0000af4203bc4640 00 0009 02 [IcR] 8ec0b565fb3202a0 +l2 write 0000af4203bc4640 00 0024 02 1 [MdW(0018,05)] 8ec0b565fb3202a0 +mem write 0000af4203bc4640 -1 -001 -1 1 [MdW] 8ec0b565fb3202a0 +l2 evict 0000af4203bc4640 00 0024 02 [IcR(0018,05)] 8ec0b565fb3202a0 +mem read 000011abc3e7fe80 -1 -001 -1 1 [McW] d8e6dec1c6caebeb +l2 read 000011abc3e7fe80 00 0023 00 0 [ScW(0018,05)] d8e6dec1c6caebeb +l1d-1 read 000011abc3e7fe80 00 0010 01 0 [ScR] d8e6dec1c6caebeb +mem read 0000015d1559b380 -1 -001 -1 1 [McW] 70b67a115d2588f4 +l2 read 0000015d1559b380 01 0021 03 0 [ScW(0030,05)] 70b67a115d2588f4 +l1d-1 read 0000015d1559b380 00 0014 00 0 [ScR] 70b67a115d2588f4 +l2 write 0000c20e6058a4c0 00 0004 01 1 [MdW(0009,05)] 212a13ad0ffcb4e3 +l1d-0 evict 0000c20e6058a4c0 00 0003 03 [IcR] 212a13ad0ffcb4e3 +l1d-0 evict 0000acd63c8d1880 00 0002 01 [IcR] fbd72a3c29e95637 +l2 write 0000acd63c8d1880 00 0017 01 1 [MdW(0003,07)] fbd72a3c29e95637 +mem write 0000acd63c8d1880 -1 -001 -1 1 [MdW] fbd72a3c29e95637 +l2 evict 0000acd63c8d1880 00 0017 01 [IcR(0003,07)] fbd72a3c29e95637 +mem read 000093de24a554c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000093de24a554c0 01 0006 02 0 [McW(0003,07)] 0000000000000000 +l1d-0 write 000093de24a554c0 00 0003 03 0 [MdW] 12a65fcc0712d3a6 +l1d-0 evict 00007fdc5854bb00 00 0012 00 [IcR] 5239f66a34ddf76a +l2 write 00007fdc5854bb00 00 0007 01 1 [MdW(0031,02)] 5239f66a34ddf76a +mem write 00007fdc5854bb00 -1 -001 -1 1 [MdW] 5239f66a34ddf76a +l2 evict 00007fdc5854bb00 00 0007 01 [IcR(0031,02)] 5239f66a34ddf76a mem read 00006cf58254d780 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00006cf58254d780 01 0007 01 0 [McW(0007,05)] 0000000000000000 -l1d-0 write 00006cf58254d780 00 0014 02 0 [MdW] cd2840a4925c9683 -l1d-0 read 00009a603343d580 00 0006 02 1 [ScR] e4bd1c98fd7a6b9f -l1d-1 read 0000c97dfb94fd80 00 0006 03 1 [ScR] 866e8372e740908a -l1d-0 read 000049afd5e02b40 00 0013 00 1 [MdW] 0d73762cec20ec64 -l1d-0 read 00004f46a7d2ea80 00 0010 02 1 [ScR] d8a5addb7e65e806 -l1d-0 read 000063036c943940 00 0005 03 1 [MdW] fb71c5cb4335e2f5 -l2 write 00002814eea2cf80 00 0019 01 1 [MdW(0005,01)] c6da95c57f5d5cb2 -l1d-1 evict 00002814eea2cf80 00 0014 03 [IcR] c6da95c57f5d5cb2 -l2 read 0000bb75517c9b80 01 0029 00 1 [MdW(0007,00)] 78786a2e713dca43 -l1d-1 write 0000bb75517c9b80 00 0014 03 0 [MdW] f837c18c35888bd3 -l2 write 00001cff7cd11500 01 0028 00 1 [MdW(0028,02)] 6b0180ad5bfc6aa3 -l1d-1 evict 00001cff7cd11500 00 0004 00 [IcR] 6b0180ad5bfc6aa3 -l2 read 00006a25c963e900 00 0028 00 1 [SdW(0018,01)] ae43245b0fd92af4 -l1d-1 read 00006a25c963e900 00 0004 00 0 [ScR] ae43245b0fd92af4 -l1d-1 read 0000fc3d1a588d00 00 0004 02 1 [ScR] 20d6291b6fceeaa3 -l1d-1 read 0000bb75517c9b80 00 0014 03 1 [MdW] f837c18c35888bd3 -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] 47f09fd7ab0208ac -l1d-0 read 0000c477f06039c0 00 0007 03 1 [ScR] 07a43d1b05d30814 -l1d-0 read 000063036c943940 00 0005 03 1 [MdW] fb71c5cb4335e2f5 -l2 write 0000a462f1bb1500 00 0029 01 1 [MdW(0019,06)] 2f9d5892b243a4f9 -l1d-0 evict 0000a462f1bb1500 00 0004 03 [IcR] 2f9d5892b243a4f9 -mem read 0000d090b8181100 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000d090b8181100 01 0017 03 0 [McW(0021,07)] 0000000000000000 -l1d-0 write 0000d090b8181100 00 0004 03 0 [MdW] 600a65175372b60f -l1i-1 read 0000ccd4a1523d80 00 0006 00 1 [ScR] 2e58730cb2f43705 -l1d-0 write 000065dc0cb58f00 00 0012 01 1 [MdW] c1826e64b02c93c3 -l1d-0 read 00003174403caf00 00 0012 00 1 [MdW] e27dc8a846a78e56 +l2 read 00006cf58254d780 01 0007 01 0 [McW(0031,02)] 0000000000000000 +l1d-0 write 00006cf58254d780 00 0014 03 0 [MdW] e82037124cab05c4 +l2 write 0000c194bc8acb40 01 0003 01 1 [MdW(0016,00)] b2a2ff4da4c2c04b +l1d-1 evict 0000c194bc8acb40 00 0013 00 [IcR] b2a2ff4da4c2c04b +mem read 00001d61aeb20340 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00001d61aeb20340 00 0003 02 0 [McW(0027,00)] 0000000000000000 +l1d-1 write 00001d61aeb20340 00 0013 00 0 [MdW] c9614f7e7125d893 +l2 write 000066d344c0bd00 01 0004 01 1 [MdW(0009,04)] c13adece18482753 +l1d-1 evict 000066d344c0bd00 00 0004 03 [IcR] c13adece18482753 +l2 read 000084e1ad47e100 00 0008 01 1 [MdW(0014,06)] 4e8fcbcb2b46a775 +l1d-1 write 000084e1ad47e100 00 0004 03 0 [MdW] 82e50a848d30e308 +l1d-1 read 0000cfb2dc469800 00 0000 02 1 [MdW] ec3eea9e61f4addb +l2 write 0000e0ad5d373580 00 0008 00 1 [MdW(0031,01)] 032c152e3f44b83d +l1d-0 evict 0000e0ad5d373580 00 0006 01 [IcR] 032c152e3f44b83d +mem read 0000a6f9f0803d80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000a6f9f0803d80 00 0010 02 0 [McW(0023,06)] 0000000000000000 +l1d-0 write 0000a6f9f0803d80 00 0006 01 0 [MdW] cd2840a4925c9683 +l1d-0 read 00007121fd387e80 00 0010 02 1 [MdW] 537270cd2e4bdbd7 +mem read 0000b58c65e56d80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000b58c65e56d80 00 0013 03 0 [McW(0001,03)] 0000000000000000 +l1d-1 write 0000b58c65e56d80 00 0006 02 0 [MdW] 64bfc88438d208ec +l1d-1 read 000008ededd7fd80 00 0006 01 1 [MdW] 650994f63b533953 +l1d-0 evict 0000872d66386580 00 0006 03 [IcR] b53b1938ff066c6d +mem read 0000e461479ae980 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e461479ae980 00 0021 02 0 [McW(0021,06)] 0000000000000000 +l1d-0 write 0000e461479ae980 00 0006 03 0 [MdW] f44a40aa263a924f +l2 write 00005f4478ac3180 01 0025 02 1 [MdW(0028,06)] 297f6f72b9a770ce +l1d-1 evict 00005f4478ac3180 00 0006 03 [IcR] 297f6f72b9a770ce +mem write 0000df16e7f1d400 -1 -001 -1 1 [MdW] a67a11e1cf49b77b +l2 evict 0000df16e7f1d400 00 0028 01 [IcR(0012,07)] a67a11e1cf49b77b +mem read 000075fd554aed80 -1 -001 -1 1 [McW] 96f8c40189bf5862 +l2 read 000075fd554aed80 01 0028 02 0 [ScW(0012,07)] 96f8c40189bf5862 +l1d-1 read 000075fd554aed80 00 0006 03 0 [ScR] 96f8c40189bf5862 +l2 write 00007a0ccec77d00 01 0014 02 1 [MdW(0002,05)] 5bb323ab7bff0284 +l1d-1 evict 00007a0ccec77d00 00 0004 01 [IcR] 5bb323ab7bff0284 +l2 evict 0000872d66386580 01 0015 01 [IcR(0025,07)] b53b1938ff066c6d +mem read 00008aa559520900 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00008aa559520900 01 0024 02 0 [McW(0025,07)] 0000000000000000 +l1d-1 write 00008aa559520900 00 0004 01 0 [MdW] 4d6a292f5a35e768 +l2 write 0000219accc59ec0 01 0014 01 1 [MdW(0005,06)] eb4acfe9e698c78e +l1d-1 evict 0000219accc59ec0 00 0011 00 [IcR] eb4acfe9e698c78e +mem read 000057907407aac0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000057907407aac0 00 0008 03 0 [McW(0004,07)] 0000000000000000 +l1d-1 write 000057907407aac0 00 0011 00 0 [MdW] 4143fd547c0ab069 +mem write 0000fe2140a6f980 -1 -001 -1 1 [MdW] 4e2ed36498da5bfc +l2 evict 0000fe2140a6f980 01 0009 00 [IcR(0009,06)] 4e2ed36498da5bfc +mem read 00007a76f01141c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007a76f01141c0 00 0009 04 0 [McW(0009,06)] 0000000000000000 +l1d-1 write 00007a76f01141c0 00 0007 03 0 [MdW] 4f7e9691e6e6e9e9 +l1d-0 read 000052d61b6d5a00 00 0008 03 1 [ScR] e775afa1004c0eb4 +l1d-0 read 0000fa408c35ba00 00 0008 02 1 [ScR] 7eec603efdcdea3b +l1d-0 evict 00002b4766af8580 00 0006 02 [IcR] 9f9038d2bb1fa8a4 +l1d-0 evict 0000b1312a1f2f80 00 0014 01 [IcR] db32e76b65f38b73 +l2 write 0000b1312a1f2f80 01 0019 00 1 [MdW(0001,05)] db32e76b65f38b73 +mem write 0000b1312a1f2f80 -1 -001 -1 1 [MdW] db32e76b65f38b73 +l2 evict 0000b1312a1f2f80 01 0019 00 [IcR(0001,05)] db32e76b65f38b73 +mem read 00000701e403e980 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00000701e403e980 01 0024 03 0 [McW(0001,05)] 0000000000000000 +l1d-0 write 00000701e403e980 00 0006 02 0 [MdW] a2b07763fc09116e +l1d-0 evict 0000e030a3d78740 00 0013 00 [IcR] 707af21411b2423c +l2 write 0000e030a3d78740 01 0010 01 1 [MdW(0010,04)] 707af21411b2423c +mem write 0000e030a3d78740 -1 -001 -1 1 [MdW] 707af21411b2423c +l2 evict 0000e030a3d78740 01 0010 01 [IcR(0010,04)] 707af21411b2423c mem read 000061848951ebc0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000061848951ebc0 01 0028 03 0 [McW(0006,06)] 0000000000000000 -l1d-0 write 000061848951ebc0 00 0015 02 0 [MdW] 17a334d5e0225251 -l1d-1 read 000043ca5c07b240 00 0009 03 1 [ScR] 0b03165c64b25b52 -l2 write 0000c79b07073dc0 01 0017 01 1 [MdW(0017,05)] 31397f4080bef586 -l1d-0 evict 0000c79b07073dc0 00 0007 00 [IcR] 31397f4080bef586 -l2 read 00004813c834cdc0 01 0021 01 1 [SdW(0003,03)] 943fd65d38c4092e -l1d-0 read 00004813c834cdc0 00 0007 00 0 [ScR] 943fd65d38c4092e -l1d-1 read 000043ca5c07b240 00 0009 03 1 [ScR] 0b03165c64b25b52 -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] f278520dc139b5ed -l2 read 00007d0902e50f80 01 0030 02 1 [MdW(0022,04)] cb58c668f7241e9f -l1d-1 write 00007d0902e50f80 00 0014 00 0 [MdW] 0c06578e52110426 -l1d-0 write 000040f7755c2ac0 00 0011 03 1 [MdW] 23c94fe36f11e191 -l1d-1 write 0000095a29bb9340 00 0013 00 1 [MdW] b31520207b4d7d77 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l1d-1 read 0000bb75517c9b80 00 0014 03 1 [MdW] f837c18c35888bd3 -l1d-1 read 000025cc871abf00 00 0012 00 1 [MdW] a36cd516217674c5 -l1d-1 evict 00006d9316738f80 00 0014 02 [IcR] 6700e6b15b3571ec -l2 read 0000015d1559b380 01 0021 02 1 [MdW(0016,01)] 042dac84e3de4101 -l1d-1 write 0000015d1559b380 00 0014 02 0 [MdW] 282232be54b9c054 -l1d-0 evict 000073703a455800 00 0000 03 [IcR] 84b896eee0ea8bfb -l2 read 000035b33dc0d400 00 0003 00 1 [SdW(0024,03)] b3fa26fb2bb1072d -l1d-0 read 000035b33dc0d400 00 0000 03 0 [ScR] b3fa26fb2bb1072d -l1d-0 read 00001ad58832f640 00 0009 03 1 [MdW] f1d026232e24dd48 -l2 write 00003bd14ab212c0 01 0008 00 1 [MdW(0028,01)] 338c39d468604fc8 -l1d-1 evict 00003bd14ab212c0 00 0011 01 [IcR] 338c39d468604fc8 -l2 read 0000908064eef6c0 01 0001 00 1 [SdW(0001,01)] f840ce71fef19440 -l1d-1 read 0000908064eef6c0 00 0011 01 0 [ScR] f840ce71fef19440 -l1d-1 read 000013d16c815400 00 0000 00 1 [MdW] 7d923acd36856c0b -l1d-0 read 0000534534d814c0 00 0003 00 1 [MdW] 4c19d65a8afebebd -l1d-0 read 00007a0ccec77d00 00 0004 00 1 [ScR] 603f902534bdd00d -l1i-1 read 00006980d04a3400 00 0000 00 1 [ScR] 7e87cb6b5a7c5b20 -l1d-0 write 000057ef223eb2c0 00 0011 00 1 [MdW] 5cf1dee5ec17ee31 -l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] c1826e64b02c93c3 -l1d-1 write 00002d9824d83d80 00 0006 01 1 [MdW] 4df2eea104e63fd7 -l2 write 00001b6fc10d9840 00 0027 03 1 [MdW(0007,03)] 7f5c255dd3c361e0 -l1d-0 evict 00001b6fc10d9840 00 0001 03 [IcR] 7f5c255dd3c361e0 -mem read 00003c43977d6040 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00003c43977d6040 00 0020 03 0 [McW(0024,06)] 0000000000000000 -l1d-0 write 00003c43977d6040 00 0001 03 0 [MdW] 4230a216503f3385 -l2 write 00000b438aedb2c0 00 0027 00 1 [MdW(0016,00)] f960a061cdcbd97f -l1d-1 evict 00000b438aedb2c0 00 0011 02 [IcR] f960a061cdcbd97f -l2 read 00003bd14ab212c0 01 0008 00 1 [SdW(0028,01)] 338c39d468604fc8 -l1d-1 read 00003bd14ab212c0 00 0011 02 0 [ScR] 338c39d468604fc8 -l1d-1 read 0000da7033404e80 00 0010 02 1 [MdW] def0d5cb9fb03510 -l1d-1 read 0000c97dfb94fd80 00 0006 03 1 [ScR] 866e8372e740908a -l1d-1 evict 0000ed89583b9580 00 0006 00 [IcR] 6c07dacfdb56821e -l2 read 0000ed89583b9580 00 0018 00 1 [MdW(0002,00)] 6c07dacfdb56821e -l1d-0 write 0000ed89583b9580 00 0006 03 0 [MdW] 7585da8db36b9e1d -l2 write 0000d6eae7df0a40 01 0025 01 1 [MdW(0027,03)] 1bb178ab1f40b28c -l1d-0 evict 0000d6eae7df0a40 00 0009 01 [IcR] 1bb178ab1f40b28c -l2 read 0000ade5546e9640 00 0019 02 1 [SdW(0011,02)] 5209bc09f2897536 -l1d-0 read 0000ade5546e9640 00 0009 01 0 [ScR] 5209bc09f2897536 -l1d-0 read 00004dcada9f52c0 00 0011 01 1 [MdW] df2509b29fb62744 -l1d-0 read 0000cf04a7d0b7c0 00 0015 01 1 [MdW] 640faa68409ae8f8 -l2 read 00004813c834cdc0 01 0021 01 1 [MdW(0003,03)] 943fd65d38c4092e -l1d-0 write 00004813c834cdc0 00 0007 00 0 [MdW] 0af84804aa6dd58b -l1d-1 evict 0000803bdde89900 00 0004 01 [IcR] 4149d9c5522ff4aa -l2 read 00001cff7cd11500 01 0028 00 1 [SdW(0028,02)] 6b0180ad5bfc6aa3 -l1d-1 read 00001cff7cd11500 00 0004 01 0 [ScR] 6b0180ad5bfc6aa3 -l2 write 000095996286e640 01 0013 03 1 [MdW(0018,05)] f1b509cda89b9e6b -l1d-1 evict 000095996286e640 00 0009 00 [IcR] f1b509cda89b9e6b -mem read 000056fd61295e40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000056fd61295e40 01 0024 02 0 [McW(0008,04)] 0000000000000000 -l1d-1 write 000056fd61295e40 00 0009 00 0 [MdW] eb4618272fa8ed80 -l1d-1 evict 00005d35d68c9380 00 0014 01 [IcR] 51bed99eb8f604e9 -l2 read 00002814eea2cf80 00 0019 01 1 [SdW(0005,01)] c6da95c57f5d5cb2 -l1d-1 read 00002814eea2cf80 00 0014 01 0 [ScR] c6da95c57f5d5cb2 -l1d-1 write 0000792d5ad259c0 00 0007 01 1 [MdW] 3221ebd848868f90 -l2 write 000018c9dccfc840 01 0020 00 1 [MdW(0021,00)] 83b569fd7e2f93d0 -l1d-0 evict 000018c9dccfc840 00 0001 00 [IcR] 83b569fd7e2f93d0 -mem read 0000232a73ed2040 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000232a73ed2040 00 0013 03 0 [McW(0029,06)] 0000000000000000 -l1d-0 write 0000232a73ed2040 00 0001 00 0 [MdW] bcf94c89f64696f7 -l1d-1 read 0000136b8cb094c0 00 0003 00 1 [ScR] 4d51034c84140818 -l1d-0 read 000019a40a160240 00 0009 02 1 [ScR] 003301b2273c5e28 -mem read 0000cb907584dc80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000cb907584dc80 00 0005 01 0 [McW(0027,05)] 0000000000000000 -l1d-1 write 0000cb907584dc80 00 0002 02 0 [MdW] c2b3bde410eeed99 -l1d-1 read 0000792d5ad259c0 00 0007 01 1 [MdW] 3221ebd848868f90 -l2 write 0000c5d1227ee6c0 00 0001 01 1 [MdW(0002,07)] 37aa7cac493fcf20 -l1d-1 evict 0000c5d1227ee6c0 00 0011 03 [IcR] 37aa7cac493fcf20 -l2 read 00000b438aedb2c0 00 0027 00 1 [SdW(0016,00)] f960a061cdcbd97f -l1d-1 read 00000b438aedb2c0 00 0011 03 0 [ScR] f960a061cdcbd97f -l1d-1 read 00007b42479583c0 00 0015 00 1 [MdW] 1fca5feae77517e8 -l2 write 0000d1a495bc3400 00 0007 00 1 [MdW(0012,04)] b09506206c0eb875 -l1d-1 evict 0000d1a495bc3400 00 0000 03 [IcR] b09506206c0eb875 -mem read 0000e799028df400 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000e799028df400 01 0015 02 0 [McW(0026,01)] 0000000000000000 -l1d-1 write 0000e799028df400 00 0000 03 0 [MdW] bc6691b91abbe790 -l1d-0 read 0000a65bf8171680 00 0010 01 1 [MdW] e92d6a6544b2e04a -l1d-1 read 0000883768b6a3c0 00 0015 01 1 [MdW] f278520dc139b5ed -l1d-1 read 0000015d1559b380 00 0014 02 1 [MdW] 282232be54b9c054 -l1d-0 read 00009a603343d580 00 0006 02 1 [ScR] e4bd1c98fd7a6b9f -l2 read 00003bd14ab212c0 01 0008 00 1 [MdW(0028,01)] 338c39d468604fc8 -l1d-1 write 00003bd14ab212c0 00 0011 02 0 [MdW] 7d5fd4c9e5820a28 -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l1i-1 read 0000ccd4a1523d80 00 0006 00 1 [ScR] 2e58730cb2f43705 -l1d-0 write 0000ffac00a71b80 00 0014 01 1 [MdW] a61665acf2792f66 -l1d-1 write 0000095a29bb9340 00 0013 00 1 [MdW] cd5095ef84be60be -l1d-1 read 00005a86b1c246c0 00 0011 00 1 [MdW] a4ed9aaf1420592d -l2 write 0000fc0f3e0e0240 00 0013 02 1 [MdW(0011,04)] 297f6f72b9a770ce -l1d-1 evict 0000fc0f3e0e0240 00 0009 02 [IcR] 297f6f72b9a770ce -mem read 0000d3afe5d1ca40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000d3afe5d1ca40 01 0001 01 0 [McW(0007,06)] 0000000000000000 -l1d-1 write 0000d3afe5d1ca40 00 0009 02 0 [MdW] bb3721a1166e6ecf -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] 47f09fd7ab0208ac -l1d-0 write 0000534534d814c0 00 0003 00 1 [MdW] a76d1bb85a4f194a -l1d-0 read 000049afd5e02b40 00 0013 00 1 [MdW] 0d73762cec20ec64 -l1d-0 read 0000f66f9acff100 00 0004 02 1 [ScR] c7f5ae053c4b54cf -l2 read 00002814eea2cf80 00 0019 01 1 [MdW(0005,01)] c6da95c57f5d5cb2 -l1d-1 write 00002814eea2cf80 00 0014 01 0 [MdW] 1d6b75778fa46c62 -l2 write 0000fa4efe47a000 01 0026 02 1 [MdW(0011,05)] df2c433ed877cb6c -l1d-0 evict 0000fa4efe47a000 00 0000 02 [IcR] df2c433ed877cb6c -l2 read 00003f232f338000 01 0030 00 1 [SdW(0018,00)] a2d413acae95e3cd -l1d-0 read 00003f232f338000 00 0000 02 0 [ScR] a2d413acae95e3cd -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] 47f09fd7ab0208ac -l2 read 0000012233313580 01 0002 00 1 [SdW(0006,01)] 0aa2d7ab5dfce8cc -l1d-1 read 0000012233313580 00 0006 00 0 [ScR] 0aa2d7ab5dfce8cc -l1d-1 evict 00007a0ccec77d00 00 0004 03 [IcR] 603f902534bdd00d -l2 read 000039a6b2ebcd00 00 0001 00 1 [SdW(0009,00)] 92f3c8ee96a39ad8 -l1d-1 read 000039a6b2ebcd00 00 0004 03 0 [ScR] 92f3c8ee96a39ad8 -l1d-0 read 000057ef223eb2c0 00 0011 00 1 [MdW] 5cf1dee5ec17ee31 -l2 read 00003be6b01765c0 01 0029 01 1 [MdW(0022,02)] b07105a9381db806 -l1d-0 write 00003be6b01765c0 00 0007 02 0 [MdW] 72c7e34d716ce2c3 -l1d-0 read 00009a603343d580 00 0006 02 1 [ScR] e4bd1c98fd7a6b9f -l1d-1 evict 0000c20e6058a4c0 00 0003 02 [IcR] 9d29d9cac786a1e3 -l2 read 000050012c6eb8c0 00 0006 02 1 [SdW(0008,02)] 8d505e21d3399d55 -l1d-1 read 000050012c6eb8c0 00 0003 02 0 [ScR] 8d505e21d3399d55 -l1d-1 read 00008e48523b3e80 00 0010 01 1 [MdW] 665d67bf32230465 -l1d-1 read 0000bb75517c9b80 00 0014 03 1 [MdW] f837c18c35888bd3 -l1d-1 read 0000fe371a542400 00 0000 01 1 [MdW] 0968e82e4bb02b18 -l1d-1 read 0000e799028df400 00 0000 03 1 [MdW] bc6691b91abbe790 -l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] c1826e64b02c93c3 -l2 write 000042cda8d19c00 01 0018 01 1 [MdW(0016,02)] bf4e3ef9cf917b73 -l1d-0 evict 000042cda8d19c00 00 0000 00 [IcR] bf4e3ef9cf917b73 -l2 read 0000fa4efe47a000 01 0026 02 1 [MdW(0011,05)] df2c433ed877cb6c -l1d-0 write 0000fa4efe47a000 00 0000 00 0 [MdW] 3d554e47c9a0c003 -l1d-1 read 0000443a27100c40 00 0001 03 1 [MdW] 3be61c8763ba8f77 -l1d-0 read 0000ade5546e9640 00 0009 01 1 [ScR] 5209bc09f2897536 -l1d-1 read 000043ca5c07b240 00 0009 03 1 [ScR] 0b03165c64b25b52 -l1d-0 read 0000c477f06039c0 00 0007 03 1 [ScR] 07a43d1b05d30814 -l1d-1 read 0000d99af3531440 00 0001 00 1 [MdW] dbc90c66dea50e65 -l1d-1 write 00002d9824d83d80 00 0006 01 1 [MdW] afb4bb99ec9cb2da -l1d-0 evict 00001fd6787ba100 00 0004 01 [IcR] df1b827b0bffd943 -l2 read 0000b78d2a790900 00 0023 01 1 [MdW(0000,00)] 4b286894f1b254a4 -l1d-0 write 0000b78d2a790900 00 0004 01 0 [MdW] efe31bf8541a673f -l2 read 0000605ba6057540 01 0008 01 1 [SdW(0002,02)] cfc80859e336b176 -l1d-1 read 0000605ba6057540 00 0005 03 0 [ScR] cfc80859e336b176 -l2 write 00007d0902e50f80 01 0030 02 1 [MdW(0022,04)] 0c06578e52110426 -l1d-1 evict 00007d0902e50f80 00 0014 00 [IcR] 0c06578e52110426 -l2 read 000092e2f479cf80 00 0031 01 1 [MdW(0022,05)] d17309df336a0e01 -l1d-1 write 000092e2f479cf80 00 0014 00 0 [MdW] 953e17bdbbc42e90 -l1d-0 evict 0000033616c7e540 00 0005 01 [IcR] 505e4c2fc450e2ad -mem read 0000205a116a7d40 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000205a116a7d40 01 0031 03 0 [McW(0005,07)] 0000000000000000 -l1d-0 write 0000205a116a7d40 00 0005 01 0 [MdW] a4864eeab5efaace -l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] c1826e64b02c93c3 -l1d-1 read 00006a25c963e900 00 0004 00 1 [ScR] ae43245b0fd92af4 -l2 write 000040f7755c2ac0 01 0018 00 1 [MdW(0027,02)] 23c94fe36f11e191 -l2 read 000040f7755c2ac0 01 0018 00 1 [SdW(0027,02)] 23c94fe36f11e191 -l1i-0 read 000040f7755c2ac0 00 0011 00 0 [ScR] 23c94fe36f11e191 -l2 read 00001cff7cd11500 01 0028 00 1 [SdW(0028,02)] 6b0180ad5bfc6aa3 -l1i-1 read 00001cff7cd11500 00 0004 00 0 [ScR] 6b0180ad5bfc6aa3 -l1d-1 read 0000012233313580 00 0006 00 1 [ScR] 0aa2d7ab5dfce8cc -l2 write 0000c1546879c240 00 0000 01 1 [MdW(0003,07)] 000a8f23aa537d49 -l1d-1 evict 0000c1546879c240 00 0009 01 [IcR] 000a8f23aa537d49 -l2 read 000095996286e640 01 0013 03 1 [SdW(0018,05)] f1b509cda89b9e6b -l1d-1 read 000095996286e640 00 0009 01 0 [ScR] f1b509cda89b9e6b -l1d-0 write 000073f8f4229a80 00 0010 03 1 [MdW] 31d6fa0a53f18b41 -l2 read 000039a6b2ebcd00 00 0001 00 1 [MdW(0009,00)] 92f3c8ee96a39ad8 -l1d-1 write 000039a6b2ebcd00 00 0004 03 0 [MdW] eef3a60d9033465c -l1d-1 read 0000b16b39d563c0 00 0015 03 1 [MdW] c4e2fe434591c591 -l1d-0 read 00000701e403e980 00 0006 01 1 [ScR] d91c439474d9ea75 -l2 write 00006074635435c0 00 0007 02 1 [MdW(0006,05)] 427f5edbe26fb649 -l1d-0 evict 00006074635435c0 00 0007 01 [IcR] 427f5edbe26fb649 -l2 write 0000792d5ad259c0 00 0024 01 1 [MdW(0030,02)] 3221ebd848868f90 -l2 read 0000792d5ad259c0 00 0024 01 1 [SdW(0030,02)] 3221ebd848868f90 -l1d-0 read 0000792d5ad259c0 00 0007 01 0 [ScR] 3221ebd848868f90 -l1d-0 read 00003c43977d6040 00 0001 03 1 [MdW] 4230a216503f3385 -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] afb4bb99ec9cb2da -l1d-1 evict 0000fc3d1a588d00 00 0004 02 [IcR] 20d6291b6fceeaa3 -l2 read 0000803bdde89900 00 0008 01 1 [SdW(0031,00)] 4149d9c5522ff4aa -l1d-1 read 0000803bdde89900 00 0004 02 0 [ScR] 4149d9c5522ff4aa -l2 write 000087a8e7348c80 01 0019 00 1 [MdW(0010,01)] 06d5c4a0dca92e1a -l1d-0 evict 000087a8e7348c80 00 0002 02 [IcR] 06d5c4a0dca92e1a -l2 read 0000418397142480 01 0006 01 1 [MdW(0004,00)] d5ca42501735883b -l1d-0 write 0000418397142480 00 0002 02 0 [MdW] 4230466cc357474e -l1d-1 read 0000b16b39d563c0 00 0015 03 1 [MdW] c4e2fe434591c591 -l1d-0 read 000095873da506c0 00 0011 02 1 [MdW] 5d652850f1d45f1d +l2 read 000061848951ebc0 01 0028 03 0 [McW(0010,04)] 0000000000000000 +l1d-0 write 000061848951ebc0 00 0015 02 0 [MdW] d49ecfeb151d76c1 +l1d-0 evict 000076807a07f540 00 0005 01 [IcR] 5e9696a11ad02c72 +l2 write 000076807a07f540 01 0017 03 1 [MdW(0019,03)] 5e9696a11ad02c72 +mem write 000076807a07f540 -1 -001 -1 1 [MdW] 5e9696a11ad02c72 +l2 evict 000076807a07f540 01 0017 03 [IcR(0019,03)] 5e9696a11ad02c72 +mem read 0000ffb0ec26c4c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ffb0ec26c4c0 00 0027 01 0 [McW(0019,03)] 0000000000000000 +l1d-1 write 0000ffb0ec26c4c0 00 0003 01 0 [MdW] df18e6266af5a4ce +mem read 00006f44ab8bcf80 -1 -001 -1 1 [McW] 23fb33a840c4d118 +l2 read 00006f44ab8bcf80 01 0003 00 0 [ScW(0024,02)] 23fb33a840c4d118 +l1d-0 read 00006f44ab8bcf80 00 0014 01 0 [ScR] 23fb33a840c4d118 +l2 write 000000f97fae5cc0 00 0003 01 1 [MdW(0021,02)] fb933a96c629912c +l1d-0 evict 000000f97fae5cc0 00 0003 01 [IcR] fb933a96c629912c +l2 read 0000c20e6058a4c0 00 0004 01 1 [SdW(0009,05)] 212a13ad0ffcb4e3 +l1d-0 read 0000c20e6058a4c0 00 0003 01 0 [ScR] 212a13ad0ffcb4e3 +l1d-0 evict 00000701e403e980 00 0006 02 [IcR] a2b07763fc09116e +l2 write 00000701e403e980 01 0024 03 1 [MdW(0001,05)] a2b07763fc09116e +mem write 00000701e403e980 -1 -001 -1 1 [MdW] a2b07763fc09116e +l2 evict 00000701e403e980 01 0024 03 [IcR(0001,05)] a2b07763fc09116e +mem read 0000ff71c82dc900 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ff71c82dc900 00 0031 03 0 [McW(0001,05)] 0000000000000000 +l1d-0 write 0000ff71c82dc900 00 0004 02 0 [MdW] 17a334d5e0225251 +l2 read 00006afec145fe80 00 0006 01 1 [SdW(0015,00)] 36968b104d056d30 +l1i-1 read 00006afec145fe80 00 0010 00 0 [ScR] 36968b104d056d30 +l1i-1 read 00006afec145fe80 00 0010 00 1 [ScR] 36968b104d056d30 +l1d-1 read 000066e78b358f00 00 0012 03 1 [MdW] 50bcdb51cf5071b0 +l1d-1 read 0000c0773417d200 00 0008 01 1 [MdW] 092299a4bfa2bf4f +l1d-1 read 0000015d1559b380 00 0014 00 1 [ScR] 70b67a115d2588f4 +l2 write 00007e15eb118b00 00 0004 00 1 [MdW(0001,04)] 9419ebae6d75d1b9 +l1d-1 evict 00007e15eb118b00 00 0012 00 [IcR] 9419ebae6d75d1b9 +mem write 0000c8ee96a39ac0 -1 -001 -1 1 [MdW] 020b007dc30de857 +l2 evict 0000c8ee96a39ac0 00 0028 00 [IcR(0016,05)] 020b007dc30de857 +mem read 0000755c40141f00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000755c40141f00 01 0006 03 0 [McW(0016,05)] 0000000000000000 +l1d-1 write 0000755c40141f00 00 0012 00 0 [MdW] 0e01110cf13031b3 +l2 write 000029aaf453f380 01 0017 00 1 [MdW(0028,00)] a9bb42631a861d60 +l1d-1 evict 000029aaf453f380 00 0014 01 [IcR] a9bb42631a861d60 +l2 read 000084af1bf9eb80 00 0022 00 1 [SdW(0025,01)] 2898ddc5bb04ad23 +l1d-1 read 000084af1bf9eb80 00 0014 01 0 [ScR] 2898ddc5bb04ad23 +l2 write 000031e4a2646740 00 0031 01 1 [MdW(0027,01)] 613b6d57ad34e57a +l1d-1 evict 000031e4a2646740 00 0013 01 [IcR] 613b6d57ad34e57a +mem write 0000e0ad5d373580 -1 -001 -1 1 [MdW] 032c152e3f44b83d +l2 evict 0000e0ad5d373580 00 0008 00 [IcR(0031,01)] 032c152e3f44b83d +mem read 0000bfe0e32f0740 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000bfe0e32f0740 01 0007 02 0 [McW(0031,01)] 0000000000000000 +l1d-1 write 0000bfe0e32f0740 00 0013 01 0 [MdW] f6878d5659a4c4e3 +l1d-1 evict 0000205a116a7d40 00 0005 00 [IcR] 64c5ac835efc8d57 +l2 write 0000205a116a7d40 00 0022 01 1 [MdW(0029,00)] 64c5ac835efc8d57 +mem write 0000205a116a7d40 -1 -001 -1 1 [MdW] 64c5ac835efc8d57 +l2 evict 0000205a116a7d40 00 0022 01 [IcR(0029,00)] 64c5ac835efc8d57 +mem read 0000c9ac457e9140 -1 -001 -1 1 [McW] 246c1639ddc18c48 +l2 read 0000c9ac457e9140 00 0007 01 0 [ScW(0029,00)] 246c1639ddc18c48 +l1i-1 read 0000c9ac457e9140 00 0005 00 0 [ScR] 246c1639ddc18c48 +l2 write 00004ed4d0955b80 00 0014 00 1 [MdW(0017,00)] 5d48e651e3307f1b +l1d-1 evict 00004ed4d0955b80 00 0014 03 [IcR] 5d48e651e3307f1b +l2 read 000029aaf453f380 01 0017 00 1 [MdW(0028,00)] a9bb42631a861d60 +l1d-1 write 000029aaf453f380 00 0014 03 0 [MdW] feb49615ed0d86dc +l1d-0 evict 0000811bf3b99ac0 00 0011 01 [IcR] 80f59a91c0340835 +mem read 0000908064eef6c0 -1 -001 -1 1 [McW] 63b934d5bef74a33 +l2 read 0000908064eef6c0 00 0003 03 0 [ScW(0022,03)] 63b934d5bef74a33 +l1d-0 read 0000908064eef6c0 00 0011 01 0 [ScR] 63b934d5bef74a33 +l1d-0 evict 0000534534d814c0 00 0003 02 [IcR] ec0af5df425fb3d3 +mem read 0000f17f98f480c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000f17f98f480c0 01 0003 02 0 [McW(0011,04)] 0000000000000000 +l1d-0 write 0000f17f98f480c0 00 0003 02 0 [MdW] 1cfc6ac693969040 +l1d-1 write 0000c0773417d200 00 0008 01 1 [MdW] eb360115e41d6873 +l1d-1 read 0000b6ebb009be40 00 0009 02 1 [MdW] 522882a3ec706ec7 +l1d-0 read 000019a40a160240 00 0009 01 1 [MdW] 89d7589ee0039216 +l2 write 0000e337ff7072c0 01 0030 04 1 [MdW(0017,06)] 80fed586eeb4f46f +l1d-0 evict 0000e337ff7072c0 00 0011 03 [IcR] 80fed586eeb4f46f +l1d-0 evict 00007b42479583c0 00 0015 01 [IcR] 1eb25cab9f3314d6 +l2 write 00007b42479583c0 01 0008 00 1 [MdW(0008,03)] 1eb25cab9f3314d6 +mem write 00007b42479583c0 -1 -001 -1 1 [MdW] 1eb25cab9f3314d6 +l2 evict 00007b42479583c0 01 0008 00 [IcR(0008,03)] 1eb25cab9f3314d6 +mem read 000048777e448ac0 -1 -001 -1 1 [McW] ebc6d4db1d9b7ded +l2 read 000048777e448ac0 01 0020 01 0 [ScW(0008,03)] ebc6d4db1d9b7ded +l1d-0 read 000048777e448ac0 00 0011 03 0 [ScR] ebc6d4db1d9b7ded +l1d-1 read 000011abc3e7fe80 00 0010 01 1 [ScR] d8e6dec1c6caebeb +l2 read 00001ad58832f640 00 0009 00 1 [SdW(0007,04)] 796192d34cb6befd +l1d-0 read 00001ad58832f640 00 0009 02 0 [ScR] 796192d34cb6befd +l1d-0 read 0000c477f06039c0 00 0007 03 1 [MdW] c6426fc9e8124d7f +l2 write 0000fb280d796f00 00 0016 01 1 [MdW(0003,02)] 034702017a6f4b77 +l1d-1 evict 0000fb280d796f00 00 0012 01 [IcR] 034702017a6f4b77 +l2 read 00007e15eb118b00 00 0004 00 1 [SdW(0001,04)] 9419ebae6d75d1b9 +l1d-1 read 00007e15eb118b00 00 0012 01 0 [ScR] 9419ebae6d75d1b9 +l1d-0 evict 000014810cf26a80 00 0010 00 [IcR] dd8f7f397459bd40 +l2 write 000014810cf26a80 01 0020 00 1 [MdW(0013,07)] dd8f7f397459bd40 +mem write 000014810cf26a80 -1 -001 -1 1 [MdW] dd8f7f397459bd40 +l2 evict 000014810cf26a80 01 0020 00 [IcR(0013,07)] dd8f7f397459bd40 +mem read 00007b41f3e8d580 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007b41f3e8d580 01 0004 03 0 [McW(0013,07)] 0000000000000000 +l1d-0 write 00007b41f3e8d580 00 0006 02 0 [MdW] a98fdc7ce6d0bfad +l1d-1 read 0000d8e31ae65a80 00 0010 00 1 [MdW] 2bedd934c961c1a5 +l1d-1 read 000011abc3e7fe80 00 0010 01 1 [ScR] d8e6dec1c6caebeb +l1d-1 read 00001fd6787ba100 00 0004 02 1 [ScR] 6ec02943a5ad4367 +l1d-1 evict 00006a36c42b4840 00 0001 01 [IcR] f142984e5c1a9135 +l2 write 00006a36c42b4840 01 0024 00 1 [MdW(0030,04)] f142984e5c1a9135 +mem write 00006a36c42b4840 -1 -001 -1 1 [MdW] f142984e5c1a9135 +l2 evict 00006a36c42b4840 01 0024 00 [IcR(0030,04)] f142984e5c1a9135 +mem read 00004db5ccc11940 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004db5ccc11940 01 0010 01 0 [McW(0030,04)] 0000000000000000 +l1d-1 write 00004db5ccc11940 00 0005 00 0 [MdW] 44398306b9b406c4 +l2 read 0000c662cc646980 01 0025 00 1 [MdW(0017,03)] cb7a2ac78d75ea1e +l1d-0 write 0000c662cc646980 00 0006 00 0 [MdW] 18c08a9434bd0fc2 +l1d-0 read 0000418397142480 00 0002 00 1 [MdW] 30dbb666b2eba234 +l1d-0 read 0000750cdfd9ed40 00 0005 03 1 [MdW] d70a3a98f65651fb +l1d-1 read 0000ecb652ef69c0 00 0007 00 1 [MdW] eb59c87e9e41fe96 +l2 write 0000d69a075d9a00 01 0001 01 1 [MdW(0005,03)] b97446909df2721a +l1d-1 evict 0000d69a075d9a00 00 0008 00 [IcR] b97446909df2721a +mem read 0000f0d349d6ba00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000f0d349d6ba00 01 0023 00 0 [McW(0026,03)] 0000000000000000 +l1d-1 write 0000f0d349d6ba00 00 0008 00 0 [MdW] 87e448736b086b82 +l1d-1 evict 0000ecb652ef69c0 00 0007 00 [IcR] eb59c87e9e41fe96 +l2 write 0000ecb652ef69c0 01 0012 00 1 [MdW(0023,04)] eb59c87e9e41fe96 +mem write 0000ecb652ef69c0 -1 -001 -1 1 [MdW] eb59c87e9e41fe96 +l2 evict 0000ecb652ef69c0 01 0012 00 [IcR(0023,04)] eb59c87e9e41fe96 +mem read 0000045cce7b2a40 -1 -001 -1 1 [McW] 23260c93a8186343 +l2 read 0000045cce7b2a40 01 0023 03 0 [ScW(0023,04)] 23260c93a8186343 +l1d-0 read 0000045cce7b2a40 00 0009 03 0 [ScR] 23260c93a8186343 +l2 write 0000a6f9f0803d80 00 0010 02 1 [MdW(0023,06)] cd2840a4925c9683 +l1d-0 evict 0000a6f9f0803d80 00 0006 01 [IcR] cd2840a4925c9683 +l2 read 00002b4766af8580 00 0026 00 1 [MdW(0024,06)] 9f9038d2bb1fa8a4 +l1d-0 write 00002b4766af8580 00 0006 01 0 [MdW] de3114597c8e3fb1 +l1d-1 read 00004f46a7d2ea80 00 0010 03 1 [MdW] c6da95c57f5d5cb2 +l1d-0 read 0000ced5eac0d680 00 0010 01 1 [MdW] 1d2194cf7fc214b2 +l2 write 0000b8f3e311dac0 00 0015 00 1 [MdW(0023,00)] 55a68786c179e4b5 +l1d-0 evict 0000b8f3e311dac0 00 0011 00 [IcR] 55a68786c179e4b5 +l1d-0 evict 0000c3a56b5f8bc0 00 0015 00 [IcR] 9b4a314f80de0e14 +mem write 0000c3a56b5f8bc0 -1 -001 -1 1 [MdW] 9b4a314f80de0e14 +l2 evict 0000c3a56b5f8bc0 00 0010 00 [IcR(0018,04)] 9b4a314f80de0e14 +mem read 000040f7755c2ac0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000040f7755c2ac0 01 0018 02 0 [McW(0018,04)] 0000000000000000 +l1d-0 write 000040f7755c2ac0 00 0011 00 0 [MdW] bcf94c89f64696f7 +l1d-1 read 0000df0f11cce0c0 00 0003 00 1 [MdW] b0fddea366d09da1 +l1d-0 read 0000bbc9c32465c0 00 0007 02 1 [MdW] a06ae50259dfb6f1 +l2 write 0000d57075091b80 01 0029 02 1 [MdW(0027,02)] 3dc17f34a5250850 +l1d-1 evict 0000d57075091b80 00 0014 02 [IcR] 3dc17f34a5250850 +mem write 00004c22aaaafa40 -1 -001 -1 1 [MdW] 2d93d3fed33d69e0 +l2 evict 00004c22aaaafa40 01 0021 02 [IcR(0006,05)] 2d93d3fed33d69e0 +mem read 000028a2a5cc7780 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000028a2a5cc7780 00 0007 02 0 [McW(0006,05)] 0000000000000000 +l1d-1 write 000028a2a5cc7780 00 0014 02 0 [MdW] c2b3bde410eeed99 +l1d-1 read 0000dda2631186c0 00 0011 02 1 [MdW] 2389031e21d4a9ca +l1d-1 read 0000755c40141f00 00 0012 00 1 [MdW] 0e01110cf13031b3 +l2 read 0000a91cd2b18040 00 0024 01 1 [SdW(0030,07)] 826c97612426419e +l1d-1 read 0000a91cd2b18040 00 0001 01 0 [ScR] 826c97612426419e +mem write 00002d9824d83d80 -1 -001 -1 1 [MdW] 78173ca74385638d +l2 evict 00002d9824d83d80 00 0021 01 [IcR(0010,07)] 78173ca74385638d +mem read 00006588f907d5c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006588f907d5c0 00 0008 00 0 [McW(0010,07)] 0000000000000000 +l1d-1 write 00006588f907d5c0 00 0007 00 0 [MdW] bc6691b91abbe790 +l2 write 0000bb75517c9b80 00 0011 02 1 [MdW(0027,05)] 6bde4c0523ccba1a +l1d-0 evict 0000bb75517c9b80 00 0014 00 [IcR] 6bde4c0523ccba1a +mem read 0000b1312a1f2f80 -1 -001 -1 1 [McW] db32e76b65f38b73 +l2 read 0000b1312a1f2f80 00 0028 00 0 [ScW(0017,01)] db32e76b65f38b73 +l1d-0 read 0000b1312a1f2f80 00 0014 00 0 [ScR] db32e76b65f38b73 +l1d-1 read 000075fd554aed80 00 0006 03 1 [ScR] 96f8c40189bf5862 +l1d-1 evict 000044ca9c649400 00 0000 00 [IcR] 58da3250723bdd77 +l2 read 000091e69e86bc00 01 0002 01 1 [SdW(0006,03)] 9c0f2328e5a76eca +l1d-1 read 000091e69e86bc00 00 0000 00 0 [ScR] 9c0f2328e5a76eca +l2 write 0000e461479ae980 00 0021 02 1 [MdW(0021,06)] f44a40aa263a924f +l1d-0 evict 0000e461479ae980 00 0006 03 [IcR] f44a40aa263a924f +l2 evict 0000811bf3b99ac0 00 0027 00 [IcR(0024,07)] 80f59a91c0340835 +mem read 00009a603343d580 -1 -001 -1 1 [McW] 75aae8a3bba85efe +l2 read 00009a603343d580 01 0003 03 0 [ScW(0024,07)] 75aae8a3bba85efe +l1d-0 read 00009a603343d580 00 0006 03 0 [ScR] 75aae8a3bba85efe +l1d-1 evict 00004f46a7d2ea80 00 0010 03 [IcR] c6da95c57f5d5cb2 +l2 write 00004f46a7d2ea80 00 0020 02 1 [MdW(0017,02)] c6da95c57f5d5cb2 +mem write 00004f46a7d2ea80 -1 -001 -1 1 [MdW] c6da95c57f5d5cb2 +l2 evict 00004f46a7d2ea80 00 0020 02 [IcR(0017,02)] c6da95c57f5d5cb2 +mem read 00006a36c42b4840 -1 -001 -1 1 [McW] f142984e5c1a9135 +l2 read 00006a36c42b4840 00 0014 01 0 [McW(0017,02)] f142984e5c1a9135 +l1d-1 write 00006a36c42b4840 00 0001 02 0 [MdW] 7d5fd4c9e5820a28 +l2 read 00006980d04a3400 00 0009 02 1 [SdW(0000,05)] 7ef963a07731ba85 +l1i-1 read 00006980d04a3400 00 0000 00 0 [ScR] 7ef963a07731ba85 +l1d-1 read 00007e15eb118b00 00 0012 01 1 [ScR] 9419ebae6d75d1b9 +l1d-0 write 000093de24a554c0 00 0003 03 1 [MdW] a61665acf2792f66 +l2 read 0000015d1559b380 01 0021 03 1 [McW(0030,05)] 70b67a115d2588f4 +l1d-1 write 0000015d1559b380 00 0014 00 0 [MdW] cd5095ef84be60be +l2 write 0000bfe0e32f0740 01 0007 02 1 [MdW(0031,01)] f6878d5659a4c4e3 +l2 read 0000bfe0e32f0740 01 0007 02 1 [SdW(0031,01)] f6878d5659a4c4e3 +l1i-1 read 0000bfe0e32f0740 00 0013 00 0 [ScR] f6878d5659a4c4e3 +l1d-1 evict 00009aaf14205900 00 0004 00 [IcR] 6e85f64de7e125d5 +l2 read 00007a0ccec77d00 01 0014 02 1 [SdW(0002,05)] 5bb323ab7bff0284 +l1d-1 read 00007a0ccec77d00 00 0004 00 0 [ScR] 5bb323ab7bff0284 +l2 read 0000fad1bdc1cf00 00 0025 02 1 [SdW(0012,06)] bc47178377830961 +l1d-0 read 0000fad1bdc1cf00 00 0012 00 0 [ScR] bc47178377830961 +l1d-0 write 000019a40a160240 00 0009 01 1 [MdW] a76d1bb85a4f194a +l1d-0 read 0000ced5eac0d680 00 0010 01 1 [MdW] 1d2194cf7fc214b2 +l1d-0 read 0000045cce7b2a40 00 0009 03 1 [ScR] 23260c93a8186343 +mem read 00004f46a7d2ea80 -1 -001 -1 1 [McW] c6da95c57f5d5cb2 +l2 read 00004f46a7d2ea80 00 0020 02 0 [McW(0008,04)] c6da95c57f5d5cb2 +l1d-1 write 00004f46a7d2ea80 00 0010 03 0 [MdW] 1d6b75778fa46c62 +l1d-1 evict 000029aaf453f380 00 0014 03 [IcR] feb49615ed0d86dc +l2 write 000029aaf453f380 01 0017 00 1 [MdW(0028,00)] feb49615ed0d86dc +mem write 000029aaf453f380 -1 -001 -1 1 [MdW] feb49615ed0d86dc +l2 evict 000029aaf453f380 01 0017 00 [IcR(0028,00)] feb49615ed0d86dc +mem read 000034ffc92a8040 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000034ffc92a8040 01 0016 02 0 [McW(0028,00)] 0000000000000000 +l1d-0 write 000034ffc92a8040 00 0001 01 0 [MdW] c7c6f4c97b2bfb9c +mem read 0000106db33edf80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000106db33edf80 00 0006 03 0 [McW(0019,00)] 0000000000000000 +l1d-1 write 0000106db33edf80 00 0014 03 0 [MdW] b7c493624d2586f1 +l2 write 0000d314b6aa3a80 01 0021 00 1 [MdW(0031,04)] 078cbf83c936f307 +l1d-1 evict 0000d314b6aa3a80 00 0010 02 [IcR] 078cbf83c936f307 +l1d-0 evict 0000750cdfd9ed40 00 0005 03 [IcR] d70a3a98f65651fb +l2 write 0000750cdfd9ed40 00 0031 02 1 [MdW(0021,04)] d70a3a98f65651fb +mem write 0000750cdfd9ed40 -1 -001 -1 1 [MdW] d70a3a98f65651fb +l2 evict 0000750cdfd9ed40 00 0031 02 [IcR(0021,04)] d70a3a98f65651fb +mem read 0000b7fc8ec73280 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000b7fc8ec73280 01 0013 03 0 [McW(0021,04)] 0000000000000000 +l1d-1 write 0000b7fc8ec73280 00 0010 02 0 [MdW] 82cac3e599046a61 +l2 write 000002d094c53dc0 01 0004 02 1 [MdW(0027,03)] a0f76de140ef6fc6 +l1d-1 evict 000002d094c53dc0 00 0007 02 [IcR] a0f76de140ef6fc6 +l1d-0 evict 0000b1312a1f2f80 00 0014 00 [IcR] db32e76b65f38b73 +l2 evict 0000b1312a1f2f80 00 0028 00 [IcR(0017,01)] db32e76b65f38b73 +mem read 0000c79b07073dc0 -1 -001 -1 1 [McW] dc55730c9000f4d6 +l2 read 0000c79b07073dc0 01 0017 00 0 [ScW(0017,01)] dc55730c9000f4d6 +l1d-1 read 0000c79b07073dc0 00 0007 02 0 [ScR] dc55730c9000f4d6 +l2 write 0000ee65dae92ec0 00 0019 02 1 [MdW(0003,01)] 330bcb33c3315b47 +l1d-0 evict 0000ee65dae92ec0 00 0011 02 [IcR] 330bcb33c3315b47 +l2 read 0000adfec432bac0 01 0000 00 1 [ScW(0031,00)] 59f49d91de97aae8 +l1d-0 read 0000adfec432bac0 00 0011 02 0 [ScR] 59f49d91de97aae8 +l2 write 00007b41f3e8d580 01 0004 03 1 [MdW(0013,07)] a98fdc7ce6d0bfad +l1d-0 evict 00007b41f3e8d580 00 0006 02 [IcR] a98fdc7ce6d0bfad +l1d-1 evict 00001d61aeb20340 00 0013 00 [IcR] c9614f7e7125d893 +l2 write 00001d61aeb20340 00 0003 02 1 [MdW(0027,00)] c9614f7e7125d893 +mem write 00001d61aeb20340 -1 -001 -1 1 [MdW] c9614f7e7125d893 +l2 evict 00001d61aeb20340 00 0003 02 [IcR(0027,00)] c9614f7e7125d893 +mem read 00000701e403e980 -1 -001 -1 1 [McW] a2b07763fc09116e +l2 read 00000701e403e980 01 0024 00 0 [ScW(0027,00)] a2b07763fc09116e +l1d-0 read 00000701e403e980 00 0006 02 0 [ScR] a2b07763fc09116e +l2 write 000084e1ad47e100 00 0008 01 1 [MdW(0014,06)] 82e50a848d30e308 +l1d-1 evict 000084e1ad47e100 00 0004 03 [IcR] 82e50a848d30e308 +mem read 000053c37f465900 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000053c37f465900 00 0017 01 0 [McW(0014,03)] 0000000000000000 +l1d-1 write 000053c37f465900 00 0004 03 0 [MdW] 1d46a92797eafd72 +l1d-1 read 0000c0773417d200 00 0008 01 1 [MdW] eb360115e41d6873 +l1d-1 evict 00007e3437831800 00 0000 03 [IcR] 6b9d76bb27c3ffa3 +l2 read 000057c442889400 01 0025 01 1 [MdW(0002,06)] 3bbaa19fee680867 +l1d-1 write 000057c442889400 00 0000 03 0 [MdW] 77db597bd75abf07 +l2 write 00006a5fbc380d80 01 0031 01 1 [MdW(0013,01)] 274f82841cd9a691 +l1d-1 evict 00006a5fbc380d80 00 0006 00 [IcR] 274f82841cd9a691 +l2 read 0000780ab040b980 01 0002 00 1 [SdW(0019,07)] 0968e82e4bb02b18 +l1d-1 read 0000780ab040b980 00 0006 00 0 [ScR] 0968e82e4bb02b18 +l1d-1 read 00006588f907d5c0 00 0007 00 1 [MdW] bc6691b91abbe790 +l2 write 0000c662cc646980 01 0025 00 1 [MdW(0017,03)] 18c08a9434bd0fc2 +l1d-0 evict 0000c662cc646980 00 0006 00 [IcR] 18c08a9434bd0fc2 +l1d-1 evict 0000c0773417d200 00 0008 01 [IcR] eb360115e41d6873 +l2 write 0000c0773417d200 01 0023 01 1 [MdW(0013,05)] eb360115e41d6873 +mem write 0000c0773417d200 -1 -001 -1 1 [MdW] eb360115e41d6873 +l2 evict 0000c0773417d200 01 0023 01 [IcR(0013,05)] eb360115e41d6873 +mem read 00001e12c123a180 -1 -001 -1 1 [McW] ff1d2beb43b9b33b +l2 read 00001e12c123a180 00 0031 02 0 [ScW(0013,05)] ff1d2beb43b9b33b +l1d-0 read 00001e12c123a180 00 0006 00 0 [ScR] ff1d2beb43b9b33b +l1d-0 write 000039a6b2ebcd00 00 0004 03 1 [MdW] 3d554e47c9a0c003 +l1d-1 evict 0000afd2a9e735c0 00 0007 01 [IcR] 5f63bfdb9b9fe352 +mem read 00005c90ae19e9c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00005c90ae19e9c0 00 0002 00 0 [McW(0029,02)] 0000000000000000 +l1d-1 write 00005c90ae19e9c0 00 0007 01 0 [MdW] 3782cdec714c3fb4 +mem write 00006afec145fe80 -1 -001 -1 1 [MdW] 36968b104d056d30 +l2 evict 00006afec145fe80 00 0006 01 [IcR(0015,00)] 36968b104d056d30 +mem read 0000750cdfd9ed40 -1 -001 -1 1 [McW] d70a3a98f65651fb +l2 read 0000750cdfd9ed40 01 0027 03 0 [ScW(0015,00)] d70a3a98f65651fb +l1d-0 read 0000750cdfd9ed40 00 0005 01 0 [ScR] d70a3a98f65651fb +l1d-0 read 000061848951ebc0 00 0015 02 1 [MdW] d49ecfeb151d76c1 +l1d-0 read 000048777e448ac0 00 0011 03 1 [ScR] ebc6d4db1d9b7ded +l1d-1 read 00001ffbc4ff1a40 00 0009 03 1 [MdW] ab659f32bcd3041b +l1d-0 read 000049afd5e02b40 00 0013 02 1 [MdW] 283b644b3a7a9886 +l2 write 00009a461a9864c0 00 0019 00 1 [MdW(0024,03)] 8b973d84cfd7dcc4 +l1d-0 evict 00009a461a9864c0 00 0003 00 [IcR] 8b973d84cfd7dcc4 +l2 read 0000534534d814c0 00 0006 02 1 [McW(0027,07)] ec0af5df425fb3d3 +l1d-0 write 0000534534d814c0 00 0003 00 0 [MdW] efe31bf8541a673f +l1d-1 read 0000302899d8cac0 00 0011 03 1 [MdW] bdd24610b537bb57 +l1d-1 write 000057c442889400 00 0000 03 1 [MdW] 953e17bdbbc42e90 +l1d-0 write 0000198865cee000 00 0000 00 1 [MdW] a4864eeab5efaace +l1d-0 evict 0000908064eef6c0 00 0011 01 [IcR] 63b934d5bef74a33 +l2 read 000057ef223eb2c0 00 0009 01 1 [SdW(0001,07)] 2d826de3e09ee626 +l1d-0 read 000057ef223eb2c0 00 0011 01 0 [ScR] 2d826de3e09ee626 +l1d-1 read 000057907407aac0 00 0011 00 1 [MdW] 4143fd547c0ab069 +l1d-0 evict 00004813c834cdc0 00 0007 01 [IcR] 705c2dbf4c432cbe +mem read 000030295cbb89c0 -1 -001 -1 1 [McW] 808a6a34835c5ae7 +l2 read 000030295cbb89c0 00 0031 04 0 [ScW(0020,06)] 808a6a34835c5ae7 +l1d-0 read 000030295cbb89c0 00 0007 01 0 [ScR] 808a6a34835c5ae7 +mem write 0000f448c073e880 -1 -001 -1 1 [MdW] 8c8ab877bdd6b24f +l2 evict 0000f448c073e880 01 0030 02 [IcR(0005,01)] 8c8ab877bdd6b24f +mem read 00001b7163d48d40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00001b7163d48d40 01 0022 02 0 [McW(0005,01)] 0000000000000000 +l1d-0 write 00001b7163d48d40 00 0005 03 0 [MdW] da68687e2447a125 +l2 write 0000f27b5523ddc0 00 0026 03 1 [MdW(0010,00)] b8bf2af308099005 +l1d-0 evict 0000f27b5523ddc0 00 0007 00 [IcR] b8bf2af308099005 +l2 read 00004813c834cdc0 00 0025 01 1 [ScW(0007,03)] 705c2dbf4c432cbe +l1d-0 read 00004813c834cdc0 00 0007 00 0 [ScR] 705c2dbf4c432cbe +l2 write 000099fa8471ba40 01 0030 03 1 [MdW(0017,04)] 9b4f9dd5637abf43 +l1d-1 evict 000099fa8471ba40 00 0009 00 [IcR] 9b4f9dd5637abf43 +mem read 00007cc1e5f42e40 -1 -001 -1 1 [McW] 38334869bbcf71a3 +l2 read 00007cc1e5f42e40 00 0027 00 0 [ScW(0022,07)] 38334869bbcf71a3 +l1d-1 read 00007cc1e5f42e40 00 0009 00 0 [ScR] 38334869bbcf71a3 +l2 write 000034b9affcc8c0 01 0005 01 1 [MdW(0006,04)] 1c123c3c03dd01e9 +l1d-1 evict 000034b9affcc8c0 00 0003 02 [IcR] 1c123c3c03dd01e9 +l2 read 0000c2b04eebfcc0 01 0018 01 1 [SdW(0031,06)] aa640df3e7475762 +l1d-1 read 0000c2b04eebfcc0 00 0003 02 0 [ScR] aa640df3e7475762 +l1d-0 write 0000333bb344eb40 00 0013 01 1 [MdW] 37e243e7094a4a61 +l1d-0 read 00004813c834cdc0 00 0007 00 1 [ScR] 705c2dbf4c432cbe +l1d-0 evict 00002c011c660300 00 0012 02 [IcR] aacfbf30c579992e +mem write 0000e461479ae980 -1 -001 -1 1 [MdW] f44a40aa263a924f +l2 evict 0000e461479ae980 00 0021 02 [IcR(0021,06)] f44a40aa263a924f +mem read 00003174403caf00 -1 -001 -1 1 [McW] c334dfcfde2552e3 +l2 read 00003174403caf00 00 0014 02 0 [ScW(0021,06)] c334dfcfde2552e3 +l1d-0 read 00003174403caf00 00 0012 02 0 [ScR] c334dfcfde2552e3 +l1d-0 write 0000f17f98f480c0 00 0003 02 1 [MdW] 84e0e10794125a03 +l1d-1 evict 000073703a455800 00 0000 01 [IcR] 9fc569fe6ed32a01 +l2 read 000044ca9c649400 00 0030 01 1 [SdW(0031,05)] 58da3250723bdd77 +l1d-1 read 000044ca9c649400 00 0000 01 0 [ScR] 58da3250723bdd77 +l1d-1 read 00007a0ccec77d00 00 0004 00 1 [ScR] 5bb323ab7bff0284 +l1d-0 read 000039a5e213fe00 00 0008 00 1 [MdW] e51f77c7f4ba657a +l1d-1 read 00006a36c42b4840 00 0001 02 1 [MdW] 7d5fd4c9e5820a28 +l2 write 000040f7755c2ac0 01 0018 02 1 [MdW(0018,04)] bcf94c89f64696f7 +l2 read 000040f7755c2ac0 01 0018 02 1 [SdW(0018,04)] bcf94c89f64696f7 +l1i-0 read 000040f7755c2ac0 00 0011 02 0 [ScR] bcf94c89f64696f7 +l2 write 0000cfb2dc469800 01 0000 02 1 [MdW(0024,01)] ec3eea9e61f4addb +l1d-1 evict 0000cfb2dc469800 00 0000 02 [IcR] ec3eea9e61f4addb +l1d-1 evict 000066e78b358f00 00 0012 03 [IcR] 50bcdb51cf5071b0 +l2 write 000066e78b358f00 01 0015 04 1 [MdW(0006,07)] 50bcdb51cf5071b0 +mem write 000066e78b358f00 -1 -001 -1 1 [MdW] 50bcdb51cf5071b0 +l2 evict 000066e78b358f00 01 0015 04 [IcR(0006,07)] 50bcdb51cf5071b0 +mem read 00004722853cdc00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004722853cdc00 00 0028 00 0 [McW(0006,07)] 0000000000000000 +l1d-1 write 00004722853cdc00 00 0000 02 0 [MdW] 7434bce545e0873c +l1d-0 evict 0000740d5897eb00 00 0012 03 [IcR] 024d94b6ba577e25 +l2 read 00002c011c660300 00 0012 01 1 [ScW(0021,07)] aacfbf30c579992e +l1d-0 read 00002c011c660300 00 0012 03 0 [ScR] aacfbf30c579992e +l2 write 0000d8e31ae65a80 00 0013 02 1 [MdW(0001,01)] 2bedd934c961c1a5 +l1d-1 evict 0000d8e31ae65a80 00 0010 00 [IcR] 2bedd934c961c1a5 +l2 read 0000d314b6aa3a80 01 0021 00 1 [MdW(0031,04)] 078cbf83c936f307 +l1d-1 write 0000d314b6aa3a80 00 0010 00 0 [MdW] 570f941a341d0e3b +l2 write 0000c1182c224c40 00 0009 03 1 [MdW(0012,05)] 3c0c3449cec62aac +l1d-1 evict 0000c1182c224c40 00 0001 03 [IcR] 3c0c3449cec62aac +mem read 000092dc574cb440 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000092dc574cb440 01 0014 03 0 [McW(0021,00)] 0000000000000000 +l1d-1 write 000092dc574cb440 00 0001 03 0 [MdW] 1e77d11d1718e287 +l1d-1 read 000084af1bf9eb80 00 0014 01 1 [ScR] 2898ddc5bb04ad23 +l1d-1 write 000092dc574cb440 00 0001 03 1 [MdW] a534b1f80fab5047 +l2 write 00008aa559520900 01 0024 02 1 [MdW(0025,07)] 4d6a292f5a35e768 +l1d-1 evict 00008aa559520900 00 0004 01 [IcR] 4d6a292f5a35e768 +mem write 000034b9affcc8c0 -1 -001 -1 1 [MdW] 1c123c3c03dd01e9 +l2 evict 000034b9affcc8c0 01 0005 01 [IcR(0006,04)] 1c123c3c03dd01e9 +mem read 0000d090b8181100 -1 -001 -1 1 [McW] 916619a5f0fd52ba +l2 read 0000d090b8181100 01 0017 01 0 [ScW(0006,04)] 916619a5f0fd52ba +l1d-1 read 0000d090b8181100 00 0004 01 0 [ScR] 916619a5f0fd52ba +l1d-1 read 0000dda2631186c0 00 0011 02 1 [MdW] 2389031e21d4a9ca +mem read 0000359b9f397880 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000359b9f397880 01 0020 00 0 [McW(0005,05)] 0000000000000000 +l1d-1 write 0000359b9f397880 00 0002 03 0 [MdW] 868579761540bd7e +l1d-0 read 000052d61b6d5a00 00 0008 03 1 [ScR] e775afa1004c0eb4 +l2 write 0000a462f1bb1500 00 0029 01 1 [MdW(0030,06)] 836865657f27e721 +l1d-0 evict 0000a462f1bb1500 00 0004 00 [IcR] 836865657f27e721 +mem write 0000a4ed67fcb240 -1 -001 -1 1 [MdW] 4dbd028faad33d6c +l2 evict 0000a4ed67fcb240 01 0015 00 [IcR(0028,07)] 4dbd028faad33d6c +mem read 0000803bdde89900 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000803bdde89900 01 0000 03 0 [McW(0028,07)] 0000000000000000 +l1d-0 write 0000803bdde89900 00 0004 00 0 [MdW] 2fcbd7fcdbfe874e +l2 write 00002c482fedb640 01 0027 02 1 [MdW(0015,07)] d967632a5e9ed335 +l1d-1 evict 00002c482fedb640 00 0009 01 [IcR] d967632a5e9ed335 +l2 read 000099fa8471ba40 01 0030 03 1 [SdW(0017,04)] 9b4f9dd5637abf43 +l1d-1 read 000099fa8471ba40 00 0009 01 0 [ScR] 9b4f9dd5637abf43 +l2 write 00007a76f01141c0 00 0009 04 1 [MdW(0009,06)] 4f7e9691e6e6e9e9 +l1d-1 evict 00007a76f01141c0 00 0007 03 [IcR] 4f7e9691e6e6e9e9 +l2 read 0000afd2a9e735c0 01 0005 00 1 [MdW(0026,04)] 5f63bfdb9b9fe352 +l1d-1 write 0000afd2a9e735c0 00 0007 03 0 [MdW] cd8ad056003b74ce +l2 write 0000b78d2a790900 01 0011 02 1 [MdW(0007,00)] aedb2159a3c4680e +l1d-0 evict 0000b78d2a790900 00 0004 01 [IcR] aedb2159a3c4680e +l1d-1 evict 00006894f1b25480 00 0002 00 [IcR] 1e6ece905e742562 +l2 write 00006894f1b25480 00 0020 00 1 [MdW(0014,01)] 1e6ece905e742562 +mem write 00006894f1b25480 -1 -001 -1 1 [MdW] 1e6ece905e742562 +l2 evict 00006894f1b25480 00 0020 00 [IcR(0014,01)] 1e6ece905e742562 +mem read 0000cd9a12aaf500 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000cd9a12aaf500 01 0011 01 0 [McW(0014,01)] 0000000000000000 +l1d-0 write 0000cd9a12aaf500 00 0004 01 0 [MdW] 39afdc69b6c44073 +l2 write 00001eab7edaca00 00 0015 02 1 [MdW(0020,04)] fd9df1bbcda6b980 +l1d-0 evict 00001eab7edaca00 00 0008 01 [IcR] fd9df1bbcda6b980 +l1d-0 evict 000019a40a160240 00 0009 01 [IcR] a76d1bb85a4f194a +l2 write 000019a40a160240 00 0008 02 1 [MdW(0023,05)] a76d1bb85a4f194a +mem write 000019a40a160240 -1 -001 -1 1 [MdW] a76d1bb85a4f194a +l2 evict 000019a40a160240 00 0008 02 [IcR(0023,05)] a76d1bb85a4f194a +mem read 000049889647d200 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000049889647d200 00 0022 01 0 [McW(0023,05)] 0000000000000000 +l1d-0 write 000049889647d200 00 0008 01 0 [MdW] a5eee774450ed3f3 +l2 write 0000b6ebb009be40 01 0018 00 1 [MdW(0020,03)] 522882a3ec706ec7 +l1d-1 evict 0000b6ebb009be40 00 0009 02 [IcR] 522882a3ec706ec7 +l1d-0 evict 00001ad58832f640 00 0009 02 [IcR] 796192d34cb6befd +mem write 00001ad58832f640 -1 -001 -1 1 [MdW] 796192d34cb6befd +l2 evict 00001ad58832f640 00 0009 00 [IcR(0007,04)] 796192d34cb6befd +mem read 0000172ca7421240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000172ca7421240 01 0026 01 0 [McW(0007,04)] 0000000000000000 +l1d-1 write 0000172ca7421240 00 0009 02 0 [MdW] 322ca77b5b927467 +l1d-0 read 000061848951ebc0 00 0015 02 1 [MdW] d49ecfeb151d76c1 +l1d-1 evict 0000b58c65e56d80 00 0006 02 [IcR] 64bfc88438d208ec +l2 write 0000b58c65e56d80 00 0013 03 1 [MdW(0001,03)] 64bfc88438d208ec +mem write 0000b58c65e56d80 -1 -001 -1 1 [MdW] 64bfc88438d208ec +l2 evict 0000b58c65e56d80 00 0013 03 [IcR(0001,03)] 64bfc88438d208ec +mem read 00004e67a6d81700 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004e67a6d81700 01 0023 01 0 [McW(0001,03)] 0000000000000000 +l1d-1 write 00004e67a6d81700 00 0012 03 0 [MdW] 11cd09bce09e8d89 +l1d-1 write 000057c442889400 00 0000 03 1 [MdW] 1e3b18e07eb9b12c +l1d-0 read 00004813c834cdc0 00 0007 00 1 [ScR] 705c2dbf4c432cbe +l1d-0 write 0000cd9a12aaf500 00 0004 01 1 [MdW] 3c138801388e31fe +l1d-1 evict 000091e69e86bc00 00 0000 00 [IcR] 9c0f2328e5a76eca +l1d-0 evict 000073f8f4229a80 00 0010 03 [IcR] d40c3ec8164f1ef5 +l2 write 000073f8f4229a80 01 0005 02 1 [MdW(0006,06)] d40c3ec8164f1ef5 +mem write 000073f8f4229a80 -1 -001 -1 1 [MdW] d40c3ec8164f1ef5 +l2 evict 000073f8f4229a80 01 0005 02 [IcR(0006,06)] d40c3ec8164f1ef5 +mem read 0000df16e7f1d400 -1 -001 -1 1 [McW] a67a11e1cf49b77b +l2 read 0000df16e7f1d400 00 0028 01 0 [ScW(0006,06)] a67a11e1cf49b77b +l1d-1 read 0000df16e7f1d400 00 0000 00 0 [ScR] a67a11e1cf49b77b +l2 read 0000d69a075d9a00 01 0001 01 1 [SdW(0005,03)] b97446909df2721a +l1d-1 read 0000d69a075d9a00 00 0008 01 0 [ScR] b97446909df2721a +l1d-1 evict 000044ca9c649400 00 0000 01 [IcR] 58da3250723bdd77 +mem write 000072629a2641c0 -1 -001 -1 1 [MdW] cff65dd3605c7fe3 +l2 evict 000072629a2641c0 00 0011 00 [IcR(0018,06)] cff65dd3605c7fe3 +mem read 00003f02ff55a000 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00003f02ff55a000 00 0023 01 0 [McW(0018,06)] 0000000000000000 +l1d-1 write 00003f02ff55a000 00 0000 01 0 [MdW] 1a4db79974495d9b +l1d-0 write 00002b4766af8580 00 0006 01 1 [MdW] 429db08a0998b047 +l2 read 0000ed89583b9580 00 0018 01 1 [MdW(0024,00)] fb960620c6243046 +l1d-1 write 0000ed89583b9580 00 0006 02 0 [MdW] e09e57bfd05f4979 +l2 write 000098857a80b0c0 01 0015 02 1 [MdW(0000,01)] 4af1df55aebdd3e6 +l1d-1 evict 000098857a80b0c0 00 0003 03 [IcR] 4af1df55aebdd3e6 +mem read 000054a53f80d8c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000054a53f80d8c0 00 0001 01 0 [McW(0011,02)] 0000000000000000 +l1d-1 write 000054a53f80d8c0 00 0003 03 0 [MdW] ae229dd18a728847 +l2 write 0000c477f06039c0 00 0016 00 1 [MdW(0005,02)] c6426fc9e8124d7f +l1d-0 evict 0000c477f06039c0 00 0007 03 [IcR] c6426fc9e8124d7f +l1d-1 evict 0000ade01f76c940 00 0005 02 [IcR] 7e76db3a89663ea8 +l2 write 0000ade01f76c940 01 0028 01 1 [MdW(0006,02)] 7e76db3a89663ea8 +mem write 0000ade01f76c940 -1 -001 -1 1 [MdW] 7e76db3a89663ea8 +l2 evict 0000ade01f76c940 01 0028 01 [IcR(0006,02)] 7e76db3a89663ea8 +mem read 0000c8fa6d0f39c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c8fa6d0f39c0 01 0011 03 0 [McW(0006,02)] 0000000000000000 +l1d-0 write 0000c8fa6d0f39c0 00 0007 03 0 [MdW] 6ba4d33d1d05c3e1 +l2 write 00001ffbc4ff1a40 01 0029 01 1 [MdW(0000,07)] ab659f32bcd3041b +l1d-1 evict 00001ffbc4ff1a40 00 0009 03 [IcR] ab659f32bcd3041b +l1d-0 evict 000039a5e213fe00 00 0008 00 [IcR] e51f77c7f4ba657a +l2 write 000039a5e213fe00 01 0022 00 1 [MdW(0000,02)] e51f77c7f4ba657a +mem write 000039a5e213fe00 -1 -001 -1 1 [MdW] e51f77c7f4ba657a +l2 evict 000039a5e213fe00 01 0022 00 [IcR(0000,02)] e51f77c7f4ba657a +mem read 0000c97be4cb1a40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c97be4cb1a40 00 0024 00 0 [McW(0000,02)] 0000000000000000 +l1d-1 write 0000c97be4cb1a40 00 0009 03 0 [MdW] 2b268cabf1896c5b +l1d-0 evict 00000701e403e980 00 0006 02 [IcR] a2b07763fc09116e +l2 evict 00000701e403e980 01 0024 00 [IcR(0027,00)] a2b07763fc09116e +mem read 00001ad58832f640 -1 -001 -1 1 [McW] 796192d34cb6befd +l2 read 00001ad58832f640 01 0009 00 0 [McW(0027,00)] 796192d34cb6befd +l1d-0 write 00001ad58832f640 00 0009 01 0 [MdW] f9c176745781e0be +l2 write 0000f8857becc7c0 00 0017 02 1 [MdW(0023,02)] 72975557d7d3aa91 +l1d-1 evict 0000f8857becc7c0 00 0015 03 [IcR] 72975557d7d3aa91 +l1d-1 evict 000092dc574cb440 00 0001 03 [IcR] a534b1f80fab5047 +l2 write 000092dc574cb440 01 0014 03 1 [MdW(0021,00)] a534b1f80fab5047 +mem write 000092dc574cb440 -1 -001 -1 1 [MdW] a534b1f80fab5047 +l2 evict 000092dc574cb440 01 0014 03 [IcR(0021,00)] a534b1f80fab5047 +mem read 00004b1a05c8bfc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004b1a05c8bfc0 01 0019 00 0 [McW(0021,00)] 0000000000000000 +l1d-1 write 00004b1a05c8bfc0 00 0015 03 0 [MdW] 680b540ef8ac6223 +l1d-1 read 0000c79b07073dc0 00 0007 02 1 [ScR] dc55730c9000f4d6 +l1d-1 read 0000f59b70013a00 00 0008 02 1 [MdW] 4f9092de9564d05f +l1d-0 evict 0000c20e6058a4c0 00 0003 01 [IcR] 212a13ad0ffcb4e3 +l2 read 000000f97fae5cc0 00 0003 01 1 [SdW(0021,02)] fb933a96c629912c +l1d-0 read 000000f97fae5cc0 00 0003 01 0 [ScR] fb933a96c629912c +l1d-1 evict 000077988753abc0 00 0015 00 [IcR] 6a88399658070358 +l2 read 000077988753abc0 01 0030 00 1 [McW(0007,02)] 6a88399658070358 +l1d-0 write 000077988753abc0 00 0015 00 0 [MdW] 267159d544344353 +mem read 000086890a9e27c0 -1 -001 -1 1 [McW] f1e17884a7f951c6 +l2 read 000086890a9e27c0 01 0005 01 0 [ScW(0030,00)] f1e17884a7f951c6 +l1d-0 read 000086890a9e27c0 00 0015 01 0 [ScR] f1e17884a7f951c6 +l1d-1 read 0000df0f11cce0c0 00 0003 00 1 [MdW] b0fddea366d09da1 +l1d-0 evict 0000d9b688e86700 00 0012 01 [IcR] c311a871a624c062 +l1d-0 evict 00001b7163d48d40 00 0005 03 [IcR] da68687e2447a125 +l2 write 00001b7163d48d40 01 0022 02 1 [MdW(0005,01)] da68687e2447a125 +mem write 00001b7163d48d40 -1 -001 -1 1 [MdW] da68687e2447a125 +l2 evict 00001b7163d48d40 01 0022 02 [IcR(0005,01)] da68687e2447a125 +mem read 00007eb184221700 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007eb184221700 00 0002 02 0 [McW(0005,01)] 0000000000000000 +l1d-0 write 00007eb184221700 00 0012 01 0 [MdW] 0bfcdc2096e02d44 +mem read 0000d6be60018d40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d6be60018d40 01 0008 00 0 [McW(0017,07)] 0000000000000000 +l1d-0 write 0000d6be60018d40 00 0005 03 0 [MdW] 2a1e2aeab66d2a2e +l1d-0 read 000057ef223eb2c0 00 0011 01 1 [ScR] 2d826de3e09ee626 +l1d-1 write 0000ffb0ec26c4c0 00 0003 01 1 [MdW] a90b5754acfcac28 +l2 write 00004722853cdc00 00 0028 00 1 [MdW(0006,07)] 7434bce545e0873c +l1d-1 evict 00004722853cdc00 00 0000 02 [IcR] 7434bce545e0873c +l2 read 000044ca9c649400 00 0030 01 1 [SdW(0031,05)] 58da3250723bdd77 +l1d-1 read 000044ca9c649400 00 0000 02 0 [ScR] 58da3250723bdd77 +l1d-0 write 0000d6be60018d40 00 0005 03 1 [MdW] 96cb409dcf269c30 +l1d-1 evict 0000c1e40165d200 00 0008 03 [IcR] a09b433b028212d0 +l1d-0 evict 000077988753abc0 00 0015 00 [IcR] 267159d544344353 +l2 write 000077988753abc0 01 0030 00 1 [MdW(0007,02)] 267159d544344353 +mem write 000077988753abc0 -1 -001 -1 1 [MdW] 267159d544344353 +l2 evict 000077988753abc0 01 0030 00 [IcR(0007,02)] 267159d544344353 +mem read 0000c0773417d200 -1 -001 -1 1 [McW] eb360115e41d6873 +l2 read 0000c0773417d200 00 0000 02 0 [ScW(0007,02)] eb360115e41d6873 +l1d-1 read 0000c0773417d200 00 0008 03 0 [ScR] eb360115e41d6873 +l2 write 00003f92117466c0 01 0009 02 1 [MdW(0003,05)] e875ffc98e7626d6 +l1d-1 evict 00003f92117466c0 00 0011 01 [IcR] e875ffc98e7626d6 +l2 read 0000e21b98b426c0 00 0013 01 1 [SdW(0010,01)] efda01f1f1ed6559 +l1d-1 read 0000e21b98b426c0 00 0011 01 0 [ScR] efda01f1f1ed6559 +mem write 000089351da6e1c0 -1 -001 -1 1 [MdW] 3ca049e9cff6d872 +l2 evict 000089351da6e1c0 00 0029 00 [IcR(0016,01)] 3ca049e9cff6d872 +mem read 000018c9dccfc840 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000018c9dccfc840 01 0020 02 0 [McW(0016,01)] 0000000000000000 +l1d-0 write 000018c9dccfc840 00 0001 02 0 [MdW] 7bdfa890c0ce385d +l1d-0 read 00009a603343d580 00 0006 03 1 [ScR] 75aae8a3bba85efe +l1d-1 read 00007a0ccec77d00 00 0004 00 1 [ScR] 5bb323ab7bff0284 +l1d-0 evict 0000fad1bdc1cf00 00 0012 00 [IcR] bc47178377830961 +l1d-0 evict 000018c9dccfc840 00 0001 02 [IcR] 7bdfa890c0ce385d +l2 write 000018c9dccfc840 01 0020 02 1 [MdW(0016,01)] 7bdfa890c0ce385d +mem write 000018c9dccfc840 -1 -001 -1 1 [MdW] 7bdfa890c0ce385d +l2 evict 000018c9dccfc840 01 0020 02 [IcR(0016,01)] 7bdfa890c0ce385d +mem read 000046663e4def00 -1 -001 -1 1 [McW] e21542a5128e9ecb +l2 read 000046663e4def00 01 0030 00 0 [ScW(0016,01)] e21542a5128e9ecb +l1d-0 read 000046663e4def00 00 0012 00 0 [ScR] e21542a5128e9ecb +l1d-1 evict 00007cc1e5f42e40 00 0009 00 [IcR] 38334869bbcf71a3 +l2 read 00001ffbc4ff1a40 01 0029 01 1 [SdW(0000,07)] ab659f32bcd3041b +l1d-1 read 00001ffbc4ff1a40 00 0009 00 0 [ScR] ab659f32bcd3041b +l1d-1 read 0000ed89583b9580 00 0006 02 1 [MdW] e09e57bfd05f4979 +l2 read 000057ef223eb2c0 00 0009 01 1 [MdW(0001,07)] 2d826de3e09ee626 +l1d-0 write 000057ef223eb2c0 00 0011 01 0 [MdW] 460fca80430d4d95 +l1d-0 read 0000bd16375b9000 00 0000 03 1 [MdW] 01729ac3b5b468ad +l2 write 0000ff71c82dc900 00 0031 03 1 [MdW(0001,05)] 17a334d5e0225251 +l1d-0 evict 0000ff71c82dc900 00 0004 02 [IcR] 17a334d5e0225251 +l1d-0 evict 0000ced5eac0d680 00 0010 01 [IcR] 1d2194cf7fc214b2 +l2 write 0000ced5eac0d680 01 0007 00 1 [MdW(0029,04)] 1d2194cf7fc214b2 +mem write 0000ced5eac0d680 -1 -001 -1 1 [MdW] 1d2194cf7fc214b2 +l2 evict 0000ced5eac0d680 01 0007 00 [IcR(0029,04)] 1d2194cf7fc214b2 +mem read 0000f66f9acff100 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000f66f9acff100 00 0030 03 0 [McW(0029,04)] 0000000000000000 +l1d-0 write 0000f66f9acff100 00 0004 02 0 [MdW] 58a2c7cc8b63bf01 +l1d-1 evict 000011abc3e7fe80 00 0010 01 [IcR] d8e6dec1c6caebeb +l1d-0 evict 00006f44ab8bcf80 00 0014 01 [IcR] 23fb33a840c4d118 +l2 evict 00006f44ab8bcf80 01 0003 00 [IcR(0024,02)] 23fb33a840c4d118 +mem read 000059efb9532e80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000059efb9532e80 00 0000 03 0 [McW(0024,02)] 0000000000000000 +l1d-1 write 000059efb9532e80 00 0010 01 0 [MdW] db19e43f15c6da9f +l2 write 0000f0d349d6ba00 01 0023 00 1 [MdW(0026,03)] 87e448736b086b82 +l1d-1 evict 0000f0d349d6ba00 00 0008 00 [IcR] 87e448736b086b82 +mem read 0000e9f0c2ae0600 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e9f0c2ae0600 01 0012 00 0 [McW(0013,02)] 0000000000000000 +l1d-1 write 0000e9f0c2ae0600 00 0008 00 0 [MdW] 920ac5c661080194 +l1d-1 read 000044ca9c649400 00 0000 02 1 [ScR] 58da3250723bdd77 +l1d-0 evict 00007d0902e50f80 00 0014 02 [IcR] 7acc9b6fe084c114 +l2 write 00007d0902e50f80 00 0023 03 1 [MdW(0016,06)] 7acc9b6fe084c114 +mem write 00007d0902e50f80 -1 -001 -1 1 [MdW] 7acc9b6fe084c114 +l2 evict 00007d0902e50f80 00 0023 03 [IcR(0016,06)] 7acc9b6fe084c114 +mem read 0000c97dfb94fd80 -1 -001 -1 1 [McW] 2fba7336b9505ed4 +l2 read 0000c97dfb94fd80 01 0020 02 0 [ScW(0016,06)] 2fba7336b9505ed4 +l1d-0 read 0000c97dfb94fd80 00 0006 02 0 [ScR] 2fba7336b9505ed4 +l1d-1 evict 0000302899d8cac0 00 0011 03 [IcR] bdd24610b537bb57 +l2 write 0000302899d8cac0 01 0012 02 1 [MdW(0002,07)] bdd24610b537bb57 +mem write 0000302899d8cac0 -1 -001 -1 1 [MdW] bdd24610b537bb57 +l2 evict 0000302899d8cac0 01 0012 02 [IcR(0002,07)] bdd24610b537bb57 +mem read 000052a3218a7f80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000052a3218a7f80 00 0007 04 0 [McW(0002,07)] 0000000000000000 +l1d-0 write 000052a3218a7f80 00 0014 00 0 [MdW] c0ebe0eb15ae3e1e +l2 write 000057c442889400 01 0025 01 1 [MdW(0002,06)] 1e3b18e07eb9b12c +l1d-1 evict 000057c442889400 00 0000 03 [IcR] 1e3b18e07eb9b12c +l2 read 00007e3437831800 01 0013 02 1 [ScW(0015,06)] 6b9d76bb27c3ffa3 +l1d-1 read 00007e3437831800 00 0000 03 0 [ScR] 6b9d76bb27c3ffa3 +l2 read 00003174403caf00 00 0014 02 1 [McW(0021,06)] c334dfcfde2552e3 +l1d-0 write 00003174403caf00 00 0012 02 0 [MdW] affcf428234efd47 +l1d-0 evict 000040f7755c2ac0 00 0011 00 [IcR] bcf94c89f64696f7 +l2 read 0000afa7e0db12c0 01 0019 02 1 [SdW(0013,04)] fbf332b5f72ab798 +l1d-0 read 0000afa7e0db12c0 00 0011 00 0 [ScR] fbf332b5f72ab798 +l2 read 00001ffbc4ff1a40 01 0029 01 1 [MdW(0000,07)] ab659f32bcd3041b +l1d-1 write 00001ffbc4ff1a40 00 0009 00 0 [MdW] 08bf63be6c7befa2 +l2 write 000093de24a554c0 01 0006 02 1 [MdW(0003,07)] a61665acf2792f66 +l1d-0 evict 000093de24a554c0 00 0003 03 [IcR] a61665acf2792f66 +l2 read 00004cfb5e6fc8c0 00 0002 01 1 [SdW(0020,02)] bb786e37d55629f0 +l1d-0 read 00004cfb5e6fc8c0 00 0003 03 0 [ScR] bb786e37d55629f0 +l1d-0 evict 000057ef223eb2c0 00 0011 01 [IcR] 460fca80430d4d95 +l2 write 000057ef223eb2c0 00 0009 01 1 [MdW(0001,07)] 460fca80430d4d95 +mem write 000057ef223eb2c0 -1 -001 -1 1 [MdW] 460fca80430d4d95 +l2 evict 000057ef223eb2c0 00 0009 01 [IcR(0001,07)] 460fca80430d4d95 +mem read 00003d1e08e9d280 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00003d1e08e9d280 01 0014 03 0 [McW(0001,07)] 0000000000000000 +l1d-0 write 00003d1e08e9d280 00 0010 00 0 [MdW] 961f2579a22ee527 +mem read 000019a40a160240 -1 -001 -1 1 [McW] a76d1bb85a4f194a +l2 read 000019a40a160240 00 0008 02 0 [ScW(0015,02)] a76d1bb85a4f194a +l1d-0 read 000019a40a160240 00 0009 02 0 [ScR] a76d1bb85a4f194a +l1d-1 read 00005c90ae19e9c0 00 0007 01 1 [MdW] 3782cdec714c3fb4 +l2 write 000008ededd7fd80 01 0009 01 1 [MdW(0026,01)] 650994f63b533953 +l1d-1 evict 000008ededd7fd80 00 0006 01 [IcR] 650994f63b533953 +mem read 0000fe2140a6f980 -1 -001 -1 1 [McW] 4e2ed36498da5bfc +l2 read 0000fe2140a6f980 00 0004 04 0 [ScW(0004,05)] 4e2ed36498da5bfc +l1d-1 read 0000fe2140a6f980 00 0006 01 0 [ScR] 4e2ed36498da5bfc +l1d-0 read 000000f97fae5cc0 00 0003 01 1 [ScR] fb933a96c629912c +l1d-1 evict 0000c2b04eebfcc0 00 0003 02 [IcR] aa640df3e7475762 +l1d-0 evict 000019a40a160240 00 0009 02 [IcR] a76d1bb85a4f194a +l2 evict 000019a40a160240 00 0008 02 [IcR(0015,02)] a76d1bb85a4f194a +mem read 0000c72e4af4f8c0 -1 -001 -1 1 [McW] 9dd6e27e91bc9863 +l2 read 0000c72e4af4f8c0 01 0000 04 0 [ScW(0015,02)] 9dd6e27e91bc9863 +l1d-1 read 0000c72e4af4f8c0 00 0003 02 0 [ScR] 9dd6e27e91bc9863 +l2 write 000028a2a5cc7780 00 0007 02 1 [MdW(0006,05)] c2b3bde410eeed99 +l1d-1 evict 000028a2a5cc7780 00 0014 02 [IcR] c2b3bde410eeed99 +l2 read 00004ed4d0955b80 00 0014 00 1 [SdW(0017,00)] 5d48e651e3307f1b +l1d-1 read 00004ed4d0955b80 00 0014 02 0 [ScR] 5d48e651e3307f1b +l1d-1 evict 00001fd6787ba100 00 0004 02 [IcR] 6ec02943a5ad4367 +l2 read 0000d8ad57bdad00 00 0020 01 1 [SdW(0024,05)] d54d77b5577490c8 +l1d-1 read 0000d8ad57bdad00 00 0004 02 0 [ScR] d54d77b5577490c8 +l1d-0 evict 00006cf58254d780 00 0014 03 [IcR] e82037124cab05c4 +l2 write 00006cf58254d780 01 0007 01 1 [MdW(0031,02)] e82037124cab05c4 +mem write 00006cf58254d780 -1 -001 -1 1 [MdW] e82037124cab05c4 +l2 evict 00006cf58254d780 01 0007 01 [IcR(0031,02)] e82037124cab05c4 +mem read 0000ffac00a71b80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ffac00a71b80 00 0025 03 0 [McW(0031,02)] 0000000000000000 +l1d-0 write 0000ffac00a71b80 00 0014 01 0 [MdW] 528f7b986ffeb18f +mem read 000019a40a160240 -1 -001 -1 1 [McW] a76d1bb85a4f194a +l2 read 000019a40a160240 00 0008 02 0 [McW(0003,06)] a76d1bb85a4f194a +l1d-0 write 000019a40a160240 00 0009 02 0 [MdW] 770f259328cec622 +l2 read 0000c1e40165d200 00 0030 02 1 [SdW(0010,05)] a09b433b028212d0 +l1d-0 read 0000c1e40165d200 00 0008 00 0 [ScR] a09b433b028212d0 +l1d-1 evict 000075fd554aed80 00 0006 03 [IcR] 96f8c40189bf5862 +l2 read 00006a5fbc380d80 01 0031 01 1 [MdW(0013,01)] 274f82841cd9a691 +l1d-1 write 00006a5fbc380d80 00 0006 03 0 [MdW] 52eb0cd4b20154b4 +l1d-0 read 0000fa408c35ba00 00 0008 02 1 [ScR] 7eec603efdcdea3b +l2 write 000054a53f80d8c0 00 0001 01 1 [MdW(0011,02)] ae229dd18a728847 +l1d-1 evict 000054a53f80d8c0 00 0003 03 [IcR] ae229dd18a728847 +l2 read 0000c66c607618c0 00 0023 02 1 [SdW(0014,07)] ecc19bfa60ae4cae +l1d-1 read 0000c66c607618c0 00 0003 03 0 [ScR] ecc19bfa60ae4cae +l1d-0 evict 00007eb184221700 00 0012 01 [IcR] 0bfcdc2096e02d44 +l2 write 00007eb184221700 00 0002 02 1 [MdW(0005,01)] 0bfcdc2096e02d44 +mem write 00007eb184221700 -1 -001 -1 1 [MdW] 0bfcdc2096e02d44 +l2 evict 00007eb184221700 00 0002 02 [IcR(0005,01)] 0bfcdc2096e02d44 +mem read 0000da7033404e80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000da7033404e80 00 0016 02 0 [McW(0005,01)] 0000000000000000 +l1d-0 write 0000da7033404e80 00 0010 01 0 [MdW] 562acabd71f8fdd8 +l2 write 0000015d1559b380 01 0021 03 1 [MdW(0030,05)] cd5095ef84be60be +l1d-1 evict 0000015d1559b380 00 0014 00 [IcR] cd5095ef84be60be +l1d-1 evict 0000c72e4af4f8c0 00 0003 02 [IcR] 9dd6e27e91bc9863 +l2 evict 0000c72e4af4f8c0 01 0000 04 [IcR(0015,02)] 9dd6e27e91bc9863 +mem read 00008a9bb333e780 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00008a9bb333e780 01 0022 00 0 [McW(0015,02)] 0000000000000000 +l1d-1 write 00008a9bb333e780 00 0014 00 0 [MdW] 1a1288c6d6f9e35f +l2 read 000048777e448ac0 01 0020 01 1 [McW(0008,03)] ebc6d4db1d9b7ded +l1d-0 write 000048777e448ac0 00 0011 03 0 [MdW] 32aa4a36ec8ffe4d +l2 write 0000106db33edf80 00 0006 03 1 [MdW(0019,00)] b7c493624d2586f1 +l1d-1 evict 0000106db33edf80 00 0014 03 [IcR] b7c493624d2586f1 +l2 read 0000015d1559b380 01 0021 03 1 [MdW(0030,05)] cd5095ef84be60be +l1d-1 write 0000015d1559b380 00 0014 03 0 [MdW] 37ba02bf31772584 +l1d-1 evict 00004f46a7d2ea80 00 0010 03 [IcR] 1d6b75778fa46c62 +l2 write 00004f46a7d2ea80 00 0020 02 1 [MdW(0008,04)] 1d6b75778fa46c62 +mem write 00004f46a7d2ea80 -1 -001 -1 1 [MdW] 1d6b75778fa46c62 +l2 evict 00004f46a7d2ea80 00 0020 02 [IcR(0008,04)] 1d6b75778fa46c62 +mem read 0000b1312a1f2f80 -1 -001 -1 1 [McW] db32e76b65f38b73 +l2 read 0000b1312a1f2f80 00 0028 02 0 [ScW(0008,04)] db32e76b65f38b73 +l1d-0 read 0000b1312a1f2f80 00 0014 02 0 [ScR] db32e76b65f38b73 +l1d-1 read 000099fa8471ba40 00 0009 01 1 [ScR] 9b4f9dd5637abf43 +l1d-0 evict 0000c8fa6d0f39c0 00 0007 03 [IcR] 6ba4d33d1d05c3e1 +l2 write 0000c8fa6d0f39c0 01 0011 03 1 [MdW(0006,02)] 6ba4d33d1d05c3e1 +mem write 0000c8fa6d0f39c0 -1 -001 -1 1 [MdW] 6ba4d33d1d05c3e1 +l2 evict 0000c8fa6d0f39c0 01 0011 03 [IcR(0006,02)] 6ba4d33d1d05c3e1 +mem read 0000acd63c8d1880 -1 -001 -1 1 [McW] fbd72a3c29e95637 +l2 read 0000acd63c8d1880 00 0017 03 0 [ScW(0006,02)] fbd72a3c29e95637 +l1d-0 read 0000acd63c8d1880 00 0002 01 0 [ScR] fbd72a3c29e95637 +l2 read 00004813c834cdc0 00 0025 01 1 [McW(0007,03)] 705c2dbf4c432cbe +l1d-0 write 00004813c834cdc0 00 0007 00 0 [MdW] 3992e1e5aacf6574 +l1d-1 evict 0000f88b44bf5840 00 0001 00 [IcR] 5835bf5c1572177d +l2 evict 0000f88b44bf5840 01 0027 00 [IcR(0022,02)] 5835bf5c1572177d +mem read 000065dc0cb58f00 -1 -001 -1 1 [McW] 01d6f903bd704355 +l2 read 000065dc0cb58f00 00 0010 00 0 [ScW(0022,02)] 01d6f903bd704355 +l1d-0 read 000065dc0cb58f00 00 0012 01 0 [ScR] 01d6f903bd704355 +l2 write 0000534534d814c0 00 0006 02 1 [MdW(0027,07)] efe31bf8541a673f +l1d-0 evict 0000534534d814c0 00 0003 00 [IcR] efe31bf8541a673f +l2 read 00009a461a9864c0 00 0019 00 1 [SdW(0024,03)] 8b973d84cfd7dcc4 +l1d-0 read 00009a461a9864c0 00 0003 00 0 [ScR] 8b973d84cfd7dcc4 +mem read 0000ba89bc350380 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ba89bc350380 01 0017 02 0 [McW(0011,06)] 0000000000000000 +l1d-0 write 0000ba89bc350380 00 0014 03 0 [MdW] f769e7273e7932c3 +l2 write 000039a6b2ebcd00 00 0001 00 1 [MdW(0003,04)] 3d554e47c9a0c003 +l1d-0 evict 000039a6b2ebcd00 00 0004 03 [IcR] 3d554e47c9a0c003 +l2 read 0000a462f1bb1500 00 0029 01 1 [SdW(0030,06)] 836865657f27e721 +l1d-0 read 0000a462f1bb1500 00 0004 03 0 [ScR] 836865657f27e721 +l1d-1 evict 000084af1bf9eb80 00 0014 01 [IcR] 2898ddc5bb04ad23 +l1d-1 evict 00005de844e94fc0 00 0015 02 [IcR] 81b80adc76842711 +l2 write 00005de844e94fc0 00 0010 01 1 [MdW(0000,04)] 81b80adc76842711 +mem write 00005de844e94fc0 -1 -001 -1 1 [MdW] 81b80adc76842711 +l2 evict 00005de844e94fc0 00 0010 01 [IcR(0000,04)] 81b80adc76842711 +mem read 0000deaf8d449780 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000deaf8d449780 00 0020 00 0 [McW(0000,04)] 0000000000000000 +l1d-1 write 0000deaf8d449780 00 0014 01 0 [MdW] 319bc7784dee1369 +mem read 0000848b6896ff40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000848b6896ff40 00 0010 01 0 [McW(0029,06)] 0000000000000000 +l1d-1 write 0000848b6896ff40 00 0013 00 0 [MdW] f0023461e82954bd +l1d-0 read 000000f97fae5cc0 00 0003 01 1 [ScR] fb933a96c629912c +l1d-0 read 00009a461a9864c0 00 0003 00 1 [ScR] 8b973d84cfd7dcc4 +mem write 000031e4a2646740 -1 -001 -1 1 [MdW] 613b6d57ad34e57a +l2 evict 000031e4a2646740 00 0031 01 [IcR(0027,01)] 613b6d57ad34e57a +mem read 0000c72e4af4f8c0 -1 -001 -1 1 [McW] 9dd6e27e91bc9863 +l2 read 0000c72e4af4f8c0 01 0000 04 0 [ScW(0027,01)] 9dd6e27e91bc9863 +l1d-1 read 0000c72e4af4f8c0 00 0003 02 0 [ScR] 9dd6e27e91bc9863 +l1d-0 read 000046663e4def00 00 0012 00 1 [ScR] e21542a5128e9ecb +l1d-0 read 0000045cce7b2a40 00 0009 03 1 [ScR] 23260c93a8186343 +l2 write 000090b2573a1240 01 0009 03 1 [MdW(0007,06)] a6b936148fd55125 +l1d-0 evict 000090b2573a1240 00 0009 00 [IcR] a6b936148fd55125 +l1d-1 evict 00004b1a05c8bfc0 00 0015 03 [IcR] 680b540ef8ac6223 +l2 write 00004b1a05c8bfc0 01 0019 00 1 [MdW(0021,00)] 680b540ef8ac6223 +mem write 00004b1a05c8bfc0 -1 -001 -1 1 [MdW] 680b540ef8ac6223 +l2 evict 00004b1a05c8bfc0 01 0019 00 [IcR(0021,00)] 680b540ef8ac6223 +mem read 0000af4203bc4640 -1 -001 -1 1 [McW] 8ec0b565fb3202a0 +l2 read 0000af4203bc4640 01 0005 02 0 [McW(0021,00)] 8ec0b565fb3202a0 +l1d-0 write 0000af4203bc4640 00 0009 00 0 [MdW] 122a0e9f67143c9d +mem write 0000534534d814c0 -1 -001 -1 1 [MdW] efe31bf8541a673f +l2 evict 0000534534d814c0 00 0006 02 [IcR(0027,07)] efe31bf8541a673f +mem read 000077988753abc0 -1 -001 -1 1 [McW] 267159d544344353 +l2 read 000077988753abc0 00 0015 03 0 [ScW(0027,07)] 267159d544344353 +l1d-0 read 000077988753abc0 00 0015 00 0 [ScR] 267159d544344353 +l1d-1 evict 00005066f9d0b480 00 0002 02 [IcR] 53940c35436b8a64 +l2 write 00005066f9d0b480 00 0026 02 1 [MdW(0026,07)] 53940c35436b8a64 +mem write 00005066f9d0b480 -1 -001 -1 1 [MdW] 53940c35436b8a64 +l2 evict 00005066f9d0b480 00 0026 02 [IcR(0026,07)] 53940c35436b8a64 +mem read 00002c1e14cbed40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00002c1e14cbed40 01 0021 02 0 [McW(0026,07)] 0000000000000000 +l1d-1 write 00002c1e14cbed40 00 0005 02 0 [MdW] b42a331ca26d20fc +mem write 000073703a455800 -1 -001 -1 1 [MdW] 9fc569fe6ed32a01 +l2 evict 000073703a455800 00 0004 02 [IcR(0012,02)] 9fc569fe6ed32a01 +mem read 0000ced5eac0d680 -1 -001 -1 1 [McW] 1d2194cf7fc214b2 +l2 read 0000ced5eac0d680 01 0007 00 0 [ScW(0012,02)] 1d2194cf7fc214b2 +l1d-0 read 0000ced5eac0d680 00 0010 03 0 [ScR] 1d2194cf7fc214b2 +l1d-0 read 000049afd5e02b40 00 0013 02 1 [MdW] 283b644b3a7a9886 +l1d-0 read 0000f17f98f480c0 00 0003 02 1 [MdW] 84e0e10794125a03 +l1d-0 read 0000ba89bc350380 00 0014 03 1 [MdW] f769e7273e7932c3 +l2 write 00003c52cd2e1f40 00 0007 03 1 [MdW(0030,03)] 254c1bb063a0705f +l1d-1 evict 00003c52cd2e1f40 00 0013 02 [IcR] 254c1bb063a0705f +mem write 000066c650c81940 -1 -001 -1 1 [MdW] e718d2e1df2aaa8e +l2 evict 000066c650c81940 01 0011 00 [IcR(0019,05)] e718d2e1df2aaa8e +mem read 000099c62b358f40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000099c62b358f40 01 0003 00 0 [McW(0019,05)] 0000000000000000 +l1d-1 write 000099c62b358f40 00 0013 02 0 [MdW] a9ad326afb910f17 +l2 write 00006588f907d5c0 00 0008 00 1 [MdW(0010,07)] bc6691b91abbe790 +l1d-1 evict 00006588f907d5c0 00 0007 00 [IcR] bc6691b91abbe790 +mem read 0000ecb652ef69c0 -1 -001 -1 1 [McW] eb59c87e9e41fe96 +l2 read 0000ecb652ef69c0 01 0012 02 0 [ScW(0029,07)] eb59c87e9e41fe96 +l1d-1 read 0000ecb652ef69c0 00 0007 00 0 [ScR] eb59c87e9e41fe96 +l1d-0 read 0000803bdde89900 00 0004 00 1 [MdW] 2fcbd7fcdbfe874e +l1i-1 read 0000bfe0e32f0740 00 0013 00 1 [ScR] f6878d5659a4c4e3 +l1d-1 evict 0000d69a075d9a00 00 0008 01 [IcR] b97446909df2721a +l1d-0 evict 0000418397142480 00 0002 00 [IcR] 30dbb666b2eba234 +l2 write 0000418397142480 01 0006 00 1 [MdW(0007,01)] 30dbb666b2eba234 +mem write 0000418397142480 -1 -001 -1 1 [MdW] 30dbb666b2eba234 +l2 evict 0000418397142480 01 0006 00 [IcR(0007,01)] 30dbb666b2eba234 +mem read 0000658c16003e00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000658c16003e00 00 0018 00 0 [McW(0007,01)] 0000000000000000 +l1d-1 write 0000658c16003e00 00 0008 01 0 [MdW] a2cb010f62bbec6b +mem write 000066d344c0bd00 -1 -001 -1 1 [MdW] c13adece18482753 +l2 evict 000066d344c0bd00 01 0004 01 [IcR(0009,04)] c13adece18482753 +mem read 00002c5f0c6b7c40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00002c5f0c6b7c40 00 0021 01 0 [McW(0009,04)] 0000000000000000 +l1d-0 write 00002c5f0c6b7c40 00 0001 02 0 [MdW] aad8417bcd3cefeb +l1d-0 evict 00004cfb5e6fc8c0 00 0003 03 [IcR] bb786e37d55629f0 +mem read 0000534534d814c0 -1 -001 -1 1 [McW] efe31bf8541a673f +l2 read 0000534534d814c0 00 0006 01 0 [ScW(0026,02)] efe31bf8541a673f +l1d-0 read 0000534534d814c0 00 0003 03 0 [ScR] efe31bf8541a673f +l1d-0 evict 000052d61b6d5a00 00 0008 03 [IcR] e775afa1004c0eb4 +l1d-0 evict 000049889647d200 00 0008 01 [IcR] a5eee774450ed3f3 +l2 write 000049889647d200 00 0022 01 1 [MdW(0023,05)] a5eee774450ed3f3 +mem write 000049889647d200 -1 -001 -1 1 [MdW] a5eee774450ed3f3 +l2 evict 000049889647d200 00 0022 01 [IcR(0023,05)] a5eee774450ed3f3 +mem read 0000c7e07b801e00 -1 -001 -1 1 [McW] edaed707c9f0d11e +l2 read 0000c7e07b801e00 01 0001 03 0 [ScW(0023,05)] edaed707c9f0d11e +l1d-0 read 0000c7e07b801e00 00 0008 03 0 [ScR] edaed707c9f0d11e +mem read 00004ff679346ec0 -1 -001 -1 1 [McW] 69165a7d7db29609 +l2 read 00004ff679346ec0 00 0024 02 0 [ScW(0008,02)] 69165a7d7db29609 +l1d-1 read 00004ff679346ec0 00 0011 03 0 [ScR] 69165a7d7db29609 +l1d-1 read 0000d8ad57bdad00 00 0004 02 1 [ScR] d54d77b5577490c8 +l2 write 00002feadfa86d40 01 0021 01 1 [MdW(0004,01)] b433bdc2cb8d107d +l1d-0 evict 00002feadfa86d40 00 0005 00 [IcR] b433bdc2cb8d107d +l1d-1 evict 0000658c16003e00 00 0008 01 [IcR] a2cb010f62bbec6b +l2 write 0000658c16003e00 00 0018 00 1 [MdW(0007,01)] a2cb010f62bbec6b +mem write 0000658c16003e00 -1 -001 -1 1 [MdW] a2cb010f62bbec6b +l2 evict 0000658c16003e00 00 0018 00 [IcR(0007,01)] a2cb010f62bbec6b +mem read 0000033616c7e540 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000033616c7e540 00 0022 01 0 [McW(0007,01)] 0000000000000000 +l1d-0 write 0000033616c7e540 00 0005 00 0 [MdW] facf582df48278d4 +l1d-1 write 0000e9f0c2ae0600 00 0008 00 1 [MdW] 0f186a61fffb27b2 +l1d-1 read 0000fe2140a6f980 00 0006 01 1 [ScR] 4e2ed36498da5bfc +l2 write 00005549adeaf440 01 0014 00 1 [MdW(0009,07)] f710a3fc6c88c778 +l1d-0 evict 00005549adeaf440 00 0001 03 [IcR] f710a3fc6c88c778 +l2 evict 000052d61b6d5a00 01 0013 00 [IcR(0000,06)] e775afa1004c0eb4 +mem read 0000c86d27a3d040 -1 -001 -1 1 [McW] b7fe082719be048b +l2 read 0000c86d27a3d040 00 0002 02 0 [McW(0000,06)] b7fe082719be048b +l1d-0 write 0000c86d27a3d040 00 0001 03 0 [MdW] 4e927fc3199ae8b9 +mem write 0000c477f06039c0 -1 -001 -1 1 [MdW] c6426fc9e8124d7f +l2 evict 0000c477f06039c0 00 0016 00 [IcR(0005,02)] c6426fc9e8124d7f +mem read 000096f82eb883c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000096f82eb883c0 01 0024 00 0 [McW(0005,02)] 0000000000000000 +l1d-0 write 000096f82eb883c0 00 0015 03 0 [MdW] 08bb4ec8dd33586c +l2 write 000053c37f465900 00 0017 01 1 [MdW(0014,03)] 1d46a92797eafd72 +l1d-1 evict 000053c37f465900 00 0004 03 [IcR] 1d46a92797eafd72 +l2 read 00001fd6787ba100 00 0007 00 1 [SdW(0010,06)] 6ec02943a5ad4367 +l1d-1 read 00001fd6787ba100 00 0004 03 0 [ScR] 6ec02943a5ad4367 +l1d-1 read 0000df0f11cce0c0 00 0003 00 1 [MdW] b0fddea366d09da1 +l2 write 000063036c943940 01 0022 01 1 [MdW(0014,02)] 00ee9e7cb9678a31 +l1d-0 evict 000063036c943940 00 0005 02 [IcR] 00ee9e7cb9678a31 +mem write 0000136b8cb094c0 -1 -001 -1 1 [MdW] 93f725490a41ea1d +l2 evict 0000136b8cb094c0 01 0030 01 [IcR(0010,02)] 93f725490a41ea1d +mem read 00001b7163d48d40 -1 -001 -1 1 [McW] da68687e2447a125 +l2 read 00001b7163d48d40 01 0022 02 0 [ScW(0010,02)] da68687e2447a125 +l1d-0 read 00001b7163d48d40 00 0005 02 0 [ScR] da68687e2447a125 +l1d-0 evict 00002c011c660300 00 0012 03 [IcR] aacfbf30c579992e +l2 evict 00002c011c660300 00 0012 01 [IcR(0021,07)] aacfbf30c579992e +mem read 000072dc5902ef00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000072dc5902ef00 01 0019 00 0 [McW(0021,07)] 0000000000000000 +l1d-0 write 000072dc5902ef00 00 0012 03 0 [MdW] 1c15e2bf4e607d4d +l1d-0 read 00004813c834cdc0 00 0007 00 1 [MdW] 3992e1e5aacf6574 +l1d-0 read 00001ad58832f640 00 0009 01 1 [MdW] f9c176745781e0be +l1d-1 evict 0000d090b8181100 00 0004 01 [IcR] 916619a5f0fd52ba +l1d-1 evict 0000e21b98b426c0 00 0011 01 [IcR] efda01f1f1ed6559 +mem write 0000e21b98b426c0 -1 -001 -1 1 [MdW] efda01f1f1ed6559 +l2 evict 0000e21b98b426c0 00 0013 01 [IcR(0010,01)] efda01f1f1ed6559 +mem read 00002e867eb6a900 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00002e867eb6a900 01 0004 01 0 [McW(0010,01)] 0000000000000000 +l1d-1 write 00002e867eb6a900 00 0004 01 0 [MdW] e69494168320e39a +l1d-0 read 0000bbc9c32465c0 00 0007 02 1 [MdW] a06ae50259dfb6f1 +l1d-0 read 0000232a73ed2040 00 0001 00 1 [MdW] f06374fe1abab634 +l1d-1 evict 0000780ab040b980 00 0006 00 [IcR] 0968e82e4bb02b18 +l2 read 000008ededd7fd80 01 0009 01 1 [SdW(0026,01)] 650994f63b533953 +l1d-1 read 000008ededd7fd80 00 0006 00 0 [ScR] 650994f63b533953 +l1d-0 evict 00001e12c123a180 00 0006 00 [IcR] ff1d2beb43b9b33b +l2 read 0000a6f9f0803d80 00 0010 02 1 [MdW(0023,06)] cd2840a4925c9683 +l1d-0 write 0000a6f9f0803d80 00 0006 00 0 [MdW] 5719b2c00ecac89a +l1d-0 read 000072dc5902ef00 00 0012 03 1 [MdW] 1c15e2bf4e607d4d +l1d-1 read 00001ffbc4ff1a40 00 0009 00 1 [MdW] 08bf63be6c7befa2 +l1d-1 read 0000fe2140a6f980 00 0006 01 1 [ScR] 4e2ed36498da5bfc +l1d-0 read 00002b4766af8580 00 0006 01 1 [MdW] 429db08a0998b047 +l2 write 000034ffc92a8040 01 0016 02 1 [MdW(0028,00)] c7c6f4c97b2bfb9c +l1d-0 evict 000034ffc92a8040 00 0001 01 [IcR] c7c6f4c97b2bfb9c +mem read 00001b6fc10d9840 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00001b6fc10d9840 00 0027 02 0 [McW(0029,01)] 0000000000000000 +l1d-0 write 00001b6fc10d9840 00 0001 01 0 [MdW] 18f90fae5487f2e3 +l2 write 000052a3218a7f80 00 0007 04 1 [MdW(0002,07)] c0ebe0eb15ae3e1e +l1d-0 evict 000052a3218a7f80 00 0014 00 [IcR] c0ebe0eb15ae3e1e +l1d-0 evict 0000f66f9acff100 00 0004 02 [IcR] 58a2c7cc8b63bf01 +l2 write 0000f66f9acff100 00 0030 03 1 [MdW(0029,04)] 58a2c7cc8b63bf01 +mem write 0000f66f9acff100 -1 -001 -1 1 [MdW] 58a2c7cc8b63bf01 +l2 evict 0000f66f9acff100 00 0030 03 [IcR(0029,04)] 58a2c7cc8b63bf01 +mem read 000092e2f479cf80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000092e2f479cf80 01 0006 00 0 [McW(0029,04)] 0000000000000000 +l1d-0 write 000092e2f479cf80 00 0014 00 0 [MdW] 33c020afbf13af39 +l1d-1 read 000044ca9c649400 00 0000 02 1 [ScR] 58da3250723bdd77 +mem write 0000d57075091b80 -1 -001 -1 1 [MdW] 3dc17f34a5250850 +l2 evict 0000d57075091b80 01 0029 02 [IcR(0027,02)] 3dc17f34a5250850 +mem read 00006cfd00fe8ac0 -1 -001 -1 1 [McW] b025b1f23a5ed092 +l2 read 00006cfd00fe8ac0 01 0007 01 0 [ScW(0027,02)] b025b1f23a5ed092 +l1i-1 read 00006cfd00fe8ac0 00 0011 00 0 [ScR] b025b1f23a5ed092 +l2 write 00003f232f338000 00 0021 00 1 [MdW(0000,03)] 304bee8ad7731636 +l1d-0 evict 00003f232f338000 00 0000 01 [IcR] 304bee8ad7731636 +l2 evict 0000d090b8181100 01 0017 01 [IcR(0006,04)] 916619a5f0fd52ba +mem read 0000b304f6dcc000 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000b304f6dcc000 01 0016 03 0 [McW(0006,04)] 0000000000000000 +l1d-0 write 0000b304f6dcc000 00 0000 01 0 [MdW] fb80ed3c4e7012f9 +l1d-1 evict 00007a0ccec77d00 00 0004 00 [IcR] 5bb323ab7bff0284 +mem read 00000539d65d1d00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00000539d65d1d00 00 0029 00 0 [McW(0005,04)] 0000000000000000 +l1d-1 write 00000539d65d1d00 00 0004 00 0 [MdW] e278ab4481dc5d33 +l1d-1 read 000059efb9532e80 00 0010 01 1 [MdW] db19e43f15c6da9f +l1d-1 write 0000ed89583b9580 00 0006 02 1 [MdW] 07eff6d95d979fe7 +l1d-0 read 000046663e4def00 00 0012 00 1 [ScR] e21542a5128e9ecb +l2 write 00007600dddbb740 01 0025 03 1 [MdW(0012,01)] 03513838cc9cbb95 +l1d-1 evict 00007600dddbb740 00 0013 03 [IcR] 03513838cc9cbb95 +l1d-0 evict 0000c97dfb94fd80 00 0006 02 [IcR] 2fba7336b9505ed4 +l2 evict 0000c97dfb94fd80 01 0020 02 [IcR(0016,06)] 2fba7336b9505ed4 +mem read 0000522d13b5a340 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000522d13b5a340 01 0007 03 0 [McW(0016,06)] 0000000000000000 +l1d-1 write 0000522d13b5a340 00 0013 03 0 [MdW] 869ff1490741a150 +l1d-1 evict 0000df16e7f1d400 00 0000 00 [IcR] a67a11e1cf49b77b +l2 read 00004d48d3ab6400 00 0025 00 1 [SdW(0005,00)] 0bad902dc5dbfa0f +l1d-1 read 00004d48d3ab6400 00 0000 00 0 [ScR] 0bad902dc5dbfa0f +l2 write 0000ffb0ec26c4c0 00 0027 01 1 [MdW(0019,03)] a90b5754acfcac28 +l1d-1 evict 0000ffb0ec26c4c0 00 0003 01 [IcR] a90b5754acfcac28 +l2 read 00006e7158c618c0 01 0006 01 1 [McW(0019,04)] 5179e06e6d1134ab +l1d-1 write 00006e7158c618c0 00 0003 01 0 [MdW] 611cde0d9a00a656 +l2 write 0000afd2a9e735c0 01 0005 00 1 [MdW(0026,04)] cd8ad056003b74ce +l1d-1 evict 0000afd2a9e735c0 00 0007 03 [IcR] cd8ad056003b74ce +l1d-0 evict 0000acd63c8d1880 00 0002 01 [IcR] fbd72a3c29e95637 +l2 evict 0000acd63c8d1880 00 0017 03 [IcR(0006,02)] fbd72a3c29e95637 +mem read 0000494fead535c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000494fead535c0 00 0020 02 0 [McW(0006,02)] 0000000000000000 +l1d-1 write 0000494fead535c0 00 0007 03 0 [MdW] 37a5ac998ceb943a +l1d-1 read 0000c72e4af4f8c0 00 0003 02 1 [ScR] 9dd6e27e91bc9863 +l2 write 0000172ca7421240 01 0026 01 1 [MdW(0007,04)] 322ca77b5b927467 +l1d-1 evict 0000172ca7421240 00 0009 02 [IcR] 322ca77b5b927467 +mem write 0000b78d2a790900 -1 -001 -1 1 [MdW] aedb2159a3c4680e +l2 evict 0000b78d2a790900 01 0011 02 [IcR(0007,00)] aedb2159a3c4680e +mem read 000062165bf49640 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000062165bf49640 01 0020 02 0 [McW(0007,00)] 0000000000000000 +l1d-1 write 000062165bf49640 00 0009 02 0 [MdW] 7f4ec480dca7f893 +l2 write 00007121fd387e80 00 0004 03 1 [MdW(0021,01)] 537270cd2e4bdbd7 +l1d-0 evict 00007121fd387e80 00 0010 02 [IcR] 537270cd2e4bdbd7 +l1d-1 evict 0000fe2140a6f980 00 0006 01 [IcR] 4e2ed36498da5bfc +l2 evict 0000fe2140a6f980 00 0004 04 [IcR(0004,05)] 4e2ed36498da5bfc +mem read 0000ea018319b280 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ea018319b280 01 0029 02 0 [McW(0004,05)] 0000000000000000 +l1d-0 write 0000ea018319b280 00 0010 02 0 [MdW] 2de9db08d13b3d82 +l2 read 0000ee65dae92ec0 00 0019 02 1 [SdW(0003,01)] 330bcb33c3315b47 +l1d-1 read 0000ee65dae92ec0 00 0011 01 0 [ScR] 330bcb33c3315b47 +l1d-0 evict 0000fa408c35ba00 00 0008 02 [IcR] 7eec603efdcdea3b +l2 evict 0000fa408c35ba00 01 0031 00 [IcR(0028,01)] 7eec603efdcdea3b +mem read 000087be71519540 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000087be71519540 00 0023 03 0 [McW(0028,01)] 0000000000000000 +l1d-1 write 000087be71519540 00 0005 03 0 [MdW] 034f55956b902d10 +l1d-0 read 000072dc5902ef00 00 0012 03 1 [MdW] 1c15e2bf4e607d4d +mem write 00007a76f01141c0 -1 -001 -1 1 [MdW] 4f7e9691e6e6e9e9 +l2 evict 00007a76f01141c0 00 0009 04 [IcR(0009,06)] 4f7e9691e6e6e9e9 +mem read 000057ef223eb2c0 -1 -001 -1 1 [McW] 460fca80430d4d95 +l2 read 000057ef223eb2c0 01 0020 03 0 [ScW(0009,06)] 460fca80430d4d95 +l1d-0 read 000057ef223eb2c0 00 0011 01 0 [ScR] 460fca80430d4d95 +mem write 000028a2a5cc7780 -1 -001 -1 1 [MdW] c2b3bde410eeed99 +l2 evict 000028a2a5cc7780 00 0007 02 [IcR(0006,05)] c2b3bde410eeed99 +mem read 00005066f9d0b480 -1 -001 -1 1 [McW] 53940c35436b8a64 +l2 read 00005066f9d0b480 00 0026 02 0 [ScW(0006,05)] 53940c35436b8a64 +l1d-1 read 00005066f9d0b480 00 0002 00 0 [ScR] 53940c35436b8a64 +l1d-0 read 0000232a73ed2040 00 0001 00 1 [MdW] f06374fe1abab634 +l1d-0 read 0000942a1345ef40 00 0013 03 1 [MdW] b82b61ab6fc7eaf4 +l2 write 00003174403caf00 00 0014 02 1 [MdW(0021,06)] affcf428234efd47 +l1d-0 evict 00003174403caf00 00 0012 02 [IcR] affcf428234efd47 +l2 read 0000d9b688e86700 00 0000 01 1 [McW(0008,01)] c311a871a624c062 +l1d-0 write 0000d9b688e86700 00 0012 02 0 [MdW] 717b944cf304d60e +l2 write 00003f02ff55a000 00 0023 01 1 [MdW(0018,06)] 1a4db79974495d9b +l1d-1 evict 00003f02ff55a000 00 0000 01 [IcR] 1a4db79974495d9b +l1d-0 evict 0000d9b688e86700 00 0012 02 [IcR] 717b944cf304d60e +l2 write 0000d9b688e86700 00 0000 01 1 [MdW(0008,01)] 717b944cf304d60e +mem write 0000d9b688e86700 -1 -001 -1 1 [MdW] 717b944cf304d60e +l2 evict 0000d9b688e86700 00 0000 01 [IcR(0008,01)] 717b944cf304d60e +mem read 0000160ac4593000 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000160ac4593000 01 0002 02 0 [McW(0008,01)] 0000000000000000 +l1d-1 write 0000160ac4593000 00 0000 01 0 [MdW] fdc83fada3a15564 +l1d-1 read 0000ed89583b9580 00 0006 02 1 [MdW] 07eff6d95d979fe7 +l1d-0 read 000019a40a160240 00 0009 02 1 [MdW] 770f259328cec622 +l1d-0 evict 0000045cce7b2a40 00 0009 03 [IcR] 23260c93a8186343 +l2 evict 0000045cce7b2a40 01 0023 03 [IcR(0023,04)] 23260c93a8186343 +mem read 0000ade5546e9640 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ade5546e9640 01 0027 00 0 [McW(0023,04)] 0000000000000000 +l1d-0 write 0000ade5546e9640 00 0009 03 0 [MdW] 972057e2a2e60fe7 +l1d-1 evict 0000d8ad57bdad00 00 0004 02 [IcR] d54d77b5577490c8 +l2 read 00008aa559520900 01 0024 02 1 [SdW(0025,07)] 4d6a292f5a35e768 +l1d-1 read 00008aa559520900 00 0004 02 0 [ScR] 4d6a292f5a35e768 +l2 write 000035b33dc0d400 00 0003 00 1 [MdW(0013,06)] b93463c7c6882c2d +l1d-0 evict 000035b33dc0d400 00 0000 02 [IcR] b93463c7c6882c2d +l1d-1 evict 0000c97be4cb1a40 00 0009 03 [IcR] 2b268cabf1896c5b +l2 write 0000c97be4cb1a40 00 0024 00 1 [MdW(0000,02)] 2b268cabf1896c5b +mem write 0000c97be4cb1a40 -1 -001 -1 1 [MdW] 2b268cabf1896c5b +l2 evict 0000c97be4cb1a40 00 0024 00 [IcR(0000,02)] 2b268cabf1896c5b +mem read 0000cac81c633400 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000cac81c633400 00 0029 03 0 [McW(0000,02)] 0000000000000000 +l1d-0 write 0000cac81c633400 00 0000 02 0 [MdW] 29a7f6150c3dce9f +l1d-0 evict 000048777e448ac0 00 0011 03 [IcR] 32aa4a36ec8ffe4d +l2 write 000048777e448ac0 01 0020 01 1 [MdW(0008,03)] 32aa4a36ec8ffe4d +mem write 000048777e448ac0 -1 -001 -1 1 [MdW] 32aa4a36ec8ffe4d +l2 evict 000048777e448ac0 01 0020 01 [IcR(0008,03)] 32aa4a36ec8ffe4d +mem read 00000701e403e980 -1 -001 -1 1 [McW] a2b07763fc09116e +l2 read 00000701e403e980 00 0013 01 0 [ScW(0008,03)] a2b07763fc09116e +l1d-0 read 00000701e403e980 00 0006 02 0 [ScR] a2b07763fc09116e +l2 write 00003d1e08e9d280 01 0014 03 1 [MdW(0001,07)] 961f2579a22ee527 +l1d-0 evict 00003d1e08e9d280 00 0010 00 [IcR] 961f2579a22ee527 +mem write 00006bb87d1516c0 -1 -001 -1 1 [MdW] 8ad9943922ec9dad +l2 evict 00006bb87d1516c0 00 0012 02 [IcR(0025,05)] 8ad9943922ec9dad +mem read 000014810cf26a80 -1 -001 -1 1 [McW] dd8f7f397459bd40 +l2 read 000014810cf26a80 01 0020 01 0 [McW(0025,05)] dd8f7f397459bd40 +l1d-0 write 000014810cf26a80 00 0010 00 0 [MdW] 451f239bfe0305a6 +l2 read 000008ededd7fd80 01 0009 01 1 [MdW(0026,01)] 650994f63b533953 +l1d-1 write 000008ededd7fd80 00 0006 00 0 [MdW] f7107428c77d814b +l1d-0 read 00001b7163d48d40 00 0005 02 1 [ScR] da68687e2447a125 +l1d-1 evict 00007e3437831800 00 0000 03 [IcR] 6b9d76bb27c3ffa3 +l1d-0 evict 0000232a73ed2040 00 0001 00 [IcR] f06374fe1abab634 +l2 write 0000232a73ed2040 00 0013 00 1 [MdW(0023,07)] f06374fe1abab634 +mem write 0000232a73ed2040 -1 -001 -1 1 [MdW] f06374fe1abab634 +l2 evict 0000232a73ed2040 00 0013 00 [IcR(0023,07)] f06374fe1abab634 +mem read 000073703a455800 -1 -001 -1 1 [McW] 9fc569fe6ed32a01 +l2 read 000073703a455800 01 0011 00 0 [McW(0023,07)] 9fc569fe6ed32a01 +l1d-1 write 000073703a455800 00 0000 03 0 [MdW] 482933aa12281cab +l1d-1 evict 0000c79b07073dc0 00 0007 02 [IcR] dc55730c9000f4d6 +mem read 0000e0625ebdd9c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e0625ebdd9c0 00 0023 04 0 [McW(0011,00)] 0000000000000000 +l1d-1 write 0000e0625ebdd9c0 00 0007 02 0 [MdW] 85ad2d90d56309f8 +l2 write 0000da7033404e80 00 0016 02 1 [MdW(0005,01)] 562acabd71f8fdd8 +l1d-0 evict 0000da7033404e80 00 0010 01 [IcR] 562acabd71f8fdd8 +l2 read 000011abc3e7fe80 00 0023 00 1 [ScW(0018,05)] d8e6dec1c6caebeb +l1d-0 read 000011abc3e7fe80 00 0010 01 0 [ScR] d8e6dec1c6caebeb +l1d-0 read 000057ef223eb2c0 00 0011 01 1 [ScR] 460fca80430d4d95 +l1d-0 read 0000a462f1bb1500 00 0004 03 1 [ScR] 836865657f27e721 +mem write 000090b2573a1240 -1 -001 -1 1 [MdW] a6b936148fd55125 +l2 evict 000090b2573a1240 01 0009 03 [IcR(0007,06)] a6b936148fd55125 +mem read 0000acd63c8d1880 -1 -001 -1 1 [McW] fbd72a3c29e95637 +l2 read 0000acd63c8d1880 00 0017 03 0 [ScW(0007,06)] fbd72a3c29e95637 +l1d-0 read 0000acd63c8d1880 00 0002 00 0 [ScR] fbd72a3c29e95637 +l1d-1 evict 00001fd6787ba100 00 0004 03 [IcR] 6ec02943a5ad4367 +mem read 0000d090b8181100 -1 -001 -1 1 [McW] 916619a5f0fd52ba +l2 read 0000d090b8181100 01 0017 01 0 [ScW(0013,00)] 916619a5f0fd52ba +l1d-1 read 0000d090b8181100 00 0004 03 0 [ScR] 916619a5f0fd52ba +l1d-0 evict 000000f97fae5cc0 00 0003 01 [IcR] fb933a96c629912c +mem write 000000f97fae5cc0 -1 -001 -1 1 [MdW] fb933a96c629912c +l2 evict 000000f97fae5cc0 00 0003 01 [IcR(0021,02)] fb933a96c629912c +mem read 00008372e7409080 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00008372e7409080 00 0025 04 0 [McW(0021,02)] 0000000000000000 +l1d-1 write 00008372e7409080 00 0002 02 0 [MdW] 88ed011c5c3a57e0 +l1d-0 evict 0000adfec432bac0 00 0011 02 [IcR] 59f49d91de97aae8 +l2 evict 0000adfec432bac0 01 0000 00 [IcR(0031,00)] 59f49d91de97aae8 +mem read 0000eeb339250a80 -1 -001 -1 1 [McW] baaf248a8b7b28a3 +l2 read 0000eeb339250a80 01 0022 03 0 [ScW(0031,00)] baaf248a8b7b28a3 +l1d-1 read 0000eeb339250a80 00 0010 03 0 [ScR] baaf248a8b7b28a3 +l1d-1 read 0000df0f11cce0c0 00 0003 00 1 [MdW] b0fddea366d09da1 +l1i-1 read 00006980d04a3400 00 0000 00 1 [ScR] 7ef963a07731ba85 +l2 write 0000af4203bc4640 01 0005 02 1 [MdW(0021,00)] 122a0e9f67143c9d +l1d-0 evict 0000af4203bc4640 00 0009 00 [IcR] 122a0e9f67143c9d +mem read 0000045cce7b2a40 -1 -001 -1 1 [McW] 23260c93a8186343 +l2 read 0000045cce7b2a40 00 0030 03 0 [ScW(0022,00)] 23260c93a8186343 +l1d-0 read 0000045cce7b2a40 00 0009 00 0 [ScR] 23260c93a8186343 +l1d-1 evict 0000bfe0e32f0740 00 0013 01 [IcR] f6878d5659a4c4e3 +mem write 000026d8a5685e00 -1 -001 -1 1 [MdW] ead7b1b4f2b53fe5 +l2 evict 000026d8a5685e00 01 0027 01 [IcR(0020,05)] ead7b1b4f2b53fe5 +mem read 0000ce808c85df40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ce808c85df40 00 0019 03 0 [McW(0020,05)] 0000000000000000 +l1d-1 write 0000ce808c85df40 00 0013 01 0 [MdW] 5d5610addc83f590 +l2 read 000065dc0cb58f00 00 0010 00 1 [McW(0022,02)] 01d6f903bd704355 +l1d-0 write 000065dc0cb58f00 00 0012 01 0 [MdW] f8020fdd00e928cc +l2 write 0000ffac00a71b80 00 0025 03 1 [MdW(0031,02)] 528f7b986ffeb18f +l1d-0 evict 0000ffac00a71b80 00 0014 01 [IcR] 528f7b986ffeb18f +mem read 0000ddee5cb58780 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ddee5cb58780 01 0003 04 0 [McW(0025,03)] 0000000000000000 +l1d-0 write 0000ddee5cb58780 00 0014 01 0 [MdW] 3c3b4da5f14e9285 +l2 write 00005c90ae19e9c0 00 0002 00 1 [MdW(0029,02)] 3782cdec714c3fb4 +l1d-1 evict 00005c90ae19e9c0 00 0007 01 [IcR] 3782cdec714c3fb4 +l2 read 0000afd2a9e735c0 01 0005 00 1 [SdW(0026,04)] cd8ad056003b74ce +l1d-1 read 0000afd2a9e735c0 00 0007 01 0 [ScR] cd8ad056003b74ce +l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] f8020fdd00e928cc +l2 write 000057907407aac0 00 0008 03 1 [MdW(0004,07)] 4143fd547c0ab069 +l1d-1 evict 000057907407aac0 00 0011 00 [IcR] 4143fd547c0ab069 +mem write 0000c194bc8acb40 -1 -001 -1 1 [MdW] b2a2ff4da4c2c04b +l2 evict 0000c194bc8acb40 01 0003 01 [IcR(0016,00)] b2a2ff4da4c2c04b +mem read 0000c8ee96a39ac0 -1 -001 -1 1 [McW] 020b007dc30de857 +l2 read 0000c8ee96a39ac0 00 0028 03 0 [ScW(0016,00)] 020b007dc30de857 +l1d-1 read 0000c8ee96a39ac0 00 0011 00 0 [ScR] 020b007dc30de857 +l2 write 0000848b6896ff40 00 0010 01 1 [MdW(0029,06)] f0023461e82954bd +l1d-1 evict 0000848b6896ff40 00 0013 00 [IcR] f0023461e82954bd +l2 read 0000bfe0e32f0740 01 0007 02 1 [SdW(0031,01)] f6878d5659a4c4e3 +l1d-1 read 0000bfe0e32f0740 00 0013 00 0 [ScR] f6878d5659a4c4e3 +l2 evict 0000e5a32a13e780 00 0019 01 [IcR(0005,07)] 2ffc914fca61ecc0 +mem read 000018c9dccfc840 -1 -001 -1 1 [McW] 7bdfa890c0ce385d +l2 read 000018c9dccfc840 00 0011 00 0 [McW(0005,07)] 7bdfa890c0ce385d +l1d-0 write 000018c9dccfc840 00 0001 00 0 [MdW] 995adc99eb8dd0e4 +l2 write 0000198865cee000 01 0015 03 1 [MdW(0018,07)] a4864eeab5efaace +l1d-0 evict 0000198865cee000 00 0000 00 [IcR] a4864eeab5efaace +l1d-1 evict 00006e7158c618c0 00 0003 01 [IcR] 611cde0d9a00a656 +l2 write 00006e7158c618c0 01 0006 01 1 [MdW(0019,04)] 611cde0d9a00a656 +mem write 00006e7158c618c0 -1 -001 -1 1 [MdW] 611cde0d9a00a656 +l2 evict 00006e7158c618c0 01 0006 01 [IcR(0019,04)] 611cde0d9a00a656 +mem read 000042cda8d19c00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000042cda8d19c00 01 0018 03 0 [McW(0019,04)] 0000000000000000 +l1d-0 write 000042cda8d19c00 00 0000 00 0 [MdW] 85c9b01aff50e505 +l1d-1 read 0000df0f11cce0c0 00 0003 00 1 [MdW] b0fddea366d09da1 +l2 write 0000bd16375b9000 00 0030 00 1 [MdW(0001,02)] 01729ac3b5b468ad +l1d-0 evict 0000bd16375b9000 00 0000 03 [IcR] 01729ac3b5b468ad +mem read 0000fa4efe47a000 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000fa4efe47a000 00 0009 00 0 [McW(0028,04)] 0000000000000000 +l1d-0 write 0000fa4efe47a000 00 0000 03 0 [MdW] 3b164b6a912a12f6 +l2 read 00004cfb5e6fc8c0 00 0002 01 1 [SdW(0020,02)] bb786e37d55629f0 +l1d-0 read 00004cfb5e6fc8c0 00 0003 01 0 [ScR] bb786e37d55629f0 +l1i-1 read 00006980d04a3400 00 0000 00 1 [ScR] 7ef963a07731ba85 +l1d-0 evict 0000750cdfd9ed40 00 0005 01 [IcR] d70a3a98f65651fb +mem write 00006588f907d5c0 -1 -001 -1 1 [MdW] bc6691b91abbe790 +l2 evict 00006588f907d5c0 00 0008 00 [IcR(0010,07)] bc6691b91abbe790 +mem read 0000ba16e8b8b540 -1 -001 -1 1 [McW] 3de612c8e734de20 +l2 read 0000ba16e8b8b540 01 0011 02 0 [ScW(0010,07)] 3de612c8e734de20 +l1d-0 read 0000ba16e8b8b540 00 0005 01 0 [ScR] 3de612c8e734de20 +l1d-0 read 00009a603343d580 00 0006 03 1 [ScR] 75aae8a3bba85efe +l2 read 0000acd63c8d1880 00 0017 03 1 [McW(0007,06)] fbd72a3c29e95637 +l1d-0 write 0000acd63c8d1880 00 0002 00 0 [MdW] 9cf972ea02adcd4f +mem write 000093de24a554c0 -1 -001 -1 1 [MdW] a61665acf2792f66 +l2 evict 000093de24a554c0 01 0006 02 [IcR(0003,07)] a61665acf2792f66 +mem read 0000d9b688e86700 -1 -001 -1 1 [McW] 717b944cf304d60e +l2 read 0000d9b688e86700 01 0031 00 0 [ScW(0003,07)] 717b944cf304d60e +l1d-0 read 0000d9b688e86700 00 0012 02 0 [ScR] 717b944cf304d60e +l2 read 0000848b6896ff40 00 0010 01 1 [SdW(0029,06)] f0023461e82954bd +l1d-0 read 0000848b6896ff40 00 0013 00 0 [ScR] f0023461e82954bd +l2 write 000061848951ebc0 01 0028 03 1 [MdW(0010,04)] d49ecfeb151d76c1 +l1d-0 evict 000061848951ebc0 00 0015 02 [IcR] d49ecfeb151d76c1 +mem write 0000bd16375b9000 -1 -001 -1 1 [MdW] 01729ac3b5b468ad +l2 evict 0000bd16375b9000 00 0030 00 [IcR(0001,02)] 01729ac3b5b468ad +mem read 0000d5a681624fc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d5a681624fc0 00 0011 03 0 [McW(0001,02)] 0000000000000000 +l1d-0 write 0000d5a681624fc0 00 0015 02 0 [MdW] 78e152d3899ce99a +l1d-1 read 00004e67a6d81700 00 0012 03 1 [MdW] 11cd09bce09e8d89 +l1d-0 evict 0000f17f98f480c0 00 0003 02 [IcR] 84e0e10794125a03 +l2 write 0000f17f98f480c0 01 0003 02 1 [MdW(0011,04)] 84e0e10794125a03 +mem write 0000f17f98f480c0 -1 -001 -1 1 [MdW] 84e0e10794125a03 +l2 evict 0000f17f98f480c0 01 0003 02 [IcR(0011,04)] 84e0e10794125a03 +mem read 000048777e448ac0 -1 -001 -1 1 [McW] 32aa4a36ec8ffe4d +l2 read 000048777e448ac0 00 0017 04 0 [ScW(0011,04)] 32aa4a36ec8ffe4d +l1d-0 read 000048777e448ac0 00 0011 02 0 [ScR] 32aa4a36ec8ffe4d +l1d-1 read 00006a36c42b4840 00 0001 02 1 [MdW] 7d5fd4c9e5820a28 +l2 write 00005e644f2ad540 00 0031 00 1 [MdW(0020,01)] c7002ca6c9947314 +l1d-1 evict 00005e644f2ad540 00 0005 01 [IcR] c7002ca6c9947314 +mem write 0000ff71c82dc900 -1 -001 -1 1 [MdW] 17a334d5e0225251 +l2 evict 0000ff71c82dc900 00 0031 03 [IcR(0001,05)] 17a334d5e0225251 +mem read 0000205a116a7d40 -1 -001 -1 1 [McW] 64c5ac835efc8d57 +l2 read 0000205a116a7d40 00 0022 02 0 [McW(0001,05)] 64c5ac835efc8d57 +l1d-1 write 0000205a116a7d40 00 0005 01 0 [MdW] 292dcc118246929c +l2 write 00002c5f0c6b7c40 00 0021 01 1 [MdW(0009,04)] aad8417bcd3cefeb +l1d-0 evict 00002c5f0c6b7c40 00 0001 02 [IcR] aad8417bcd3cefeb +mem read 0000d99af3531440 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d99af3531440 01 0031 02 0 [McW(0001,00)] 0000000000000000 +l1d-0 write 0000d99af3531440 00 0001 02 0 [MdW] 374b30926d13111e +l1d-0 evict 0000ced5eac0d680 00 0010 03 [IcR] 1d2194cf7fc214b2 +mem read 000073f8f4229a80 -1 -001 -1 1 [McW] d40c3ec8164f1ef5 +l2 read 000073f8f4229a80 01 0005 03 0 [ScW(0006,01)] d40c3ec8164f1ef5 +l1d-0 read 000073f8f4229a80 00 0010 03 0 [ScR] d40c3ec8164f1ef5 +l2 write 0000b304f6dcc000 01 0016 03 1 [MdW(0006,04)] fb80ed3c4e7012f9 +l1d-0 evict 0000b304f6dcc000 00 0000 01 [IcR] fb80ed3c4e7012f9 +l2 read 00003f232f338000 00 0021 00 1 [SdW(0000,03)] 304bee8ad7731636 +l1d-0 read 00003f232f338000 00 0000 01 0 [ScR] 304bee8ad7731636 +l1d-1 write 0000ed89583b9580 00 0006 02 1 [MdW] 4452d6f4afd1eaf3 +l2 write 0000333bb344eb40 01 0001 02 1 [MdW(0025,02)] 37e243e7094a4a61 +l1d-0 evict 0000333bb344eb40 00 0013 01 [IcR] 37e243e7094a4a61 +l1d-0 evict 000046663e4def00 00 0012 00 [IcR] e21542a5128e9ecb +l2 evict 000046663e4def00 01 0030 00 [IcR(0016,01)] e21542a5128e9ecb +mem read 0000dec9d876cb40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000dec9d876cb40 00 0011 04 0 [McW(0016,01)] 0000000000000000 +l1d-0 write 0000dec9d876cb40 00 0013 01 0 [MdW] ad60a1d04091995d +l1d-0 evict 0000a6f9f0803d80 00 0006 00 [IcR] 5719b2c00ecac89a +l2 write 0000a6f9f0803d80 00 0010 02 1 [MdW(0023,06)] 5719b2c00ecac89a +mem write 0000a6f9f0803d80 -1 -001 -1 1 [MdW] 5719b2c00ecac89a +l2 evict 0000a6f9f0803d80 00 0010 02 [IcR(0023,06)] 5719b2c00ecac89a +mem read 00001cff7cd11500 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00001cff7cd11500 00 0012 01 0 [McW(0023,06)] 0000000000000000 +l1d-0 write 00001cff7cd11500 00 0004 02 0 [MdW] 503193b2f8b16620 +l2 write 00004db5ccc11940 01 0010 01 1 [MdW(0030,04)] 44398306b9b406c4 +l1d-1 evict 00004db5ccc11940 00 0005 00 [IcR] 44398306b9b406c4 +mem read 0000ade01f76c940 -1 -001 -1 1 [McW] 7e76db3a89663ea8 +l2 read 0000ade01f76c940 01 0028 01 0 [ScW(0018,00)] 7e76db3a89663ea8 +l1d-1 read 0000ade01f76c940 00 0005 00 0 [ScR] 7e76db3a89663ea8 +l1d-1 read 0000015d1559b380 00 0014 03 1 [MdW] 37ba02bf31772584 +l2 write 0000cac81c633400 00 0029 03 1 [MdW(0000,02)] 29a7f6150c3dce9f +l1d-0 evict 0000cac81c633400 00 0000 02 [IcR] 29a7f6150c3dce9f +l2 read 0000198865cee000 01 0015 03 1 [SdW(0018,07)] a4864eeab5efaace +l1d-0 read 0000198865cee000 00 0000 02 0 [ScR] a4864eeab5efaace +l1d-1 evict 0000ecb652ef69c0 00 0007 00 [IcR] eb59c87e9e41fe96 +l1d-0 evict 000087a8e7348c80 00 0002 02 [IcR] b4727a351299efba +l2 write 000087a8e7348c80 01 0019 01 1 [MdW(0026,00)] b4727a351299efba +mem write 000087a8e7348c80 -1 -001 -1 1 [MdW] b4727a351299efba +l2 evict 000087a8e7348c80 01 0019 01 [IcR(0026,00)] b4727a351299efba +mem read 0000792d5ad259c0 -1 -001 -1 1 [McW] 04aa8a778a45e9be +l2 read 0000792d5ad259c0 00 0024 00 0 [ScW(0026,00)] 04aa8a778a45e9be +l1d-1 read 0000792d5ad259c0 00 0007 00 0 [ScR] 04aa8a778a45e9be +l1d-0 write 0000bbc9c32465c0 00 0007 02 1 [MdW] a4578b886e8d379b +l2 read 0000780ab040b980 01 0002 00 1 [SdW(0019,07)] 0968e82e4bb02b18 +l1d-1 read 0000780ab040b980 00 0006 01 0 [ScR] 0968e82e4bb02b18 +l1d-1 read 000062165bf49640 00 0009 02 1 [MdW] 7f4ec480dca7f893 +l1d-0 evict 0000ddee5cb58780 00 0014 01 [IcR] 3c3b4da5f14e9285 +l2 write 0000ddee5cb58780 01 0003 04 1 [MdW(0025,03)] 3c3b4da5f14e9285 +mem write 0000ddee5cb58780 -1 -001 -1 1 [MdW] 3c3b4da5f14e9285 +l2 evict 0000ddee5cb58780 01 0003 04 [IcR(0025,03)] 3c3b4da5f14e9285 +mem read 0000fe792df68e00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000fe792df68e00 00 0030 00 0 [McW(0025,03)] 0000000000000000 +l1d-0 write 0000fe792df68e00 00 0008 01 0 [MdW] 94f533d553344222 +l2 read 0000ae053b607e40 00 0011 01 1 [SdW(0028,02)] 33aab749622ce144 +l1d-1 read 0000ae053b607e40 00 0009 03 0 [ScR] 33aab749622ce144 +l2 write 0000dda2631186c0 00 0026 01 1 [MdW(0022,04)] 2389031e21d4a9ca +l1d-1 evict 0000dda2631186c0 00 0011 02 [IcR] 2389031e21d4a9ca +l2 read 0000219accc59ec0 01 0014 01 1 [SdW(0005,06)] eb4acfe9e698c78e +l1d-1 read 0000219accc59ec0 00 0011 02 0 [ScR] eb4acfe9e698c78e +mem write 000098857a80b0c0 -1 -001 -1 1 [MdW] 4af1df55aebdd3e6 +l2 evict 000098857a80b0c0 01 0015 02 [IcR(0000,01)] 4af1df55aebdd3e6 +mem read 0000fa408c35ba00 -1 -001 -1 1 [McW] 7eec603efdcdea3b +l2 read 0000fa408c35ba00 00 0005 00 0 [ScW(0000,01)] 7eec603efdcdea3b +l1d-0 read 0000fa408c35ba00 00 0008 02 0 [ScR] 7eec603efdcdea3b +l2 write 0000494fead535c0 00 0020 02 1 [MdW(0006,02)] 37a5ac998ceb943a +l1d-1 evict 0000494fead535c0 00 0007 03 [IcR] 37a5ac998ceb943a +l2 read 00005c90ae19e9c0 00 0002 00 1 [SdW(0029,02)] 3782cdec714c3fb4 +l1d-1 read 00005c90ae19e9c0 00 0007 03 0 [ScR] 3782cdec714c3fb4 +l2 read 00009a461a9864c0 00 0019 00 1 [MdW(0024,03)] 8b973d84cfd7dcc4 +l1d-0 write 00009a461a9864c0 00 0003 00 0 [MdW] 2d511c744763c2c7 +l2 read 000086890a9e27c0 01 0005 01 1 [McW(0030,00)] f1e17884a7f951c6 +l1d-0 write 000086890a9e27c0 00 0015 01 0 [MdW] a1e3c9ae624695e5 +l2 write 0000cd9a12aaf500 01 0011 01 1 [MdW(0014,01)] 3c138801388e31fe +l1d-0 evict 0000cd9a12aaf500 00 0004 01 [IcR] 3c138801388e31fe +l1d-0 evict 0000fe792df68e00 00 0008 01 [IcR] 94f533d553344222 +l2 write 0000fe792df68e00 00 0030 00 1 [MdW(0025,03)] 94f533d553344222 +mem write 0000fe792df68e00 -1 -001 -1 1 [MdW] 94f533d553344222 +l2 evict 0000fe792df68e00 00 0030 00 [IcR(0025,03)] 94f533d553344222 +mem read 0000430a15d72900 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000430a15d72900 01 0003 01 0 [McW(0025,03)] 0000000000000000 +l1d-0 write 0000430a15d72900 00 0004 01 0 [MdW] 34bf97c231801ab0 +l2 write 0000359b9f397880 01 0020 00 1 [MdW(0005,05)] 868579761540bd7e +l2 read 0000359b9f397880 01 0020 00 1 [SdW(0005,05)] 868579761540bd7e +l1i-1 read 0000359b9f397880 00 0002 00 0 [ScR] 868579761540bd7e +l1d-0 read 0000ba16e8b8b540 00 0005 01 1 [ScR] 3de612c8e734de20 +l2 write 0000803bdde89900 01 0000 03 1 [MdW(0028,07)] 2fcbd7fcdbfe874e +l1d-0 evict 0000803bdde89900 00 0004 00 [IcR] 2fcbd7fcdbfe874e +mem write 000084af1bf9eb80 -1 -001 -1 1 [MdW] 2898ddc5bb04ad23 +l2 evict 000084af1bf9eb80 00 0022 00 [IcR(0025,01)] 2898ddc5bb04ad23 +mem read 0000b78d2a790900 -1 -001 -1 1 [McW] aedb2159a3c4680e +l2 read 0000b78d2a790900 01 0011 03 0 [ScW(0025,01)] aedb2159a3c4680e +l1d-0 read 0000b78d2a790900 00 0004 00 0 [ScR] aedb2159a3c4680e +l1d-1 evict 000087be71519540 00 0005 03 [IcR] 034f55956b902d10 +l2 write 000087be71519540 00 0023 03 1 [MdW(0028,01)] 034f55956b902d10 +mem write 000087be71519540 -1 -001 -1 1 [MdW] 034f55956b902d10 +l2 evict 000087be71519540 00 0023 03 [IcR(0028,01)] 034f55956b902d10 +mem read 00000af69bef9880 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00000af69bef9880 01 0023 03 0 [McW(0028,01)] 0000000000000000 +l1d-0 write 00000af69bef9880 00 0002 01 0 [MdW] 315c4569a449b585 +l1d-1 evict 000099fa8471ba40 00 0009 01 [IcR] 9b4f9dd5637abf43 +mem write 000099fa8471ba40 -1 -001 -1 1 [MdW] 9b4f9dd5637abf43 +l2 evict 000099fa8471ba40 01 0030 03 [IcR(0017,04)] 9b4f9dd5637abf43 +mem read 000019e8db69b240 -1 -001 -1 1 [McW] e88dd55a43222698 +l2 read 000019e8db69b240 00 0001 02 0 [ScW(0017,04)] e88dd55a43222698 +l1d-1 read 000019e8db69b240 00 0009 01 0 [ScR] e88dd55a43222698 +l2 write 000099c62b358f40 01 0003 00 1 [MdW(0019,05)] a9ad326afb910f17 +l1d-1 evict 000099c62b358f40 00 0013 02 [IcR] a9ad326afb910f17 +mem write 0000c1182c224c40 -1 -001 -1 1 [MdW] 3c0c3449cec62aac +l2 evict 0000c1182c224c40 00 0009 03 [IcR(0012,05)] 3c0c3449cec62aac +mem read 00001d61aeb20340 -1 -001 -1 1 [McW] c9614f7e7125d893 +l2 read 00001d61aeb20340 00 0003 01 0 [ScW(0012,05)] c9614f7e7125d893 +l1d-1 read 00001d61aeb20340 00 0013 02 0 [ScR] c9614f7e7125d893 +l2 read 0000908064eef6c0 00 0003 03 1 [ScW(0022,03)] 63b934d5bef74a33 +l1d-0 read 0000908064eef6c0 00 0011 03 0 [ScR] 63b934d5bef74a33 +l1d-0 read 00004813c834cdc0 00 0007 00 1 [MdW] 3992e1e5aacf6574 +l2 write 00002e867eb6a900 01 0004 01 1 [MdW(0010,01)] e69494168320e39a +l1d-1 evict 00002e867eb6a900 00 0004 01 [IcR] e69494168320e39a +l2 read 00007a0ccec77d00 01 0014 02 1 [SdW(0002,05)] 5bb323ab7bff0284 +l1d-1 read 00007a0ccec77d00 00 0004 01 0 [ScR] 5bb323ab7bff0284 +mem write 0000af4203bc4640 -1 -001 -1 1 [MdW] 122a0e9f67143c9d +l2 evict 0000af4203bc4640 01 0005 02 [IcR(0021,00)] 122a0e9f67143c9d +mem read 00006e7158c618c0 -1 -001 -1 1 [McW] 611cde0d9a00a656 +l2 read 00006e7158c618c0 01 0006 01 0 [ScW(0021,00)] 611cde0d9a00a656 +l1d-1 read 00006e7158c618c0 00 0003 01 0 [ScR] 611cde0d9a00a656 +l1d-1 evict 000044ca9c649400 00 0000 02 [IcR] 58da3250723bdd77 +l2 read 00007e3437831800 01 0013 02 1 [ScW(0015,06)] 6b9d76bb27c3ffa3 +l1d-1 read 00007e3437831800 00 0000 02 0 [ScR] 6b9d76bb27c3ffa3 +l1d-1 read 0000755c40141f00 00 0012 00 1 [MdW] 0e01110cf13031b3 +l1d-0 read 000049afd5e02b40 00 0013 02 1 [MdW] 283b644b3a7a9886 +l2 write 0000e0625ebdd9c0 00 0023 04 1 [MdW(0011,00)] 85ad2d90d56309f8 +l1d-1 evict 0000e0625ebdd9c0 00 0007 02 [IcR] 85ad2d90d56309f8 +l2 read 000002d094c53dc0 01 0004 02 1 [SdW(0027,03)] a0f76de140ef6fc6 +l1d-1 read 000002d094c53dc0 00 0007 02 0 [ScR] a0f76de140ef6fc6 +l1d-1 read 00001d61aeb20340 00 0013 02 1 [ScR] c9614f7e7125d893 +l2 read 0000c8ee96a39ac0 00 0028 03 1 [McW(0016,00)] 020b007dc30de857 +l1d-1 write 0000c8ee96a39ac0 00 0011 00 0 [MdW] 56c892dade8506b3 +l2 write 0000b7fc8ec73280 01 0013 03 1 [MdW(0021,04)] 82cac3e599046a61 +l1d-1 evict 0000b7fc8ec73280 00 0010 02 [IcR] 82cac3e599046a61 +l1d-0 evict 00001b7163d48d40 00 0005 02 [IcR] da68687e2447a125 +l2 evict 00001b7163d48d40 01 0022 02 [IcR(0010,02)] da68687e2447a125 +mem read 00004f46a7d2ea80 -1 -001 -1 1 [McW] 1d6b75778fa46c62 +l2 read 00004f46a7d2ea80 01 0006 02 0 [ScW(0010,02)] 1d6b75778fa46c62 +l1d-1 read 00004f46a7d2ea80 00 0010 02 0 [ScR] 1d6b75778fa46c62 +l2 write 000042cda8d19c00 01 0018 03 1 [MdW(0019,04)] 85c9b01aff50e505 +l1d-0 evict 000042cda8d19c00 00 0000 00 [IcR] 85c9b01aff50e505 +l1d-1 evict 0000a91cd2b18040 00 0001 01 [IcR] 826c97612426419e +mem write 0000a91cd2b18040 -1 -001 -1 1 [MdW] 826c97612426419e +l2 evict 0000a91cd2b18040 00 0024 01 [IcR(0030,07)] 826c97612426419e +mem read 0000bd16375b9000 -1 -001 -1 1 [McW] 01729ac3b5b468ad +l2 read 0000bd16375b9000 01 0012 03 0 [ScW(0030,07)] 01729ac3b5b468ad +l1d-0 read 0000bd16375b9000 00 0000 00 0 [ScR] 01729ac3b5b468ad +l2 write 0000205a116a7d40 00 0022 02 1 [MdW(0001,05)] 292dcc118246929c +l2 read 0000205a116a7d40 00 0022 02 1 [SdW(0001,05)] 292dcc118246929c +l1i-1 read 0000205a116a7d40 00 0005 01 0 [ScR] 292dcc118246929c +l2 write 00006a5fbc380d80 01 0031 01 1 [MdW(0013,01)] 52eb0cd4b20154b4 +l1d-1 evict 00006a5fbc380d80 00 0006 03 [IcR] 52eb0cd4b20154b4 +mem read 0000fe2140a6f980 -1 -001 -1 1 [McW] 4e2ed36498da5bfc +l2 read 0000fe2140a6f980 00 0004 02 0 [ScW(0009,01)] 4e2ed36498da5bfc +l1d-1 read 0000fe2140a6f980 00 0006 03 0 [ScR] 4e2ed36498da5bfc +l1d-0 evict 00004cfb5e6fc8c0 00 0003 01 [IcR] bb786e37d55629f0 +mem write 00004cfb5e6fc8c0 -1 -001 -1 1 [MdW] bb786e37d55629f0 +l2 evict 00004cfb5e6fc8c0 00 0002 01 [IcR(0020,02)] bb786e37d55629f0 +mem read 0000363bec70c600 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000363bec70c600 00 0010 02 0 [McW(0020,02)] 0000000000000000 +l1d-0 write 0000363bec70c600 00 0008 01 0 [MdW] faae7fc4f024ef29 +l1d-0 evict 0000c1e40165d200 00 0008 00 [IcR] a09b433b028212d0 +mem read 000049889647d200 -1 -001 -1 1 [McW] a5eee774450ed3f3 +l2 read 000049889647d200 00 0022 00 0 [ScW(0015,05)] a5eee774450ed3f3 +l1d-0 read 000049889647d200 00 0008 00 0 [ScR] a5eee774450ed3f3 +l1d-0 read 00002b4766af8580 00 0006 01 1 [MdW] 429db08a0998b047 +l2 write 0000942a1345ef40 01 0026 00 1 [MdW(0011,01)] b82b61ab6fc7eaf4 +l1d-0 evict 0000942a1345ef40 00 0013 03 [IcR] b82b61ab6fc7eaf4 +mem write 0000ffac00a71b80 -1 -001 -1 1 [MdW] 528f7b986ffeb18f +l2 evict 0000ffac00a71b80 00 0025 03 [IcR(0031,02)] 528f7b986ffeb18f +mem read 000031e4a2646740 -1 -001 -1 1 [McW] 613b6d57ad34e57a +l2 read 000031e4a2646740 01 0019 01 0 [ScW(0031,02)] 613b6d57ad34e57a +l1d-0 read 000031e4a2646740 00 0013 03 0 [ScR] 613b6d57ad34e57a +l1d-0 write 000014810cf26a80 00 0010 00 1 [MdW] 2529577b5a534390 +l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] f8020fdd00e928cc +l1d-1 read 0000c0773417d200 00 0008 03 1 [ScR] eb360115e41d6873 +l1d-1 evict 0000afd2a9e735c0 00 0007 01 [IcR] cd8ad056003b74ce +l2 read 0000ecb652ef69c0 01 0012 02 1 [McW(0029,07)] eb59c87e9e41fe96 +l1d-1 write 0000ecb652ef69c0 00 0007 01 0 [MdW] e264e2e00564abcc +l2 write 00001ad58832f640 01 0009 00 1 [MdW(0027,00)] f9c176745781e0be +l1d-0 evict 00001ad58832f640 00 0009 01 [IcR] f9c176745781e0be +mem read 0000d3afe5d1ca40 -1 -001 -1 1 [McW] e87fc143f4844ad9 +l2 read 0000d3afe5d1ca40 00 0005 01 0 [ScW(0030,02)] e87fc143f4844ad9 +l1d-0 read 0000d3afe5d1ca40 00 0009 01 0 [ScR] e87fc143f4844ad9 +l2 write 000014810cf26a80 01 0020 01 1 [MdW(0025,05)] 2529577b5a534390 +l2 read 000014810cf26a80 01 0020 01 1 [SdW(0025,05)] 2529577b5a534390 +l1i-0 read 000014810cf26a80 00 0010 00 0 [ScR] 2529577b5a534390 +l1d-0 write 0000033616c7e540 00 0005 00 1 [MdW] d81188bfabb65cec +l2 read 0000d090b8181100 01 0017 01 1 [McW(0013,00)] 916619a5f0fd52ba +l1d-1 write 0000d090b8181100 00 0004 03 0 [MdW] 75e4bd98aa1f381f +l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] f8020fdd00e928cc +l1d-1 evict 00004d48d3ab6400 00 0000 00 [IcR] 0bad902dc5dbfa0f +l2 read 00003f02ff55a000 00 0023 01 1 [SdW(0018,06)] 1a4db79974495d9b +l1d-1 read 00003f02ff55a000 00 0000 00 0 [ScR] 1a4db79974495d9b +l1d-0 read 000019a40a160240 00 0009 02 1 [MdW] 770f259328cec622 +l2 write 0000522d13b5a340 01 0007 03 1 [MdW(0016,06)] 869ff1490741a150 +l1d-1 evict 0000522d13b5a340 00 0013 03 [IcR] 869ff1490741a150 +mem write 00004be09470fa40 -1 -001 -1 1 [MdW] d75b3bf448b79ed6 +l2 evict 00004be09470fa40 00 0000 00 [IcR(0022,06)] d75b3bf448b79ed6 +mem read 0000c194bc8acb40 -1 -001 -1 1 [McW] b2a2ff4da4c2c04b +l2 read 0000c194bc8acb40 01 0003 02 0 [McW(0022,06)] b2a2ff4da4c2c04b +l1d-1 write 0000c194bc8acb40 00 0013 03 0 [MdW] 75563f50184818bb +l1d-1 write 000073703a455800 00 0000 03 1 [MdW] 90aaa0331455ae1c +l1d-1 evict 00004ff679346ec0 00 0011 03 [IcR] 69165a7d7db29609 +l2 read 0000dda2631186c0 00 0026 01 1 [SdW(0022,04)] 2389031e21d4a9ca +l1d-1 read 0000dda2631186c0 00 0011 03 0 [ScR] 2389031e21d4a9ca +l1d-1 read 00007e3437831800 00 0000 02 1 [ScR] 6b9d76bb27c3ffa3 +l1d-0 read 000077988753abc0 00 0015 00 1 [ScR] 267159d544344353 +l2 write 00000539d65d1d00 00 0029 00 1 [MdW(0005,04)] e278ab4481dc5d33 +l1d-1 evict 00000539d65d1d00 00 0004 00 [IcR] e278ab4481dc5d33 +l2 read 000053c37f465900 00 0017 01 1 [SdW(0014,03)] 1d46a92797eafd72 +l1d-1 read 000053c37f465900 00 0004 00 0 [ScR] 1d46a92797eafd72 +l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] f8020fdd00e928cc +l1d-1 read 0000219accc59ec0 00 0011 02 1 [ScR] eb4acfe9e698c78e +l2 read 000077988753abc0 00 0015 03 1 [ScW(0027,07)] 267159d544344353 +l1d-1 read 000077988753abc0 00 0015 00 0 [ScR] 267159d544344353 +l1d-1 read 0000792d5ad259c0 00 0007 00 1 [ScR] 04aa8a778a45e9be +l2 read 0000c66c607618c0 00 0023 02 1 [SdW(0014,07)] ecc19bfa60ae4cae +l1d-0 read 0000c66c607618c0 00 0003 01 0 [ScR] ecc19bfa60ae4cae +l1d-0 read 0000bd16375b9000 00 0000 00 1 [ScR] 01729ac3b5b468ad +mem write 0000afd2a9e735c0 -1 -001 -1 1 [MdW] cd8ad056003b74ce +l2 evict 0000afd2a9e735c0 01 0005 00 [IcR(0026,04)] cd8ad056003b74ce +mem read 00009fde26f888c0 -1 -001 -1 1 [McW] 405e3e9d2ede086b +l2 read 00009fde26f888c0 00 0005 02 0 [ScW(0026,04)] 405e3e9d2ede086b +l1d-0 read 00009fde26f888c0 00 0003 02 0 [ScR] 405e3e9d2ede086b +l2 write 0000160ac4593000 01 0002 02 1 [MdW(0008,01)] fdc83fada3a15564 +l1d-1 evict 0000160ac4593000 00 0000 01 [IcR] fdc83fada3a15564 +l2 read 0000df16e7f1d400 00 0028 01 1 [McW(0006,06)] a67a11e1cf49b77b +l1d-1 write 0000df16e7f1d400 00 0000 01 0 [MdW] 98f5fd7bc49c7ee9 +mem write 0000d8ad57bdad00 -1 -001 -1 1 [MdW] d54d77b5577490c8 +l2 evict 0000d8ad57bdad00 00 0020 01 [IcR(0024,05)] d54d77b5577490c8 +mem read 000076807a07f540 -1 -001 -1 1 [McW] 5e9696a11ad02c72 +l2 read 000076807a07f540 00 0024 01 0 [ScW(0024,05)] 5e9696a11ad02c72 +l1i-0 read 000076807a07f540 00 0005 00 0 [ScR] 5e9696a11ad02c72 +l1d-0 evict 0000c7e07b801e00 00 0008 03 [IcR] edaed707c9f0d11e +l2 read 00001eab7edaca00 00 0015 02 1 [MdW(0020,04)] fd9df1bbcda6b980 +l1d-0 write 00001eab7edaca00 00 0008 03 0 [MdW] d22728c72006712c +l2 read 00007a0ccec77d00 01 0014 02 1 [MdW(0002,05)] 5bb323ab7bff0284 +l1d-1 write 00007a0ccec77d00 00 0004 01 0 [MdW] d50d70a44c69b2b1 +l1d-1 read 000077988753abc0 00 0015 00 1 [ScR] 267159d544344353 +l1d-1 read 00005066f9d0b480 00 0002 00 1 [ScR] 53940c35436b8a64 +l2 write 0000c86d27a3d040 00 0002 02 1 [MdW(0000,06)] 4e927fc3199ae8b9 +l1d-0 evict 0000c86d27a3d040 00 0001 03 [IcR] 4e927fc3199ae8b9 +l1d-0 evict 0000c66c607618c0 00 0003 01 [IcR] ecc19bfa60ae4cae +l1d-1 evict 0000c66c607618c0 00 0003 03 [IcR] ecc19bfa60ae4cae +mem write 0000c66c607618c0 -1 -001 -1 1 [MdW] ecc19bfa60ae4cae +l2 evict 0000c66c607618c0 00 0023 02 [IcR(0014,07)] ecc19bfa60ae4cae +mem read 0000232a73ed2040 -1 -001 -1 1 [McW] f06374fe1abab634 +l2 read 0000232a73ed2040 00 0013 00 0 [ScW(0014,07)] f06374fe1abab634 +l1d-0 read 0000232a73ed2040 00 0001 03 0 [ScR] f06374fe1abab634 +l2 write 0000ade5546e9640 01 0027 00 1 [MdW(0023,04)] 972057e2a2e60fe7 +l1d-0 evict 0000ade5546e9640 00 0009 03 [IcR] 972057e2a2e60fe7 +mem write 00004dcada9f52c0 -1 -001 -1 1 [MdW] e9b8fce55ce2beb8 +l2 evict 00004dcada9f52c0 01 0010 00 [IcR(0025,04)] e9b8fce55ce2beb8 +mem read 00004c22aaaafa40 -1 -001 -1 1 [McW] 2d93d3fed33d69e0 +l2 read 00004c22aaaafa40 00 0020 01 0 [McW(0025,04)] 2d93d3fed33d69e0 +l1d-0 write 00004c22aaaafa40 00 0009 03 0 [MdW] 910ad1b100184a22 +l1d-1 read 0000792d5ad259c0 00 0007 00 1 [ScR] 04aa8a778a45e9be +l1d-0 evict 0000045cce7b2a40 00 0009 00 [IcR] 23260c93a8186343 +l2 read 00001ad58832f640 01 0009 00 1 [SdW(0027,00)] f9c176745781e0be +l1d-0 read 00001ad58832f640 00 0009 00 0 [ScR] f9c176745781e0be +mem read 0000e0ad5d373580 -1 -001 -1 1 [McW] 032c152e3f44b83d +l2 read 0000e0ad5d373580 00 0008 00 0 [ScW(0014,05)] 032c152e3f44b83d +l1d-0 read 0000e0ad5d373580 00 0006 00 0 [ScR] 032c152e3f44b83d +l1d-0 evict 00000701e403e980 00 0006 02 [IcR] a2b07763fc09116e +l2 read 0000c662cc646980 01 0025 00 1 [SdW(0017,03)] 18c08a9434bd0fc2 +l1d-0 read 0000c662cc646980 00 0006 02 0 [ScR] 18c08a9434bd0fc2 +l1d-1 read 000002d094c53dc0 00 0007 02 1 [ScR] a0f76de140ef6fc6 +l1d-0 evict 00009a603343d580 00 0006 03 [IcR] 75aae8a3bba85efe +l2 evict 00009a603343d580 01 0003 03 [IcR(0024,07)] 75aae8a3bba85efe +mem read 0000c66c607618c0 -1 -001 -1 1 [McW] ecc19bfa60ae4cae +l2 read 0000c66c607618c0 01 0017 03 0 [ScW(0024,07)] ecc19bfa60ae4cae +l1d-0 read 0000c66c607618c0 00 0003 01 0 [ScR] ecc19bfa60ae4cae +l1d-1 evict 00008aa559520900 00 0004 02 [IcR] 4d6a292f5a35e768 +l2 read 00001fd6787ba100 00 0007 00 1 [SdW(0010,06)] 6ec02943a5ad4367 +l1d-1 read 00001fd6787ba100 00 0004 02 0 [ScR] 6ec02943a5ad4367 +l1d-1 read 0000ade01f76c940 00 0005 00 1 [ScR] 7e76db3a89663ea8 +l2 write 00001ffbc4ff1a40 01 0029 01 1 [MdW(0000,07)] 08bf63be6c7befa2 +l1d-1 evict 00001ffbc4ff1a40 00 0009 00 [IcR] 08bf63be6c7befa2 +mem write 000035b33dc0d400 -1 -001 -1 1 [MdW] b93463c7c6882c2d +l2 evict 000035b33dc0d400 00 0003 00 [IcR(0013,06)] b93463c7c6882c2d +mem read 00004be09470fa40 -1 -001 -1 1 [McW] d75b3bf448b79ed6 +l2 read 00004be09470fa40 00 0000 00 0 [ScW(0013,06)] d75b3bf448b79ed6 +l1d-1 read 00004be09470fa40 00 0009 00 0 [ScR] d75b3bf448b79ed6 +l1d-1 read 0000219accc59ec0 00 0011 02 1 [ScR] eb4acfe9e698c78e +l1i-1 evict 00006980d04a3400 00 0000 00 [IcR] 7ef963a07731ba85 +l1d-1 evict 00003f02ff55a000 00 0000 00 [IcR] 1a4db79974495d9b +l2 read 00006980d04a3400 00 0009 02 1 [MdW(0000,05)] 7ef963a07731ba85 +l1d-1 write 00006980d04a3400 00 0000 00 0 [MdW] 865c0d538f5633c2 +l1d-0 read 000073f8f4229a80 00 0010 03 1 [ScR] d40c3ec8164f1ef5 +l1d-0 evict 0000534534d814c0 00 0003 03 [IcR] efe31bf8541a673f +l1d-1 evict 00006e7158c618c0 00 0003 01 [IcR] 611cde0d9a00a656 +l2 read 00006e7158c618c0 01 0006 01 1 [McW(0021,00)] 611cde0d9a00a656 +l1d-0 write 00006e7158c618c0 00 0003 03 0 [MdW] 1ac304b439ea8f39 +l1d-0 evict 0000232a73ed2040 00 0001 03 [IcR] f06374fe1abab634 +l2 evict 0000232a73ed2040 00 0013 00 [IcR(0014,07)] f06374fe1abab634 +mem read 000087a8e7348c80 -1 -001 -1 1 [McW] b4727a351299efba +l2 read 000087a8e7348c80 00 0009 01 0 [ScW(0014,07)] b4727a351299efba +l1d-0 read 000087a8e7348c80 00 0002 02 0 [ScR] b4727a351299efba +l1d-0 evict 0000d3afe5d1ca40 00 0009 01 [IcR] e87fc143f4844ad9 +l2 read 0000045cce7b2a40 00 0030 03 1 [ScW(0022,00)] 23260c93a8186343 +l1d-0 read 0000045cce7b2a40 00 0009 01 0 [ScR] 23260c93a8186343 +mem write 0000160ac4593000 -1 -001 -1 1 [MdW] fdc83fada3a15564 +l2 evict 0000160ac4593000 01 0002 02 [IcR(0008,01)] fdc83fada3a15564 +mem read 0000f49e24085940 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000f49e24085940 01 0026 02 0 [McW(0008,01)] 0000000000000000 +l1d-0 write 0000f49e24085940 00 0005 02 0 [MdW] 6ac11497575254f4 +l1d-1 read 0000d090b8181100 00 0004 03 1 [MdW] 75e4bd98aa1f381f +mem read 00000d95bb8807c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00000d95bb8807c0 01 0009 03 0 [McW(0015,04)] 0000000000000000 +l1d-1 write 00000d95bb8807c0 00 0015 02 0 [MdW] 0634f4c2a43e710b +l1d-1 read 0000fe2140a6f980 00 0006 03 1 [ScR] 4e2ed36498da5bfc +l2 write 0000d6be60018d40 01 0008 00 1 [MdW(0017,07)] 96cb409dcf269c30 +l1d-0 evict 0000d6be60018d40 00 0005 03 [IcR] 96cb409dcf269c30 +l2 read 000063036c943940 01 0022 01 1 [MdW(0014,02)] 00ee9e7cb9678a31 +l1d-0 write 000063036c943940 00 0005 03 0 [MdW] 299a3a36bffbc8d8 +mem write 0000b7fc8ec73280 -1 -001 -1 1 [MdW] 82cac3e599046a61 +l2 evict 0000b7fc8ec73280 01 0013 03 [IcR(0021,04)] 82cac3e599046a61 +mem read 00003f98ec32ec40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00003f98ec32ec40 01 0002 02 0 [McW(0021,04)] 0000000000000000 +l1d-0 write 00003f98ec32ec40 00 0001 03 0 [MdW] 85f5ad5e548a4019 +l2 read 0000f8857becc7c0 00 0017 02 1 [SdW(0023,02)] 72975557d7d3aa91 +l1d-1 read 0000f8857becc7c0 00 0015 03 0 [ScR] 72975557d7d3aa91 +l2 evict 0000534534d814c0 00 0006 01 [IcR(0026,02)] efe31bf8541a673f +mem read 0000605ba6057540 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000605ba6057540 01 0008 02 0 [McW(0026,02)] 0000000000000000 +l1d-1 write 0000605ba6057540 00 0005 03 0 [MdW] d7979871746e8971 +mem read 0000a6f9f0803d80 -1 -001 -1 1 [McW] 5719b2c00ecac89a +l2 read 0000a6f9f0803d80 00 0010 03 0 [ScW(0021,03)] 5719b2c00ecac89a +l1i-0 read 0000a6f9f0803d80 00 0006 00 0 [ScR] 5719b2c00ecac89a +l2 write 0000d314b6aa3a80 01 0021 00 1 [MdW(0031,04)] 570f941a341d0e3b +l1d-1 evict 0000d314b6aa3a80 00 0010 00 [IcR] 570f941a341d0e3b +mem write 0000f0d349d6ba00 -1 -001 -1 1 [MdW] 87e448736b086b82 +l2 evict 0000f0d349d6ba00 01 0023 00 [IcR(0026,03)] 87e448736b086b82 +mem read 0000953d52948e80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000953d52948e80 01 0019 03 0 [McW(0026,03)] 0000000000000000 +l1d-1 write 0000953d52948e80 00 0010 00 0 [MdW] fe71ed9856b4f029 +l2 write 000073703a455800 01 0011 00 1 [MdW(0023,07)] 90aaa0331455ae1c +l1d-1 evict 000073703a455800 00 0000 03 [IcR] 90aaa0331455ae1c +l2 read 000057c442889400 01 0025 01 1 [SdW(0002,06)] 1e3b18e07eb9b12c +l1d-1 read 000057c442889400 00 0000 03 0 [ScR] 1e3b18e07eb9b12c +l1d-0 read 0000fa408c35ba00 00 0008 02 1 [ScR] 7eec603efdcdea3b +l1d-1 read 00006a36c42b4840 00 0001 02 1 [MdW] 7d5fd4c9e5820a28 +l2 write 00009a461a9864c0 00 0019 00 1 [MdW(0024,03)] 2d511c744763c2c7 +l1d-0 evict 00009a461a9864c0 00 0003 00 [IcR] 2d511c744763c2c7 +mem read 0000534534d814c0 -1 -001 -1 1 [McW] efe31bf8541a673f +l2 read 0000534534d814c0 01 0030 00 0 [ScW(0019,06)] efe31bf8541a673f +l1d-0 read 0000534534d814c0 00 0003 00 0 [ScR] efe31bf8541a673f +l1d-0 read 00004813c834cdc0 00 0007 00 1 [MdW] 3992e1e5aacf6574 +l2 write 000019a40a160240 00 0008 02 1 [MdW(0003,06)] 770f259328cec622 +l1d-0 evict 000019a40a160240 00 0009 02 [IcR] 770f259328cec622 +l1d-0 evict 000063036c943940 00 0005 03 [IcR] 299a3a36bffbc8d8 +l2 write 000063036c943940 01 0022 01 1 [MdW(0014,02)] 299a3a36bffbc8d8 +mem write 000063036c943940 -1 -001 -1 1 [MdW] 299a3a36bffbc8d8 +l2 evict 000063036c943940 01 0022 01 [IcR(0014,02)] 299a3a36bffbc8d8 +mem read 0000d6eae7df0a40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d6eae7df0a40 01 0025 04 0 [McW(0014,02)] 0000000000000000 +l1d-0 write 0000d6eae7df0a40 00 0009 02 0 [MdW] c8a334c853d1650e +l1d-0 read 0000fa408c35ba00 00 0008 02 1 [ScR] 7eec603efdcdea3b +l2 write 00001b6fc10d9840 00 0027 02 1 [MdW(0029,01)] 18f90fae5487f2e3 +l1d-0 evict 00001b6fc10d9840 00 0001 01 [IcR] 18f90fae5487f2e3 +l1d-1 evict 0000ed89583b9580 00 0006 02 [IcR] 4452d6f4afd1eaf3 +l2 write 0000ed89583b9580 00 0018 01 1 [MdW(0024,00)] 4452d6f4afd1eaf3 +mem write 0000ed89583b9580 -1 -001 -1 1 [MdW] 4452d6f4afd1eaf3 +l2 evict 0000ed89583b9580 00 0018 01 [IcR(0024,00)] 4452d6f4afd1eaf3 +mem read 00002cbcc4bef440 -1 -001 -1 1 [McW] dd17905e4616865e +l2 read 00002cbcc4bef440 00 0001 03 0 [McW(0024,00)] dd17905e4616865e +l1d-0 write 00002cbcc4bef440 00 0001 01 0 [MdW] 228b8470625fd619 +l1d-0 read 000073f8f4229a80 00 0010 03 1 [ScR] d40c3ec8164f1ef5 +l1d-0 evict 0000a462f1bb1500 00 0004 03 [IcR] 836865657f27e721 +l1d-0 evict 000048777e448ac0 00 0011 02 [IcR] 32aa4a36ec8ffe4d +l2 evict 000048777e448ac0 00 0017 04 [IcR(0011,04)] 32aa4a36ec8ffe4d +mem read 0000a240433c0100 -1 -001 -1 1 [McW] 3c86a591f8f297ce +l2 read 0000a240433c0100 00 0022 03 0 [ScW(0011,04)] 3c86a591f8f297ce +l1d-0 read 0000a240433c0100 00 0004 03 0 [ScR] 3c86a591f8f297ce +l2 write 000059efb9532e80 00 0000 03 1 [MdW(0024,02)] db19e43f15c6da9f +l1d-1 evict 000059efb9532e80 00 0010 01 [IcR] db19e43f15c6da9f +l2 read 0000d314b6aa3a80 01 0021 00 1 [SdW(0031,04)] 570f941a341d0e3b +l1d-1 read 0000d314b6aa3a80 00 0010 01 0 [ScR] 570f941a341d0e3b +l2 write 000056d4fe3257c0 01 0024 01 1 [MdW(0016,02)] 2d6d78e60e44fcb9 +l1d-1 evict 000056d4fe3257c0 00 0015 01 [IcR] 2d6d78e60e44fcb9 +mem write 00003c52cd2e1f40 -1 -001 -1 1 [MdW] 254c1bb063a0705f +l2 evict 00003c52cd2e1f40 00 0007 03 [IcR(0030,03)] 254c1bb063a0705f +mem read 00009eb1e8f78fc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00009eb1e8f78fc0 00 0012 02 0 [McW(0030,03)] 0000000000000000 +l1d-1 write 00009eb1e8f78fc0 00 0015 01 0 [MdW] 27a74387363b6d92 +l2 write 00001cff7cd11500 00 0012 01 1 [MdW(0023,06)] 503193b2f8b16620 +l1d-0 evict 00001cff7cd11500 00 0004 02 [IcR] 503193b2f8b16620 +l1d-0 evict 000031e4a2646740 00 0013 03 [IcR] 613b6d57ad34e57a +l2 evict 000031e4a2646740 01 0019 01 [IcR(0031,02)] 613b6d57ad34e57a +mem read 0000fc3d1a588d00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000fc3d1a588d00 01 0007 04 0 [McW(0031,02)] 0000000000000000 +l1d-0 write 0000fc3d1a588d00 00 0004 02 0 [MdW] 3456ef070d8d0a11 +l1d-1 read 000002d094c53dc0 00 0007 02 1 [ScR] a0f76de140ef6fc6 +l1d-1 evict 0000c8ee96a39ac0 00 0011 00 [IcR] 56c892dade8506b3 +l2 write 0000c8ee96a39ac0 00 0028 03 1 [MdW(0016,00)] 56c892dade8506b3 +mem write 0000c8ee96a39ac0 -1 -001 -1 1 [MdW] 56c892dade8506b3 +l2 evict 0000c8ee96a39ac0 00 0028 03 [IcR(0016,00)] 56c892dade8506b3 +mem read 000048777e448ac0 -1 -001 -1 1 [McW] 32aa4a36ec8ffe4d +l2 read 000048777e448ac0 00 0017 04 0 [McW(0016,00)] 32aa4a36ec8ffe4d +l1d-0 write 000048777e448ac0 00 0011 02 0 [MdW] cabd092ab80dc469 +l2 read 0000bb75517c9b80 00 0011 02 1 [MdW(0027,05)] 6bde4c0523ccba1a +l1d-0 write 0000bb75517c9b80 00 0014 01 0 [MdW] 004c1351d2605e26 +l1d-1 evict 000053c37f465900 00 0004 00 [IcR] 1d46a92797eafd72 +l1d-1 evict 000062165bf49640 00 0009 02 [IcR] 7f4ec480dca7f893 +l2 write 000062165bf49640 01 0020 02 1 [MdW(0007,00)] 7f4ec480dca7f893 +mem write 000062165bf49640 -1 -001 -1 1 [MdW] 7f4ec480dca7f893 +l2 evict 000062165bf49640 01 0020 02 [IcR(0007,00)] 7f4ec480dca7f893 +mem read 0000e51c88207d00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e51c88207d00 00 0002 01 0 [McW(0007,00)] 0000000000000000 +l1d-1 write 0000e51c88207d00 00 0004 00 0 [MdW] f6cd3559b9b82c2e +l1d-0 evict 00009fde26f888c0 00 0003 02 [IcR] 405e3e9d2ede086b +l1d-0 evict 0000c662cc646980 00 0006 02 [IcR] 18c08a9434bd0fc2 +mem write 0000c662cc646980 -1 -001 -1 1 [MdW] 18c08a9434bd0fc2 +l2 evict 0000c662cc646980 01 0025 00 [IcR(0017,03)] 18c08a9434bd0fc2 +mem read 000000f97fae5cc0 -1 -001 -1 1 [McW] fb933a96c629912c +l2 read 000000f97fae5cc0 00 0003 00 0 [ScW(0017,03)] fb933a96c629912c +l1d-0 read 000000f97fae5cc0 00 0003 02 0 [ScR] fb933a96c629912c +l1i-0 read 0000a18bf258f2c0 00 0011 01 1 [ScR] 3e7401997ef17cd7 +l1d-0 read 00004813c834cdc0 00 0007 00 1 [MdW] 3992e1e5aacf6574 +l1d-1 evict 00007e3437831800 00 0000 02 [IcR] 6b9d76bb27c3ffa3 +l1d-0 evict 0000198865cee000 00 0000 02 [IcR] a4864eeab5efaace +l2 read 0000198865cee000 01 0015 03 1 [MdW(0018,07)] a4864eeab5efaace +l1d-1 write 0000198865cee000 00 0000 02 0 [MdW] 2f11c1bf7908ca3a +l2 write 0000ce808c85df40 00 0019 03 1 [MdW(0020,05)] 5d5610addc83f590 +l1d-1 evict 0000ce808c85df40 00 0013 01 [IcR] 5d5610addc83f590 +l1d-0 evict 0000848b6896ff40 00 0013 00 [IcR] f0023461e82954bd +l2 read 0000848b6896ff40 00 0010 01 1 [MdW(0029,06)] f0023461e82954bd +l1d-1 write 0000848b6896ff40 00 0013 01 0 [MdW] 3d3448be0c771dfb +l1d-1 read 0000780ab040b980 00 0006 01 1 [ScR] 0968e82e4bb02b18 +l1d-1 evict 000077988753abc0 00 0015 00 [IcR] 267159d544344353 +l1d-1 evict 0000c194bc8acb40 00 0013 03 [IcR] 75563f50184818bb +l2 write 0000c194bc8acb40 01 0003 02 1 [MdW(0022,06)] 75563f50184818bb +mem write 0000c194bc8acb40 -1 -001 -1 1 [MdW] 75563f50184818bb +l2 evict 0000c194bc8acb40 01 0003 02 [IcR(0022,06)] 75563f50184818bb +mem read 0000799fa07cabc0 -1 -001 -1 1 [McW] 5045fca347d4f27e +l2 read 0000799fa07cabc0 00 0024 03 0 [ScW(0022,06)] 5045fca347d4f27e +l1d-1 read 0000799fa07cabc0 00 0015 00 0 [ScR] 5045fca347d4f27e +l2 read 00001ffbc4ff1a40 01 0029 01 1 [SdW(0000,07)] 08bf63be6c7befa2 +l1d-1 read 00001ffbc4ff1a40 00 0009 02 0 [ScR] 08bf63be6c7befa2 +l1d-1 evict 0000ae053b607e40 00 0009 03 [IcR] 33aab749622ce144 +l1d-1 evict 000019e8db69b240 00 0009 01 [IcR] e88dd55a43222698 +l2 evict 000019e8db69b240 00 0001 02 [IcR(0017,04)] e88dd55a43222698 +mem read 000099fa8471ba40 -1 -001 -1 1 [McW] 9b4f9dd5637abf43 +l2 read 000099fa8471ba40 01 0030 01 0 [McW(0017,04)] 9b4f9dd5637abf43 +l1d-1 write 000099fa8471ba40 00 0009 03 0 [MdW] 3a1b0222700896fc +mem read 0000c8fa6d0f39c0 -1 -001 -1 1 [McW] 6ba4d33d1d05c3e1 +l2 read 0000c8fa6d0f39c0 01 0011 04 0 [ScW(0021,05)] 6ba4d33d1d05c3e1 +l1d-0 read 0000c8fa6d0f39c0 00 0007 03 0 [ScR] 6ba4d33d1d05c3e1 +l1d-0 read 00001ad58832f640 00 0009 00 1 [ScR] f9c176745781e0be +l2 write 00000d95bb8807c0 01 0009 03 1 [MdW(0015,04)] 0634f4c2a43e710b +l1d-1 evict 00000d95bb8807c0 00 0015 02 [IcR] 0634f4c2a43e710b +l1d-0 evict 00003f232f338000 00 0000 01 [IcR] 304bee8ad7731636 +mem write 00003f232f338000 -1 -001 -1 1 [MdW] 304bee8ad7731636 +l2 evict 00003f232f338000 00 0021 00 [IcR(0000,03)] 304bee8ad7731636 +mem read 0000c3a56b5f8bc0 -1 -001 -1 1 [McW] 9b4a314f80de0e14 +l2 read 0000c3a56b5f8bc0 01 0005 00 0 [ScW(0000,03)] 9b4a314f80de0e14 +l1d-1 read 0000c3a56b5f8bc0 00 0015 02 0 [ScR] 9b4a314f80de0e14 +l1d-1 read 0000ade01f76c940 00 0005 00 1 [ScR] 7e76db3a89663ea8 +l1d-0 evict 0000b1312a1f2f80 00 0014 02 [IcR] db32e76b65f38b73 +l1d-0 evict 0000ba89bc350380 00 0014 03 [IcR] f769e7273e7932c3 +l2 write 0000ba89bc350380 01 0017 02 1 [MdW(0011,06)] f769e7273e7932c3 +mem write 0000ba89bc350380 -1 -001 -1 1 [MdW] f769e7273e7932c3 +l2 evict 0000ba89bc350380 01 0017 02 [IcR(0011,06)] f769e7273e7932c3 mem read 00006673791a8780 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00006673791a8780 01 0027 02 0 [McW(0012,05)] 0000000000000000 -l1d-0 write 00006673791a8780 00 0014 03 0 [MdW] f4cd862dc374f36d -l1d-0 read 000073f8f4229a80 00 0010 03 1 [MdW] 31d6fa0a53f18b41 -l1d-1 write 000025cc871abf00 00 0012 00 1 [MdW] 1e77d11d1718e287 -l1d-1 read 0000d99af3531440 00 0001 00 1 [MdW] dbc90c66dea50e65 -l1d-1 write 000025cc871abf00 00 0012 00 1 [MdW] a534b1f80fab5047 -l1i-1 read 00000463b4c5cf80 00 0014 00 1 [ScR] d8778ea3f72f9753 -l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] c1826e64b02c93c3 -l1d-0 read 00002cbcc4bef440 00 0001 01 1 [MdW] e21542a5128e9ecb -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] 47f09fd7ab0208ac -l1d-0 write 0000418397142480 00 0002 02 1 [MdW] 2fcbd7fcdbfe874e -l1d-1 read 000080a8ac776580 00 0006 02 1 [MdW] 50545394e7113224 -l1d-1 write 0000e030a3d78740 00 0013 01 1 [MdW] cd8ad056003b74ce -l1d-0 read 0000b78d2a790900 00 0004 01 1 [MdW] efe31bf8541a673f -l2 write 0000015d1559b380 01 0021 02 1 [MdW(0016,01)] 282232be54b9c054 -l1d-1 evict 0000015d1559b380 00 0014 02 [IcR] 282232be54b9c054 -mem read 0000f2231ef84f80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000f2231ef84f80 00 0007 03 0 [McW(0008,05)] 0000000000000000 -l1d-1 write 0000f2231ef84f80 00 0014 02 0 [MdW] 794119a0f1a9513d -l1d-1 write 00002d9824d83d80 00 0006 01 1 [MdW] 39fe4a0fc65da1d9 -l1d-1 read 0000da7033404e80 00 0010 02 1 [MdW] def0d5cb9fb03510 -l1i-1 read 00001cff7cd11500 00 0004 00 1 [ScR] 6b0180ad5bfc6aa3 -l1d-1 read 0000bb381b2db600 00 0008 02 1 [MdW] e215c0b496405f9e -l1d-0 read 000019a40a160240 00 0009 02 1 [ScR] 003301b2273c5e28 -l1d-1 read 000092e2f479cf80 00 0014 00 1 [MdW] 953e17bdbbc42e90 -l2 write 000056fd61295e40 01 0024 02 1 [MdW(0008,04)] eb4618272fa8ed80 -l1d-1 evict 000056fd61295e40 00 0009 00 [IcR] eb4618272fa8ed80 -l2 read 000042ff28b0ea40 01 0023 01 1 [SdW(0004,04)] 21186ad558f150fb -l1d-1 read 000042ff28b0ea40 00 0009 00 0 [ScR] 21186ad558f150fb -l1d-1 evict 00001cff7cd11500 00 0004 01 [IcR] 6b0180ad5bfc6aa3 -l2 read 0000fc3d1a588d00 01 0007 00 1 [SdW(0006,02)] 20d6291b6fceeaa3 -l1d-1 read 0000fc3d1a588d00 00 0004 01 0 [ScR] 20d6291b6fceeaa3 -l1d-1 read 000043ca5c07b240 00 0009 03 1 [ScR] 0b03165c64b25b52 -l1d-1 read 0000605ba6057540 00 0005 03 1 [ScR] cfc80859e336b176 -l2 write 0000d090b8181100 01 0017 03 1 [MdW(0021,07)] 600a65175372b60f -l1d-0 evict 0000d090b8181100 00 0004 03 [IcR] 600a65175372b60f -l2 read 0000ff71c82dc900 01 0006 00 1 [MdW(0010,00)] ead7b1b4f2b53fe5 -l1d-0 write 0000ff71c82dc900 00 0004 03 0 [MdW] 429db08a0998b047 -l1d-1 write 0000bb75517c9b80 00 0014 03 1 [MdW] e09e57bfd05f4979 -l1d-1 read 00002d9824d83d80 00 0006 01 1 [MdW] 39fe4a0fc65da1d9 -l2 write 00005d7bb4b3fa00 00 0031 02 1 [MdW(0010,05)] e908b2478d834bdb -l1d-1 evict 00005d7bb4b3fa00 00 0008 03 [IcR] e908b2478d834bdb -l2 read 000039a5e213fe00 01 0022 00 1 [SdW(0019,00)] 8dc08ec49d595537 -l1d-1 read 000039a5e213fe00 00 0008 03 0 [ScR] 8dc08ec49d595537 -l1d-0 read 00004813c834cdc0 00 0007 00 1 [MdW] 0af84804aa6dd58b -l2 write 00006f44ab8bcf80 01 0003 00 1 [MdW(0010,03)] 54ef841c985c9745 -l1d-0 evict 00006f44ab8bcf80 00 0014 00 [IcR] 54ef841c985c9745 -l2 read 0000015d1559b380 01 0021 02 1 [SdW(0016,01)] 282232be54b9c054 -l1d-0 read 0000015d1559b380 00 0014 00 0 [ScR] 282232be54b9c054 -l1d-1 read 0000c92c00098fc0 00 0015 02 1 [MdW] 5ac8f2c9a0464889 -l2 read 00005066f9d0b480 00 0026 00 1 [SdW(0023,01)] 137a92d6da9c98a8 -l1d-1 read 00005066f9d0b480 00 0002 03 0 [ScR] 137a92d6da9c98a8 -l1i-1 read 00000463b4c5cf80 00 0014 00 1 [ScR] d8778ea3f72f9753 -l1d-1 evict 00006a25c963e900 00 0004 00 [IcR] ae43245b0fd92af4 -l2 read 00001cff7cd11500 01 0028 00 1 [SdW(0028,02)] 6b0180ad5bfc6aa3 -l1d-1 read 00001cff7cd11500 00 0004 00 0 [ScR] 6b0180ad5bfc6aa3 -l1d-0 evict 0000792d5ad259c0 00 0007 01 [IcR] 3221ebd848868f90 -l2 read 0000792d5ad259c0 00 0024 01 1 [MdW(0030,02)] 3221ebd848868f90 -l1d-1 write 0000792d5ad259c0 00 0007 01 0 [MdW] 817044232bfa184a -mem read 00004fefb0cb7cc0 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00004fefb0cb7cc0 00 0016 03 0 [McW(0011,06)] 0000000000000000 -l1d-0 write 00004fefb0cb7cc0 00 0003 01 0 [MdW] 38afdc4cdcf866a7 -l2 write 00006cf58254d780 01 0007 01 1 [MdW(0007,05)] cd2840a4925c9683 -l1d-0 evict 00006cf58254d780 00 0014 02 [IcR] cd2840a4925c9683 -l2 read 00006f44ab8bcf80 01 0003 00 1 [SdW(0010,03)] 54ef841c985c9745 -l1d-0 read 00006f44ab8bcf80 00 0014 02 0 [ScR] 54ef841c985c9745 -l1d-0 write 00004813c834cdc0 00 0007 00 1 [MdW] 1c05eadfc5b117e3 -l1d-1 read 0000c92c00098fc0 00 0015 02 1 [MdW] 5ac8f2c9a0464889 -l1d-0 read 0000799fa07cabc0 00 0015 00 1 [MdW] 51888f97616533a8 -l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] c1826e64b02c93c3 -l2 read 0000f66f9acff100 01 0000 00 1 [MdW(0012,02)] c7f5ae053c4b54cf -l1d-0 write 0000f66f9acff100 00 0004 02 0 [MdW] 6127ca24e671725d -l1d-0 read 00003c43977d6040 00 0001 03 1 [MdW] 4230a216503f3385 -l1d-1 evict 0000c97dfb94fd80 00 0006 03 [IcR] 866e8372e740908a -mem read 0000fe2140a6f980 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000fe2140a6f980 01 0009 03 0 [McW(0030,05)] 0000000000000000 -l1d-1 write 0000fe2140a6f980 00 0006 03 0 [MdW] 48764c6ee9e0a7c7 -l1d-1 read 00002814eea2cf80 00 0014 01 1 [MdW] 1d6b75778fa46c62 -l2 write 00007121fd387e80 01 0025 03 1 [MdW(0015,05)] ad519a24c56e4188 -l1d-0 evict 00007121fd387e80 00 0010 00 [IcR] ad519a24c56e4188 -l2 evict 0000883768b6a3c0 00 0013 00 -l2 read 0000883768b6a3c0 01 0010 02 0 -mem read 0000d8e31ae65a80 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 0000d8e31ae65a80 00 0013 00 0 [McW(0018,07)] 0000000000000000 -l1d-0 write 0000d8e31ae65a80 00 0010 00 0 [MdW] 51d4ae33f538a94d -l1d-1 write 00008e48523b3e80 00 0010 01 1 [MdW] 9b2fa4f38abab900 -l1d-0 read 0000cf04a7d0b7c0 00 0015 01 1 [MdW] 640faa68409ae8f8 -l2 write 0000045cce7b2a40 00 0030 01 1 [MdW(0002,04)] a17c5d2d47e695af -l1d-0 evict 0000045cce7b2a40 00 0009 00 [IcR] a17c5d2d47e695af -l2 read 0000d6eae7df0a40 01 0025 01 1 [SdW(0027,03)] 1bb178ab1f40b28c -l1d-0 read 0000d6eae7df0a40 00 0009 00 0 [ScR] 1bb178ab1f40b28c -l1d-0 read 000073f8f4229a80 00 0010 03 1 [MdW] 31d6fa0a53f18b41 -l2 read 00006074635435c0 00 0007 02 1 [MdW(0006,05)] 427f5edbe26fb649 -l1d-0 write 00006074635435c0 00 0007 01 0 [MdW] ec92afdb6195340e -l1d-1 read 0000012233313580 00 0006 00 1 [ScR] 0aa2d7ab5dfce8cc -l1d-0 write 000052d61b6d5a00 00 0008 00 1 [MdW] 30b94c7c50299b8f -l1d-1 write 0000bb381b2db600 00 0008 02 1 [MdW] d0e4f72848753da1 -l1d-1 write 00003bd14ab212c0 00 0011 02 1 [MdW] b3191296ad508c64 -l1d-1 read 00006bf6751e90c0 00 0003 01 1 [MdW] 3c0c3449cec62aac -l1d-0 write 0000cf04a7d0b7c0 00 0015 01 1 [MdW] 735681b7cd1351f3 -l1d-0 evict 00007e3437831800 00 0000 01 [IcR] 9ac69dc0ff6bf852 -l2 read 000042cda8d19c00 01 0018 01 1 [SdW(0016,02)] bf4e3ef9cf917b73 -l1d-0 read 000042cda8d19c00 00 0000 01 0 [ScR] bf4e3ef9cf917b73 -l1d-0 read 000057ef223eb2c0 00 0011 00 1 [MdW] 5cf1dee5ec17ee31 -l1d-0 read 000000f97fae5cc0 00 0003 03 1 [MdW] adf40caecba14b7b -l2 write 00003be6b01765c0 01 0029 01 1 [MdW(0022,02)] 72c7e34d716ce2c3 -l1d-0 evict 00003be6b01765c0 00 0007 02 [IcR] 72c7e34d716ce2c3 -l2 write 0000792d5ad259c0 00 0024 01 1 [MdW(0030,02)] 817044232bfa184a -l2 read 0000792d5ad259c0 00 0024 01 1 [SdW(0030,02)] 817044232bfa184a -l1d-0 read 0000792d5ad259c0 00 0007 02 0 [ScR] 817044232bfa184a -l1d-0 read 000049afd5e02b40 00 0013 00 1 [MdW] 0d73762cec20ec64 -l1d-1 read 0000fc3d1a588d00 00 0004 01 1 [ScR] 20d6291b6fceeaa3 -l1d-1 read 0000095a29bb9340 00 0013 00 1 [MdW] cd5095ef84be60be -l2 write 0000f2231ef84f80 00 0007 03 1 [MdW(0008,05)] 794119a0f1a9513d -l1d-1 evict 0000f2231ef84f80 00 0014 02 [IcR] 794119a0f1a9513d -l2 read 0000b1312a1f2f80 01 0019 01 1 [MdW(0026,00)] 63f4a195a598fedc -l1d-1 write 0000b1312a1f2f80 00 0014 02 0 [MdW] 3c9e34fba44c1163 -l1i-1 read 00001cff7cd11500 00 0004 00 1 [ScR] 6b0180ad5bfc6aa3 -l1d-1 read 000025cc871abf00 00 0012 00 1 [MdW] a534b1f80fab5047 -l1d-0 read 0000b78d2a790900 00 0004 01 1 [MdW] efe31bf8541a673f -l1d-0 write 000063036c943940 00 0005 03 1 [MdW] db4ca61caef1d720 -l2 write 00006bf6751e90c0 01 0013 02 1 [MdW(0022,06)] 3c0c3449cec62aac -l2 read 00006bf6751e90c0 01 0013 02 1 [SdW(0022,06)] 3c0c3449cec62aac -l1i-1 read 00006bf6751e90c0 00 0003 00 0 [ScR] 3c0c3449cec62aac -l1d-1 read 000049889647d200 00 0008 00 1 [MdW] 47834119196c606b -l1d-1 evict 00006d3f203d79c0 00 0007 00 [IcR] 6e8f92dc574cb465 -l2 read 00008edcd3eccdc0 01 0028 02 1 [SdW(0008,03)] 62582b34270ac5fc -l1d-1 read 00008edcd3eccdc0 00 0007 00 0 [ScR] 62582b34270ac5fc -l1d-1 read 0000d3afe5d1ca40 00 0009 02 1 [MdW] bb3721a1166e6ecf -l2 write 0000d9b688e86700 01 0031 01 1 [MdW(0029,05)] 9cff86c4f5d7b689 -l1d-0 evict 0000d9b688e86700 00 0012 03 [IcR] 9cff86c4f5d7b689 -mem read 000046663e4def00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000046663e4def00 01 0030 03 0 [McW(0029,07)] 0000000000000000 -l1d-0 write 000046663e4def00 00 0012 03 0 [MdW] 770f259328cec622 -l1d-0 read 0000792d5ad259c0 00 0007 02 1 [ScR] 817044232bfa184a -l2 write 0000c0773417d200 01 0023 00 1 [MdW(0019,02)] 01c0de693ddfa9f2 -l1d-1 evict 0000c0773417d200 00 0008 01 [IcR] 01c0de693ddfa9f2 +l2 read 00006673791a8780 00 0009 03 0 [McW(0011,06)] 0000000000000000 +l1d-0 write 00006673791a8780 00 0014 02 0 [MdW] f45ff2fdef6f1afa +l1d-1 evict 00004ed4d0955b80 00 0014 02 [IcR] 5d48e651e3307f1b +l1d-1 evict 0000deaf8d449780 00 0014 01 [IcR] 319bc7784dee1369 +l2 write 0000deaf8d449780 00 0020 00 1 [MdW(0000,04)] 319bc7784dee1369 +mem write 0000deaf8d449780 -1 -001 -1 1 [MdW] 319bc7784dee1369 +l2 evict 0000deaf8d449780 00 0020 00 [IcR(0000,04)] 319bc7784dee1369 +mem read 0000ecc75bb99b80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ecc75bb99b80 00 0018 00 0 [McW(0000,04)] 0000000000000000 +l1d-1 write 0000ecc75bb99b80 00 0014 02 0 [MdW] 500c340d1c781391 +l2 write 0000363bec70c600 00 0010 02 1 [MdW(0020,02)] faae7fc4f024ef29 +l1d-0 evict 0000363bec70c600 00 0008 01 [IcR] faae7fc4f024ef29 +mem read 000026d8a5685e00 -1 -001 -1 1 [McW] ead7b1b4f2b53fe5 +l2 read 000026d8a5685e00 01 0027 01 0 [ScW(0009,00)] ead7b1b4f2b53fe5 +l1d-0 read 000026d8a5685e00 00 0008 01 0 [ScR] ead7b1b4f2b53fe5 +l1d-0 read 000049afd5e02b40 00 0013 02 1 [MdW] 283b644b3a7a9886 +l2 read 00001fd6787ba100 00 0007 00 1 [MdW(0010,06)] 6ec02943a5ad4367 +l1d-1 write 00001fd6787ba100 00 0004 02 0 [MdW] cf847744761b8732 +l1d-0 read 000092e2f479cf80 00 0014 00 1 [MdW] 33c020afbf13af39 +l2 write 00004c22aaaafa40 00 0020 01 1 [MdW(0025,04)] 910ad1b100184a22 +l1d-0 evict 00004c22aaaafa40 00 0009 03 [IcR] 910ad1b100184a22 +l2 read 0000ade5546e9640 01 0027 00 1 [SdW(0023,04)] 972057e2a2e60fe7 +l1d-0 read 0000ade5546e9640 00 0009 03 0 [ScR] 972057e2a2e60fe7 +l1d-1 evict 00005c90ae19e9c0 00 0007 03 [IcR] 3782cdec714c3fb4 +mem write 0000fb280d796f00 -1 -001 -1 1 [MdW] 034702017a6f4b77 +l2 evict 0000fb280d796f00 00 0016 01 [IcR(0003,02)] 034702017a6f4b77 +mem read 000072629a2641c0 -1 -001 -1 1 [McW] cff65dd3605c7fe3 +l2 read 000072629a2641c0 01 0021 04 0 [ScW(0003,02)] cff65dd3605c7fe3 +l1d-1 read 000072629a2641c0 00 0007 03 0 [ScR] cff65dd3605c7fe3 +l1d-1 read 0000517854abf080 00 0002 01 1 [MdW] e0a55470670fd6c5 +l1d-1 evict 0000eeb339250a80 00 0010 03 [IcR] baaf248a8b7b28a3 +l2 write 0000ea018319b280 01 0029 02 1 [MdW(0004,05)] 2de9db08d13b3d82 +l2 read 0000ea018319b280 01 0029 02 1 [SdW(0004,05)] 2de9db08d13b3d82 +l1d-1 read 0000ea018319b280 00 0010 03 0 [ScR] 2de9db08d13b3d82 +l2 read 000049889647d200 00 0022 00 1 [McW(0015,05)] a5eee774450ed3f3 +l1d-0 write 000049889647d200 00 0008 00 0 [MdW] 276cdd009ba0b24d +l1d-0 evict 00006673791a8780 00 0014 02 [IcR] f45ff2fdef6f1afa +l2 write 00006673791a8780 00 0009 03 1 [MdW(0011,06)] f45ff2fdef6f1afa +mem write 00006673791a8780 -1 -001 -1 1 [MdW] f45ff2fdef6f1afa +l2 evict 00006673791a8780 00 0009 03 [IcR(0011,06)] f45ff2fdef6f1afa +mem read 0000ba89bc350380 -1 -001 -1 1 [McW] f769e7273e7932c3 +l2 read 0000ba89bc350380 01 0017 02 0 [ScW(0011,06)] f769e7273e7932c3 +l1d-0 read 0000ba89bc350380 00 0014 03 0 [ScR] f769e7273e7932c3 +l2 write 00007a0ccec77d00 01 0014 02 1 [MdW(0002,05)] d50d70a44c69b2b1 +l1d-1 evict 00007a0ccec77d00 00 0004 01 [IcR] d50d70a44c69b2b1 +mem write 00007600dddbb740 -1 -001 -1 1 [MdW] 03513838cc9cbb95 +l2 evict 00007600dddbb740 01 0025 03 [IcR(0012,01)] 03513838cc9cbb95 +mem read 00004bf31c06ad00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004bf31c06ad00 00 0009 03 0 [McW(0012,01)] 0000000000000000 +l1d-1 write 00004bf31c06ad00 00 0004 01 0 [MdW] 7bfaca6fac0ffca4 +l2 read 0000ae053b607e40 00 0011 01 1 [MdW(0028,02)] 33aab749622ce144 +l1d-1 write 0000ae053b607e40 00 0009 01 0 [MdW] de15584b39a145e3 +l1d-1 evict 0000953d52948e80 00 0010 00 [IcR] fe71ed9856b4f029 +l2 write 0000953d52948e80 01 0019 03 1 [MdW(0026,03)] fe71ed9856b4f029 +mem write 0000953d52948e80 -1 -001 -1 1 [MdW] fe71ed9856b4f029 +l2 evict 0000953d52948e80 01 0019 03 [IcR(0026,03)] fe71ed9856b4f029 +mem read 000049248a79a380 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000049248a79a380 00 0000 01 0 [McW(0026,03)] 0000000000000000 +l1d-1 write 000049248a79a380 00 0014 01 0 [MdW] b6d4256cc02f69a5 +l1d-0 evict 0000045cce7b2a40 00 0009 01 [IcR] 23260c93a8186343 +l2 read 00004c22aaaafa40 00 0020 01 1 [SdW(0025,04)] 910ad1b100184a22 +l1d-0 read 00004c22aaaafa40 00 0009 01 0 [ScR] 910ad1b100184a22 +l2 write 0000d6eae7df0a40 01 0025 04 1 [MdW(0014,02)] c8a334c853d1650e +l1d-0 evict 0000d6eae7df0a40 00 0009 02 [IcR] c8a334c853d1650e +l2 read 000019a40a160240 00 0008 02 1 [SdW(0003,06)] 770f259328cec622 +l1d-0 read 000019a40a160240 00 0009 02 0 [ScR] 770f259328cec622 +l1d-0 read 000073f8f4229a80 00 0010 03 1 [ScR] d40c3ec8164f1ef5 +l1d-0 read 0000ade5546e9640 00 0009 03 1 [ScR] 972057e2a2e60fe7 +mem read 0000e21b98b426c0 -1 -001 -1 1 [McW] efda01f1f1ed6559 +l2 read 0000e21b98b426c0 00 0013 00 0 [McW(0014,04)] efda01f1f1ed6559 +l1d-1 write 0000e21b98b426c0 00 0011 00 0 [MdW] ea6c382ab9aa6351 +l2 read 0000d8e31ae65a80 00 0013 02 1 [SdW(0001,01)] 2bedd934c961c1a5 +l1d-1 read 0000d8e31ae65a80 00 0010 00 0 [ScR] 2bedd934c961c1a5 +l1d-0 write 00002b4766af8580 00 0006 01 1 [MdW] b4db8b8dc3224301 +l2 read 0000534534d814c0 01 0030 00 1 [McW(0019,06)] efe31bf8541a673f +l1d-0 write 0000534534d814c0 00 0003 00 0 [MdW] 8026669fe9d83abe +l2 read 0000c0773417d200 00 0000 02 1 [McW(0007,02)] eb360115e41d6873 +l1d-1 write 0000c0773417d200 00 0008 03 0 [MdW] 9601d8930440fb67 +l2 write 0000ecb652ef69c0 01 0012 02 1 [MdW(0029,07)] e264e2e00564abcc +l1d-1 evict 0000ecb652ef69c0 00 0007 01 [IcR] e264e2e00564abcc +l2 read 00005c90ae19e9c0 00 0002 00 1 [SdW(0029,02)] 3782cdec714c3fb4 +l1d-1 read 00005c90ae19e9c0 00 0007 01 0 [ScR] 3782cdec714c3fb4 +l1d-1 evict 0000359b9f397880 00 0002 03 [IcR] 868579761540bd7e +mem write 00005549adeaf440 -1 -001 -1 1 [MdW] f710a3fc6c88c778 +l2 evict 00005549adeaf440 01 0014 00 [IcR(0009,07)] f710a3fc6c88c778 +mem read 0000cb907584dc80 -1 -001 -1 1 [McW] 7d8a4e2a232b5292 +l2 read 0000cb907584dc80 00 0005 03 0 [ScW(0009,07)] 7d8a4e2a232b5292 +l1d-1 read 0000cb907584dc80 00 0002 03 0 [ScR] 7d8a4e2a232b5292 +l2 write 00008372e7409080 00 0025 04 1 [MdW(0021,02)] 88ed011c5c3a57e0 +l1d-1 evict 00008372e7409080 00 0002 02 [IcR] 88ed011c5c3a57e0 +l1d-0 evict 0000a40aa8666480 00 0002 03 [IcR] b516458655735b72 +l2 evict 0000a40aa8666480 01 0000 01 [IcR(0015,01)] b516458655735b72 +mem read 0000d9c5522ff480 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d9c5522ff480 00 0018 01 0 [McW(0015,01)] 0000000000000000 +l1d-1 write 0000d9c5522ff480 00 0002 02 0 [MdW] b5cfd31df58f9cb4 +l1d-0 read 000018c9dccfc840 00 0001 00 1 [MdW] 995adc99eb8dd0e4 +l1d-1 write 0000f59b70013a00 00 0008 02 1 [MdW] 9b2470dd391e32c1 +l1i-0 read 000014810cf26a80 00 0010 00 1 [ScR] 2529577b5a534390 +mem read 000016f64b35ad40 -1 -001 -1 1 [McW] 292bf8907b74edd2 +l2 read 000016f64b35ad40 01 0019 01 0 [ScW(0017,05)] 292bf8907b74edd2 +l1d-0 read 000016f64b35ad40 00 0005 03 0 [ScR] 292bf8907b74edd2 +mem write 0000d69a075d9a00 -1 -001 -1 1 [MdW] b97446909df2721a +l2 evict 0000d69a075d9a00 01 0001 01 [IcR(0005,03)] b97446909df2721a +mem read 0000c662cc646980 -1 -001 -1 1 [McW] 18c08a9434bd0fc2 +l2 read 0000c662cc646980 01 0025 00 0 [McW(0005,03)] 18c08a9434bd0fc2 +l1d-0 write 0000c662cc646980 00 0006 02 0 [MdW] be89989f27011d16 +l1d-0 read 00004813c834cdc0 00 0007 00 1 [MdW] 3992e1e5aacf6574 +l1d-1 evict 0000792d5ad259c0 00 0007 00 [IcR] 04aa8a778a45e9be +l1d-0 evict 0000dec9d876cb40 00 0013 01 [IcR] ad60a1d04091995d +l2 write 0000dec9d876cb40 00 0011 04 1 [MdW(0016,01)] ad60a1d04091995d +mem write 0000dec9d876cb40 -1 -001 -1 1 [MdW] ad60a1d04091995d +l2 evict 0000dec9d876cb40 00 0011 04 [IcR(0016,01)] ad60a1d04091995d +mem read 00001a6e53c425c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00001a6e53c425c0 00 0002 03 0 [McW(0016,01)] 0000000000000000 +l1d-1 write 00001a6e53c425c0 00 0007 00 0 [MdW] 2252d77bea92888a +l2 read 0000fad1bdc1cf00 00 0025 02 1 [SdW(0012,06)] bc47178377830961 +l1d-0 read 0000fad1bdc1cf00 00 0012 00 0 [ScR] bc47178377830961 +l1d-0 read 000000f97fae5cc0 00 0003 02 1 [ScR] fb933a96c629912c +l2 evict 0000740d5897eb00 01 0016 01 [IcR(0006,00)] 024d94b6ba577e25 +mem read 00005d35d68c9380 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00005d35d68c9380 01 0013 00 0 [McW(0006,00)] 0000000000000000 +l1d-0 write 00005d35d68c9380 00 0014 02 0 [MdW] 2f6fb92bfe206e0f +l1d-0 read 00001ad58832f640 00 0009 00 1 [ScR] f9c176745781e0be +l2 write 00008a9bb333e780 01 0022 00 1 [MdW(0015,02)] 1a1288c6d6f9e35f +l1d-1 evict 00008a9bb333e780 00 0014 00 [IcR] 1a1288c6d6f9e35f +l1d-0 evict 0000f49e24085940 00 0005 02 [IcR] 6ac11497575254f4 +l2 write 0000f49e24085940 01 0026 02 1 [MdW(0008,01)] 6ac11497575254f4 +mem write 0000f49e24085940 -1 -001 -1 1 [MdW] 6ac11497575254f4 +l2 evict 0000f49e24085940 01 0026 02 [IcR(0008,01)] 6ac11497575254f4 +mem read 000029aaf453f380 -1 -001 -1 1 [McW] feb49615ed0d86dc +l2 read 000029aaf453f380 00 0009 04 0 [McW(0008,01)] feb49615ed0d86dc +l1d-1 write 000029aaf453f380 00 0014 00 0 [MdW] b61a89beddcb2461 +l1d-1 evict 00004be09470fa40 00 0009 00 [IcR] d75b3bf448b79ed6 +l2 evict 0000a6f9f0803d80 00 0010 03 [IcR(0021,03)] 5719b2c00ecac89a +mem read 00007bc6648c6240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00007bc6648c6240 00 0018 02 0 [McW(0021,03)] 0000000000000000 +l1d-1 write 00007bc6648c6240 00 0009 00 0 [MdW] 0260134f571dd636 +mem read 0000b58c65e56d80 -1 -001 -1 1 [McW] 64bfc88438d208ec +l2 read 0000b58c65e56d80 00 0013 03 0 [ScW(0031,03)] 64bfc88438d208ec +l1d-1 read 0000b58c65e56d80 00 0006 02 0 [ScR] 64bfc88438d208ec +l2 write 000096f82eb883c0 01 0024 00 1 [MdW(0005,02)] 08bb4ec8dd33586c +l1d-0 evict 000096f82eb883c0 00 0015 03 [IcR] 08bb4ec8dd33586c +l2 evict 00007e3437831800 01 0013 02 [IcR(0015,06)] 6b9d76bb27c3ffa3 +mem read 0000947cb8f2fbc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000947cb8f2fbc0 00 0016 00 0 [McW(0015,06)] 0000000000000000 +l1d-0 write 0000947cb8f2fbc0 00 0015 03 0 [MdW] a65d0911d5a536bd +l1d-1 evict 000002d094c53dc0 00 0007 02 [IcR] a0f76de140ef6fc6 +l2 read 0000792d5ad259c0 00 0024 00 1 [ScW(0026,00)] 04aa8a778a45e9be +l1d-1 read 0000792d5ad259c0 00 0007 02 0 [ScR] 04aa8a778a45e9be +l1d-0 read 00002cbcc4bef440 00 0001 01 1 [MdW] 228b8470625fd619 +l1d-1 read 00001fd6787ba100 00 0004 02 1 [MdW] cf847744761b8732 +l2 read 0000ffb0ec26c4c0 00 0027 01 1 [SdW(0019,03)] a90b5754acfcac28 +l1d-1 read 0000ffb0ec26c4c0 00 0003 01 0 [ScR] a90b5754acfcac28 +l2 write 0000d090b8181100 01 0017 01 1 [MdW(0013,00)] 75e4bd98aa1f381f +l1d-1 evict 0000d090b8181100 00 0004 03 [IcR] 75e4bd98aa1f381f +l2 read 00007a0ccec77d00 01 0014 02 1 [MdW(0002,05)] d50d70a44c69b2b1 +l1d-1 write 00007a0ccec77d00 00 0004 03 0 [MdW] e8d14877cb6e3832 +l2 write 0000bb75517c9b80 00 0011 02 1 [MdW(0027,05)] 004c1351d2605e26 +l1d-0 evict 0000bb75517c9b80 00 0014 01 [IcR] 004c1351d2605e26 +l1d-0 evict 0000fad1bdc1cf00 00 0012 00 [IcR] bc47178377830961 +mem write 0000fad1bdc1cf00 -1 -001 -1 1 [MdW] bc47178377830961 +l2 evict 0000fad1bdc1cf00 00 0025 02 [IcR(0012,06)] bc47178377830961 +mem read 0000a90ecf11c380 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000a90ecf11c380 00 0007 02 0 [McW(0012,06)] 0000000000000000 +l1d-0 write 0000a90ecf11c380 00 0014 01 0 [MdW] aac2b62c13e78085 +l1d-1 evict 000072629a2641c0 00 0007 03 [IcR] cff65dd3605c7fe3 +l2 evict 00002feadfa86d40 01 0021 01 +l2 read 00002feadfa86d40 00 0020 00 0 +mem read 00007a76f01141c0 -1 -001 -1 1 [McW] 4f7e9691e6e6e9e9 +l2 read 00007a76f01141c0 01 0021 01 0 [ScW(0002,01)] 4f7e9691e6e6e9e9 +l1d-1 read 00007a76f01141c0 00 0007 03 0 [ScR] 4f7e9691e6e6e9e9 +l1d-1 evict 00001ffbc4ff1a40 00 0009 02 [IcR] 08bf63be6c7befa2 +l2 read 00004be09470fa40 00 0000 00 1 [ScW(0013,06)] d75b3bf448b79ed6 +l1d-1 read 00004be09470fa40 00 0009 02 0 [ScR] d75b3bf448b79ed6 +l1d-0 evict 0000afa7e0db12c0 00 0011 00 [IcR] fbf332b5f72ab798 +l2 read 0000dda2631186c0 00 0026 01 1 [SdW(0022,04)] 2389031e21d4a9ca +l1d-0 read 0000dda2631186c0 00 0011 00 0 [ScR] 2389031e21d4a9ca +l1d-1 evict 0000ee65dae92ec0 00 0011 01 [IcR] 330bcb33c3315b47 +l2 read 00003f92117466c0 01 0009 02 1 [SdW(0003,05)] e875ffc98e7626d6 +l1d-1 read 00003f92117466c0 00 0011 01 0 [ScR] e875ffc98e7626d6 +l1d-1 read 0000d314b6aa3a80 00 0010 01 1 [ScR] 570f941a341d0e3b +l2 read 0000b304f6dcc000 01 0016 03 1 [SdW(0006,04)] fb80ed3c4e7012f9 +l1d-0 read 0000b304f6dcc000 00 0000 01 0 [ScR] fb80ed3c4e7012f9 +l1d-1 evict 00005c90ae19e9c0 00 0007 01 [IcR] 3782cdec714c3fb4 +l2 read 0000ecb652ef69c0 01 0012 02 1 [SdW(0029,07)] e264e2e00564abcc +l1d-1 read 0000ecb652ef69c0 00 0007 01 0 [ScR] e264e2e00564abcc +l2 write 0000e51c88207d00 00 0002 01 1 [MdW(0007,00)] f6cd3559b9b82c2e +l1d-1 evict 0000e51c88207d00 00 0004 00 [IcR] f6cd3559b9b82c2e +l2 read 00002e867eb6a900 01 0004 01 1 [SdW(0010,01)] e69494168320e39a +l1d-1 read 00002e867eb6a900 00 0004 00 0 [ScR] e69494168320e39a +l2 write 00004bf31c06ad00 00 0009 03 1 [MdW(0012,01)] 7bfaca6fac0ffca4 +l1d-1 evict 00004bf31c06ad00 00 0004 01 [IcR] 7bfaca6fac0ffca4 +l2 read 000053c37f465900 00 0017 01 1 [SdW(0014,03)] 1d46a92797eafd72 +l1d-1 read 000053c37f465900 00 0004 01 0 [ScR] 1d46a92797eafd72 +l1d-1 evict 0000d314b6aa3a80 00 0010 01 [IcR] 570f941a341d0e3b +mem write 0000d314b6aa3a80 -1 -001 -1 1 [MdW] 570f941a341d0e3b +l2 evict 0000d314b6aa3a80 01 0021 00 [IcR(0031,04)] 570f941a341d0e3b +mem read 000063036c943940 -1 -001 -1 1 [McW] 299a3a36bffbc8d8 +l2 read 000063036c943940 01 0022 01 0 [ScW(0031,04)] 299a3a36bffbc8d8 +l1d-0 read 000063036c943940 00 0005 02 0 [ScR] 299a3a36bffbc8d8 +l1d-0 evict 000057ef223eb2c0 00 0011 01 [IcR] 460fca80430d4d95 +l2 read 0000ee65dae92ec0 00 0019 02 1 [MdW(0003,01)] 330bcb33c3315b47 +l1d-0 write 0000ee65dae92ec0 00 0011 01 0 [MdW] bbc46a81f975995d +l1d-0 write 000065dc0cb58f00 00 0012 01 1 [MdW] 8b4ecdd8b082fe75 +l2 read 000019a40a160240 00 0008 02 1 [MdW(0003,06)] 770f259328cec622 +l1d-0 write 000019a40a160240 00 0009 02 0 [MdW] 9bfd9fbbf2c99ff9 +l1d-1 evict 0000dda2631186c0 00 0011 03 [IcR] 2389031e21d4a9ca +l2 read 00004ff679346ec0 00 0024 02 1 [ScW(0008,02)] 69165a7d7db29609 +l1d-1 read 00004ff679346ec0 00 0011 03 0 [ScR] 69165a7d7db29609 +l1d-1 read 00007e15eb118b00 00 0012 01 1 [ScR] 9419ebae6d75d1b9 +l1d-0 read 0000534534d814c0 00 0003 00 1 [MdW] 8026669fe9d83abe +l1d-0 evict 000030295cbb89c0 00 0007 01 [IcR] 808a6a34835c5ae7 +l1d-1 evict 0000df0f11cce0c0 00 0003 00 [IcR] b0fddea366d09da1 +l2 write 0000df0f11cce0c0 01 0013 01 1 [MdW(0029,05)] b0fddea366d09da1 +mem write 0000df0f11cce0c0 -1 -001 -1 1 [MdW] b0fddea366d09da1 +l2 evict 0000df0f11cce0c0 01 0013 01 [IcR(0029,05)] b0fddea366d09da1 +mem read 00003be6b01765c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00003be6b01765c0 00 0025 02 0 [McW(0029,05)] 0000000000000000 +l1d-0 write 00003be6b01765c0 00 0007 01 0 [MdW] eacbeb2cbf4828f9 +l1d-1 read 0000015d1559b380 00 0014 03 1 [MdW] 37ba02bf31772584 +l1d-0 evict 0000908064eef6c0 00 0011 03 [IcR] 63b934d5bef74a33 +l2 read 000057ef223eb2c0 01 0020 03 1 [ScW(0009,06)] 460fca80430d4d95 +l1d-0 read 000057ef223eb2c0 00 0011 03 0 [ScR] 460fca80430d4d95 +l2 write 0000d99af3531440 01 0031 02 1 [MdW(0001,00)] 374b30926d13111e +l1d-0 evict 0000d99af3531440 00 0001 02 [IcR] 374b30926d13111e +l2 read 0000c86d27a3d040 00 0002 02 1 [SdW(0000,06)] 4e927fc3199ae8b9 +l1d-0 read 0000c86d27a3d040 00 0001 02 0 [ScR] 4e927fc3199ae8b9 +l1d-0 read 0000b304f6dcc000 00 0000 01 1 [ScR] fb80ed3c4e7012f9 +l1d-0 evict 00004c22aaaafa40 00 0009 01 [IcR] 910ad1b100184a22 +l1d-0 evict 0000ee65dae92ec0 00 0011 01 [IcR] bbc46a81f975995d +l2 write 0000ee65dae92ec0 00 0019 02 1 [MdW(0003,01)] bbc46a81f975995d +mem write 0000ee65dae92ec0 -1 -001 -1 1 [MdW] bbc46a81f975995d +l2 evict 0000ee65dae92ec0 00 0019 02 [IcR(0003,01)] bbc46a81f975995d +mem read 000042ff28b0ea40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000042ff28b0ea40 01 0023 00 0 [McW(0003,01)] 0000000000000000 +l1d-0 write 000042ff28b0ea40 00 0009 01 0 [MdW] cab22f5662108b05 +l2 write 0000df16e7f1d400 00 0028 01 1 [MdW(0006,06)] 98f5fd7bc49c7ee9 +l1d-1 evict 0000df16e7f1d400 00 0000 01 [IcR] 98f5fd7bc49c7ee9 +l1d-1 evict 0000792d5ad259c0 00 0007 02 [IcR] 04aa8a778a45e9be +l2 evict 0000792d5ad259c0 00 0024 00 [IcR(0026,00)] 04aa8a778a45e9be +mem read 0000bb8c7eafac00 -1 -001 -1 1 [McW] 209d7976d327f65d +l2 read 0000bb8c7eafac00 01 0022 02 0 [ScW(0026,00)] 209d7976d327f65d +l1d-1 read 0000bb8c7eafac00 00 0000 01 0 [ScR] 209d7976d327f65d +l2 write 00005584f5f75300 01 0008 01 1 [MdW(0004,03)] 71726f4857083034 +l1d-1 evict 00005584f5f75300 00 0012 02 [IcR] 71726f4857083034 +l2 evict 0000c7e07b801e00 01 0001 03 [IcR(0023,05)] edaed707c9f0d11e +mem read 0000a941be991f00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000a941be991f00 00 0004 04 0 [McW(0023,05)] 0000000000000000 +l1d-1 write 0000a941be991f00 00 0012 02 0 [MdW] e0aed0772e617903 +l1d-1 read 0000755c40141f00 00 0012 00 1 [MdW] 0e01110cf13031b3 +l1d-0 evict 0000ba16e8b8b540 00 0005 01 [IcR] 3de612c8e734de20 +l2 read 0000750cdfd9ed40 01 0027 03 1 [ScW(0015,00)] d70a3a98f65651fb +l1d-0 read 0000750cdfd9ed40 00 0005 01 0 [ScR] d70a3a98f65651fb +l1d-1 read 000029aaf453f380 00 0014 00 1 [MdW] b61a89beddcb2461 +l1d-1 evict 00005066f9d0b480 00 0002 00 [IcR] 53940c35436b8a64 +l2 read 00008372e7409080 00 0025 04 1 [SdW(0021,02)] 88ed011c5c3a57e0 +l1d-1 read 00008372e7409080 00 0002 00 0 [ScR] 88ed011c5c3a57e0 +l1d-0 evict 00001eab7edaca00 00 0008 03 [IcR] d22728c72006712c +l2 write 00001eab7edaca00 00 0015 02 1 [MdW(0020,04)] d22728c72006712c +mem write 00001eab7edaca00 -1 -001 -1 1 [MdW] d22728c72006712c +l2 evict 00001eab7edaca00 00 0015 02 [IcR(0020,04)] d22728c72006712c +mem read 000046663e4def00 -1 -001 -1 1 [McW] e21542a5128e9ecb +l2 read 000046663e4def00 00 0031 01 0 [ScW(0020,04)] e21542a5128e9ecb +l1d-0 read 000046663e4def00 00 0012 00 0 [ScR] e21542a5128e9ecb +l1d-0 read 0000534534d814c0 00 0003 00 1 [MdW] 8026669fe9d83abe +mem write 0000d6eae7df0a40 -1 -001 -1 1 [MdW] c8a334c853d1650e +l2 evict 0000d6eae7df0a40 01 0025 04 [IcR(0014,02)] c8a334c853d1650e +mem read 0000b7fc8ec73280 -1 -001 -1 1 [McW] 82cac3e599046a61 +l2 read 0000b7fc8ec73280 01 0013 01 0 [ScW(0014,02)] 82cac3e599046a61 +l1d-1 read 0000b7fc8ec73280 00 0010 01 0 [ScR] 82cac3e599046a61 +mem write 000042cda8d19c00 -1 -001 -1 1 [MdW] 85c9b01aff50e505 +l2 evict 000042cda8d19c00 01 0018 03 [IcR(0019,04)] 85c9b01aff50e505 +mem read 0000df0f11cce0c0 -1 -001 -1 1 [McW] b0fddea366d09da1 +l2 read 0000df0f11cce0c0 01 0013 02 0 [McW(0019,04)] b0fddea366d09da1 +l1d-1 write 0000df0f11cce0c0 00 0003 00 0 [MdW] 53cb2f84630d2023 +l1d-0 read 0000d5a681624fc0 00 0015 02 1 [MdW] 78e152d3899ce99a +l2 write 000099fa8471ba40 01 0030 01 1 [MdW(0017,04)] 3a1b0222700896fc +l1d-1 evict 000099fa8471ba40 00 0009 03 [IcR] 3a1b0222700896fc +l2 read 00007cc1e5f42e40 00 0027 00 1 [ScW(0022,07)] 38334869bbcf71a3 +l1d-1 read 00007cc1e5f42e40 00 0009 03 0 [ScR] 38334869bbcf71a3 +l1d-0 evict 0000c66c607618c0 00 0003 01 [IcR] ecc19bfa60ae4cae +l1d-0 evict 0000bd16375b9000 00 0000 00 [IcR] 01729ac3b5b468ad +l2 evict 0000bd16375b9000 01 0012 03 [IcR(0030,07)] 01729ac3b5b468ad +mem read 0000a2e799c89cc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000a2e799c89cc0 00 0026 04 0 [McW(0030,07)] 0000000000000000 +l1d-0 write 0000a2e799c89cc0 00 0003 01 0 [MdW] f0bbdd60d630d326 +l2 write 00006e7158c618c0 01 0006 01 1 [MdW(0021,00)] 1ac304b439ea8f39 +l1d-0 evict 00006e7158c618c0 00 0003 03 [IcR] 1ac304b439ea8f39 +mem read 00005dfc154ee8c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00005dfc154ee8c0 00 0001 02 0 [McW(0026,06)] 0000000000000000 +l1d-0 write 00005dfc154ee8c0 00 0003 03 0 [MdW] 0d9f97e6c23b33f4 +l2 write 0000517854abf080 01 0004 00 1 [MdW(0028,05)] e0a55470670fd6c5 +l1d-1 evict 0000517854abf080 00 0002 01 [IcR] e0a55470670fd6c5 +mem read 000026603b309080 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000026603b309080 01 0021 00 0 [McW(0018,03)] 0000000000000000 +l1d-1 write 000026603b309080 00 0002 01 0 [MdW] b7553d6dcd803973 +l2 write 00003f98ec32ec40 01 0002 02 1 [MdW(0021,04)] 85f5ad5e548a4019 +l1d-0 evict 00003f98ec32ec40 00 0001 03 [IcR] 85f5ad5e548a4019 +l2 read 000034ffc92a8040 01 0016 02 1 [SdW(0028,00)] c7c6f4c97b2bfb9c +l1d-0 read 000034ffc92a8040 00 0001 03 0 [ScR] c7c6f4c97b2bfb9c +l1d-1 evict 00004f46a7d2ea80 00 0010 02 [IcR] 1d6b75778fa46c62 +l2 read 000059efb9532e80 00 0000 03 1 [SdW(0024,02)] db19e43f15c6da9f +l1d-1 read 000059efb9532e80 00 0010 02 0 [ScR] db19e43f15c6da9f +l2 write 00001fd6787ba100 00 0007 00 1 [MdW(0010,06)] cf847744761b8732 +l1d-1 evict 00001fd6787ba100 00 0004 02 [IcR] cf847744761b8732 +l2 read 0000d090b8181100 01 0017 01 1 [SdW(0013,00)] 75e4bd98aa1f381f +l1d-1 read 0000d090b8181100 00 0004 02 0 [ScR] 75e4bd98aa1f381f +l1d-0 read 000019a40a160240 00 0009 02 1 [MdW] 9bfd9fbbf2c99ff9 +l2 write 0000ae053b607e40 00 0011 01 1 [MdW(0028,02)] de15584b39a145e3 +l1d-1 evict 0000ae053b607e40 00 0009 01 [IcR] de15584b39a145e3 +l2 read 0000b6ebb009be40 01 0018 00 1 [SdW(0020,03)] 522882a3ec706ec7 +l1d-1 read 0000b6ebb009be40 00 0009 01 0 [ScR] 522882a3ec706ec7 +l2 write 0000ecc75bb99b80 00 0018 00 1 [MdW(0000,04)] 500c340d1c781391 +l1d-1 evict 0000ecc75bb99b80 00 0014 02 [IcR] 500c340d1c781391 +l2 read 00008a9bb333e780 01 0022 00 1 [SdW(0015,02)] 1a1288c6d6f9e35f +l1d-1 read 00008a9bb333e780 00 0014 02 0 [ScR] 1a1288c6d6f9e35f +l2 read 000057ef223eb2c0 01 0020 03 1 [McW(0009,06)] 460fca80430d4d95 +l1d-0 write 000057ef223eb2c0 00 0011 03 0 [MdW] 861277f6eb5e5e61 +l1d-0 read 000019a40a160240 00 0009 02 1 [MdW] 9bfd9fbbf2c99ff9 +l2 write 000049248a79a380 00 0000 01 1 [MdW(0026,03)] b6d4256cc02f69a5 +l1d-1 evict 000049248a79a380 00 0014 01 [IcR] b6d4256cc02f69a5 +l1d-1 evict 00008372e7409080 00 0002 00 [IcR] 88ed011c5c3a57e0 +mem write 00008372e7409080 -1 -001 -1 1 [MdW] 88ed011c5c3a57e0 +l2 evict 00008372e7409080 00 0025 04 [IcR(0021,02)] 88ed011c5c3a57e0 +mem read 00006b8d57b16380 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006b8d57b16380 00 0023 02 0 [McW(0021,02)] 0000000000000000 +l1d-1 write 00006b8d57b16380 00 0014 01 0 [MdW] 819cfbd3392cc9d7 +l2 write 0000bbc9c32465c0 00 0015 01 1 [MdW(0023,03)] a4578b886e8d379b +l1d-0 evict 0000bbc9c32465c0 00 0007 02 [IcR] a4578b886e8d379b +l2 read 000030295cbb89c0 00 0031 04 1 [McW(0020,06)] 808a6a34835c5ae7 +l1d-0 write 000030295cbb89c0 00 0007 02 0 [MdW] 6d0621fc7d1add50 +l1d-1 read 0000b58c65e56d80 00 0006 02 1 [ScR] 64bfc88438d208ec +l2 read 000040f7755c2ac0 01 0018 02 1 [SdW(0018,04)] bcf94c89f64696f7 +l1d-0 read 000040f7755c2ac0 00 0011 01 0 [ScR] bcf94c89f64696f7 +l1d-1 evict 0000c72e4af4f8c0 00 0003 02 [IcR] 9dd6e27e91bc9863 +l2 evict 0000c72e4af4f8c0 01 0000 04 [IcR(0027,01)] 9dd6e27e91bc9863 +mem read 0000fe792df68e00 -1 -001 -1 1 [McW] 94f533d553344222 +l2 read 0000fe792df68e00 01 0005 02 0 [ScW(0027,01)] 94f533d553344222 +l1d-0 read 0000fe792df68e00 00 0008 03 0 [ScR] 94f533d553344222 +l1d-1 evict 0000ea018319b280 00 0010 03 [IcR] 2de9db08d13b3d82 +l2 read 00004f46a7d2ea80 01 0006 02 1 [ScW(0010,02)] 1d6b75778fa46c62 +l1d-1 read 00004f46a7d2ea80 00 0010 03 0 [ScR] 1d6b75778fa46c62 +l2 write 00002c1e14cbed40 01 0021 02 1 [MdW(0026,07)] b42a331ca26d20fc +l1d-1 evict 00002c1e14cbed40 00 0005 02 [IcR] b42a331ca26d20fc +l2 read 00004db5ccc11940 01 0010 01 1 [MdW(0030,04)] 44398306b9b406c4 +l1d-1 write 00004db5ccc11940 00 0005 02 0 [MdW] bfb2f68b809fc749 +l1d-1 read 0000f59b70013a00 00 0008 02 1 [MdW] 9b2470dd391e32c1 +l2 write 0000033616c7e540 00 0022 01 1 [MdW(0007,01)] d81188bfabb65cec +l1d-0 evict 0000033616c7e540 00 0005 00 [IcR] d81188bfabb65cec +l1d-1 evict 00009eb1e8f78fc0 00 0015 01 [IcR] 27a74387363b6d92 +l2 write 00009eb1e8f78fc0 00 0012 02 1 [MdW(0030,03)] 27a74387363b6d92 +mem write 00009eb1e8f78fc0 -1 -001 -1 1 [MdW] 27a74387363b6d92 +l2 evict 00009eb1e8f78fc0 00 0012 02 [IcR(0030,03)] 27a74387363b6d92 +mem read 00001b7163d48d40 -1 -001 -1 1 [McW] da68687e2447a125 +l2 read 00001b7163d48d40 01 0022 04 0 [ScW(0030,03)] da68687e2447a125 +l1d-0 read 00001b7163d48d40 00 0005 00 0 [ScR] da68687e2447a125 +mem write 00009a461a9864c0 -1 -001 -1 1 [MdW] 2d511c744763c2c7 +l2 evict 00009a461a9864c0 00 0019 00 [IcR(0024,03)] 2d511c744763c2c7 +mem read 00009a603343d580 -1 -001 -1 1 [McW] 75aae8a3bba85efe +l2 read 00009a603343d580 01 0003 02 0 [ScW(0024,03)] 75aae8a3bba85efe +l1d-0 read 00009a603343d580 00 0006 03 0 [ScR] 75aae8a3bba85efe +l2 read 000056d4fe3257c0 01 0024 01 1 [SdW(0016,02)] 2d6d78e60e44fcb9 +l1i-1 read 000056d4fe3257c0 00 0015 00 0 [ScR] 2d6d78e60e44fcb9 +l2 write 000008ededd7fd80 01 0009 01 1 [MdW(0026,01)] f7107428c77d814b +l1d-1 evict 000008ededd7fd80 00 0006 00 [IcR] f7107428c77d814b +l2 read 0000e0ad5d373580 00 0008 00 1 [ScW(0014,05)] 032c152e3f44b83d +l1d-1 read 0000e0ad5d373580 00 0006 00 0 [ScR] 032c152e3f44b83d +l1i-1 read 0000359b9f397880 00 0002 00 1 [ScR] 868579761540bd7e +l2 read 0000942a1345ef40 01 0026 00 1 [SdW(0011,01)] b82b61ab6fc7eaf4 +l1d-0 read 0000942a1345ef40 00 0013 00 0 [ScR] b82b61ab6fc7eaf4 +l1d-0 evict 000000f97fae5cc0 00 0003 02 [IcR] fb933a96c629912c +l2 read 00009fde26f888c0 00 0005 02 1 [McW(0026,04)] 405e3e9d2ede086b +l1d-0 write 00009fde26f888c0 00 0003 02 0 [MdW] daca8511cf2c60cc +l2 write 000086890a9e27c0 01 0005 01 1 [MdW(0030,00)] a1e3c9ae624695e5 +l1d-0 evict 000086890a9e27c0 00 0015 01 [IcR] a1e3c9ae624695e5 +l1d-1 evict 00001d61aeb20340 00 0013 02 [IcR] c9614f7e7125d893 +l2 evict 00001d61aeb20340 00 0003 01 [IcR(0012,05)] c9614f7e7125d893 +mem read 00001c9702375bc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00001c9702375bc0 00 0021 00 0 [McW(0012,05)] 0000000000000000 +l1d-0 write 00001c9702375bc0 00 0015 01 0 [MdW] ee1e9990a9eb12f5 +l1d-1 evict 0000198865cee000 00 0000 02 [IcR] 2f11c1bf7908ca3a +l2 write 0000198865cee000 01 0015 03 1 [MdW(0018,07)] 2f11c1bf7908ca3a +mem write 0000198865cee000 -1 -001 -1 1 [MdW] 2f11c1bf7908ca3a +l2 evict 0000198865cee000 01 0015 03 [IcR(0018,07)] 2f11c1bf7908ca3a +mem read 0000ce94cd3328c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000ce94cd3328c0 00 0008 04 0 [McW(0018,07)] 0000000000000000 +l1d-1 write 0000ce94cd3328c0 00 0003 02 0 [MdW] 283de845d98028c2 +l1d-0 evict 0000fa408c35ba00 00 0008 02 [IcR] 7eec603efdcdea3b +l1d-0 evict 000034ffc92a8040 00 0001 03 [IcR] c7c6f4c97b2bfb9c +mem write 000034ffc92a8040 -1 -001 -1 1 [MdW] c7c6f4c97b2bfb9c +l2 evict 000034ffc92a8040 01 0016 02 [IcR(0028,00)] c7c6f4c97b2bfb9c +mem read 000052d61b6d5a00 -1 -001 -1 1 [McW] e775afa1004c0eb4 +l2 read 000052d61b6d5a00 00 0016 01 0 [ScW(0028,00)] e775afa1004c0eb4 +l1d-0 read 000052d61b6d5a00 00 0008 02 0 [ScR] e775afa1004c0eb4 +l2 read 0000b7fc8ec73280 01 0013 01 1 [ScW(0014,02)] 82cac3e599046a61 +l1i-1 read 0000b7fc8ec73280 00 0010 01 0 [ScR] 82cac3e599046a61 +l2 read 0000cac81c633400 00 0029 03 1 [SdW(0000,02)] 29a7f6150c3dce9f +l1d-0 read 0000cac81c633400 00 0000 00 0 [ScR] 29a7f6150c3dce9f +l1d-0 evict 000057ef223eb2c0 00 0011 03 [IcR] 861277f6eb5e5e61 +l2 write 000057ef223eb2c0 01 0020 03 1 [MdW(0009,06)] 861277f6eb5e5e61 +mem write 000057ef223eb2c0 -1 -001 -1 1 [MdW] 861277f6eb5e5e61 +l2 evict 000057ef223eb2c0 01 0020 03 [IcR(0009,06)] 861277f6eb5e5e61 +mem read 0000dcedffd5d840 -1 -001 -1 1 [McW] df69ebf16388cff7 +l2 read 0000dcedffd5d840 00 0018 03 0 [ScW(0009,06)] df69ebf16388cff7 +l1d-0 read 0000dcedffd5d840 00 0001 03 0 [ScR] df69ebf16388cff7 +l1d-0 read 000073f8f4229a80 00 0010 03 1 [ScR] d40c3ec8164f1ef5 +l1d-0 evict 0000c8fa6d0f39c0 00 0007 03 [IcR] 6ba4d33d1d05c3e1 +l1d-1 evict 0000b58c65e56d80 00 0006 02 [IcR] 64bfc88438d208ec +l2 evict 0000b58c65e56d80 00 0013 03 [IcR(0031,03)] 64bfc88438d208ec +mem read 00008b69cd3f25c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00008b69cd3f25c0 00 0015 02 0 [McW(0031,03)] 0000000000000000 +l1d-0 write 00008b69cd3f25c0 00 0007 03 0 [MdW] 44ac0b573a63fcd4 +l1d-0 evict 00009a603343d580 00 0006 03 [IcR] 75aae8a3bba85efe +l2 evict 00009a603343d580 01 0003 02 [IcR(0024,03)] 75aae8a3bba85efe +mem read 0000960701732dc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000960701732dc0 00 0000 04 0 [McW(0024,03)] 0000000000000000 +l1d-1 write 0000960701732dc0 00 0007 02 0 [MdW] 7837545cfc7cc0d7 +l2 write 0000534534d814c0 01 0030 00 1 [MdW(0019,06)] 8026669fe9d83abe +l1d-0 evict 0000534534d814c0 00 0003 00 [IcR] 8026669fe9d83abe +mem write 0000172ca7421240 -1 -001 -1 1 [MdW] 322ca77b5b927467 +l2 evict 0000172ca7421240 01 0026 01 [IcR(0007,04)] 322ca77b5b927467 +mem read 00004cfb5e6fc8c0 -1 -001 -1 1 [McW] bb786e37d55629f0 +l2 read 00004cfb5e6fc8c0 01 0015 00 0 [McW(0007,04)] bb786e37d55629f0 +l1d-0 write 00004cfb5e6fc8c0 00 0003 00 0 [MdW] 63d2e82e77523b96 +l1d-1 evict 0000205a116a7d40 00 0005 01 [IcR] 292dcc118246929c +l2 read 0000d053f6b48540 00 0006 00 1 [MdW(0025,06)] a4fca9060769b884 +l1d-1 write 0000d053f6b48540 00 0005 01 0 [MdW] 8b505c8f60159dd8 +l2 write 0000605ba6057540 01 0008 02 1 [MdW(0026,02)] d7979871746e8971 +l1d-1 evict 0000605ba6057540 00 0005 03 [IcR] d7979871746e8971 +mem read 000006911dd4e540 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000006911dd4e540 00 0010 03 0 [McW(0001,06)] 0000000000000000 +l1d-1 write 000006911dd4e540 00 0005 03 0 [MdW] d5a7e9d28c0c6ae6 +l2 write 0000848b6896ff40 00 0010 01 1 [MdW(0029,06)] 3d3448be0c771dfb +l2 read 0000848b6896ff40 00 0010 01 1 [SdW(0029,06)] 3d3448be0c771dfb +l1d-0 read 0000848b6896ff40 00 0013 01 0 [ScR] 3d3448be0c771dfb +l2 write 000072dc5902ef00 01 0019 00 1 [MdW(0021,07)] 1c15e2bf4e607d4d +l1d-0 evict 000072dc5902ef00 00 0012 03 [IcR] 1c15e2bf4e607d4d +mem write 000018d5c901f980 -1 -001 -1 1 [MdW] 3ab4306e1fd65d85 +l2 evict 000018d5c901f980 01 0001 00 [IcR(0014,00)] 3ab4306e1fd65d85 +mem read 0000280e4164bb00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000280e4164bb00 01 0028 04 0 [McW(0014,00)] 0000000000000000 +l1d-0 write 0000280e4164bb00 00 0012 03 0 [MdW] 3d524b0d26406aad +l1d-0 write 0000c662cc646980 00 0006 02 1 [MdW] 6794a45adab0c5a6 +l1d-0 read 000065dc0cb58f00 00 0012 01 1 [MdW] 8b4ecdd8b082fe75 +l2 read 000091e69e86bc00 01 0002 01 1 [MdW(0006,03)] 9c0f2328e5a76eca +l1d-0 write 000091e69e86bc00 00 0000 02 0 [MdW] 050aae8e0c3268a3 +l1d-1 read 00004db5ccc11940 00 0005 02 1 [MdW] bfb2f68b809fc749 +l2 write 00004e67a6d81700 01 0023 01 1 [MdW(0001,03)] 11cd09bce09e8d89 +l1d-1 evict 00004e67a6d81700 00 0012 03 [IcR] 11cd09bce09e8d89 +mem write 00004e67a6d81700 -1 -001 -1 1 [MdW] 11cd09bce09e8d89 +l2 evict 00004e67a6d81700 01 0023 01 [IcR(0001,03)] 11cd09bce09e8d89 +mem read 000066e78b358f00 -1 -001 -1 1 [McW] 50bcdb51cf5071b0 +l2 read 000066e78b358f00 01 0015 01 0 [ScW(0001,03)] 50bcdb51cf5071b0 +l1d-1 read 000066e78b358f00 00 0012 03 0 [ScR] 50bcdb51cf5071b0 +l1d-1 read 000066e78b358f00 00 0012 03 1 [ScR] 50bcdb51cf5071b0 +l1d-1 read 0000ade01f76c940 00 0005 00 1 [ScR] 7e76db3a89663ea8 +l2 write 00007a0ccec77d00 01 0014 02 1 [MdW(0002,05)] e8d14877cb6e3832 +l1d-1 evict 00007a0ccec77d00 00 0004 03 [IcR] e8d14877cb6e3832 +l2 read 00000539d65d1d00 00 0029 00 1 [MdW(0005,04)] e278ab4481dc5d33 +l1d-1 write 00000539d65d1d00 00 0004 03 0 [MdW] cc8bbcae9dadbd56 +mem read 0000302899d8cac0 -1 -001 -1 1 [McW] bdd24610b537bb57 +l2 read 0000302899d8cac0 01 0012 03 0 [ScW(0004,02)] bdd24610b537bb57 +l1d-0 read 0000302899d8cac0 00 0011 03 0 [ScR] bdd24610b537bb57 +l2 read 000044ca9c649400 00 0030 01 1 [MdW(0031,05)] 58da3250723bdd77 +l1d-1 write 000044ca9c649400 00 0000 02 0 [MdW] eccce61d6f7f8e87 +l2 write 0000a2e799c89cc0 00 0026 04 1 [MdW(0030,07)] f0bbdd60d630d326 +l1d-0 evict 0000a2e799c89cc0 00 0003 01 [IcR] f0bbdd60d630d326 +mem write 0000b5edcfe07e40 -1 -001 -1 1 [MdW] df83c9e60deff983 +l2 evict 0000b5edcfe07e40 01 0016 00 [IcR(0026,05)] df83c9e60deff983 +mem read 00009a461a9864c0 -1 -001 -1 1 [McW] 2d511c744763c2c7 +l2 read 00009a461a9864c0 00 0019 00 0 [McW(0026,05)] 2d511c744763c2c7 +l1d-0 write 00009a461a9864c0 00 0003 01 0 [MdW] 324da2ce5b0bed4d +l1d-1 evict 00002e867eb6a900 00 0004 00 [IcR] e69494168320e39a +l2 read 00007a0ccec77d00 01 0014 02 1 [SdW(0002,05)] e8d14877cb6e3832 +l1d-1 read 00007a0ccec77d00 00 0004 00 0 [ScR] e8d14877cb6e3832 +l1d-0 evict 0000ea018319b280 00 0010 02 [IcR] 2de9db08d13b3d82 +l2 read 000059efb9532e80 00 0000 03 1 [SdW(0024,02)] db19e43f15c6da9f +l1d-0 read 000059efb9532e80 00 0010 02 0 [ScR] db19e43f15c6da9f +l2 write 00001a6e53c425c0 00 0002 03 1 [MdW(0016,01)] 2252d77bea92888a +l1d-1 evict 00001a6e53c425c0 00 0007 00 [IcR] 2252d77bea92888a +l2 read 000072629a2641c0 01 0021 04 1 [ScW(0003,02)] cff65dd3605c7fe3 +l1d-1 read 000072629a2641c0 00 0007 00 0 [ScR] cff65dd3605c7fe3 +l1d-0 read 0000a240433c0100 00 0004 03 1 [ScR] 3c86a591f8f297ce +l1d-0 evict 000030295cbb89c0 00 0007 02 [IcR] 6d0621fc7d1add50 +l2 write 000030295cbb89c0 00 0031 04 1 [MdW(0020,06)] 6d0621fc7d1add50 +mem write 000030295cbb89c0 -1 -001 -1 1 [MdW] 6d0621fc7d1add50 +l2 evict 000030295cbb89c0 00 0031 04 [IcR(0020,06)] 6d0621fc7d1add50 +mem read 0000ed89583b9580 -1 -001 -1 1 [McW] 4452d6f4afd1eaf3 +l2 read 0000ed89583b9580 01 0017 04 0 [McW(0020,06)] 4452d6f4afd1eaf3 +l1d-1 write 0000ed89583b9580 00 0006 02 0 [MdW] d8bb4f450f57ff09 +l2 write 00007bc6648c6240 00 0018 02 1 [MdW(0021,03)] 0260134f571dd636 +l1d-1 evict 00007bc6648c6240 00 0009 00 [IcR] 0260134f571dd636 +l1d-1 evict 000066e78b358f00 00 0012 03 [IcR] 50bcdb51cf5071b0 +l2 evict 000066e78b358f00 01 0015 01 [IcR(0001,03)] 50bcdb51cf5071b0 +mem read 000070a6fc8f5e40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000070a6fc8f5e40 01 0010 00 0 [McW(0001,03)] 0000000000000000 +l1d-1 write 000070a6fc8f5e40 00 0009 00 0 [MdW] 64e8dcc94b7334bf +l2 write 00006980d04a3400 00 0009 02 1 [MdW(0000,05)] 865c0d538f5633c2 +l2 read 00006980d04a3400 00 0009 02 1 [SdW(0000,05)] 865c0d538f5633c2 +l1i-1 read 00006980d04a3400 00 0000 00 0 [ScR] 865c0d538f5633c2 +l1d-1 read 0000ade01f76c940 00 0005 00 1 [ScR] 7e76db3a89663ea8 +l2 write 0000947cb8f2fbc0 00 0016 00 1 [MdW(0015,06)] a65d0911d5a536bd +l2 read 0000947cb8f2fbc0 00 0016 00 1 [SdW(0015,06)] a65d0911d5a536bd +l1i-0 read 0000947cb8f2fbc0 00 0015 00 0 [ScR] a65d0911d5a536bd +l2 write 00005dfc154ee8c0 00 0001 02 1 [MdW(0026,06)] 0d9f97e6c23b33f4 +l1d-0 evict 00005dfc154ee8c0 00 0003 03 [IcR] 0d9f97e6c23b33f4 +l1d-1 evict 000006911dd4e540 00 0005 03 [IcR] d5a7e9d28c0c6ae6 +l2 write 000006911dd4e540 00 0010 03 1 [MdW(0001,06)] d5a7e9d28c0c6ae6 +mem write 000006911dd4e540 -1 -001 -1 1 [MdW] d5a7e9d28c0c6ae6 +l2 evict 000006911dd4e540 00 0010 03 [IcR(0001,06)] d5a7e9d28c0c6ae6 +mem read 0000136b8cb094c0 -1 -001 -1 1 [McW] 93f725490a41ea1d +l2 read 0000136b8cb094c0 01 0030 02 0 [McW(0001,06)] 93f725490a41ea1d +l1d-0 write 0000136b8cb094c0 00 0003 03 0 [MdW] 4d67241ff77b1773 +l1d-0 evict 0000ade5546e9640 00 0009 03 [IcR] 972057e2a2e60fe7 +l2 read 00004c22aaaafa40 00 0020 01 1 [MdW(0025,04)] 910ad1b100184a22 +l1d-0 write 00004c22aaaafa40 00 0009 03 0 [MdW] c6df3ed059a7d3b2 +l1d-1 evict 0000fe2140a6f980 00 0006 03 [IcR] 4e2ed36498da5bfc +l2 read 00006a5fbc380d80 01 0031 01 1 [SdW(0013,01)] 52eb0cd4b20154b4 +l1d-1 read 00006a5fbc380d80 00 0006 03 0 [ScR] 52eb0cd4b20154b4 +l2 write 00009fde26f888c0 00 0005 02 1 [MdW(0026,04)] daca8511cf2c60cc +l1d-0 evict 00009fde26f888c0 00 0003 02 [IcR] daca8511cf2c60cc +l2 read 0000534534d814c0 01 0030 00 1 [SdW(0019,06)] 8026669fe9d83abe +l1d-0 read 0000534534d814c0 00 0003 02 0 [ScR] 8026669fe9d83abe +l1d-1 read 0000799fa07cabc0 00 0015 00 1 [ScR] 5045fca347d4f27e +l1d-1 read 000026603b309080 00 0002 01 1 [MdW] b7553d6dcd803973 +l1d-1 evict 00004be09470fa40 00 0009 02 [IcR] d75b3bf448b79ed6 +l2 read 00001ffbc4ff1a40 01 0029 01 1 [MdW(0000,07)] 08bf63be6c7befa2 +l1d-1 write 00001ffbc4ff1a40 00 0009 02 0 [MdW] 071ee7ee944a90cf +l1d-0 evict 0000fa4efe47a000 00 0000 03 [IcR] 3b164b6a912a12f6 +l2 write 0000fa4efe47a000 00 0009 00 1 [MdW(0028,04)] 3b164b6a912a12f6 +mem write 0000fa4efe47a000 -1 -001 -1 1 [MdW] 3b164b6a912a12f6 +l2 evict 0000fa4efe47a000 00 0009 00 [IcR(0028,04)] 3b164b6a912a12f6 +mem read 0000c97dfb94fd80 -1 -001 -1 1 [McW] 2fba7336b9505ed4 +l2 read 0000c97dfb94fd80 01 0020 02 0 [McW(0028,04)] 2fba7336b9505ed4 +l1d-0 write 0000c97dfb94fd80 00 0006 03 0 [MdW] a7b91faf6cbb0b11 +l1d-1 evict 00006980d04a3400 00 0000 00 [IcR] 865c0d538f5633c2 +l2 read 00003f02ff55a000 00 0023 01 1 [MdW(0018,06)] 1a4db79974495d9b +l1d-1 write 00003f02ff55a000 00 0000 00 0 [MdW] 52cd589d7ae47de9 +l2 write 00004cfb5e6fc8c0 01 0015 00 1 [MdW(0007,04)] 63d2e82e77523b96 +l1d-0 evict 00004cfb5e6fc8c0 00 0003 00 [IcR] 63d2e82e77523b96 +l2 read 000000f97fae5cc0 00 0003 00 1 [ScW(0017,03)] fb933a96c629912c +l1d-0 read 000000f97fae5cc0 00 0003 00 0 [ScR] fb933a96c629912c +l1d-1 evict 00007cc1e5f42e40 00 0009 03 [IcR] 38334869bbcf71a3 +l2 read 000099fa8471ba40 01 0030 01 1 [SdW(0017,04)] 3a1b0222700896fc +l1d-1 read 000099fa8471ba40 00 0009 03 0 [ScR] 3a1b0222700896fc +l1d-0 read 000049afd5e02b40 00 0013 02 1 [MdW] 283b644b3a7a9886 +l2 read 0000fe792df68e00 01 0005 02 1 [McW(0027,01)] 94f533d553344222 +l1d-0 write 0000fe792df68e00 00 0008 03 0 [MdW] 0d9c734f444698bd +mem write 000073703a455800 -1 -001 -1 1 [MdW] 90aaa0331455ae1c +l2 evict 000073703a455800 01 0011 00 [IcR(0023,07)] 90aaa0331455ae1c +mem read 000030295cbb89c0 -1 -001 -1 1 [McW] 6d0621fc7d1add50 +l2 read 000030295cbb89c0 01 0015 01 0 [McW(0023,07)] 6d0621fc7d1add50 +l1d-0 write 000030295cbb89c0 00 0007 02 0 [MdW] 0053d6a34dc70a2d +l1d-1 evict 0000b6ebb009be40 00 0009 01 [IcR] 522882a3ec706ec7 +l1d-1 evict 000029aaf453f380 00 0014 00 [IcR] b61a89beddcb2461 +l2 write 000029aaf453f380 00 0009 04 1 [MdW(0008,01)] b61a89beddcb2461 +mem write 000029aaf453f380 -1 -001 -1 1 [MdW] b61a89beddcb2461 +l2 evict 000029aaf453f380 00 0009 04 [IcR(0008,01)] b61a89beddcb2461 +mem read 000019e8db69b240 -1 -001 -1 1 [McW] e88dd55a43222698 +l2 read 000019e8db69b240 01 0020 03 0 [ScW(0008,01)] e88dd55a43222698 +l1d-1 read 000019e8db69b240 00 0009 01 0 [ScR] e88dd55a43222698 +l1d-1 evict 000057c442889400 00 0000 03 [IcR] 1e3b18e07eb9b12c +mem write 0000f081b09aa240 -1 -001 -1 1 [MdW] 30470642eb039e5b +l2 evict 0000f081b09aa240 00 0029 02 [IcR(0015,03)] 30470642eb039e5b +mem read 000073703a455800 -1 -001 -1 1 [McW] 90aaa0331455ae1c +l2 read 000073703a455800 01 0011 00 0 [ScW(0015,03)] 90aaa0331455ae1c +l1d-1 read 000073703a455800 00 0000 03 0 [ScR] 90aaa0331455ae1c +l1d-0 write 00000af69bef9880 00 0002 01 1 [MdW] 73a906453fc7569e +l1i-0 read 000076807a07f540 00 0005 00 1 [ScR] 5e9696a11ad02c72 +l1d-1 evict 0000015d1559b380 00 0014 03 [IcR] 37ba02bf31772584 +l2 write 0000015d1559b380 01 0021 03 1 [MdW(0030,05)] 37ba02bf31772584 +mem write 0000015d1559b380 -1 -001 -1 1 [MdW] 37ba02bf31772584 +l2 evict 0000015d1559b380 01 0021 03 [IcR(0030,05)] 37ba02bf31772584 +mem read 0000e030a3d78740 -1 -001 -1 1 [McW] 707af21411b2423c +l2 read 0000e030a3d78740 01 0010 02 0 [ScW(0030,05)] 707af21411b2423c +l1d-0 read 0000e030a3d78740 00 0013 03 0 [ScR] 707af21411b2423c +l2 read 0000d08d1f920900 00 0017 00 1 [SdW(0011,05)] 640f520396727bfb +l1i-1 read 0000d08d1f920900 00 0004 00 0 [ScR] 640f520396727bfb +l2 write 000048777e448ac0 00 0017 04 1 [MdW(0016,00)] cabd092ab80dc469 +l1d-0 evict 000048777e448ac0 00 0011 02 [IcR] cabd092ab80dc469 +l2 read 0000e337ff7072c0 01 0030 04 1 [SdW(0017,06)] 80fed586eeb4f46f +l1d-0 read 0000e337ff7072c0 00 0011 02 0 [ScR] 80fed586eeb4f46f +l2 read 00007a0ccec77d00 01 0014 02 1 [MdW(0002,05)] e8d14877cb6e3832 +l1d-1 write 00007a0ccec77d00 00 0004 00 0 [MdW] e927be63c0980bfb +l1d-0 evict 000016f64b35ad40 00 0005 03 [IcR] 292bf8907b74edd2 +l2 read 0000033616c7e540 00 0022 01 1 [MdW(0007,01)] d81188bfabb65cec +l1d-0 write 0000033616c7e540 00 0005 03 0 [MdW] 8a01603899540e5a +l1d-1 read 0000ade01f76c940 00 0005 00 1 [ScR] 7e76db3a89663ea8 +l1d-0 evict 0000d9b688e86700 00 0012 02 [IcR] 717b944cf304d60e +l1d-1 evict 0000bb8c7eafac00 00 0000 01 [IcR] 209d7976d327f65d +l2 evict 0000bb8c7eafac00 01 0022 02 [IcR(0026,00)] 209d7976d327f65d +mem read 00002c011c660300 -1 -001 -1 1 [McW] aacfbf30c579992e +l2 read 00002c011c660300 00 0012 02 0 [ScW(0026,00)] aacfbf30c579992e +l1d-0 read 00002c011c660300 00 0012 02 0 [ScR] aacfbf30c579992e +l1d-1 read 0000ecb652ef69c0 00 0007 01 1 [ScR] e264e2e00564abcc +l1d-0 evict 0000dda2631186c0 00 0011 00 [IcR] 2389031e21d4a9ca +l2 evict 00001e12c123a180 00 0031 02 [IcR(0013,05)] ff1d2beb43b9b33b +mem read 00006bb87d1516c0 -1 -001 -1 1 [McW] 8ad9943922ec9dad +l2 read 00006bb87d1516c0 01 0000 00 0 [McW(0013,05)] 8ad9943922ec9dad +l1d-0 write 00006bb87d1516c0 00 0011 00 0 [MdW] 1eada00b071b1b62 +l1d-1 read 00003f92117466c0 00 0011 01 1 [ScR] e875ffc98e7626d6 +l1d-1 evict 00007a76f01141c0 00 0007 03 [IcR] 4f7e9691e6e6e9e9 +mem write 00002feadfa86d40 -1 -001 -1 1 [MdW] b433bdc2cb8d107d +l2 evict 00002feadfa86d40 00 0020 00 [IcR(0004,01)] b433bdc2cb8d107d +mem read 0000792d5ad259c0 -1 -001 -1 1 [McW] 04aa8a778a45e9be +l2 read 0000792d5ad259c0 00 0024 00 0 [ScW(0004,01)] 04aa8a778a45e9be +l1d-1 read 0000792d5ad259c0 00 0007 03 0 [ScR] 04aa8a778a45e9be +l1d-0 evict 00001ad58832f640 00 0009 00 [IcR] f9c176745781e0be +l2 read 0000ade5546e9640 01 0027 00 1 [SdW(0023,04)] 972057e2a2e60fe7 +l1d-0 read 0000ade5546e9640 00 0009 00 0 [ScR] 972057e2a2e60fe7 +l1d-1 read 000070a6fc8f5e40 00 0009 00 1 [MdW] 64e8dcc94b7334bf +l1d-1 read 0000c0773417d200 00 0008 03 1 [MdW] 9601d8930440fb67 +l1d-1 evict 0000780ab040b980 00 0006 01 [IcR] 0968e82e4bb02b18 +l2 read 000075fd554aed80 01 0028 02 1 [ScW(0012,07)] 96f8c40189bf5862 +l1d-1 read 000075fd554aed80 00 0006 01 0 [ScR] 96f8c40189bf5862 +l2 write 000042ff28b0ea40 01 0023 00 1 [MdW(0003,01)] cab22f5662108b05 +l1d-0 evict 000042ff28b0ea40 00 0009 01 [IcR] cab22f5662108b05 +mem write 0000df16e7f1d400 -1 -001 -1 1 [MdW] 98f5fd7bc49c7ee9 +l2 evict 0000df16e7f1d400 00 0028 01 [IcR(0006,06)] 98f5fd7bc49c7ee9 +mem read 0000af4203bc4640 -1 -001 -1 1 [McW] 122a0e9f67143c9d +l2 read 0000af4203bc4640 00 0024 04 0 [ScW(0006,06)] 122a0e9f67143c9d +l1d-0 read 0000af4203bc4640 00 0009 01 0 [ScR] 122a0e9f67143c9d +l1d-1 evict 000053c37f465900 00 0004 01 [IcR] 1d46a92797eafd72 +l1d-0 evict 0000430a15d72900 00 0004 01 [IcR] 34bf97c231801ab0 +l2 write 0000430a15d72900 01 0003 01 1 [MdW(0025,03)] 34bf97c231801ab0 +l2 read 0000430a15d72900 01 0003 01 1 [MdW(0025,03)] 34bf97c231801ab0 +l1d-1 write 0000430a15d72900 00 0004 01 0 [MdW] 3281bf3ee92ecb6e +l1i-0 read 0000a6f9f0803d80 00 0006 00 1 [ScR] 5719b2c00ecac89a +l1d-0 read 0000c662cc646980 00 0006 02 1 [MdW] 6794a45adab0c5a6 +l2 read 000073f8f4229a80 01 0005 03 1 [McW(0006,01)] d40c3ec8164f1ef5 +l1d-0 write 000073f8f4229a80 00 0010 03 0 [MdW] 44fd09249541cc5f +l1d-0 evict 000040f7755c2ac0 00 0011 01 [IcR] bcf94c89f64696f7 +mem write 000049248a79a380 -1 -001 -1 1 [MdW] b6d4256cc02f69a5 +l2 evict 000049248a79a380 00 0000 01 [IcR(0026,03)] b6d4256cc02f69a5 +mem read 00006a2ba09892c0 -1 -001 -1 1 [McW] 05f0103b8fa109da +l2 read 00006a2ba09892c0 01 0018 03 0 [ScW(0026,03)] 05f0103b8fa109da +l1d-0 read 00006a2ba09892c0 00 0011 01 0 [ScR] 05f0103b8fa109da +l1d-1 read 000073703a455800 00 0000 03 1 [ScR] 90aaa0331455ae1c +mem read 0000015d1559b380 -1 -001 -1 1 [McW] 37ba02bf31772584 +l2 read 0000015d1559b380 00 0025 03 0 [ScW(0012,03)] 37ba02bf31772584 +l1d-1 read 0000015d1559b380 00 0014 00 0 [ScR] 37ba02bf31772584 +l2 evict 00006cfd00fe8ac0 01 0007 01 [IcR(0027,02)] b025b1f23a5ed092 +mem read 0000c72e4af4f8c0 -1 -001 -1 1 [McW] 9dd6e27e91bc9863 +l2 read 0000c72e4af4f8c0 01 0000 01 0 [McW(0027,02)] 9dd6e27e91bc9863 +l1d-1 write 0000c72e4af4f8c0 00 0003 03 0 [MdW] 58c90aad3241e995 +l1d-0 read 0000fc3d1a588d00 00 0004 02 1 [MdW] 3456ef070d8d0a11 +l1d-1 evict 0000d9c5522ff480 00 0002 02 [IcR] b5cfd31df58f9cb4 +l2 write 0000d9c5522ff480 00 0018 01 1 [MdW(0015,01)] b5cfd31df58f9cb4 +l2 read 0000d9c5522ff480 00 0018 01 1 [MdW(0015,01)] b5cfd31df58f9cb4 +l1d-0 write 0000d9c5522ff480 00 0002 03 0 [MdW] 2209aff3c2ca5c85 +l1d-0 read 000011abc3e7fe80 00 0010 01 1 [ScR] d8e6dec1c6caebeb +l1d-1 read 000044ca9c649400 00 0000 02 1 [MdW] eccce61d6f7f8e87 +mem read 00004e67a6d81700 -1 -001 -1 1 [McW] 11cd09bce09e8d89 +l2 read 00004e67a6d81700 01 0023 01 0 [ScW(0031,07)] 11cd09bce09e8d89 +l1d-1 read 00004e67a6d81700 00 0012 03 0 [ScR] 11cd09bce09e8d89 +l2 write 00001ffbc4ff1a40 01 0029 01 1 [MdW(0000,07)] 071ee7ee944a90cf +l1d-1 evict 00001ffbc4ff1a40 00 0009 02 [IcR] 071ee7ee944a90cf +l1d-0 evict 0000acd63c8d1880 00 0002 00 [IcR] 9cf972ea02adcd4f +l2 write 0000acd63c8d1880 00 0017 03 1 [MdW(0007,06)] 9cf972ea02adcd4f +mem write 0000acd63c8d1880 -1 -001 -1 1 [MdW] 9cf972ea02adcd4f +l2 evict 0000acd63c8d1880 00 0017 03 [IcR(0007,06)] 9cf972ea02adcd4f +mem read 0000b9927026ea40 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000b9927026ea40 00 0000 01 0 [McW(0007,06)] 0000000000000000 +l1d-1 write 0000b9927026ea40 00 0009 02 0 [MdW] 80e6654ad9b9c34e +l1d-1 read 00004f46a7d2ea80 00 0010 03 1 [ScR] 1d6b75778fa46c62 +l1i-1 read 000056d4fe3257c0 00 0015 00 1 [ScR] 2d6d78e60e44fcb9 +l1d-0 evict 0000302899d8cac0 00 0011 03 [IcR] bdd24610b537bb57 +l1d-0 evict 000065dc0cb58f00 00 0012 01 [IcR] 8b4ecdd8b082fe75 +l2 write 000065dc0cb58f00 00 0010 00 1 [MdW(0022,02)] 8b4ecdd8b082fe75 +mem write 000065dc0cb58f00 -1 -001 -1 1 [MdW] 8b4ecdd8b082fe75 +l2 evict 000065dc0cb58f00 00 0010 00 [IcR(0022,02)] 8b4ecdd8b082fe75 +mem read 00004dcada9f52c0 -1 -001 -1 1 [McW] e9b8fce55ce2beb8 +l2 read 00004dcada9f52c0 01 0010 03 0 [McW(0022,02)] e9b8fce55ce2beb8 +l1d-0 write 00004dcada9f52c0 00 0011 03 0 [MdW] 5aff72819d94fd3f +l1d-0 evict 0000c662cc646980 00 0006 02 [IcR] 6794a45adab0c5a6 +l2 write 0000c662cc646980 01 0025 00 1 [MdW(0005,03)] 6794a45adab0c5a6 +mem write 0000c662cc646980 -1 -001 -1 1 [MdW] 6794a45adab0c5a6 +l2 evict 0000c662cc646980 01 0025 00 [IcR(0005,03)] 6794a45adab0c5a6 +mem read 0000976cd0e4ef80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000976cd0e4ef80 01 0029 03 0 [McW(0005,03)] 0000000000000000 +l1d-1 write 0000976cd0e4ef80 00 0014 03 0 [MdW] 6836e25924806ec2 +l1d-0 read 0000ade5546e9640 00 0009 00 1 [ScR] 972057e2a2e60fe7 +l2 write 00009a461a9864c0 00 0019 00 1 [MdW(0026,05)] 324da2ce5b0bed4d +l1d-0 evict 00009a461a9864c0 00 0003 01 [IcR] 324da2ce5b0bed4d +l1d-1 evict 00004ff679346ec0 00 0011 03 [IcR] 69165a7d7db29609 +l2 evict 00004ff679346ec0 00 0024 02 [IcR(0008,02)] 69165a7d7db29609 +mem read 00004fefb0cb7cc0 -1 -001 -1 1 [McW] e98c3d92048e71e7 +l2 read 00004fefb0cb7cc0 01 0015 02 0 [ScW(0008,02)] e98c3d92048e71e7 +l1d-0 read 00004fefb0cb7cc0 00 0003 01 0 [ScR] e98c3d92048e71e7 +l2 read 0000ce808c85df40 00 0019 03 1 [SdW(0020,05)] 5d5610addc83f590 +l1d-1 read 0000ce808c85df40 00 0013 02 0 [ScR] 5d5610addc83f590 +l1d-0 evict 0000e337ff7072c0 00 0011 02 [IcR] 80fed586eeb4f46f +mem write 00004722853cdc00 -1 -001 -1 1 [MdW] 7434bce545e0873c +l2 evict 00004722853cdc00 00 0028 00 [IcR(0006,07)] 7434bce545e0873c +mem read 000057ef223eb2c0 -1 -001 -1 1 [McW] 861277f6eb5e5e61 +l2 read 000057ef223eb2c0 00 0009 00 0 [ScW(0006,07)] 861277f6eb5e5e61 +l1d-0 read 000057ef223eb2c0 00 0011 02 0 [ScR] 861277f6eb5e5e61 +l2 read 000052d61b6d5a00 00 0016 01 1 [McW(0028,00)] e775afa1004c0eb4 +l1d-0 write 000052d61b6d5a00 00 0008 02 0 [MdW] e46273a551eedf5d +l1d-0 read 000052d61b6d5a00 00 0008 02 1 [MdW] e46273a551eedf5d +l2 evict 0000b1312a1f2f80 00 0028 02 [IcR(0008,04)] db32e76b65f38b73 +mem read 00007600dddbb740 -1 -001 -1 1 [McW] 03513838cc9cbb95 +l2 read 00007600dddbb740 01 0025 00 0 [ScW(0008,04)] 03513838cc9cbb95 +l1d-1 read 00007600dddbb740 00 0013 03 0 [ScR] 03513838cc9cbb95 +l2 read 00005f4478ac3180 01 0025 02 1 [MdW(0028,06)] 297f6f72b9a770ce +l1d-0 write 00005f4478ac3180 00 0006 02 0 [MdW] 66b798c5bd65084a +l2 write 000092e2f479cf80 01 0006 00 1 [MdW(0029,04)] 33c020afbf13af39 +l1d-0 evict 000092e2f479cf80 00 0014 00 [IcR] 33c020afbf13af39 +l2 read 0000bb75517c9b80 00 0011 02 1 [SdW(0027,05)] 004c1351d2605e26 +l1d-0 read 0000bb75517c9b80 00 0014 00 0 [ScR] 004c1351d2605e26 +l1d-1 read 0000799fa07cabc0 00 0015 00 1 [ScR] 5045fca347d4f27e +l1i-1 read 000056d4fe3257c0 00 0015 00 1 [ScR] 2d6d78e60e44fcb9 +l2 write 0000136b8cb094c0 01 0030 02 1 [MdW(0001,06)] 4d67241ff77b1773 +l1d-0 evict 0000136b8cb094c0 00 0003 03 [IcR] 4d67241ff77b1773 +l2 read 00006e7158c618c0 01 0006 01 1 [SdW(0021,00)] 1ac304b439ea8f39 +l1d-0 read 00006e7158c618c0 00 0003 03 0 [ScR] 1ac304b439ea8f39 +l2 write 00004813c834cdc0 00 0025 01 1 [MdW(0007,03)] 3992e1e5aacf6574 +l1d-0 evict 00004813c834cdc0 00 0007 00 [IcR] 3992e1e5aacf6574 +mem write 000005ccfbfe3240 -1 -001 -1 1 [MdW] 816f140018ef71ee +l2 evict 000005ccfbfe3240 00 0012 00 [IcR(0029,03)] 816f140018ef71ee +mem read 00006074635435c0 -1 -001 -1 1 [McW] 2d3837be469f574c +l2 read 00006074635435c0 01 0023 04 0 [ScW(0029,03)] 2d3837be469f574c +l1d-0 read 00006074635435c0 00 0007 00 0 [ScR] 2d3837be469f574c +l2 write 0000960701732dc0 00 0000 04 1 [MdW(0024,03)] 7837545cfc7cc0d7 +l1d-1 evict 0000960701732dc0 00 0007 02 [IcR] 7837545cfc7cc0d7 +l2 read 00005c90ae19e9c0 00 0002 00 1 [SdW(0029,02)] 3782cdec714c3fb4 +l1d-1 read 00005c90ae19e9c0 00 0007 02 0 [ScR] 3782cdec714c3fb4 +l1i-1 read 0000bfe0e32f0740 00 0013 00 1 [ScR] f6878d5659a4c4e3 +l1i-1 read 0000359b9f397880 00 0002 00 1 [ScR] 868579761540bd7e +l1d-1 evict 0000d090b8181100 00 0004 02 [IcR] 75e4bd98aa1f381f +l2 read 00009aaf14205900 00 0020 03 1 [ScW(0002,02)] 6e85f64de7e125d5 +l1d-1 read 00009aaf14205900 00 0004 02 0 [ScR] 6e85f64de7e125d5 +l1d-0 read 0000fe792df68e00 00 0008 03 1 [MdW] 0d9c734f444698bd +l1d-1 evict 0000ffb0ec26c4c0 00 0003 01 [IcR] a90b5754acfcac28 +l2 read 000054a53f80d8c0 00 0001 01 1 [SdW(0011,02)] ae229dd18a728847 +l1d-1 read 000054a53f80d8c0 00 0003 01 0 [ScR] ae229dd18a728847 +l1d-1 evict 00008a9bb333e780 00 0014 02 [IcR] 1a1288c6d6f9e35f +l2 read 0000106db33edf80 00 0006 03 1 [MdW(0019,00)] b7c493624d2586f1 +l1d-1 write 0000106db33edf80 00 0014 02 0 [MdW] eeee3bfe9cc85d16 +l1d-0 evict 0000534534d814c0 00 0003 02 [IcR] 8026669fe9d83abe +l2 read 00009fde26f888c0 00 0005 02 1 [SdW(0026,04)] daca8511cf2c60cc +l1d-0 read 00009fde26f888c0 00 0003 02 0 [ScR] daca8511cf2c60cc +l1d-1 evict 000072629a2641c0 00 0007 00 [IcR] cff65dd3605c7fe3 +l2 read 0000960701732dc0 00 0000 04 1 [MdW(0024,03)] 7837545cfc7cc0d7 +l1d-1 write 0000960701732dc0 00 0007 00 0 [MdW] 8a34bfe58c264502 +l1d-0 read 0000ade5546e9640 00 0009 00 1 [ScR] 972057e2a2e60fe7 +l2 write 0000df0f11cce0c0 01 0013 02 1 [MdW(0019,04)] 53cb2f84630d2023 +l1d-1 evict 0000df0f11cce0c0 00 0003 00 [IcR] 53cb2f84630d2023 +l2 read 0000ffb0ec26c4c0 00 0027 01 1 [SdW(0019,03)] a90b5754acfcac28 +l1d-1 read 0000ffb0ec26c4c0 00 0003 00 0 [ScR] a90b5754acfcac28 +l1d-0 write 00004c22aaaafa40 00 0009 03 1 [MdW] 8f534fcc3180e037 +l2 write 00006bb87d1516c0 01 0000 00 1 [MdW(0013,05)] 1eada00b071b1b62 +l1d-0 evict 00006bb87d1516c0 00 0011 00 [IcR] 1eada00b071b1b62 +l2 read 0000e337ff7072c0 01 0030 04 1 [MdW(0017,06)] 80fed586eeb4f46f +l1d-0 write 0000e337ff7072c0 00 0011 00 0 [MdW] f7c7a9fc6069131d +l1d-1 evict 0000e0ad5d373580 00 0006 00 [IcR] 032c152e3f44b83d +l2 read 0000e0ad5d373580 00 0008 00 1 [McW(0014,05)] 032c152e3f44b83d +l1d-0 write 0000e0ad5d373580 00 0006 00 0 [MdW] 06512cc805fd57c0 +l1d-0 read 00001b7163d48d40 00 0005 00 1 [ScR] da68687e2447a125 +l1d-0 read 0000c86d27a3d040 00 0001 02 1 [ScR] 4e927fc3199ae8b9 +l2 read 000057907407aac0 00 0008 03 1 [SdW(0004,07)] 4143fd547c0ab069 +l1d-1 read 000057907407aac0 00 0011 03 0 [ScR] 4143fd547c0ab069 +l1d-0 evict 000000f97fae5cc0 00 0003 00 [IcR] fb933a96c629912c +mem read 0000f17f98f480c0 -1 -001 -1 1 [McW] 84e0e10794125a03 +l2 read 0000f17f98f480c0 01 0003 02 0 [ScW(0008,00)] 84e0e10794125a03 +l1d-0 read 0000f17f98f480c0 00 0003 00 0 [ScR] 84e0e10794125a03 +l1d-1 evict 00007e15eb118b00 00 0012 01 [IcR] 9419ebae6d75d1b9 +l2 evict 0000ba16e8b8b540 01 0011 02 [IcR(0010,07)] 3de612c8e734de20 +mem read 0000fb280d796f00 -1 -001 -1 1 [McW] 034702017a6f4b77 +l2 read 0000fb280d796f00 00 0016 03 0 [McW(0010,07)] 034702017a6f4b77 +l1d-1 write 0000fb280d796f00 00 0012 01 0 [MdW] 3a1493ffc32c7582 +l1d-1 evict 00004db5ccc11940 00 0005 02 [IcR] bfb2f68b809fc749 +l2 write 00004db5ccc11940 01 0010 01 1 [MdW(0030,04)] bfb2f68b809fc749 +mem write 00004db5ccc11940 -1 -001 -1 1 [MdW] bfb2f68b809fc749 +l2 evict 00004db5ccc11940 01 0010 01 [IcR(0030,04)] bfb2f68b809fc749 +mem read 00009f84efecc040 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00009f84efecc040 01 0003 03 0 [McW(0030,04)] 0000000000000000 +l1d-1 write 00009f84efecc040 00 0001 00 0 [MdW] dcc81d80c2d21d1a +l1d-1 evict 000099fa8471ba40 00 0009 03 [IcR] 3a1b0222700896fc +l2 read 00004be09470fa40 00 0000 00 1 [ScW(0013,06)] d75b3bf448b79ed6 +l1d-1 read 00004be09470fa40 00 0009 03 0 [ScR] d75b3bf448b79ed6 +l2 write 00000539d65d1d00 00 0029 00 1 [MdW(0005,04)] cc8bbcae9dadbd56 +l1d-1 evict 00000539d65d1d00 00 0004 03 [IcR] cc8bbcae9dadbd56 +l2 read 0000d090b8181100 01 0017 01 1 [SdW(0013,00)] 75e4bd98aa1f381f +l1d-1 read 0000d090b8181100 00 0004 03 0 [ScR] 75e4bd98aa1f381f +l2 write 0000ce94cd3328c0 00 0008 04 1 [MdW(0018,07)] 283de845d98028c2 +l1d-1 evict 0000ce94cd3328c0 00 0003 02 [IcR] 283de845d98028c2 +l1d-1 evict 0000bfe0e32f0740 00 0013 00 [IcR] f6878d5659a4c4e3 +mem write 0000bfe0e32f0740 -1 -001 -1 1 [MdW] f6878d5659a4c4e3 +l2 evict 0000bfe0e32f0740 01 0007 02 [IcR(0031,01)] f6878d5659a4c4e3 +mem read 000098857a80b0c0 -1 -001 -1 1 [McW] 4af1df55aebdd3e6 +l2 read 000098857a80b0c0 01 0015 03 0 [ScW(0031,01)] 4af1df55aebdd3e6 +l1d-1 read 000098857a80b0c0 00 0003 02 0 [ScR] 4af1df55aebdd3e6 +l1d-0 read 0000fe792df68e00 00 0008 03 1 [MdW] 0d9c734f444698bd +l1d-1 evict 000019e8db69b240 00 0009 01 [IcR] e88dd55a43222698 +l2 read 0000b6ebb009be40 01 0018 00 1 [SdW(0020,03)] 522882a3ec706ec7 +l1d-1 read 0000b6ebb009be40 00 0009 01 0 [ScR] 522882a3ec706ec7 +l1d-0 evict 00002cbcc4bef440 00 0001 01 [IcR] 228b8470625fd619 +l2 write 00002cbcc4bef440 00 0001 03 1 [MdW(0024,00)] 228b8470625fd619 +mem write 00002cbcc4bef440 -1 -001 -1 1 [MdW] 228b8470625fd619 +l2 evict 00002cbcc4bef440 00 0001 03 [IcR(0024,00)] 228b8470625fd619 +mem read 000035bda4e87c00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000035bda4e87c00 00 0014 03 0 [McW(0024,00)] 0000000000000000 +l1d-1 write 000035bda4e87c00 00 0000 01 0 [MdW] fe19bbf577734850 +l1d-1 evict 0000ce808c85df40 00 0013 02 [IcR] 5d5610addc83f590 +mem write 0000ce808c85df40 -1 -001 -1 1 [MdW] 5d5610addc83f590 +l2 evict 0000ce808c85df40 00 0019 03 [IcR(0020,05)] 5d5610addc83f590 +mem read 000027396c290d00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000027396c290d00 00 0003 01 0 [McW(0020,05)] 0000000000000000 +l1d-0 write 000027396c290d00 00 0004 01 0 [MdW] 1eb1f5688413a4bf +l2 write 000070a6fc8f5e40 01 0010 00 1 [MdW(0001,03)] 64e8dcc94b7334bf +l1d-1 evict 000070a6fc8f5e40 00 0009 00 [IcR] 64e8dcc94b7334bf +mem read 0000c3067a593240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c3067a593240 01 0001 00 0 [McW(0008,07)] 0000000000000000 +l1d-1 write 0000c3067a593240 00 0009 00 0 [MdW] 1e28da4f5b6329f5 +l1d-1 read 000054a53f80d8c0 00 0003 01 1 [ScR] ae229dd18a728847 +l2 write 00003f02ff55a000 00 0023 01 1 [MdW(0018,06)] 52cd589d7ae47de9 +l1d-1 evict 00003f02ff55a000 00 0000 00 [IcR] 52cd589d7ae47de9 +l2 read 00004d48d3ab6400 00 0025 00 1 [SdW(0005,00)] 0bad902dc5dbfa0f +l1d-1 read 00004d48d3ab6400 00 0000 00 0 [ScR] 0bad902dc5dbfa0f +l1d-1 read 0000792d5ad259c0 00 0007 03 1 [ScR] 04aa8a778a45e9be +l1d-0 evict 0000ade5546e9640 00 0009 00 [IcR] 972057e2a2e60fe7 +mem write 0000ade5546e9640 -1 -001 -1 1 [MdW] 972057e2a2e60fe7 +l2 evict 0000ade5546e9640 01 0027 00 [IcR(0023,04)] 972057e2a2e60fe7 +mem read 00005de844e94fc0 -1 -001 -1 1 [McW] 81b80adc76842711 +l2 read 00005de844e94fc0 00 0010 00 0 [ScW(0023,04)] 81b80adc76842711 +l1d-1 read 00005de844e94fc0 00 0015 01 0 [ScR] 81b80adc76842711 +l2 write 0000c72e4af4f8c0 01 0000 01 1 [MdW(0027,02)] 58c90aad3241e995 +l1d-1 evict 0000c72e4af4f8c0 00 0003 03 [IcR] 58c90aad3241e995 +l2 read 0000df0f11cce0c0 01 0013 02 1 [SdW(0019,04)] 53cb2f84630d2023 +l1d-1 read 0000df0f11cce0c0 00 0003 03 0 [ScR] 53cb2f84630d2023 +l2 write 00007a0ccec77d00 01 0014 02 1 [MdW(0002,05)] e927be63c0980bfb +l1d-1 evict 00007a0ccec77d00 00 0004 00 [IcR] e927be63c0980bfb +mem read 000081b8cf5f7100 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000081b8cf5f7100 00 0005 04 0 [McW(0022,05)] 0000000000000000 +l1d-1 write 000081b8cf5f7100 00 0004 00 0 [MdW] db57fe534787ac88 +l2 write 0000430a15d72900 01 0003 01 1 [MdW(0025,03)] 3281bf3ee92ecb6e +l1d-1 evict 0000430a15d72900 00 0004 01 [IcR] 3281bf3ee92ecb6e +l2 evict 0000fa408c35ba00 00 0005 00 [IcR(0000,01)] 7eec603efdcdea3b +mem read 0000cd7063d2b500 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000cd7063d2b500 01 0022 02 0 [McW(0000,01)] 0000000000000000 +l1d-1 write 0000cd7063d2b500 00 0004 01 0 [MdW] a76cc78d6a6d84d9 +l1d-0 evict 00004fefb0cb7cc0 00 0003 01 [IcR] e98c3d92048e71e7 +l2 read 0000c20e6058a4c0 00 0004 01 1 [MdW(0009,05)] 212a13ad0ffcb4e3 +l1d-0 write 0000c20e6058a4c0 00 0003 01 0 [MdW] 3eb24e380f97cc8b +l1d-1 read 000073703a455800 00 0000 03 1 [ScR] 90aaa0331455ae1c +mem write 000057c442889400 -1 -001 -1 1 [MdW] 1e3b18e07eb9b12c +l2 evict 000057c442889400 01 0025 01 [IcR(0002,06)] 1e3b18e07eb9b12c +mem read 0000fa4efe47a000 -1 -001 -1 1 [McW] 3b164b6a912a12f6 +l2 read 0000fa4efe47a000 01 0026 01 0 [McW(0002,06)] 3b164b6a912a12f6 +l1d-0 write 0000fa4efe47a000 00 0000 03 0 [MdW] 3174dbba3c7dbf88 +l1d-0 evict 0000b78d2a790900 00 0004 00 [IcR] aedb2159a3c4680e +mem write 000095873da506c0 -1 -001 -1 1 [MdW] 64a74b273feb83c9 +l2 evict 000095873da506c0 01 0012 01 [IcR(0016,04)] 64a74b273feb83c9 +mem read 0000ff71c82dc900 -1 -001 -1 1 [McW] 17a334d5e0225251 +l2 read 0000ff71c82dc900 00 0031 02 0 [ScW(0016,04)] 17a334d5e0225251 +l1d-0 read 0000ff71c82dc900 00 0004 00 0 [ScR] 17a334d5e0225251 +l2 write 00003be6b01765c0 00 0025 02 1 [MdW(0029,05)] eacbeb2cbf4828f9 +l1d-0 evict 00003be6b01765c0 00 0007 01 [IcR] eacbeb2cbf4828f9 +l2 read 00004813c834cdc0 00 0025 01 1 [SdW(0007,03)] 3992e1e5aacf6574 +l1d-0 read 00004813c834cdc0 00 0007 01 0 [ScR] 3992e1e5aacf6574 +l1d-0 read 00001c9702375bc0 00 0015 01 1 [MdW] ee1e9990a9eb12f5 +l1d-0 evict 00006e7158c618c0 00 0003 03 [IcR] 1ac304b439ea8f39 +l1d-0 evict 0000947cb8f2fbc0 00 0015 03 [IcR] a65d0911d5a536bd +mem write 0000947cb8f2fbc0 -1 -001 -1 1 [MdW] a65d0911d5a536bd +l2 evict 0000947cb8f2fbc0 00 0016 00 [IcR(0015,06)] a65d0911d5a536bd +mem read 00004d6b40e0c4c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004d6b40e0c4c0 01 0004 04 0 [McW(0015,06)] 0000000000000000 +l1d-0 write 00004d6b40e0c4c0 00 0003 03 0 [MdW] 4ee61cf9a9d73bd6 +l1d-0 read 000087a8e7348c80 00 0002 02 1 [ScR] b4727a351299efba +l2 read 0000780ab040b980 01 0002 00 1 [SdW(0019,07)] 0968e82e4bb02b18 +l1d-1 read 0000780ab040b980 00 0006 00 0 [ScR] 0968e82e4bb02b18 +l2 read 000086890a9e27c0 01 0005 01 1 [MdW(0030,00)] a1e3c9ae624695e5 +l1d-0 write 000086890a9e27c0 00 0015 03 0 [MdW] aa5c31a7cf666d65 +l1d-0 read 00004813c834cdc0 00 0007 01 1 [ScR] 3992e1e5aacf6574 +l1d-0 evict 00009fde26f888c0 00 0003 02 [IcR] daca8511cf2c60cc +l2 read 000000f97fae5cc0 00 0003 00 1 [ScW(0017,03)] fb933a96c629912c +l1d-0 read 000000f97fae5cc0 00 0003 02 0 [ScR] fb933a96c629912c +l1d-1 read 00005c90ae19e9c0 00 0007 02 1 [ScR] 3782cdec714c3fb4 +l1d-1 evict 0000ffb0ec26c4c0 00 0003 00 [IcR] a90b5754acfcac28 +l2 read 00006e7158c618c0 01 0006 01 1 [MdW(0021,00)] 1ac304b439ea8f39 +l1d-1 write 00006e7158c618c0 00 0003 00 0 [MdW] 7ad93bbf739cccfe +l1d-0 read 00004813c834cdc0 00 0007 01 1 [ScR] 3992e1e5aacf6574 +l2 write 0000a941be991f00 00 0004 04 1 [MdW(0023,05)] e0aed0772e617903 +l1d-1 evict 0000a941be991f00 00 0012 02 [IcR] e0aed0772e617903 +l2 read 00007e15eb118b00 00 0004 00 1 [SdW(0001,04)] 9419ebae6d75d1b9 +l1d-1 read 00007e15eb118b00 00 0012 02 0 [ScR] 9419ebae6d75d1b9 +l1d-1 read 00005c90ae19e9c0 00 0007 02 1 [ScR] 3782cdec714c3fb4 +l1d-1 read 0000848b6896ff40 00 0013 01 1 [ScR] 3d3448be0c771dfb +l1d-0 evict 000014810cf26a80 00 0010 00 [IcR] 2529577b5a534390 +l2 read 0000ced5eac0d680 01 0007 00 1 [ScW(0012,02)] 1d2194cf7fc214b2 +l1d-0 read 0000ced5eac0d680 00 0010 00 0 [ScR] 1d2194cf7fc214b2 +l1d-1 evict 0000f8857becc7c0 00 0015 03 [IcR] 72975557d7d3aa91 +l1d-0 evict 0000d9c5522ff480 00 0002 03 [IcR] 2209aff3c2ca5c85 +l2 write 0000d9c5522ff480 00 0018 01 1 [MdW(0015,01)] 2209aff3c2ca5c85 +mem write 0000d9c5522ff480 -1 -001 -1 1 [MdW] 2209aff3c2ca5c85 +l2 evict 0000d9c5522ff480 00 0018 01 [IcR(0015,01)] 2209aff3c2ca5c85 +mem read 00006110438ac7c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00006110438ac7c0 00 0023 03 0 [McW(0015,01)] 0000000000000000 +l1d-1 write 00006110438ac7c0 00 0015 03 0 [MdW] 61c391da7bfade17 +l1d-0 evict 0000ba89bc350380 00 0014 03 [IcR] f769e7273e7932c3 +l2 read 000092e2f479cf80 01 0006 00 1 [SdW(0029,04)] 33c020afbf13af39 +l1d-0 read 000092e2f479cf80 00 0014 03 0 [ScR] 33c020afbf13af39 +l1d-0 evict 0000e0ad5d373580 00 0006 00 [IcR] 06512cc805fd57c0 +l2 write 0000e0ad5d373580 00 0008 00 1 [MdW(0014,05)] 06512cc805fd57c0 +mem write 0000e0ad5d373580 -1 -001 -1 1 [MdW] 06512cc805fd57c0 +l2 evict 0000e0ad5d373580 00 0008 00 [IcR(0014,05)] 06512cc805fd57c0 +mem read 0000c194bc8acb40 -1 -001 -1 1 [McW] 75563f50184818bb +l2 read 0000c194bc8acb40 00 0030 00 0 [McW(0014,05)] 75563f50184818bb +l1d-1 write 0000c194bc8acb40 00 0013 00 0 [MdW] 46dad6426e374e28 +l2 evict 00007a76f01141c0 01 0021 01 [IcR(0002,01)] 4f7e9691e6e6e9e9 +mem read 0000872d66386580 -1 -001 -1 1 [McW] b53b1938ff066c6d +l2 read 0000872d66386580 01 0015 04 0 [McW(0002,01)] b53b1938ff066c6d +l1d-0 write 0000872d66386580 00 0006 00 0 [MdW] 1d969caf117e9a5d +l1d-0 read 00005d35d68c9380 00 0014 02 1 [MdW] 2f6fb92bfe206e0f +l2 read 00005c90ae19e9c0 00 0002 00 1 [MdW(0029,02)] 3782cdec714c3fb4 +l1d-1 write 00005c90ae19e9c0 00 0007 02 0 [MdW] f5c83104bc8c8b9b +mem read 00001d61aeb20340 -1 -001 -1 1 [McW] c9614f7e7125d893 +l2 read 00001d61aeb20340 01 0008 03 0 [ScW(0009,02)] c9614f7e7125d893 +l1d-1 read 00001d61aeb20340 00 0013 02 0 [ScR] c9614f7e7125d893 +l1d-0 evict 0000b304f6dcc000 00 0000 01 [IcR] fb80ed3c4e7012f9 +mem write 000056d4fe3257c0 -1 -001 -1 1 [MdW] 2d6d78e60e44fcb9 +l2 evict 000056d4fe3257c0 01 0024 01 [IcR(0016,02)] 2d6d78e60e44fcb9 +mem read 000042cda8d19c00 -1 -001 -1 1 [McW] 85c9b01aff50e505 +l2 read 000042cda8d19c00 00 0029 02 0 [McW(0016,02)] 85c9b01aff50e505 +l1d-0 write 000042cda8d19c00 00 0000 01 0 [MdW] 101b1b2079f8e967 +mem write 00002c482fedb640 -1 -001 -1 1 [MdW] d967632a5e9ed335 +l2 evict 00002c482fedb640 01 0027 02 [IcR(0015,07)] d967632a5e9ed335 +mem read 000097c0575bf140 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000097c0575bf140 00 0007 03 0 [McW(0015,07)] 0000000000000000 +l1d-1 write 000097c0575bf140 00 0005 02 0 [MdW] 7ee412061f74df1f +l2 read 000011abc3e7fe80 00 0023 00 1 [McW(0018,05)] d8e6dec1c6caebeb +l1d-0 write 000011abc3e7fe80 00 0010 01 0 [MdW] 056592a8950d3ae6 +l1d-0 read 000019a40a160240 00 0009 02 1 [MdW] 9bfd9fbbf2c99ff9 +l1d-0 evict 0000cac81c633400 00 0000 00 [IcR] 29a7f6150c3dce9f +mem write 0000bbc9c32465c0 -1 -001 -1 1 [MdW] a4578b886e8d379b +l2 evict 0000bbc9c32465c0 00 0015 01 [IcR(0023,03)] a4578b886e8d379b +mem read 000035b33dc0d400 -1 -001 -1 1 [McW] b93463c7c6882c2d +l2 read 000035b33dc0d400 00 0003 02 0 [McW(0023,03)] b93463c7c6882c2d +l1d-0 write 000035b33dc0d400 00 0000 00 0 [MdW] ed279f1bda89013f +l1d-1 read 0000015d1559b380 00 0014 00 1 [ScR] 37ba02bf31772584 +l2 write 00006b8d57b16380 00 0023 02 1 [MdW(0021,02)] 819cfbd3392cc9d7 +l1d-1 evict 00006b8d57b16380 00 0014 01 [IcR] 819cfbd3392cc9d7 +l2 read 00008a9bb333e780 01 0022 00 1 [SdW(0015,02)] 1a1288c6d6f9e35f +l1d-1 read 00008a9bb333e780 00 0014 01 0 [ScR] 1a1288c6d6f9e35f +mem write 0000803bdde89900 -1 -001 -1 1 [MdW] 2fcbd7fcdbfe874e +l2 evict 0000803bdde89900 01 0000 03 [IcR(0028,07)] 2fcbd7fcdbfe874e +mem read 0000d9c5522ff480 -1 -001 -1 1 [McW] 2209aff3c2ca5c85 +l2 read 0000d9c5522ff480 00 0018 01 0 [ScW(0028,07)] 2209aff3c2ca5c85 +l1d-1 read 0000d9c5522ff480 00 0002 00 0 [ScR] 2209aff3c2ca5c85 +l2 write 0000976cd0e4ef80 01 0029 03 1 [MdW(0005,03)] 6836e25924806ec2 +l1d-1 evict 0000976cd0e4ef80 00 0014 03 [IcR] 6836e25924806ec2 +mem write 0000e0625ebdd9c0 -1 -001 -1 1 [MdW] 85ad2d90d56309f8 +l2 evict 0000e0625ebdd9c0 00 0023 04 [IcR(0011,00)] 85ad2d90d56309f8 +mem read 000029aaf453f380 -1 -001 -1 1 [McW] b61a89beddcb2461 +l2 read 000029aaf453f380 00 0009 04 0 [ScW(0011,00)] b61a89beddcb2461 +l1d-1 read 000029aaf453f380 00 0014 03 0 [ScR] b61a89beddcb2461 +l1d-1 evict 00007600dddbb740 00 0013 03 [IcR] 03513838cc9cbb95 +mem write 000096f82eb883c0 -1 -001 -1 1 [MdW] 08bb4ec8dd33586c +l2 evict 000096f82eb883c0 01 0024 00 [IcR(0005,02)] 08bb4ec8dd33586c +mem read 0000335e8e86a740 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000335e8e86a740 01 0025 01 0 [McW(0005,02)] 0000000000000000 +l1d-1 write 0000335e8e86a740 00 0013 03 0 [MdW] 1e25d0f47d49fee5 +l2 write 000044ca9c649400 00 0030 01 1 [MdW(0031,05)] eccce61d6f7f8e87 +l1d-1 evict 000044ca9c649400 00 0000 02 [IcR] eccce61d6f7f8e87 +l1d-0 evict 0000872d66386580 00 0006 00 [IcR] 1d969caf117e9a5d +l2 write 0000872d66386580 01 0015 04 1 [MdW(0002,01)] 1d969caf117e9a5d +mem write 0000872d66386580 -1 -001 -1 1 [MdW] 1d969caf117e9a5d +l2 evict 0000872d66386580 01 0015 04 [IcR(0002,01)] 1d969caf117e9a5d +mem read 00007e3437831800 -1 -001 -1 1 [McW] 6b9d76bb27c3ffa3 +l2 read 00007e3437831800 01 0013 03 0 [ScW(0002,01)] 6b9d76bb27c3ffa3 +l1d-1 read 00007e3437831800 00 0000 02 0 [ScR] 6b9d76bb27c3ffa3 +l2 read 000019e8db69b240 01 0020 03 1 [ScW(0008,01)] e88dd55a43222698 +l1d-0 read 000019e8db69b240 00 0009 00 0 [ScR] e88dd55a43222698 +l1d-1 read 00003f92117466c0 00 0011 01 1 [ScR] e875ffc98e7626d6 +mem read 0000c662cc646980 -1 -001 -1 1 [McW] 6794a45adab0c5a6 +l2 read 0000c662cc646980 01 0025 03 0 [ScW(0020,00)] 6794a45adab0c5a6 +l1d-0 read 0000c662cc646980 00 0006 00 0 [ScR] 6794a45adab0c5a6 +l2 read 0000d99af3531440 01 0031 02 1 [SdW(0001,00)] 374b30926d13111e +l1d-0 read 0000d99af3531440 00 0001 01 0 [ScR] 374b30926d13111e +l1d-1 evict 0000ecb652ef69c0 00 0007 01 [IcR] e264e2e00564abcc +mem read 0000afd2a9e735c0 -1 -001 -1 1 [McW] cd8ad056003b74ce +l2 read 0000afd2a9e735c0 00 0012 00 0 [ScW(0003,00)] cd8ad056003b74ce +l1d-1 read 0000afd2a9e735c0 00 0007 01 0 [ScR] cd8ad056003b74ce +l2 write 0000b9927026ea40 00 0000 01 1 [MdW(0007,06)] 80e6654ad9b9c34e +l1d-1 evict 0000b9927026ea40 00 0009 02 [IcR] 80e6654ad9b9c34e +mem read 0000fc0f3e0e0240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000fc0f3e0e0240 00 0013 03 0 [McW(0012,04)] 0000000000000000 +l1d-1 write 0000fc0f3e0e0240 00 0009 02 0 [MdW] 782d6bc227c64bae +l1d-1 evict 00004be09470fa40 00 0009 03 [IcR] d75b3bf448b79ed6 +l2 read 000070a6fc8f5e40 01 0010 00 1 [SdW(0001,03)] 64e8dcc94b7334bf +l1d-1 read 000070a6fc8f5e40 00 0009 03 0 [ScR] 64e8dcc94b7334bf +l1d-1 evict 0000d8e31ae65a80 00 0010 00 [IcR] 2bedd934c961c1a5 +l2 write 000011abc3e7fe80 00 0023 00 1 [MdW(0018,05)] 056592a8950d3ae6 +l2 read 000011abc3e7fe80 00 0023 00 1 [SdW(0018,05)] 056592a8950d3ae6 +l1d-1 read 000011abc3e7fe80 00 0010 00 0 [ScR] 056592a8950d3ae6 +l1d-1 read 0000b6ebb009be40 00 0009 01 1 [ScR] 522882a3ec706ec7 +l1d-1 evict 0000848b6896ff40 00 0013 01 [IcR] 3d3448be0c771dfb +l1d-1 evict 000057907407aac0 00 0011 03 [IcR] 4143fd547c0ab069 +mem write 000057907407aac0 -1 -001 -1 1 [MdW] 4143fd547c0ab069 +l2 evict 000057907407aac0 00 0008 03 [IcR(0004,07)] 4143fd547c0ab069 +mem read 00003c52cd2e1f40 -1 -001 -1 1 [McW] 254c1bb063a0705f +l2 read 00003c52cd2e1f40 01 0030 03 0 [ScW(0004,07)] 254c1bb063a0705f +l1d-1 read 00003c52cd2e1f40 00 0013 01 0 [ScR] 254c1bb063a0705f +l1d-1 read 00004e67a6d81700 00 0012 03 1 [ScR] 11cd09bce09e8d89 +l2 read 0000ff71c82dc900 00 0031 02 1 [McW(0016,04)] 17a334d5e0225251 +l1d-0 write 0000ff71c82dc900 00 0004 00 0 [MdW] 2aa4c03e4f22bc4c +l1d-0 evict 000077988753abc0 00 0015 00 [IcR] 267159d544344353 +l1d-0 evict 0000af4203bc4640 00 0009 01 [IcR] 122a0e9f67143c9d +l2 evict 0000af4203bc4640 00 0024 04 [IcR(0006,06)] 122a0e9f67143c9d +mem read 0000c92c00098fc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000c92c00098fc0 00 0011 04 0 [McW(0006,06)] 0000000000000000 +l1d-0 write 0000c92c00098fc0 00 0015 00 0 [MdW] 762cef5d1c148672 +l2 read 00001ad58832f640 01 0009 00 1 [SdW(0027,00)] f9c176745781e0be +l1d-0 read 00001ad58832f640 00 0009 01 0 [ScR] f9c176745781e0be +l1d-0 evict 000059efb9532e80 00 0010 02 [IcR] db19e43f15c6da9f +l2 read 00003d1e08e9d280 01 0014 03 1 [MdW(0001,07)] 961f2579a22ee527 +l1d-0 write 00003d1e08e9d280 00 0010 02 0 [MdW] e1c389e66b566a31 +l2 write 0000755c40141f00 01 0006 03 1 [MdW(0016,05)] 0e01110cf13031b3 +l1d-1 evict 0000755c40141f00 00 0012 00 [IcR] 0e01110cf13031b3 +l1d-0 evict 000027396c290d00 00 0004 01 [IcR] 1eb1f5688413a4bf +l2 write 000027396c290d00 00 0003 01 1 [MdW(0020,05)] 1eb1f5688413a4bf +mem write 000027396c290d00 -1 -001 -1 1 [MdW] 1eb1f5688413a4bf +l2 evict 000027396c290d00 00 0003 01 [IcR(0020,05)] 1eb1f5688413a4bf +mem read 000066e78b358f00 -1 -001 -1 1 [McW] 50bcdb51cf5071b0 +l2 read 000066e78b358f00 01 0015 04 0 [ScW(0020,05)] 50bcdb51cf5071b0 +l1d-1 read 000066e78b358f00 00 0012 00 0 [ScR] 50bcdb51cf5071b0 +l2 write 0000960701732dc0 00 0000 04 1 [MdW(0024,03)] 8a34bfe58c264502 +l1d-1 evict 0000960701732dc0 00 0007 00 [IcR] 8a34bfe58c264502 +l2 read 0000c8fa6d0f39c0 01 0011 04 1 [ScW(0021,05)] 6ba4d33d1d05c3e1 +l1d-1 read 0000c8fa6d0f39c0 00 0007 00 0 [ScR] 6ba4d33d1d05c3e1 +mem read 000066d344c0bd00 -1 -001 -1 1 [McW] c13adece18482753 +l2 read 000066d344c0bd00 00 0018 04 0 [ScW(0004,06)] c13adece18482753 +l1d-0 read 000066d344c0bd00 00 0004 01 0 [ScR] c13adece18482753 +l1d-0 read 00002c011c660300 00 0012 02 1 [ScR] aacfbf30c579992e +l2 read 00005066f9d0b480 00 0026 02 1 [ScW(0006,05)] 53940c35436b8a64 +l1d-1 read 00005066f9d0b480 00 0002 02 0 [ScR] 53940c35436b8a64 +l1d-0 read 000000f97fae5cc0 00 0003 02 1 [ScR] fb933a96c629912c +mem write 00003f02ff55a000 -1 -001 -1 1 [MdW] 52cd589d7ae47de9 +l2 evict 00003f02ff55a000 00 0023 01 [IcR(0018,06)] 52cd589d7ae47de9 +mem read 00004db5ccc11940 -1 -001 -1 1 [McW] bfb2f68b809fc749 +l2 read 00004db5ccc11940 01 0010 01 0 [McW(0018,06)] bfb2f68b809fc749 +l1d-1 write 00004db5ccc11940 00 0005 03 0 [MdW] d8cb56c8aa6a5812 +l2 write 0000c3067a593240 01 0001 00 1 [MdW(0008,07)] 1e28da4f5b6329f5 +l1d-1 evict 0000c3067a593240 00 0009 00 [IcR] 1e28da4f5b6329f5 +mem write 0000b9927026ea40 -1 -001 -1 1 [MdW] 80e6654ad9b9c34e +l2 evict 0000b9927026ea40 00 0000 01 [IcR(0007,06)] 80e6654ad9b9c34e +mem read 0000b5edcfe07e40 -1 -001 -1 1 [McW] df83c9e60deff983 +l2 read 0000b5edcfe07e40 01 0016 00 0 [ScW(0007,06)] df83c9e60deff983 +l1d-1 read 0000b5edcfe07e40 00 0009 00 0 [ScR] df83c9e60deff983 +l1d-1 read 0000c194bc8acb40 00 0013 00 1 [MdW] 46dad6426e374e28 +l2 write 00002b4766af8580 00 0026 00 1 [MdW(0024,06)] b4db8b8dc3224301 +l1d-0 evict 00002b4766af8580 00 0006 01 [IcR] b4db8b8dc3224301 +mem read 00009a603343d580 -1 -001 -1 1 [McW] 75aae8a3bba85efe +l2 read 00009a603343d580 00 0031 03 0 [McW(0016,03)] 75aae8a3bba85efe +l1d-0 write 00009a603343d580 00 0006 01 0 [MdW] f04e58215f831309 +l2 write 0000fb280d796f00 00 0016 03 1 [MdW(0010,07)] 3a1493ffc32c7582 +l1d-1 evict 0000fb280d796f00 00 0012 01 [IcR] 3a1493ffc32c7582 +l2 read 00005584f5f75300 01 0008 01 1 [MdW(0004,03)] 71726f4857083034 +l1d-1 write 00005584f5f75300 00 0012 01 0 [MdW] 3657b12617260554 +l1d-1 evict 0000792d5ad259c0 00 0007 03 [IcR] 04aa8a778a45e9be +l2 read 0000494fead535c0 00 0020 02 1 [SdW(0006,02)] 37a5ac998ceb943a +l1d-1 read 0000494fead535c0 00 0007 03 0 [ScR] 37a5ac998ceb943a +l1d-0 read 0000c20e6058a4c0 00 0003 01 1 [MdW] 3eb24e380f97cc8b +l2 write 0000a90ecf11c380 00 0007 02 1 [MdW(0012,06)] aac2b62c13e78085 +l1d-0 evict 0000a90ecf11c380 00 0014 01 [IcR] aac2b62c13e78085 +l1d-0 evict 000019e8db69b240 00 0009 00 [IcR] e88dd55a43222698 +l2 evict 000019e8db69b240 01 0020 03 [IcR(0008,01)] e88dd55a43222698 +mem read 00007d0902e50f80 -1 -001 -1 1 [McW] 7acc9b6fe084c114 +l2 read 00007d0902e50f80 00 0023 01 0 [ScW(0008,01)] 7acc9b6fe084c114 +l1d-0 read 00007d0902e50f80 00 0014 01 0 [ScR] 7acc9b6fe084c114 +l1d-0 read 00009a603343d580 00 0006 01 1 [MdW] f04e58215f831309 +l1d-0 evict 00006a2ba09892c0 00 0011 01 [IcR] 05f0103b8fa109da +l2 read 0000dda2631186c0 00 0026 01 1 [SdW(0022,04)] 2389031e21d4a9ca +l1d-0 read 0000dda2631186c0 00 0011 01 0 [ScR] 2389031e21d4a9ca +l1d-0 evict 000026d8a5685e00 00 0008 01 [IcR] ead7b1b4f2b53fe5 +l1d-1 evict 0000afd2a9e735c0 00 0007 01 [IcR] cd8ad056003b74ce +l2 evict 0000afd2a9e735c0 00 0012 00 [IcR(0003,00)] cd8ad056003b74ce +mem read 00005d7bb4b3fa00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00005d7bb4b3fa00 00 0031 04 0 [McW(0003,00)] 0000000000000000 +l1d-0 write 00005d7bb4b3fa00 00 0008 01 0 [MdW] 324186e887027c07 +l2 write 0000c97dfb94fd80 01 0020 02 1 [MdW(0028,04)] a7b91faf6cbb0b11 +l1d-0 evict 0000c97dfb94fd80 00 0006 03 [IcR] a7b91faf6cbb0b11 +mem write 00001a6e53c425c0 -1 -001 -1 1 [MdW] 2252d77bea92888a +l2 evict 00001a6e53c425c0 00 0002 03 [IcR(0016,01)] 2252d77bea92888a +mem read 00001e12c123a180 -1 -001 -1 1 [McW] ff1d2beb43b9b33b +l2 read 00001e12c123a180 01 0018 04 0 [ScW(0016,01)] ff1d2beb43b9b33b +l1d-0 read 00001e12c123a180 00 0006 03 0 [ScR] ff1d2beb43b9b33b +l2 read 0000d9b688e86700 01 0031 00 1 [ScW(0003,07)] 717b944cf304d60e +l1d-0 read 0000d9b688e86700 00 0012 01 0 [ScR] 717b944cf304d60e +l1d-0 evict 0000bb75517c9b80 00 0014 00 [IcR] 004c1351d2605e26 +l1d-1 evict 000066e78b358f00 00 0012 00 [IcR] 50bcdb51cf5071b0 +l2 evict 000066e78b358f00 01 0015 04 [IcR(0020,05)] 50bcdb51cf5071b0 +mem read 0000ffac00a71b80 -1 -001 -1 1 [McW] 528f7b986ffeb18f +l2 read 0000ffac00a71b80 01 0020 03 0 [ScW(0020,05)] 528f7b986ffeb18f +l1d-0 read 0000ffac00a71b80 00 0014 00 0 [ScR] 528f7b986ffeb18f +l1d-1 read 000011abc3e7fe80 00 0010 00 1 [ScR] 056592a8950d3ae6 +l2 read 000046663e4def00 00 0031 01 1 [McW(0020,04)] e21542a5128e9ecb +l1d-0 write 000046663e4def00 00 0012 00 0 [MdW] 071b7c4e59caa981 +l2 read 000029aaf453f380 00 0009 04 1 [McW(0011,00)] b61a89beddcb2461 +l1d-1 write 000029aaf453f380 00 0014 03 0 [MdW] 4c8a5d57dafc7abe +l1d-1 write 000029aaf453f380 00 0014 03 1 [MdW] 0b79dd26e62e1c76 +l2 read 0000045cce7b2a40 00 0030 03 1 [ScW(0022,00)] 23260c93a8186343 +l1d-0 read 0000045cce7b2a40 00 0009 00 0 [ScR] 23260c93a8186343 +l1d-0 read 0000ced5eac0d680 00 0010 00 1 [ScR] 1d2194cf7fc214b2 +l1d-0 evict 000000f97fae5cc0 00 0003 02 [IcR] fb933a96c629912c +l2 evict 000000f97fae5cc0 00 0003 00 [IcR(0017,03)] fb933a96c629912c +mem read 000016480b2b62c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000016480b2b62c0 01 0016 01 0 [McW(0017,03)] 0000000000000000 +l1d-1 write 000016480b2b62c0 00 0011 03 0 [MdW] 064d54173a4f17db +mem read 00005549adeaf440 -1 -001 -1 1 [McW] f710a3fc6c88c778 +l2 read 00005549adeaf440 01 0014 00 0 [ScW(0027,06)] f710a3fc6c88c778 +l1i-0 read 00005549adeaf440 00 0001 00 0 [ScR] f710a3fc6c88c778 +l1i-1 read 00006980d04a3400 00 0000 00 1 [ScR] 865c0d538f5633c2 +l1d-0 read 00001ad58832f640 00 0009 01 1 [ScR] f9c176745781e0be +l1d-0 read 000063036c943940 00 0005 02 1 [ScR] 299a3a36bffbc8d8 +l2 write 00004c22aaaafa40 00 0020 01 1 [MdW(0025,04)] 8f534fcc3180e037 +l1d-0 evict 00004c22aaaafa40 00 0009 03 [IcR] 8f534fcc3180e037 +mem write 00006bb87d1516c0 -1 -001 -1 1 [MdW] 1eada00b071b1b62 +l2 evict 00006bb87d1516c0 01 0000 00 [IcR(0013,05)] 1eada00b071b1b62 +mem read 000019e8db69b240 -1 -001 -1 1 [McW] e88dd55a43222698 +l2 read 000019e8db69b240 00 0001 03 0 [McW(0013,05)] e88dd55a43222698 +l1d-0 write 000019e8db69b240 00 0009 03 0 [MdW] d5554ddfb0a906ba +l1d-0 write 000019a40a160240 00 0009 02 1 [MdW] 65ada601d76e1dc5 +l1d-0 read 00004813c834cdc0 00 0007 01 1 [ScR] 3992e1e5aacf6574 +l1d-1 evict 000098857a80b0c0 00 0003 02 [IcR] 4af1df55aebdd3e6 +l2 read 0000c66c607618c0 01 0017 03 1 [ScW(0024,07)] ecc19bfa60ae4cae +l1d-1 read 0000c66c607618c0 00 0003 02 0 [ScR] ecc19bfa60ae4cae +l1d-1 read 00004e67a6d81700 00 0012 03 1 [ScR] 11cd09bce09e8d89 +l1d-0 read 0000c86d27a3d040 00 0001 02 1 [ScR] 4e927fc3199ae8b9 +l1d-0 evict 000092e2f479cf80 00 0014 03 [IcR] 33c020afbf13af39 +l1d-1 evict 0000b7fc8ec73280 00 0010 01 [IcR] 82cac3e599046a61 +l2 evict 0000b7fc8ec73280 01 0013 01 [IcR(0014,02)] 82cac3e599046a61 +mem read 00006f44ab8bcf80 -1 -001 -1 1 [McW] 23fb33a840c4d118 +l2 read 00006f44ab8bcf80 01 0003 04 0 [ScW(0014,02)] 23fb33a840c4d118 +l1d-0 read 00006f44ab8bcf80 00 0014 03 0 [ScR] 23fb33a840c4d118 +l1d-1 read 0000015d1559b380 00 0014 00 1 [ScR] 37ba02bf31772584 +l2 read 0000d090b8181100 01 0017 01 1 [MdW(0013,00)] 75e4bd98aa1f381f +l1d-1 write 0000d090b8181100 00 0004 03 0 [MdW] 17f932b77ce0dc6c +l2 write 000035bda4e87c00 00 0014 03 1 [MdW(0024,00)] fe19bbf577734850 +l1d-1 evict 000035bda4e87c00 00 0000 01 [IcR] fe19bbf577734850 +l2 read 000044ca9c649400 00 0030 01 1 [MdW(0031,05)] eccce61d6f7f8e87 +l1d-1 write 000044ca9c649400 00 0000 01 0 [MdW] 878bccaacc310006 +l1d-0 read 000046663e4def00 00 0012 00 1 [MdW] 071b7c4e59caa981 +l2 write 0000fc0f3e0e0240 00 0013 03 1 [MdW(0012,04)] 782d6bc227c64bae +l1d-1 evict 0000fc0f3e0e0240 00 0009 02 [IcR] 782d6bc227c64bae +l2 evict 0000908064eef6c0 00 0003 03 [IcR(0022,03)] 63b934d5bef74a33 +mem read 0000172ca7421240 -1 -001 -1 1 [McW] 322ca77b5b927467 +l2 read 0000172ca7421240 01 0026 02 0 [ScW(0022,03)] 322ca77b5b927467 +l1d-1 read 0000172ca7421240 00 0009 02 0 [ScR] 322ca77b5b927467 +l2 write 0000ed89583b9580 01 0017 04 1 [MdW(0020,06)] d8bb4f450f57ff09 +l1d-1 evict 0000ed89583b9580 00 0006 02 [IcR] d8bb4f450f57ff09 +l2 write 00005f4478ac3180 01 0025 02 1 [MdW(0028,06)] 66b798c5bd65084a +l2 read 00005f4478ac3180 01 0025 02 1 [SdW(0028,06)] 66b798c5bd65084a +l1d-1 read 00005f4478ac3180 00 0006 02 0 [ScR] 66b798c5bd65084a +l1d-1 evict 00006a5fbc380d80 00 0006 03 [IcR] 52eb0cd4b20154b4 +l2 evict 000077988753abc0 00 0015 03 [IcR(0027,07)] 267159d544344353 +mem read 0000872d66386580 -1 -001 -1 1 [McW] 1d969caf117e9a5d +l2 read 0000872d66386580 01 0015 04 0 [McW(0027,07)] 1d969caf117e9a5d +l1d-1 write 0000872d66386580 00 0006 03 0 [MdW] ba188ccc5a21b9a6 +l1d-1 evict 000070a6fc8f5e40 00 0009 03 [IcR] 64e8dcc94b7334bf +l1d-0 evict 00001b7163d48d40 00 0005 00 [IcR] da68687e2447a125 +l2 evict 00001b7163d48d40 01 0022 04 [IcR(0030,03)] da68687e2447a125 +mem read 000017ee24927240 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000017ee24927240 01 0000 00 0 [McW(0030,03)] 0000000000000000 +l1d-1 write 000017ee24927240 00 0009 03 0 [MdW] 3742f681125a0e6b +l1d-0 read 0000750cdfd9ed40 00 0005 01 1 [ScR] d70a3a98f65651fb +l2 write 0000d5a681624fc0 00 0011 03 1 [MdW(0001,02)] 78e152d3899ce99a +l1d-0 evict 0000d5a681624fc0 00 0015 02 [IcR] 78e152d3899ce99a +l2 read 000061848951ebc0 01 0028 03 1 [SdW(0010,04)] d49ecfeb151d76c1 +l1d-0 read 000061848951ebc0 00 0015 02 0 [ScR] d49ecfeb151d76c1 +l1d-1 read 00003f92117466c0 00 0011 01 1 [ScR] e875ffc98e7626d6 +l1i-1 read 0000bfe0e32f0740 00 0013 00 1 [ScR] f6878d5659a4c4e3 +l2 read 0000c86d27a3d040 00 0002 02 1 [MdW(0000,06)] 4e927fc3199ae8b9 +l1d-0 write 0000c86d27a3d040 00 0001 02 0 [MdW] d3382d91b7968446 +mem read 000037bf6ed61cc0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000037bf6ed61cc0 00 0025 04 0 [McW(0019,02)] 0000000000000000 +l1d-0 write 000037bf6ed61cc0 00 0003 02 0 [MdW] 2e7d5828d25f0433 +mem write 0000c2b04eebfcc0 -1 -001 -1 1 [MdW] aa640df3e7475762 +l2 evict 0000c2b04eebfcc0 01 0018 01 [IcR(0031,06)] aa640df3e7475762 +mem read 00004149ff11d440 -1 -001 -1 1 [McW] dbc0b014e9a8cd6b +l2 read 00004149ff11d440 00 0028 00 0 [ScW(0031,06)] dbc0b014e9a8cd6b +l1d-1 read 00004149ff11d440 00 0001 01 0 [ScR] dbc0b014e9a8cd6b +l1d-1 read 00006a36c42b4840 00 0001 02 1 [MdW] 7d5fd4c9e5820a28 +l1d-1 write 0000c0773417d200 00 0008 03 1 [MdW] dadfef868029f7c9 +l1d-1 read 0000df0f11cce0c0 00 0003 03 1 [ScR] 53cb2f84630d2023 +l1d-0 read 000073f8f4229a80 00 0010 03 1 [MdW] 44fd09249541cc5f +l1d-1 evict 0000b6ebb009be40 00 0009 01 [IcR] 522882a3ec706ec7 +l2 read 000099fa8471ba40 01 0030 01 1 [SdW(0017,04)] 3a1b0222700896fc +l1d-1 read 000099fa8471ba40 00 0009 01 0 [ScR] 3a1b0222700896fc +l1d-1 evict 00001d61aeb20340 00 0013 02 [IcR] c9614f7e7125d893 +l1d-0 evict 0000fa4efe47a000 00 0000 03 [IcR] 3174dbba3c7dbf88 +l2 write 0000fa4efe47a000 01 0026 01 1 [MdW(0002,06)] 3174dbba3c7dbf88 +mem write 0000fa4efe47a000 -1 -001 -1 1 [MdW] 3174dbba3c7dbf88 +l2 evict 0000fa4efe47a000 01 0026 01 [IcR(0002,06)] 3174dbba3c7dbf88 +mem read 00004fce0ded4740 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00004fce0ded4740 01 0026 03 0 [McW(0002,06)] 0000000000000000 +l1d-1 write 00004fce0ded4740 00 0013 02 0 [MdW] 1d90d800464f97ff +l1d-0 evict 0000f17f98f480c0 00 0003 00 [IcR] 84e0e10794125a03 +mem write 000084e1ad47e100 -1 -001 -1 1 [MdW] 82e50a848d30e308 +l2 evict 000084e1ad47e100 00 0008 01 [IcR(0014,06)] 82e50a848d30e308 +mem read 000000f97fae5cc0 -1 -001 -1 1 [McW] fb933a96c629912c +l2 read 000000f97fae5cc0 00 0003 00 0 [ScW(0014,06)] fb933a96c629912c +l1d-0 read 000000f97fae5cc0 00 0003 00 0 [ScR] fb933a96c629912c +l1d-0 evict 0000045cce7b2a40 00 0009 00 [IcR] 23260c93a8186343 +l1d-0 evict 0000ced5eac0d680 00 0010 00 [IcR] 1d2194cf7fc214b2 +l2 evict 0000ced5eac0d680 01 0007 00 [IcR(0012,02)] 1d2194cf7fc214b2 +mem read 0000ade5546e9640 -1 -001 -1 1 [McW] 972057e2a2e60fe7 +l2 read 0000ade5546e9640 00 0019 01 0 [McW(0012,02)] 972057e2a2e60fe7 +l1d-0 write 0000ade5546e9640 00 0009 00 0 [MdW] 27d9daff0a364d2c +l2 read 0000960701732dc0 00 0000 04 1 [SdW(0024,03)] 8a34bfe58c264502 +l1d-1 read 0000960701732dc0 00 0007 01 0 [ScR] 8a34bfe58c264502 +l2 write 0000280e4164bb00 01 0028 04 1 [MdW(0014,00)] 3d524b0d26406aad +l1d-0 evict 0000280e4164bb00 00 0012 03 [IcR] 3d524b0d26406aad +mem write 0000cac81c633400 -1 -001 -1 1 [MdW] 29a7f6150c3dce9f +l2 evict 0000cac81c633400 00 0029 03 [IcR(0000,02)] 29a7f6150c3dce9f +mem read 000065dc0cb58f00 -1 -001 -1 1 [McW] 8b4ecdd8b082fe75 +l2 read 000065dc0cb58f00 00 0010 03 0 [ScW(0000,02)] 8b4ecdd8b082fe75 +l1d-0 read 000065dc0cb58f00 00 0012 03 0 [ScR] 8b4ecdd8b082fe75 +l1d-1 evict 0000d053f6b48540 00 0005 01 [IcR] 8b505c8f60159dd8 +l2 write 0000d053f6b48540 00 0006 00 1 [MdW(0025,06)] 8b505c8f60159dd8 +l2 read 0000d053f6b48540 00 0006 00 1 [MdW(0025,06)] 8b505c8f60159dd8 +l1d-0 write 0000d053f6b48540 00 0005 00 0 [MdW] 5b6bc81301550266 +l2 write 000049889647d200 00 0022 00 1 [MdW(0015,05)] 276cdd009ba0b24d +l1d-0 evict 000049889647d200 00 0008 00 [IcR] 276cdd009ba0b24d +l1d-0 evict 000073f8f4229a80 00 0010 03 [IcR] 44fd09249541cc5f +l2 write 000073f8f4229a80 01 0005 03 1 [MdW(0006,01)] 44fd09249541cc5f +mem write 000073f8f4229a80 -1 -001 -1 1 [MdW] 44fd09249541cc5f +l2 evict 000073f8f4229a80 01 0005 03 [IcR(0006,01)] 44fd09249541cc5f +mem read 0000fa408c35ba00 -1 -001 -1 1 [McW] 7eec603efdcdea3b +l2 read 0000fa408c35ba00 01 0031 03 0 [ScW(0006,01)] 7eec603efdcdea3b +l1d-0 read 0000fa408c35ba00 00 0008 00 0 [ScR] 7eec603efdcdea3b +l1d-1 read 00005c90ae19e9c0 00 0007 02 1 [MdW] f5c83104bc8c8b9b +l1d-1 evict 000075fd554aed80 00 0006 01 [IcR] 96f8c40189bf5862 +l2 read 0000ed89583b9580 01 0017 04 1 [SdW(0020,06)] d8bb4f450f57ff09 +l1d-1 read 0000ed89583b9580 00 0006 01 0 [ScR] d8bb4f450f57ff09 +l1i-1 read 0000bfe0e32f0740 00 0013 00 1 [ScR] f6878d5659a4c4e3 +mem write 00001fd6787ba100 -1 -001 -1 1 [MdW] cf847744761b8732 +l2 evict 00001fd6787ba100 00 0007 00 [IcR(0010,06)] cf847744761b8732 +mem read 0000c1182c224c40 -1 -001 -1 1 [McW] 3c0c3449cec62aac +l2 read 0000c1182c224c40 01 0014 04 0 [McW(0010,06)] 3c0c3449cec62aac +l1d-1 write 0000c1182c224c40 00 0001 03 0 [MdW] 7383c8d01e14c3e4 +l1d-1 write 000044ca9c649400 00 0000 01 1 [MdW] be04b443fdf25e1f +l2 write 0000335e8e86a740 01 0025 01 1 [MdW(0005,02)] 1e25d0f47d49fee5 +l1d-1 evict 0000335e8e86a740 00 0013 03 [IcR] 1e25d0f47d49fee5 +l1d-1 evict 00004d48d3ab6400 00 0000 00 [IcR] 0bad902dc5dbfa0f +mem write 00004d48d3ab6400 -1 -001 -1 1 [MdW] 0bad902dc5dbfa0f +l2 evict 00004d48d3ab6400 00 0025 00 [IcR(0005,00)] 0bad902dc5dbfa0f +mem read 000031e4a2646740 -1 -001 -1 1 [McW] 613b6d57ad34e57a +l2 read 000031e4a2646740 01 0019 03 0 [ScW(0005,00)] 613b6d57ad34e57a +l1d-1 read 000031e4a2646740 00 0013 03 0 [ScR] 613b6d57ad34e57a +l2 evict 00004cfb5e6fc8c0 01 0015 00 +l2 read 00004cfb5e6fc8c0 00 0002 03 0 +mem write 0000b304f6dcc000 -1 -001 -1 1 [MdW] fb80ed3c4e7012f9 +l2 evict 0000b304f6dcc000 01 0016 03 [IcR(0006,04)] fb80ed3c4e7012f9 +mem read 000066e78b358f00 -1 -001 -1 1 [McW] 50bcdb51cf5071b0 +l2 read 000066e78b358f00 01 0015 00 0 [McW(0006,04)] 50bcdb51cf5071b0 +l1d-1 write 000066e78b358f00 00 0012 00 0 [MdW] 70c08e74d4a8e7e9 +l1d-1 evict 0000b5edcfe07e40 00 0009 00 [IcR] df83c9e60deff983 +l1d-0 evict 00001e12c123a180 00 0006 03 [IcR] ff1d2beb43b9b33b +l2 evict 00001e12c123a180 01 0018 04 [IcR(0016,01)] ff1d2beb43b9b33b +mem read 0000b9927026ea40 -1 -001 -1 1 [McW] 80e6654ad9b9c34e +l2 read 0000b9927026ea40 00 0000 01 0 [ScW(0016,01)] 80e6654ad9b9c34e +l1d-1 read 0000b9927026ea40 00 0009 00 0 [ScR] 80e6654ad9b9c34e +l2 read 0000df0f11cce0c0 01 0013 02 1 [MdW(0019,04)] 53cb2f84630d2023 +l1d-1 write 0000df0f11cce0c0 00 0003 03 0 [MdW] ff7e2eb98c7cd5c6 +l2 write 0000872d66386580 01 0015 04 1 [MdW(0027,07)] ba188ccc5a21b9a6 +l2 read 0000872d66386580 01 0015 04 1 [SdW(0027,07)] ba188ccc5a21b9a6 +l1d-0 read 0000872d66386580 00 0006 03 0 [ScR] ba188ccc5a21b9a6 +l1d-1 read 0000ed89583b9580 00 0006 01 1 [ScR] d8bb4f450f57ff09 +l1d-0 read 0000c662cc646980 00 0006 00 1 [ScR] 6794a45adab0c5a6 +l1d-0 evict 00005f4478ac3180 00 0006 02 [IcR] 66b798c5bd65084a +l2 read 00002b4766af8580 00 0026 00 1 [SdW(0024,06)] b4db8b8dc3224301 +l1d-0 read 00002b4766af8580 00 0006 02 0 [ScR] b4db8b8dc3224301 +mem write 0000c1e40165d200 -1 -001 -1 1 [MdW] a09b433b028212d0 +l2 evict 0000c1e40165d200 00 0030 02 [IcR(0010,05)] a09b433b028212d0 +mem read 0000aaaf5454e400 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000aaaf5454e400 00 0005 00 0 [McW(0010,05)] 0000000000000000 +l1d-0 write 0000aaaf5454e400 00 0000 03 0 [MdW] 5060851f4dbe2c1c +l1d-1 read 00005c90ae19e9c0 00 0007 02 1 [MdW] f5c83104bc8c8b9b +l1d-1 read 0000df0f11cce0c0 00 0003 03 1 [MdW] ff7e2eb98c7cd5c6 +l1d-0 evict 00001ad58832f640 00 0009 01 [IcR] f9c176745781e0be +l2 read 00004c22aaaafa40 00 0020 01 1 [SdW(0025,04)] 8f534fcc3180e037 +l1d-0 read 00004c22aaaafa40 00 0009 01 0 [ScR] 8f534fcc3180e037 +l2 read 00002b4766af8580 00 0026 00 1 [MdW(0024,06)] b4db8b8dc3224301 +l1d-0 write 00002b4766af8580 00 0006 02 0 [MdW] e2d7bd4ad76f6849 +l1d-1 evict 0000780ab040b980 00 0006 00 [IcR] 0968e82e4bb02b18 +l2 read 00006a5fbc380d80 01 0031 01 1 [SdW(0013,01)] 52eb0cd4b20154b4 +l1d-1 read 00006a5fbc380d80 00 0006 00 0 [ScR] 52eb0cd4b20154b4 +l1d-1 evict 0000c8fa6d0f39c0 00 0007 00 [IcR] 6ba4d33d1d05c3e1 +l1d-0 evict 00002c011c660300 00 0012 02 [IcR] aacfbf30c579992e +l2 evict 00002c011c660300 00 0012 02 [IcR(0026,00)] aacfbf30c579992e +mem read 0000e44fac6af1c0 -1 -001 -1 1 [McW] 3b888b23c33eb7f2 +l2 read 0000e44fac6af1c0 01 0018 01 0 [ScW(0026,00)] 3b888b23c33eb7f2 +l1d-1 read 0000e44fac6af1c0 00 0007 00 0 [ScR] 3b888b23c33eb7f2 +l2 read 00004c22aaaafa40 00 0020 01 1 [MdW(0025,04)] 8f534fcc3180e037 +l1d-0 write 00004c22aaaafa40 00 0009 01 0 [MdW] d145642759dd977d +l2 read 0000ed89583b9580 01 0017 04 1 [MdW(0020,06)] d8bb4f450f57ff09 +l1d-1 write 0000ed89583b9580 00 0006 01 0 [MdW] b47da2a39aa7d229 +l1d-1 read 00007e3437831800 00 0000 02 1 [ScR] 6b9d76bb27c3ffa3 +l1d-1 evict 0000494fead535c0 00 0007 03 [IcR] 37a5ac998ceb943a +l2 read 0000792d5ad259c0 00 0024 00 1 [McW(0004,01)] 04aa8a778a45e9be +l1d-1 write 0000792d5ad259c0 00 0007 03 0 [MdW] 14faf8e2bb871649 +l1d-1 evict 00003c52cd2e1f40 00 0013 01 [IcR] 254c1bb063a0705f +l2 read 0000522d13b5a340 01 0007 03 1 [SdW(0016,06)] 869ff1490741a150 +l1d-1 read 0000522d13b5a340 00 0013 01 0 [ScR] 869ff1490741a150 +l2 evict 00005549adeaf440 01 0014 00 [IcR(0027,06)] f710a3fc6c88c778 +mem read 0000fbeaadb97c00 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000fbeaadb97c00 01 0021 01 0 [McW(0027,06)] 0000000000000000 +l1d-1 write 0000fbeaadb97c00 00 0000 00 0 [MdW] 5ebbe72d1d33f240 +l2 write 00005d35d68c9380 01 0013 00 1 [MdW(0006,00)] 2f6fb92bfe206e0f +l1d-0 evict 00005d35d68c9380 00 0014 02 [IcR] 2f6fb92bfe206e0f +l2 read 0000ba89bc350380 01 0017 02 1 [ScW(0011,06)] f769e7273e7932c3 +l1d-0 read 0000ba89bc350380 00 0014 02 0 [ScR] f769e7273e7932c3 +l1d-0 read 000030295cbb89c0 00 0007 02 1 [MdW] 0053d6a34dc70a2d +l1d-1 evict 0000960701732dc0 00 0007 01 [IcR] 8a34bfe58c264502 +l2 read 0000ecb652ef69c0 01 0012 02 1 [MdW(0029,07)] e264e2e00564abcc +l1d-1 write 0000ecb652ef69c0 00 0007 01 0 [MdW] f4e85398ae70e105 +l1d-1 read 0000792d5ad259c0 00 0007 03 1 [MdW] 14faf8e2bb871649 +l1d-0 evict 0000a240433c0100 00 0004 03 [IcR] 3c86a591f8f297ce +mem write 00003f98ec32ec40 -1 -001 -1 1 [MdW] 85f5ad5e548a4019 +l2 evict 00003f98ec32ec40 01 0002 02 [IcR(0021,04)] 85f5ad5e548a4019 +mem read 00008a30b4505100 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00008a30b4505100 00 0023 04 0 [McW(0021,04)] 0000000000000000 +l1d-0 write 00008a30b4505100 00 0004 03 0 [MdW] d130b7d9367311f3 +l1d-0 read 00001c9702375bc0 00 0015 01 1 [MdW] ee1e9990a9eb12f5 +l1d-1 evict 000073703a455800 00 0000 03 [IcR] 90aaa0331455ae1c +l2 write 000091e69e86bc00 01 0002 01 1 [MdW(0006,03)] 050aae8e0c3268a3 +l2 read 000091e69e86bc00 01 0002 01 1 [SdW(0006,03)] 050aae8e0c3268a3 +l1d-1 read 000091e69e86bc00 00 0000 03 0 [ScR] 050aae8e0c3268a3 +l2 read 0000750cdfd9ed40 01 0027 03 1 [McW(0015,00)] d70a3a98f65651fb +l1d-0 write 0000750cdfd9ed40 00 0005 01 0 [MdW] 14116ffad10ecda8 +l2 evict 00007600dddbb740 01 0025 00 [IcR(0008,04)] 03513838cc9cbb95 +mem read 0000649cf2ea9280 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000649cf2ea9280 00 0022 04 0 [McW(0008,04)] 0000000000000000 +l1d-0 write 0000649cf2ea9280 00 0010 00 0 [MdW] a7fe86bc21b49d3f +l2 write 000052d61b6d5a00 00 0016 01 1 [MdW(0028,00)] e46273a551eedf5d +l1d-0 evict 000052d61b6d5a00 00 0008 02 [IcR] e46273a551eedf5d +mem write 000053c37f465900 -1 -001 -1 1 [MdW] 1d46a92797eafd72 +l2 evict 000053c37f465900 00 0017 01 [IcR(0014,03)] 1d46a92797eafd72 +mem read 00001eab7edaca00 -1 -001 -1 1 [McW] d22728c72006712c +l2 read 00001eab7edaca00 00 0015 01 0 [ScW(0014,03)] d22728c72006712c +l1d-0 read 00001eab7edaca00 00 0008 02 0 [ScR] d22728c72006712c +l2 write 00009a603343d580 00 0031 03 1 [MdW(0016,03)] f04e58215f831309 +l1d-0 evict 00009a603343d580 00 0006 01 [IcR] f04e58215f831309 +l1d-0 evict 00001eab7edaca00 00 0008 02 [IcR] d22728c72006712c +l2 evict 00001eab7edaca00 00 0015 01 [IcR(0014,03)] d22728c72006712c +mem read 0000e0ad5d373580 -1 -001 -1 1 [McW] 06512cc805fd57c0 +l2 read 0000e0ad5d373580 01 0001 01 0 [ScW(0014,03)] 06512cc805fd57c0 +l1d-0 read 0000e0ad5d373580 00 0006 01 0 [ScR] 06512cc805fd57c0 +l1d-1 evict 00005f4478ac3180 00 0006 02 [IcR] 66b798c5bd65084a +mem read 0000bda9a4bfc180 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000bda9a4bfc180 01 0029 04 0 [McW(0007,05)] 0000000000000000 +l1d-1 write 0000bda9a4bfc180 00 0006 02 0 [MdW] 00ab3a9a530ce0e6 +l1d-1 evict 0000c3a56b5f8bc0 00 0015 02 [IcR] 9b4a314f80de0e14 +l2 read 00000d95bb8807c0 01 0009 03 1 [SdW(0015,04)] 0634f4c2a43e710b +l1d-1 read 00000d95bb8807c0 00 0015 02 0 [ScR] 0634f4c2a43e710b +l1d-1 read 0000ecb652ef69c0 00 0007 01 1 [MdW] f4e85398ae70e105 +l2 read 000052d61b6d5a00 00 0016 01 1 [SdW(0028,00)] e46273a551eedf5d +l1d-0 read 000052d61b6d5a00 00 0008 02 0 [ScR] e46273a551eedf5d +l2 write 00004dcada9f52c0 01 0010 03 1 [MdW(0022,02)] 5aff72819d94fd3f +l1d-0 evict 00004dcada9f52c0 00 0011 03 [IcR] 5aff72819d94fd3f +mem write 000002d094c53dc0 -1 -001 -1 1 [MdW] a0f76de140ef6fc6 +l2 evict 000002d094c53dc0 01 0004 02 [IcR(0027,03)] a0f76de140ef6fc6 +mem read 0000908064eef6c0 -1 -001 -1 1 [McW] 63b934d5bef74a33 +l2 read 0000908064eef6c0 00 0003 01 0 [ScW(0027,03)] 63b934d5bef74a33 +l1d-0 read 0000908064eef6c0 00 0011 03 0 [ScR] 63b934d5bef74a33 +l1d-1 read 0000c1182c224c40 00 0001 03 1 [MdW] 7383c8d01e14c3e4 +l2 write 0000106db33edf80 00 0006 03 1 [MdW(0019,00)] eeee3bfe9cc85d16 +l1d-1 evict 0000106db33edf80 00 0014 02 [IcR] eeee3bfe9cc85d16 +l2 read 00006b8d57b16380 00 0023 02 1 [SdW(0021,02)] 819cfbd3392cc9d7 +l1d-1 read 00006b8d57b16380 00 0014 02 0 [ScR] 819cfbd3392cc9d7 +l2 read 00006f44ab8bcf80 01 0003 04 1 [McW(0014,02)] 23fb33a840c4d118 +l1d-0 write 00006f44ab8bcf80 00 0014 03 0 [MdW] 1483bb50755a2dd6 +l2 write 000086890a9e27c0 01 0005 01 1 [MdW(0030,00)] aa5c31a7cf666d65 +l1d-0 evict 000086890a9e27c0 00 0015 03 [IcR] aa5c31a7cf666d65 +mem write 0000cd9a12aaf500 -1 -001 -1 1 [MdW] 3c138801388e31fe +l2 evict 0000cd9a12aaf500 01 0011 01 [IcR(0014,01)] 3c138801388e31fe +mem read 0000b16b39d563c0 -1 -001 -1 1 [McW] 911f9c450394e00e +l2 read 0000b16b39d563c0 00 0027 03 0 [ScW(0014,01)] 911f9c450394e00e +l1d-0 read 0000b16b39d563c0 00 0015 03 0 [ScR] 911f9c450394e00e +l1d-1 evict 00009aaf14205900 00 0004 02 [IcR] 6e85f64de7e125d5 +mem write 0000430a15d72900 -1 -001 -1 1 [MdW] 3281bf3ee92ecb6e +l2 evict 0000430a15d72900 01 0003 01 [IcR(0025,03)] 3281bf3ee92ecb6e +mem read 000036c3a1e16900 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000036c3a1e16900 01 0007 00 0 [McW(0025,03)] 0000000000000000 +l1d-1 write 000036c3a1e16900 00 0004 02 0 [MdW] d87c000743707e28 +l2 write 000081b8cf5f7100 00 0005 04 1 [MdW(0022,05)] db57fe534787ac88 +l1d-1 evict 000081b8cf5f7100 00 0004 00 [IcR] db57fe534787ac88 +l1d-0 evict 000049afd5e02b40 00 0013 02 [IcR] 283b644b3a7a9886 +l2 write 000049afd5e02b40 01 0028 00 1 [MdW(0010,03)] 283b644b3a7a9886 +mem write 000049afd5e02b40 -1 -001 -1 1 [MdW] 283b644b3a7a9886 +l2 evict 000049afd5e02b40 01 0028 00 [IcR(0010,03)] 283b644b3a7a9886 +mem read 00001fd6787ba100 -1 -001 -1 1 [McW] cf847744761b8732 +l2 read 00001fd6787ba100 00 0007 00 0 [ScW(0010,03)] cf847744761b8732 +l1d-1 read 00001fd6787ba100 00 0004 00 0 [ScR] cf847744761b8732 +l1d-0 read 0000ba89bc350380 00 0014 02 1 [ScR] f769e7273e7932c3 +l1d-1 read 0000df0f11cce0c0 00 0003 03 1 [MdW] ff7e2eb98c7cd5c6 +l1i-1 read 00006afec145fe80 00 0010 00 1 [ScR] 36968b104d056d30 +l2 read 0000eeb339250a80 01 0022 03 1 [ScW(0031,00)] baaf248a8b7b28a3 +l1d-0 read 0000eeb339250a80 00 0010 03 0 [ScR] baaf248a8b7b28a3 +l2 write 0000c194bc8acb40 00 0030 00 1 [MdW(0014,05)] 46dad6426e374e28 +l1d-1 evict 0000c194bc8acb40 00 0013 00 [IcR] 46dad6426e374e28 +mem write 00006980d04a3400 -1 -001 -1 1 [MdW] 865c0d538f5633c2 +l2 evict 00006980d04a3400 00 0009 02 [IcR(0000,05)] 865c0d538f5633c2 +mem read 00007600dddbb740 -1 -001 -1 1 [McW] 03513838cc9cbb95 +l2 read 00007600dddbb740 01 0025 00 0 [ScW(0000,05)] 03513838cc9cbb95 +l1d-1 read 00007600dddbb740 00 0013 00 0 [ScR] 03513838cc9cbb95 +l2 write 00004d6b40e0c4c0 01 0004 04 1 [MdW(0015,06)] 4ee61cf9a9d73bd6 +l1d-0 evict 00004d6b40e0c4c0 00 0003 03 [IcR] 4ee61cf9a9d73bd6 +l2 read 0000136b8cb094c0 01 0030 02 1 [SdW(0001,06)] 4d67241ff77b1773 +l1d-0 read 0000136b8cb094c0 00 0003 03 0 [ScR] 4d67241ff77b1773 +l2 write 000019e8db69b240 00 0001 03 1 [MdW(0013,05)] d5554ddfb0a906ba +l1d-0 evict 000019e8db69b240 00 0009 03 [IcR] d5554ddfb0a906ba +l1d-1 evict 0000799fa07cabc0 00 0015 00 [IcR] 5045fca347d4f27e +l2 evict 0000799fa07cabc0 00 0024 03 [IcR(0022,06)] 5045fca347d4f27e +mem read 0000d6eae7df0a40 -1 -001 -1 1 [McW] c8a334c853d1650e +l2 read 0000d6eae7df0a40 00 0020 00 0 [ScW(0022,06)] c8a334c853d1650e +l1d-0 read 0000d6eae7df0a40 00 0009 03 0 [ScR] c8a334c853d1650e +l1d-1 read 0000df0f11cce0c0 00 0003 03 1 [MdW] ff7e2eb98c7cd5c6 +l1d-0 evict 000057ef223eb2c0 00 0011 02 [IcR] 861277f6eb5e5e61 +l2 read 0000302899d8cac0 01 0012 03 1 [ScW(0004,02)] bdd24610b537bb57 +l1d-0 read 0000302899d8cac0 00 0011 02 0 [ScR] bdd24610b537bb57 +l2 write 000018c9dccfc840 00 0011 00 1 [MdW(0005,07)] 995adc99eb8dd0e4 +l1d-0 evict 000018c9dccfc840 00 0001 00 [IcR] 995adc99eb8dd0e4 +mem write 0000f8857becc7c0 -1 -001 -1 1 [MdW] 72975557d7d3aa91 +l2 evict 0000f8857becc7c0 00 0017 02 [IcR(0023,02)] 72975557d7d3aa91 +mem read 000034ffc92a8040 -1 -001 -1 1 [McW] c7c6f4c97b2bfb9c +l2 read 000034ffc92a8040 01 0016 02 0 [McW(0023,02)] c7c6f4c97b2bfb9c +l1d-0 write 000034ffc92a8040 00 0001 00 0 [MdW] c676adece09e8775 +l1d-1 evict 00005066f9d0b480 00 0002 02 [IcR] 53940c35436b8a64 +l2 evict 00005066f9d0b480 00 0026 02 [IcR(0006,05)] 53940c35436b8a64 +mem read 000040dd3c20b700 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000040dd3c20b700 01 0024 00 0 [McW(0006,05)] 0000000000000000 +l1d-0 write 000040dd3c20b700 00 0012 02 0 [MdW] 770860fce69ac2d5 +l2 write 0000c20e6058a4c0 00 0004 01 1 [MdW(0009,05)] 3eb24e380f97cc8b +l1d-0 evict 0000c20e6058a4c0 00 0003 01 [IcR] 3eb24e380f97cc8b +l2 read 00009a461a9864c0 00 0019 00 1 [SdW(0026,05)] 324da2ce5b0bed4d +l1d-0 read 00009a461a9864c0 00 0003 01 0 [ScR] 324da2ce5b0bed4d +l1d-1 read 0000df0f11cce0c0 00 0003 03 1 [MdW] ff7e2eb98c7cd5c6 +l1d-0 read 0000908064eef6c0 00 0011 03 1 [ScR] 63b934d5bef74a33 +l2 write 0000e337ff7072c0 01 0030 04 1 [MdW(0017,06)] f7c7a9fc6069131d +l1d-0 evict 0000e337ff7072c0 00 0011 00 [IcR] f7c7a9fc6069131d +l2 read 0000afa7e0db12c0 01 0019 02 1 [SdW(0013,04)] fbf332b5f72ab798 +l1d-0 read 0000afa7e0db12c0 00 0011 00 0 [ScR] fbf332b5f72ab798 +l1d-0 evict 0000d9b688e86700 00 0012 01 [IcR] 717b944cf304d60e +l2 read 0000280e4164bb00 01 0028 04 1 [MdW(0014,00)] 3d524b0d26406aad +l1d-0 write 0000280e4164bb00 00 0012 01 0 [MdW] 6b3c7fb030849d9a +l2 read 0000015d1559b380 00 0025 03 1 [McW(0012,03)] 37ba02bf31772584 +l1d-1 write 0000015d1559b380 00 0014 00 0 [MdW] 8efb4dc95b135369 +l1d-1 read 0000c0773417d200 00 0008 03 1 [MdW] dadfef868029f7c9 +l1d-0 write 0000c86d27a3d040 00 0001 02 1 [MdW] 9ceab97450e4e258 +l2 write 000037bf6ed61cc0 00 0025 04 1 [MdW(0019,02)] 2e7d5828d25f0433 +l1d-0 evict 000037bf6ed61cc0 00 0003 02 [IcR] 2e7d5828d25f0433 +l2 read 0000534534d814c0 01 0030 00 1 [SdW(0019,06)] 8026669fe9d83abe +l1d-0 read 0000534534d814c0 00 0003 02 0 [ScR] 8026669fe9d83abe +l2 evict 000042ff28b0ea40 01 0023 00 +l2 evict 00005e644f2ad540 00 0031 00 +l2 read 000042ff28b0ea40 00 0031 00 0 +l2 read 00005e644f2ad540 01 0010 04 0 +mem write 000048777e448ac0 -1 -001 -1 1 [MdW] cabd092ab80dc469 +l2 evict 000048777e448ac0 00 0017 04 [IcR(0016,00)] cabd092ab80dc469 +mem read 0000f0d349d6ba00 -1 -001 -1 1 [McW] 87e448736b086b82 +l2 read 0000f0d349d6ba00 01 0023 00 0 [ScW(0016,00)] 87e448736b086b82 +l1d-1 read 0000f0d349d6ba00 00 0008 01 0 [ScR] 87e448736b086b82 +l2 write 0000e9f0c2ae0600 01 0012 00 1 [MdW(0013,02)] 0f186a61fffb27b2 +l1d-1 evict 0000e9f0c2ae0600 00 0008 00 [IcR] 0f186a61fffb27b2 +mem write 0000205a116a7d40 -1 -001 -1 1 [MdW] 292dcc118246929c +l2 evict 0000205a116a7d40 00 0022 02 [IcR(0001,05)] 292dcc118246929c +mem read 0000658c16003e00 -1 -001 -1 1 [McW] a2cb010f62bbec6b +l2 read 0000658c16003e00 01 0003 01 0 [McW(0001,05)] a2cb010f62bbec6b +l1d-1 write 0000658c16003e00 00 0008 00 0 [MdW] b4d895ad74148b7c +l1d-1 evict 0000872d66386580 00 0006 03 [IcR] ba188ccc5a21b9a6 +l2 read 000075fd554aed80 01 0028 02 1 [ScW(0012,07)] 96f8c40189bf5862 +l1d-1 read 000075fd554aed80 00 0006 03 0 [ScR] 96f8c40189bf5862 +l2 write 0000cd7063d2b500 01 0022 02 1 [MdW(0000,01)] a76cc78d6a6d84d9 +l1d-1 evict 0000cd7063d2b500 00 0004 01 [IcR] a76cc78d6a6d84d9 +l2 read 00007a0ccec77d00 01 0014 02 1 [SdW(0002,05)] e927be63c0980bfb +l1d-1 read 00007a0ccec77d00 00 0004 01 0 [ScR] e927be63c0980bfb +l1d-1 evict 0000e44fac6af1c0 00 0007 00 [IcR] 3b888b23c33eb7f2 +l2 evict 0000e44fac6af1c0 01 0018 01 [IcR(0026,00)] 3b888b23c33eb7f2 +mem read 00008372e7409080 -1 -001 -1 1 [McW] 88ed011c5c3a57e0 +l2 read 00008372e7409080 01 0007 01 0 [ScW(0026,00)] 88ed011c5c3a57e0 +l1d-1 read 00008372e7409080 00 0002 02 0 [ScR] 88ed011c5c3a57e0 +l1d-0 read 00006074635435c0 00 0007 00 1 [ScR] 2d3837be469f574c +l1d-0 evict 0000dcedffd5d840 00 0001 03 [IcR] df69ebf16388cff7 +l2 evict 0000d9b688e86700 01 0031 00 [IcR(0003,07)] 717b944cf304d60e +mem read 0000d9ef6a6a2840 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d9ef6a6a2840 01 0016 03 0 [McW(0003,07)] 0000000000000000 +l1d-0 write 0000d9ef6a6a2840 00 0001 03 0 [MdW] b273ed15a15f0aa2 +l2 write 0000033616c7e540 00 0022 01 1 [MdW(0007,01)] 8a01603899540e5a +l1d-0 evict 0000033616c7e540 00 0005 03 [IcR] 8a01603899540e5a +l2 evict 000026d8a5685e00 01 0027 01 [IcR(0009,00)] ead7b1b4f2b53fe5 +mem read 0000f49e24085940 -1 -001 -1 1 [McW] 6ac11497575254f4 +l2 read 0000f49e24085940 01 0026 01 0 [ScW(0009,00)] 6ac11497575254f4 +l1d-0 read 0000f49e24085940 00 0005 03 0 [ScR] 6ac11497575254f4 +l2 read 00007600dddbb740 01 0025 00 1 [McW(0000,05)] 03513838cc9cbb95 +l1d-1 write 00007600dddbb740 00 0013 00 0 [MdW] 2093b16d8f71ffab +l1i-0 read 0000a6f9f0803d80 00 0006 00 1 [ScR] 5719b2c00ecac89a +l1d-1 read 0000c66c607618c0 00 0003 02 1 [ScR] ecc19bfa60ae4cae +l2 write 000046663e4def00 00 0031 01 1 [MdW(0020,04)] 071b7c4e59caa981 +l1d-0 evict 000046663e4def00 00 0012 00 [IcR] 071b7c4e59caa981 +l1d-0 evict 00004c22aaaafa40 00 0009 01 [IcR] d145642759dd977d +l2 write 00004c22aaaafa40 00 0020 01 1 [MdW(0025,04)] d145642759dd977d +mem write 00004c22aaaafa40 -1 -001 -1 1 [MdW] d145642759dd977d +l2 evict 00004c22aaaafa40 00 0020 01 [IcR(0025,04)] d145642759dd977d +mem read 000018aa8af1d300 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 000018aa8af1d300 00 0021 02 0 [McW(0025,04)] 0000000000000000 +l1d-0 write 000018aa8af1d300 00 0012 00 0 [MdW] d179313396834bae +l1d-1 evict 0000172ca7421240 00 0009 02 [IcR] 322ca77b5b927467 +l2 read 00001ffbc4ff1a40 01 0029 01 1 [SdW(0000,07)] 071ee7ee944a90cf +l1d-1 read 00001ffbc4ff1a40 00 0009 02 0 [ScR] 071ee7ee944a90cf +mem write 0000a18bf258f2c0 -1 -001 -1 1 [MdW] 3e7401997ef17cd7 +l2 evict 0000a18bf258f2c0 01 0029 00 [IcR(0004,04)] 3e7401997ef17cd7 +mem read 00007eb184221700 -1 -001 -1 1 [McW] 0bfcdc2096e02d44 +l2 read 00007eb184221700 01 0001 03 0 [ScW(0004,04)] 0bfcdc2096e02d44 +l1i-1 read 00007eb184221700 00 0012 00 0 [ScR] 0bfcdc2096e02d44 +l2 write 0000c92c00098fc0 00 0011 04 1 [MdW(0006,06)] 762cef5d1c148672 +l1d-0 evict 0000c92c00098fc0 00 0015 00 [IcR] 762cef5d1c148672 +l2 read 000086890a9e27c0 01 0005 01 1 [SdW(0030,00)] aa5c31a7cf666d65 +l1d-0 read 000086890a9e27c0 00 0015 00 0 [ScR] aa5c31a7cf666d65 +l1d-0 read 000063036c943940 00 0005 02 1 [ScR] 299a3a36bffbc8d8 +l1i-1 read 0000205a116a7d40 00 0005 01 1 [ScR] 292dcc118246929c +l2 read 0000045cce7b2a40 00 0030 03 1 [ScW(0022,00)] 23260c93a8186343 +l1d-0 read 0000045cce7b2a40 00 0009 01 0 [ScR] 23260c93a8186343 +l1d-0 read 000019a40a160240 00 0009 02 1 [MdW] 65ada601d76e1dc5 +l2 write 0000d090b8181100 01 0017 01 1 [MdW(0013,00)] 17f932b77ce0dc6c +l1d-1 evict 0000d090b8181100 00 0004 03 [IcR] 17f932b77ce0dc6c +l2 read 0000cd7063d2b500 01 0022 02 1 [SdW(0000,01)] a76cc78d6a6d84d9 +l1d-1 read 0000cd7063d2b500 00 0004 03 0 [ScR] a76cc78d6a6d84d9 +l1d-1 evict 0000658c16003e00 00 0008 00 [IcR] b4d895ad74148b7c +l2 write 0000658c16003e00 01 0003 01 1 [MdW(0001,05)] b4d895ad74148b7c +mem write 0000658c16003e00 -1 -001 -1 1 [MdW] b4d895ad74148b7c +l2 evict 0000658c16003e00 01 0003 01 [IcR(0001,05)] b4d895ad74148b7c +mem read 0000acd63c8d1880 -1 -001 -1 1 [McW] 9cf972ea02adcd4f +l2 read 0000acd63c8d1880 00 0017 01 0 [ScW(0001,05)] 9cf972ea02adcd4f +l1d-0 read 0000acd63c8d1880 00 0002 00 0 [ScR] 9cf972ea02adcd4f +l1d-1 evict 000054a53f80d8c0 00 0003 01 [IcR] ae229dd18a728847 +mem write 000037bf6ed61cc0 -1 -001 -1 1 [MdW] 2e7d5828d25f0433 +l2 evict 000037bf6ed61cc0 00 0025 04 [IcR(0019,02)] 2e7d5828d25f0433 +mem read 0000bfec67f318c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000bfec67f318c0 01 0002 02 0 [McW(0019,02)] 0000000000000000 +l1d-1 write 0000bfec67f318c0 00 0003 01 0 [MdW] f4d1dfc49650be73 +l2 write 0000fe792df68e00 01 0005 02 1 [MdW(0027,01)] 0d9c734f444698bd +l1d-0 evict 0000fe792df68e00 00 0008 03 [IcR] 0d9c734f444698bd +l1d-0 evict 0000d053f6b48540 00 0005 00 [IcR] 5b6bc81301550266 +l2 write 0000d053f6b48540 00 0006 00 1 [MdW(0025,06)] 5b6bc81301550266 +mem write 0000d053f6b48540 -1 -001 -1 1 [MdW] 5b6bc81301550266 +l2 evict 0000d053f6b48540 00 0006 00 [IcR(0025,06)] 5b6bc81301550266 mem read 00002bcb521f5a00 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00002bcb521f5a00 01 0015 03 0 [McW(0014,02)] 0000000000000000 -l1d-1 write 00002bcb521f5a00 00 0008 01 0 [MdW] 52eb0cd4b20154b4 -l1d-0 read 0000c477f06039c0 00 0007 03 1 [ScR] 07a43d1b05d30814 -l2 write 000039a6b2ebcd00 00 0001 00 1 [MdW(0009,00)] eef3a60d9033465c -l1d-1 evict 000039a6b2ebcd00 00 0004 03 [IcR] eef3a60d9033465c -l2 read 00001fd6787ba100 00 0007 01 1 [SdW(0002,05)] df1b827b0bffd943 -l1d-1 read 00001fd6787ba100 00 0004 03 0 [ScR] df1b827b0bffd943 -l1d-0 read 000035b33dc0d400 00 0000 03 1 [ScR] b3fa26fb2bb1072d -l1d-0 read 00003c43977d6040 00 0001 03 1 [MdW] 4230a216503f3385 -l1d-1 write 0000d99af3531440 00 0001 00 1 [MdW] 04a8f0e2708cd718 -l1d-0 read 000000f97fae5cc0 00 0003 03 1 [MdW] adf40caecba14b7b -l1d-0 read 000073f8f4229a80 00 0010 03 1 [MdW] 31d6fa0a53f18b41 -l2 write 0000b17eb0082080 00 0016 01 1 [MdW(0006,03)] d9a4ae41c0817096 -l1d-1 evict 0000b17eb0082080 00 0002 01 [IcR] d9a4ae41c0817096 -mem read 00002a2ab265e880 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 00002a2ab265e880 00 0004 03 0 [McW(0008,06)] 0000000000000000 -l1d-1 write 00002a2ab265e880 00 0002 01 0 [MdW] b3863dc2a64fad71 -l1i-1 read 00006bf6751e90c0 00 0003 00 1 [ScR] 3c0c3449cec62aac -l1d-0 read 000052d61b6d5a00 00 0008 00 1 [MdW] 30b94c7c50299b8f -l1d-0 read 00009fde26f888c0 00 0003 02 1 [ScR] e1b5104d91b6911e -l1d-0 read 000000f97fae5cc0 00 0003 03 1 [MdW] adf40caecba14b7b -l1d-1 read 0000bb75517c9b80 00 0014 03 1 [MdW] e09e57bfd05f4979 -l1d-1 write 00003bd14ab212c0 00 0011 02 1 [MdW] 8d8266d149cbeb7c -l2 read 00000b438aedb2c0 00 0027 00 1 [MdW(0016,00)] f960a061cdcbd97f -l1d-1 write 00000b438aedb2c0 00 0011 03 0 [MdW] 85821dd1a70a78e0 -l2 write 0000a0082dda2840 01 0021 00 1 [MdW(0019,03)] e32363faf3579882 -l1d-1 evict 0000a0082dda2840 00 0001 01 [IcR] e32363faf3579882 -mem read 000034ffc92a8040 -1 -001 -1 1 [McW] 0000000000000000 -l2 read 000034ffc92a8040 01 0016 02 0 [McW(0016,03)] 0000000000000000 -l1d-1 write 000034ffc92a8040 00 0001 01 0 [MdW] f4bde5c2fcdd2d2b -l1d-1 evict 000095996286e640 00 0009 01 [IcR] f1b509cda89b9e6b -l2 read 0000c1546879c240 00 0000 01 1 [SdW(0003,07)] 000a8f23aa537d49 -l1d-1 read 0000c1546879c240 00 0009 01 0 [ScR] 000a8f23aa537d49 -l1d-0 read 0000ade5546e9640 00 0009 01 1 [ScR] 5209bc09f2897536 +l2 read 00002bcb521f5a00 00 0013 04 0 [McW(0025,06)] 0000000000000000 +l1d-0 write 00002bcb521f5a00 00 0008 03 0 [MdW] 7094541f413496ad +l1d-1 read 00007a0ccec77d00 00 0004 01 1 [ScR] e927be63c0980bfb +l1d-1 read 000036c3a1e16900 00 0004 02 1 [MdW] d87c000743707e28 +mem read 0000deaf8d449780 -1 -001 -1 1 [McW] 319bc7784dee1369 +l2 read 0000deaf8d449780 00 0020 01 0 [ScW(0011,07)] 319bc7784dee1369 +l1i-1 read 0000deaf8d449780 00 0014 00 0 [ScR] 319bc7784dee1369 +l1d-0 evict 000011abc3e7fe80 00 0010 01 [IcR] 056592a8950d3ae6 +l2 read 00007121fd387e80 00 0004 03 1 [SdW(0021,01)] 537270cd2e4bdbd7 +l1d-0 read 00007121fd387e80 00 0010 01 0 [ScR] 537270cd2e4bdbd7 +l2 read 0000960701732dc0 00 0000 04 1 [SdW(0024,03)] 8a34bfe58c264502 +l1d-1 read 0000960701732dc0 00 0007 00 0 [ScR] 8a34bfe58c264502 +l2 write 00004fce0ded4740 01 0026 03 1 [MdW(0002,06)] 1d90d800464f97ff +l1d-1 evict 00004fce0ded4740 00 0013 02 [IcR] 1d90d800464f97ff +l2 read 000099c62b358f40 01 0003 00 1 [SdW(0019,05)] a9ad326afb910f17 +l1d-1 read 000099c62b358f40 00 0013 02 0 [ScR] a9ad326afb910f17 +l1i-1 read 000056d4fe3257c0 00 0015 00 1 [ScR] 2d6d78e60e44fcb9 +l2 read 0000136b8cb094c0 01 0030 02 1 [MdW(0001,06)] 4d67241ff77b1773 +l1d-0 write 0000136b8cb094c0 00 0003 03 0 [MdW] 51c8b6b1e9a3e254 +l2 write 00009f84efecc040 01 0003 03 1 [MdW(0030,04)] dcc81d80c2d21d1a +l1d-1 evict 00009f84efecc040 00 0001 00 [IcR] dcc81d80c2d21d1a +l1d-0 evict 00001c9702375bc0 00 0015 01 [IcR] ee1e9990a9eb12f5 +l2 write 00001c9702375bc0 00 0021 00 1 [MdW(0012,05)] ee1e9990a9eb12f5 +mem write 00001c9702375bc0 -1 -001 -1 1 [MdW] ee1e9990a9eb12f5 +l2 evict 00001c9702375bc0 00 0021 00 [IcR(0012,05)] ee1e9990a9eb12f5 +mem read 0000f88b44bf5840 -1 -001 -1 1 [McW] 5835bf5c1572177d +l2 read 0000f88b44bf5840 01 0027 00 0 [McW(0012,05)] 5835bf5c1572177d +l1d-1 write 0000f88b44bf5840 00 0001 00 0 [MdW] a6fb001a7fc383ef +l1d-0 evict 0000872d66386580 00 0006 03 [IcR] ba188ccc5a21b9a6 +mem write 00001cff7cd11500 -1 -001 -1 1 [MdW] 503193b2f8b16620 +l2 evict 00001cff7cd11500 00 0012 01 [IcR(0023,06)] 503193b2f8b16620 +mem read 00001e12c123a180 -1 -001 -1 1 [McW] ff1d2beb43b9b33b +l2 read 00001e12c123a180 01 0018 01 0 [McW(0023,06)] ff1d2beb43b9b33b +l1d-0 write 00001e12c123a180 00 0006 03 0 [MdW] 66eca634c43fac18 +l1d-0 read 0000534534d814c0 00 0003 02 1 [ScR] 8026669fe9d83abe +l2 write 00006e7158c618c0 01 0006 01 1 [MdW(0021,00)] 7ad93bbf739cccfe +l1d-1 evict 00006e7158c618c0 00 0003 00 [IcR] 7ad93bbf739cccfe +l1d-1 evict 00004149ff11d440 00 0001 01 [IcR] dbc0b014e9a8cd6b +l2 evict 00004149ff11d440 00 0028 00 [IcR(0031,06)] dbc0b014e9a8cd6b +mem read 000011812db55cc0 -1 -001 -1 1 [McW] b1bf6b2b3542a0b8 +l2 read 000011812db55cc0 01 0011 01 0 [ScW(0031,06)] b1bf6b2b3542a0b8 +l1d-1 read 000011812db55cc0 00 0003 00 0 [ScR] b1bf6b2b3542a0b8 +l1d-1 read 00007e15eb118b00 00 0012 02 1 [ScR] 9419ebae6d75d1b9 +l2 read 0000605ba6057540 01 0008 02 1 [SdW(0026,02)] d7979871746e8971 +l1d-1 read 0000605ba6057540 00 0005 01 0 [ScR] d7979871746e8971 +mem write 00001ad58832f640 -1 -001 -1 1 [MdW] f9c176745781e0be +l2 evict 00001ad58832f640 01 0009 00 [IcR(0027,00)] f9c176745781e0be +mem read 0000418397142480 -1 -001 -1 1 [McW] 30dbb666b2eba234 +l2 read 0000418397142480 00 0003 03 0 [ScW(0027,00)] 30dbb666b2eba234 +l1d-0 read 0000418397142480 00 0002 03 0 [ScR] 30dbb666b2eba234 +l1d-1 read 000091e69e86bc00 00 0000 03 1 [ScR] 050aae8e0c3268a3 +l1d-1 read 0000ecb652ef69c0 00 0007 01 1 [MdW] f4e85398ae70e105 +l2 read 0000cd7063d2b500 01 0022 02 1 [MdW(0000,01)] a76cc78d6a6d84d9 +l1d-1 write 0000cd7063d2b500 00 0004 03 0 [MdW] b42278d62a78a37b +l1d-1 evict 000031e4a2646740 00 0013 03 [IcR] 613b6d57ad34e57a +l2 read 0000c194bc8acb40 00 0030 00 1 [MdW(0014,05)] 46dad6426e374e28 +l1d-1 write 0000c194bc8acb40 00 0013 03 0 [MdW] 6bd8c4107bbcf05b +l1d-0 evict 00007d0902e50f80 00 0014 01 [IcR] 7acc9b6fe084c114 +l2 read 000052a3218a7f80 00 0007 04 1 [SdW(0002,07)] c0ebe0eb15ae3e1e +l1d-0 read 000052a3218a7f80 00 0014 01 0 [ScR] c0ebe0eb15ae3e1e +l1d-0 evict 0000dda2631186c0 00 0011 01 [IcR] 2389031e21d4a9ca +l2 read 0000e337ff7072c0 01 0030 04 1 [MdW(0017,06)] f7c7a9fc6069131d +l1d-0 write 0000e337ff7072c0 00 0011 01 0 [MdW] 2e20939f2a65233c +l2 read 00007e3437831800 01 0013 03 1 [McW(0002,01)] 6b9d76bb27c3ffa3 +l1d-1 write 00007e3437831800 00 0000 02 0 [MdW] 59195dbad278501c +l1d-0 evict 000000f97fae5cc0 00 0003 00 [IcR] fb933a96c629912c +l2 read 00005dfc154ee8c0 00 0001 02 1 [SdW(0026,06)] 0d9f97e6c23b33f4 +l1d-0 read 00005dfc154ee8c0 00 0003 00 0 [ScR] 0d9f97e6c23b33f4 +l1d-1 read 00001fd6787ba100 00 0004 00 1 [ScR] cf847744761b8732 +l1d-1 read 000099fa8471ba40 00 0009 01 1 [ScR] 3a1b0222700896fc +l1d-0 write 0000c86d27a3d040 00 0001 02 1 [MdW] fd0514096bb081e8 +l1d-1 read 0000015d1559b380 00 0014 00 1 [MdW] 8efb4dc95b135369 +l1d-0 evict 000065dc0cb58f00 00 0012 03 [IcR] 8b4ecdd8b082fe75 +l2 read 000072dc5902ef00 01 0019 00 1 [SdW(0021,07)] 1c15e2bf4e607d4d +l1d-0 read 000072dc5902ef00 00 0012 03 0 [ScR] 1c15e2bf4e607d4d +l1d-0 evict 0000302899d8cac0 00 0011 02 [IcR] bdd24610b537bb57 +l2 read 00006a2ba09892c0 01 0018 03 1 [ScW(0026,03)] 05f0103b8fa109da +l1d-0 read 00006a2ba09892c0 00 0011 02 0 [ScR] 05f0103b8fa109da +l1d-1 evict 00006a5fbc380d80 00 0006 00 [IcR] 52eb0cd4b20154b4 +l2 read 000008ededd7fd80 01 0009 01 1 [SdW(0026,01)] f7107428c77d814b +l1d-1 read 000008ededd7fd80 00 0006 00 0 [ScR] f7107428c77d814b +l2 write 0000ed89583b9580 01 0017 04 1 [MdW(0020,06)] b47da2a39aa7d229 +l1d-1 evict 0000ed89583b9580 00 0006 01 [IcR] b47da2a39aa7d229 +l2 read 0000780ab040b980 01 0002 00 1 [SdW(0019,07)] 0968e82e4bb02b18 +l1d-1 read 0000780ab040b980 00 0006 01 0 [ScR] 0968e82e4bb02b18 +l2 write 00005c90ae19e9c0 00 0002 00 1 [MdW(0029,02)] f5c83104bc8c8b9b +l1d-1 evict 00005c90ae19e9c0 00 0007 02 [IcR] f5c83104bc8c8b9b +l2 evict 000076807a07f540 00 0024 01 [IcR(0024,05)] 5e9696a11ad02c72 +mem read 0000d5e6c0d429c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000d5e6c0d429c0 00 0021 00 0 [McW(0024,05)] 0000000000000000 +l1d-1 write 0000d5e6c0d429c0 00 0007 02 0 [MdW] 0543c7a6e2924bea +l1d-0 evict 0000908064eef6c0 00 0011 03 [IcR] 63b934d5bef74a33 +l2 read 000057ef223eb2c0 00 0009 00 1 [ScW(0006,07)] 861277f6eb5e5e61 +l1d-0 read 000057ef223eb2c0 00 0011 03 0 [ScR] 861277f6eb5e5e61 +l1d-1 evict 00007a0ccec77d00 00 0004 01 [IcR] e927be63c0980bfb +l2 read 000081b8cf5f7100 00 0005 04 1 [SdW(0022,05)] db57fe534787ac88 +l1d-1 read 000081b8cf5f7100 00 0004 01 0 [ScR] db57fe534787ac88 +l1d-0 read 0000afa7e0db12c0 00 0011 00 1 [ScR] fbf332b5f72ab798 +l1d-0 read 000052a3218a7f80 00 0014 01 1 [ScR] c0ebe0eb15ae3e1e +l2 write 00003d1e08e9d280 01 0014 03 1 [MdW(0001,07)] e1c389e66b566a31 +l1d-0 evict 00003d1e08e9d280 00 0010 02 [IcR] e1c389e66b566a31 +l2 read 000011abc3e7fe80 00 0023 00 1 [SdW(0018,05)] 056592a8950d3ae6 +l1d-0 read 000011abc3e7fe80 00 0010 02 0 [ScR] 056592a8950d3ae6 +l1d-0 read 000057ef223eb2c0 00 0011 03 1 [ScR] 861277f6eb5e5e61 +l2 write 000036c3a1e16900 01 0007 00 1 [MdW(0025,03)] d87c000743707e28 +l1d-1 evict 000036c3a1e16900 00 0004 02 [IcR] d87c000743707e28 +l2 read 00002e867eb6a900 01 0004 01 1 [SdW(0010,01)] e69494168320e39a +l1d-1 read 00002e867eb6a900 00 0004 02 0 [ScR] e69494168320e39a +l1d-1 write 0000d5e6c0d429c0 00 0007 02 1 [MdW] fd20fce170c2194d +l1d-0 read 0000fa408c35ba00 00 0008 00 1 [ScR] 7eec603efdcdea3b +l2 read 000052d61b6d5a00 00 0016 01 1 [MdW(0028,00)] e46273a551eedf5d +l1d-0 write 000052d61b6d5a00 00 0008 02 0 [MdW] fb4788159307589c +l1d-0 evict 00002bcb521f5a00 00 0008 03 [IcR] 7094541f413496ad +l2 write 00002bcb521f5a00 00 0013 04 1 [MdW(0025,06)] 7094541f413496ad +mem write 00002bcb521f5a00 -1 -001 -1 1 [MdW] 7094541f413496ad +l2 evict 00002bcb521f5a00 00 0013 04 [IcR(0025,06)] 7094541f413496ad +mem read 000056d4fe3257c0 -1 -001 -1 1 [McW] 2d6d78e60e44fcb9 +l2 read 000056d4fe3257c0 01 0024 01 0 [ScW(0025,06)] 2d6d78e60e44fcb9 +l1d-1 read 000056d4fe3257c0 00 0015 00 0 [ScR] 2d6d78e60e44fcb9 +l1d-1 evict 0000219accc59ec0 00 0011 02 [IcR] eb4acfe9e698c78e +l1d-0 evict 000066d344c0bd00 00 0004 01 [IcR] c13adece18482753 +l2 evict 000066d344c0bd00 00 0018 04 [IcR(0004,06)] c13adece18482753 +mem read 000048777e448ac0 -1 -001 -1 1 [McW] cabd092ab80dc469 +l2 read 000048777e448ac0 00 0017 02 0 [ScW(0004,06)] cabd092ab80dc469 +l1d-1 read 000048777e448ac0 00 0011 02 0 [ScR] cabd092ab80dc469 +l2 write 0000792d5ad259c0 00 0024 00 1 [MdW(0004,01)] 14faf8e2bb871649 +l1d-1 evict 0000792d5ad259c0 00 0007 03 [IcR] 14faf8e2bb871649 +l1d-1 evict 00006b8d57b16380 00 0014 02 [IcR] 819cfbd3392cc9d7 +mem write 00006b8d57b16380 -1 -001 -1 1 [MdW] 819cfbd3392cc9d7 +l2 evict 00006b8d57b16380 00 0023 02 [IcR(0021,02)] 819cfbd3392cc9d7 +mem read 0000afd2a9e735c0 -1 -001 -1 1 [McW] cd8ad056003b74ce +l2 read 0000afd2a9e735c0 00 0012 00 0 [ScW(0021,02)] cd8ad056003b74ce +l1d-1 read 0000afd2a9e735c0 00 0007 03 0 [ScR] cd8ad056003b74ce +l1d-0 evict 0000d99af3531440 00 0001 01 [IcR] 374b30926d13111e +l1d-1 evict 00007600dddbb740 00 0013 00 [IcR] 2093b16d8f71ffab +l2 write 00007600dddbb740 01 0025 00 1 [MdW(0000,05)] 2093b16d8f71ffab +mem write 00007600dddbb740 -1 -001 -1 1 [MdW] 2093b16d8f71ffab +l2 evict 00007600dddbb740 01 0025 00 [IcR(0000,05)] 2093b16d8f71ffab +mem read 0000232a73ed2040 -1 -001 -1 1 [McW] f06374fe1abab634 +l2 read 0000232a73ed2040 01 0021 03 0 [ScW(0000,05)] f06374fe1abab634 +l1d-0 read 0000232a73ed2040 00 0001 01 0 [ScR] f06374fe1abab634 +l1d-0 evict 0000e030a3d78740 00 0013 03 [IcR] 707af21411b2423c +l2 evict 0000e030a3d78740 01 0010 02 [IcR(0030,05)] 707af21411b2423c +mem read 00006894f1b25480 -1 -001 -1 1 [McW] 1e6ece905e742562 +l2 read 00006894f1b25480 00 0020 04 0 [ScW(0030,05)] 1e6ece905e742562 +l1i-1 read 00006894f1b25480 00 0002 01 0 [ScR] 1e6ece905e742562 +l1d-1 evict 0000cb907584dc80 00 0002 03 [IcR] 7d8a4e2a232b5292 +l2 read 0000517854abf080 01 0004 00 1 [SdW(0028,05)] e0a55470670fd6c5 +l1d-1 read 0000517854abf080 00 0002 03 0 [ScR] e0a55470670fd6c5 +l2 write 0000cd7063d2b500 01 0022 02 1 [MdW(0000,01)] b42278d62a78a37b +l1d-1 evict 0000cd7063d2b500 00 0004 03 [IcR] b42278d62a78a37b +l2 read 0000d090b8181100 01 0017 01 1 [SdW(0013,00)] 17f932b77ce0dc6c +l1d-1 read 0000d090b8181100 00 0004 03 0 [ScR] 17f932b77ce0dc6c +l1d-1 write 0000f59b70013a00 00 0008 02 1 [MdW] d9c8f6330349daa1 +mem write 000039a6b2ebcd00 -1 -001 -1 1 [MdW] 3d554e47c9a0c003 +l2 evict 000039a6b2ebcd00 00 0001 00 [IcR(0003,04)] 3d554e47c9a0c003 +mem read 0000ba16e8b8b540 -1 -001 -1 1 [McW] 3de612c8e734de20 +l2 read 0000ba16e8b8b540 01 0011 02 0 [ScW(0003,04)] 3de612c8e734de20 +l1d-0 read 0000ba16e8b8b540 00 0005 00 0 [ScR] 3de612c8e734de20 +l1d-0 evict 0000c662cc646980 00 0006 00 [IcR] 6794a45adab0c5a6 +l2 read 0000c97dfb94fd80 01 0020 02 1 [SdW(0028,04)] a7b91faf6cbb0b11 +l1d-0 read 0000c97dfb94fd80 00 0006 00 0 [ScR] a7b91faf6cbb0b11 +l1i-1 evict 00006980d04a3400 00 0000 00 [IcR] 865c0d538f5633c2 +l2 write 000044ca9c649400 00 0030 01 1 [MdW(0031,05)] be04b443fdf25e1f +l1d-1 evict 000044ca9c649400 00 0000 01 [IcR] be04b443fdf25e1f +l1d-1 evict 0000bfec67f318c0 00 0003 01 [IcR] f4d1dfc49650be73 +l2 write 0000bfec67f318c0 01 0002 02 1 [MdW(0019,02)] f4d1dfc49650be73 +mem write 0000bfec67f318c0 -1 -001 -1 1 [MdW] f4d1dfc49650be73 +l2 evict 0000bfec67f318c0 01 0002 02 [IcR(0019,02)] f4d1dfc49650be73 +mem read 00006980d04a3400 -1 -001 -1 1 [McW] 865c0d538f5633c2 +l2 read 00006980d04a3400 00 0009 02 0 [McW(0019,02)] 865c0d538f5633c2 +l1d-1 write 00006980d04a3400 00 0000 01 0 [MdW] 811d893ff8305c40 +l2 write 00002b4766af8580 00 0026 00 1 [MdW(0024,06)] e2d7bd4ad76f6849 +l1d-0 evict 00002b4766af8580 00 0006 02 [IcR] e2d7bd4ad76f6849 +l1d-1 evict 0000522d13b5a340 00 0013 01 [IcR] 869ff1490741a150 +mem write 0000522d13b5a340 -1 -001 -1 1 [MdW] 869ff1490741a150 +l2 evict 0000522d13b5a340 01 0007 03 [IcR(0016,06)] 869ff1490741a150 +mem read 0000a6f9f0803d80 -1 -001 -1 1 [McW] 5719b2c00ecac89a +l2 read 0000a6f9f0803d80 01 0019 04 0 [ScW(0016,06)] 5719b2c00ecac89a +l1d-0 read 0000a6f9f0803d80 00 0006 02 0 [ScR] 5719b2c00ecac89a +l1d-1 evict 0000960701732dc0 00 0007 00 [IcR] 8a34bfe58c264502 +l2 read 00005c90ae19e9c0 00 0002 00 1 [SdW(0029,02)] f5c83104bc8c8b9b +l1d-1 read 00005c90ae19e9c0 00 0007 00 0 [ScR] f5c83104bc8c8b9b +l2 write 000034ffc92a8040 01 0016 02 1 [MdW(0023,02)] c676adece09e8775 +l1d-0 evict 000034ffc92a8040 00 0001 00 [IcR] c676adece09e8775 +l2 evict 0000dcedffd5d840 00 0018 03 [IcR(0009,06)] df69ebf16388cff7 +mem read 00002cbcc4bef440 -1 -001 -1 1 [McW] 228b8470625fd619 +l2 read 00002cbcc4bef440 00 0001 00 0 [ScW(0009,06)] 228b8470625fd619 +l1d-0 read 00002cbcc4bef440 00 0001 00 0 [ScR] 228b8470625fd619 +l2 read 00002cbcc4bef440 00 0001 00 1 [McW(0009,06)] 228b8470625fd619 +l1d-0 write 00002cbcc4bef440 00 0001 00 0 [MdW] bdb198bed3f166c8 +l1d-1 read 00001fd6787ba100 00 0004 00 1 [ScR] cf847744761b8732 +l1d-0 evict 0000ffac00a71b80 00 0014 00 [IcR] 528f7b986ffeb18f +mem write 0000872d66386580 -1 -001 -1 1 [MdW] ba188ccc5a21b9a6 +l2 evict 0000872d66386580 01 0015 04 [IcR(0027,07)] ba188ccc5a21b9a6 +mem read 00006cf58254d780 -1 -001 -1 1 [McW] e82037124cab05c4 +l2 read 00006cf58254d780 01 0007 02 0 [ScW(0027,07)] e82037124cab05c4 +l1d-0 read 00006cf58254d780 00 0014 00 0 [ScR] e82037124cab05c4 +l1d-1 read 0000df0f11cce0c0 00 0003 03 1 [MdW] ff7e2eb98c7cd5c6 +l2 write 0000e21b98b426c0 00 0013 00 1 [MdW(0014,04)] ea6c382ab9aa6351 +l1d-1 evict 0000e21b98b426c0 00 0011 00 [IcR] ea6c382ab9aa6351 +l2 read 0000219accc59ec0 01 0014 01 1 [MdW(0005,06)] eb4acfe9e698c78e +l1d-1 write 0000219accc59ec0 00 0011 00 0 [MdW] dc9b0747d86959f3 +l1d-1 evict 00005de844e94fc0 00 0015 01 [IcR] 81b80adc76842711 +l1d-0 evict 000052a3218a7f80 00 0014 01 [IcR] c0ebe0eb15ae3e1e +mem write 000052a3218a7f80 -1 -001 -1 1 [MdW] c0ebe0eb15ae3e1e +l2 evict 000052a3218a7f80 00 0007 04 [IcR(0002,07)] c0ebe0eb15ae3e1e +mem read 00009eb1e8f78fc0 -1 -001 -1 1 [McW] 27a74387363b6d92 +l2 read 00009eb1e8f78fc0 00 0012 01 0 [McW(0002,07)] 27a74387363b6d92 +l1d-1 write 00009eb1e8f78fc0 00 0015 01 0 [MdW] 105c2e3ee003bd65 +mem write 0000ce94cd3328c0 -1 -001 -1 1 [MdW] 283de845d98028c2 +l2 evict 0000ce94cd3328c0 00 0008 04 [IcR(0018,07)] 283de845d98028c2 +mem read 0000b3031ae484c0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000b3031ae484c0 01 0007 03 0 [McW(0018,07)] 0000000000000000 +l1d-1 write 0000b3031ae484c0 00 0003 01 0 [MdW] 0c4ecbd8ebb1420f +l2 write 0000ecb652ef69c0 01 0012 02 1 [MdW(0029,07)] f4e85398ae70e105 +l1d-1 evict 0000ecb652ef69c0 00 0007 01 [IcR] f4e85398ae70e105 +mem write 0000bb75517c9b80 -1 -001 -1 1 [MdW] 004c1351d2605e26 +l2 evict 0000bb75517c9b80 00 0011 02 [IcR(0027,05)] 004c1351d2605e26 +mem read 000002d094c53dc0 -1 -001 -1 1 [McW] a0f76de140ef6fc6 +l2 read 000002d094c53dc0 00 0006 00 0 [ScW(0027,05)] a0f76de140ef6fc6 +l1d-1 read 000002d094c53dc0 00 0007 01 0 [ScR] a0f76de140ef6fc6 +l2 write 0000fbeaadb97c00 01 0021 01 1 [MdW(0027,06)] 5ebbe72d1d33f240 +l1d-1 evict 0000fbeaadb97c00 00 0000 00 [IcR] 5ebbe72d1d33f240 +mem write 00004bf31c06ad00 -1 -001 -1 1 [MdW] 7bfaca6fac0ffca4 +l2 evict 00004bf31c06ad00 00 0009 03 [IcR(0012,01)] 7bfaca6fac0ffca4 +mem read 0000df16e7f1d400 -1 -001 -1 1 [McW] 98f5fd7bc49c7ee9 +l2 read 0000df16e7f1d400 00 0028 00 0 [ScW(0012,01)] 98f5fd7bc49c7ee9 +l1d-1 read 0000df16e7f1d400 00 0000 00 0 [ScR] 98f5fd7bc49c7ee9 +l1d-0 read 000057ef223eb2c0 00 0011 03 1 [ScR] 861277f6eb5e5e61 +l1d-0 read 000019a40a160240 00 0009 02 1 [MdW] 65ada601d76e1dc5 +l2 write 0000bda9a4bfc180 01 0029 04 1 [MdW(0007,05)] 00ab3a9a530ce0e6 +l1d-1 evict 0000bda9a4bfc180 00 0006 02 [IcR] 00ab3a9a530ce0e6 +l2 read 0000fe2140a6f980 00 0004 02 1 [ScW(0009,01)] 4e2ed36498da5bfc +l1d-1 read 0000fe2140a6f980 00 0006 02 0 [ScR] 4e2ed36498da5bfc +l1d-0 read 00006cf58254d780 00 0014 00 1 [ScR] e82037124cab05c4 +l1d-1 read 000099fa8471ba40 00 0009 01 1 [ScR] 3a1b0222700896fc +mem write 0000363bec70c600 -1 -001 -1 1 [MdW] faae7fc4f024ef29 +l2 evict 0000363bec70c600 00 0010 02 [IcR(0020,02)] faae7fc4f024ef29 +mem read 0000d57075091b80 -1 -001 -1 1 [McW] 3dc17f34a5250850 +l2 read 0000d57075091b80 00 0006 01 0 [ScW(0020,02)] 3dc17f34a5250850 +l1d-1 read 0000d57075091b80 00 0014 02 0 [ScR] 3dc17f34a5250850 +l1d-0 read 00004813c834cdc0 00 0007 01 1 [ScR] 3992e1e5aacf6574 +l1d-0 read 00006cf58254d780 00 0014 00 1 [ScR] e82037124cab05c4 +l1d-1 write 00007e3437831800 00 0000 02 1 [MdW] af1f8f40af24a4a3 +l2 read 00001fd6787ba100 00 0007 00 1 [McW(0010,03)] cf847744761b8732 +l1d-1 write 00001fd6787ba100 00 0004 00 0 [MdW] 1be254d25349cea0 +l1d-0 evict 0000ba89bc350380 00 0014 02 [IcR] f769e7273e7932c3 +l2 evict 0000ba89bc350380 01 0017 02 [IcR(0011,06)] f769e7273e7932c3 +mem read 00001cff7cd11500 -1 -001 -1 1 [McW] 503193b2f8b16620 +l2 read 00001cff7cd11500 00 0012 02 0 [McW(0011,06)] 503193b2f8b16620 +l1d-0 write 00001cff7cd11500 00 0004 01 0 [MdW] 71e667c179d531a0 +l2 read 0000fe2140a6f980 00 0004 02 1 [McW(0009,01)] 4e2ed36498da5bfc +l1d-1 write 0000fe2140a6f980 00 0006 02 0 [MdW] 1c42410700040cf1 +l1d-1 evict 00008a9bb333e780 00 0014 01 [IcR] 1a1288c6d6f9e35f +mem write 0000ae053b607e40 -1 -001 -1 1 [MdW] de15584b39a145e3 +l2 evict 0000ae053b607e40 00 0011 01 [IcR(0028,02)] de15584b39a145e3 +mem read 000028a2a5cc7780 -1 -001 -1 1 [McW] c2b3bde410eeed99 +l2 read 000028a2a5cc7780 01 0028 00 0 [ScW(0028,02)] c2b3bde410eeed99 +l1d-1 read 000028a2a5cc7780 00 0014 01 0 [ScR] c2b3bde410eeed99 +l1d-1 evict 000091e69e86bc00 00 0000 03 [IcR] 050aae8e0c3268a3 +l1d-1 evict 0000d57075091b80 00 0014 02 [IcR] 3dc17f34a5250850 +l2 evict 0000d57075091b80 00 0006 01 [IcR(0020,02)] 3dc17f34a5250850 +mem read 000057c442889400 -1 -001 -1 1 [McW] 1e3b18e07eb9b12c +l2 read 000057c442889400 00 0025 00 0 [ScW(0020,02)] 1e3b18e07eb9b12c +l1d-1 read 000057c442889400 00 0000 03 0 [ScR] 1e3b18e07eb9b12c +l2 write 0000d9ef6a6a2840 01 0016 03 1 [MdW(0003,07)] b273ed15a15f0aa2 +l1d-0 evict 0000d9ef6a6a2840 00 0001 03 [IcR] b273ed15a15f0aa2 +l2 read 00002c5f0c6b7c40 00 0021 01 1 [SdW(0009,04)] aad8417bcd3cefeb +l1d-0 read 00002c5f0c6b7c40 00 0001 03 0 [ScR] aad8417bcd3cefeb +l1d-1 evict 0000c66c607618c0 00 0003 02 [IcR] ecc19bfa60ae4cae +l2 read 000054a53f80d8c0 00 0001 01 1 [SdW(0011,02)] ae229dd18a728847 +l1d-1 read 000054a53f80d8c0 00 0003 02 0 [ScR] ae229dd18a728847 +l2 read 0000942a1345ef40 01 0026 00 1 [MdW(0011,01)] b82b61ab6fc7eaf4 +l1d-0 write 0000942a1345ef40 00 0013 00 0 [MdW] 6f1b05c347367c19 +l1d-1 evict 000081b8cf5f7100 00 0004 01 [IcR] db57fe534787ac88 +l2 read 00009aaf14205900 00 0020 03 1 [ScW(0002,02)] 6e85f64de7e125d5 +l1d-1 read 00009aaf14205900 00 0004 01 0 [ScR] 6e85f64de7e125d5 +l2 write 000040dd3c20b700 01 0024 00 1 [MdW(0006,05)] 770860fce69ac2d5 +l1d-0 evict 000040dd3c20b700 00 0012 02 [IcR] 770860fce69ac2d5 +l2 read 000065dc0cb58f00 00 0010 03 1 [ScW(0000,02)] 8b4ecdd8b082fe75 +l1d-0 read 000065dc0cb58f00 00 0012 02 0 [ScR] 8b4ecdd8b082fe75 +l1d-1 read 000099c62b358f40 00 0013 02 1 [ScR] a9ad326afb910f17 +mem write 0000c3067a593240 -1 -001 -1 1 [MdW] 1e28da4f5b6329f5 +l2 evict 0000c3067a593240 01 0001 00 [IcR(0008,07)] 1e28da4f5b6329f5 +mem read 0000c1e40165d200 -1 -001 -1 1 [McW] a09b433b028212d0 +l2 read 0000c1e40165d200 00 0030 02 0 [ScW(0008,07)] a09b433b028212d0 +l1d-1 read 0000c1e40165d200 00 0008 00 0 [ScR] a09b433b028212d0 +l1d-1 read 000054a53f80d8c0 00 0003 02 1 [ScR] ae229dd18a728847 +l1d-0 read 0000136b8cb094c0 00 0003 03 1 [MdW] 51c8b6b1e9a3e254 +l1d-0 evict 000035b33dc0d400 00 0000 00 [IcR] ed279f1bda89013f +l2 write 000035b33dc0d400 00 0003 02 1 [MdW(0023,03)] ed279f1bda89013f +mem write 000035b33dc0d400 -1 -001 -1 1 [MdW] ed279f1bda89013f +l2 evict 000035b33dc0d400 00 0003 02 [IcR(0023,03)] ed279f1bda89013f +mem read 00006b8d57b16380 -1 -001 -1 1 [McW] 819cfbd3392cc9d7 +l2 read 00006b8d57b16380 01 0006 04 0 [ScW(0023,03)] 819cfbd3392cc9d7 +l1d-1 read 00006b8d57b16380 00 0014 02 0 [ScR] 819cfbd3392cc9d7 +l1d-0 read 0000045cce7b2a40 00 0009 01 1 [ScR] 23260c93a8186343 +l1d-0 read 00004813c834cdc0 00 0007 01 1 [ScR] 3992e1e5aacf6574 +l2 write 0000ade5546e9640 00 0019 01 1 [MdW(0012,02)] 27d9daff0a364d2c +l1d-0 evict 0000ade5546e9640 00 0009 00 [IcR] 27d9daff0a364d2c +l2 read 0000d3afe5d1ca40 00 0005 01 1 [McW(0030,02)] e87fc143f4844ad9 +l1d-0 write 0000d3afe5d1ca40 00 0009 00 0 [MdW] a3d8e10393750a6f +l1d-0 evict 0000e0ad5d373580 00 0006 01 [IcR] 06512cc805fd57c0 +l2 read 00002b4766af8580 00 0026 00 1 [SdW(0024,06)] e2d7bd4ad76f6849 +l1d-0 read 00002b4766af8580 00 0006 01 0 [ScR] e2d7bd4ad76f6849 +l2 evict 00002c1e14cbed40 01 0021 02 +l2 evict 0000a941be991f00 00 0004 04 +l2 read 00002c1e14cbed40 00 0004 04 0 +mem write 000036c3a1e16900 -1 -001 -1 1 [MdW] d87c000743707e28 +l2 evict 000036c3a1e16900 01 0007 02 [IcR(0025,03)] d87c000743707e28 +l2 read 0000a941be991f00 01 0007 00 0 +l1d-0 evict 000030295cbb89c0 00 0007 02 [IcR] 0053d6a34dc70a2d +l2 write 000030295cbb89c0 01 0015 01 1 [MdW(0023,07)] 0053d6a34dc70a2d +mem write 000030295cbb89c0 -1 -001 -1 1 [MdW] 0053d6a34dc70a2d +l2 evict 000030295cbb89c0 01 0015 01 [IcR(0023,07)] 0053d6a34dc70a2d +mem read 0000d314b6aa3a80 -1 -001 -1 1 [McW] 570f941a341d0e3b +l2 read 0000d314b6aa3a80 01 0021 02 0 [ScW(0023,07)] 570f941a341d0e3b +l1d-1 read 0000d314b6aa3a80 00 0010 01 0 [ScR] 570f941a341d0e3b +l2 read 00004f46a7d2ea80 01 0006 02 1 [McW(0010,02)] 1d6b75778fa46c62 +l1d-1 write 00004f46a7d2ea80 00 0010 03 0 [MdW] af4eaf6ff33c7906 +l1d-1 evict 000011812db55cc0 00 0003 00 [IcR] b1bf6b2b3542a0b8 +l2 read 0000c72e4af4f8c0 01 0000 01 1 [SdW(0027,02)] 58c90aad3241e995 +l1d-1 read 0000c72e4af4f8c0 00 0003 00 0 [ScR] 58c90aad3241e995 +l1d-1 write 0000219accc59ec0 00 0011 00 1 [MdW] 567ceb506f0fc0c8 +l1d-0 read 0000acd63c8d1880 00 0002 00 1 [ScR] 9cf972ea02adcd4f +l1d-0 read 00006cf58254d780 00 0014 00 1 [ScR] e82037124cab05c4 +l1d-0 evict 00009a461a9864c0 00 0003 01 [IcR] 324da2ce5b0bed4d +l2 read 000000f97fae5cc0 00 0003 00 1 [ScW(0014,06)] fb933a96c629912c +l1d-0 read 000000f97fae5cc0 00 0003 01 0 [ScR] fb933a96c629912c +l1d-0 read 0000418397142480 00 0002 03 1 [ScR] 30dbb666b2eba234 +l1d-1 read 0000517854abf080 00 0002 03 1 [ScR] e0a55470670fd6c5 +l1d-0 read 0000534534d814c0 00 0003 02 1 [ScR] 8026669fe9d83abe +l1d-0 evict 00001cff7cd11500 00 0004 01 [IcR] 71e667c179d531a0 +l2 write 00001cff7cd11500 00 0012 02 1 [MdW(0011,06)] 71e667c179d531a0 +mem write 00001cff7cd11500 -1 -001 -1 1 [MdW] 71e667c179d531a0 +l2 evict 00001cff7cd11500 00 0012 02 [IcR(0011,06)] 71e667c179d531a0 +mem read 000026d8a5685e00 -1 -001 -1 1 [McW] ead7b1b4f2b53fe5 +l2 read 000026d8a5685e00 01 0027 01 0 [ScW(0011,06)] ead7b1b4f2b53fe5 +l1d-0 read 000026d8a5685e00 00 0008 03 0 [ScR] ead7b1b4f2b53fe5 +l1d-1 evict 000075fd554aed80 00 0006 03 [IcR] 96f8c40189bf5862 +l2 read 0000ed89583b9580 01 0017 04 1 [SdW(0020,06)] b47da2a39aa7d229 +l1d-1 read 0000ed89583b9580 00 0006 03 0 [ScR] b47da2a39aa7d229 +l1d-1 read 00007e3437831800 00 0000 02 1 [MdW] af1f8f40af24a4a3 +l2 read 000063036c943940 01 0022 01 1 [McW(0031,04)] 299a3a36bffbc8d8 +l1d-0 write 000063036c943940 00 0005 02 0 [MdW] d8e3d2857ff6ed21 +l1d-1 read 0000c0773417d200 00 0008 03 1 [MdW] dadfef868029f7c9 +l2 write 0000c86d27a3d040 00 0002 02 1 [MdW(0000,06)] fd0514096bb081e8 +l1d-0 evict 0000c86d27a3d040 00 0001 02 [IcR] fd0514096bb081e8 +l2 read 000018c9dccfc840 00 0011 00 1 [SdW(0005,07)] 995adc99eb8dd0e4 +l1d-0 read 000018c9dccfc840 00 0001 02 0 [ScR] 995adc99eb8dd0e4 +l1d-0 write 0000136b8cb094c0 00 0003 03 1 [MdW] 428487fe872d8278 +l1d-0 evict 0000232a73ed2040 00 0001 01 [IcR] f06374fe1abab634 +l2 read 0000c86d27a3d040 00 0002 02 1 [SdW(0000,06)] fd0514096bb081e8 +l1d-0 read 0000c86d27a3d040 00 0001 01 0 [ScR] fd0514096bb081e8 +l2 write 000029aaf453f380 00 0009 04 1 [MdW(0011,00)] 0b79dd26e62e1c76 +l1d-1 evict 000029aaf453f380 00 0014 03 [IcR] 0b79dd26e62e1c76 +mem write 0000106db33edf80 -1 -001 -1 1 [MdW] eeee3bfe9cc85d16 +l2 evict 0000106db33edf80 00 0006 03 [IcR(0019,00)] eeee3bfe9cc85d16 +mem read 000084af1bf9eb80 -1 -001 -1 1 [McW] 2898ddc5bb04ad23 +l2 read 000084af1bf9eb80 01 0012 01 0 [ScW(0019,00)] 2898ddc5bb04ad23 +l1d-1 read 000084af1bf9eb80 00 0014 03 0 [ScR] 2898ddc5bb04ad23 +l2 write 000017ee24927240 01 0000 00 1 [MdW(0030,03)] 3742f681125a0e6b +l1d-1 evict 000017ee24927240 00 0009 03 [IcR] 3742f681125a0e6b +mem write 0000f27b5523ddc0 -1 -001 -1 1 [MdW] b8bf2af308099005 +l2 evict 0000f27b5523ddc0 00 0026 03 [IcR(0010,00)] b8bf2af308099005 +mem read 0000c97be4cb1a40 -1 -001 -1 1 [McW] 2b268cabf1896c5b +l2 read 0000c97be4cb1a40 00 0024 01 0 [McW(0010,00)] 2b268cabf1896c5b +l1d-1 write 0000c97be4cb1a40 00 0009 03 0 [MdW] d4c66bcb20028e7e +l1d-1 read 0000f59b70013a00 00 0008 02 1 [MdW] d9c8f6330349daa1 +l2 write 00002cbcc4bef440 00 0001 00 1 [MdW(0009,06)] bdb198bed3f166c8 +l1d-0 evict 00002cbcc4bef440 00 0001 00 [IcR] bdb198bed3f166c8 +l2 read 0000232a73ed2040 01 0021 03 1 [ScW(0000,05)] f06374fe1abab634 +l1d-0 read 0000232a73ed2040 00 0001 00 0 [ScR] f06374fe1abab634 +l1d-0 read 0000942a1345ef40 00 0013 00 1 [MdW] 6f1b05c347367c19 +l1d-1 evict 0000b9927026ea40 00 0009 00 [IcR] 80e6654ad9b9c34e +l2 read 00007bc6648c6240 00 0018 02 1 [MdW(0021,03)] 0260134f571dd636 +l1d-1 write 00007bc6648c6240 00 0009 00 0 [MdW] db5bb60a179aaa05 +l1d-1 read 0000c0773417d200 00 0008 03 1 [MdW] dadfef868029f7c9 +l2 read 000057ef223eb2c0 00 0009 00 1 [McW(0006,07)] 861277f6eb5e5e61 +l1d-0 write 000057ef223eb2c0 00 0011 03 0 [MdW] 2e07e2efa680e334 +l1d-0 evict 00002c5f0c6b7c40 00 0001 03 [IcR] aad8417bcd3cefeb +l2 read 00002cbcc4bef440 00 0001 00 1 [SdW(0009,06)] bdb198bed3f166c8 +l1d-0 read 00002cbcc4bef440 00 0001 03 0 [ScR] bdb198bed3f166c8 +l1d-0 read 0000750cdfd9ed40 00 0005 01 1 [MdW] 14116ffad10ecda8 +l1i-1 read 0000b7fc8ec73280 00 0010 01 1 [ScR] 82cac3e599046a61 +l1d-0 evict 0000d6eae7df0a40 00 0009 03 [IcR] c8a334c853d1650e +l2 evict 0000d6eae7df0a40 00 0020 00 +l2 read 0000d6eae7df0a40 01 0025 00 0 +l1d-1 evict 0000b3031ae484c0 00 0003 01 [IcR] 0c4ecbd8ebb1420f +l2 write 0000b3031ae484c0 01 0007 03 1 [MdW(0018,07)] 0c4ecbd8ebb1420f +mem write 0000b3031ae484c0 -1 -001 -1 1 [MdW] 0c4ecbd8ebb1420f +l2 evict 0000b3031ae484c0 01 0007 03 [IcR(0018,07)] 0c4ecbd8ebb1420f +mem read 00004c22aaaafa40 -1 -001 -1 1 [McW] d145642759dd977d +l2 read 00004c22aaaafa40 00 0020 00 0 [ScW(0018,07)] d145642759dd977d +l1d-0 read 00004c22aaaafa40 00 0009 03 0 [ScR] d145642759dd977d +l1i-1 evict 000056d4fe3257c0 00 0015 00 [IcR] 2d6d78e60e44fcb9 +l2 read 000056d4fe3257c0 01 0024 01 1 [McW(0025,06)] 2d6d78e60e44fcb9 +l1d-1 write 000056d4fe3257c0 00 0015 00 0 [MdW] 318753e7db7775a7 +l2 write 00001e12c123a180 01 0018 01 1 [MdW(0023,06)] 66eca634c43fac18 +l1d-0 evict 00001e12c123a180 00 0006 03 [IcR] 66eca634c43fac18 +l2 read 00000701e403e980 00 0013 01 1 [ScW(0008,03)] a2b07763fc09116e +l1d-0 read 00000701e403e980 00 0006 03 0 [ScR] a2b07763fc09116e +l1d-0 read 0000045cce7b2a40 00 0009 01 1 [ScR] 23260c93a8186343 +l1d-0 evict 0000c97dfb94fd80 00 0006 00 [IcR] a7b91faf6cbb0b11 +l2 read 00009a603343d580 00 0031 03 1 [SdW(0016,03)] f04e58215f831309 +l1d-0 read 00009a603343d580 00 0006 00 0 [ScR] f04e58215f831309 +l1d-0 write 000019a40a160240 00 0009 02 1 [MdW] 05b2218d9353b389 +l1d-1 evict 00001ffbc4ff1a40 00 0009 02 [IcR] 071ee7ee944a90cf +l2 read 000017ee24927240 01 0000 00 1 [MdW(0030,03)] 3742f681125a0e6b +l1d-1 write 000017ee24927240 00 0009 02 0 [MdW] f976d5b4b50eb9e0 +l2 read 0000b78d2a790900 01 0011 03 1 [ScW(0025,01)] aedb2159a3c4680e +l1d-0 read 0000b78d2a790900 00 0004 01 0 [ScR] aedb2159a3c4680e +l2 evict 0000908064eef6c0 00 0003 01 [IcR(0027,03)] 63b934d5bef74a33 +mem read 000089351da6e1c0 -1 -001 -1 1 [McW] 3ca049e9cff6d872 +l2 read 000089351da6e1c0 01 0027 02 0 [ScW(0027,03)] 3ca049e9cff6d872 +l1i-1 read 000089351da6e1c0 00 0007 00 0 [ScR] 3ca049e9cff6d872 +l2 read 00009f84efecc040 01 0003 03 1 [SdW(0030,04)] dcc81d80c2d21d1a +l1d-1 read 00009f84efecc040 00 0001 01 0 [ScR] dcc81d80c2d21d1a +l1d-1 read 00009eb1e8f78fc0 00 0015 01 1 [MdW] 105c2e3ee003bd65 +l2 write 0000649cf2ea9280 00 0022 04 1 [MdW(0008,04)] a7fe86bc21b49d3f +l1d-0 evict 0000649cf2ea9280 00 0010 00 [IcR] a7fe86bc21b49d3f +l2 read 00003d1e08e9d280 01 0014 03 1 [SdW(0001,07)] e1c389e66b566a31 +l1d-0 read 00003d1e08e9d280 00 0010 00 0 [ScR] e1c389e66b566a31 +l1d-0 read 00005dfc154ee8c0 00 0003 00 1 [ScR] 0d9f97e6c23b33f4 +l1d-1 write 0000df0f11cce0c0 00 0003 03 1 [MdW] 921f096b868215ad +l2 write 00005d7bb4b3fa00 00 0031 04 1 [MdW(0003,00)] 324186e887027c07 +l1d-0 evict 00005d7bb4b3fa00 00 0008 01 [IcR] 324186e887027c07 +mem write 00001e12c123a180 -1 -001 -1 1 [MdW] 66eca634c43fac18 +l2 evict 00001e12c123a180 01 0018 01 [IcR(0023,06)] 66eca634c43fac18 +mem read 0000c7e07b801e00 -1 -001 -1 1 [McW] edaed707c9f0d11e +l2 read 0000c7e07b801e00 01 0001 00 0 [ScW(0023,06)] edaed707c9f0d11e +l1d-0 read 0000c7e07b801e00 00 0008 01 0 [ScR] edaed707c9f0d11e +l1d-1 read 00004db5ccc11940 00 0005 03 1 [MdW] d8cb56c8aa6a5812 +l2 write 0000015d1559b380 00 0025 03 1 [MdW(0012,03)] 8efb4dc95b135369 +l1d-1 evict 0000015d1559b380 00 0014 00 [IcR] 8efb4dc95b135369 +mem write 000049889647d200 -1 -001 -1 1 [MdW] 276cdd009ba0b24d +l2 evict 000049889647d200 00 0022 00 [IcR(0015,05)] 276cdd009ba0b24d +mem read 0000106db33edf80 -1 -001 -1 1 [McW] eeee3bfe9cc85d16 +l2 read 0000106db33edf80 00 0006 01 0 [McW(0015,05)] eeee3bfe9cc85d16 +l1d-1 write 0000106db33edf80 00 0014 00 0 [MdW] 33396127058615fc +l2 read 0000c86d27a3d040 00 0002 02 1 [MdW(0000,06)] fd0514096bb081e8 +l1d-0 write 0000c86d27a3d040 00 0001 01 0 [MdW] 796aa0a9427c2e02 +l2 read 0000c7e07b801e00 01 0001 00 1 [McW(0023,06)] edaed707c9f0d11e +l1d-0 write 0000c7e07b801e00 00 0008 01 0 [MdW] f5b0b925ea9fb0ef +l1d-1 evict 00002e867eb6a900 00 0004 02 [IcR] e69494168320e39a +l2 evict 0000deaf8d449780 00 0020 01 +l2 read 0000deaf8d449780 01 0012 04 0 +l2 evict 00007d0902e50f80 00 0023 01 [IcR(0008,01)] 7acc9b6fe084c114 +mem read 0000d8ad57bdad00 -1 -001 -1 1 [McW] d54d77b5577490c8 +l2 read 0000d8ad57bdad00 00 0020 01 0 [ScW(0008,01)] d54d77b5577490c8 +l1d-1 read 0000d8ad57bdad00 00 0004 02 0 [ScR] d54d77b5577490c8 +l1d-1 read 00007e3437831800 00 0000 02 1 [MdW] af1f8f40af24a4a3 +l1d-0 read 000042cda8d19c00 00 0000 01 1 [MdW] 101b1b2079f8e967 +l1d-1 evict 000028a2a5cc7780 00 0014 01 [IcR] c2b3bde410eeed99 +l2 evict 0000b9927026ea40 00 0000 01 +l2 evict 00004e67a6d81700 01 0023 01 +l2 read 0000b9927026ea40 01 0023 01 0 +l2 read 00004e67a6d81700 00 0025 04 0 +l1d-0 evict 00002cbcc4bef440 00 0001 03 [IcR] bdb198bed3f166c8 +mem write 00002cbcc4bef440 -1 -001 -1 1 [MdW] bdb198bed3f166c8 +l2 evict 00002cbcc4bef440 00 0001 00 [IcR(0009,06)] bdb198bed3f166c8 +mem read 000049248a79a380 -1 -001 -1 1 [McW] b6d4256cc02f69a5 +l2 read 000049248a79a380 00 0000 01 0 [ScW(0009,06)] b6d4256cc02f69a5 +l1d-1 read 000049248a79a380 00 0014 01 0 [ScR] b6d4256cc02f69a5 +l1d-0 read 000065dc0cb58f00 00 0012 02 1 [ScR] 8b4ecdd8b082fe75 +l1d-0 evict 0000eeb339250a80 00 0010 03 [IcR] baaf248a8b7b28a3 +l1d-1 evict 000099fa8471ba40 00 0009 01 [IcR] 3a1b0222700896fc +mem write 000099fa8471ba40 -1 -001 -1 1 [MdW] 3a1b0222700896fc +l2 evict 000099fa8471ba40 01 0030 01 [IcR(0017,04)] 3a1b0222700896fc +mem read 0000e2c595bb5e80 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000e2c595bb5e80 01 0002 02 0 [McW(0017,04)] 0000000000000000 +l1d-0 write 0000e2c595bb5e80 00 0010 03 0 [MdW] e8d4bc2e4d787465 +l2 read 000086890a9e27c0 01 0005 01 1 [MdW(0030,00)] aa5c31a7cf666d65 +l1d-0 write 000086890a9e27c0 00 0015 00 0 [MdW] 58dd0ee0d02ca3e9 +l1d-1 evict 000099c62b358f40 00 0013 02 [IcR] a9ad326afb910f17 +mem write 000099c62b358f40 -1 -001 -1 1 [MdW] a9ad326afb910f17 +l2 evict 000099c62b358f40 01 0003 00 [IcR(0019,05)] a9ad326afb910f17 +mem read 00003f232f338000 -1 -001 -1 1 [McW] 304bee8ad7731636 +l2 read 00003f232f338000 00 0021 03 0 [ScW(0019,05)] 304bee8ad7731636 +l1d-0 read 00003f232f338000 00 0000 00 0 [ScR] 304bee8ad7731636 +l1d-1 read 0000ed89583b9580 00 0006 03 1 [ScR] b47da2a39aa7d229 +l1d-1 read 0000f88b44bf5840 00 0001 00 1 [MdW] a6fb001a7fc383ef +l1d-1 read 00005c90ae19e9c0 00 0007 00 1 [ScR] f5c83104bc8c8b9b +l1d-1 evict 0000d090b8181100 00 0004 03 [IcR] 17f932b77ce0dc6c +l2 read 00007a0ccec77d00 01 0014 02 1 [SdW(0002,05)] e927be63c0980bfb +l1d-1 read 00007a0ccec77d00 00 0004 03 0 [ScR] e927be63c0980bfb +l2 write 0000fc3d1a588d00 01 0007 04 1 [MdW(0031,02)] 3456ef070d8d0a11 +l1d-0 evict 0000fc3d1a588d00 00 0004 02 [IcR] 3456ef070d8d0a11 +mem write 00001ffbc4ff1a40 -1 -001 -1 1 [MdW] 071ee7ee944a90cf +l2 evict 00001ffbc4ff1a40 01 0029 01 [IcR(0000,07)] 071ee7ee944a90cf +mem read 000039a6b2ebcd00 -1 -001 -1 1 [McW] 3d554e47c9a0c003 +l2 read 000039a6b2ebcd00 00 0001 00 0 [ScW(0000,07)] 3d554e47c9a0c003 +l1d-0 read 000039a6b2ebcd00 00 0004 02 0 [ScR] 3d554e47c9a0c003 +l1d-0 read 0000c86d27a3d040 00 0001 01 1 [MdW] 796aa0a9427c2e02 +l1d-1 evict 0000fe2140a6f980 00 0006 02 [IcR] 1c42410700040cf1 +l2 write 0000fe2140a6f980 00 0004 02 1 [MdW(0009,01)] 1c42410700040cf1 +mem write 0000fe2140a6f980 -1 -001 -1 1 [MdW] 1c42410700040cf1 +l2 evict 0000fe2140a6f980 00 0004 02 [IcR(0009,01)] 1c42410700040cf1 +mem read 00001cff7cd11500 -1 -001 -1 1 [McW] 71e667c179d531a0 +l2 read 00001cff7cd11500 00 0012 02 0 [ScW(0009,01)] 71e667c179d531a0 +l1i-0 read 00001cff7cd11500 00 0004 00 0 [ScR] 71e667c179d531a0 +l1d-0 read 000063036c943940 00 0005 02 1 [MdW] d8e3d2857ff6ed21 +l1d-0 read 00005dfc154ee8c0 00 0003 00 1 [ScR] 0d9f97e6c23b33f4 +l2 write 000016480b2b62c0 01 0016 01 1 [MdW(0017,03)] 064d54173a4f17db +l1d-1 evict 000016480b2b62c0 00 0011 03 [IcR] 064d54173a4f17db +l2 read 0000dda2631186c0 00 0026 01 1 [SdW(0022,04)] 2389031e21d4a9ca +l1d-1 read 0000dda2631186c0 00 0011 03 0 [ScR] 2389031e21d4a9ca +l1d-1 read 0000780ab040b980 00 0006 01 1 [ScR] 0968e82e4bb02b18 +l1d-0 read 00002b4766af8580 00 0006 01 1 [ScR] e2d7bd4ad76f6849 +l1d-0 evict 0000f49e24085940 00 0005 03 [IcR] 6ac11497575254f4 +l1d-1 evict 00004f46a7d2ea80 00 0010 03 [IcR] af4eaf6ff33c7906 +l2 write 00004f46a7d2ea80 01 0006 02 1 [MdW(0010,02)] af4eaf6ff33c7906 +mem write 00004f46a7d2ea80 -1 -001 -1 1 [MdW] af4eaf6ff33c7906 +l2 evict 00004f46a7d2ea80 01 0006 02 [IcR(0010,02)] af4eaf6ff33c7906 +mem read 000066c650c81940 -1 -001 -1 1 [McW] e718d2e1df2aaa8e +l2 read 000066c650c81940 00 0019 02 0 [ScW(0010,02)] e718d2e1df2aaa8e +l1d-0 read 000066c650c81940 00 0005 03 0 [ScR] e718d2e1df2aaa8e +l1d-1 read 00007a0ccec77d00 00 0004 03 1 [ScR] e927be63c0980bfb +l2 read 00002b4766af8580 00 0026 00 1 [MdW(0024,06)] e2d7bd4ad76f6849 +l1d-0 write 00002b4766af8580 00 0006 01 0 [MdW] ccf3835001bfd7a9 +l1d-0 read 0000b78d2a790900 00 0004 01 1 [ScR] aedb2159a3c4680e +l1d-1 read 0000c194bc8acb40 00 0013 03 1 [MdW] 6bd8c4107bbcf05b +l1d-0 evict 00007121fd387e80 00 0010 01 [IcR] 537270cd2e4bdbd7 +l2 evict 000075fd554aed80 01 0028 02 [IcR(0012,07)] 96f8c40189bf5862 +mem read 000073f8f4229a80 -1 -001 -1 1 [McW] 44fd09249541cc5f +l2 read 000073f8f4229a80 00 0006 02 0 [ScW(0012,07)] 44fd09249541cc5f +l1d-0 read 000073f8f4229a80 00 0010 01 0 [ScR] 44fd09249541cc5f +mem write 0000960701732dc0 -1 -001 -1 1 [MdW] 8a34bfe58c264502 +l2 evict 0000960701732dc0 00 0000 04 [IcR(0024,03)] 8a34bfe58c264502 +mem read 000052a3218a7f80 -1 -001 -1 1 [McW] c0ebe0eb15ae3e1e +l2 read 000052a3218a7f80 01 0009 00 0 [ScW(0024,03)] c0ebe0eb15ae3e1e +l1d-0 read 000052a3218a7f80 00 0014 01 0 [ScR] c0ebe0eb15ae3e1e +l1d-0 read 000073f8f4229a80 00 0010 01 1 [ScR] 44fd09249541cc5f +l1d-0 read 00006f44ab8bcf80 00 0014 03 1 [MdW] 1483bb50755a2dd6 +l1i-1 read 0000b7fc8ec73280 00 0010 01 1 [ScR] 82cac3e599046a61 +l2 write 00001fd6787ba100 00 0007 00 1 [MdW(0010,03)] 1be254d25349cea0 +l1d-1 evict 00001fd6787ba100 00 0004 00 [IcR] 1be254d25349cea0 +mem read 00004bf31c06ad00 -1 -001 -1 1 [McW] 7bfaca6fac0ffca4 +l2 read 00004bf31c06ad00 00 0009 03 0 [ScW(0000,00)] 7bfaca6fac0ffca4 +l1d-1 read 00004bf31c06ad00 00 0004 00 0 [ScR] 7bfaca6fac0ffca4 +l1d-0 evict 0000a6f9f0803d80 00 0006 02 [IcR] 5719b2c00ecac89a +l2 read 0000c662cc646980 01 0025 03 1 [ScW(0020,00)] 6794a45adab0c5a6 +l1d-0 read 0000c662cc646980 00 0006 02 0 [ScR] 6794a45adab0c5a6 +l1d-0 evict 00000701e403e980 00 0006 03 [IcR] a2b07763fc09116e +l2 evict 00006cf58254d780 01 0007 02 +l2 read 00006cf58254d780 00 0011 01 0 +mem write 00008aa559520900 -1 -001 -1 1 [MdW] 4d6a292f5a35e768 +l2 evict 00008aa559520900 01 0024 02 [IcR(0025,07)] 4d6a292f5a35e768 +mem read 0000e461479ae980 -1 -001 -1 1 [McW] f44a40aa263a924f +l2 read 0000e461479ae980 01 0007 02 0 [ScW(0025,07)] f44a40aa263a924f +l1d-0 read 0000e461479ae980 00 0006 03 0 [ScR] f44a40aa263a924f +l1d-1 read 000056d4fe3257c0 00 0015 00 1 [MdW] 318753e7db7775a7 +l1d-0 read 0000acd63c8d1880 00 0002 00 1 [ScR] 9cf972ea02adcd4f +l2 write 00006a36c42b4840 00 0014 01 1 [MdW(0017,02)] 7d5fd4c9e5820a28 +l1d-1 evict 00006a36c42b4840 00 0001 02 [IcR] 7d5fd4c9e5820a28 +l2 evict 0000f17f98f480c0 01 0003 02 [IcR(0008,00)] 84e0e10794125a03 +mem read 00004ea43defa840 -1 -001 -1 1 [McW] a75b4d9fd3c53664 +l2 read 00004ea43defa840 00 0008 00 0 [ScW(0008,00)] a75b4d9fd3c53664 +l1d-1 read 00004ea43defa840 00 0001 02 0 [ScR] a75b4d9fd3c53664 +l2 write 0000e337ff7072c0 01 0030 04 1 [MdW(0017,06)] 2e20939f2a65233c +l1d-0 evict 0000e337ff7072c0 00 0011 01 [IcR] 2e20939f2a65233c +l2 read 0000dda2631186c0 00 0026 01 1 [SdW(0022,04)] 2389031e21d4a9ca +l1d-0 read 0000dda2631186c0 00 0011 01 0 [ScR] 2389031e21d4a9ca +l1d-0 read 000019a40a160240 00 0009 02 1 [MdW] 05b2218d9353b389 +l2 write 0000c1182c224c40 01 0014 04 1 [MdW(0010,06)] 7383c8d01e14c3e4 +l1d-1 evict 0000c1182c224c40 00 0001 03 [IcR] 7383c8d01e14c3e4 +l1d-0 evict 00006f44ab8bcf80 00 0014 03 [IcR] 1483bb50755a2dd6 +l2 write 00006f44ab8bcf80 01 0003 04 1 [MdW(0014,02)] 1483bb50755a2dd6 +mem write 00006f44ab8bcf80 -1 -001 -1 1 [MdW] 1483bb50755a2dd6 +l2 evict 00006f44ab8bcf80 01 0003 04 [IcR(0014,02)] 1483bb50755a2dd6 +mem read 0000726ad1114c40 -1 -001 -1 1 [McW] bd10168e51a99e6f +l2 read 0000726ad1114c40 01 0002 03 0 [ScW(0014,02)] bd10168e51a99e6f +l1d-1 read 0000726ad1114c40 00 0001 03 0 [ScR] bd10168e51a99e6f +l1d-0 evict 0000ba16e8b8b540 00 0005 00 [IcR] 3de612c8e734de20 +l2 read 000016f64b35ad40 01 0019 01 1 [ScW(0017,05)] 292bf8907b74edd2 +l1d-0 read 000016f64b35ad40 00 0005 00 0 [ScR] 292bf8907b74edd2 +l1d-0 read 000052d61b6d5a00 00 0008 02 1 [MdW] fb4788159307589c +l2 write 00006980d04a3400 00 0009 02 1 [MdW(0019,02)] 811d893ff8305c40 +l1d-1 evict 00006980d04a3400 00 0000 01 [IcR] 811d893ff8305c40 +l1d-1 evict 00007a0ccec77d00 00 0004 03 [IcR] e927be63c0980bfb +mem write 00007a0ccec77d00 -1 -001 -1 1 [MdW] e927be63c0980bfb +l2 evict 00007a0ccec77d00 01 0014 02 [IcR(0002,05)] e927be63c0980bfb +mem read 00003d1b05d30800 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 00003d1b05d30800 00 0012 03 0 [McW(0002,05)] 0000000000000000 +l1d-1 write 00003d1b05d30800 00 0000 01 0 [MdW] f01e963c59d63ee3 +l2 read 0000172ca7421240 01 0026 02 1 [McW(0022,03)] 322ca77b5b927467 +l1d-1 write 0000172ca7421240 00 0009 01 0 [MdW] bc2de800295638a3 +l1d-0 write 000018aa8af1d300 00 0012 00 1 [MdW] 4ad2b880ad7fc92c +l1i-0 read 000076807a07f540 00 0005 00 1 [ScR] 5e9696a11ad02c72 +l2 read 0000333bb344eb40 01 0001 02 1 [SdW(0025,02)] 37e243e7094a4a61 +l1d-0 read 0000333bb344eb40 00 0013 02 0 [ScR] 37e243e7094a4a61 +l1d-1 read 0000f88b44bf5840 00 0001 00 1 [MdW] a6fb001a7fc383ef +l1d-1 read 0000f59b70013a00 00 0008 02 1 [MdW] d9c8f6330349daa1 +l2 evict 00003c52cd2e1f40 01 0030 03 [IcR(0004,07)] 254c1bb063a0705f +mem read 00003f98ec32ec40 -1 -001 -1 1 [McW] 85f5ad5e548a4019 +l2 read 00003f98ec32ec40 01 0002 04 0 [McW(0004,07)] 85f5ad5e548a4019 +l1d-0 write 00003f98ec32ec40 00 0001 03 0 [MdW] 229df92bd6a3e82f +l1d-0 evict 000011abc3e7fe80 00 0010 02 [IcR] 056592a8950d3ae6 +l2 read 000011abc3e7fe80 00 0023 00 1 [MdW(0018,05)] 056592a8950d3ae6 +l1d-1 write 000011abc3e7fe80 00 0010 00 0 [MdW] 3e0b2e59a94368fa +l1d-0 evict 0000c662cc646980 00 0006 02 [IcR] 6794a45adab0c5a6 +l2 evict 0000c662cc646980 01 0025 03 [IcR(0020,00)] 6794a45adab0c5a6 +mem read 00007d0902e50f80 -1 -001 -1 1 [McW] 7acc9b6fe084c114 +l2 read 00007d0902e50f80 00 0023 01 0 [ScW(0020,00)] 7acc9b6fe084c114 +l1d-0 read 00007d0902e50f80 00 0014 02 0 [ScR] 7acc9b6fe084c114 +l1d-1 read 0000c0773417d200 00 0008 03 1 [MdW] dadfef868029f7c9 +mem write 00008a9bb333e780 -1 -001 -1 1 [MdW] 1a1288c6d6f9e35f +l2 evict 00008a9bb333e780 01 0022 00 [IcR(0015,02)] 1a1288c6d6f9e35f +mem read 0000e030a3d78740 -1 -001 -1 1 [McW] 707af21411b2423c +l2 read 0000e030a3d78740 00 0015 01 0 [ScW(0015,02)] 707af21411b2423c +l1d-0 read 0000e030a3d78740 00 0013 03 0 [ScR] 707af21411b2423c +l1d-1 read 000059efb9532e80 00 0010 02 1 [ScR] db19e43f15c6da9f +l1d-0 evict 00006a2ba09892c0 00 0011 02 [IcR] 05f0103b8fa109da +mem write 00003be6b01765c0 -1 -001 -1 1 [MdW] eacbeb2cbf4828f9 +l2 evict 00003be6b01765c0 00 0025 02 [IcR(0029,05)] eacbeb2cbf4828f9 +mem read 0000908064eef6c0 -1 -001 -1 1 [McW] 63b934d5bef74a33 +l2 read 0000908064eef6c0 00 0003 01 0 [ScW(0029,05)] 63b934d5bef74a33 +l1d-0 read 0000908064eef6c0 00 0011 02 0 [ScR] 63b934d5bef74a33 +l1i-0 evict 00001cff7cd11500 00 0004 00 [IcR] 71e667c179d531a0 +l2 write 0000ff71c82dc900 00 0031 02 1 [MdW(0016,04)] 2aa4c03e4f22bc4c +l1d-0 evict 0000ff71c82dc900 00 0004 00 [IcR] 2aa4c03e4f22bc4c +l2 read 00001cff7cd11500 00 0012 02 1 [McW(0009,01)] 71e667c179d531a0 +l1d-0 write 00001cff7cd11500 00 0004 00 0 [MdW] ab8ffde6d930d422 +l1d-1 read 0000c0773417d200 00 0008 03 1 [MdW] dadfef868029f7c9 +l1d-1 evict 0000ade01f76c940 00 0005 00 [IcR] 7e76db3a89663ea8 +l2 read 00005e644f2ad540 01 0010 04 1 [MdW(0020,01)] c7002ca6c9947314 +l1d-1 write 00005e644f2ad540 00 0005 00 0 [MdW] f61717ac339d286f +l2 write 00008a30b4505100 00 0023 04 1 [MdW(0021,04)] d130b7d9367311f3 +l1d-0 evict 00008a30b4505100 00 0004 03 [IcR] d130b7d9367311f3 +l2 read 0000a462f1bb1500 00 0029 01 1 [SdW(0030,06)] 836865657f27e721 +l1d-0 read 0000a462f1bb1500 00 0004 03 0 [ScR] 836865657f27e721 +l1d-0 evict 0000afa7e0db12c0 00 0011 00 [IcR] fbf332b5f72ab798 +l2 read 000048777e448ac0 00 0017 02 1 [ScW(0004,06)] cabd092ab80dc469 +l1d-0 read 000048777e448ac0 00 0011 00 0 [ScR] cabd092ab80dc469 +l1d-0 read 00009a603343d580 00 0006 00 1 [ScR] f04e58215f831309 +l2 write 0000d5e6c0d429c0 00 0021 00 1 [MdW(0024,05)] fd20fce170c2194d +l1d-1 evict 0000d5e6c0d429c0 00 0007 02 [IcR] fd20fce170c2194d +l2 read 000072629a2641c0 01 0021 04 1 [McW(0003,02)] cff65dd3605c7fe3 +l1d-1 write 000072629a2641c0 00 0007 02 0 [MdW] 72842233ec51489a +l2 read 0000c97dfb94fd80 01 0020 02 1 [SdW(0028,04)] a7b91faf6cbb0b11 +l1d-0 read 0000c97dfb94fd80 00 0006 02 0 [ScR] a7b91faf6cbb0b11 +l1d-0 evict 0000fa408c35ba00 00 0008 00 [IcR] 7eec603efdcdea3b +l2 read 0000fe792df68e00 01 0005 02 1 [SdW(0027,01)] 0d9c734f444698bd +l1d-0 read 0000fe792df68e00 00 0008 00 0 [ScR] 0d9c734f444698bd +l2 read 0000d8ad57bdad00 00 0020 01 1 [McW(0008,01)] d54d77b5577490c8 +l1d-1 write 0000d8ad57bdad00 00 0004 02 0 [MdW] 9e916c4b9e13efc9 +l1d-0 read 000000f97fae5cc0 00 0003 01 1 [ScR] fb933a96c629912c +l1d-1 read 000048777e448ac0 00 0011 02 1 [ScR] cabd092ab80dc469 +l1d-1 read 000008ededd7fd80 00 0006 00 1 [ScR] f7107428c77d814b +l1d-0 read 0000acd63c8d1880 00 0002 00 1 [ScR] 9cf972ea02adcd4f +l1d-1 evict 00006b8d57b16380 00 0014 02 [IcR] 819cfbd3392cc9d7 +l2 read 000029aaf453f380 00 0009 04 1 [SdW(0011,00)] 0b79dd26e62e1c76 +l1d-1 read 000029aaf453f380 00 0014 02 0 [ScR] 0b79dd26e62e1c76 +l1d-1 evict 0000afd2a9e735c0 00 0007 03 [IcR] cd8ad056003b74ce +l2 read 0000494fead535c0 00 0020 02 1 [SdW(0006,02)] 37a5ac998ceb943a +l1d-1 read 0000494fead535c0 00 0007 03 0 [ScR] 37a5ac998ceb943a +l1d-0 read 00004c22aaaafa40 00 0009 03 1 [ScR] d145642759dd977d +l1d-0 evict 0000534534d814c0 00 0003 02 [IcR] 8026669fe9d83abe +l2 read 0000c66c607618c0 01 0017 03 1 [ScW(0024,07)] ecc19bfa60ae4cae +l1d-0 read 0000c66c607618c0 00 0003 02 0 [ScR] ecc19bfa60ae4cae +l1d-1 evict 00003f92117466c0 00 0011 01 [IcR] e875ffc98e7626d6 +l2 read 0000e21b98b426c0 00 0013 00 1 [SdW(0014,04)] ea6c382ab9aa6351 +l1d-1 read 0000e21b98b426c0 00 0011 01 0 [ScR] ea6c382ab9aa6351 +l2 write 0000280e4164bb00 01 0028 04 1 [MdW(0014,00)] 6b3c7fb030849d9a +l1d-0 evict 0000280e4164bb00 00 0012 01 [IcR] 6b3c7fb030849d9a +l1d-0 evict 000018aa8af1d300 00 0012 00 [IcR] 4ad2b880ad7fc92c +l2 write 000018aa8af1d300 00 0021 02 1 [MdW(0025,04)] 4ad2b880ad7fc92c +mem write 000018aa8af1d300 -1 -001 -1 1 [MdW] 4ad2b880ad7fc92c +l2 evict 000018aa8af1d300 00 0021 02 [IcR(0025,04)] 4ad2b880ad7fc92c +mem read 0000d9b688e86700 -1 -001 -1 1 [McW] 717b944cf304d60e +l2 read 0000d9b688e86700 01 0031 00 0 [McW(0025,04)] 717b944cf304d60e +l1d-0 write 0000d9b688e86700 00 0012 01 0 [MdW] 748b9a7f72e8b75f +l1d-1 evict 0000df16e7f1d400 00 0000 00 [IcR] 98f5fd7bc49c7ee9 +l1d-0 evict 000091e69e86bc00 00 0000 02 [IcR] 050aae8e0c3268a3 +l2 read 000091e69e86bc00 01 0002 01 1 [MdW(0006,03)] 050aae8e0c3268a3 +l1d-1 write 000091e69e86bc00 00 0000 00 0 [MdW] 135b12d4fc52ebfb +l2 write 0000219accc59ec0 01 0014 01 1 [MdW(0005,06)] 567ceb506f0fc0c8 +l1d-1 evict 0000219accc59ec0 00 0011 00 [IcR] 567ceb506f0fc0c8 +l1d-0 evict 000086890a9e27c0 00 0015 00 [IcR] 58dd0ee0d02ca3e9 +l2 write 000086890a9e27c0 01 0005 01 1 [MdW(0030,00)] 58dd0ee0d02ca3e9 +mem write 000086890a9e27c0 -1 -001 -1 1 [MdW] 58dd0ee0d02ca3e9 +l2 evict 000086890a9e27c0 01 0005 01 [IcR(0030,00)] 58dd0ee0d02ca3e9 +mem read 0000256406cb4ec0 -1 -001 -1 1 [McW] 0000000000000000 +l2 read 0000256406cb4ec0 00 0021 02 0 [McW(0030,00)] 0000000000000000 +l1d-1 write 0000256406cb4ec0 00 0011 00 0 [MdW] 4ca6066b359b9a3f +l1d-0 evict 000026d8a5685e00 00 0008 03 [IcR] ead7b1b4f2b53fe5 +l1d-1 evict 000056d4fe3257c0 00 0015 00 [IcR] 318753e7db7775a7 +l2 write 000056d4fe3257c0 01 0024 01 1 [MdW(0025,06)] 318753e7db7775a7 +mem write 000056d4fe3257c0 -1 -001 -1 1 [MdW] 318753e7db7775a7 +l2 evict 000056d4fe3257c0 01 0024 01 [IcR(0025,06)] 318753e7db7775a7 +mem read 000039a5e213fe00 -1 -001 -1 1 [McW] e51f77c7f4ba657a +l2 read 000039a5e213fe00 00 0010 02 0 [ScW(0025,06)] e51f77c7f4ba657a +l1d-0 read 000039a5e213fe00 00 0008 03 0 [ScR] e51f77c7f4ba657a +l1d-1 evict 0000c72e4af4f8c0 00 0003 00 [IcR] 58c90aad3241e995 +mem write 0000c72e4af4f8c0 -1 -001 -1 1 [MdW] 58c90aad3241e995 +l2 evict 0000c72e4af4f8c0 01 0000 01 [IcR(0027,02)] 58c90aad3241e995 +mem read 000034b9affcc8c0 -1 -001 -1 1 [McW] 1c123c3c03dd01e9 +l2 read 000034b9affcc8c0 01 0005 01 0 [McW(0027,02)] 1c123c3c03dd01e9 +l1d-1 write 000034b9affcc8c0 00 0003 01 0 [MdW] 1ba5244101f91362 +l1d-1 write 0000c97be4cb1a40 00 0009 03 1 [MdW] ab4bf2d21712ae63 +l1i-0 read 000014810cf26a80 00 0010 00 1 [ScR] 2529577b5a534390 +l1d-1 read 0000494fead535c0 00 0007 03 1 [ScR] 37a5ac998ceb943a +l2 write 00007bc6648c6240 00 0018 02 1 [MdW(0021,03)] db5bb60a179aaa05 +l1d-1 evict 00007bc6648c6240 00 0009 00 [IcR] db5bb60a179aaa05 +l2 read 0000b6ebb009be40 01 0018 00 1 [SdW(0020,03)] 522882a3ec706ec7 +l1d-1 read 0000b6ebb009be40 00 0009 00 0 [ScR] 522882a3ec706ec7 +l1d-1 evict 000057c442889400 00 0000 03 [IcR] 1e3b18e07eb9b12c +l2 read 00006980d04a3400 00 0009 02 1 [MdW(0019,02)] 811d893ff8305c40 +l1d-1 write 00006980d04a3400 00 0000 03 0 [MdW] 1ce322fb00f5fabc +l1d-1 read 000049248a79a380 00 0014 01 1 [ScR] b6d4256cc02f69a5 +l1d-0 write 0000d9b688e86700 00 0012 01 1 [MdW] cc26258804a1cd71 +l2 write 0000136b8cb094c0 01 0030 02 1 [MdW(0001,06)] 428487fe872d8278 +l1d-0 evict 0000136b8cb094c0 00 0003 03 [IcR] 428487fe872d8278 +l2 read 0000534534d814c0 01 0030 00 1 [SdW(0019,06)] 8026669fe9d83abe +l1d-0 read 0000534534d814c0 00 0003 03 0 [ScR] 8026669fe9d83abe +l1d-0 read 00009a603343d580 00 0006 00 1 [ScR] f04e58215f831309 +l1d-1 evict 000049248a79a380 00 0014 01 [IcR] b6d4256cc02f69a5 +l2 evict 000049248a79a380 00 0000 01 [IcR(0009,06)] b6d4256cc02f69a5 +mem read 0000fe2140a6f980 -1 -001 -1 1 [McW] 1c42410700040cf1 +l2 read 0000fe2140a6f980 01 0009 04 0 [ScW(0009,06)] 1c42410700040cf1 +l1d-1 read 0000fe2140a6f980 00 0006 02 0 [ScR] 1c42410700040cf1 +l1d-0 read 00004813c834cdc0 00 0007 01 1 [ScR] 3992e1e5aacf6574 +l2 write 000057ef223eb2c0 00 0009 00 1 [MdW(0006,07)] 2e07e2efa680e334 +l1d-0 evict 000057ef223eb2c0 00 0011 03 [IcR] 2e07e2efa680e334 +mem read 000095873da506c0 -1 -001 -1 1 [McW] 64a74b273feb83c9 +l2 read 000095873da506c0 00 0012 04 0 [ScW(0018,01)] 64a74b273feb83c9 +l1d-0 read 000095873da506c0 00 0011 03 0 [ScR] 64a74b273feb83c9 +l2 write 00007e3437831800 01 0013 03 1 [MdW(0002,01)] af1f8f40af24a4a3 +l1d-1 evict 00007e3437831800 00 0000 02 [IcR] af1f8f40af24a4a3 +l2 read 000044ca9c649400 00 0030 01 1 [SdW(0031,05)] be04b443fdf25e1f +l1d-1 read 000044ca9c649400 00 0000 02 0 [ScR] be04b443fdf25e1f +l1d-0 read 000073f8f4229a80 00 0010 01 1 [ScR] 44fd09249541cc5f +l1d-0 read 00007d0902e50f80 00 0014 02 1 [ScR] 7acc9b6fe084c114 +l2 read 00009a603343d580 00 0031 03 1 [MdW(0016,03)] f04e58215f831309 +l1d-0 write 00009a603343d580 00 0006 00 0 [MdW] 5c0bf9cc71cf068a diff --git a/util/cache_type.hpp b/util/cache_type.hpp index 5c77345..c07f127 100644 --- a/util/cache_type.hpp +++ b/util/cache_type.hpp @@ -156,17 +156,17 @@ namespace ct { struct types { using meta_index_type = IndexSkewed; using data_index_type = IndexRandom; - using meta_replace_type = MRPT; + using meta_replace_type = MRPT; using data_replace_type = DRPT; using meta_metadata_type = MirageMetadataMSIBroadcast<48,0,6>; using data_metadata_type = MirageDataMeta; - using cache_base_type = MirageCache; + DLY, EnMon>; using policy_type = MirageMSIPolicy; - using input_type = MirageInnerCohPort; + using input_type = InnerCohPortT::template type, policy_type, false, meta_metadata_type, cache_base_type>; using output_type = OuterCohPortUncached; using cache_type = CoherentCacheNorm; static inline auto cache_gen_mirage(int size, const std::string& name_prefix) { diff --git a/util/monitor.hpp b/util/monitor.hpp index b9a6dac..a042808 100644 --- a/util/monitor.hpp +++ b/util/monitor.hpp @@ -18,6 +18,8 @@ class CMMetadataBase; // monitor base class class MonitorBase { +protected: + std::string prefix; // in case a log file is generate, specify the prefix of the log file public: virtual ~MonitorBase() = default; @@ -34,6 +36,8 @@ class MonitorBase virtual void pause() = 0; // pause the monitor, assming it will resume later virtual void resume() = 0; // resume the monitor, assuming it has been paused virtual void reset() = 0; // reset all internal statistics, assuming to be later started as new + + __always_inline void set_prefix(const std::string& s) { prefix = s; } }; // mointor container used in cache @@ -70,7 +74,7 @@ class CacheMonitorSupport virtual void hook_read(uint64_t addr, uint32_t ai, uint32_t s, uint32_t w, bool hit, bool prefetch, const CMMetadataBase *meta, const CMDataBase *data, uint64_t *delay) = 0; virtual void hook_write(uint64_t addr, uint32_t ai, uint32_t s, uint32_t w, bool hit, bool demand_acc, const CMMetadataBase *meta, const CMDataBase *data, uint64_t *delay) = 0; // probe, invalidate and writeback - virtual void hook_manage(uint64_t addr, uint32_t ai, uint32_t s, uint32_t w, bool hit, bool evict, bool writeback, const CMMetadataBase *meta, const CMDataBase *data, uint64_t *delay) = 0; + virtual void hook_manage(uint64_t addr, uint32_t ai, uint32_t s, uint32_t w, bool hit, uint32_t evict, bool writeback, const CMMetadataBase *meta, const CMDataBase *data, uint64_t *delay) = 0; // an interface for special communication with a specific monitor if attached __always_inline void monitor_magic_func(uint64_t addr, uint64_t magic_id, void *magic_data) { monitors->magic_func(addr, magic_id, magic_data); @@ -278,4 +282,77 @@ class SimpleTracerMT : public SimpleTracer virtual void stop() { globalPrinter->stop(); print_thread.join(); } }; +// Simple Access Monitor +class AddrTracer : public MonitorBase +{ +protected: + uint64_t target; + bool active; + bool compact_data = true; + + __always_inline void print(std::string& msg) { std::cout << msg << std::endl; } + +public: + AddrTracer(bool active = false) : active(active) {} + + virtual bool attach(uint64_t cache_id) override { return true; } + + virtual void read(uint64_t cache_id, uint64_t addr, int32_t ai, int32_t s, int32_t w, bool hit, const CMMetadataBase *meta, const CMDataBase *data) override { + if(!active || addr != target) return; + std::string msg; msg.reserve(100); + msg += (boost::format("%-10s read %016x %02d %04d %02d %1x") % UniqueID::name(cache_id) % addr % ai % s % w % hit).str(); + + if(meta) + msg.append(" [").append(meta->to_string()).append("]"); + else if(data) + msg.append(" "); + + if(data) + msg.append(" ").append(compact_data ? (boost::format("%016x") % (data->read(0))).str() : data->to_string()); + + print(msg); + } + + virtual void write(uint64_t cache_id, uint64_t addr, int32_t ai, int32_t s, int32_t w, bool hit, const CMMetadataBase *meta, const CMDataBase *data) override { + if(!active || target != addr) return; + std::string msg; msg.reserve(100); + msg += (boost::format("%-10s write %016x %02d %04d %02d %1x") % UniqueID::name(cache_id) % addr % ai % s % w % hit).str(); + + if(meta) + msg.append(" [").append(meta->to_string()).append("]"); + else if(data) + msg.append(" "); + + if(data) + msg.append(" ").append(compact_data ? (boost::format("%016x") % (data->read(0))).str() : data->to_string()); + + print(msg); + } + + virtual void invalid(uint64_t cache_id, uint64_t addr, int32_t ai, int32_t s, int32_t w, const CMMetadataBase *meta, const CMDataBase *data) override { + if(!active || target != addr) return; + std::string msg; msg.reserve(100); + msg += (boost::format("%-10s evict %016x %02d %04d %02d ") % UniqueID::name(cache_id) % addr % ai % s % w).str() ; + + if(meta) + msg.append(" [").append(meta->to_string()).append("]"); + else if(data) + msg.append(" "); + + if(data) + msg.append(" ").append(compact_data ? (boost::format("%016x") % (data->read(0))).str() : data->to_string()); + + print(msg); + } + + virtual void start() { active = true; } + virtual void stop() { active = false; } + virtual void pause() { active = false; } + virtual void resume() { active = true; } + virtual void reset() { active = false; } + + // special function supported by PFC only + void set_target(uint64_t addr) { target = addr; } +}; + #endif