From f27980525c8875489fbb1e9ad8b761b49a07f360 Mon Sep 17 00:00:00 2001 From: Amro Awad Date: Sun, 4 Dec 2016 22:55:46 -0700 Subject: [PATCH 1/5] Adding page table walker, page table walking caches, and multi-page size support --- src/sst/elements/Samba/1 | 191 - src/sst/elements/Samba/Makefile.am | 12 +- src/sst/elements/Samba/PageTableWalker.cc | 462 ++ src/sst/elements/Samba/PageTableWalker.h | 159 + src/sst/elements/Samba/README | 3 +- src/sst/elements/Samba/Samba.cc | 28 +- src/sst/elements/Samba/Samba.h | 3 + src/sst/elements/Samba/TLBUnit.cc | 134 +- src/sst/elements/Samba/TLBUnit.h | 11 +- src/sst/elements/Samba/TLBhierarchy.cc | 30 +- src/sst/elements/Samba/TLBhierarchy.h | 9 +- src/sst/elements/Samba/libSamba.cc | 31 +- src/sst/elements/Samba/tests/gupsgen_mmu.py | 24 +- .../Samba/tests/stats-snb-ariel-dram.csv | 5350 ----------------- .../elements/Samba/tests/stencil3dbench.py | 58 - .../Samba/tests/stencil3dbench_mmu.py | 102 - src/sst/elements/Samba/tests/streambench.py | 57 - .../elements/Samba/tests/streambench_mmu.py | 101 - 18 files changed, 769 insertions(+), 5996 deletions(-) delete mode 100644 src/sst/elements/Samba/1 create mode 100644 src/sst/elements/Samba/PageTableWalker.cc create mode 100644 src/sst/elements/Samba/PageTableWalker.h delete mode 100644 src/sst/elements/Samba/tests/stats-snb-ariel-dram.csv delete mode 100644 src/sst/elements/Samba/tests/stencil3dbench.py delete mode 100644 src/sst/elements/Samba/tests/stencil3dbench_mmu.py delete mode 100644 src/sst/elements/Samba/tests/streambench.py delete mode 100644 src/sst/elements/Samba/tests/streambench_mmu.py diff --git a/src/sst/elements/Samba/1 b/src/sst/elements/Samba/1 deleted file mode 100644 index 5b96597728..0000000000 --- a/src/sst/elements/Samba/1 +++ /dev/null @@ -1,191 +0,0 @@ -// Copyright 2009-2016 Sandia Corporation. Under the terms -// of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. -// Government retains certain rights in this software. -// -// Copyright (c) 2009-2016, Sandia Corporation -// All rights reserved. -// -// This file is part of the SST software package. For license -// information, see the LICENSE file in the top level directory of the -// distribution. -// - -/* Author: Amro Awad - * E-mail: aawad@sandia.gov - */ - - -#include - -#include -#include -#include -#include -#include -#include -//#include "sst_config.h" -// -#include "sst/core/element.h" - -#include - -#include "TLBhierarchy.h" - -#include -#include - -using namespace SST::Interfaces; -using namespace SST::MemHierarchy; -using namespace SST; -using namespace SST::SambaComponent; - - - - TLBhierarchy::TLBhierarchy(int tlb_id, SST::Component * owner) -: Component (tlb_id) -{ - - Owner = owner; - - coreID=tlb_id; - - - char* subID = (char*) malloc(sizeof(char) * 32); - sprintf(subID, "%" PRIu32, coreID); - - -} - - - TLBhierarchy::TLBhierarchy(int tlb_id, int Levels, SST::Component * owner, Params& params) -: Component (tlb_id) -{ - - levels = Levels; - - Owner = owner; - - coreID=tlb_id; - - - - - std::string LEVEL = std::to_string(1); - std::string cpu_clock = params.find("clock", "1GHz"); - - - - char* subID = (char*) malloc(sizeof(char) * 32); - sprintf(subID, "%" PRIu32, coreID); - - - // Initiating all levels of this hierarcy - TLB * prev=NULL; - for(int level=levels; level >= 1; level--) - { - TLB_CACHE[level] = new TLB(coreID, prev, level, owner, params); - prev = TLB_CACHE[level]; - - } - - for(int level=2; level <=levels; level++) - TLB_CACHE[level]->setServiceBack(TLB_CACHE[level-1]->getPushedBack()); - - - - TLB_CACHE[1]->setServiceBack(&mem_reqs); - - registerClock( cpu_clock, new Clock::Handler(this, &TLBhierarchy::tick ) ); - - -} - - - - TLBhierarchy::TLBhierarchy(ComponentId_t id, Params& params) -: Component(id) - -{ - - registerAsPrimaryComponent(); - primaryComponentDoNotEndSim(); - -} - - -TLBhierarchy::TLBhierarchy(ComponentId_t id, Params& params, int tlb_id) : - Component(id) { - - - coreID=tlb_id; - - - std::string cpu_clock = params.find("clock", "1GHz"); - - } - - - -// For now, implement to return a dummy address -long long int TLBhierarchy::translate(long long int VA) { return 0;} - - -void TLBhierarchy::handleEvent_CACHE( SST::Event * ev ) { - - // Once we receive a response from the cache hierarchy, we just pass it directly to CPU - to_cpu->send(ev); - -} - -void TLBhierarchy::handleEvent_CPU(SST::Event* event) { - - - // Push the request to the L1 TLB - - TLB_CACHE[1]->push_request(event); - - -} - - -bool TLBhierarchy::tick(SST::Cycle_t x) -{ - - - // Step 1, check if not empty, then propogate it to L1 TLB - while(!mem_reqs.empty()) - { - - - // std::cout<<"We have just completed a translation at "<send(event); - - mem_reqs.pop_back(); - - // Take it and submit it to L1 TLB, then retire - - - } - - return false; -} - - -void TLBhierarchy::finish() -{ - - - - for(int level=1; level<=levels;level++) - { - TLB_CACHE[level]->finish(); - } - - - - - -} - diff --git a/src/sst/elements/Samba/Makefile.am b/src/sst/elements/Samba/Makefile.am index fd3393f525..df4d2d0527 100644 --- a/src/sst/elements/Samba/Makefile.am +++ b/src/sst/elements/Samba/Makefile.am @@ -14,7 +14,9 @@ libSamba_la_SOURCES = \ TLBUnit.h \ TLBentry.h \ TLBhierarchy.h \ - TLBhierarchy.cc + TLBhierarchy.cc \ + PageTableWalker.h \ + PageTableWalker.cc libSamba_la_CPPFLAGS = \ @@ -29,14 +31,6 @@ libSamba_la_LDFLAGS = \ libSamba_la_LIBADD = \ $(SST_SYSTEMC_LIB) -EXTRA_DIST = \ - tests/gupsgen_mmu.py \ - tests/gupsgen.py \ - tests/stencil3dbench_mmu.py \ - tests/stencil3dbench.py \ - tests/streambench_mmu.py \ - tests/streambench.py - #noinst_PROGRAMS = infogather #infogather_SOURCES = infogather.cc #infogather_CPPFLAGS = -I/usr/local/systemc-2.3/include \ diff --git a/src/sst/elements/Samba/PageTableWalker.cc b/src/sst/elements/Samba/PageTableWalker.cc new file mode 100644 index 0000000000..88cd134fe1 --- /dev/null +++ b/src/sst/elements/Samba/PageTableWalker.cc @@ -0,0 +1,462 @@ +// Copyright 2009-2016 Sandia Corporation. Under the terms +// of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. +// Government retains certain rights in this software. +// +// Copyright (c) 2009-2016, Sandia Corporation +// All rights reserved. +// +// This file is part of the SST software package. For license +// information, see the LICENSE file in the top level directory of the +// distribution. +// + +/* Author: Amro Awad + * E-mail: aawad@sandia.gov + */ + +#include +#include "PageTableWalker.h" +#include + +#include + +using namespace SST::SambaComponent; +using namespace SST::MemHierarchy; +using namespace SST; + + +// This is and ID used to merely identify page walking requests +long long int mmu_id=0; + + +int max(int a, int b) +{ + + if ( a > b ) + return a; + else + return b; + + +} + +int abs_int_Samba(int x) +{ + + if(x<0) + return -1*x; + else + return x; + +} + + +PageTableWalker::PageTableWalker(int Page_size, int Assoc, PageTableWalker * Next_level, int Size) +{ + + +} + + +PageTableWalker::PageTableWalker(int tlb_id, PageTableWalker * Next_level, int level, SST::Component * owner, SST::Params& params) +{ + + + std::string LEVEL = std::to_string(level); + + std::string cpu_clock = params.find("clock", "1GHz"); + + + + self_connected = ((uint32_t) params.find("self_connected", 0)); + + page_walk_latency = ((uint32_t) params.find("page_walk_latency", 50)); + + max_outstanding = ((uint32_t) params.find("max_outstanding_PTWC", 4)); + + latency = ((uint32_t) params.find("latency_PTWC", 1)); + + // For now, we assume a typicaly x86-64 system with 4 levels of page table + sizes = 4; + + parallel_mode = ((uint32_t) params.find("parallel_mode_L"+LEVEL, 0)); + + upper_link_latency = ((uint32_t) params.find("upper_link_L"+LEVEL, 0)); + + + char* subID = (char*) malloc(sizeof(char) * 32); + sprintf(subID, "Core%d_PTWC", tlb_id); + + + // The stats that will appear, not that these stats are going to be part of the Samba unit + statPageTableWalkerHits = owner->registerStatistic( "tlb_hits", subID); + statPageTableWalkerMisses = owner->registerStatistic( "tlb_misses", subID ); + + max_width = ((uint32_t) params.find("max_width_PTWC", 4)); + + Owner = owner; + os_page_size = ((uint32_t) params.find("os_page_size", 4)); + + size = new int[sizes]; + assoc = new int[sizes]; + page_size = new long long int[sizes]; + sets = new int[sizes]; + tags = new long long int**[sizes]; + lru = new int **[sizes]; + + + // page table offsets + page_size[0] = 1024*4; + page_size[1] = 512*1024*4; + page_size[2] = (long long int) 512*512*1024*4; + page_size[3] = (long long int) 512*512*512*1024*4; + + for(int i=0; i < sizes; i++) + { + + size[i] = ((uint32_t) params.find("size"+std::to_string(i+1) + "_PTWC", 1)); + + assoc[i] = ((uint32_t) params.find("assoc"+std::to_string(i+1) + "_PTWC", 1)); + + // We define the number of sets for that structure of page size number i + sets[i] = size[i]/assoc[i]; + + } + + hits=misses=0; + + + + for(int id=0; id< sizes; id++) + { + + tags[id] = new long long int*[sets[id]]; + + lru[id] = new int*[sets[id]]; + + for(int i=0; i < sets[id]; i++) + { + tags[id][i]=new long long int[assoc[id]]; + lru[id][i]=new int[assoc[id]]; + for(int j=0; jgetVirtualAddress(); + + + long long int pw_id; + if(!self_connected) + pw_id = MEM_REQ[((MemEvent*) ev)->getResponseToID()]; + else + pw_id = MEM_REQ[((MemEvent*) ev)->getID()]; + + insert_way(WID_Add[pw_id], find_victim_way(WID_Add[pw_id], WSR_COUNT[pw_id]), WSR_COUNT[pw_id]); + + + WSR_READY[pw_id]=true; + + + if(WSR_COUNT[pw_id]==0) + { + ready_by[WID_EV[pw_id]] = currTime + latency + 2*upper_link_latency; + + ready_by_size[WID_EV[pw_id]] = os_page_size; // FIXME: This hardcoded for now assuming the OS maps virtual pages to 4KB pages only + } + else + { + + long long int dummy_add = rand()%10000000; + MemEvent *e = new MemEvent(Owner, dummy_add, dummy_add, GetS); + SST::Event * ev = e; + + WSR_COUNT[pw_id]--; + MEM_REQ[e->getID()]=pw_id; + to_mem->send(ev); + + + } + + +} + +bool PageTableWalker::tick(SST::Cycle_t x) +{ + + + currTime = x; + // The actual dipatching process... here we take a request and place it in the right queue based on being miss or hit and the number of pending misses + std::vector::iterator st_1,en_1; + st_1 = not_serviced.begin(); + en_1 = not_serviced.end(); + + int dispatched=0; + for(;st_1!=not_serviced.end(); st_1++) + { + dispatched++; + + // Checking that we never dispatch more accesses than the port width + if(dispatched > max_width) + break; + + SST::Event * ev = *st_1; + uint64_t addr = ((MemEvent*) ev)->getVirtualAddress(); + + + // Those track if any hit in one of the supported pages' structures + bool hit=false; + int hit_id=0; + + // We check the structures in parallel to find if it hits + int k; + for(k=0; k < sizes; k++) + if(check_hit(addr, k)) + { + hit=true; + hit_id=k; + break; + } + + // Check if we found the entry in the PTWC of PTEs + if(k==0) + { + + update_lru(addr, hit_id); + hits++; + statPageTableWalkerHits->addData(1); + if(parallel_mode) + ready_by[ev] = x; + else + ready_by[ev] = x + latency; + + // Tracking the hit request size + ready_by_size[ev] = page_size[hit_id]/1024; + + st_1 = not_serviced.erase(st_1); + } + else + { + + + // Note that this is a hack to reduce the number of walks needed for large pages, however, in case of full-system, the content of the page table + // will tell us that no next level, but since we don't have a full-system status, we will just stop at the priori-known leaf level + if(os_page_size == 2048) + k = max(k-1, 1); + else if(os_page_size == 1024*1024) + k = max(k-2, 1); + + + if(pending_misses.size() < max_outstanding) + { + statPageTableWalkerMisses->addData(1); + misses++; + pending_misses.push_back(*st_1); + if(to_mem!=NULL) + { + + WID_EV[++mmu_id] = (*st_1); + + long long int dummy_add = rand()%10000000; + MemEvent *e = new MemEvent(Owner, dummy_add, dummy_add, GetS); + SST::Event * ev = e; + + + + + WSR_COUNT[mmu_id] = k-1; + // WID_EV[mmu_id] = ev; + WID_Add[mmu_id] = addr; + WSR_READY[mmu_id] = false; + + // Add it to the tracking structure + MEM_REQ[e->getID()]=mmu_id; + + // std::cout<<"Sending a new request with address "<send(ev); + + + st_1 = not_serviced.erase(st_1); + + + } + else + { + + + + ready_by[ev] = x + latency + 2*upper_link_latency + page_walk_latency; // the upper link latency is substituted for sending the miss request and reciving it, Note this is hard coded for the last-level as memory access walk latency, this ****definitely**** needs to change + + ready_by_size[ev] = os_page_size; // FIXME: This hardcoded for now assuming the OS maps virtual pages to 4KB pages only + + st_1 = not_serviced.erase(st_1); + } + + } + + } + + + if(st_1 == not_serviced.end()) + break; + } + + + std::map::iterator st, en; + st = ready_by.begin(); + en = ready_by.end(); + + while(st!=en) + { + + bool deleted=false; + if(st->second <= x) + { + + + uint64_t addr = ((MemEvent*) st->first)->getVirtualAddress(); + + + // Double checking that we actually still don't have it inserted + //std::cout<<"The address is"<push_back(st->first); + + (*service_back_size)[st->first]=ready_by_size[st->first]; + + ready_by.erase(st); + + ready_by_size.erase(st->first); + + deleted = true; + + + // Deleting it from pending requests + std::vector::iterator st2, en2; + st2 = pending_misses.begin(); + en2 = pending_misses.end(); + + + while(st2!=en2) + { + if(*st2 == st->first) + { + pending_misses.erase(st2); + break; + } + st2++; + } + + + } + if(deleted) + st=ready_by.begin(); + else + st++; + + } + + + + return false; +} + + + +void PageTableWalker::insert_way(long long int vaddr, int way, int struct_id) +{ + + int set=abs_int_Samba((vaddr/page_size[struct_id])%sets[struct_id]); + tags[struct_id][set][way]=vaddr/page_size[struct_id]; + + +} + + +// Does the translation and updating the statistics of miss/hit +long long int PageTableWalker::translate(long long int vadd) +{ + return 1; + +} + + + +// Find if it exists +bool PageTableWalker::check_hit(long long int vadd, int struct_id) +{ + + + int set= abs_int_Samba((vadd/page_size[struct_id])%sets[struct_id]); + + for(int i=0; i +#include +#include +#include +#include +#include +#include +#include +#include +#include +// This file defines the page table walker and + +typedef std::pair id_type; + +using namespace SST::Interfaces; +using namespace SST; + +namespace SST { namespace SambaComponent{ + +class PageTableWalker +{ + + + int sizes; // This indicates the number of sizes supported + + long long int * page_size; // By default, lets assume 4KB pages + + int * assoc; // This represents the associativiety + + long long int *** tags; // This will hold the tags + + int *** lru; // This will hold the lru positions + + SST::Link * to_mem; // This links the Page table walker to the memory hierarchy + + int * sets; //stores the number of sets + + int* size; // Number of entries + + int hits; // number of hits + + int misses; // number of misses + + int os_page_size; // This is a hack for the size of the frames returned by the OS, by default + + int latency; // indicates the latency in cycles + + int upper_link_latency; // This indicates the upper link latency + + int max_outstanding; // indicates the number of maximum outstanding misses + + int max_width; // indicates the number of maximum accesses on the same cycle + + int parallel_mode; // very specific case for L1 PageTableWalker in case of overlapping with accessing the cache + + std::vector * service_back; // This is used to pass ready requests back to the previous level + + std::map * service_back_size; // This is used to pass the size of the requests back to the previous level + + std::map ready_by; // this one is used to keep track of requests that are delayed inside this structure, compensating for latency + + std::map ready_by_size; // this one is used to keep track of requests' sizes inside this structure + + std::vector pushed_back; // This is what we got returned from other structures + + std::map pushed_back_size; // This is the sizes of the translations we got returned from other structures + + std::vector pending_misses; // This the number of pending misses, only erased when pushed back from next level + + std::vector not_serviced; // This holds those accesses not serviced yet + + int self_connected; // his parameter indidicates if the PTW is self-connected or actually connected to the memory hierarchy + + int page_walk_latency; // this is really nothing than the page walk latency in case of having no walkers + + SST::Cycle_t currTime; + + SST::Component * Owner; + + public: + + PageTableWalker() {} // For serialization + PageTableWalker(int page_size, int assoc, PageTableWalker * next_level, int size); + PageTableWalker(int tlb_id, PageTableWalker * Next_level,int level, SST::Component * owner, SST::Params& params); + + // Does the translation and updating the statistics of miss/hit + long long int translate(long long int vadd); + + void finish(){} + + void set_ToMem(SST::Link * l) { to_mem = l;} + + // Find if it exists + bool check_hit(long long int vadd, int struct_id); + + // To insert the translaiton + int find_victim_way(long long int vadd, int struct_id); + + void setServiceBack( std::vector * x) { service_back = x;} + + void recvResp(SST::Event* event); + + void setServiceBackSize( std::map * x) { service_back_size = x;} + + std::vector * getPushedBack(){return & pushed_back;} + + std::map * getPushedBackSize(){return & pushed_back_size;} + + std::map WSR_COUNT; + std::map WSR_READY; + + std::map WID_Add; + + std::map WID_EV; + std::map MEM_REQ; + + void update_lru(long long int vaddr, int struct_id); + + + Statistic* statPageTableWalkerHits; + + Statistic* statPageTableWalkerMisses; + + + int getHits(){return hits;} + int getMisses(){return misses;} + + void insert_way(long long int vaddr, int way, int struct_id); + + // This one is to push a request to this structure + void push_request(SST::Event * x) {not_serviced.push_back(x);} + + bool tick(SST::Cycle_t x); + + +}; +}} + +#endif diff --git a/src/sst/elements/Samba/README b/src/sst/elements/Samba/README index 98963d2eb9..d15aed8870 100644 --- a/src/sst/elements/Samba/README +++ b/src/sst/elements/Samba/README @@ -1,5 +1,4 @@ Next steps: -1- Huge pages support. -2- Page walking structure to be connected to the last level TLB. +- Instead of sending the page table walks to random physical address, using the content of a real page table. This is important for RISC-V processor model and full-system efforts. diff --git a/src/sst/elements/Samba/Samba.cc b/src/sst/elements/Samba/Samba.cc index 1f968ae5d6..c831732b83 100644 --- a/src/sst/elements/Samba/Samba.cc +++ b/src/sst/elements/Samba/Samba.cc @@ -17,6 +17,7 @@ #include +#include #include "Samba.h" @@ -34,26 +35,28 @@ Samba::Samba(SST::ComponentId_t id, SST::Params& params): Component(id) { core_count = (uint32_t) params.find("corecount", 1); - int levels = (uint32_t) params.find("levels", 1); + int self = (uint32_t) params.find("self_connected", 0); + int levels = (uint32_t) params.find("levels", 1); + int page_walk_latency = ((uint32_t) params.find("page_walk_latency", 50)); TLB = new TLBhierarchy*[core_count]; std::cout<<"Initialized with "<(TLB[i]->getPTW(), &PageTableWalker::recvResp)); + else + link3 = configureSelfLink(link_buffer3, std::to_string(page_walk_latency)+ "ns", new Event::Handler(TLB[i]->getPTW(), &PageTableWalker::recvResp)); + + ptw_to_mem[i] = link3; + + TLB[i]->setPTWLink(link3); // We make a connection from the TLB hierarchy to the memory hierarchy, for page table walking purposes TLB[i]->setCacheLink(mmu_to_cache[i]); TLB[i]->setCPULink(cpu_to_mmu[i]); } + + std::cout<<"After initialization "<("clock", "1GHz"); @@ -91,6 +107,7 @@ Samba::Samba(SST::ComponentId_t id, SST::Params& params): Component(id) { free(link_buffer); free(link_buffer2); + free(link_buffer3); } @@ -107,6 +124,7 @@ Samba::Samba() : Component(-1) bool Samba::tick(SST::Cycle_t x) { + // We tick the MMU hierarchy of each core for(uint32_t i = 0; i < core_count; ++i) TLB[i]->tick(x); diff --git a/src/sst/elements/Samba/Samba.h b/src/sst/elements/Samba/Samba.h index ea5a3c0355..aee3408738 100644 --- a/src/sst/elements/Samba/Samba.h +++ b/src/sst/elements/Samba/Samba.h @@ -36,6 +36,7 @@ #include #include "TLBhierarchy.h" +#include "PageTableWalker.h" //#include "arielcore.h" @@ -67,6 +68,8 @@ namespace SST { SST::Link ** mmu_to_cache; + SST::Link ** ptw_to_mem; + long long int max_inst; char* named_pipe; int* pipe_id; diff --git a/src/sst/elements/Samba/TLBUnit.cc b/src/sst/elements/Samba/TLBUnit.cc index add308509c..26eaddc3a4 100644 --- a/src/sst/elements/Samba/TLBUnit.cc +++ b/src/sst/elements/Samba/TLBUnit.cc @@ -23,43 +23,27 @@ using namespace SST::MemHierarchy; using namespace SST; -TLB::TLB(int Page_size, int Assoc, TLB * Next_level, int Size) +// Find the absoulute value +int abs_int(int x) { - // Initializing the TLB structure - - /* - page_size=Page_size; - - assoc=Assoc; - - next_level=Next_level; - - size=Size; - - hits=misses=0; - - sets= size/assoc; + if(x<0) + return -1*x; + else + return x; - tags = new long long int*[sets]; +} - lru = new int*[sets]; - for(int i=0; i < sets; i++) - { - tags[i]=new long long int[assoc]; - lru[i]=new int[assoc]; - for(int j=0; j("parallel_mode_L"+LEVEL, 0)); - upper_link_latency = ((uint32_t) params.find("upper_link_L"+LEVEL, 1)); + upper_link_latency = ((uint32_t) params.find("upper_link_L"+LEVEL, 0)); //std::cout<<"Page size is "<push_back(ev); uint64_t addr = ((MemEvent*) ev)->getVirtualAddress(); @@ -228,11 +224,13 @@ bool TLB::tick(SST::Cycle_t x) en_1 = not_serviced.end(); int dispatched=0; + + // Iteravte over the requests passed from higher levels for(;st_1!=not_serviced.end(); st_1++) { dispatched++; - // Checking that we never dispatch more accesses than the port width + // Checking that we never dispatch more accesses than the port width of accesses per cycle if(dispatched > max_width) break; @@ -253,6 +251,7 @@ bool TLB::tick(SST::Cycle_t x) break; } + // If it hist in any page size structure, we update the lru position of the translation and update statistics if(hit) { @@ -269,26 +268,27 @@ bool TLB::tick(SST::Cycle_t x) st_1 = not_serviced.erase(st_1); } - else + else // We know the translation doesn't exist, so we need to service a miss { + // Making sure we have a room for an additional miss, i.e., less than the maximum outstanding misses if(pending_misses.size() < max_outstanding) { statTLBMisses->addData(1); misses++; pending_misses.push_back(*st_1); + + + // Check if the last level TLB or not, if last-level, pass the request to the page table walker if(next_level!=NULL) { - + next_level->push_request(ev); st_1 = not_serviced.erase(st_1); } - else + else // Passs it to the page table walker { - ready_by[ev] = x + latency + 2*upper_link_latency + page_walk_latency; // the upper link latency is substituted for sending the miss request and reciving it, Note this is hard coded for the last-level as memory access walk latency, this ****definitely**** needs to change - - ready_by_size[ev] = os_page_size; // FIXME: This hardcoded for now assuming the OS maps virtual pages to 4KB pages only - + PTW->push_request(ev); st_1 = not_serviced.erase(st_1); } @@ -306,6 +306,7 @@ bool TLB::tick(SST::Cycle_t x) st = ready_by.begin(); en = ready_by.end(); + // We iterate over the list of being serviced request to see if any has finished by this cycle while(st!=en) { @@ -320,14 +321,14 @@ bool TLB::tick(SST::Cycle_t x) if(SIZE_LOOKUP.find(ready_by_size[st->first])!= SIZE_LOOKUP.end()) { - // Double checking that we actually still don't have it inserted - if(!check_hit(addr, SIZE_LOOKUP[ready_by_size[st->first]])) - { - insert_way(addr, find_victim_way(addr, SIZE_LOOKUP[ready_by_size[st->first]]), SIZE_LOOKUP[ready_by_size[st->first]]); - update_lru(addr, SIZE_LOOKUP[ready_by_size[st->first]]); - } - else - update_lru(addr, SIZE_LOOKUP[ready_by_size[st->first]]); + // Double checking that we actually still don't have it inserted + if(!check_hit(addr, SIZE_LOOKUP[ready_by_size[st->first]])) + { + insert_way(addr, find_victim_way(addr, SIZE_LOOKUP[ready_by_size[st->first]]), SIZE_LOOKUP[ready_by_size[st->first]]); + update_lru(addr, SIZE_LOOKUP[ready_by_size[st->first]]); + } + else + update_lru(addr, SIZE_LOOKUP[ready_by_size[st->first]]); } @@ -374,58 +375,35 @@ bool TLB::tick(SST::Cycle_t x) } - +// Used to insert a new translation on a specific way of the TLB structure void TLB::insert_way(long long int vaddr, int way, int struct_id) { - int set=(vaddr/page_size[struct_id])%sets[struct_id]; + int set=abs_int((vaddr/page_size[struct_id])%sets[struct_id]); tags[struct_id][set][way]=vaddr/page_size[struct_id]; } -// Does the translation and updating the statistics of miss/hit + +// This function will be used later to get the translation of a specific virtual address (if cached) long long int TLB::translate(long long int vadd) { -/* - bool hit= check_hit(vadd); - - if(hit) - { - - statTLBHits->addData(1); - hits++; - update_lru(vadd); - - } - else - { - - statTLBMisses->addData(1); - misses++; - insert_way(vadd, find_victim_way(vadd)); - update_lru(vadd); - - - - } -*/ return 1; } -// Find if it exists +// Find if the translation exists on structure struct_id bool TLB::check_hit(long long int vadd, int struct_id) { - int set= (vadd/page_size[struct_id])%sets[struct_id]; + int set= abs_int((vadd/page_size[struct_id])%sets[struct_id]); for(int i=0; i #include #include #include - +#include "PageTableWalker.h" #include #include // This file defines a TLB structure +using namespace SST::SambaComponent; class TLB { @@ -42,6 +45,8 @@ class TLB TLB * next_level; // a pointer to the next level Samba structure + PageTableWalker * PTW; // This is a pointer to the PTW in case of being last level + std::map SIZE_LOOKUP; // This structure checks if a size is supported inside the structure, and its index structure int * sets; //stores the number of sets @@ -88,7 +93,7 @@ class TLB TLB() {} // For serialization TLB(int page_size, int assoc, TLB * next_level, int size); TLB(int tlb_id, TLB * Next_level,int level, SST::Component * owner, SST::Params& params); - + TLB(int tlb_id, PageTableWalker * Next_level, int level, SST::Component * owner, SST::Params& params); // Does the translation and updating the statistics of miss/hit long long int translate(long long int vadd); @@ -128,3 +133,5 @@ class TLB }; + +#endif diff --git a/src/sst/elements/Samba/TLBhierarchy.cc b/src/sst/elements/Samba/TLBhierarchy.cc index 4094da88d6..b1a0cd461c 100644 --- a/src/sst/elements/Samba/TLBhierarchy.cc +++ b/src/sst/elements/Samba/TLBhierarchy.cc @@ -23,14 +23,9 @@ #include #include #include -//#include "sst_config.h" -// #include "sst/core/element.h" - #include - #include "TLBhierarchy.h" - #include "sst/elements/memHierarchy/memEvent.h" #include @@ -77,12 +72,15 @@ TLBhierarchy::TLBhierarchy(int tlb_id, int Levels, SST::Component * owner, Param sprintf(subID, "%" PRIu32, coreID); + PTW = new PageTableWalker(coreID, NULL, 0, owner, params); + total_waiting = owner->registerStatistic( "total_waiting", subID ); // Initiating all levels of this hierarcy - TLB * prev=NULL; - for(int level=levels; level >= 1; level--) + TLB_CACHE[levels] = new TLB(coreID, PTW, levels, owner, params); + TLB * prev=TLB_CACHE[levels]; + for(int level=levels-1; level >= 1; level--) { - TLB_CACHE[level] = new TLB(coreID, prev, level, owner, params); + TLB_CACHE[level] = new TLB(coreID, (TLB *) prev, level, owner, params); prev = TLB_CACHE[level]; } @@ -95,11 +93,14 @@ TLBhierarchy::TLBhierarchy(int tlb_id, int Levels, SST::Component * owner, Param } + PTW->setServiceBack(TLB_CACHE[levels]->getPushedBack()); + PTW->setServiceBackSize(TLB_CACHE[levels]->getPushedBackSize()); + + TLB_CACHE[1]->setServiceBack(&mem_reqs); TLB_CACHE[1]->setServiceBackSize(&mem_reqs_sizes); -// registerClock( cpu_clock, new Clock::Handler(this, &TLBhierarchy::tick ) ); curr_time = 0; } @@ -150,19 +151,22 @@ bool TLBhierarchy::tick(SST::Cycle_t x) } + PTW->tick(x); curr_time = x; // Step 1, check if not empty, then propogate it to L1 TLB while(!mem_reqs.empty()) { - - // std::cout<<"We have just completed a translation at "<addData(time_diff); diff --git a/src/sst/elements/Samba/TLBhierarchy.h b/src/sst/elements/Samba/TLBhierarchy.h index f0632391fc..5d953f6cb1 100644 --- a/src/sst/elements/Samba/TLBhierarchy.h +++ b/src/sst/elements/Samba/TLBhierarchy.h @@ -31,6 +31,7 @@ #include "TLBentry.h" #include "TLBUnit.h" +#include "PageTableWalker.h" #include #include @@ -66,6 +67,10 @@ namespace SST { namespace SambaComponent{ std::map TLB_CACHE; + // Here is the defintion of the page table walker of the TLB hierarchy + PageTableWalker * PTW; + + std::string clock_frequency_str; // Holds the current time @@ -103,6 +108,7 @@ namespace SST { namespace SambaComponent{ TLBhierarchy(int tlb_id,SST::Component * owner); TLBhierarchy(int tlb_id, int level, SST::Component * owner, Params& params); + PageTableWalker * getPTW(){return PTW;} bool tick(SST::Cycle_t x); @@ -120,7 +126,8 @@ namespace SST { namespace SambaComponent{ // Sets the to cpu link, this should be called from Samba component when creating links between TLB structures and CPUs bool setCPULink(SST::Link * TO_CPU) { to_cpu = TO_CPU; return true;} - + // Setting the memory link of the page table walker + bool setPTWLink(SST::Link * l) { PTW->set_ToMem(l);}; }; diff --git a/src/sst/elements/Samba/libSamba.cc b/src/sst/elements/Samba/libSamba.cc index 1394de7de0..53831ae942 100644 --- a/src/sst/elements/Samba/libSamba.cc +++ b/src/sst/elements/Samba/libSamba.cc @@ -9,21 +9,16 @@ // information, see the LICENSE file in the top level directory of the // distribution. +/* Author: Amro Awad + * E-mail: aawad@sandia.gov +*/ + + #include #include "sst/core/element.h" #include "sst/core/component.h" -//#include "ariel.h" -//#include "arielcpu.h" -//#include "arieltexttracegen.h" - -//#ifdef HAVE_LIBZ -//#include "arielgzbintracegen.h" -//#endif - -//#define STRINGIZE(input) #input - #include "Samba.h" #include "TLBhierarchy.h" #include @@ -32,19 +27,12 @@ using namespace SST; using namespace SST::SambaComponent; - - - static Component* create_Samba(ComponentId_t id, Params& params) { - - -return new Samba(id,params); //dynamic_cast( Samba(id,params)); - +return new Samba(id,params); }; - static const ElementInfoStatistic Samba_statistics[] = { { "tlb_hits", "Number of TLB hits", "requests", 1}, // Name, Desc, Enable Level { "tlb_misses", "Number of TLB misses", "requests", 1}, // Name, Desc, Enable Level @@ -67,13 +55,13 @@ static const ElementInfoParam Samba_params[] = { {"max_outstanding_L%(levels)d", "the number of max outstanding misses","1"}, {"max_width_L%(levels)d", "the number of accesses on the same cycle","1"}, {"size%(sizes)_L%(levels)d", "the number of entries of page size number x on level y","1"}, - {"upper_link_L%(levels)d", "the latency of the upper link connects to this structure","1"}, + {"upper_link_L%(levels)d", "the latency of the upper link connects to this structure","0"}, {"assoc%(sizes)_L%(levels)d", "the associativity of size number X in Level Y", "1"}, {"clock", "the clock frequency", "1GHz"}, - {"latency_L%(levels)d", "the access latency in cycles for this level of memory","1"}, {"parallel_mode_L%(levels)d", "this is for the corner case of having a one cycle overlap with accessing cache","0"}, - {"page_walk_latency", "This is the page walk latency in cycles just in case no page walker", "50"}, + {"page_walk_latency", "Each page table walk latency in nanoseconds", "50"}, + {"self_connected", "Determines if the page walkers are acutally connected to memory hierarcy or just add fixed latency (self-connected)", "0"}, {NULL, NULL, NULL}, }; @@ -82,6 +70,7 @@ static const ElementInfoParam Samba_params[] = { static const ElementInfoPort Samba_ports[] = { {"cpu_to_mmu%(corecount)d", "Each Samba link to its core", NULL}, {"mmu_to_cache%(corecount)d", "Each Samba to its corresponding cache", NULL}, + {"ptw_to_mem%(corecount)d", "Each TLB hierarchy has a link to the memory for page walking", NULL}, {"alloc_link_%(corecount)d", "Each core's link to an allocation tracker (e.g. memSieve)", NULL}, {NULL, NULL, NULL} }; diff --git a/src/sst/elements/Samba/tests/gupsgen_mmu.py b/src/sst/elements/Samba/tests/gupsgen_mmu.py index 93f0d58cca..fac42b0bae 100644 --- a/src/sst/elements/Samba/tests/gupsgen_mmu.py +++ b/src/sst/elements/Samba/tests/gupsgen_mmu.py @@ -74,21 +74,29 @@ "size3_L2": 16, "clock": "2 Ghz", "levels": 2, - "max_width_L1": 16, + "max_width_L1": 3, "max_outstanding_L1": 2, - "latency_L1": 1, + "latency_L1": 4, "parallel_mode_L1": 1, "max_outstanding_L2": 2, "max_width_L2": 4, "latency_L2": 10, "parallel_mode_L2": 0, - "page_walk_latency": 50, - + "page_walk_latency": 30, + "size1_PTWC": 32, # this just indicates the number entries of the page table walk cache level 1 (PTEs) + "assoc1_PTWC": 4, # this just indicates the associtativit the page table walk cache level 1 (PTEs) + "size2_PTWC": 32, # this just indicates the number entries of the page table walk cache level 1 (PMDs) + "assoc2_PTWC": 4, # this just indicates the associtativit the page table walk cache level 1 (PMDs) + "size3_PTWC": 32, # this just indicates the number entries of the page table walk cache level 1 (PUDs) + "assoc3_PTWC": 4, # this just indicates the associtativit the page table walk cache level 1 (PUDs) + "size4_PTWC": 32, # this just indicates the number entries of the page table walk cache level 1 (PGD) + "assoc4_PTWC": 4, # this just indicates the associtativit the page table walk cache level 1 (PGD) + "latency_PTWC": 10, # This is the latency of checking the page table walk cache + "max_outstanding_PTWC": 4, + "self_connected": 1, }); - - mmu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) # Define the simulation links @@ -96,6 +104,7 @@ link_mmu_cache_link = sst.Link("link_mmu_cache_link") +#ptw_to_mem = sst.Link("ptw_to_mem_link") ''' arielMMULink = sst.Link("cpu_mmu_link_" + str(next_core_id)) @@ -107,6 +116,9 @@ ''' +#ptw_to_mem.connect((mmu, "ptw_to_mem0","100ns"), (mmu, "ptw_to_mem0","100ns")) +#ptw_to_mem.setNoCut() + link_cpu_mmu_link.connect( (comp_cpu, "cache_link", "0ps"), (mmu, "cpu_to_mmu0", "0ps") ) link_cpu_mmu_link.setNoCut() diff --git a/src/sst/elements/Samba/tests/stats-snb-ariel-dram.csv b/src/sst/elements/Samba/tests/stats-snb-ariel-dram.csv deleted file mode 100644 index c97127c279..0000000000 --- a/src/sst/elements/Samba/tests/stats-snb-ariel-dram.csv +++ /dev/null @@ -1,5350 +0,0 @@ -ComponentName, StatisticName, StatisticSubId, StatisticType, SimTime, Rank, Sum.u64, SumSQ.u64, Count.u64 -mmu0, total_waiting, 0, Accumulator, 0, 0, 445933, 55081755, 25687 -mmu0, tlb_hits, Core0_L2, Accumulator, 0, 0, 522, 522, 522 -mmu0, tlb_misses, Core0_L2, Accumulator, 0, 0, 1639, 1639, 1639 -mmu0, tlb_hits, Core0_L1, Accumulator, 0, 0, 23526, 23526, 23526 -mmu0, tlb_misses, Core0_L1, Accumulator, 0, 0, 2161, 2161, 2161 -mmu0, total_waiting, 1, Accumulator, 0, 0, 417008, 58783652, 19646 -mmu0, tlb_hits, Core1_L2, Accumulator, 0, 0, 403, 403, 403 -mmu0, tlb_misses, Core1_L2, Accumulator, 0, 0, 1604, 1604, 1604 -mmu0, tlb_hits, Core1_L1, Accumulator, 0, 0, 17641, 17641, 17641 -mmu0, tlb_misses, Core1_L1, Accumulator, 0, 0, 2007, 2007, 2007 -mmu0, total_waiting, 2, Accumulator, 0, 0, 422958, 56802854, 19568 -mmu0, tlb_hits, Core2_L2, Accumulator, 0, 0, 397, 397, 397 -mmu0, tlb_misses, Core2_L2, Accumulator, 0, 0, 1625, 1625, 1625 -mmu0, tlb_hits, Core2_L1, Accumulator, 0, 0, 17548, 17548, 17548 -mmu0, tlb_misses, Core2_L1, Accumulator, 0, 0, 2022, 2022, 2022 -mmu0, total_waiting, 3, Accumulator, 0, 0, 417616, 58240416, 19412 -mmu0, tlb_hits, Core3_L2, Accumulator, 0, 0, 377, 377, 377 -mmu0, tlb_misses, Core3_L2, Accumulator, 0, 0, 1645, 1645, 1645 -mmu0, tlb_hits, Core3_L1, Accumulator, 0, 0, 17392, 17392, 17392 -mmu0, tlb_misses, Core3_L1, Accumulator, 0, 0, 2022, 2022, 2022 -mmu0, total_waiting, 4, Accumulator, 0, 0, 423245, 58755571, 19127 -mmu0, tlb_hits, Core4_L2, Accumulator, 0, 0, 345, 345, 345 -mmu0, tlb_misses, Core4_L2, Accumulator, 0, 0, 1658, 1658, 1658 -mmu0, tlb_hits, Core4_L1, Accumulator, 0, 0, 17124, 17124, 17124 -mmu0, tlb_misses, Core4_L1, Accumulator, 0, 0, 2003, 2003, 2003 -mmu0, total_waiting, 5, Accumulator, 0, 0, 418582, 58488638, 19257 -mmu0, tlb_hits, Core5_L2, Accumulator, 0, 0, 367, 367, 367 -mmu0, tlb_misses, Core5_L2, Accumulator, 0, 0, 1628, 1628, 1628 -mmu0, tlb_hits, Core5_L1, Accumulator, 0, 0, 17264, 17264, 17264 -mmu0, tlb_misses, Core5_L1, Accumulator, 0, 0, 1995, 1995, 1995 -mmu0, total_waiting, 6, Accumulator, 0, 0, 440909, 59643715, 19361 -mmu0, tlb_hits, Core6_L2, Accumulator, 0, 0, 425, 425, 425 -mmu0, tlb_misses, Core6_L2, Accumulator, 0, 0, 1615, 1615, 1615 -mmu0, tlb_hits, Core6_L1, Accumulator, 0, 0, 17323, 17323, 17323 -mmu0, tlb_misses, Core6_L1, Accumulator, 0, 0, 2040, 2040, 2040 -mmu0, total_waiting, 7, Accumulator, 0, 0, 432614, 58903800, 19453 -mmu0, tlb_hits, Core7_L2, Accumulator, 0, 0, 429, 429, 429 -mmu0, tlb_misses, Core7_L2, Accumulator, 0, 0, 1617, 1617, 1617 -mmu0, tlb_hits, Core7_L1, Accumulator, 0, 0, 17409, 17409, 17409 -mmu0, tlb_misses, Core7_L1, Accumulator, 0, 0, 2046, 2046, 2046 -a0, tlb_hits, , Accumulator, 0, 0, 18730, 18730, 18730 -a0, tlb_evicts, , Accumulator, 0, 0, 138725, 138725, 138725 -a0, tlb_translate_queries, , Accumulator, 0, 0, 166788, 166788, 166788 -a0, tlb_shootdown, , Accumulator, 0, 0, 0, 0, 0 -a0, tlb_page_allocs, , Accumulator, 0, 0, 5237, 5237, 5237 -a0, read_requests, 0, Accumulator, 0, 0, 18849, 18849, 18849 -a0, write_requests, 0, Accumulator, 0, 0, 6838, 6838, 6838 -a0, split_read_requests, 0, Accumulator, 0, 0, 0, 0, 0 -a0, split_write_requests, 0, Accumulator, 0, 0, 0, 0, 0 -a0, no_ops, 0, Accumulator, 0, 0, 50066, 50066, 50066 -a0, instruction_count, 0, Accumulator, 0, 0, 25377, 25377, 25377 -a0, fp_sp_ins, 0, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ins, 0, Accumulator, 0, 0, 5393, 5393, 5393 -a0, fp_sp_simd_ins, 0, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_simd_ins, 0, Accumulator, 0, 0, 0, 0, 0 -a0, fp_sp_scalar_ins, 0, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_scalar_ins, 0, Accumulator, 0, 0, 5393, 5393, 5393 -a0, fp_sp_ops, 0, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ops, 0, Accumulator, 0, 0, 5393, 5393, 5393 -a0, read_requests, 1, Accumulator, 0, 0, 14609, 14609, 14609 -a0, write_requests, 1, Accumulator, 0, 0, 5041, 5041, 5041 -a0, split_read_requests, 1, Accumulator, 0, 0, 0, 0, 0 -a0, split_write_requests, 1, Accumulator, 0, 0, 0, 0, 0 -a0, no_ops, 1, Accumulator, 0, 0, 41416, 41416, 41416 -a0, instruction_count, 1, Accumulator, 0, 0, 19520, 19520, 19520 -a0, fp_sp_ins, 1, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ins, 1, Accumulator, 0, 0, 5276, 5276, 5276 -a0, fp_sp_simd_ins, 1, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_simd_ins, 1, Accumulator, 0, 0, 0, 0, 0 -a0, fp_sp_scalar_ins, 1, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_scalar_ins, 1, Accumulator, 0, 0, 5276, 5276, 5276 -a0, fp_sp_ops, 1, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ops, 1, Accumulator, 0, 0, 5276, 5276, 5276 -a0, read_requests, 2, Accumulator, 0, 0, 14580, 14580, 14580 -a0, write_requests, 2, Accumulator, 0, 0, 5001, 5001, 5001 -a0, split_read_requests, 2, Accumulator, 0, 0, 0, 0, 0 -a0, split_write_requests, 2, Accumulator, 0, 0, 0, 0, 0 -a0, no_ops, 2, Accumulator, 0, 0, 41089, 41089, 41089 -a0, instruction_count, 2, Accumulator, 0, 0, 19477, 19477, 19477 -a0, fp_sp_ins, 2, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ins, 2, Accumulator, 0, 0, 5601, 5601, 5601 -a0, fp_sp_simd_ins, 2, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_simd_ins, 2, Accumulator, 0, 0, 0, 0, 0 -a0, fp_sp_scalar_ins, 2, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_scalar_ins, 2, Accumulator, 0, 0, 5601, 5601, 5601 -a0, fp_sp_ops, 2, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ops, 2, Accumulator, 0, 0, 5601, 5601, 5601 -a0, read_requests, 3, Accumulator, 0, 0, 14503, 14503, 14503 -a0, write_requests, 3, Accumulator, 0, 0, 4912, 4912, 4912 -a0, split_read_requests, 3, Accumulator, 0, 0, 0, 0, 0 -a0, split_write_requests, 3, Accumulator, 0, 0, 0, 0, 0 -a0, no_ops, 3, Accumulator, 0, 0, 40906, 40906, 40906 -a0, instruction_count, 3, Accumulator, 0, 0, 19306, 19306, 19306 -a0, fp_sp_ins, 3, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ins, 3, Accumulator, 0, 0, 5662, 5662, 5662 -a0, fp_sp_simd_ins, 3, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_simd_ins, 3, Accumulator, 0, 0, 0, 0, 0 -a0, fp_sp_scalar_ins, 3, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_scalar_ins, 3, Accumulator, 0, 0, 5662, 5662, 5662 -a0, fp_sp_ops, 3, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ops, 3, Accumulator, 0, 0, 5662, 5662, 5662 -a0, read_requests, 4, Accumulator, 0, 0, 14188, 14188, 14188 -a0, write_requests, 4, Accumulator, 0, 0, 4939, 4939, 4939 -a0, split_read_requests, 4, Accumulator, 0, 0, 0, 0, 0 -a0, split_write_requests, 4, Accumulator, 0, 0, 0, 0, 0 -a0, no_ops, 4, Accumulator, 0, 0, 40152, 40152, 40152 -a0, instruction_count, 4, Accumulator, 0, 0, 19005, 19005, 19005 -a0, fp_sp_ins, 4, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ins, 4, Accumulator, 0, 0, 5233, 5233, 5233 -a0, fp_sp_simd_ins, 4, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_simd_ins, 4, Accumulator, 0, 0, 0, 0, 0 -a0, fp_sp_scalar_ins, 4, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_scalar_ins, 4, Accumulator, 0, 0, 5233, 5233, 5233 -a0, fp_sp_ops, 4, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ops, 4, Accumulator, 0, 0, 5233, 5233, 5233 -a0, read_requests, 5, Accumulator, 0, 0, 14332, 14332, 14332 -a0, write_requests, 5, Accumulator, 0, 0, 4938, 4938, 4938 -a0, split_read_requests, 5, Accumulator, 0, 0, 0, 0, 0 -a0, split_write_requests, 5, Accumulator, 0, 0, 0, 0, 0 -a0, no_ops, 5, Accumulator, 0, 0, 40753, 40753, 40753 -a0, instruction_count, 5, Accumulator, 0, 0, 19158, 19158, 19158 -a0, fp_sp_ins, 5, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ins, 5, Accumulator, 0, 0, 5426, 5426, 5426 -a0, fp_sp_simd_ins, 5, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_simd_ins, 5, Accumulator, 0, 0, 0, 0, 0 -a0, fp_sp_scalar_ins, 5, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_scalar_ins, 5, Accumulator, 0, 0, 5426, 5426, 5426 -a0, fp_sp_ops, 5, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ops, 5, Accumulator, 0, 0, 5426, 5426, 5426 -a0, read_requests, 6, Accumulator, 0, 0, 14378, 14378, 14378 -a0, write_requests, 6, Accumulator, 0, 0, 4988, 4988, 4988 -a0, split_read_requests, 6, Accumulator, 0, 0, 0, 0, 0 -a0, split_write_requests, 6, Accumulator, 0, 0, 0, 0, 0 -a0, no_ops, 6, Accumulator, 0, 0, 41266, 41266, 41266 -a0, instruction_count, 6, Accumulator, 0, 0, 19232, 19232, 19232 -a0, fp_sp_ins, 6, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ins, 6, Accumulator, 0, 0, 5294, 5294, 5294 -a0, fp_sp_simd_ins, 6, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_simd_ins, 6, Accumulator, 0, 0, 0, 0, 0 -a0, fp_sp_scalar_ins, 6, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_scalar_ins, 6, Accumulator, 0, 0, 5294, 5294, 5294 -a0, fp_sp_ops, 6, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ops, 6, Accumulator, 0, 0, 5294, 5294, 5294 -a0, read_requests, 7, Accumulator, 0, 0, 14435, 14435, 14435 -a0, write_requests, 7, Accumulator, 0, 0, 5020, 5020, 5020 -a0, split_read_requests, 7, Accumulator, 0, 0, 0, 0, 0 -a0, split_write_requests, 7, Accumulator, 0, 0, 0, 0, 0 -a0, no_ops, 7, Accumulator, 0, 0, 40672, 40672, 40672 -a0, instruction_count, 7, Accumulator, 0, 0, 19339, 19339, 19339 -a0, fp_sp_ins, 7, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ins, 7, Accumulator, 0, 0, 5227, 5227, 5227 -a0, fp_sp_simd_ins, 7, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_simd_ins, 7, Accumulator, 0, 0, 0, 0, 0 -a0, fp_sp_scalar_ins, 7, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_scalar_ins, 7, Accumulator, 0, 0, 5227, 5227, 5227 -a0, fp_sp_ops, 7, Accumulator, 0, 0, 0, 0, 0 -a0, fp_dp_ops, 7, Accumulator, 0, 0, 5227, 5227, 5227 -rtr.0, send_bit_count, port0, Accumulator, 0, 0, 3123904, 1667411968, 9003 -rtr.0, send_packet_count, port0, Accumulator, 0, 0, 9003, 9003, 9003 -rtr.0, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.0, idle_time, port0, Accumulator, 0, 0, 139732143427780, 6378860427073603936, 16338 -rtr.0, send_bit_count, port1, Accumulator, 0, 0, 2004928, 1024847872, 7007 -rtr.0, send_packet_count, port1, Accumulator, 0, 0, 7007, 7007, 7007 -rtr.0, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.0, idle_time, port1, Accumulator, 0, 0, 110468341883690, 7944897662504490540, 12980 -rtr.0, send_bit_count, port2, Accumulator, 0, 0, 1332800, 693112832, 4337 -rtr.0, send_packet_count, port2, Accumulator, 0, 0, 4337, 4337, 4337 -rtr.0, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.0, idle_time, port2, Accumulator, 0, 0, 18446744073707927266, 15644676232814706100, 4234 -rtr.0, xbar_stalls, port0, Accumulator, 0, 0, 223, 223, 223 -rtr.0, xbar_stalls, port1, Accumulator, 0, 0, 806, 806, 806 -rtr.0, xbar_stalls, port2, Accumulator, 0, 0, 468, 468, 468 -rtr.1, send_bit_count, port0, Accumulator, 0, 0, 2576192, 1312378880, 9125 -rtr.1, send_packet_count, port0, Accumulator, 0, 0, 9125, 9125, 9125 -rtr.1, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.1, idle_time, port0, Accumulator, 0, 0, 139945404632938, 13169436556040925492, 16542 -rtr.1, send_bit_count, port1, Accumulator, 0, 0, 2601600, 1331994624, 9034 -rtr.1, send_packet_count, port1, Accumulator, 0, 0, 9034, 9034, 9034 -rtr.1, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.1, idle_time, port1, Accumulator, 0, 0, 139296931560728, 11606836209357007888, 16483 -rtr.1, send_bit_count, port2, Accumulator, 0, 0, 1461440, 831401984, 2819 -rtr.1, send_packet_count, port2, Accumulator, 0, 0, 2819, 2819, 2819 -rtr.1, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.1, idle_time, port2, Accumulator, 0, 0, 18446744073707770486, 15647463332516752948, 2462 -rtr.1, xbar_stalls, port0, Accumulator, 0, 0, 209, 209, 209 -rtr.1, xbar_stalls, port1, Accumulator, 0, 0, 106, 106, 106 -rtr.1, xbar_stalls, port2, Accumulator, 0, 0, 278, 278, 278 -rtr.2, send_bit_count, port0, Accumulator, 0, 0, 3247104, 1670873088, 11048 -rtr.2, send_packet_count, port0, Accumulator, 0, 0, 11048, 11048, 11048 -rtr.2, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.2, idle_time, port0, Accumulator, 0, 0, 166670892704024, 5748562391124204816, 19671 -rtr.2, send_bit_count, port1, Accumulator, 0, 0, 3193472, 1707843584, 9114 -rtr.2, send_packet_count, port1, Accumulator, 0, 0, 9114, 9114, 9114 -rtr.2, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.2, idle_time, port1, Accumulator, 0, 0, 141583210708698, 12387662605570907676, 16617 -rtr.2, send_bit_count, port2, Accumulator, 0, 0, 1329536, 690544640, 4350 -rtr.2, send_packet_count, port2, Accumulator, 0, 0, 4350, 4350, 4350 -rtr.2, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.2, idle_time, port2, Accumulator, 0, 0, 18446744073707931244, 15647349705323760640, 4234 -rtr.2, xbar_stalls, port0, Accumulator, 0, 0, 256, 256, 256 -rtr.2, xbar_stalls, port1, Accumulator, 0, 0, 662, 662, 662 -rtr.2, xbar_stalls, port2, Accumulator, 0, 0, 913, 913, 913 -rtr.3, send_bit_count, port0, Accumulator, 0, 0, 2721792, 1329364992, 11192 -rtr.3, send_packet_count, port0, Accumulator, 0, 0, 11192, 11192, 11192 -rtr.3, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.3, idle_time, port0, Accumulator, 0, 0, 170136213756850, 10497170882186086556, 20216 -rtr.3, send_bit_count, port1, Accumulator, 0, 0, 3760192, 1998622720, 11065 -rtr.3, send_packet_count, port1, Accumulator, 0, 0, 11065, 11065, 11065 -rtr.3, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.3, idle_time, port1, Accumulator, 0, 0, 168258376725472, 10623522199903680560, 19830 -rtr.3, send_bit_count, port2, Accumulator, 0, 0, 1362304, 777871360, 2550 -rtr.3, send_packet_count, port2, Accumulator, 0, 0, 2550, 2550, 2550 -rtr.3, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.3, idle_time, port2, Accumulator, 0, 0, 18446744073707891308, 15961211280153325792, 2174 -rtr.3, xbar_stalls, port0, Accumulator, 0, 0, 85, 85, 85 -rtr.3, xbar_stalls, port1, Accumulator, 0, 0, 52, 52, 52 -rtr.3, xbar_stalls, port2, Accumulator, 0, 0, 451, 451, 451 -rtr.4, send_bit_count, port0, Accumulator, 0, 0, 3747456, 1984536576, 11226 -rtr.4, send_packet_count, port0, Accumulator, 0, 0, 11226, 11226, 11226 -rtr.4, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.4, idle_time, port0, Accumulator, 0, 0, 172505497615422, 2537113061603384196, 20358 -rtr.4, send_bit_count, port1, Accumulator, 0, 0, 4348224, 2370686976, 11181 -rtr.4, send_packet_count, port1, Accumulator, 0, 0, 11181, 11181, 11181 -rtr.4, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.4, idle_time, port1, Accumulator, 0, 0, 168538527252528, 8894528669374482200, 19724 -rtr.4, send_bit_count, port2, Accumulator, 0, 0, 253760, 16240640, 3965 -rtr.4, send_packet_count, port2, Accumulator, 0, 0, 3965, 3965, 3965 -rtr.4, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.4, idle_time, port2, Accumulator, 0, 0, 18446744073709242346, 15645164955056536132, 3915 -rtr.4, xbar_stalls, port0, Accumulator, 0, 0, 259, 259, 259 -rtr.4, xbar_stalls, port1, Accumulator, 0, 0, 462, 462, 462 -rtr.4, xbar_stalls, port2, Accumulator, 0, 0, 48, 48, 48 -rtr.5, send_bit_count, port0, Accumulator, 0, 0, 4414208, 2340110336, 13156 -rtr.5, send_packet_count, port0, Accumulator, 0, 0, 13156, 13156, 13156 -rtr.5, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.5, idle_time, port0, Accumulator, 0, 0, 196863874351250, 4916774988968434324, 23245 -rtr.5, send_bit_count, port1, Accumulator, 0, 0, 3346112, 1727934464, 11219 -rtr.5, send_packet_count, port1, Accumulator, 0, 0, 11219, 11219, 11219 -rtr.5, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.5, idle_time, port1, Accumulator, 0, 0, 162756978778028, 9323597382642472056, 19360 -rtr.5, send_bit_count, port2, Accumulator, 0, 0, 1355392, 704585728, 4418 -rtr.5, send_packet_count, port2, Accumulator, 0, 0, 4418, 4418, 4418 -rtr.5, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.5, idle_time, port2, Accumulator, 0, 0, 18446744073707899732, 15647099491265092120, 4334 -rtr.5, xbar_stalls, port0, Accumulator, 0, 0, 953, 953, 953 -rtr.5, xbar_stalls, port1, Accumulator, 0, 0, 1037, 1037, 1037 -rtr.5, xbar_stalls, port2, Accumulator, 0, 0, 828, 828, 828 -rtr.6, send_bit_count, port0, Accumulator, 0, 0, 3895552, 2001682432, 13332 -rtr.6, send_packet_count, port0, Accumulator, 0, 0, 13332, 13332, 13332 -rtr.6, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.6, idle_time, port0, Accumulator, 0, 0, 199773568200522, 9868698255003638924, 23778 -rtr.6, send_bit_count, port1, Accumulator, 0, 0, 3919040, 2022649856, 13171 -rtr.6, send_packet_count, port1, Accumulator, 0, 0, 13171, 13171, 13171 -rtr.6, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.6, idle_time, port1, Accumulator, 0, 0, 193366450713158, 5106173867338944228, 23108 -rtr.6, send_bit_count, port2, Accumulator, 0, 0, 1340160, 767016960, 2460 -rtr.6, send_packet_count, port2, Accumulator, 0, 0, 2460, 2460, 2460 -rtr.6, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.6, idle_time, port2, Accumulator, 0, 0, 18446744073707918296, 15962519067895295992, 1988 -rtr.6, xbar_stalls, port0, Accumulator, 0, 0, 262, 262, 262 -rtr.6, xbar_stalls, port1, Accumulator, 0, 0, 550, 550, 550 -rtr.6, xbar_stalls, port2, Accumulator, 0, 0, 479, 479, 479 -rtr.7, send_bit_count, port0, Accumulator, 0, 0, 3365376, 1738604544, 11264 -rtr.7, send_packet_count, port0, Accumulator, 0, 0, 11264, 11264, 11264 -rtr.7, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.7, idle_time, port0, Accumulator, 0, 0, 169829335401994, 1312669826223764244, 20125 -rtr.7, send_bit_count, port1, Accumulator, 0, 0, 4530240, 2407698432, 13337 -rtr.7, send_packet_count, port1, Accumulator, 0, 0, 13337, 13337, 13337 -rtr.7, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.7, idle_time, port1, Accumulator, 0, 0, 195666462830936, 15054070672457370896, 23136 -rtr.7, send_bit_count, port2, Accumulator, 0, 0, 1600192, 815214592, 5667 -rtr.7, send_packet_count, port2, Accumulator, 0, 0, 5667, 5667, 5667 -rtr.7, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.7, idle_time, port2, Accumulator, 0, 0, 18446744073707601382, 15651967353756943924, 5515 -rtr.7, xbar_stalls, port0, Accumulator, 0, 0, 1732, 1732, 1732 -rtr.7, xbar_stalls, port1, Accumulator, 0, 0, 434, 434, 434 -rtr.7, xbar_stalls, port2, Accumulator, 0, 0, 918, 918, 918 -rtr.8, send_bit_count, port0, Accumulator, 0, 0, 2803264, 1380880384, 11209 -rtr.8, send_packet_count, port0, Accumulator, 0, 0, 11209, 11209, 11209 -rtr.8, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.8, idle_time, port0, Accumulator, 0, 0, 169323054434220, 17124487797145500744, 20189 -rtr.8, send_bit_count, port1, Accumulator, 0, 0, 3747456, 1982177280, 11290 -rtr.8, send_packet_count, port1, Accumulator, 0, 0, 11290, 11290, 11290 -rtr.8, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.8, idle_time, port1, Accumulator, 0, 0, 171450344218276, 13937147090208687096, 20212 -rtr.8, send_bit_count, port2, Accumulator, 0, 0, 1344064, 767266816, 2521 -rtr.8, send_packet_count, port2, Accumulator, 0, 0, 2521, 2521, 2521 -rtr.8, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.8, idle_time, port2, Accumulator, 0, 0, 18446744073707913538, 15961044546877372084, 2147 -rtr.8, xbar_stalls, port0, Accumulator, 0, 0, 166, 166, 166 -rtr.8, xbar_stalls, port1, Accumulator, 0, 0, 364, 364, 364 -rtr.8, xbar_stalls, port2, Accumulator, 0, 0, 470, 470, 470 -rtr.9, send_bit_count, port0, Accumulator, 0, 0, 3821888, 2031472640, 11245 -rtr.9, send_packet_count, port0, Accumulator, 0, 0, 11245, 11245, 11245 -rtr.9, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.9, idle_time, port0, Accumulator, 0, 0, 172996348880168, 10737245514787109784, 20434 -rtr.9, send_bit_count, port1, Accumulator, 0, 0, 4277184, 2324852736, 11191 -rtr.9, send_packet_count, port1, Accumulator, 0, 0, 11191, 11191, 11191 -rtr.9, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.9, idle_time, port1, Accumulator, 0, 0, 169638701137002, 18046472784236552444, 19855 -rtr.9, send_bit_count, port2, Accumulator, 0, 0, 252032, 16130048, 3938 -rtr.9, send_packet_count, port2, Accumulator, 0, 0, 3938, 3938, 3938 -rtr.9, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.9, idle_time, port2, Accumulator, 0, 0, 18446744073709244452, 15648082615997685280, 3898 -rtr.9, xbar_stalls, port0, Accumulator, 0, 0, 1367, 1367, 1367 -rtr.9, xbar_stalls, port1, Accumulator, 0, 0, 462, 462, 462 -rtr.9, xbar_stalls, port2, Accumulator, 0, 0, 832, 832, 832 -rtr.10, send_bit_count, port0, Accumulator, 0, 0, 3210432, 1716301824, 9179 -rtr.10, send_packet_count, port0, Accumulator, 0, 0, 9179, 9179, 9179 -rtr.10, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.10, idle_time, port0, Accumulator, 0, 0, 144759717071650, 1721124323597504476, 16976 -rtr.10, send_bit_count, port1, Accumulator, 0, 0, 3283584, 1687363584, 11234 -rtr.10, send_packet_count, port1, Accumulator, 0, 0, 11234, 11234, 11234 -rtr.10, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.10, idle_time, port1, Accumulator, 0, 0, 167825742041444, 13232209669247399144, 19930 -rtr.10, send_bit_count, port2, Accumulator, 0, 0, 1347264, 701116416, 4371 -rtr.10, send_packet_count, port2, Accumulator, 0, 0, 4371, 4371, 4371 -rtr.10, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.10, idle_time, port2, Accumulator, 0, 0, 18446744073707909638, 15654835990257519412, 4283 -rtr.10, xbar_stalls, port0, Accumulator, 0, 0, 528, 528, 528 -rtr.10, xbar_stalls, port1, Accumulator, 0, 0, 257, 257, 257 -rtr.10, xbar_stalls, port2, Accumulator, 0, 0, 924, 924, 924 -rtr.11, send_bit_count, port0, Accumulator, 0, 0, 2564672, 1311936512, 8937 -rtr.11, send_packet_count, port0, Accumulator, 0, 0, 8937, 8937, 8937 -rtr.11, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.11, idle_time, port0, Accumulator, 0, 0, 139292479967622, 11907081177427668740, 16446 -rtr.11, send_bit_count, port1, Accumulator, 0, 0, 2581376, 1313300480, 9190 -rtr.11, send_packet_count, port1, Accumulator, 0, 0, 9190, 9190, 9190 -rtr.11, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.11, idle_time, port1, Accumulator, 0, 0, 141852188029620, 16787344315627321256, 16783 -rtr.11, send_bit_count, port2, Accumulator, 0, 0, 1370944, 784322560, 2525 -rtr.11, send_packet_count, port2, Accumulator, 0, 0, 2525, 2525, 2525 -rtr.11, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.11, idle_time, port2, Accumulator, 0, 0, 18446744073707880778, 15962223829118880772, 2315 -rtr.11, xbar_stalls, port0, Accumulator, 0, 0, 165, 165, 165 -rtr.11, xbar_stalls, port1, Accumulator, 0, 0, 79, 79, 79 -rtr.11, xbar_stalls, port2, Accumulator, 0, 0, 307, 307, 307 -rtr.12, send_bit_count, port0, Accumulator, 0, 0, 1997632, 1020841984, 6989 -rtr.12, send_packet_count, port0, Accumulator, 0, 0, 6989, 6989, 6989 -rtr.12, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.12, idle_time, port0, Accumulator, 0, 0, 112323917008078, 4830097498266741788, 13161 -rtr.12, send_bit_count, port1, Accumulator, 0, 0, 3082624, 1644421120, 8910 -rtr.12, send_packet_count, port1, Accumulator, 0, 0, 8910, 8910, 8910 -rtr.12, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.12, idle_time, port1, Accumulator, 0, 0, 138649548241690, 309930240226509028, 16256 -rtr.12, send_bit_count, port2, Accumulator, 0, 0, 1363456, 707756032, 4472 -rtr.12, send_packet_count, port2, Accumulator, 0, 0, 4472, 4472, 4472 -rtr.12, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.12, idle_time, port2, Accumulator, 0, 0, 18446744073707889904, 15652505943543472624, 4344 -rtr.12, xbar_stalls, port0, Accumulator, 0, 0, 828, 828, 828 -rtr.12, xbar_stalls, port1, Accumulator, 0, 0, 171, 171, 171 -rtr.12, xbar_stalls, port2, Accumulator, 0, 0, 465, 465, 465 -rtr.13, send_bit_count, port0, Accumulator, 0, 0, 1394624, 639561728, 6863 -rtr.13, send_packet_count, port0, Accumulator, 0, 0, 6863, 6863, 6863 -rtr.13, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.13, idle_time, port0, Accumulator, 0, 0, 107916404886812, 15231819324344309088, 12790 -rtr.13, send_bit_count, port1, Accumulator, 0, 0, 2413248, 1286615040, 6995 -rtr.13, send_packet_count, port1, Accumulator, 0, 0, 6995, 6995, 6995 -rtr.13, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.13, idle_time, port1, Accumulator, 0, 0, 110269871826098, 282281162957971804, 12984 -rtr.13, send_bit_count, port2, Accumulator, 0, 0, 1361024, 778674176, 2506 -rtr.13, send_packet_count, port2, Accumulator, 0, 0, 2506, 2506, 2506 -rtr.13, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.13, idle_time, port2, Accumulator, 0, 0, 18446744073707892868, 15960371254322975056, 2332 -rtr.13, xbar_stalls, port0, Accumulator, 0, 0, 130, 130, 130 -rtr.13, xbar_stalls, port1, Accumulator, 0, 0, 421, 421, 421 -rtr.13, xbar_stalls, port2, Accumulator, 0, 0, 264, 264, 264 -rtr.14, send_bit_count, port0, Accumulator, 0, 0, 2419392, 1294970880, 6875 -rtr.14, send_packet_count, port0, Accumulator, 0, 0, 6875, 6875, 6875 -rtr.14, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.14, idle_time, port0, Accumulator, 0, 0, 108244931558500, 13923855731524864528, 12771 -rtr.14, send_bit_count, port1, Accumulator, 0, 0, 2952192, 1636663296, 6856 -rtr.14, send_packet_count, port1, Accumulator, 0, 0, 6856, 6856, 6856 -rtr.14, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.14, idle_time, port1, Accumulator, 0, 0, 111119987335162, 9332345173868442036, 12936 -rtr.14, send_bit_count, port2, Accumulator, 0, 0, 255552, 16355328, 3993 -rtr.14, send_packet_count, port2, Accumulator, 0, 0, 3993, 3993, 3993 -rtr.14, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.14, idle_time, port2, Accumulator, 0, 0, 18446744073709240162, 15645318837217694164, 3957 -rtr.14, xbar_stalls, port0, Accumulator, 0, 0, 185, 185, 185 -rtr.14, xbar_stalls, port1, Accumulator, 0, 0, 271, 271, 271 -rtr.14, xbar_stalls, port2, Accumulator, 0, 0, 82, 82, 82 -rtr.15, send_bit_count, port0, Accumulator, 0, 0, 1840512, 997220352, 4902 -rtr.15, send_packet_count, port0, Accumulator, 0, 0, 4902, 4902, 4902 -rtr.15, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.15, idle_time, port0, Accumulator, 0, 0, 78818848577700, 7517151130265400696, 9222 -rtr.15, send_bit_count, port1, Accumulator, 0, 0, 1936000, 985636864, 6874 -rtr.15, send_packet_count, port1, Accumulator, 0, 0, 6874, 6874, 6874 -rtr.15, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.15, idle_time, port1, Accumulator, 0, 0, 110142459160686, 8997929261754924364, 12923 -rtr.15, send_bit_count, port2, Accumulator, 0, 0, 1362048, 708255744, 4434 -rtr.15, send_packet_count, port2, Accumulator, 0, 0, 4434, 4434, 4434 -rtr.15, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.15, idle_time, port2, Accumulator, 0, 0, 18446744073707891620, 15645101791493547496, 4342 -rtr.15, xbar_stalls, port0, Accumulator, 0, 0, 260, 260, 260 -rtr.15, xbar_stalls, port1, Accumulator, 0, 0, 186, 186, 186 -rtr.15, xbar_stalls, port2, Accumulator, 0, 0, 349, 349, 349 -rtr.16, send_bit_count, port0, Accumulator, 0, 0, 1221184, 606048256, 4761 -rtr.16, send_packet_count, port0, Accumulator, 0, 0, 4761, 4761, 4761 -rtr.16, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.16, idle_time, port0, Accumulator, 0, 0, 74518773917962, 3398610877437998564, 8813 -rtr.16, send_bit_count, port1, Accumulator, 0, 0, 1263808, 627060736, 4931 -rtr.16, send_packet_count, port1, Accumulator, 0, 0, 4931, 4931, 4931 -rtr.16, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.16, idle_time, port1, Accumulator, 0, 0, 76781670391526, 9631293783142972116, 9115 -rtr.16, send_bit_count, port2, Accumulator, 0, 0, 1371904, 785268736, 2516 -rtr.16, send_packet_count, port2, Accumulator, 0, 0, 2516, 2516, 2516 -rtr.16, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.16, idle_time, port2, Accumulator, 0, 0, 18446744073707879608, 15961509450977461120, 2315 -rtr.16, xbar_stalls, port0, Accumulator, 0, 0, 537, 537, 537 -rtr.16, xbar_stalls, port1, Accumulator, 0, 0, 59, 59, 59 -rtr.16, xbar_stalls, port2, Accumulator, 0, 0, 116, 116, 116 -rtr.17, send_bit_count, port0, Accumulator, 0, 0, 1895168, 966213632, 6692 -rtr.17, send_packet_count, port0, Accumulator, 0, 0, 6692, 6692, 6692 -rtr.17, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.17, idle_time, port0, Accumulator, 0, 0, 104460784903376, 9185041638189603136, 12257 -rtr.17, send_bit_count, port1, Accumulator, 0, 0, 1796096, 974618624, 4744 -rtr.17, send_packet_count, port1, Accumulator, 0, 0, 4744, 4744, 4744 -rtr.17, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.17, idle_time, port1, Accumulator, 0, 0, 76381544813242, 3225431059409810740, 8940 -rtr.17, send_bit_count, port2, Accumulator, 0, 0, 1361536, 707338240, 4450 -rtr.17, send_packet_count, port2, Accumulator, 0, 0, 4450, 4450, 4450 -rtr.17, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.17, idle_time, port2, Accumulator, 0, 0, 18446744073707892244, 15652700340099058000, 4336 -rtr.17, xbar_stalls, port0, Accumulator, 0, 0, 154, 154, 154 -rtr.17, xbar_stalls, port1, Accumulator, 0, 0, 681, 681, 681 -rtr.17, xbar_stalls, port2, Accumulator, 0, 0, 347, 347, 347 -rtr.18, send_bit_count, port0, Accumulator, 0, 0, 1412608, 646021120, 7000 -rtr.18, send_packet_count, port0, Accumulator, 0, 0, 7000, 7000, 7000 -rtr.18, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.18, idle_time, port0, Accumulator, 0, 0, 108273468969882, 14088476135259393108, 12823 -rtr.18, send_bit_count, port1, Accumulator, 0, 0, 2371776, 1270394880, 6715 -rtr.18, send_packet_count, port1, Accumulator, 0, 0, 6715, 6715, 6715 -rtr.18, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.18, idle_time, port1, Accumulator, 0, 0, 105799509712110, 3739590058407761828, 12474 -rtr.18, send_bit_count, port2, Accumulator, 0, 0, 1353984, 774389760, 2500 -rtr.18, send_packet_count, port2, Accumulator, 0, 0, 2500, 2500, 2500 -rtr.18, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.18, idle_time, port2, Accumulator, 0, 0, 18446744073707901448, 15962144576932513720, 2340 -rtr.18, xbar_stalls, port0, Accumulator, 0, 0, 77, 77, 77 -rtr.18, xbar_stalls, port1, Accumulator, 0, 0, 38, 38, 38 -rtr.18, xbar_stalls, port2, Accumulator, 0, 0, 217, 217, 217 -rtr.19, send_bit_count, port0, Accumulator, 0, 0, 2432832, 1298780160, 7005 -rtr.19, send_packet_count, port0, Accumulator, 0, 0, 7005, 7005, 7005 -rtr.19, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 -rtr.19, idle_time, port0, Accumulator, 0, 0, 109494625750876, 11318544427755874872, 12885 -rtr.19, send_bit_count, port1, Accumulator, 0, 0, 3020032, 1674919936, 6996 -rtr.19, send_packet_count, port1, Accumulator, 0, 0, 6996, 6996, 6996 -rtr.19, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 -rtr.19, idle_time, port1, Accumulator, 0, 0, 111493853052144, 13392040220360405752, 13002 -rtr.19, send_bit_count, port2, Accumulator, 0, 0, 254784, 16306176, 3981 -rtr.19, send_packet_count, port2, Accumulator, 0, 0, 3981, 3981, 3981 -rtr.19, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 -rtr.19, idle_time, port2, Accumulator, 0, 0, 18446744073709241098, 15652071472710857284, 3930 -rtr.19, xbar_stalls, port0, Accumulator, 0, 0, 89, 89, 89 -rtr.19, xbar_stalls, port1, Accumulator, 0, 0, 190, 190, 190 -rtr.19, xbar_stalls, port2, Accumulator, 0, 0, 151, 151, 151 -l3cache_0, packet_latency, , Accumulator, 0, 0, 11412, 35686, 4337 -l3cache_0, send_bit_count, , Accumulator, 0, 0, 1427200, 754597888, 4308 -l3cache_0, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, idle_time, , Accumulator, 0, 0, 17446255972, 6010266647463042998, 4276 -l3cache_0, TotalEventsReceived, , Accumulator, 0, 0, 4337, 4337, 4337 -l3cache_0, TotalEventsReplayed, , Accumulator, 0, 0, 26, 26, 26 -l3cache_0, CacheHits, , Accumulator, 0, 0, 193, 193, 193 -l3cache_0, GetSHit_Arrival, , Accumulator, 0, 0, 176, 176, 176 -l3cache_0, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, GetSHit_Blocked, , Accumulator, 0, 0, 17, 17, 17 -l3cache_0, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, CacheMisses, , Accumulator, 0, 0, 2059, 2059, 2059 -l3cache_0, GetSMiss_Arrival, , Accumulator, 0, 0, 1990, 1990, 1990 -l3cache_0, GetXMiss_Arrival, , Accumulator, 0, 0, 60, 60, 60 -l3cache_0, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, GetSMiss_Blocked, , Accumulator, 0, 0, 9, 9, 9 -l3cache_0, GetXMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, GetS_recv, , Accumulator, 0, 0, 2192, 2192, 2192 -l3cache_0, GetX_recv, , Accumulator, 0, 0, 60, 60, 60 -l3cache_0, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, GetSResp_recv, , Accumulator, 0, 0, 1902, 1902, 1902 -l3cache_0, GetXResp_recv, , Accumulator, 0, 0, 60, 60, 60 -l3cache_0, PutS_recv, , Accumulator, 0, 0, 7, 7, 7 -l3cache_0, PutM_recv, , Accumulator, 0, 0, 5, 5, 5 -l3cache_0, PutE_recv, , Accumulator, 0, 0, 17, 17, 17 -l3cache_0, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, MSHR_occupancy, , Accumulator, 0, 0, 676067, 2413259, 46430907 -l3cache_0, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetS_I, , Accumulator, 0, 0, 1905, 1905, 1905 -l3cache_0, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetS_E, , Accumulator, 0, 0, 280, 280, 280 -l3cache_0, stateEvent_GetS_M, , Accumulator, 0, 0, 7, 7, 7 -l3cache_0, stateEvent_GetX_I, , Accumulator, 0, 0, 60, 60, 60 -l3cache_0, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1902, 1902, 1902 -l3cache_0, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 60, 60, 60 -l3cache_0, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_E, , Accumulator, 0, 0, 7, 7, 7 -l3cache_0, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutE_E, , Accumulator, 0, 0, 17, 17, 17 -l3cache_0, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutM_M, , Accumulator, 0, 0, 5, 5, 5 -l3cache_0, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 93, 93, 93 -l3cache_0, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 1, 1, 1 -l3cache_0, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, latency_GetS_IS, , Accumulator, 0, 0, 647569, 220559371, 1902 -l3cache_0, latency_GetS_M, , Accumulator, 0, 0, 5368, 800688, 94 -l3cache_0, latency_GetX_IM, , Accumulator, 0, 0, 20440, 6964390, 60 -l3cache_0, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, latency_GetSEx_M, , Accumulator, 0, 0, 5368, 800688, 94 -l3cache_0, eventSent_GetS, , Accumulator, 0, 0, 1905, 1905, 1905 -l3cache_0, eventSent_GetX, , Accumulator, 0, 0, 60, 60, 60 -l3cache_0, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_GetSResp, , Accumulator, 0, 0, 2189, 2189, 2189 -l3cache_0, eventSent_GetXResp, , Accumulator, 0, 0, 60, 60, 60 -l3cache_0, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_FetchInvX, , Accumulator, 0, 0, 94, 94, 94 -l3cache_0, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l3cache_0, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, TotalEventsReceived, , Accumulator, 0, 0, 28622, 28622, 28622 -l1cache_0, TotalEventsReplayed, , Accumulator, 0, 0, 7133, 7133, 7133 -l1cache_0, CacheHits, , Accumulator, 0, 0, 23024, 23024, 23024 -l1cache_0, GetSHit_Arrival, , Accumulator, 0, 0, 9587, 9587, 9587 -l1cache_0, GetXHit_Arrival, , Accumulator, 0, 0, 6352, 6352, 6352 -l1cache_0, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, GetSHit_Blocked, , Accumulator, 0, 0, 6735, 6735, 6735 -l1cache_0, GetXHit_Blocked, , Accumulator, 0, 0, 350, 350, 350 -l1cache_0, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, CacheMisses, , Accumulator, 0, 0, 2651, 2651, 2651 -l1cache_0, GetSMiss_Arrival, , Accumulator, 0, 0, 2515, 2515, 2515 -l1cache_0, GetXMiss_Arrival, , Accumulator, 0, 0, 96, 96, 96 -l1cache_0, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, GetXMiss_Blocked, , Accumulator, 0, 0, 40, 40, 40 -l1cache_0, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, GetS_recv, , Accumulator, 0, 0, 18849, 18849, 18849 -l1cache_0, GetX_recv, , Accumulator, 0, 0, 6838, 6838, 6838 -l1cache_0, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, GetSResp_recv, , Accumulator, 0, 0, 2511, 2511, 2511 -l1cache_0, GetXResp_recv, , Accumulator, 0, 0, 136, 136, 136 -l1cache_0, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, FetchInv_recv, , Accumulator, 0, 0, 12, 12, 12 -l1cache_0, FetchInvX_recv, , Accumulator, 0, 0, 226, 226, 226 -l1cache_0, Inv_recv, , Accumulator, 0, 0, 50, 50, 50 -l1cache_0, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, MSHR_occupancy, , Accumulator, 0, 0, 3021689, 39588487, 46430892 -l1cache_0, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, evict_S, , Accumulator, 0, 0, 333, 333, 333 -l1cache_0, evict_E, , Accumulator, 0, 0, 1637, 1637, 1637 -l1cache_0, evict_M, , Accumulator, 0, 0, 75, 75, 75 -l1cache_0, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_GetS_I, , Accumulator, 0, 0, 2515, 2515, 2515 -l1cache_0, stateEvent_GetS_S, , Accumulator, 0, 0, 3464, 3464, 3464 -l1cache_0, stateEvent_GetS_E, , Accumulator, 0, 0, 8681, 8681, 8681 -l1cache_0, stateEvent_GetS_M, , Accumulator, 0, 0, 4177, 4177, 4177 -l1cache_0, stateEvent_GetX_I, , Accumulator, 0, 0, 95, 95, 95 -l1cache_0, stateEvent_GetX_S, , Accumulator, 0, 0, 41, 41, 41 -l1cache_0, stateEvent_GetX_E, , Accumulator, 0, 0, 13, 13, 13 -l1cache_0, stateEvent_GetX_M, , Accumulator, 0, 0, 6689, 6689, 6689 -l1cache_0, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2511, 2511, 2511 -l1cache_0, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 103, 103, 103 -l1cache_0, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 33, 33, 33 -l1cache_0, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Inv_S, , Accumulator, 0, 0, 42, 42, 42 -l1cache_0, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 -l1cache_0, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_M, , Accumulator, 0, 0, 12, 12, 12 -l1cache_0, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 171, 171, 171 -l1cache_0, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 55, 55, 55 -l1cache_0, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, latency_GetS_IS, , Accumulator, 0, 0, 823396, 304326136, 2511 -l1cache_0, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, latency_GetX_IM, , Accumulator, 0, 0, 34364, 12783642, 95 -l1cache_0, latency_GetX_SM, , Accumulator, 0, 0, 5444, 738354, 41 -l1cache_0, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, eventSent_GetS, , Accumulator, 0, 0, 2515, 2515, 2515 -l1cache_0, eventSent_GetX, , Accumulator, 0, 0, 136, 136, 136 -l1cache_0, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, eventSent_GetSResp, , Accumulator, 0, 0, 18833, 18833, 18833 -l1cache_0, eventSent_GetXResp, , Accumulator, 0, 0, 6838, 6838, 6838 -l1cache_0, eventSent_PutS, , Accumulator, 0, 0, 333, 333, 333 -l1cache_0, eventSent_PutE, , Accumulator, 0, 0, 1637, 1637, 1637 -l1cache_0, eventSent_PutM, , Accumulator, 0, 0, 75, 75, 75 -l1cache_0, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, eventSent_FetchResp, , Accumulator, 0, 0, 12, 12, 12 -l1cache_0, eventSent_FetchXResp, , Accumulator, 0, 0, 226, 226, 226 -l1cache_0, eventSent_AckInv, , Accumulator, 0, 0, 50, 50, 50 -l1cache_0, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l1cache_0, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, packet_latency, , Accumulator, 0, 0, 9093, 34975, 2819 -l2cache_0, send_bit_count, , Accumulator, 0, 0, 321856, 100519936, 2861 -l2cache_0, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, idle_time, , Accumulator, 0, 0, 17403682544, 6010188400520452576, 2704 -l2cache_0, TotalEventsReceived, , Accumulator, 0, 0, 7803, 7803, 7803 -l2cache_0, TotalEventsReplayed, , Accumulator, 0, 0, 8, 8, 8 -l2cache_0, CacheHits, , Accumulator, 0, 0, 145, 145, 145 -l2cache_0, GetSHit_Arrival, , Accumulator, 0, 0, 145, 145, 145 -l2cache_0, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, CacheMisses, , Accumulator, 0, 0, 2506, 2506, 2506 -l2cache_0, GetSMiss_Arrival, , Accumulator, 0, 0, 2370, 2370, 2370 -l2cache_0, GetXMiss_Arrival, , Accumulator, 0, 0, 136, 136, 136 -l2cache_0, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, GetXMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, GetS_recv, , Accumulator, 0, 0, 2515, 2515, 2515 -l2cache_0, GetX_recv, , Accumulator, 0, 0, 136, 136, 136 -l2cache_0, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, GetSResp_recv, , Accumulator, 0, 0, 2366, 2366, 2366 -l2cache_0, GetXResp_recv, , Accumulator, 0, 0, 136, 136, 136 -l2cache_0, PutS_recv, , Accumulator, 0, 0, 333, 333, 333 -l2cache_0, PutM_recv, , Accumulator, 0, 0, 75, 75, 75 -l2cache_0, PutE_recv, , Accumulator, 0, 0, 1637, 1637, 1637 -l2cache_0, FetchInv_recv, , Accumulator, 0, 0, 12, 12, 12 -l2cache_0, FetchInvX_recv, , Accumulator, 0, 0, 255, 255, 255 -l2cache_0, Inv_recv, , Accumulator, 0, 0, 50, 50, 50 -l2cache_0, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, MSHR_occupancy, , Accumulator, 0, 0, 848229, 3745665, 46430892 -l2cache_0, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, evict_S, , Accumulator, 0, 0, 11, 11, 11 -l2cache_0, evict_E, , Accumulator, 0, 0, 23, 23, 23 -l2cache_0, evict_M, , Accumulator, 0, 0, 4, 4, 4 -l2cache_0, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetS_I, , Accumulator, 0, 0, 2370, 2370, 2370 -l2cache_0, stateEvent_GetS_S, , Accumulator, 0, 0, 84, 84, 84 -l2cache_0, stateEvent_GetS_E, , Accumulator, 0, 0, 61, 61, 61 -l2cache_0, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetX_I, , Accumulator, 0, 0, 95, 95, 95 -l2cache_0, stateEvent_GetX_S, , Accumulator, 0, 0, 41, 41, 41 -l2cache_0, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2366, 2366, 2366 -l2cache_0, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 103, 103, 103 -l2cache_0, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 33, 33, 33 -l2cache_0, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_S, , Accumulator, 0, 0, 333, 333, 333 -l2cache_0, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutE_E, , Accumulator, 0, 0, 1637, 1637, 1637 -l2cache_0, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutM_E, , Accumulator, 0, 0, 10, 10, 10 -l2cache_0, stateEvent_PutM_M, , Accumulator, 0, 0, 65, 65, 65 -l2cache_0, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Inv_S, , Accumulator, 0, 0, 42, 42, 42 -l2cache_0, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 -l2cache_0, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_M, , Accumulator, 0, 0, 12, 12, 12 -l2cache_0, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 202, 202, 202 -l2cache_0, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 53, 53, 53 -l2cache_0, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 12, 12, 12 -l2cache_0, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 173, 173, 173 -l2cache_0, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 53, 53, 53 -l2cache_0, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 42, 42, 42 -l2cache_0, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 8, 8, 8 -l2cache_0, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, latency_GetS_IS, , Accumulator, 0, 0, 807750, 294533460, 2366 -l2cache_0, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, latency_GetX_IM, , Accumulator, 0, 0, 33794, 12374694, 95 -l2cache_0, latency_GetX_SM, , Accumulator, 0, 0, 3160, 252192, 41 -l2cache_0, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, eventSent_GetS, , Accumulator, 0, 0, 2370, 2370, 2370 -l2cache_0, eventSent_GetX, , Accumulator, 0, 0, 136, 136, 136 -l2cache_0, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, eventSent_GetSResp, , Accumulator, 0, 0, 2511, 2511, 2511 -l2cache_0, eventSent_GetXResp, , Accumulator, 0, 0, 136, 136, 136 -l2cache_0, eventSent_PutS, , Accumulator, 0, 0, 11, 11, 11 -l2cache_0, eventSent_PutE, , Accumulator, 0, 0, 23, 23, 23 -l2cache_0, eventSent_PutM, , Accumulator, 0, 0, 4, 4, 4 -l2cache_0, eventSent_Inv, , Accumulator, 0, 0, 50, 50, 50 -l2cache_0, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, eventSent_FetchInv, , Accumulator, 0, 0, 12, 12, 12 -l2cache_0, eventSent_FetchInvX, , Accumulator, 0, 0, 226, 226, 226 -l2cache_0, eventSent_FetchResp, , Accumulator, 0, 0, 12, 12, 12 -l2cache_0, eventSent_FetchXResp, , Accumulator, 0, 0, 255, 255, 255 -l2cache_0, eventSent_AckInv, , Accumulator, 0, 0, 50, 50, 50 -l2cache_0, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l2cache_0, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, packet_latency, , Accumulator, 0, 0, 15392, 59646, 4350 -l3cache_1, send_bit_count, , Accumulator, 0, 0, 1433728, 758259712, 4322 -l3cache_1, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, idle_time, , Accumulator, 0, 0, 17446223456, 6012978243379014214, 4279 -l3cache_1, TotalEventsReceived, , Accumulator, 0, 0, 4350, 4350, 4350 -l3cache_1, TotalEventsReplayed, , Accumulator, 0, 0, 21, 21, 21 -l3cache_1, CacheHits, , Accumulator, 0, 0, 207, 207, 207 -l3cache_1, GetSHit_Arrival, , Accumulator, 0, 0, 199, 199, 199 -l3cache_1, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, GetSHit_Blocked, , Accumulator, 0, 0, 8, 8, 8 -l3cache_1, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, CacheMisses, , Accumulator, 0, 0, 2056, 2056, 2056 -l3cache_1, GetSMiss_Arrival, , Accumulator, 0, 0, 1982, 1982, 1982 -l3cache_1, GetXMiss_Arrival, , Accumulator, 0, 0, 61, 61, 61 -l3cache_1, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, GetSMiss_Blocked, , Accumulator, 0, 0, 10, 10, 10 -l3cache_1, GetXMiss_Blocked, , Accumulator, 0, 0, 3, 3, 3 -l3cache_1, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, GetS_recv, , Accumulator, 0, 0, 2199, 2199, 2199 -l3cache_1, GetX_recv, , Accumulator, 0, 0, 64, 64, 64 -l3cache_1, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, GetSResp_recv, , Accumulator, 0, 0, 1887, 1887, 1887 -l3cache_1, GetXResp_recv, , Accumulator, 0, 0, 59, 59, 59 -l3cache_1, PutS_recv, , Accumulator, 0, 0, 8, 8, 8 -l3cache_1, PutM_recv, , Accumulator, 0, 0, 1, 1, 1 -l3cache_1, PutE_recv, , Accumulator, 0, 0, 19, 19, 19 -l3cache_1, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, MSHR_occupancy, , Accumulator, 0, 0, 685679, 2485989, 46430904 -l3cache_1, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetS_I, , Accumulator, 0, 0, 1890, 1890, 1890 -l3cache_1, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetS_E, , Accumulator, 0, 0, 289, 289, 289 -l3cache_1, stateEvent_GetS_M, , Accumulator, 0, 0, 20, 20, 20 -l3cache_1, stateEvent_GetX_I, , Accumulator, 0, 0, 59, 59, 59 -l3cache_1, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetX_M, , Accumulator, 0, 0, 5, 5, 5 -l3cache_1, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1887, 1887, 1887 -l3cache_1, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 59, 59, 59 -l3cache_1, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_E, , Accumulator, 0, 0, 6, 6, 6 -l3cache_1, stateEvent_PutS_M, , Accumulator, 0, 0, 2, 2, 2 -l3cache_1, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutE_E, , Accumulator, 0, 0, 19, 19, 19 -l3cache_1, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutM_M, , Accumulator, 0, 0, 1, 1, 1 -l3cache_1, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 4, 4, 4 -l3cache_1, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 100, 100, 100 -l3cache_1, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 2, 2, 2 -l3cache_1, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 7, 7, 7 -l3cache_1, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, latency_GetS_IS, , Accumulator, 0, 0, 657321, 229054389, 1887 -l3cache_1, latency_GetS_M, , Accumulator, 0, 0, 5823, 903767, 102 -l3cache_1, latency_GetX_IM, , Accumulator, 0, 0, 20673, 7252725, 59 -l3cache_1, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, latency_GetX_M, , Accumulator, 0, 0, 315, 22099, 5 -l3cache_1, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, latency_GetSEx_M, , Accumulator, 0, 0, 5823, 903767, 102 -l3cache_1, eventSent_GetS, , Accumulator, 0, 0, 1890, 1890, 1890 -l3cache_1, eventSent_GetX, , Accumulator, 0, 0, 59, 59, 59 -l3cache_1, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, eventSent_GetSResp, , Accumulator, 0, 0, 2196, 2196, 2196 -l3cache_1, eventSent_GetXResp, , Accumulator, 0, 0, 64, 64, 64 -l3cache_1, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, eventSent_Inv, , Accumulator, 0, 0, 7, 7, 7 -l3cache_1, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, eventSent_FetchInv, , Accumulator, 0, 0, 4, 4, 4 -l3cache_1, eventSent_FetchInvX, , Accumulator, 0, 0, 102, 102, 102 -l3cache_1, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l3cache_1, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, TotalEventsReceived, , Accumulator, 0, 0, 22217, 22217, 22217 -l1cache_1, TotalEventsReplayed, , Accumulator, 0, 0, 6686, 6686, 6686 -l1cache_1, CacheHits, , Accumulator, 0, 0, 17204, 17204, 17204 -l1cache_1, GetSHit_Arrival, , Accumulator, 0, 0, 5928, 5928, 5928 -l1cache_1, GetXHit_Arrival, , Accumulator, 0, 0, 4643, 4643, 4643 -l1cache_1, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, GetSHit_Blocked, , Accumulator, 0, 0, 6336, 6336, 6336 -l1cache_1, GetXHit_Blocked, , Accumulator, 0, 0, 297, 297, 297 -l1cache_1, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, CacheMisses, , Accumulator, 0, 0, 2432, 2432, 2432 -l1cache_1, GetSMiss_Arrival, , Accumulator, 0, 0, 2331, 2331, 2331 -l1cache_1, GetXMiss_Arrival, , Accumulator, 0, 0, 57, 57, 57 -l1cache_1, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, GetXMiss_Blocked, , Accumulator, 0, 0, 44, 44, 44 -l1cache_1, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, GetS_recv, , Accumulator, 0, 0, 14605, 14605, 14605 -l1cache_1, GetX_recv, , Accumulator, 0, 0, 5041, 5041, 5041 -l1cache_1, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, GetSResp_recv, , Accumulator, 0, 0, 2329, 2329, 2329 -l1cache_1, GetXResp_recv, , Accumulator, 0, 0, 101, 101, 101 -l1cache_1, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, FetchInv_recv, , Accumulator, 0, 0, 15, 15, 15 -l1cache_1, FetchInvX_recv, , Accumulator, 0, 0, 80, 80, 80 -l1cache_1, Inv_recv, , Accumulator, 0, 0, 46, 46, 46 -l1cache_1, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, MSHR_occupancy, , Accumulator, 0, 0, 2801887, 36870701, 46430821 -l1cache_1, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, evict_S, , Accumulator, 0, 0, 306, 306, 306 -l1cache_1, evict_E, , Accumulator, 0, 0, 1469, 1469, 1469 -l1cache_1, evict_M, , Accumulator, 0, 0, 49, 49, 49 -l1cache_1, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_GetS_I, , Accumulator, 0, 0, 2331, 2331, 2331 -l1cache_1, stateEvent_GetS_S, , Accumulator, 0, 0, 3433, 3433, 3433 -l1cache_1, stateEvent_GetS_E, , Accumulator, 0, 0, 6606, 6606, 6606 -l1cache_1, stateEvent_GetS_M, , Accumulator, 0, 0, 2225, 2225, 2225 -l1cache_1, stateEvent_GetX_I, , Accumulator, 0, 0, 56, 56, 56 -l1cache_1, stateEvent_GetX_S, , Accumulator, 0, 0, 45, 45, 45 -l1cache_1, stateEvent_GetX_E, , Accumulator, 0, 0, 2, 2, 2 -l1cache_1, stateEvent_GetX_M, , Accumulator, 0, 0, 4938, 4938, 4938 -l1cache_1, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2329, 2329, 2329 -l1cache_1, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 65, 65, 65 -l1cache_1, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 36, 36, 36 -l1cache_1, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Inv_S, , Accumulator, 0, 0, 37, 37, 37 -l1cache_1, stateEvent_Inv_SM, , Accumulator, 0, 0, 9, 9, 9 -l1cache_1, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_M, , Accumulator, 0, 0, 15, 15, 15 -l1cache_1, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 47, 47, 47 -l1cache_1, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 33, 33, 33 -l1cache_1, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, latency_GetS_IS, , Accumulator, 0, 0, 740570, 271825970, 2329 -l1cache_1, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, latency_GetX_IM, , Accumulator, 0, 0, 19935, 7428451, 56 -l1cache_1, latency_GetX_SM, , Accumulator, 0, 0, 7042, 1388490, 45 -l1cache_1, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, eventSent_GetS, , Accumulator, 0, 0, 2331, 2331, 2331 -l1cache_1, eventSent_GetX, , Accumulator, 0, 0, 101, 101, 101 -l1cache_1, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, eventSent_GetSResp, , Accumulator, 0, 0, 14593, 14593, 14593 -l1cache_1, eventSent_GetXResp, , Accumulator, 0, 0, 5041, 5041, 5041 -l1cache_1, eventSent_PutS, , Accumulator, 0, 0, 306, 306, 306 -l1cache_1, eventSent_PutE, , Accumulator, 0, 0, 1469, 1469, 1469 -l1cache_1, eventSent_PutM, , Accumulator, 0, 0, 49, 49, 49 -l1cache_1, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, eventSent_FetchResp, , Accumulator, 0, 0, 15, 15, 15 -l1cache_1, eventSent_FetchXResp, , Accumulator, 0, 0, 80, 80, 80 -l1cache_1, eventSent_AckInv, , Accumulator, 0, 0, 46, 46, 46 -l1cache_1, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l1cache_1, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, packet_latency, , Accumulator, 0, 0, 7928, 29456, 2550 -l2cache_1, send_bit_count, , Accumulator, 0, 0, 248960, 64299008, 2578 -l2cache_1, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, idle_time, , Accumulator, 0, 0, 17411314027, 6325692874157592665, 2453 -l2cache_1, TotalEventsReceived, , Accumulator, 0, 0, 6947, 6947, 6947 -l2cache_1, TotalEventsReplayed, , Accumulator, 0, 0, 9, 9, 9 -l2cache_1, CacheHits, , Accumulator, 0, 0, 88, 88, 88 -l2cache_1, GetSHit_Arrival, , Accumulator, 0, 0, 88, 88, 88 -l2cache_1, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, CacheMisses, , Accumulator, 0, 0, 2344, 2344, 2344 -l2cache_1, GetSMiss_Arrival, , Accumulator, 0, 0, 2243, 2243, 2243 -l2cache_1, GetXMiss_Arrival, , Accumulator, 0, 0, 100, 100, 100 -l2cache_1, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, GetXMiss_Blocked, , Accumulator, 0, 0, 1, 1, 1 -l2cache_1, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, GetS_recv, , Accumulator, 0, 0, 2331, 2331, 2331 -l2cache_1, GetX_recv, , Accumulator, 0, 0, 101, 101, 101 -l2cache_1, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, GetSResp_recv, , Accumulator, 0, 0, 2241, 2241, 2241 -l2cache_1, GetXResp_recv, , Accumulator, 0, 0, 101, 101, 101 -l2cache_1, PutS_recv, , Accumulator, 0, 0, 306, 306, 306 -l2cache_1, PutM_recv, , Accumulator, 0, 0, 49, 49, 49 -l2cache_1, PutE_recv, , Accumulator, 0, 0, 1469, 1469, 1469 -l2cache_1, FetchInv_recv, , Accumulator, 0, 0, 15, 15, 15 -l2cache_1, FetchInvX_recv, , Accumulator, 0, 0, 147, 147, 147 -l2cache_1, Inv_recv, , Accumulator, 0, 0, 46, 46, 46 -l2cache_1, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, MSHR_occupancy, , Accumulator, 0, 0, 751274, 3146670, 46430795 -l2cache_1, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, evict_S, , Accumulator, 0, 0, 8, 8, 8 -l2cache_1, evict_E, , Accumulator, 0, 0, 16, 16, 16 -l2cache_1, evict_M, , Accumulator, 0, 0, 2, 2, 2 -l2cache_1, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetS_I, , Accumulator, 0, 0, 2243, 2243, 2243 -l2cache_1, stateEvent_GetS_S, , Accumulator, 0, 0, 84, 84, 84 -l2cache_1, stateEvent_GetS_E, , Accumulator, 0, 0, 4, 4, 4 -l2cache_1, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetX_I, , Accumulator, 0, 0, 57, 57, 57 -l2cache_1, stateEvent_GetX_S, , Accumulator, 0, 0, 44, 44, 44 -l2cache_1, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2241, 2241, 2241 -l2cache_1, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 65, 65, 65 -l2cache_1, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 36, 36, 36 -l2cache_1, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_S, , Accumulator, 0, 0, 306, 306, 306 -l2cache_1, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutE_E, , Accumulator, 0, 0, 1469, 1469, 1469 -l2cache_1, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutM_E, , Accumulator, 0, 0, 2, 2, 2 -l2cache_1, stateEvent_PutM_M, , Accumulator, 0, 0, 47, 47, 47 -l2cache_1, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Inv_S, , Accumulator, 0, 0, 38, 38, 38 -l2cache_1, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 -l2cache_1, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_M, , Accumulator, 0, 0, 15, 15, 15 -l2cache_1, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 114, 114, 114 -l2cache_1, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 33, 33, 33 -l2cache_1, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 15, 15, 15 -l2cache_1, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 47, 47, 47 -l2cache_1, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 33, 33, 33 -l2cache_1, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 38, 38, 38 -l2cache_1, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 8, 8, 8 -l2cache_1, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, latency_GetS_IS, , Accumulator, 0, 0, 726244, 263021566, 2241 -l2cache_1, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, latency_GetX_IM, , Accumulator, 0, 0, 19755, 7215583, 57 -l2cache_1, latency_GetX_SM, , Accumulator, 0, 0, 3561, 320901, 44 -l2cache_1, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, eventSent_GetS, , Accumulator, 0, 0, 2243, 2243, 2243 -l2cache_1, eventSent_GetX, , Accumulator, 0, 0, 101, 101, 101 -l2cache_1, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, eventSent_GetSResp, , Accumulator, 0, 0, 2329, 2329, 2329 -l2cache_1, eventSent_GetXResp, , Accumulator, 0, 0, 101, 101, 101 -l2cache_1, eventSent_PutS, , Accumulator, 0, 0, 8, 8, 8 -l2cache_1, eventSent_PutE, , Accumulator, 0, 0, 16, 16, 16 -l2cache_1, eventSent_PutM, , Accumulator, 0, 0, 2, 2, 2 -l2cache_1, eventSent_Inv, , Accumulator, 0, 0, 46, 46, 46 -l2cache_1, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, eventSent_FetchInv, , Accumulator, 0, 0, 15, 15, 15 -l2cache_1, eventSent_FetchInvX, , Accumulator, 0, 0, 80, 80, 80 -l2cache_1, eventSent_FetchResp, , Accumulator, 0, 0, 15, 15, 15 -l2cache_1, eventSent_FetchXResp, , Accumulator, 0, 0, 147, 147, 147 -l2cache_1, eventSent_AckInv, , Accumulator, 0, 0, 46, 46, 46 -l2cache_1, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l2cache_1, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -memory_0, requests_received_GetS, , Accumulator, 0, 0, 3851, 3851, 3851 -memory_0, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -memory_0, requests_received_GetX, , Accumulator, 0, 0, 113, 113, 113 -memory_0, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -memory_0, outstanding_requests, , Accumulator, 0, 0, 83885, 440867, 3491605 -memory_0, latency_GetS, , Accumulator, 0, 0, 407145, 43098125, 3848 -memory_0, latency_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -memory_0, latency_GetX, , Accumulator, 0, 0, 12080, 1293650, 113 -memory_0, latency_PutM, , Accumulator, 0, 0, 0, 0, 0 -memory_0, cycles_with_issue, , Accumulator, 0, 0, 3964, 3964, 3964 -memory_0, cycles_attempted_issue_but_rejected, , Accumulator, 0, 0, 0, 0, 0 -memory_0, total_cycles, , Accumulator, 0, 0, 3491605, 3491605, 3491605 -dc_0, packet_latency, , Accumulator, 0, 0, 12334, 40224, 3965 -dc_0, send_bit_count, , Accumulator, 0, 0, 2281536, 1314164736, 3961 -dc_0, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -dc_0, idle_time, , Accumulator, 0, 0, 17406616285, 6010505647723498505, 3968 -dc_0, replacement_request_latency, , Accumulator, 0, 0, 0, 0, 0 -dc_0, get_request_latency, , Accumulator, 0, 0, 450882, 51349350, 3961 -dc_0, directory_cache_hits, , Accumulator, 0, 0, 3965, 3965, 3965 -dc_0, mshr_hits, , Accumulator, 0, 0, 0, 0, 0 -dc_0, requests_received_GetX, , Accumulator, 0, 0, 113, 113, 113 -dc_0, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -dc_0, requests_received_GetS, , Accumulator, 0, 0, 3852, 3852, 3852 -dc_0, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -dc_0, requests_received_PutE, , Accumulator, 0, 0, 0, 0, 0 -dc_0, requests_received_PutS, , Accumulator, 0, 0, 0, 0, 0 -dc_0, responses_received_NACK, , Accumulator, 0, 0, 0, 0, 0 -dc_0, responses_received_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -dc_0, responses_received_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -dc_0, responses_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -dc_0, responses_received_PutE, , Accumulator, 0, 0, 0, 0, 0 -dc_0, responses_received_PutS, , Accumulator, 0, 0, 0, 0, 0 -dc_0, memory_requests_data_read, , Accumulator, 0, 0, 3965, 3965, 3965 -dc_0, memory_requests_data_write, , Accumulator, 0, 0, 0, 0, 0 -dc_0, memory_requests_directory_entry_read, , Accumulator, 0, 0, 0, 0, 0 -dc_0, memory_requests_directory_entry_write, , Accumulator, 0, 0, 0, 0, 0 -dc_0, requests_sent_Inv, , Accumulator, 0, 0, 0, 0, 0 -dc_0, requests_sent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -dc_0, requests_sent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -dc_0, responses_sent_NACK, , Accumulator, 0, 0, 0, 0, 0 -dc_0, responses_sent_GetSResp, , Accumulator, 0, 0, 3848, 3848, 3848 -dc_0, responses_sent_GetXResp, , Accumulator, 0, 0, 113, 113, 113 -dc_0, MSHR_occupancy, , Accumulator, 0, 0, 87849, 479847, 3491605 -l3cache_2, packet_latency, , Accumulator, 0, 0, 17520, 77424, 4418 -l3cache_2, send_bit_count, , Accumulator, 0, 0, 1449216, 765444096, 4396 -l3cache_2, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, idle_time, , Accumulator, 0, 0, 17445896471, 6012885985144201971, 4369 -l3cache_2, TotalEventsReceived, , Accumulator, 0, 0, 4418, 4418, 4418 -l3cache_2, TotalEventsReplayed, , Accumulator, 0, 0, 42, 42, 42 -l3cache_2, CacheHits, , Accumulator, 0, 0, 184, 184, 184 -l3cache_2, GetSHit_Arrival, , Accumulator, 0, 0, 162, 162, 162 -l3cache_2, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, GetSHit_Blocked, , Accumulator, 0, 0, 22, 22, 22 -l3cache_2, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, CacheMisses, , Accumulator, 0, 0, 2098, 2098, 2098 -l3cache_2, GetSMiss_Arrival, , Accumulator, 0, 0, 2007, 2007, 2007 -l3cache_2, GetXMiss_Arrival, , Accumulator, 0, 0, 71, 71, 71 -l3cache_2, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, GetSMiss_Blocked, , Accumulator, 0, 0, 11, 11, 11 -l3cache_2, GetXMiss_Blocked, , Accumulator, 0, 0, 9, 9, 9 -l3cache_2, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, GetS_recv, , Accumulator, 0, 0, 2202, 2202, 2202 -l3cache_2, GetX_recv, , Accumulator, 0, 0, 80, 80, 80 -l3cache_2, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, GetSResp_recv, , Accumulator, 0, 0, 1930, 1930, 1930 -l3cache_2, GetXResp_recv, , Accumulator, 0, 0, 57, 57, 57 -l3cache_2, PutS_recv, , Accumulator, 0, 0, 7, 7, 7 -l3cache_2, PutM_recv, , Accumulator, 0, 0, 2, 2, 2 -l3cache_2, PutE_recv, , Accumulator, 0, 0, 13, 13, 13 -l3cache_2, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, MSHR_occupancy, , Accumulator, 0, 0, 712332, 2707512, 46430881 -l3cache_2, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetS_I, , Accumulator, 0, 0, 1931, 1931, 1931 -l3cache_2, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetS_E, , Accumulator, 0, 0, 257, 257, 257 -l3cache_2, stateEvent_GetS_M, , Accumulator, 0, 0, 14, 14, 14 -l3cache_2, stateEvent_GetX_I, , Accumulator, 0, 0, 57, 57, 57 -l3cache_2, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetX_E, , Accumulator, 0, 0, 3, 3, 3 -l3cache_2, stateEvent_GetX_M, , Accumulator, 0, 0, 20, 20, 20 -l3cache_2, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1930, 1930, 1930 -l3cache_2, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 57, 57, 57 -l3cache_2, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_E, , Accumulator, 0, 0, 7, 7, 7 -l3cache_2, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutE_E, , Accumulator, 0, 0, 13, 13, 13 -l3cache_2, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutM_M, , Accumulator, 0, 0, 2, 2, 2 -l3cache_2, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 19, 19, 19 -l3cache_2, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 84, 84, 84 -l3cache_2, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 3, 3, 3 -l3cache_2, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 21, 21, 21 -l3cache_2, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, latency_GetS_IS, , Accumulator, 0, 0, 681463, 240703779, 1930 -l3cache_2, latency_GetS_M, , Accumulator, 0, 0, 5800, 997252, 87 -l3cache_2, latency_GetX_IM, , Accumulator, 0, 0, 19985, 7008177, 57 -l3cache_2, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, latency_GetX_M, , Accumulator, 0, 0, 1481, 124175, 23 -l3cache_2, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, latency_GetSEx_M, , Accumulator, 0, 0, 5800, 997252, 87 -l3cache_2, eventSent_GetS, , Accumulator, 0, 0, 1931, 1931, 1931 -l3cache_2, eventSent_GetX, , Accumulator, 0, 0, 57, 57, 57 -l3cache_2, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, eventSent_GetSResp, , Accumulator, 0, 0, 2201, 2201, 2201 -l3cache_2, eventSent_GetXResp, , Accumulator, 0, 0, 80, 80, 80 -l3cache_2, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, eventSent_Inv, , Accumulator, 0, 0, 21, 21, 21 -l3cache_2, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, eventSent_FetchInv, , Accumulator, 0, 0, 19, 19, 19 -l3cache_2, eventSent_FetchInvX, , Accumulator, 0, 0, 87, 87, 87 -l3cache_2, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l3cache_2, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, TotalEventsReceived, , Accumulator, 0, 0, 22076, 22076, 22076 -l1cache_2, TotalEventsReplayed, , Accumulator, 0, 0, 6767, 6767, 6767 -l1cache_2, CacheHits, , Accumulator, 0, 0, 17185, 17185, 17185 -l1cache_2, GetSHit_Arrival, , Accumulator, 0, 0, 5863, 5863, 5863 -l1cache_2, GetXHit_Arrival, , Accumulator, 0, 0, 4605, 4605, 4605 -l1cache_2, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, GetSHit_Blocked, , Accumulator, 0, 0, 6420, 6420, 6420 -l1cache_2, GetXHit_Blocked, , Accumulator, 0, 0, 297, 297, 297 -l1cache_2, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, CacheMisses, , Accumulator, 0, 0, 2383, 2383, 2383 -l1cache_2, GetSMiss_Arrival, , Accumulator, 0, 0, 2284, 2284, 2284 -l1cache_2, GetXMiss_Arrival, , Accumulator, 0, 0, 58, 58, 58 -l1cache_2, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, GetXMiss_Blocked, , Accumulator, 0, 0, 41, 41, 41 -l1cache_2, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, GetS_recv, , Accumulator, 0, 0, 14567, 14567, 14567 -l1cache_2, GetX_recv, , Accumulator, 0, 0, 5001, 5001, 5001 -l1cache_2, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, GetSResp_recv, , Accumulator, 0, 0, 2284, 2284, 2284 -l1cache_2, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 -l1cache_2, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, FetchInv_recv, , Accumulator, 0, 0, 9, 9, 9 -l1cache_2, FetchInvX_recv, , Accumulator, 0, 0, 67, 67, 67 -l1cache_2, Inv_recv, , Accumulator, 0, 0, 49, 49, 49 -l1cache_2, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, MSHR_occupancy, , Accumulator, 0, 0, 2790033, 36515133, 46430909 -l1cache_2, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, evict_S, , Accumulator, 0, 0, 323, 323, 323 -l1cache_2, evict_E, , Accumulator, 0, 0, 1406, 1406, 1406 -l1cache_2, evict_M, , Accumulator, 0, 0, 50, 50, 50 -l1cache_2, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_GetS_I, , Accumulator, 0, 0, 2284, 2284, 2284 -l1cache_2, stateEvent_GetS_S, , Accumulator, 0, 0, 3502, 3502, 3502 -l1cache_2, stateEvent_GetS_E, , Accumulator, 0, 0, 6597, 6597, 6597 -l1cache_2, stateEvent_GetS_M, , Accumulator, 0, 0, 2184, 2184, 2184 -l1cache_2, stateEvent_GetX_I, , Accumulator, 0, 0, 56, 56, 56 -l1cache_2, stateEvent_GetX_S, , Accumulator, 0, 0, 43, 43, 43 -l1cache_2, stateEvent_GetX_E, , Accumulator, 0, 0, 2, 2, 2 -l1cache_2, stateEvent_GetX_M, , Accumulator, 0, 0, 4900, 4900, 4900 -l1cache_2, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2284, 2284, 2284 -l1cache_2, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 65, 65, 65 -l1cache_2, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 34, 34, 34 -l1cache_2, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Inv_S, , Accumulator, 0, 0, 40, 40, 40 -l1cache_2, stateEvent_Inv_SM, , Accumulator, 0, 0, 9, 9, 9 -l1cache_2, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_M, , Accumulator, 0, 0, 9, 9, 9 -l1cache_2, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 32, 32, 32 -l1cache_2, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 35, 35, 35 -l1cache_2, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, latency_GetS_IS, , Accumulator, 0, 0, 722062, 264646476, 2284 -l1cache_2, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, latency_GetX_IM, , Accumulator, 0, 0, 20117, 7528215, 56 -l1cache_2, latency_GetX_SM, , Accumulator, 0, 0, 5975, 1175981, 43 -l1cache_2, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, eventSent_GetS, , Accumulator, 0, 0, 2284, 2284, 2284 -l1cache_2, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 -l1cache_2, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, eventSent_GetSResp, , Accumulator, 0, 0, 14567, 14567, 14567 -l1cache_2, eventSent_GetXResp, , Accumulator, 0, 0, 5001, 5001, 5001 -l1cache_2, eventSent_PutS, , Accumulator, 0, 0, 323, 323, 323 -l1cache_2, eventSent_PutE, , Accumulator, 0, 0, 1406, 1406, 1406 -l1cache_2, eventSent_PutM, , Accumulator, 0, 0, 50, 50, 50 -l1cache_2, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, eventSent_FetchResp, , Accumulator, 0, 0, 9, 9, 9 -l1cache_2, eventSent_FetchXResp, , Accumulator, 0, 0, 67, 67, 67 -l1cache_2, eventSent_AckInv, , Accumulator, 0, 0, 49, 49, 49 -l1cache_2, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l1cache_2, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, packet_latency, , Accumulator, 0, 0, 7480, 28672, 2460 -l2cache_2, send_bit_count, , Accumulator, 0, 0, 210304, 43540480, 2470 -l2cache_2, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, idle_time, , Accumulator, 0, 0, 17408763904, 6325692716218366438, 2402 -l2cache_2, TotalEventsReceived, , Accumulator, 0, 0, 6747, 6747, 6747 -l2cache_2, TotalEventsReplayed, , Accumulator, 0, 0, 9, 9, 9 -l2cache_2, CacheHits, , Accumulator, 0, 0, 73, 73, 73 -l2cache_2, GetSHit_Arrival, , Accumulator, 0, 0, 73, 73, 73 -l2cache_2, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, CacheMisses, , Accumulator, 0, 0, 2310, 2310, 2310 -l2cache_2, GetSMiss_Arrival, , Accumulator, 0, 0, 2211, 2211, 2211 -l2cache_2, GetXMiss_Arrival, , Accumulator, 0, 0, 98, 98, 98 -l2cache_2, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, GetXMiss_Blocked, , Accumulator, 0, 0, 1, 1, 1 -l2cache_2, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, GetS_recv, , Accumulator, 0, 0, 2284, 2284, 2284 -l2cache_2, GetX_recv, , Accumulator, 0, 0, 99, 99, 99 -l2cache_2, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, GetSResp_recv, , Accumulator, 0, 0, 2211, 2211, 2211 -l2cache_2, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 -l2cache_2, PutS_recv, , Accumulator, 0, 0, 323, 323, 323 -l2cache_2, PutM_recv, , Accumulator, 0, 0, 50, 50, 50 -l2cache_2, PutE_recv, , Accumulator, 0, 0, 1406, 1406, 1406 -l2cache_2, FetchInv_recv, , Accumulator, 0, 0, 9, 9, 9 -l2cache_2, FetchInvX_recv, , Accumulator, 0, 0, 92, 92, 92 -l2cache_2, Inv_recv, , Accumulator, 0, 0, 49, 49, 49 -l2cache_2, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, MSHR_occupancy, , Accumulator, 0, 0, 732279, 2989317, 46430899 -l2cache_2, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, evict_S, , Accumulator, 0, 0, 3, 3, 3 -l2cache_2, evict_E, , Accumulator, 0, 0, 6, 6, 6 -l2cache_2, evict_M, , Accumulator, 0, 0, 1, 1, 1 -l2cache_2, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetS_I, , Accumulator, 0, 0, 2211, 2211, 2211 -l2cache_2, stateEvent_GetS_S, , Accumulator, 0, 0, 71, 71, 71 -l2cache_2, stateEvent_GetS_E, , Accumulator, 0, 0, 2, 2, 2 -l2cache_2, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetX_I, , Accumulator, 0, 0, 57, 57, 57 -l2cache_2, stateEvent_GetX_S, , Accumulator, 0, 0, 42, 42, 42 -l2cache_2, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2211, 2211, 2211 -l2cache_2, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 65, 65, 65 -l2cache_2, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 34, 34, 34 -l2cache_2, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_S, , Accumulator, 0, 0, 323, 323, 323 -l2cache_2, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutE_E, , Accumulator, 0, 0, 1406, 1406, 1406 -l2cache_2, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutM_E, , Accumulator, 0, 0, 2, 2, 2 -l2cache_2, stateEvent_PutM_M, , Accumulator, 0, 0, 48, 48, 48 -l2cache_2, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Inv_S, , Accumulator, 0, 0, 41, 41, 41 -l2cache_2, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 -l2cache_2, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_M, , Accumulator, 0, 0, 9, 9, 9 -l2cache_2, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 57, 57, 57 -l2cache_2, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 35, 35, 35 -l2cache_2, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 9, 9, 9 -l2cache_2, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 32, 32, 32 -l2cache_2, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 35, 35, 35 -l2cache_2, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 41, 41, 41 -l2cache_2, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 8, 8, 8 -l2cache_2, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, latency_GetS_IS, , Accumulator, 0, 0, 708066, 256062788, 2211 -l2cache_2, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, latency_GetX_IM, , Accumulator, 0, 0, 19925, 7309563, 57 -l2cache_2, latency_GetX_SM, , Accumulator, 0, 0, 3038, 263656, 42 -l2cache_2, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, eventSent_GetS, , Accumulator, 0, 0, 2211, 2211, 2211 -l2cache_2, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 -l2cache_2, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, eventSent_GetSResp, , Accumulator, 0, 0, 2284, 2284, 2284 -l2cache_2, eventSent_GetXResp, , Accumulator, 0, 0, 99, 99, 99 -l2cache_2, eventSent_PutS, , Accumulator, 0, 0, 3, 3, 3 -l2cache_2, eventSent_PutE, , Accumulator, 0, 0, 6, 6, 6 -l2cache_2, eventSent_PutM, , Accumulator, 0, 0, 1, 1, 1 -l2cache_2, eventSent_Inv, , Accumulator, 0, 0, 49, 49, 49 -l2cache_2, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, eventSent_FetchInv, , Accumulator, 0, 0, 9, 9, 9 -l2cache_2, eventSent_FetchInvX, , Accumulator, 0, 0, 67, 67, 67 -l2cache_2, eventSent_FetchResp, , Accumulator, 0, 0, 9, 9, 9 -l2cache_2, eventSent_FetchXResp, , Accumulator, 0, 0, 92, 92, 92 -l2cache_2, eventSent_AckInv, , Accumulator, 0, 0, 49, 49, 49 -l2cache_2, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l2cache_2, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, packet_latency, , Accumulator, 0, 0, 19836, 76922, 5667 -l3cache_3, send_bit_count, , Accumulator, 0, 0, 1852800, 977657856, 5646 -l3cache_3, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, idle_time, , Accumulator, 0, 0, 17443175030, 6017770212694991002, 5562 -l3cache_3, TotalEventsReceived, , Accumulator, 0, 0, 5667, 5667, 5667 -l3cache_3, TotalEventsReplayed, , Accumulator, 0, 0, 93, 93, 93 -l3cache_3, CacheHits, , Accumulator, 0, 0, 217, 217, 217 -l3cache_3, GetSHit_Arrival, , Accumulator, 0, 0, 190, 190, 190 -l3cache_3, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, GetSHit_Blocked, , Accumulator, 0, 0, 27, 27, 27 -l3cache_3, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, CacheMisses, , Accumulator, 0, 0, 2699, 2699, 2699 -l3cache_3, GetSMiss_Arrival, , Accumulator, 0, 0, 2292, 2292, 2292 -l3cache_3, GetXMiss_Arrival, , Accumulator, 0, 0, 341, 341, 341 -l3cache_3, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, GetSMiss_Blocked, , Accumulator, 0, 0, 28, 28, 28 -l3cache_3, GetXMiss_Blocked, , Accumulator, 0, 0, 38, 38, 38 -l3cache_3, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, GetS_recv, , Accumulator, 0, 0, 2537, 2537, 2537 -l3cache_3, GetX_recv, , Accumulator, 0, 0, 379, 379, 379 -l3cache_3, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, GetSResp_recv, , Accumulator, 0, 0, 1934, 1934, 1934 -l3cache_3, GetXResp_recv, , Accumulator, 0, 0, 58, 58, 58 -l3cache_3, PutS_recv, , Accumulator, 0, 0, 7, 7, 7 -l3cache_3, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, PutE_recv, , Accumulator, 0, 0, 14, 14, 14 -l3cache_3, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, MSHR_occupancy, , Accumulator, 0, 0, 733361, 2776371, 46430880 -l3cache_3, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetS_I, , Accumulator, 0, 0, 1937, 1937, 1937 -l3cache_3, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetS_E, , Accumulator, 0, 0, 282, 282, 282 -l3cache_3, stateEvent_GetS_M, , Accumulator, 0, 0, 318, 318, 318 -l3cache_3, stateEvent_GetX_I, , Accumulator, 0, 0, 58, 58, 58 -l3cache_3, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetX_M, , Accumulator, 0, 0, 321, 321, 321 -l3cache_3, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1934, 1934, 1934 -l3cache_3, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 58, 58, 58 -l3cache_3, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_E, , Accumulator, 0, 0, 7, 7, 7 -l3cache_3, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutE_E, , Accumulator, 0, 0, 14, 14, 14 -l3cache_3, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 42, 42, 42 -l3cache_3, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 97, 97, 97 -l3cache_3, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 286, 286, 286 -l3cache_3, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 313, 313, 313 -l3cache_3, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, latency_GetS_IS, , Accumulator, 0, 0, 678160, 237892812, 1934 -l3cache_3, latency_GetS_M, , Accumulator, 0, 0, 17013, 1171951, 383 -l3cache_3, latency_GetX_IM, , Accumulator, 0, 0, 20434, 7202782, 58 -l3cache_3, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, latency_GetX_M, , Accumulator, 0, 0, 15418, 788252, 321 -l3cache_3, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, latency_GetSEx_M, , Accumulator, 0, 0, 17013, 1171951, 383 -l3cache_3, eventSent_GetS, , Accumulator, 0, 0, 1937, 1937, 1937 -l3cache_3, eventSent_GetX, , Accumulator, 0, 0, 58, 58, 58 -l3cache_3, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, eventSent_GetSResp, , Accumulator, 0, 0, 2534, 2534, 2534 -l3cache_3, eventSent_GetXResp, , Accumulator, 0, 0, 379, 379, 379 -l3cache_3, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, eventSent_Inv, , Accumulator, 0, 0, 313, 313, 313 -l3cache_3, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, eventSent_FetchInv, , Accumulator, 0, 0, 42, 42, 42 -l3cache_3, eventSent_FetchInvX, , Accumulator, 0, 0, 383, 383, 383 -l3cache_3, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l3cache_3, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, TotalEventsReceived, , Accumulator, 0, 0, 21962, 21962, 21962 -l1cache_3, TotalEventsReplayed, , Accumulator, 0, 0, 6700, 6700, 6700 -l1cache_3, CacheHits, , Accumulator, 0, 0, 17023, 17023, 17023 -l1cache_3, GetSHit_Arrival, , Accumulator, 0, 0, 5848, 5848, 5848 -l1cache_3, GetXHit_Arrival, , Accumulator, 0, 0, 4521, 4521, 4521 -l1cache_3, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, GetSHit_Blocked, , Accumulator, 0, 0, 6358, 6358, 6358 -l1cache_3, GetXHit_Blocked, , Accumulator, 0, 0, 296, 296, 296 -l1cache_3, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, CacheMisses, , Accumulator, 0, 0, 2379, 2379, 2379 -l1cache_3, GetSMiss_Arrival, , Accumulator, 0, 0, 2284, 2284, 2284 -l1cache_3, GetXMiss_Arrival, , Accumulator, 0, 0, 55, 55, 55 -l1cache_3, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, GetXMiss_Blocked, , Accumulator, 0, 0, 40, 40, 40 -l1cache_3, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, GetS_recv, , Accumulator, 0, 0, 14500, 14500, 14500 -l1cache_3, GetX_recv, , Accumulator, 0, 0, 4912, 4912, 4912 -l1cache_3, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, GetSResp_recv, , Accumulator, 0, 0, 2281, 2281, 2281 -l1cache_3, GetXResp_recv, , Accumulator, 0, 0, 95, 95, 95 -l1cache_3, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, FetchInv_recv, , Accumulator, 0, 0, 12, 12, 12 -l1cache_3, FetchInvX_recv, , Accumulator, 0, 0, 119, 119, 119 -l1cache_3, Inv_recv, , Accumulator, 0, 0, 43, 43, 43 -l1cache_3, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, MSHR_occupancy, , Accumulator, 0, 0, 2798883, 36628491, 46430924 -l1cache_3, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, evict_S, , Accumulator, 0, 0, 334, 334, 334 -l1cache_3, evict_E, , Accumulator, 0, 0, 1394, 1394, 1394 -l1cache_3, evict_M, , Accumulator, 0, 0, 49, 49, 49 -l1cache_3, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_GetS_I, , Accumulator, 0, 0, 2284, 2284, 2284 -l1cache_3, stateEvent_GetS_S, , Accumulator, 0, 0, 3363, 3363, 3363 -l1cache_3, stateEvent_GetS_E, , Accumulator, 0, 0, 6578, 6578, 6578 -l1cache_3, stateEvent_GetS_M, , Accumulator, 0, 0, 2265, 2265, 2265 -l1cache_3, stateEvent_GetX_I, , Accumulator, 0, 0, 53, 53, 53 -l1cache_3, stateEvent_GetX_S, , Accumulator, 0, 0, 42, 42, 42 -l1cache_3, stateEvent_GetX_E, , Accumulator, 0, 0, 5, 5, 5 -l1cache_3, stateEvent_GetX_M, , Accumulator, 0, 0, 4812, 4812, 4812 -l1cache_3, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2281, 2281, 2281 -l1cache_3, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 59, 59, 59 -l1cache_3, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 36, 36, 36 -l1cache_3, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Inv_S, , Accumulator, 0, 0, 37, 37, 37 -l1cache_3, stateEvent_Inv_SM, , Accumulator, 0, 0, 6, 6, 6 -l1cache_3, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_M, , Accumulator, 0, 0, 12, 12, 12 -l1cache_3, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 86, 86, 86 -l1cache_3, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 33, 33, 33 -l1cache_3, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, latency_GetS_IS, , Accumulator, 0, 0, 728495, 266711369, 2281 -l1cache_3, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, latency_GetX_IM, , Accumulator, 0, 0, 18836, 6964606, 53 -l1cache_3, latency_GetX_SM, , Accumulator, 0, 0, 4923, 624861, 42 -l1cache_3, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, eventSent_GetS, , Accumulator, 0, 0, 2284, 2284, 2284 -l1cache_3, eventSent_GetX, , Accumulator, 0, 0, 95, 95, 95 -l1cache_3, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, eventSent_GetSResp, , Accumulator, 0, 0, 14487, 14487, 14487 -l1cache_3, eventSent_GetXResp, , Accumulator, 0, 0, 4912, 4912, 4912 -l1cache_3, eventSent_PutS, , Accumulator, 0, 0, 334, 334, 334 -l1cache_3, eventSent_PutE, , Accumulator, 0, 0, 1394, 1394, 1394 -l1cache_3, eventSent_PutM, , Accumulator, 0, 0, 49, 49, 49 -l1cache_3, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, eventSent_FetchResp, , Accumulator, 0, 0, 12, 12, 12 -l1cache_3, eventSent_FetchXResp, , Accumulator, 0, 0, 119, 119, 119 -l1cache_3, eventSent_AckInv, , Accumulator, 0, 0, 43, 43, 43 -l1cache_3, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l1cache_3, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, packet_latency, , Accumulator, 0, 0, 7838, 29600, 2521 -l2cache_3, send_bit_count, , Accumulator, 0, 0, 252224, 66867200, 2565 -l2cache_3, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, idle_time, , Accumulator, 0, 0, 17409480285, 6322976879784478017, 2442 -l2cache_3, TotalEventsReceived, , Accumulator, 0, 0, 6851, 6851, 6851 -l2cache_3, TotalEventsReplayed, , Accumulator, 0, 0, 6, 6, 6 -l2cache_3, CacheHits, , Accumulator, 0, 0, 66, 66, 66 -l2cache_3, GetSHit_Arrival, , Accumulator, 0, 0, 66, 66, 66 -l2cache_3, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, CacheMisses, , Accumulator, 0, 0, 2313, 2313, 2313 -l2cache_3, GetSMiss_Arrival, , Accumulator, 0, 0, 2218, 2218, 2218 -l2cache_3, GetXMiss_Arrival, , Accumulator, 0, 0, 93, 93, 93 -l2cache_3, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, GetXMiss_Blocked, , Accumulator, 0, 0, 2, 2, 2 -l2cache_3, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, GetS_recv, , Accumulator, 0, 0, 2284, 2284, 2284 -l2cache_3, GetX_recv, , Accumulator, 0, 0, 95, 95, 95 -l2cache_3, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, GetSResp_recv, , Accumulator, 0, 0, 2215, 2215, 2215 -l2cache_3, GetXResp_recv, , Accumulator, 0, 0, 95, 95, 95 -l2cache_3, PutS_recv, , Accumulator, 0, 0, 334, 334, 334 -l2cache_3, PutM_recv, , Accumulator, 0, 0, 49, 49, 49 -l2cache_3, PutE_recv, , Accumulator, 0, 0, 1394, 1394, 1394 -l2cache_3, FetchInv_recv, , Accumulator, 0, 0, 12, 12, 12 -l2cache_3, FetchInvX_recv, , Accumulator, 0, 0, 156, 156, 156 -l2cache_3, Inv_recv, , Accumulator, 0, 0, 43, 43, 43 -l2cache_3, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, MSHR_occupancy, , Accumulator, 0, 0, 738131, 2990253, 46430923 -l2cache_3, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, evict_S, , Accumulator, 0, 0, 11, 11, 11 -l2cache_3, evict_E, , Accumulator, 0, 0, 26, 26, 26 -l2cache_3, evict_M, , Accumulator, 0, 0, 4, 4, 4 -l2cache_3, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetS_I, , Accumulator, 0, 0, 2218, 2218, 2218 -l2cache_3, stateEvent_GetS_S, , Accumulator, 0, 0, 65, 65, 65 -l2cache_3, stateEvent_GetS_E, , Accumulator, 0, 0, 1, 1, 1 -l2cache_3, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetX_I, , Accumulator, 0, 0, 55, 55, 55 -l2cache_3, stateEvent_GetX_S, , Accumulator, 0, 0, 40, 40, 40 -l2cache_3, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2215, 2215, 2215 -l2cache_3, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 59, 59, 59 -l2cache_3, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 36, 36, 36 -l2cache_3, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_S, , Accumulator, 0, 0, 334, 334, 334 -l2cache_3, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutE_E, , Accumulator, 0, 0, 1394, 1394, 1394 -l2cache_3, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutM_E, , Accumulator, 0, 0, 4, 4, 4 -l2cache_3, stateEvent_PutM_M, , Accumulator, 0, 0, 45, 45, 45 -l2cache_3, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Inv_S, , Accumulator, 0, 0, 39, 39, 39 -l2cache_3, stateEvent_Inv_SM, , Accumulator, 0, 0, 4, 4, 4 -l2cache_3, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_M, , Accumulator, 0, 0, 12, 12, 12 -l2cache_3, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 124, 124, 124 -l2cache_3, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 32, 32, 32 -l2cache_3, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 12, 12, 12 -l2cache_3, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 87, 87, 87 -l2cache_3, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 32, 32, 32 -l2cache_3, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 39, 39, 39 -l2cache_3, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 4, 4, 4 -l2cache_3, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, latency_GetS_IS, , Accumulator, 0, 0, 714545, 258050489, 2215 -l2cache_3, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, latency_GetX_IM, , Accumulator, 0, 0, 18678, 6753930, 55 -l2cache_3, latency_GetX_SM, , Accumulator, 0, 0, 2723, 201977, 40 -l2cache_3, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, eventSent_GetS, , Accumulator, 0, 0, 2218, 2218, 2218 -l2cache_3, eventSent_GetX, , Accumulator, 0, 0, 95, 95, 95 -l2cache_3, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, eventSent_GetSResp, , Accumulator, 0, 0, 2281, 2281, 2281 -l2cache_3, eventSent_GetXResp, , Accumulator, 0, 0, 95, 95, 95 -l2cache_3, eventSent_PutS, , Accumulator, 0, 0, 11, 11, 11 -l2cache_3, eventSent_PutE, , Accumulator, 0, 0, 26, 26, 26 -l2cache_3, eventSent_PutM, , Accumulator, 0, 0, 4, 4, 4 -l2cache_3, eventSent_Inv, , Accumulator, 0, 0, 43, 43, 43 -l2cache_3, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, eventSent_FetchInv, , Accumulator, 0, 0, 12, 12, 12 -l2cache_3, eventSent_FetchInvX, , Accumulator, 0, 0, 119, 119, 119 -l2cache_3, eventSent_FetchResp, , Accumulator, 0, 0, 12, 12, 12 -l2cache_3, eventSent_FetchXResp, , Accumulator, 0, 0, 156, 156, 156 -l2cache_3, eventSent_AckInv, , Accumulator, 0, 0, 43, 43, 43 -l2cache_3, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l2cache_3, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -memory_1, requests_received_GetS, , Accumulator, 0, 0, 3819, 3819, 3819 -memory_1, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -memory_1, requests_received_GetX, , Accumulator, 0, 0, 117, 117, 117 -memory_1, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -memory_1, outstanding_requests, , Accumulator, 0, 0, 83243, 428319, 3491605 -memory_1, latency_GetS, , Accumulator, 0, 0, 403560, 42707500, 3815 -memory_1, latency_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -memory_1, latency_GetX, , Accumulator, 0, 0, 12445, 1325225, 117 -memory_1, latency_PutM, , Accumulator, 0, 0, 0, 0, 0 -memory_1, cycles_with_issue, , Accumulator, 0, 0, 3936, 3936, 3936 -memory_1, cycles_attempted_issue_but_rejected, , Accumulator, 0, 0, 0, 0, 0 -memory_1, total_cycles, , Accumulator, 0, 0, 3491605, 3491605, 3491605 -dc_1, packet_latency, , Accumulator, 0, 0, 12248, 42130, 3938 -dc_1, send_bit_count, , Accumulator, 0, 0, 2264256, 1304211456, 3931 -dc_1, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -dc_1, idle_time, , Accumulator, 0, 0, 17405958303, 6013268257451542003, 3934 -dc_1, replacement_request_latency, , Accumulator, 0, 0, 0, 0, 0 -dc_1, get_request_latency, , Accumulator, 0, 0, 447182, 50882014, 3932 -dc_1, directory_cache_hits, , Accumulator, 0, 0, 3937, 3937, 3937 -dc_1, mshr_hits, , Accumulator, 0, 0, 0, 0, 0 -dc_1, requests_received_GetX, , Accumulator, 0, 0, 117, 117, 117 -dc_1, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -dc_1, requests_received_GetS, , Accumulator, 0, 0, 3820, 3820, 3820 -dc_1, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -dc_1, requests_received_PutE, , Accumulator, 0, 0, 0, 0, 0 -dc_1, requests_received_PutS, , Accumulator, 0, 0, 0, 0, 0 -dc_1, responses_received_NACK, , Accumulator, 0, 0, 0, 0, 0 -dc_1, responses_received_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -dc_1, responses_received_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -dc_1, responses_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -dc_1, responses_received_PutE, , Accumulator, 0, 0, 0, 0, 0 -dc_1, responses_received_PutS, , Accumulator, 0, 0, 0, 0, 0 -dc_1, memory_requests_data_read, , Accumulator, 0, 0, 3937, 3937, 3937 -dc_1, memory_requests_data_write, , Accumulator, 0, 0, 0, 0, 0 -dc_1, memory_requests_directory_entry_read, , Accumulator, 0, 0, 0, 0, 0 -dc_1, memory_requests_directory_entry_write, , Accumulator, 0, 0, 0, 0, 0 -dc_1, requests_sent_Inv, , Accumulator, 0, 0, 0, 0, 0 -dc_1, requests_sent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -dc_1, requests_sent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -dc_1, responses_sent_NACK, , Accumulator, 0, 0, 0, 0, 0 -dc_1, responses_sent_GetSResp, , Accumulator, 0, 0, 3815, 3815, 3815 -dc_1, responses_sent_GetXResp, , Accumulator, 0, 0, 117, 117, 117 -dc_1, MSHR_occupancy, , Accumulator, 0, 0, 87179, 466089, 3491605 -l3cache_4, packet_latency, , Accumulator, 0, 0, 13647, 47013, 4371 -l3cache_4, send_bit_count, , Accumulator, 0, 0, 1438016, 760008704, 4349 -l3cache_4, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, idle_time, , Accumulator, 0, 0, 17445983149, 6020497202441365651, 4326 -l3cache_4, TotalEventsReceived, , Accumulator, 0, 0, 4371, 4371, 4371 -l3cache_4, TotalEventsReplayed, , Accumulator, 0, 0, 26, 26, 26 -l3cache_4, CacheHits, , Accumulator, 0, 0, 182, 182, 182 -l3cache_4, GetSHit_Arrival, , Accumulator, 0, 0, 161, 161, 161 -l3cache_4, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, GetSHit_Blocked, , Accumulator, 0, 0, 21, 21, 21 -l3cache_4, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, CacheMisses, , Accumulator, 0, 0, 2084, 2084, 2084 -l3cache_4, GetSMiss_Arrival, , Accumulator, 0, 0, 2026, 2026, 2026 -l3cache_4, GetXMiss_Arrival, , Accumulator, 0, 0, 53, 53, 53 -l3cache_4, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, GetSMiss_Blocked, , Accumulator, 0, 0, 5, 5, 5 -l3cache_4, GetXMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, GetS_recv, , Accumulator, 0, 0, 2213, 2213, 2213 -l3cache_4, GetX_recv, , Accumulator, 0, 0, 53, 53, 53 -l3cache_4, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, GetSResp_recv, , Accumulator, 0, 0, 1946, 1946, 1946 -l3cache_4, GetXResp_recv, , Accumulator, 0, 0, 53, 53, 53 -l3cache_4, PutS_recv, , Accumulator, 0, 0, 11, 11, 11 -l3cache_4, PutM_recv, , Accumulator, 0, 0, 2, 2, 2 -l3cache_4, PutE_recv, , Accumulator, 0, 0, 9, 9, 9 -l3cache_4, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, MSHR_occupancy, , Accumulator, 0, 0, 698100, 2568620, 46430891 -l3cache_4, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetS_I, , Accumulator, 0, 0, 1947, 1947, 1947 -l3cache_4, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetS_E, , Accumulator, 0, 0, 263, 263, 263 -l3cache_4, stateEvent_GetS_M, , Accumulator, 0, 0, 3, 3, 3 -l3cache_4, stateEvent_GetX_I, , Accumulator, 0, 0, 53, 53, 53 -l3cache_4, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1946, 1946, 1946 -l3cache_4, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 53, 53, 53 -l3cache_4, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_E, , Accumulator, 0, 0, 11, 11, 11 -l3cache_4, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutE_E, , Accumulator, 0, 0, 9, 9, 9 -l3cache_4, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutM_M, , Accumulator, 0, 0, 2, 2, 2 -l3cache_4, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 84, 84, 84 -l3cache_4, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, latency_GetS_IS, , Accumulator, 0, 0, 672585, 232542783, 1946 -l3cache_4, latency_GetS_M, , Accumulator, 0, 0, 4750, 664212, 84 -l3cache_4, latency_GetX_IM, , Accumulator, 0, 0, 18722, 6625068, 53 -l3cache_4, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, latency_GetSEx_M, , Accumulator, 0, 0, 4750, 664212, 84 -l3cache_4, eventSent_GetS, , Accumulator, 0, 0, 1947, 1947, 1947 -l3cache_4, eventSent_GetX, , Accumulator, 0, 0, 53, 53, 53 -l3cache_4, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_GetSResp, , Accumulator, 0, 0, 2212, 2212, 2212 -l3cache_4, eventSent_GetXResp, , Accumulator, 0, 0, 53, 53, 53 -l3cache_4, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_FetchInvX, , Accumulator, 0, 0, 84, 84, 84 -l3cache_4, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l3cache_4, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, TotalEventsReceived, , Accumulator, 0, 0, 21708, 21708, 21708 -l1cache_4, TotalEventsReplayed, , Accumulator, 0, 0, 6649, 6649, 6649 -l1cache_4, CacheHits, , Accumulator, 0, 0, 16667, 16667, 16667 -l1cache_4, GetSHit_Arrival, , Accumulator, 0, 0, 5525, 5525, 5525 -l1cache_4, GetXHit_Arrival, , Accumulator, 0, 0, 4543, 4543, 4543 -l1cache_4, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, GetSHit_Blocked, , Accumulator, 0, 0, 6302, 6302, 6302 -l1cache_4, GetXHit_Blocked, , Accumulator, 0, 0, 297, 297, 297 -l1cache_4, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, CacheMisses, , Accumulator, 0, 0, 2448, 2448, 2448 -l1cache_4, GetSMiss_Arrival, , Accumulator, 0, 0, 2349, 2349, 2349 -l1cache_4, GetXMiss_Arrival, , Accumulator, 0, 0, 54, 54, 54 -l1cache_4, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, GetXMiss_Blocked, , Accumulator, 0, 0, 45, 45, 45 -l1cache_4, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, GetS_recv, , Accumulator, 0, 0, 14188, 14188, 14188 -l1cache_4, GetX_recv, , Accumulator, 0, 0, 4939, 4939, 4939 -l1cache_4, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, GetSResp_recv, , Accumulator, 0, 0, 2345, 2345, 2345 -l1cache_4, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 -l1cache_4, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, FetchInv_recv, , Accumulator, 0, 0, 9, 9, 9 -l1cache_4, FetchInvX_recv, , Accumulator, 0, 0, 79, 79, 79 -l1cache_4, Inv_recv, , Accumulator, 0, 0, 49, 49, 49 -l1cache_4, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, MSHR_occupancy, , Accumulator, 0, 0, 2792991, 36574517, 46430906 -l1cache_4, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, evict_S, , Accumulator, 0, 0, 322, 322, 322 -l1cache_4, evict_E, , Accumulator, 0, 0, 1468, 1468, 1468 -l1cache_4, evict_M, , Accumulator, 0, 0, 49, 49, 49 -l1cache_4, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_GetS_I, , Accumulator, 0, 0, 2349, 2349, 2349 -l1cache_4, stateEvent_GetS_S, , Accumulator, 0, 0, 3307, 3307, 3307 -l1cache_4, stateEvent_GetS_E, , Accumulator, 0, 0, 6570, 6570, 6570 -l1cache_4, stateEvent_GetS_M, , Accumulator, 0, 0, 1950, 1950, 1950 -l1cache_4, stateEvent_GetX_I, , Accumulator, 0, 0, 54, 54, 54 -l1cache_4, stateEvent_GetX_S, , Accumulator, 0, 0, 45, 45, 45 -l1cache_4, stateEvent_GetX_E, , Accumulator, 0, 0, 4, 4, 4 -l1cache_4, stateEvent_GetX_M, , Accumulator, 0, 0, 4836, 4836, 4836 -l1cache_4, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2345, 2345, 2345 -l1cache_4, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 59, 59, 59 -l1cache_4, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 40, 40, 40 -l1cache_4, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Inv_S, , Accumulator, 0, 0, 44, 44, 44 -l1cache_4, stateEvent_Inv_SM, , Accumulator, 0, 0, 5, 5, 5 -l1cache_4, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_M, , Accumulator, 0, 0, 9, 9, 9 -l1cache_4, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 40, 40, 40 -l1cache_4, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 -l1cache_4, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, latency_GetS_IS, , Accumulator, 0, 0, 734853, 269038995, 2345 -l1cache_4, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, latency_GetX_IM, , Accumulator, 0, 0, 19070, 7095070, 54 -l1cache_4, latency_GetX_SM, , Accumulator, 0, 0, 6562, 1118554, 45 -l1cache_4, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, eventSent_GetS, , Accumulator, 0, 0, 2349, 2349, 2349 -l1cache_4, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 -l1cache_4, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, eventSent_GetSResp, , Accumulator, 0, 0, 14172, 14172, 14172 -l1cache_4, eventSent_GetXResp, , Accumulator, 0, 0, 4939, 4939, 4939 -l1cache_4, eventSent_PutS, , Accumulator, 0, 0, 322, 322, 322 -l1cache_4, eventSent_PutE, , Accumulator, 0, 0, 1468, 1468, 1468 -l1cache_4, eventSent_PutM, , Accumulator, 0, 0, 49, 49, 49 -l1cache_4, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, eventSent_FetchResp, , Accumulator, 0, 0, 9, 9, 9 -l1cache_4, eventSent_FetchXResp, , Accumulator, 0, 0, 79, 79, 79 -l1cache_4, eventSent_AckInv, , Accumulator, 0, 0, 49, 49, 49 -l1cache_4, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l1cache_4, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, packet_latency, , Accumulator, 0, 0, 7807, 29253, 2525 -l2cache_4, send_bit_count, , Accumulator, 0, 0, 223936, 48836608, 2563 -l2cache_4, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, idle_time, , Accumulator, 0, 0, 17407941992, 6325692703203377112, 2424 -l2cache_4, TotalEventsReceived, , Accumulator, 0, 0, 6949, 6949, 6949 -l2cache_4, TotalEventsReplayed, , Accumulator, 0, 0, 5, 5, 5 -l2cache_4, CacheHits, , Accumulator, 0, 0, 82, 82, 82 -l2cache_4, GetSHit_Arrival, , Accumulator, 0, 0, 82, 82, 82 -l2cache_4, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, CacheMisses, , Accumulator, 0, 0, 2366, 2366, 2366 -l2cache_4, GetSMiss_Arrival, , Accumulator, 0, 0, 2267, 2267, 2267 -l2cache_4, GetXMiss_Arrival, , Accumulator, 0, 0, 98, 98, 98 -l2cache_4, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, GetXMiss_Blocked, , Accumulator, 0, 0, 1, 1, 1 -l2cache_4, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, GetS_recv, , Accumulator, 0, 0, 2349, 2349, 2349 -l2cache_4, GetX_recv, , Accumulator, 0, 0, 99, 99, 99 -l2cache_4, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, GetSResp_recv, , Accumulator, 0, 0, 2263, 2263, 2263 -l2cache_4, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 -l2cache_4, PutS_recv, , Accumulator, 0, 0, 322, 322, 322 -l2cache_4, PutM_recv, , Accumulator, 0, 0, 49, 49, 49 -l2cache_4, PutE_recv, , Accumulator, 0, 0, 1468, 1468, 1468 -l2cache_4, FetchInv_recv, , Accumulator, 0, 0, 9, 9, 9 -l2cache_4, FetchInvX_recv, , Accumulator, 0, 0, 105, 105, 105 -l2cache_4, Inv_recv, , Accumulator, 0, 0, 49, 49, 49 -l2cache_4, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, MSHR_occupancy, , Accumulator, 0, 0, 744380, 3073570, 46430905 -l2cache_4, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, evict_S, , Accumulator, 0, 0, 7, 7, 7 -l2cache_4, evict_E, , Accumulator, 0, 0, 24, 24, 24 -l2cache_4, evict_M, , Accumulator, 0, 0, 3, 3, 3 -l2cache_4, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetS_I, , Accumulator, 0, 0, 2267, 2267, 2267 -l2cache_4, stateEvent_GetS_S, , Accumulator, 0, 0, 78, 78, 78 -l2cache_4, stateEvent_GetS_E, , Accumulator, 0, 0, 4, 4, 4 -l2cache_4, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetX_I, , Accumulator, 0, 0, 55, 55, 55 -l2cache_4, stateEvent_GetX_S, , Accumulator, 0, 0, 44, 44, 44 -l2cache_4, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2263, 2263, 2263 -l2cache_4, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 59, 59, 59 -l2cache_4, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 40, 40, 40 -l2cache_4, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_S, , Accumulator, 0, 0, 322, 322, 322 -l2cache_4, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutE_E, , Accumulator, 0, 0, 1468, 1468, 1468 -l2cache_4, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutM_E, , Accumulator, 0, 0, 4, 4, 4 -l2cache_4, stateEvent_PutM_M, , Accumulator, 0, 0, 45, 45, 45 -l2cache_4, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Inv_S, , Accumulator, 0, 0, 45, 45, 45 -l2cache_4, stateEvent_Inv_SM, , Accumulator, 0, 0, 4, 4, 4 -l2cache_4, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_M, , Accumulator, 0, 0, 9, 9, 9 -l2cache_4, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 66, 66, 66 -l2cache_4, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 -l2cache_4, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 9, 9, 9 -l2cache_4, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 40, 40, 40 -l2cache_4, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 39, 39, 39 -l2cache_4, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 45, 45, 45 -l2cache_4, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 4, 4, 4 -l2cache_4, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, latency_GetS_IS, , Accumulator, 0, 0, 720455, 260303867, 2263 -l2cache_4, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, latency_GetX_IM, , Accumulator, 0, 0, 18848, 6878578, 55 -l2cache_4, latency_GetX_SM, , Accumulator, 0, 0, 3195, 249231, 44 -l2cache_4, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, eventSent_GetS, , Accumulator, 0, 0, 2267, 2267, 2267 -l2cache_4, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 -l2cache_4, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, eventSent_GetSResp, , Accumulator, 0, 0, 2345, 2345, 2345 -l2cache_4, eventSent_GetXResp, , Accumulator, 0, 0, 99, 99, 99 -l2cache_4, eventSent_PutS, , Accumulator, 0, 0, 7, 7, 7 -l2cache_4, eventSent_PutE, , Accumulator, 0, 0, 24, 24, 24 -l2cache_4, eventSent_PutM, , Accumulator, 0, 0, 3, 3, 3 -l2cache_4, eventSent_Inv, , Accumulator, 0, 0, 49, 49, 49 -l2cache_4, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, eventSent_FetchInv, , Accumulator, 0, 0, 9, 9, 9 -l2cache_4, eventSent_FetchInvX, , Accumulator, 0, 0, 79, 79, 79 -l2cache_4, eventSent_FetchResp, , Accumulator, 0, 0, 9, 9, 9 -l2cache_4, eventSent_FetchXResp, , Accumulator, 0, 0, 105, 105, 105 -l2cache_4, eventSent_AckInv, , Accumulator, 0, 0, 49, 49, 49 -l2cache_4, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l2cache_4, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, packet_latency, , Accumulator, 0, 0, 11918, 37894, 4472 -l3cache_5, send_bit_count, , Accumulator, 0, 0, 1465856, 774471680, 4440 -l3cache_5, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, idle_time, , Accumulator, 0, 0, 17446068038, 6017924785612601904, 4406 -l3cache_5, TotalEventsReceived, , Accumulator, 0, 0, 4472, 4472, 4472 -l3cache_5, TotalEventsReplayed, , Accumulator, 0, 0, 65, 65, 65 -l3cache_5, CacheHits, , Accumulator, 0, 0, 201, 201, 201 -l3cache_5, GetSHit_Arrival, , Accumulator, 0, 0, 157, 157, 157 -l3cache_5, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, GetSHit_Blocked, , Accumulator, 0, 0, 44, 44, 44 -l3cache_5, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, CacheMisses, , Accumulator, 0, 0, 2111, 2111, 2111 -l3cache_5, GetSMiss_Arrival, , Accumulator, 0, 0, 2023, 2023, 2023 -l3cache_5, GetXMiss_Arrival, , Accumulator, 0, 0, 67, 67, 67 -l3cache_5, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, GetSMiss_Blocked, , Accumulator, 0, 0, 8, 8, 8 -l3cache_5, GetXMiss_Blocked, , Accumulator, 0, 0, 13, 13, 13 -l3cache_5, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, GetS_recv, , Accumulator, 0, 0, 2232, 2232, 2232 -l3cache_5, GetX_recv, , Accumulator, 0, 0, 80, 80, 80 -l3cache_5, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, GetSResp_recv, , Accumulator, 0, 0, 1927, 1927, 1927 -l3cache_5, GetXResp_recv, , Accumulator, 0, 0, 58, 58, 58 -l3cache_5, PutS_recv, , Accumulator, 0, 0, 13, 13, 13 -l3cache_5, PutM_recv, , Accumulator, 0, 0, 4, 4, 4 -l3cache_5, PutE_recv, , Accumulator, 0, 0, 15, 15, 15 -l3cache_5, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, MSHR_occupancy, , Accumulator, 0, 0, 678434, 2413910, 46430920 -l3cache_5, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetS_I, , Accumulator, 0, 0, 1931, 1931, 1931 -l3cache_5, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetS_E, , Accumulator, 0, 0, 271, 271, 271 -l3cache_5, stateEvent_GetS_M, , Accumulator, 0, 0, 30, 30, 30 -l3cache_5, stateEvent_GetX_I, , Accumulator, 0, 0, 58, 58, 58 -l3cache_5, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetX_E, , Accumulator, 0, 0, 1, 1, 1 -l3cache_5, stateEvent_GetX_M, , Accumulator, 0, 0, 21, 21, 21 -l3cache_5, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1927, 1927, 1927 -l3cache_5, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 58, 58, 58 -l3cache_5, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_E, , Accumulator, 0, 0, 13, 13, 13 -l3cache_5, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutE_E, , Accumulator, 0, 0, 15, 15, 15 -l3cache_5, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutM_M, , Accumulator, 0, 0, 4, 4, 4 -l3cache_5, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 15, 15, 15 -l3cache_5, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 92, 92, 92 -l3cache_5, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 8, 8, 8 -l3cache_5, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 28, 28, 28 -l3cache_5, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, latency_GetS_IS, , Accumulator, 0, 0, 650502, 219675438, 1927 -l3cache_5, latency_GetS_M, , Accumulator, 0, 0, 4652, 321716, 100 -l3cache_5, latency_GetX_IM, , Accumulator, 0, 0, 19598, 6624714, 58 -l3cache_5, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, latency_GetX_M, , Accumulator, 0, 0, 1791, 176227, 22 -l3cache_5, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, latency_GetSEx_M, , Accumulator, 0, 0, 4652, 321716, 100 -l3cache_5, eventSent_GetS, , Accumulator, 0, 0, 1931, 1931, 1931 -l3cache_5, eventSent_GetX, , Accumulator, 0, 0, 58, 58, 58 -l3cache_5, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, eventSent_GetSResp, , Accumulator, 0, 0, 2228, 2228, 2228 -l3cache_5, eventSent_GetXResp, , Accumulator, 0, 0, 80, 80, 80 -l3cache_5, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, eventSent_Inv, , Accumulator, 0, 0, 28, 28, 28 -l3cache_5, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, eventSent_FetchInv, , Accumulator, 0, 0, 15, 15, 15 -l3cache_5, eventSent_FetchInvX, , Accumulator, 0, 0, 100, 100, 100 -l3cache_5, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l3cache_5, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, TotalEventsReceived, , Accumulator, 0, 0, 21826, 21826, 21826 -l1cache_5, TotalEventsReplayed, , Accumulator, 0, 0, 6698, 6698, 6698 -l1cache_5, CacheHits, , Accumulator, 0, 0, 16834, 16834, 16834 -l1cache_5, GetSHit_Arrival, , Accumulator, 0, 0, 5640, 5640, 5640 -l1cache_5, GetXHit_Arrival, , Accumulator, 0, 0, 4544, 4544, 4544 -l1cache_5, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, GetSHit_Blocked, , Accumulator, 0, 0, 6355, 6355, 6355 -l1cache_5, GetXHit_Blocked, , Accumulator, 0, 0, 295, 295, 295 -l1cache_5, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, CacheMisses, , Accumulator, 0, 0, 2423, 2423, 2423 -l1cache_5, GetSMiss_Arrival, , Accumulator, 0, 0, 2324, 2324, 2324 -l1cache_5, GetXMiss_Arrival, , Accumulator, 0, 0, 57, 57, 57 -l1cache_5, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, GetXMiss_Blocked, , Accumulator, 0, 0, 42, 42, 42 -l1cache_5, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, GetS_recv, , Accumulator, 0, 0, 14319, 14319, 14319 -l1cache_5, GetX_recv, , Accumulator, 0, 0, 4938, 4938, 4938 -l1cache_5, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, GetSResp_recv, , Accumulator, 0, 0, 2321, 2321, 2321 -l1cache_5, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 -l1cache_5, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, FetchInv_recv, , Accumulator, 0, 0, 7, 7, 7 -l1cache_5, FetchInvX_recv, , Accumulator, 0, 0, 94, 94, 94 -l1cache_5, Inv_recv, , Accumulator, 0, 0, 48, 48, 48 -l1cache_5, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, MSHR_occupancy, , Accumulator, 0, 0, 2801188, 36665182, 46430922 -l1cache_5, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, evict_S, , Accumulator, 0, 0, 308, 308, 308 -l1cache_5, evict_E, , Accumulator, 0, 0, 1462, 1462, 1462 -l1cache_5, evict_M, , Accumulator, 0, 0, 49, 49, 49 -l1cache_5, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_GetS_I, , Accumulator, 0, 0, 2324, 2324, 2324 -l1cache_5, stateEvent_GetS_S, , Accumulator, 0, 0, 3193, 3193, 3193 -l1cache_5, stateEvent_GetS_E, , Accumulator, 0, 0, 6736, 6736, 6736 -l1cache_5, stateEvent_GetS_M, , Accumulator, 0, 0, 2066, 2066, 2066 -l1cache_5, stateEvent_GetX_I, , Accumulator, 0, 0, 55, 55, 55 -l1cache_5, stateEvent_GetX_S, , Accumulator, 0, 0, 44, 44, 44 -l1cache_5, stateEvent_GetX_E, , Accumulator, 0, 0, 2, 2, 2 -l1cache_5, stateEvent_GetX_M, , Accumulator, 0, 0, 4837, 4837, 4837 -l1cache_5, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2321, 2321, 2321 -l1cache_5, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 61, 61, 61 -l1cache_5, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 38, 38, 38 -l1cache_5, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Inv_S, , Accumulator, 0, 0, 42, 42, 42 -l1cache_5, stateEvent_Inv_SM, , Accumulator, 0, 0, 6, 6, 6 -l1cache_5, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_M, , Accumulator, 0, 0, 7, 7, 7 -l1cache_5, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 55, 55, 55 -l1cache_5, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 -l1cache_5, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, latency_GetS_IS, , Accumulator, 0, 0, 735893, 269217665, 2321 -l1cache_5, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, latency_GetX_IM, , Accumulator, 0, 0, 19851, 7414153, 55 -l1cache_5, latency_GetX_SM, , Accumulator, 0, 0, 6295, 1023751, 44 -l1cache_5, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, eventSent_GetS, , Accumulator, 0, 0, 2324, 2324, 2324 -l1cache_5, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 -l1cache_5, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, eventSent_GetSResp, , Accumulator, 0, 0, 14316, 14316, 14316 -l1cache_5, eventSent_GetXResp, , Accumulator, 0, 0, 4938, 4938, 4938 -l1cache_5, eventSent_PutS, , Accumulator, 0, 0, 308, 308, 308 -l1cache_5, eventSent_PutE, , Accumulator, 0, 0, 1462, 1462, 1462 -l1cache_5, eventSent_PutM, , Accumulator, 0, 0, 49, 49, 49 -l1cache_5, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, eventSent_FetchResp, , Accumulator, 0, 0, 7, 7, 7 -l1cache_5, eventSent_FetchXResp, , Accumulator, 0, 0, 94, 94, 94 -l1cache_5, eventSent_AckInv, , Accumulator, 0, 0, 48, 48, 48 -l1cache_5, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l1cache_5, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, packet_latency, , Accumulator, 0, 0, 7728, 28454, 2506 -l2cache_5, send_bit_count, , Accumulator, 0, 0, 219072, 47345664, 2519 -l2cache_5, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, idle_time, , Accumulator, 0, 0, 17406359247, 6325692543154193033, 2407 -l2cache_5, TotalEventsReceived, , Accumulator, 0, 0, 6897, 6897, 6897 -l2cache_5, TotalEventsReplayed, , Accumulator, 0, 0, 6, 6, 6 -l2cache_5, CacheHits, , Accumulator, 0, 0, 75, 75, 75 -l2cache_5, GetSHit_Arrival, , Accumulator, 0, 0, 75, 75, 75 -l2cache_5, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, CacheMisses, , Accumulator, 0, 0, 2348, 2348, 2348 -l2cache_5, GetSMiss_Arrival, , Accumulator, 0, 0, 2249, 2249, 2249 -l2cache_5, GetXMiss_Arrival, , Accumulator, 0, 0, 98, 98, 98 -l2cache_5, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, GetXMiss_Blocked, , Accumulator, 0, 0, 1, 1, 1 -l2cache_5, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, GetS_recv, , Accumulator, 0, 0, 2324, 2324, 2324 -l2cache_5, GetX_recv, , Accumulator, 0, 0, 99, 99, 99 -l2cache_5, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, GetSResp_recv, , Accumulator, 0, 0, 2246, 2246, 2246 -l2cache_5, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 -l2cache_5, PutS_recv, , Accumulator, 0, 0, 308, 308, 308 -l2cache_5, PutM_recv, , Accumulator, 0, 0, 49, 49, 49 -l2cache_5, PutE_recv, , Accumulator, 0, 0, 1462, 1462, 1462 -l2cache_5, FetchInv_recv, , Accumulator, 0, 0, 7, 7, 7 -l2cache_5, FetchInvX_recv, , Accumulator, 0, 0, 106, 106, 106 -l2cache_5, Inv_recv, , Accumulator, 0, 0, 48, 48, 48 -l2cache_5, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, MSHR_occupancy, , Accumulator, 0, 0, 746143, 3043095, 46430926 -l2cache_5, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_S, , Accumulator, 0, 0, 7, 7, 7 -l2cache_5, evict_E, , Accumulator, 0, 0, 4, 4, 4 -l2cache_5, evict_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetS_I, , Accumulator, 0, 0, 2249, 2249, 2249 -l2cache_5, stateEvent_GetS_S, , Accumulator, 0, 0, 72, 72, 72 -l2cache_5, stateEvent_GetS_E, , Accumulator, 0, 0, 3, 3, 3 -l2cache_5, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetX_I, , Accumulator, 0, 0, 56, 56, 56 -l2cache_5, stateEvent_GetX_S, , Accumulator, 0, 0, 43, 43, 43 -l2cache_5, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2246, 2246, 2246 -l2cache_5, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 61, 61, 61 -l2cache_5, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 38, 38, 38 -l2cache_5, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_S, , Accumulator, 0, 0, 308, 308, 308 -l2cache_5, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutE_E, , Accumulator, 0, 0, 1462, 1462, 1462 -l2cache_5, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutM_E, , Accumulator, 0, 0, 2, 2, 2 -l2cache_5, stateEvent_PutM_M, , Accumulator, 0, 0, 47, 47, 47 -l2cache_5, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Inv_S, , Accumulator, 0, 0, 43, 43, 43 -l2cache_5, stateEvent_Inv_SM, , Accumulator, 0, 0, 5, 5, 5 -l2cache_5, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_M, , Accumulator, 0, 0, 7, 7, 7 -l2cache_5, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 67, 67, 67 -l2cache_5, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 -l2cache_5, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 7, 7, 7 -l2cache_5, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 55, 55, 55 -l2cache_5, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 39, 39, 39 -l2cache_5, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 43, 43, 43 -l2cache_5, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 5, 5, 5 -l2cache_5, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, latency_GetS_IS, , Accumulator, 0, 0, 721667, 260469305, 2246 -l2cache_5, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, latency_GetX_IM, , Accumulator, 0, 0, 19597, 7183697, 56 -l2cache_5, latency_GetX_SM, , Accumulator, 0, 0, 3364, 274922, 43 -l2cache_5, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, eventSent_GetS, , Accumulator, 0, 0, 2248, 2248, 2248 -l2cache_5, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 -l2cache_5, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, eventSent_GetSResp, , Accumulator, 0, 0, 2321, 2321, 2321 -l2cache_5, eventSent_GetXResp, , Accumulator, 0, 0, 99, 99, 99 -l2cache_5, eventSent_PutS, , Accumulator, 0, 0, 7, 7, 7 -l2cache_5, eventSent_PutE, , Accumulator, 0, 0, 4, 4, 4 -l2cache_5, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, eventSent_Inv, , Accumulator, 0, 0, 48, 48, 48 -l2cache_5, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, eventSent_FetchInv, , Accumulator, 0, 0, 7, 7, 7 -l2cache_5, eventSent_FetchInvX, , Accumulator, 0, 0, 94, 94, 94 -l2cache_5, eventSent_FetchResp, , Accumulator, 0, 0, 7, 7, 7 -l2cache_5, eventSent_FetchXResp, , Accumulator, 0, 0, 106, 106, 106 -l2cache_5, eventSent_AckInv, , Accumulator, 0, 0, 48, 48, 48 -l2cache_5, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l2cache_5, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -memory_2, requests_received_GetS, , Accumulator, 0, 0, 3884, 3884, 3884 -memory_2, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -memory_2, requests_received_GetX, , Accumulator, 0, 0, 108, 108, 108 -memory_2, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -memory_2, outstanding_requests, , Accumulator, 0, 0, 84411, 441191, 3491605 -memory_2, latency_GetS, , Accumulator, 0, 0, 410300, 43416650, 3879 -memory_2, latency_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -memory_2, latency_GetX, , Accumulator, 0, 0, 11400, 1203850, 108 -memory_2, latency_PutM, , Accumulator, 0, 0, 0, 0, 0 -memory_2, cycles_with_issue, , Accumulator, 0, 0, 3992, 3992, 3992 -memory_2, cycles_attempted_issue_but_rejected, , Accumulator, 0, 0, 0, 0, 0 -memory_2, total_cycles, , Accumulator, 0, 0, 3491605, 3491605, 3491605 -dc_2, packet_latency, , Accumulator, 0, 0, 12535, 53693, 3993 -dc_2, send_bit_count, , Accumulator, 0, 0, 2296512, 1322790912, 3987 -dc_2, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -dc_2, idle_time, , Accumulator, 0, 0, 17407088489, 6010509898449604091, 3992 -dc_2, replacement_request_latency, , Accumulator, 0, 0, 0, 0, 0 -dc_2, get_request_latency, , Accumulator, 0, 0, 453370, 51576254, 3987 -dc_2, directory_cache_hits, , Accumulator, 0, 0, 3992, 3992, 3992 -dc_2, mshr_hits, , Accumulator, 0, 0, 0, 0, 0 -dc_2, requests_received_GetX, , Accumulator, 0, 0, 108, 108, 108 -dc_2, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -dc_2, requests_received_GetS, , Accumulator, 0, 0, 3884, 3884, 3884 -dc_2, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -dc_2, requests_received_PutE, , Accumulator, 0, 0, 0, 0, 0 -dc_2, requests_received_PutS, , Accumulator, 0, 0, 0, 0, 0 -dc_2, responses_received_NACK, , Accumulator, 0, 0, 0, 0, 0 -dc_2, responses_received_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -dc_2, responses_received_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -dc_2, responses_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -dc_2, responses_received_PutE, , Accumulator, 0, 0, 0, 0, 0 -dc_2, responses_received_PutS, , Accumulator, 0, 0, 0, 0, 0 -dc_2, memory_requests_data_read, , Accumulator, 0, 0, 3992, 3992, 3992 -dc_2, memory_requests_data_write, , Accumulator, 0, 0, 0, 0, 0 -dc_2, memory_requests_directory_entry_read, , Accumulator, 0, 0, 0, 0, 0 -dc_2, memory_requests_directory_entry_write, , Accumulator, 0, 0, 0, 0, 0 -dc_2, requests_sent_Inv, , Accumulator, 0, 0, 0, 0, 0 -dc_2, requests_sent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -dc_2, requests_sent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -dc_2, responses_sent_NACK, , Accumulator, 0, 0, 0, 0, 0 -dc_2, responses_sent_GetSResp, , Accumulator, 0, 0, 3879, 3879, 3879 -dc_2, responses_sent_GetXResp, , Accumulator, 0, 0, 108, 108, 108 -dc_2, MSHR_occupancy, , Accumulator, 0, 0, 88403, 480181, 3491605 -l3cache_6, packet_latency, , Accumulator, 0, 0, 9831, 31545, 4434 -l3cache_6, send_bit_count, , Accumulator, 0, 0, 1455360, 769081344, 4404 -l3cache_6, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, idle_time, , Accumulator, 0, 0, 17445908505, 6010321813644169345, 4375 -l3cache_6, TotalEventsReceived, , Accumulator, 0, 0, 4434, 4434, 4434 -l3cache_6, TotalEventsReplayed, , Accumulator, 0, 0, 42, 42, 42 -l3cache_6, CacheHits, , Accumulator, 0, 0, 190, 190, 190 -l3cache_6, GetSHit_Arrival, , Accumulator, 0, 0, 161, 161, 161 -l3cache_6, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, GetSHit_Blocked, , Accumulator, 0, 0, 29, 29, 29 -l3cache_6, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, CacheMisses, , Accumulator, 0, 0, 2107, 2107, 2107 -l3cache_6, GetSMiss_Arrival, , Accumulator, 0, 0, 2042, 2042, 2042 -l3cache_6, GetXMiss_Arrival, , Accumulator, 0, 0, 52, 52, 52 -l3cache_6, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, GetSMiss_Blocked, , Accumulator, 0, 0, 8, 8, 8 -l3cache_6, GetXMiss_Blocked, , Accumulator, 0, 0, 5, 5, 5 -l3cache_6, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, GetS_recv, , Accumulator, 0, 0, 2240, 2240, 2240 -l3cache_6, GetX_recv, , Accumulator, 0, 0, 57, 57, 57 -l3cache_6, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, GetSResp_recv, , Accumulator, 0, 0, 1949, 1949, 1949 -l3cache_6, GetXResp_recv, , Accumulator, 0, 0, 51, 51, 51 -l3cache_6, PutS_recv, , Accumulator, 0, 0, 6, 6, 6 -l3cache_6, PutM_recv, , Accumulator, 0, 0, 5, 5, 5 -l3cache_6, PutE_recv, , Accumulator, 0, 0, 19, 19, 19 -l3cache_6, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, MSHR_occupancy, , Accumulator, 0, 0, 676190, 2415236, 46430925 -l3cache_6, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetS_I, , Accumulator, 0, 0, 1954, 1954, 1954 -l3cache_6, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetS_E, , Accumulator, 0, 0, 274, 274, 274 -l3cache_6, stateEvent_GetS_M, , Accumulator, 0, 0, 12, 12, 12 -l3cache_6, stateEvent_GetX_I, , Accumulator, 0, 0, 51, 51, 51 -l3cache_6, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetX_M, , Accumulator, 0, 0, 6, 6, 6 -l3cache_6, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1949, 1949, 1949 -l3cache_6, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 51, 51, 51 -l3cache_6, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_E, , Accumulator, 0, 0, 6, 6, 6 -l3cache_6, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutE_E, , Accumulator, 0, 0, 19, 19, 19 -l3cache_6, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutM_M, , Accumulator, 0, 0, 5, 5, 5 -l3cache_6, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 5, 5, 5 -l3cache_6, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 95, 95, 95 -l3cache_6, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 1, 1, 1 -l3cache_6, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 6, 6, 6 -l3cache_6, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, latency_GetS_IS, , Accumulator, 0, 0, 648628, 215934392, 1949 -l3cache_6, latency_GetS_M, , Accumulator, 0, 0, 5636, 803258, 96 -l3cache_6, latency_GetX_IM, , Accumulator, 0, 0, 17012, 5677860, 51 -l3cache_6, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, latency_GetX_M, , Accumulator, 0, 0, 646, 80388, 6 -l3cache_6, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, latency_GetSEx_M, , Accumulator, 0, 0, 5636, 803258, 96 -l3cache_6, eventSent_GetS, , Accumulator, 0, 0, 1954, 1954, 1954 -l3cache_6, eventSent_GetX, , Accumulator, 0, 0, 51, 51, 51 -l3cache_6, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, eventSent_GetSResp, , Accumulator, 0, 0, 2235, 2235, 2235 -l3cache_6, eventSent_GetXResp, , Accumulator, 0, 0, 57, 57, 57 -l3cache_6, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, eventSent_Inv, , Accumulator, 0, 0, 6, 6, 6 -l3cache_6, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, eventSent_FetchInv, , Accumulator, 0, 0, 5, 5, 5 -l3cache_6, eventSent_FetchInvX, , Accumulator, 0, 0, 96, 96, 96 -l3cache_6, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l3cache_6, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, TotalEventsReceived, , Accumulator, 0, 0, 21930, 21930, 21930 -l1cache_6, TotalEventsReplayed, , Accumulator, 0, 0, 6566, 6566, 6566 -l1cache_6, CacheHits, , Accumulator, 0, 0, 16905, 16905, 16905 -l1cache_6, GetSHit_Arrival, , Accumulator, 0, 0, 5800, 5800, 5800 -l1cache_6, GetXHit_Arrival, , Accumulator, 0, 0, 4594, 4594, 4594 -l1cache_6, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, GetSHit_Blocked, , Accumulator, 0, 0, 6220, 6220, 6220 -l1cache_6, GetXHit_Blocked, , Accumulator, 0, 0, 291, 291, 291 -l1cache_6, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, CacheMisses, , Accumulator, 0, 0, 2453, 2453, 2453 -l1cache_6, GetSMiss_Arrival, , Accumulator, 0, 0, 2350, 2350, 2350 -l1cache_6, GetXMiss_Arrival, , Accumulator, 0, 0, 56, 56, 56 -l1cache_6, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, GetXMiss_Blocked, , Accumulator, 0, 0, 47, 47, 47 -l1cache_6, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, GetS_recv, , Accumulator, 0, 0, 14373, 14373, 14373 -l1cache_6, GetX_recv, , Accumulator, 0, 0, 4988, 4988, 4988 -l1cache_6, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, GetSResp_recv, , Accumulator, 0, 0, 2342, 2342, 2342 -l1cache_6, GetXResp_recv, , Accumulator, 0, 0, 103, 103, 103 -l1cache_6, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, FetchInv_recv, , Accumulator, 0, 0, 14, 14, 14 -l1cache_6, FetchInvX_recv, , Accumulator, 0, 0, 65, 65, 65 -l1cache_6, Inv_recv, , Accumulator, 0, 0, 45, 45, 45 -l1cache_6, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, MSHR_occupancy, , Accumulator, 0, 0, 2742250, 35873166, 46430903 -l1cache_6, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, evict_S, , Accumulator, 0, 0, 311, 311, 311 -l1cache_6, evict_E, , Accumulator, 0, 0, 1482, 1482, 1482 -l1cache_6, evict_M, , Accumulator, 0, 0, 50, 50, 50 -l1cache_6, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_GetS_I, , Accumulator, 0, 0, 2350, 2350, 2350 -l1cache_6, stateEvent_GetS_S, , Accumulator, 0, 0, 3371, 3371, 3371 -l1cache_6, stateEvent_GetS_E, , Accumulator, 0, 0, 6494, 6494, 6494 -l1cache_6, stateEvent_GetS_M, , Accumulator, 0, 0, 2155, 2155, 2155 -l1cache_6, stateEvent_GetX_I, , Accumulator, 0, 0, 55, 55, 55 -l1cache_6, stateEvent_GetX_S, , Accumulator, 0, 0, 48, 48, 48 -l1cache_6, stateEvent_GetX_E, , Accumulator, 0, 0, 2, 2, 2 -l1cache_6, stateEvent_GetX_M, , Accumulator, 0, 0, 4883, 4883, 4883 -l1cache_6, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2342, 2342, 2342 -l1cache_6, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 63, 63, 63 -l1cache_6, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 40, 40, 40 -l1cache_6, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Inv_S, , Accumulator, 0, 0, 37, 37, 37 -l1cache_6, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 -l1cache_6, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_M, , Accumulator, 0, 0, 14, 14, 14 -l1cache_6, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 30, 30, 30 -l1cache_6, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 35, 35, 35 -l1cache_6, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, latency_GetS_IS, , Accumulator, 0, 0, 729184, 266230174, 2342 -l1cache_6, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, latency_GetX_IM, , Accumulator, 0, 0, 19839, 7414759, 55 -l1cache_6, latency_GetX_SM, , Accumulator, 0, 0, 7495, 1280731, 48 -l1cache_6, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, eventSent_GetS, , Accumulator, 0, 0, 2350, 2350, 2350 -l1cache_6, eventSent_GetX, , Accumulator, 0, 0, 103, 103, 103 -l1cache_6, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, eventSent_GetSResp, , Accumulator, 0, 0, 14362, 14362, 14362 -l1cache_6, eventSent_GetXResp, , Accumulator, 0, 0, 4988, 4988, 4988 -l1cache_6, eventSent_PutS, , Accumulator, 0, 0, 311, 311, 311 -l1cache_6, eventSent_PutE, , Accumulator, 0, 0, 1482, 1482, 1482 -l1cache_6, eventSent_PutM, , Accumulator, 0, 0, 50, 50, 50 -l1cache_6, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, eventSent_FetchResp, , Accumulator, 0, 0, 14, 14, 14 -l1cache_6, eventSent_FetchXResp, , Accumulator, 0, 0, 65, 65, 65 -l1cache_6, eventSent_AckInv, , Accumulator, 0, 0, 45, 45, 45 -l1cache_6, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l1cache_6, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, packet_latency, , Accumulator, 0, 0, 8095, 31475, 2516 -l2cache_6, send_bit_count, , Accumulator, 0, 0, 220288, 46538752, 2562 -l2cache_6, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, idle_time, , Accumulator, 0, 0, 17406334224, 6325692593053012412, 2404 -l2cache_6, TotalEventsReceived, , Accumulator, 0, 0, 6936, 6936, 6936 -l2cache_6, TotalEventsReplayed, , Accumulator, 0, 0, 8, 8, 8 -l2cache_6, CacheHits, , Accumulator, 0, 0, 80, 80, 80 -l2cache_6, GetSHit_Arrival, , Accumulator, 0, 0, 80, 80, 80 -l2cache_6, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, CacheMisses, , Accumulator, 0, 0, 2373, 2373, 2373 -l2cache_6, GetSMiss_Arrival, , Accumulator, 0, 0, 2270, 2270, 2270 -l2cache_6, GetXMiss_Arrival, , Accumulator, 0, 0, 103, 103, 103 -l2cache_6, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, GetXMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, GetS_recv, , Accumulator, 0, 0, 2350, 2350, 2350 -l2cache_6, GetX_recv, , Accumulator, 0, 0, 103, 103, 103 -l2cache_6, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, GetSResp_recv, , Accumulator, 0, 0, 2262, 2262, 2262 -l2cache_6, GetXResp_recv, , Accumulator, 0, 0, 103, 103, 103 -l2cache_6, PutS_recv, , Accumulator, 0, 0, 311, 311, 311 -l2cache_6, PutM_recv, , Accumulator, 0, 0, 50, 50, 50 -l2cache_6, PutE_recv, , Accumulator, 0, 0, 1482, 1482, 1482 -l2cache_6, FetchInv_recv, , Accumulator, 0, 0, 14, 14, 14 -l2cache_6, FetchInvX_recv, , Accumulator, 0, 0, 92, 92, 92 -l2cache_6, Inv_recv, , Accumulator, 0, 0, 45, 45, 45 -l2cache_6, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, MSHR_occupancy, , Accumulator, 0, 0, 741246, 3100354, 46430910 -l2cache_6, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, evict_S, , Accumulator, 0, 0, 13, 13, 13 -l2cache_6, evict_E, , Accumulator, 0, 0, 21, 21, 21 -l2cache_6, evict_M, , Accumulator, 0, 0, 4, 4, 4 -l2cache_6, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetS_I, , Accumulator, 0, 0, 2270, 2270, 2270 -l2cache_6, stateEvent_GetS_S, , Accumulator, 0, 0, 74, 74, 74 -l2cache_6, stateEvent_GetS_E, , Accumulator, 0, 0, 6, 6, 6 -l2cache_6, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetX_I, , Accumulator, 0, 0, 55, 55, 55 -l2cache_6, stateEvent_GetX_S, , Accumulator, 0, 0, 48, 48, 48 -l2cache_6, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2262, 2262, 2262 -l2cache_6, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 63, 63, 63 -l2cache_6, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 40, 40, 40 -l2cache_6, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_S, , Accumulator, 0, 0, 311, 311, 311 -l2cache_6, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutE_E, , Accumulator, 0, 0, 1482, 1482, 1482 -l2cache_6, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutM_E, , Accumulator, 0, 0, 2, 2, 2 -l2cache_6, stateEvent_PutM_M, , Accumulator, 0, 0, 48, 48, 48 -l2cache_6, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Inv_S, , Accumulator, 0, 0, 37, 37, 37 -l2cache_6, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 -l2cache_6, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_M, , Accumulator, 0, 0, 14, 14, 14 -l2cache_6, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 57, 57, 57 -l2cache_6, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 35, 35, 35 -l2cache_6, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 14, 14, 14 -l2cache_6, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 30, 30, 30 -l2cache_6, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 35, 35, 35 -l2cache_6, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 37, 37, 37 -l2cache_6, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 8, 8, 8 -l2cache_6, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, latency_GetS_IS, , Accumulator, 0, 0, 714812, 257562998, 2262 -l2cache_6, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, latency_GetX_IM, , Accumulator, 0, 0, 19509, 7178671, 55 -l2cache_6, latency_GetX_SM, , Accumulator, 0, 0, 3985, 337755, 48 -l2cache_6, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, eventSent_GetS, , Accumulator, 0, 0, 2270, 2270, 2270 -l2cache_6, eventSent_GetX, , Accumulator, 0, 0, 103, 103, 103 -l2cache_6, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, eventSent_GetSResp, , Accumulator, 0, 0, 2342, 2342, 2342 -l2cache_6, eventSent_GetXResp, , Accumulator, 0, 0, 103, 103, 103 -l2cache_6, eventSent_PutS, , Accumulator, 0, 0, 13, 13, 13 -l2cache_6, eventSent_PutE, , Accumulator, 0, 0, 21, 21, 21 -l2cache_6, eventSent_PutM, , Accumulator, 0, 0, 4, 4, 4 -l2cache_6, eventSent_Inv, , Accumulator, 0, 0, 45, 45, 45 -l2cache_6, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, eventSent_FetchInv, , Accumulator, 0, 0, 14, 14, 14 -l2cache_6, eventSent_FetchInvX, , Accumulator, 0, 0, 65, 65, 65 -l2cache_6, eventSent_FetchResp, , Accumulator, 0, 0, 14, 14, 14 -l2cache_6, eventSent_FetchXResp, , Accumulator, 0, 0, 92, 92, 92 -l2cache_6, eventSent_AckInv, , Accumulator, 0, 0, 45, 45, 45 -l2cache_6, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l2cache_6, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, packet_latency, , Accumulator, 0, 0, 9854, 31494, 4450 -l3cache_7, send_bit_count, , Accumulator, 0, 0, 1460416, 772059136, 4411 -l3cache_7, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, idle_time, , Accumulator, 0, 0, 17445956502, 6018053818393881184, 4344 -l3cache_7, TotalEventsReceived, , Accumulator, 0, 0, 4450, 4450, 4450 -l3cache_7, TotalEventsReplayed, , Accumulator, 0, 0, 42, 42, 42 -l3cache_7, CacheHits, , Accumulator, 0, 0, 198, 198, 198 -l3cache_7, GetSHit_Arrival, , Accumulator, 0, 0, 171, 171, 171 -l3cache_7, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, GetSHit_Blocked, , Accumulator, 0, 0, 27, 27, 27 -l3cache_7, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, CacheMisses, , Accumulator, 0, 0, 2106, 2106, 2106 -l3cache_7, GetSMiss_Arrival, , Accumulator, 0, 0, 2036, 2036, 2036 -l3cache_7, GetXMiss_Arrival, , Accumulator, 0, 0, 55, 55, 55 -l3cache_7, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, GetSMiss_Blocked, , Accumulator, 0, 0, 10, 10, 10 -l3cache_7, GetXMiss_Blocked, , Accumulator, 0, 0, 5, 5, 5 -l3cache_7, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, GetS_recv, , Accumulator, 0, 0, 2244, 2244, 2244 -l3cache_7, GetX_recv, , Accumulator, 0, 0, 60, 60, 60 -l3cache_7, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, GetSResp_recv, , Accumulator, 0, 0, 1931, 1931, 1931 -l3cache_7, GetXResp_recv, , Accumulator, 0, 0, 53, 53, 53 -l3cache_7, PutS_recv, , Accumulator, 0, 0, 12, 12, 12 -l3cache_7, PutM_recv, , Accumulator, 0, 0, 4, 4, 4 -l3cache_7, PutE_recv, , Accumulator, 0, 0, 23, 23, 23 -l3cache_7, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, MSHR_occupancy, , Accumulator, 0, 0, 675490, 2414444, 46430925 -l3cache_7, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetS_I, , Accumulator, 0, 0, 1934, 1934, 1934 -l3cache_7, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetS_E, , Accumulator, 0, 0, 299, 299, 299 -l3cache_7, stateEvent_GetS_M, , Accumulator, 0, 0, 11, 11, 11 -l3cache_7, stateEvent_GetX_I, , Accumulator, 0, 0, 53, 53, 53 -l3cache_7, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetX_E, , Accumulator, 0, 0, 1, 1, 1 -l3cache_7, stateEvent_GetX_M, , Accumulator, 0, 0, 6, 6, 6 -l3cache_7, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1931, 1931, 1931 -l3cache_7, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 53, 53, 53 -l3cache_7, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_E, , Accumulator, 0, 0, 12, 12, 12 -l3cache_7, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutE_E, , Accumulator, 0, 0, 23, 23, 23 -l3cache_7, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutM_E, , Accumulator, 0, 0, 1, 1, 1 -l3cache_7, stateEvent_PutM_M, , Accumulator, 0, 0, 3, 3, 3 -l3cache_7, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 3, 3, 3 -l3cache_7, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 108, 108, 108 -l3cache_7, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 4, 4, 4 -l3cache_7, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 8, 8, 8 -l3cache_7, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, latency_GetS_IS, , Accumulator, 0, 0, 647938, 217495450, 1931 -l3cache_7, latency_GetS_M, , Accumulator, 0, 0, 6068, 734304, 112 -l3cache_7, latency_GetX_IM, , Accumulator, 0, 0, 17862, 6027798, 53 -l3cache_7, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, latency_GetX_M, , Accumulator, 0, 0, 682, 74934, 7 -l3cache_7, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, latency_GetSEx_M, , Accumulator, 0, 0, 6068, 734304, 112 -l3cache_7, eventSent_GetS, , Accumulator, 0, 0, 1934, 1934, 1934 -l3cache_7, eventSent_GetX, , Accumulator, 0, 0, 53, 53, 53 -l3cache_7, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, eventSent_GetSResp, , Accumulator, 0, 0, 2241, 2241, 2241 -l3cache_7, eventSent_GetXResp, , Accumulator, 0, 0, 60, 60, 60 -l3cache_7, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, eventSent_Inv, , Accumulator, 0, 0, 8, 8, 8 -l3cache_7, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, eventSent_FetchInv, , Accumulator, 0, 0, 3, 3, 3 -l3cache_7, eventSent_FetchInvX, , Accumulator, 0, 0, 112, 112, 112 -l3cache_7, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l3cache_7, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, TotalEventsReceived, , Accumulator, 0, 0, 21993, 21993, 21993 -l1cache_7, TotalEventsReplayed, , Accumulator, 0, 0, 6680, 6680, 6680 -l1cache_7, CacheHits, , Accumulator, 0, 0, 17036, 17036, 17036 -l1cache_7, GetSHit_Arrival, , Accumulator, 0, 0, 5794, 5794, 5794 -l1cache_7, GetXHit_Arrival, , Accumulator, 0, 0, 4619, 4619, 4619 -l1cache_7, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, GetSHit_Blocked, , Accumulator, 0, 0, 6323, 6323, 6323 -l1cache_7, GetXHit_Blocked, , Accumulator, 0, 0, 300, 300, 300 -l1cache_7, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, CacheMisses, , Accumulator, 0, 0, 2406, 2406, 2406 -l1cache_7, GetSMiss_Arrival, , Accumulator, 0, 0, 2305, 2305, 2305 -l1cache_7, GetXMiss_Arrival, , Accumulator, 0, 0, 56, 56, 56 -l1cache_7, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, GetXMiss_Blocked, , Accumulator, 0, 0, 45, 45, 45 -l1cache_7, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, GetS_recv, , Accumulator, 0, 0, 14433, 14433, 14433 -l1cache_7, GetX_recv, , Accumulator, 0, 0, 5020, 5020, 5020 -l1cache_7, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, GetSResp_recv, , Accumulator, 0, 0, 2302, 2302, 2302 -l1cache_7, GetXResp_recv, , Accumulator, 0, 0, 101, 101, 101 -l1cache_7, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, FetchInv_recv, , Accumulator, 0, 0, 10, 10, 10 -l1cache_7, FetchInvX_recv, , Accumulator, 0, 0, 74, 74, 74 -l1cache_7, Inv_recv, , Accumulator, 0, 0, 53, 53, 53 -l1cache_7, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, MSHR_occupancy, , Accumulator, 0, 0, 2764584, 36149280, 46430890 -l1cache_7, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, evict_S, , Accumulator, 0, 0, 325, 325, 325 -l1cache_7, evict_E, , Accumulator, 0, 0, 1421, 1421, 1421 -l1cache_7, evict_M, , Accumulator, 0, 0, 50, 50, 50 -l1cache_7, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_GetS_I, , Accumulator, 0, 0, 2305, 2305, 2305 -l1cache_7, stateEvent_GetS_S, , Accumulator, 0, 0, 3582, 3582, 3582 -l1cache_7, stateEvent_GetS_E, , Accumulator, 0, 0, 6473, 6473, 6473 -l1cache_7, stateEvent_GetS_M, , Accumulator, 0, 0, 2062, 2062, 2062 -l1cache_7, stateEvent_GetX_I, , Accumulator, 0, 0, 54, 54, 54 -l1cache_7, stateEvent_GetX_S, , Accumulator, 0, 0, 47, 47, 47 -l1cache_7, stateEvent_GetX_E, , Accumulator, 0, 0, 4, 4, 4 -l1cache_7, stateEvent_GetX_M, , Accumulator, 0, 0, 4915, 4915, 4915 -l1cache_7, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2302, 2302, 2302 -l1cache_7, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 66, 66, 66 -l1cache_7, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 35, 35, 35 -l1cache_7, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Inv_S, , Accumulator, 0, 0, 41, 41, 41 -l1cache_7, stateEvent_Inv_SM, , Accumulator, 0, 0, 12, 12, 12 -l1cache_7, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_M, , Accumulator, 0, 0, 10, 10, 10 -l1cache_7, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 35, 35, 35 -l1cache_7, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 -l1cache_7, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, latency_GetS_IS, , Accumulator, 0, 0, 723435, 264946419, 2302 -l1cache_7, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, latency_GetX_IM, , Accumulator, 0, 0, 19189, 7088063, 54 -l1cache_7, latency_GetX_SM, , Accumulator, 0, 0, 7576, 1371048, 47 -l1cache_7, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, eventSent_GetS, , Accumulator, 0, 0, 2305, 2305, 2305 -l1cache_7, eventSent_GetX, , Accumulator, 0, 0, 101, 101, 101 -l1cache_7, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, eventSent_GetSResp, , Accumulator, 0, 0, 14419, 14419, 14419 -l1cache_7, eventSent_GetXResp, , Accumulator, 0, 0, 5020, 5020, 5020 -l1cache_7, eventSent_PutS, , Accumulator, 0, 0, 325, 325, 325 -l1cache_7, eventSent_PutE, , Accumulator, 0, 0, 1421, 1421, 1421 -l1cache_7, eventSent_PutM, , Accumulator, 0, 0, 50, 50, 50 -l1cache_7, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, eventSent_FetchResp, , Accumulator, 0, 0, 10, 10, 10 -l1cache_7, eventSent_FetchXResp, , Accumulator, 0, 0, 74, 74, 74 -l1cache_7, eventSent_AckInv, , Accumulator, 0, 0, 53, 53, 53 -l1cache_7, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l1cache_7, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, packet_latency, , Accumulator, 0, 0, 8186, 31702, 2500 -l2cache_7, send_bit_count, , Accumulator, 0, 0, 223232, 49676288, 2528 -l2cache_7, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, idle_time, , Accumulator, 0, 0, 17406014860, 6325692522071821278, 2417 -l2cache_7, TotalEventsReceived, , Accumulator, 0, 0, 6839, 6839, 6839 -l2cache_7, TotalEventsReplayed, , Accumulator, 0, 0, 12, 12, 12 -l2cache_7, CacheHits, , Accumulator, 0, 0, 71, 71, 71 -l2cache_7, GetSHit_Arrival, , Accumulator, 0, 0, 71, 71, 71 -l2cache_7, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, CacheMisses, , Accumulator, 0, 0, 2335, 2335, 2335 -l2cache_7, GetSMiss_Arrival, , Accumulator, 0, 0, 2234, 2234, 2234 -l2cache_7, GetXMiss_Arrival, , Accumulator, 0, 0, 101, 101, 101 -l2cache_7, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, GetXMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, GetS_recv, , Accumulator, 0, 0, 2305, 2305, 2305 -l2cache_7, GetX_recv, , Accumulator, 0, 0, 101, 101, 101 -l2cache_7, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, GetSResp_recv, , Accumulator, 0, 0, 2231, 2231, 2231 -l2cache_7, GetXResp_recv, , Accumulator, 0, 0, 101, 101, 101 -l2cache_7, PutS_recv, , Accumulator, 0, 0, 325, 325, 325 -l2cache_7, PutM_recv, , Accumulator, 0, 0, 50, 50, 50 -l2cache_7, PutE_recv, , Accumulator, 0, 0, 1421, 1421, 1421 -l2cache_7, FetchInv_recv, , Accumulator, 0, 0, 10, 10, 10 -l2cache_7, FetchInvX_recv, , Accumulator, 0, 0, 105, 105, 105 -l2cache_7, Inv_recv, , Accumulator, 0, 0, 53, 53, 53 -l2cache_7, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, MSHR_occupancy, , Accumulator, 0, 0, 734005, 2996671, 46430854 -l2cache_7, evict_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, evict_S, , Accumulator, 0, 0, 11, 11, 11 -l2cache_7, evict_E, , Accumulator, 0, 0, 9, 9, 9 -l2cache_7, evict_M, , Accumulator, 0, 0, 5, 5, 5 -l2cache_7, evict_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, evict_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, evict_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, evict_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetS_I, , Accumulator, 0, 0, 2234, 2234, 2234 -l2cache_7, stateEvent_GetS_S, , Accumulator, 0, 0, 69, 69, 69 -l2cache_7, stateEvent_GetS_E, , Accumulator, 0, 0, 2, 2, 2 -l2cache_7, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetX_I, , Accumulator, 0, 0, 54, 54, 54 -l2cache_7, stateEvent_GetX_S, , Accumulator, 0, 0, 47, 47, 47 -l2cache_7, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2231, 2231, 2231 -l2cache_7, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 66, 66, 66 -l2cache_7, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 35, 35, 35 -l2cache_7, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_S, , Accumulator, 0, 0, 325, 325, 325 -l2cache_7, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutE_E, , Accumulator, 0, 0, 1421, 1421, 1421 -l2cache_7, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutM_E, , Accumulator, 0, 0, 4, 4, 4 -l2cache_7, stateEvent_PutM_M, , Accumulator, 0, 0, 46, 46, 46 -l2cache_7, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Inv_S, , Accumulator, 0, 0, 41, 41, 41 -l2cache_7, stateEvent_Inv_SM, , Accumulator, 0, 0, 12, 12, 12 -l2cache_7, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_M, , Accumulator, 0, 0, 10, 10, 10 -l2cache_7, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 66, 66, 66 -l2cache_7, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 -l2cache_7, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 10, 10, 10 -l2cache_7, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 35, 35, 35 -l2cache_7, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 39, 39, 39 -l2cache_7, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 41, 41, 41 -l2cache_7, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 12, 12, 12 -l2cache_7, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, latency_GetS_IS, , Accumulator, 0, 0, 709339, 256346935, 2231 -l2cache_7, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, latency_GetX_IM, , Accumulator, 0, 0, 18865, 6859739, 54 -l2cache_7, latency_GetX_SM, , Accumulator, 0, 0, 4117, 391949, 47 -l2cache_7, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, eventSent_GetS, , Accumulator, 0, 0, 2234, 2234, 2234 -l2cache_7, eventSent_GetX, , Accumulator, 0, 0, 101, 101, 101 -l2cache_7, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, eventSent_GetSResp, , Accumulator, 0, 0, 2302, 2302, 2302 -l2cache_7, eventSent_GetXResp, , Accumulator, 0, 0, 101, 101, 101 -l2cache_7, eventSent_PutS, , Accumulator, 0, 0, 11, 11, 11 -l2cache_7, eventSent_PutE, , Accumulator, 0, 0, 9, 9, 9 -l2cache_7, eventSent_PutM, , Accumulator, 0, 0, 5, 5, 5 -l2cache_7, eventSent_Inv, , Accumulator, 0, 0, 53, 53, 53 -l2cache_7, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, eventSent_FetchInv, , Accumulator, 0, 0, 10, 10, 10 -l2cache_7, eventSent_FetchInvX, , Accumulator, 0, 0, 74, 74, 74 -l2cache_7, eventSent_FetchResp, , Accumulator, 0, 0, 10, 10, 10 -l2cache_7, eventSent_FetchXResp, , Accumulator, 0, 0, 105, 105, 105 -l2cache_7, eventSent_AckInv, , Accumulator, 0, 0, 53, 53, 53 -l2cache_7, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 -l2cache_7, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 -memory_3, requests_received_GetS, , Accumulator, 0, 0, 3870, 3870, 3870 -memory_3, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -memory_3, requests_received_GetX, , Accumulator, 0, 0, 111, 111, 111 -memory_3, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -memory_3, outstanding_requests, , Accumulator, 0, 0, 84242, 441980, 3491605 -memory_3, latency_GetS, , Accumulator, 0, 0, 409070, 43316150, 3865 -memory_3, latency_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -memory_3, latency_GetX, , Accumulator, 0, 0, 11840, 1264500, 111 -memory_3, latency_PutM, , Accumulator, 0, 0, 0, 0, 0 -memory_3, cycles_with_issue, , Accumulator, 0, 0, 3981, 3981, 3981 -memory_3, cycles_attempted_issue_but_rejected, , Accumulator, 0, 0, 0, 0, 0 -memory_3, total_cycles, , Accumulator, 0, 0, 3491605, 3491605, 3491605 -dc_3, packet_latency, , Accumulator, 0, 0, 12471, 47983, 3981 -dc_3, send_bit_count, , Accumulator, 0, 0, 2290176, 1319141376, 3976 -dc_3, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 -dc_3, idle_time, , Accumulator, 0, 0, 18446744073658530871, 15652134759752061941, 3982 -dc_3, replacement_request_latency, , Accumulator, 0, 0, 0, 0, 0 -dc_3, get_request_latency, , Accumulator, 0, 0, 452523, 51529829, 3976 -dc_3, directory_cache_hits, , Accumulator, 0, 0, 3981, 3981, 3981 -dc_3, mshr_hits, , Accumulator, 0, 0, 0, 0, 0 -dc_3, requests_received_GetX, , Accumulator, 0, 0, 111, 111, 111 -dc_3, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 -dc_3, requests_received_GetS, , Accumulator, 0, 0, 3870, 3870, 3870 -dc_3, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -dc_3, requests_received_PutE, , Accumulator, 0, 0, 0, 0, 0 -dc_3, requests_received_PutS, , Accumulator, 0, 0, 0, 0, 0 -dc_3, responses_received_NACK, , Accumulator, 0, 0, 0, 0, 0 -dc_3, responses_received_FetchResp, , Accumulator, 0, 0, 0, 0, 0 -dc_3, responses_received_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 -dc_3, responses_received_PutM, , Accumulator, 0, 0, 0, 0, 0 -dc_3, responses_received_PutE, , Accumulator, 0, 0, 0, 0, 0 -dc_3, responses_received_PutS, , Accumulator, 0, 0, 0, 0, 0 -dc_3, memory_requests_data_read, , Accumulator, 0, 0, 3981, 3981, 3981 -dc_3, memory_requests_data_write, , Accumulator, 0, 0, 0, 0, 0 -dc_3, memory_requests_directory_entry_read, , Accumulator, 0, 0, 0, 0, 0 -dc_3, memory_requests_directory_entry_write, , Accumulator, 0, 0, 0, 0, 0 -dc_3, requests_sent_Inv, , Accumulator, 0, 0, 0, 0, 0 -dc_3, requests_sent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 -dc_3, requests_sent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 -dc_3, responses_sent_NACK, , Accumulator, 0, 0, 0, 0, 0 -dc_3, responses_sent_GetSResp, , Accumulator, 0, 0, 3865, 3865, 3865 -dc_3, responses_sent_GetXResp, , Accumulator, 0, 0, 111, 111, 111 -dc_3, MSHR_occupancy, , Accumulator, 0, 0, 88208, 481090, 3491602 diff --git a/src/sst/elements/Samba/tests/stencil3dbench.py b/src/sst/elements/Samba/tests/stencil3dbench.py deleted file mode 100644 index 066cca44e5..0000000000 --- a/src/sst/elements/Samba/tests/stencil3dbench.py +++ /dev/null @@ -1,58 +0,0 @@ -import sst - -# Define SST core options -#sst.setProgramOption("timebase", "1ps") -#sst.setProgramOption("stopAtCycle", "0 ns") - -# Define the simulation components -comp_cpu = sst.Component("cpu", "miranda.BaseCPU") -comp_cpu.addParams({ - "verbose" : 1, - "clock" : "2GHz", - "generator" : "miranda.Stencil3DBenchGenerator", - "generatorParams.verbose" : 1, - "generatorParams.nx" : 30, - "generatorParams.ny" : 20, - "generatorParams.nz" : 10, - "printStats" : 1, -}) - -# Tell SST what statistics handling we want -sst.setStatisticLoadLevel(4) - -# Enable statistics outputs -comp_cpu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) - -comp_l1cache = sst.Component("l1cache", "memHierarchy.Cache") -comp_l1cache.addParams({ - "access_latency_cycles" : "2", - "cache_frequency" : "2 GHz", - "replacement_policy" : "lru", - "coherence_protocol" : "MESI", - "associativity" : "4", - "cache_line_size" : "64", - "prefetcher" : "cassini.StridePrefetcher", - "debug" : "1", - "L1" : "1", - "cache_size" : "32KB" -}) - -# Enable statistics outputs -comp_l1cache.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) - -comp_memory = sst.Component("memory", "memHierarchy.MemController") -comp_memory.addParams({ - "coherence_protocol" : "MESI", - "backend.access_time" : "100 ns", - "backend.mem_size" : "4096MiB", - "clock" : "1GHz" -}) - - -# Define the simulation links -link_cpu_cache_link = sst.Link("link_cpu_cache_link") -link_cpu_cache_link.connect( (comp_cpu, "cache_link", "50ps"), (comp_l1cache, "high_network_0", "50ps") ) -link_cpu_cache_link.setNoCut() - -link_mem_bus_link = sst.Link("link_mem_bus_link") -link_mem_bus_link.connect( (comp_l1cache, "low_network_0", "50ps"), (comp_memory, "direct_link", "50ps") ) diff --git a/src/sst/elements/Samba/tests/stencil3dbench_mmu.py b/src/sst/elements/Samba/tests/stencil3dbench_mmu.py deleted file mode 100644 index edfe6da27f..0000000000 --- a/src/sst/elements/Samba/tests/stencil3dbench_mmu.py +++ /dev/null @@ -1,102 +0,0 @@ -import sst - -# Define SST core options -#sst.setProgramOption("timebase", "1ps") -#sst.setProgramOption("stopAtCycle", "0 ns") - -# Define the simulation components -comp_cpu = sst.Component("cpu", "miranda.BaseCPU") -comp_cpu.addParams({ - "verbose" : 1, - "clock" : "2GHz", - "generator" : "miranda.Stencil3DBenchGenerator", - "generatorParams.verbose" : 1, - "generatorParams.nx" : 30, - "generatorParams.ny" : 20, - "generatorParams.nz" : 10, - "printStats" : 1, -}) - -# Tell SST what statistics handling we want -sst.setStatisticLoadLevel(4) - -# Enable statistics outputs -comp_cpu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) - -comp_l1cache = sst.Component("l1cache", "memHierarchy.Cache") -comp_l1cache.addParams({ - "access_latency_cycles" : "2", - "cache_frequency" : "2 GHz", - "replacement_policy" : "lru", - "coherence_protocol" : "MESI", - "associativity" : "4", - "cache_line_size" : "64", - "prefetcher" : "cassini.StridePrefetcher", - "debug" : "1", - "L1" : "1", - "cache_size" : "32KB" -}) - -# Enable statistics outputs -comp_l1cache.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) - -comp_memory = sst.Component("memory", "memHierarchy.MemController") -comp_memory.addParams({ - "coherence_protocol" : "MESI", - "backend.access_time" : "100 ns", - "backend.mem_size" : "4096MiB", - "clock" : "1GHz" -}) - -mmu = sst.Component("mmu0", "Samba") -mmu.addParams({ - "corecount": 1, - "page_size_L1": 4, - "assoc_L1": 32, - "size_L1": 32, - "clock": "2GHz", - "levels": 2, - "max_width_L1": 2, - "max_outstanding_L1": 2, - "latency_L1": 1, - "parallel_mode_L1": 1, - "page_size_L2": 4, - "assoc_L2": 8, - "size_L2": 128, - "max_outstanding_L2": 2, - "max_width_L2": 4, - "latency_L2": 10, - "upper_link_L1": 1, # we assume same link latency of up and down traffic of the link - "upper_link_L2": 1, - "parallel_mode_L2": 0 -}); - -mmu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) - -# Define the simulation links -link_cpu_mmu_link = sst.Link("link_cpu_mmu_link") - -link_mmu_cache_link = sst.Link("link_mmu_cache_link") - - -''' -arielMMULink = sst.Link("cpu_mmu_link_" + str(next_core_id)) - MMUCacheLink = sst.Link("mmu_cache_link_" + str(next_core_id)) - arielMMULink.connect((ariel, "cache_link_%d"%next_core_id, ring_latency), (mmu, "cpu_to_mmu%d"%next_core_id, ring_latency)) - MMUCacheLink.connect((mmu, "mmu_to_cache%d"%next_core_id, ring_latency), (l1, "high_network_0", ring_latency)) - arielMMULink.setNoCut() - MMUCacheLink.setNoCut() -''' - - -link_cpu_mmu_link.connect( (comp_cpu, "cache_link", "50ps"), (mmu, "cpu_to_mmu0", "50ps") ) -link_cpu_mmu_link.setNoCut() - -link_mmu_cache_link.connect( (mmu, "mmu_to_cache0", "50ps"), (comp_l1cache, "high_network_0", "50ps") ) -link_mmu_cache_link.setNoCut() - - - -link_mem_bus_link = sst.Link("link_mem_bus_link") -link_mem_bus_link.connect( (comp_l1cache, "low_network_0", "50ps"), (comp_memory, "direct_link", "50ps") ) - diff --git a/src/sst/elements/Samba/tests/streambench.py b/src/sst/elements/Samba/tests/streambench.py deleted file mode 100644 index 9ae3b3984c..0000000000 --- a/src/sst/elements/Samba/tests/streambench.py +++ /dev/null @@ -1,57 +0,0 @@ -import sst - -# Define SST core options -sst.setProgramOption("timebase", "1ps") -sst.setProgramOption("stopAtCycle", "0 ns") - -# Tell SST what statistics handling we want -sst.setStatisticLoadLevel(4) - -# Define the simulation components -comp_cpu = sst.Component("cpu", "miranda.BaseCPU") -comp_cpu.addParams({ - "verbose" : 0, - "generator" : "miranda.STREAMBenchGenerator", - "clock" : "2.4GHz", - "generatorParams.verbose" : 0, - "generatorParams.n" : 10000, - "generatorParams.operandwidth" : 16, - "printStats" : 1, -}) - -# Enable statistics outputs -comp_cpu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) - -comp_l1cache = sst.Component("l1cache", "memHierarchy.Cache") -comp_l1cache.addParams({ - "access_latency_cycles" : "2", - "cache_frequency" : "2.4 GHz", - "replacement_policy" : "lru", - "coherence_protocol" : "MESI", - "associativity" : "4", - "cache_line_size" : "64", - "prefetcher" : "cassini.StridePrefetcher", - "debug" : "1", - "L1" : "1", - "cache_size" : "32KB" -}) - -# Enable statistics outputs -comp_l1cache.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) - -comp_memory = sst.Component("memory", "memHierarchy.MemController") -comp_memory.addParams({ - "coherence_protocol" : "MESI", - "backend.access_time" : "100 ns", - "backend.mem_size" : "4096MiB", - "clock" : "1GHz" -}) - - -# Define the simulation links -link_cpu_cache_link = sst.Link("link_cpu_cache_link") -link_cpu_cache_link.connect( (comp_cpu, "cache_link", "50ps"), (comp_l1cache, "high_network_0", "50ps") ) -link_cpu_cache_link.setNoCut() - -link_mem_bus_link = sst.Link("link_mem_bus_link") -link_mem_bus_link.connect( (comp_l1cache, "low_network_0", "50ps"), (comp_memory, "direct_link", "50ps") ) diff --git a/src/sst/elements/Samba/tests/streambench_mmu.py b/src/sst/elements/Samba/tests/streambench_mmu.py deleted file mode 100644 index 86dec24328..0000000000 --- a/src/sst/elements/Samba/tests/streambench_mmu.py +++ /dev/null @@ -1,101 +0,0 @@ -import sst - -# Define SST core options -sst.setProgramOption("timebase", "1ps") -sst.setProgramOption("stopAtCycle", "0 ns") - -# Tell SST what statistics handling we want -sst.setStatisticLoadLevel(4) - -# Define the simulation components -comp_cpu = sst.Component("cpu", "miranda.BaseCPU") -comp_cpu.addParams({ - "verbose" : 0, - "generator" : "miranda.STREAMBenchGenerator", - "clock" : "2.4GHz", - "generatorParams.verbose" : 0, - "generatorParams.n" : 10000, - "generatorParams.operandwidth" : 16, - "printStats" : 1, -}) - -# Enable statistics outputs -comp_cpu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) - -comp_l1cache = sst.Component("l1cache", "memHierarchy.Cache") -comp_l1cache.addParams({ - "access_latency_cycles" : "2", - "cache_frequency" : "2.4 GHz", - "replacement_policy" : "lru", - "coherence_protocol" : "MESI", - "associativity" : "4", - "cache_line_size" : "64", - "prefetcher" : "cassini.StridePrefetcher", - "debug" : "1", - "L1" : "1", - "cache_size" : "32KB" -}) - -# Enable statistics outputs -comp_l1cache.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) - -comp_memory = sst.Component("memory", "memHierarchy.MemController") -comp_memory.addParams({ - "coherence_protocol" : "MESI", - "backend.access_time" : "100 ns", - "backend.mem_size" : "4096MiB", - "clock" : "1GHz" -}) - -mmu = sst.Component("mmu0", "Samba") -mmu.addParams({ - "corecount": 1, - "page_size_L1": 4, - "assoc_L1": 32, - "size_L1": 32, - "clock": "2.4GHz", - "levels": 2, - "max_width_L1": 2, - "max_outstanding_L1": 2, - "latency_L1": 1, - "parallel_mode_L1": 0, - "page_size_L2": 4, - "assoc_L2": 8, - "size_L2": 128, - "max_outstanding_L2": 2, - "max_width_L2": 2, - "latency_L2": 10, - "upper_link_L1": 1, # we assume same link latency of up and down traffic of the link - "upper_link_L2": 1, - "parallel_mode_L2": 0 -}); - -mmu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) - -# Define the simulation links -link_cpu_mmu_link = sst.Link("link_cpu_mmu_link") - -link_mmu_cache_link = sst.Link("link_mmu_cache_link") - - -''' -arielMMULink = sst.Link("cpu_mmu_link_" + str(next_core_id)) - MMUCacheLink = sst.Link("mmu_cache_link_" + str(next_core_id)) - arielMMULink.connect((ariel, "cache_link_%d"%next_core_id, ring_latency), (mmu, "cpu_to_mmu%d"%next_core_id, ring_latency)) - MMUCacheLink.connect((mmu, "mmu_to_cache%d"%next_core_id, ring_latency), (l1, "high_network_0", ring_latency)) - arielMMULink.setNoCut() - MMUCacheLink.setNoCut() -''' - - -link_cpu_mmu_link.connect( (comp_cpu, "cache_link", "50ps"), (mmu, "cpu_to_mmu0", "50ps") ) -link_cpu_mmu_link.setNoCut() - -link_mmu_cache_link.connect( (mmu, "mmu_to_cache0", "50ps"), (comp_l1cache, "high_network_0", "50ps") ) -link_mmu_cache_link.setNoCut() - - - -link_mem_bus_link = sst.Link("link_mem_bus_link") -link_mem_bus_link.connect( (comp_l1cache, "low_network_0", "50ps"), (comp_memory, "direct_link", "50ps") ) - From a7f5db136974e996e0c9c256115359eb00eee625 Mon Sep 17 00:00:00 2001 From: Amro Awad Date: Sun, 4 Dec 2016 22:58:08 -0700 Subject: [PATCH 2/5] Adding page table walker, page table walking caches, and multi-page size support --- src/sst/elements/Samba/Makefile.in | 869 +++++++++++++++++++++++++++++ 1 file changed, 869 insertions(+) create mode 100644 src/sst/elements/Samba/Makefile.in diff --git a/src/sst/elements/Samba/Makefile.in b/src/sst/elements/Samba/Makefile.in new file mode 100644 index 0000000000..b395efffa9 --- /dev/null +++ b/src/sst/elements/Samba/Makefile.in @@ -0,0 +1,869 @@ +# Makefile.in generated by automake 1.13.4 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = src/sst/elements/Samba +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(top_srcdir)/config/depcomp README +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/config/argz.m4 \ + $(top_srcdir)/config/libtool.m4 $(top_srcdir)/config/ltdl.m4 \ + $(top_srcdir)/config/ltoptions.m4 \ + $(top_srcdir)/config/ltsugar.m4 \ + $(top_srcdir)/config/ltversion.m4 \ + $(top_srcdir)/config/lt~obsolete.m4 \ + $(top_srcdir)/config/sst_check_chdl.m4 \ + $(top_srcdir)/config/sst_check_dramsim.m4 \ + $(top_srcdir)/config/sst_check_dumpi.m4 \ + $(top_srcdir)/config/sst_check_fdsim.m4 \ + $(top_srcdir)/config/sst_check_glpk.m4 \ + $(top_srcdir)/config/sst_check_goblin_hmcsim.m4 \ + $(top_srcdir)/config/sst_check_hybridsim.m4 \ + $(top_srcdir)/config/sst_check_libphx.m4 \ + $(top_srcdir)/config/sst_check_libz.m4 \ + $(top_srcdir)/config/sst_check_metis.m4 \ + $(top_srcdir)/config/sst_check_micron_hmcsim.m4 \ + $(top_srcdir)/config/sst_check_nvdimmsim.m4 \ + $(top_srcdir)/config/sst_check_otf.m4 \ + $(top_srcdir)/config/sst_check_pintool.m4 \ + $(top_srcdir)/config/sst_check_ptrace_set_tracer.m4 \ + $(top_srcdir)/config/sst_check_qsim.m4 \ + $(top_srcdir)/config/sst_check_ramulator.m4 \ + $(top_srcdir)/config/sst_check_systemc.m4 \ + $(top_srcdir)/config/sst_core_check_install.m4 \ + $(top_srcdir)/config/sst_elements_config_output.m4 \ + $(top_srcdir)/config/sst_os_check_osx.m4 \ + $(top_srcdir)/config/sst_elements_include.m4 \ + $(top_srcdir)/src/sst/elements/ariel/configure.m4 \ + $(top_srcdir)/src/sst/elements/chdlComponent/configure.m4 \ + $(top_srcdir)/src/sst/elements/ember/configure.m4 \ + $(top_srcdir)/src/sst/elements/HMC/configure.m4 \ + $(top_srcdir)/src/sst/elements/memHierarchy/configure.m4 \ + $(top_srcdir)/src/sst/elements/prospero/configure.m4 \ + $(top_srcdir)/src/sst/elements/qsimComponent/configure.m4 \ + $(top_srcdir)/src/sst/elements/Samba/configure.m4 \ + $(top_srcdir)/src/sst/elements/scheduler/configure.m4 \ + $(top_srcdir)/src/sst/elements/SysC/configure.m4 \ + $(top_srcdir)/src/sst/elements/VaultSimC/configure.m4 \ + $(top_srcdir)/src/sst/elements/zodiac/configure.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/src/sst_element_config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(compdir)" +LTLIBRARIES = $(comp_LTLIBRARIES) +am__DEPENDENCIES_1 = +libSamba_la_DEPENDENCIES = $(am__DEPENDENCIES_1) +am_libSamba_la_OBJECTS = libSamba_la-libSamba.lo libSamba_la-Samba.lo \ + libSamba_la-TLBUnit.lo libSamba_la-TLBhierarchy.lo \ + libSamba_la-PageTableWalker.lo +libSamba_la_OBJECTS = $(am_libSamba_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +libSamba_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(libSamba_la_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +AM_V_CXX = $(am__v_CXX_@AM_V@) +am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) +am__v_CXX_0 = @echo " CXX " $@; +am__v_CXX_1 = +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) +am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) +am__v_CXXLD_0 = @echo " CXXLD " $@; +am__v_CXXLD_1 = +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libSamba_la_SOURCES) +DIST_SOURCES = $(libSamba_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +ARGZ_H = @ARGZ_H@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BOOST_LIB_SUFFIX = @BOOST_LIB_SUFFIX@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CC_VERSION = @CC_VERSION@ +CFLAGS = @CFLAGS@ +CHDL_CPPFLAGS = @CHDL_CPPFLAGS@ +CHDL_CXXFLGAS = @CHDL_CXXFLGAS@ +CHDL_LDFLAGS = @CHDL_LDFLAGS@ +CHDL_LIBDIR = @CHDL_LIBDIR@ +CHDL_LIBS = @CHDL_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DRAMSIM_CPPFLAGS = @DRAMSIM_CPPFLAGS@ +DRAMSIM_LDFLAGS = @DRAMSIM_LDFLAGS@ +DRAMSIM_LIB = @DRAMSIM_LIB@ +DRAMSIM_LIBDIR = @DRAMSIM_LIBDIR@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DUMPI_CPPFLAGS = @DUMPI_CPPFLAGS@ +DUMPI_LDFLAGS = @DUMPI_LDFLAGS@ +DUMPI_LIB = @DUMPI_LIB@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FDSIM_CPPFLAGS = @FDSIM_CPPFLAGS@ +FDSIM_CXXFLAGS = @FDSIM_CXXFLAGS@ +FDSIM_LDFLAGS = @FDSIM_LDFLAGS@ +FDSIM_LIB = @FDSIM_LIB@ +FDSIM_LIBDIR = @FDSIM_LIBDIR@ +FGREP = @FGREP@ +GLPK_CPPFLAGS = @GLPK_CPPFLAGS@ +GLPK_LDFLAGS = @GLPK_LDFLAGS@ +GLPK_LIB = @GLPK_LIB@ +GLPK_LIBDIR = @GLPK_LIBDIR@ +GOBLIN_HMCSIM_CPPFLAGS = @GOBLIN_HMCSIM_CPPFLAGS@ +GOBLIN_HMCSIM_LDFLAGS = @GOBLIN_HMCSIM_LDFLAGS@ +GOBLIN_HMCSIM_LIB = @GOBLIN_HMCSIM_LIB@ +GREP = @GREP@ +HAVE_SET_PTRACER = @HAVE_SET_PTRACER@ +HYBRIDSIM_CPPFLAGS = @HYBRIDSIM_CPPFLAGS@ +HYBRIDSIM_LDFLAGS = @HYBRIDSIM_LDFLAGS@ +HYBRIDSIM_LIB = @HYBRIDSIM_LIB@ +HYBRIDSIM_LIBDIR = @HYBRIDSIM_LIBDIR@ +INCLTDL = @INCLTDL@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBADD_DL = @LIBADD_DL@ +LIBADD_DLD_LINK = @LIBADD_DLD_LINK@ +LIBADD_DLOPEN = @LIBADD_DLOPEN@ +LIBADD_SHL_LOAD = @LIBADD_SHL_LOAD@ +LIBLTDL = @LIBLTDL@ +LIBOBJS = @LIBOBJS@ +LIBPHX_CPPFLAGS = @LIBPHX_CPPFLAGS@ +LIBPHX_LDFLAGS = @LIBPHX_LDFLAGS@ +LIBPHX_LIB = @LIBPHX_LIB@ +LIBPHX_LIBDIR = @LIBPHX_LIBDIR@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBZ_CPPFLAGS = @LIBZ_CPPFLAGS@ +LIBZ_LDFLAGS = @LIBZ_LDFLAGS@ +LIBZ_LIB = @LIBZ_LIB@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTDLDEPS = @LTDLDEPS@ +LTDLINCL = @LTDLINCL@ +LTDLOPEN = @LTDLOPEN@ +LTLIBOBJS = @LTLIBOBJS@ +LT_CONFIG_H = @LT_CONFIG_H@ +LT_DLLOADERS = @LT_DLLOADERS@ +LT_DLPREOPEN = @LT_DLPREOPEN@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +METIS_CPPFLAGS = @METIS_CPPFLAGS@ +METIS_LDFLAGS = @METIS_LDFLAGS@ +METIS_LIB = @METIS_LIB@ +METIS_LIBDIR = @METIS_LIBDIR@ +MICRON_HMCSIM_CPPFLAGS = @MICRON_HMCSIM_CPPFLAGS@ +MICRON_HMCSIM_LDFLAGS = @MICRON_HMCSIM_LDFLAGS@ +MICRON_HMCSIM_LIBDIR = @MICRON_HMCSIM_LIBDIR@ +MICRON_HMCSIM_LIBS = @MICRON_HMCSIM_LIBS@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +NVDIMMSIM_CPPFLAGS = @NVDIMMSIM_CPPFLAGS@ +NVDIMMSIM_CXXFLAGS = @NVDIMMSIM_CXXFLAGS@ +NVDIMMSIM_LDFLAGS = @NVDIMMSIM_LDFLAGS@ +NVDIMMSIM_LIB = @NVDIMMSIM_LIB@ +NVDIMMSIM_LIBDIR = @NVDIMMSIM_LIBDIR@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTF_CONFIG_TOOL = @OTF_CONFIG_TOOL@ +OTF_CPPFLAGS = @OTF_CPPFLAGS@ +OTF_LDFLAGS = @OTF_LDFLAGS@ +OTF_PATH = @OTF_PATH@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PINTOOL_CPPFLAGS = @PINTOOL_CPPFLAGS@ +PINTOOL_DIR = @PINTOOL_DIR@ +PINTOOL_LDFLAGS = @PINTOOL_LDFLAGS@ +PINTOOL_PATH = @PINTOOL_PATH@ +PINTOOL_RUNTIME = @PINTOOL_RUNTIME@ +QSIM_CPPFLAGS = @QSIM_CPPFLAGS@ +QSIM_LDFLAGS = @QSIM_LDFLAGS@ +QSIM_LIBDIR = @QSIM_LIBDIR@ +QSIM_LIBS = @QSIM_LIBS@ +RAMULATOR_CPPFLAGS = @RAMULATOR_CPPFLAGS@ +RAMULATOR_LDFLAGS = @RAMULATOR_LDFLAGS@ +RAMULATOR_LIB = @RAMULATOR_LIB@ +RAMULATOR_LIBDIR = @RAMULATOR_LIBDIR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SSTELEMENTS_GIT_COMMITCOUNT = @SSTELEMENTS_GIT_COMMITCOUNT@ +SSTELEMENTS_GIT_HEADSHA = @SSTELEMENTS_GIT_HEADSHA@ +SST_ACTIVE_ELEMENT_LIBRARIES = @SST_ACTIVE_ELEMENT_LIBRARIES@ +SST_CONFIG_TOOL = @SST_CONFIG_TOOL@ +SST_DIST_ELEMENT_LIBRARIES = @SST_DIST_ELEMENT_LIBRARIES@ +SST_PREFIX = @SST_PREFIX@ +SST_REGISTER_TOOL = @SST_REGISTER_TOOL@ +SST_SYSTEMC_CPPFLAGS = @SST_SYSTEMC_CPPFLAGS@ +SST_SYSTEMC_LDFLAGS = @SST_SYSTEMC_LDFLAGS@ +SST_SYSTEMC_LIB = @SST_SYSTEMC_LIB@ +SST_SYSTEMC_LIBDIR = @SST_SYSTEMC_LIBDIR@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +ltdl_LIBOBJS = @ltdl_LIBOBJS@ +ltdl_LTLIBOBJS = @ltdl_LTLIBOBJS@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sys_symbol_underscore = @sys_symbol_underscore@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CPPFLAGS = \ + $(BOOST_CPPFLAGS) \ + $(MPIT_CPPFLAGS) + +AM_LDFLAGS = -lm +compdir = $(pkglibdir) +comp_LTLIBRARIES = libSamba.la +libSamba_la_SOURCES = \ + libSamba.cc \ + Samba.cc \ + Samba.h \ + TLBUnit.cc \ + TLBUnit.h \ + TLBentry.h \ + TLBhierarchy.h \ + TLBhierarchy.cc \ + PageTableWalker.h \ + PageTableWalker.cc + +libSamba_la_CPPFLAGS = \ + -I$(top_srcdir)/src \ + $(SST_CXX0X_FLAGS) -fPIC -Wall \ + $(BOOST_CPPFLAGS) \ + $(MPI_CPPFLAGS) + +libSamba_la_LDFLAGS = \ + -avoid-version + +libSamba_la_LIBADD = \ + $(SST_SYSTEMC_LIB) + +all: all-am + +.SUFFIXES: +.SUFFIXES: .cc .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/sst/elements/Samba/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign src/sst/elements/Samba/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-compLTLIBRARIES: $(comp_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(comp_LTLIBRARIES)'; test -n "$(compdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(compdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(compdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(compdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(compdir)"; \ + } + +uninstall-compLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(comp_LTLIBRARIES)'; test -n "$(compdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(compdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(compdir)/$$f"; \ + done + +clean-compLTLIBRARIES: + -test -z "$(comp_LTLIBRARIES)" || rm -f $(comp_LTLIBRARIES) + @list='$(comp_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libSamba.la: $(libSamba_la_OBJECTS) $(libSamba_la_DEPENDENCIES) $(EXTRA_libSamba_la_DEPENDENCIES) + $(AM_V_CXXLD)$(libSamba_la_LINK) -rpath $(compdir) $(libSamba_la_OBJECTS) $(libSamba_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSamba_la-PageTableWalker.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSamba_la-Samba.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSamba_la-TLBUnit.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSamba_la-TLBhierarchy.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSamba_la-libSamba.Plo@am__quote@ + +.cc.o: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + +.cc.obj: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cc.lo: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + +libSamba_la-libSamba.lo: libSamba.cc +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libSamba_la-libSamba.lo -MD -MP -MF $(DEPDIR)/libSamba_la-libSamba.Tpo -c -o libSamba_la-libSamba.lo `test -f 'libSamba.cc' || echo '$(srcdir)/'`libSamba.cc +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libSamba_la-libSamba.Tpo $(DEPDIR)/libSamba_la-libSamba.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='libSamba.cc' object='libSamba_la-libSamba.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libSamba_la-libSamba.lo `test -f 'libSamba.cc' || echo '$(srcdir)/'`libSamba.cc + +libSamba_la-Samba.lo: Samba.cc +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libSamba_la-Samba.lo -MD -MP -MF $(DEPDIR)/libSamba_la-Samba.Tpo -c -o libSamba_la-Samba.lo `test -f 'Samba.cc' || echo '$(srcdir)/'`Samba.cc +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libSamba_la-Samba.Tpo $(DEPDIR)/libSamba_la-Samba.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Samba.cc' object='libSamba_la-Samba.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libSamba_la-Samba.lo `test -f 'Samba.cc' || echo '$(srcdir)/'`Samba.cc + +libSamba_la-TLBUnit.lo: TLBUnit.cc +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libSamba_la-TLBUnit.lo -MD -MP -MF $(DEPDIR)/libSamba_la-TLBUnit.Tpo -c -o libSamba_la-TLBUnit.lo `test -f 'TLBUnit.cc' || echo '$(srcdir)/'`TLBUnit.cc +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libSamba_la-TLBUnit.Tpo $(DEPDIR)/libSamba_la-TLBUnit.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TLBUnit.cc' object='libSamba_la-TLBUnit.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libSamba_la-TLBUnit.lo `test -f 'TLBUnit.cc' || echo '$(srcdir)/'`TLBUnit.cc + +libSamba_la-TLBhierarchy.lo: TLBhierarchy.cc +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libSamba_la-TLBhierarchy.lo -MD -MP -MF $(DEPDIR)/libSamba_la-TLBhierarchy.Tpo -c -o libSamba_la-TLBhierarchy.lo `test -f 'TLBhierarchy.cc' || echo '$(srcdir)/'`TLBhierarchy.cc +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libSamba_la-TLBhierarchy.Tpo $(DEPDIR)/libSamba_la-TLBhierarchy.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TLBhierarchy.cc' object='libSamba_la-TLBhierarchy.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libSamba_la-TLBhierarchy.lo `test -f 'TLBhierarchy.cc' || echo '$(srcdir)/'`TLBhierarchy.cc + +libSamba_la-PageTableWalker.lo: PageTableWalker.cc +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libSamba_la-PageTableWalker.lo -MD -MP -MF $(DEPDIR)/libSamba_la-PageTableWalker.Tpo -c -o libSamba_la-PageTableWalker.lo `test -f 'PageTableWalker.cc' || echo '$(srcdir)/'`PageTableWalker.cc +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libSamba_la-PageTableWalker.Tpo $(DEPDIR)/libSamba_la-PageTableWalker.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PageTableWalker.cc' object='libSamba_la-PageTableWalker.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libSamba_la-PageTableWalker.lo `test -f 'PageTableWalker.cc' || echo '$(srcdir)/'`PageTableWalker.cc + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(compdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-compLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-compLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-compLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ + clean-compLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-compLTLIBRARIES install-data install-data-am \ + install-dvi install-dvi-am install-exec install-exec-am \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-compLTLIBRARIES + + +#noinst_PROGRAMS = infogather +#infogather_SOURCES = infogather.cc +#infogather_CPPFLAGS = -I/usr/local/systemc-2.3/include \ +# -std=c++11 -fPIC -Wall \ +# $(BOOST_CPPFLAGS) \ +# $(MPI_CPPFLAGS) +#infogather_LDFLAGS = -L/usr/local/systemc-2.3/lib-linux64/ -lsystemc \ +# -lhmcsim \ +# -avoid-version +#infogather_LDADD = libhmcsim.so + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: From b3dbaa32945f5502524f65f2fb698352431264fb Mon Sep 17 00:00:00 2001 From: Amro Awad Date: Mon, 5 Dec 2016 00:13:54 -0700 Subject: [PATCH 3/5] Fixing the default of the new parameters, to make it compaitable with old test files --- src/sst/elements/Samba/PageTableWalker.cc | 6 +++--- src/sst/elements/Samba/libSamba.cc | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sst/elements/Samba/PageTableWalker.cc b/src/sst/elements/Samba/PageTableWalker.cc index 88cd134fe1..05505b9b20 100644 --- a/src/sst/elements/Samba/PageTableWalker.cc +++ b/src/sst/elements/Samba/PageTableWalker.cc @@ -68,7 +68,7 @@ PageTableWalker::PageTableWalker(int tlb_id, PageTableWalker * Next_level, int l - self_connected = ((uint32_t) params.find("self_connected", 0)); + self_connected = ((uint32_t) params.find("self_connected", 1)); page_walk_latency = ((uint32_t) params.find("page_walk_latency", 50)); @@ -114,9 +114,9 @@ PageTableWalker::PageTableWalker(int tlb_id, PageTableWalker * Next_level, int l for(int i=0; i < sizes; i++) { - size[i] = ((uint32_t) params.find("size"+std::to_string(i+1) + "_PTWC", 1)); + size[i] = ((uint32_t) params.find("size"+std::to_string(i+1) + "_PTWC", 16)); - assoc[i] = ((uint32_t) params.find("assoc"+std::to_string(i+1) + "_PTWC", 1)); + assoc[i] = ((uint32_t) params.find("assoc"+std::to_string(i+1) + "_PTWC", 4)); // We define the number of sets for that structure of page size number i sets[i] = size[i]/assoc[i]; diff --git a/src/sst/elements/Samba/libSamba.cc b/src/sst/elements/Samba/libSamba.cc index 53831ae942..a7f4592807 100644 --- a/src/sst/elements/Samba/libSamba.cc +++ b/src/sst/elements/Samba/libSamba.cc @@ -61,7 +61,7 @@ static const ElementInfoParam Samba_params[] = { {"latency_L%(levels)d", "the access latency in cycles for this level of memory","1"}, {"parallel_mode_L%(levels)d", "this is for the corner case of having a one cycle overlap with accessing cache","0"}, {"page_walk_latency", "Each page table walk latency in nanoseconds", "50"}, - {"self_connected", "Determines if the page walkers are acutally connected to memory hierarcy or just add fixed latency (self-connected)", "0"}, + {"self_connected", "Determines if the page walkers are acutally connected to memory hierarcy or just add fixed latency (self-connected)", "1"}, {NULL, NULL, NULL}, }; From 31993bc6a476cd52909a756869f9edad910fd7e2 Mon Sep 17 00:00:00 2001 From: Amro Awad Date: Mon, 5 Dec 2016 10:05:56 -0700 Subject: [PATCH 4/5] Adding all the old tests to Samba's test directory --- src/sst/elements/Samba/tests/gupsgen_mmu.py | 4 +- .../Samba/tests/stats-snb-ariel-dram.csv | 5350 +++++++++++++++++ .../elements/Samba/tests/stencil3dbench.py | 58 + .../Samba/tests/stencil3dbench_mmu.py | 102 + src/sst/elements/Samba/tests/streambench.py | 57 + .../elements/Samba/tests/streambench_mmu.py | 101 + 6 files changed, 5669 insertions(+), 3 deletions(-) create mode 100644 src/sst/elements/Samba/tests/stats-snb-ariel-dram.csv create mode 100644 src/sst/elements/Samba/tests/stencil3dbench.py create mode 100644 src/sst/elements/Samba/tests/stencil3dbench_mmu.py create mode 100644 src/sst/elements/Samba/tests/streambench.py create mode 100644 src/sst/elements/Samba/tests/streambench_mmu.py diff --git a/src/sst/elements/Samba/tests/gupsgen_mmu.py b/src/sst/elements/Samba/tests/gupsgen_mmu.py index fac42b0bae..26d4bdc12a 100644 --- a/src/sst/elements/Samba/tests/gupsgen_mmu.py +++ b/src/sst/elements/Samba/tests/gupsgen_mmu.py @@ -93,7 +93,6 @@ "assoc4_PTWC": 4, # this just indicates the associtativit the page table walk cache level 1 (PGD) "latency_PTWC": 10, # This is the latency of checking the page table walk cache "max_outstanding_PTWC": 4, - "self_connected": 1, }); @@ -116,8 +115,7 @@ ''' -#ptw_to_mem.connect((mmu, "ptw_to_mem0","100ns"), (mmu, "ptw_to_mem0","100ns")) -#ptw_to_mem.setNoCut() +#ptw_to_mem.connect((mmu, "ptw_to_mem0","100ps"), (mmu, "ptw_to_mem0","100ps")) link_cpu_mmu_link.connect( (comp_cpu, "cache_link", "0ps"), (mmu, "cpu_to_mmu0", "0ps") ) link_cpu_mmu_link.setNoCut() diff --git a/src/sst/elements/Samba/tests/stats-snb-ariel-dram.csv b/src/sst/elements/Samba/tests/stats-snb-ariel-dram.csv new file mode 100644 index 0000000000..c97127c279 --- /dev/null +++ b/src/sst/elements/Samba/tests/stats-snb-ariel-dram.csv @@ -0,0 +1,5350 @@ +ComponentName, StatisticName, StatisticSubId, StatisticType, SimTime, Rank, Sum.u64, SumSQ.u64, Count.u64 +mmu0, total_waiting, 0, Accumulator, 0, 0, 445933, 55081755, 25687 +mmu0, tlb_hits, Core0_L2, Accumulator, 0, 0, 522, 522, 522 +mmu0, tlb_misses, Core0_L2, Accumulator, 0, 0, 1639, 1639, 1639 +mmu0, tlb_hits, Core0_L1, Accumulator, 0, 0, 23526, 23526, 23526 +mmu0, tlb_misses, Core0_L1, Accumulator, 0, 0, 2161, 2161, 2161 +mmu0, total_waiting, 1, Accumulator, 0, 0, 417008, 58783652, 19646 +mmu0, tlb_hits, Core1_L2, Accumulator, 0, 0, 403, 403, 403 +mmu0, tlb_misses, Core1_L2, Accumulator, 0, 0, 1604, 1604, 1604 +mmu0, tlb_hits, Core1_L1, Accumulator, 0, 0, 17641, 17641, 17641 +mmu0, tlb_misses, Core1_L1, Accumulator, 0, 0, 2007, 2007, 2007 +mmu0, total_waiting, 2, Accumulator, 0, 0, 422958, 56802854, 19568 +mmu0, tlb_hits, Core2_L2, Accumulator, 0, 0, 397, 397, 397 +mmu0, tlb_misses, Core2_L2, Accumulator, 0, 0, 1625, 1625, 1625 +mmu0, tlb_hits, Core2_L1, Accumulator, 0, 0, 17548, 17548, 17548 +mmu0, tlb_misses, Core2_L1, Accumulator, 0, 0, 2022, 2022, 2022 +mmu0, total_waiting, 3, Accumulator, 0, 0, 417616, 58240416, 19412 +mmu0, tlb_hits, Core3_L2, Accumulator, 0, 0, 377, 377, 377 +mmu0, tlb_misses, Core3_L2, Accumulator, 0, 0, 1645, 1645, 1645 +mmu0, tlb_hits, Core3_L1, Accumulator, 0, 0, 17392, 17392, 17392 +mmu0, tlb_misses, Core3_L1, Accumulator, 0, 0, 2022, 2022, 2022 +mmu0, total_waiting, 4, Accumulator, 0, 0, 423245, 58755571, 19127 +mmu0, tlb_hits, Core4_L2, Accumulator, 0, 0, 345, 345, 345 +mmu0, tlb_misses, Core4_L2, Accumulator, 0, 0, 1658, 1658, 1658 +mmu0, tlb_hits, Core4_L1, Accumulator, 0, 0, 17124, 17124, 17124 +mmu0, tlb_misses, Core4_L1, Accumulator, 0, 0, 2003, 2003, 2003 +mmu0, total_waiting, 5, Accumulator, 0, 0, 418582, 58488638, 19257 +mmu0, tlb_hits, Core5_L2, Accumulator, 0, 0, 367, 367, 367 +mmu0, tlb_misses, Core5_L2, Accumulator, 0, 0, 1628, 1628, 1628 +mmu0, tlb_hits, Core5_L1, Accumulator, 0, 0, 17264, 17264, 17264 +mmu0, tlb_misses, Core5_L1, Accumulator, 0, 0, 1995, 1995, 1995 +mmu0, total_waiting, 6, Accumulator, 0, 0, 440909, 59643715, 19361 +mmu0, tlb_hits, Core6_L2, Accumulator, 0, 0, 425, 425, 425 +mmu0, tlb_misses, Core6_L2, Accumulator, 0, 0, 1615, 1615, 1615 +mmu0, tlb_hits, Core6_L1, Accumulator, 0, 0, 17323, 17323, 17323 +mmu0, tlb_misses, Core6_L1, Accumulator, 0, 0, 2040, 2040, 2040 +mmu0, total_waiting, 7, Accumulator, 0, 0, 432614, 58903800, 19453 +mmu0, tlb_hits, Core7_L2, Accumulator, 0, 0, 429, 429, 429 +mmu0, tlb_misses, Core7_L2, Accumulator, 0, 0, 1617, 1617, 1617 +mmu0, tlb_hits, Core7_L1, Accumulator, 0, 0, 17409, 17409, 17409 +mmu0, tlb_misses, Core7_L1, Accumulator, 0, 0, 2046, 2046, 2046 +a0, tlb_hits, , Accumulator, 0, 0, 18730, 18730, 18730 +a0, tlb_evicts, , Accumulator, 0, 0, 138725, 138725, 138725 +a0, tlb_translate_queries, , Accumulator, 0, 0, 166788, 166788, 166788 +a0, tlb_shootdown, , Accumulator, 0, 0, 0, 0, 0 +a0, tlb_page_allocs, , Accumulator, 0, 0, 5237, 5237, 5237 +a0, read_requests, 0, Accumulator, 0, 0, 18849, 18849, 18849 +a0, write_requests, 0, Accumulator, 0, 0, 6838, 6838, 6838 +a0, split_read_requests, 0, Accumulator, 0, 0, 0, 0, 0 +a0, split_write_requests, 0, Accumulator, 0, 0, 0, 0, 0 +a0, no_ops, 0, Accumulator, 0, 0, 50066, 50066, 50066 +a0, instruction_count, 0, Accumulator, 0, 0, 25377, 25377, 25377 +a0, fp_sp_ins, 0, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ins, 0, Accumulator, 0, 0, 5393, 5393, 5393 +a0, fp_sp_simd_ins, 0, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_simd_ins, 0, Accumulator, 0, 0, 0, 0, 0 +a0, fp_sp_scalar_ins, 0, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_scalar_ins, 0, Accumulator, 0, 0, 5393, 5393, 5393 +a0, fp_sp_ops, 0, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ops, 0, Accumulator, 0, 0, 5393, 5393, 5393 +a0, read_requests, 1, Accumulator, 0, 0, 14609, 14609, 14609 +a0, write_requests, 1, Accumulator, 0, 0, 5041, 5041, 5041 +a0, split_read_requests, 1, Accumulator, 0, 0, 0, 0, 0 +a0, split_write_requests, 1, Accumulator, 0, 0, 0, 0, 0 +a0, no_ops, 1, Accumulator, 0, 0, 41416, 41416, 41416 +a0, instruction_count, 1, Accumulator, 0, 0, 19520, 19520, 19520 +a0, fp_sp_ins, 1, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ins, 1, Accumulator, 0, 0, 5276, 5276, 5276 +a0, fp_sp_simd_ins, 1, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_simd_ins, 1, Accumulator, 0, 0, 0, 0, 0 +a0, fp_sp_scalar_ins, 1, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_scalar_ins, 1, Accumulator, 0, 0, 5276, 5276, 5276 +a0, fp_sp_ops, 1, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ops, 1, Accumulator, 0, 0, 5276, 5276, 5276 +a0, read_requests, 2, Accumulator, 0, 0, 14580, 14580, 14580 +a0, write_requests, 2, Accumulator, 0, 0, 5001, 5001, 5001 +a0, split_read_requests, 2, Accumulator, 0, 0, 0, 0, 0 +a0, split_write_requests, 2, Accumulator, 0, 0, 0, 0, 0 +a0, no_ops, 2, Accumulator, 0, 0, 41089, 41089, 41089 +a0, instruction_count, 2, Accumulator, 0, 0, 19477, 19477, 19477 +a0, fp_sp_ins, 2, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ins, 2, Accumulator, 0, 0, 5601, 5601, 5601 +a0, fp_sp_simd_ins, 2, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_simd_ins, 2, Accumulator, 0, 0, 0, 0, 0 +a0, fp_sp_scalar_ins, 2, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_scalar_ins, 2, Accumulator, 0, 0, 5601, 5601, 5601 +a0, fp_sp_ops, 2, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ops, 2, Accumulator, 0, 0, 5601, 5601, 5601 +a0, read_requests, 3, Accumulator, 0, 0, 14503, 14503, 14503 +a0, write_requests, 3, Accumulator, 0, 0, 4912, 4912, 4912 +a0, split_read_requests, 3, Accumulator, 0, 0, 0, 0, 0 +a0, split_write_requests, 3, Accumulator, 0, 0, 0, 0, 0 +a0, no_ops, 3, Accumulator, 0, 0, 40906, 40906, 40906 +a0, instruction_count, 3, Accumulator, 0, 0, 19306, 19306, 19306 +a0, fp_sp_ins, 3, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ins, 3, Accumulator, 0, 0, 5662, 5662, 5662 +a0, fp_sp_simd_ins, 3, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_simd_ins, 3, Accumulator, 0, 0, 0, 0, 0 +a0, fp_sp_scalar_ins, 3, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_scalar_ins, 3, Accumulator, 0, 0, 5662, 5662, 5662 +a0, fp_sp_ops, 3, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ops, 3, Accumulator, 0, 0, 5662, 5662, 5662 +a0, read_requests, 4, Accumulator, 0, 0, 14188, 14188, 14188 +a0, write_requests, 4, Accumulator, 0, 0, 4939, 4939, 4939 +a0, split_read_requests, 4, Accumulator, 0, 0, 0, 0, 0 +a0, split_write_requests, 4, Accumulator, 0, 0, 0, 0, 0 +a0, no_ops, 4, Accumulator, 0, 0, 40152, 40152, 40152 +a0, instruction_count, 4, Accumulator, 0, 0, 19005, 19005, 19005 +a0, fp_sp_ins, 4, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ins, 4, Accumulator, 0, 0, 5233, 5233, 5233 +a0, fp_sp_simd_ins, 4, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_simd_ins, 4, Accumulator, 0, 0, 0, 0, 0 +a0, fp_sp_scalar_ins, 4, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_scalar_ins, 4, Accumulator, 0, 0, 5233, 5233, 5233 +a0, fp_sp_ops, 4, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ops, 4, Accumulator, 0, 0, 5233, 5233, 5233 +a0, read_requests, 5, Accumulator, 0, 0, 14332, 14332, 14332 +a0, write_requests, 5, Accumulator, 0, 0, 4938, 4938, 4938 +a0, split_read_requests, 5, Accumulator, 0, 0, 0, 0, 0 +a0, split_write_requests, 5, Accumulator, 0, 0, 0, 0, 0 +a0, no_ops, 5, Accumulator, 0, 0, 40753, 40753, 40753 +a0, instruction_count, 5, Accumulator, 0, 0, 19158, 19158, 19158 +a0, fp_sp_ins, 5, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ins, 5, Accumulator, 0, 0, 5426, 5426, 5426 +a0, fp_sp_simd_ins, 5, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_simd_ins, 5, Accumulator, 0, 0, 0, 0, 0 +a0, fp_sp_scalar_ins, 5, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_scalar_ins, 5, Accumulator, 0, 0, 5426, 5426, 5426 +a0, fp_sp_ops, 5, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ops, 5, Accumulator, 0, 0, 5426, 5426, 5426 +a0, read_requests, 6, Accumulator, 0, 0, 14378, 14378, 14378 +a0, write_requests, 6, Accumulator, 0, 0, 4988, 4988, 4988 +a0, split_read_requests, 6, Accumulator, 0, 0, 0, 0, 0 +a0, split_write_requests, 6, Accumulator, 0, 0, 0, 0, 0 +a0, no_ops, 6, Accumulator, 0, 0, 41266, 41266, 41266 +a0, instruction_count, 6, Accumulator, 0, 0, 19232, 19232, 19232 +a0, fp_sp_ins, 6, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ins, 6, Accumulator, 0, 0, 5294, 5294, 5294 +a0, fp_sp_simd_ins, 6, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_simd_ins, 6, Accumulator, 0, 0, 0, 0, 0 +a0, fp_sp_scalar_ins, 6, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_scalar_ins, 6, Accumulator, 0, 0, 5294, 5294, 5294 +a0, fp_sp_ops, 6, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ops, 6, Accumulator, 0, 0, 5294, 5294, 5294 +a0, read_requests, 7, Accumulator, 0, 0, 14435, 14435, 14435 +a0, write_requests, 7, Accumulator, 0, 0, 5020, 5020, 5020 +a0, split_read_requests, 7, Accumulator, 0, 0, 0, 0, 0 +a0, split_write_requests, 7, Accumulator, 0, 0, 0, 0, 0 +a0, no_ops, 7, Accumulator, 0, 0, 40672, 40672, 40672 +a0, instruction_count, 7, Accumulator, 0, 0, 19339, 19339, 19339 +a0, fp_sp_ins, 7, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ins, 7, Accumulator, 0, 0, 5227, 5227, 5227 +a0, fp_sp_simd_ins, 7, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_simd_ins, 7, Accumulator, 0, 0, 0, 0, 0 +a0, fp_sp_scalar_ins, 7, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_scalar_ins, 7, Accumulator, 0, 0, 5227, 5227, 5227 +a0, fp_sp_ops, 7, Accumulator, 0, 0, 0, 0, 0 +a0, fp_dp_ops, 7, Accumulator, 0, 0, 5227, 5227, 5227 +rtr.0, send_bit_count, port0, Accumulator, 0, 0, 3123904, 1667411968, 9003 +rtr.0, send_packet_count, port0, Accumulator, 0, 0, 9003, 9003, 9003 +rtr.0, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.0, idle_time, port0, Accumulator, 0, 0, 139732143427780, 6378860427073603936, 16338 +rtr.0, send_bit_count, port1, Accumulator, 0, 0, 2004928, 1024847872, 7007 +rtr.0, send_packet_count, port1, Accumulator, 0, 0, 7007, 7007, 7007 +rtr.0, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.0, idle_time, port1, Accumulator, 0, 0, 110468341883690, 7944897662504490540, 12980 +rtr.0, send_bit_count, port2, Accumulator, 0, 0, 1332800, 693112832, 4337 +rtr.0, send_packet_count, port2, Accumulator, 0, 0, 4337, 4337, 4337 +rtr.0, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.0, idle_time, port2, Accumulator, 0, 0, 18446744073707927266, 15644676232814706100, 4234 +rtr.0, xbar_stalls, port0, Accumulator, 0, 0, 223, 223, 223 +rtr.0, xbar_stalls, port1, Accumulator, 0, 0, 806, 806, 806 +rtr.0, xbar_stalls, port2, Accumulator, 0, 0, 468, 468, 468 +rtr.1, send_bit_count, port0, Accumulator, 0, 0, 2576192, 1312378880, 9125 +rtr.1, send_packet_count, port0, Accumulator, 0, 0, 9125, 9125, 9125 +rtr.1, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.1, idle_time, port0, Accumulator, 0, 0, 139945404632938, 13169436556040925492, 16542 +rtr.1, send_bit_count, port1, Accumulator, 0, 0, 2601600, 1331994624, 9034 +rtr.1, send_packet_count, port1, Accumulator, 0, 0, 9034, 9034, 9034 +rtr.1, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.1, idle_time, port1, Accumulator, 0, 0, 139296931560728, 11606836209357007888, 16483 +rtr.1, send_bit_count, port2, Accumulator, 0, 0, 1461440, 831401984, 2819 +rtr.1, send_packet_count, port2, Accumulator, 0, 0, 2819, 2819, 2819 +rtr.1, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.1, idle_time, port2, Accumulator, 0, 0, 18446744073707770486, 15647463332516752948, 2462 +rtr.1, xbar_stalls, port0, Accumulator, 0, 0, 209, 209, 209 +rtr.1, xbar_stalls, port1, Accumulator, 0, 0, 106, 106, 106 +rtr.1, xbar_stalls, port2, Accumulator, 0, 0, 278, 278, 278 +rtr.2, send_bit_count, port0, Accumulator, 0, 0, 3247104, 1670873088, 11048 +rtr.2, send_packet_count, port0, Accumulator, 0, 0, 11048, 11048, 11048 +rtr.2, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.2, idle_time, port0, Accumulator, 0, 0, 166670892704024, 5748562391124204816, 19671 +rtr.2, send_bit_count, port1, Accumulator, 0, 0, 3193472, 1707843584, 9114 +rtr.2, send_packet_count, port1, Accumulator, 0, 0, 9114, 9114, 9114 +rtr.2, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.2, idle_time, port1, Accumulator, 0, 0, 141583210708698, 12387662605570907676, 16617 +rtr.2, send_bit_count, port2, Accumulator, 0, 0, 1329536, 690544640, 4350 +rtr.2, send_packet_count, port2, Accumulator, 0, 0, 4350, 4350, 4350 +rtr.2, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.2, idle_time, port2, Accumulator, 0, 0, 18446744073707931244, 15647349705323760640, 4234 +rtr.2, xbar_stalls, port0, Accumulator, 0, 0, 256, 256, 256 +rtr.2, xbar_stalls, port1, Accumulator, 0, 0, 662, 662, 662 +rtr.2, xbar_stalls, port2, Accumulator, 0, 0, 913, 913, 913 +rtr.3, send_bit_count, port0, Accumulator, 0, 0, 2721792, 1329364992, 11192 +rtr.3, send_packet_count, port0, Accumulator, 0, 0, 11192, 11192, 11192 +rtr.3, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.3, idle_time, port0, Accumulator, 0, 0, 170136213756850, 10497170882186086556, 20216 +rtr.3, send_bit_count, port1, Accumulator, 0, 0, 3760192, 1998622720, 11065 +rtr.3, send_packet_count, port1, Accumulator, 0, 0, 11065, 11065, 11065 +rtr.3, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.3, idle_time, port1, Accumulator, 0, 0, 168258376725472, 10623522199903680560, 19830 +rtr.3, send_bit_count, port2, Accumulator, 0, 0, 1362304, 777871360, 2550 +rtr.3, send_packet_count, port2, Accumulator, 0, 0, 2550, 2550, 2550 +rtr.3, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.3, idle_time, port2, Accumulator, 0, 0, 18446744073707891308, 15961211280153325792, 2174 +rtr.3, xbar_stalls, port0, Accumulator, 0, 0, 85, 85, 85 +rtr.3, xbar_stalls, port1, Accumulator, 0, 0, 52, 52, 52 +rtr.3, xbar_stalls, port2, Accumulator, 0, 0, 451, 451, 451 +rtr.4, send_bit_count, port0, Accumulator, 0, 0, 3747456, 1984536576, 11226 +rtr.4, send_packet_count, port0, Accumulator, 0, 0, 11226, 11226, 11226 +rtr.4, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.4, idle_time, port0, Accumulator, 0, 0, 172505497615422, 2537113061603384196, 20358 +rtr.4, send_bit_count, port1, Accumulator, 0, 0, 4348224, 2370686976, 11181 +rtr.4, send_packet_count, port1, Accumulator, 0, 0, 11181, 11181, 11181 +rtr.4, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.4, idle_time, port1, Accumulator, 0, 0, 168538527252528, 8894528669374482200, 19724 +rtr.4, send_bit_count, port2, Accumulator, 0, 0, 253760, 16240640, 3965 +rtr.4, send_packet_count, port2, Accumulator, 0, 0, 3965, 3965, 3965 +rtr.4, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.4, idle_time, port2, Accumulator, 0, 0, 18446744073709242346, 15645164955056536132, 3915 +rtr.4, xbar_stalls, port0, Accumulator, 0, 0, 259, 259, 259 +rtr.4, xbar_stalls, port1, Accumulator, 0, 0, 462, 462, 462 +rtr.4, xbar_stalls, port2, Accumulator, 0, 0, 48, 48, 48 +rtr.5, send_bit_count, port0, Accumulator, 0, 0, 4414208, 2340110336, 13156 +rtr.5, send_packet_count, port0, Accumulator, 0, 0, 13156, 13156, 13156 +rtr.5, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.5, idle_time, port0, Accumulator, 0, 0, 196863874351250, 4916774988968434324, 23245 +rtr.5, send_bit_count, port1, Accumulator, 0, 0, 3346112, 1727934464, 11219 +rtr.5, send_packet_count, port1, Accumulator, 0, 0, 11219, 11219, 11219 +rtr.5, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.5, idle_time, port1, Accumulator, 0, 0, 162756978778028, 9323597382642472056, 19360 +rtr.5, send_bit_count, port2, Accumulator, 0, 0, 1355392, 704585728, 4418 +rtr.5, send_packet_count, port2, Accumulator, 0, 0, 4418, 4418, 4418 +rtr.5, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.5, idle_time, port2, Accumulator, 0, 0, 18446744073707899732, 15647099491265092120, 4334 +rtr.5, xbar_stalls, port0, Accumulator, 0, 0, 953, 953, 953 +rtr.5, xbar_stalls, port1, Accumulator, 0, 0, 1037, 1037, 1037 +rtr.5, xbar_stalls, port2, Accumulator, 0, 0, 828, 828, 828 +rtr.6, send_bit_count, port0, Accumulator, 0, 0, 3895552, 2001682432, 13332 +rtr.6, send_packet_count, port0, Accumulator, 0, 0, 13332, 13332, 13332 +rtr.6, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.6, idle_time, port0, Accumulator, 0, 0, 199773568200522, 9868698255003638924, 23778 +rtr.6, send_bit_count, port1, Accumulator, 0, 0, 3919040, 2022649856, 13171 +rtr.6, send_packet_count, port1, Accumulator, 0, 0, 13171, 13171, 13171 +rtr.6, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.6, idle_time, port1, Accumulator, 0, 0, 193366450713158, 5106173867338944228, 23108 +rtr.6, send_bit_count, port2, Accumulator, 0, 0, 1340160, 767016960, 2460 +rtr.6, send_packet_count, port2, Accumulator, 0, 0, 2460, 2460, 2460 +rtr.6, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.6, idle_time, port2, Accumulator, 0, 0, 18446744073707918296, 15962519067895295992, 1988 +rtr.6, xbar_stalls, port0, Accumulator, 0, 0, 262, 262, 262 +rtr.6, xbar_stalls, port1, Accumulator, 0, 0, 550, 550, 550 +rtr.6, xbar_stalls, port2, Accumulator, 0, 0, 479, 479, 479 +rtr.7, send_bit_count, port0, Accumulator, 0, 0, 3365376, 1738604544, 11264 +rtr.7, send_packet_count, port0, Accumulator, 0, 0, 11264, 11264, 11264 +rtr.7, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.7, idle_time, port0, Accumulator, 0, 0, 169829335401994, 1312669826223764244, 20125 +rtr.7, send_bit_count, port1, Accumulator, 0, 0, 4530240, 2407698432, 13337 +rtr.7, send_packet_count, port1, Accumulator, 0, 0, 13337, 13337, 13337 +rtr.7, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.7, idle_time, port1, Accumulator, 0, 0, 195666462830936, 15054070672457370896, 23136 +rtr.7, send_bit_count, port2, Accumulator, 0, 0, 1600192, 815214592, 5667 +rtr.7, send_packet_count, port2, Accumulator, 0, 0, 5667, 5667, 5667 +rtr.7, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.7, idle_time, port2, Accumulator, 0, 0, 18446744073707601382, 15651967353756943924, 5515 +rtr.7, xbar_stalls, port0, Accumulator, 0, 0, 1732, 1732, 1732 +rtr.7, xbar_stalls, port1, Accumulator, 0, 0, 434, 434, 434 +rtr.7, xbar_stalls, port2, Accumulator, 0, 0, 918, 918, 918 +rtr.8, send_bit_count, port0, Accumulator, 0, 0, 2803264, 1380880384, 11209 +rtr.8, send_packet_count, port0, Accumulator, 0, 0, 11209, 11209, 11209 +rtr.8, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.8, idle_time, port0, Accumulator, 0, 0, 169323054434220, 17124487797145500744, 20189 +rtr.8, send_bit_count, port1, Accumulator, 0, 0, 3747456, 1982177280, 11290 +rtr.8, send_packet_count, port1, Accumulator, 0, 0, 11290, 11290, 11290 +rtr.8, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.8, idle_time, port1, Accumulator, 0, 0, 171450344218276, 13937147090208687096, 20212 +rtr.8, send_bit_count, port2, Accumulator, 0, 0, 1344064, 767266816, 2521 +rtr.8, send_packet_count, port2, Accumulator, 0, 0, 2521, 2521, 2521 +rtr.8, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.8, idle_time, port2, Accumulator, 0, 0, 18446744073707913538, 15961044546877372084, 2147 +rtr.8, xbar_stalls, port0, Accumulator, 0, 0, 166, 166, 166 +rtr.8, xbar_stalls, port1, Accumulator, 0, 0, 364, 364, 364 +rtr.8, xbar_stalls, port2, Accumulator, 0, 0, 470, 470, 470 +rtr.9, send_bit_count, port0, Accumulator, 0, 0, 3821888, 2031472640, 11245 +rtr.9, send_packet_count, port0, Accumulator, 0, 0, 11245, 11245, 11245 +rtr.9, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.9, idle_time, port0, Accumulator, 0, 0, 172996348880168, 10737245514787109784, 20434 +rtr.9, send_bit_count, port1, Accumulator, 0, 0, 4277184, 2324852736, 11191 +rtr.9, send_packet_count, port1, Accumulator, 0, 0, 11191, 11191, 11191 +rtr.9, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.9, idle_time, port1, Accumulator, 0, 0, 169638701137002, 18046472784236552444, 19855 +rtr.9, send_bit_count, port2, Accumulator, 0, 0, 252032, 16130048, 3938 +rtr.9, send_packet_count, port2, Accumulator, 0, 0, 3938, 3938, 3938 +rtr.9, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.9, idle_time, port2, Accumulator, 0, 0, 18446744073709244452, 15648082615997685280, 3898 +rtr.9, xbar_stalls, port0, Accumulator, 0, 0, 1367, 1367, 1367 +rtr.9, xbar_stalls, port1, Accumulator, 0, 0, 462, 462, 462 +rtr.9, xbar_stalls, port2, Accumulator, 0, 0, 832, 832, 832 +rtr.10, send_bit_count, port0, Accumulator, 0, 0, 3210432, 1716301824, 9179 +rtr.10, send_packet_count, port0, Accumulator, 0, 0, 9179, 9179, 9179 +rtr.10, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.10, idle_time, port0, Accumulator, 0, 0, 144759717071650, 1721124323597504476, 16976 +rtr.10, send_bit_count, port1, Accumulator, 0, 0, 3283584, 1687363584, 11234 +rtr.10, send_packet_count, port1, Accumulator, 0, 0, 11234, 11234, 11234 +rtr.10, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.10, idle_time, port1, Accumulator, 0, 0, 167825742041444, 13232209669247399144, 19930 +rtr.10, send_bit_count, port2, Accumulator, 0, 0, 1347264, 701116416, 4371 +rtr.10, send_packet_count, port2, Accumulator, 0, 0, 4371, 4371, 4371 +rtr.10, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.10, idle_time, port2, Accumulator, 0, 0, 18446744073707909638, 15654835990257519412, 4283 +rtr.10, xbar_stalls, port0, Accumulator, 0, 0, 528, 528, 528 +rtr.10, xbar_stalls, port1, Accumulator, 0, 0, 257, 257, 257 +rtr.10, xbar_stalls, port2, Accumulator, 0, 0, 924, 924, 924 +rtr.11, send_bit_count, port0, Accumulator, 0, 0, 2564672, 1311936512, 8937 +rtr.11, send_packet_count, port0, Accumulator, 0, 0, 8937, 8937, 8937 +rtr.11, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.11, idle_time, port0, Accumulator, 0, 0, 139292479967622, 11907081177427668740, 16446 +rtr.11, send_bit_count, port1, Accumulator, 0, 0, 2581376, 1313300480, 9190 +rtr.11, send_packet_count, port1, Accumulator, 0, 0, 9190, 9190, 9190 +rtr.11, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.11, idle_time, port1, Accumulator, 0, 0, 141852188029620, 16787344315627321256, 16783 +rtr.11, send_bit_count, port2, Accumulator, 0, 0, 1370944, 784322560, 2525 +rtr.11, send_packet_count, port2, Accumulator, 0, 0, 2525, 2525, 2525 +rtr.11, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.11, idle_time, port2, Accumulator, 0, 0, 18446744073707880778, 15962223829118880772, 2315 +rtr.11, xbar_stalls, port0, Accumulator, 0, 0, 165, 165, 165 +rtr.11, xbar_stalls, port1, Accumulator, 0, 0, 79, 79, 79 +rtr.11, xbar_stalls, port2, Accumulator, 0, 0, 307, 307, 307 +rtr.12, send_bit_count, port0, Accumulator, 0, 0, 1997632, 1020841984, 6989 +rtr.12, send_packet_count, port0, Accumulator, 0, 0, 6989, 6989, 6989 +rtr.12, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.12, idle_time, port0, Accumulator, 0, 0, 112323917008078, 4830097498266741788, 13161 +rtr.12, send_bit_count, port1, Accumulator, 0, 0, 3082624, 1644421120, 8910 +rtr.12, send_packet_count, port1, Accumulator, 0, 0, 8910, 8910, 8910 +rtr.12, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.12, idle_time, port1, Accumulator, 0, 0, 138649548241690, 309930240226509028, 16256 +rtr.12, send_bit_count, port2, Accumulator, 0, 0, 1363456, 707756032, 4472 +rtr.12, send_packet_count, port2, Accumulator, 0, 0, 4472, 4472, 4472 +rtr.12, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.12, idle_time, port2, Accumulator, 0, 0, 18446744073707889904, 15652505943543472624, 4344 +rtr.12, xbar_stalls, port0, Accumulator, 0, 0, 828, 828, 828 +rtr.12, xbar_stalls, port1, Accumulator, 0, 0, 171, 171, 171 +rtr.12, xbar_stalls, port2, Accumulator, 0, 0, 465, 465, 465 +rtr.13, send_bit_count, port0, Accumulator, 0, 0, 1394624, 639561728, 6863 +rtr.13, send_packet_count, port0, Accumulator, 0, 0, 6863, 6863, 6863 +rtr.13, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.13, idle_time, port0, Accumulator, 0, 0, 107916404886812, 15231819324344309088, 12790 +rtr.13, send_bit_count, port1, Accumulator, 0, 0, 2413248, 1286615040, 6995 +rtr.13, send_packet_count, port1, Accumulator, 0, 0, 6995, 6995, 6995 +rtr.13, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.13, idle_time, port1, Accumulator, 0, 0, 110269871826098, 282281162957971804, 12984 +rtr.13, send_bit_count, port2, Accumulator, 0, 0, 1361024, 778674176, 2506 +rtr.13, send_packet_count, port2, Accumulator, 0, 0, 2506, 2506, 2506 +rtr.13, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.13, idle_time, port2, Accumulator, 0, 0, 18446744073707892868, 15960371254322975056, 2332 +rtr.13, xbar_stalls, port0, Accumulator, 0, 0, 130, 130, 130 +rtr.13, xbar_stalls, port1, Accumulator, 0, 0, 421, 421, 421 +rtr.13, xbar_stalls, port2, Accumulator, 0, 0, 264, 264, 264 +rtr.14, send_bit_count, port0, Accumulator, 0, 0, 2419392, 1294970880, 6875 +rtr.14, send_packet_count, port0, Accumulator, 0, 0, 6875, 6875, 6875 +rtr.14, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.14, idle_time, port0, Accumulator, 0, 0, 108244931558500, 13923855731524864528, 12771 +rtr.14, send_bit_count, port1, Accumulator, 0, 0, 2952192, 1636663296, 6856 +rtr.14, send_packet_count, port1, Accumulator, 0, 0, 6856, 6856, 6856 +rtr.14, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.14, idle_time, port1, Accumulator, 0, 0, 111119987335162, 9332345173868442036, 12936 +rtr.14, send_bit_count, port2, Accumulator, 0, 0, 255552, 16355328, 3993 +rtr.14, send_packet_count, port2, Accumulator, 0, 0, 3993, 3993, 3993 +rtr.14, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.14, idle_time, port2, Accumulator, 0, 0, 18446744073709240162, 15645318837217694164, 3957 +rtr.14, xbar_stalls, port0, Accumulator, 0, 0, 185, 185, 185 +rtr.14, xbar_stalls, port1, Accumulator, 0, 0, 271, 271, 271 +rtr.14, xbar_stalls, port2, Accumulator, 0, 0, 82, 82, 82 +rtr.15, send_bit_count, port0, Accumulator, 0, 0, 1840512, 997220352, 4902 +rtr.15, send_packet_count, port0, Accumulator, 0, 0, 4902, 4902, 4902 +rtr.15, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.15, idle_time, port0, Accumulator, 0, 0, 78818848577700, 7517151130265400696, 9222 +rtr.15, send_bit_count, port1, Accumulator, 0, 0, 1936000, 985636864, 6874 +rtr.15, send_packet_count, port1, Accumulator, 0, 0, 6874, 6874, 6874 +rtr.15, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.15, idle_time, port1, Accumulator, 0, 0, 110142459160686, 8997929261754924364, 12923 +rtr.15, send_bit_count, port2, Accumulator, 0, 0, 1362048, 708255744, 4434 +rtr.15, send_packet_count, port2, Accumulator, 0, 0, 4434, 4434, 4434 +rtr.15, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.15, idle_time, port2, Accumulator, 0, 0, 18446744073707891620, 15645101791493547496, 4342 +rtr.15, xbar_stalls, port0, Accumulator, 0, 0, 260, 260, 260 +rtr.15, xbar_stalls, port1, Accumulator, 0, 0, 186, 186, 186 +rtr.15, xbar_stalls, port2, Accumulator, 0, 0, 349, 349, 349 +rtr.16, send_bit_count, port0, Accumulator, 0, 0, 1221184, 606048256, 4761 +rtr.16, send_packet_count, port0, Accumulator, 0, 0, 4761, 4761, 4761 +rtr.16, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.16, idle_time, port0, Accumulator, 0, 0, 74518773917962, 3398610877437998564, 8813 +rtr.16, send_bit_count, port1, Accumulator, 0, 0, 1263808, 627060736, 4931 +rtr.16, send_packet_count, port1, Accumulator, 0, 0, 4931, 4931, 4931 +rtr.16, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.16, idle_time, port1, Accumulator, 0, 0, 76781670391526, 9631293783142972116, 9115 +rtr.16, send_bit_count, port2, Accumulator, 0, 0, 1371904, 785268736, 2516 +rtr.16, send_packet_count, port2, Accumulator, 0, 0, 2516, 2516, 2516 +rtr.16, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.16, idle_time, port2, Accumulator, 0, 0, 18446744073707879608, 15961509450977461120, 2315 +rtr.16, xbar_stalls, port0, Accumulator, 0, 0, 537, 537, 537 +rtr.16, xbar_stalls, port1, Accumulator, 0, 0, 59, 59, 59 +rtr.16, xbar_stalls, port2, Accumulator, 0, 0, 116, 116, 116 +rtr.17, send_bit_count, port0, Accumulator, 0, 0, 1895168, 966213632, 6692 +rtr.17, send_packet_count, port0, Accumulator, 0, 0, 6692, 6692, 6692 +rtr.17, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.17, idle_time, port0, Accumulator, 0, 0, 104460784903376, 9185041638189603136, 12257 +rtr.17, send_bit_count, port1, Accumulator, 0, 0, 1796096, 974618624, 4744 +rtr.17, send_packet_count, port1, Accumulator, 0, 0, 4744, 4744, 4744 +rtr.17, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.17, idle_time, port1, Accumulator, 0, 0, 76381544813242, 3225431059409810740, 8940 +rtr.17, send_bit_count, port2, Accumulator, 0, 0, 1361536, 707338240, 4450 +rtr.17, send_packet_count, port2, Accumulator, 0, 0, 4450, 4450, 4450 +rtr.17, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.17, idle_time, port2, Accumulator, 0, 0, 18446744073707892244, 15652700340099058000, 4336 +rtr.17, xbar_stalls, port0, Accumulator, 0, 0, 154, 154, 154 +rtr.17, xbar_stalls, port1, Accumulator, 0, 0, 681, 681, 681 +rtr.17, xbar_stalls, port2, Accumulator, 0, 0, 347, 347, 347 +rtr.18, send_bit_count, port0, Accumulator, 0, 0, 1412608, 646021120, 7000 +rtr.18, send_packet_count, port0, Accumulator, 0, 0, 7000, 7000, 7000 +rtr.18, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.18, idle_time, port0, Accumulator, 0, 0, 108273468969882, 14088476135259393108, 12823 +rtr.18, send_bit_count, port1, Accumulator, 0, 0, 2371776, 1270394880, 6715 +rtr.18, send_packet_count, port1, Accumulator, 0, 0, 6715, 6715, 6715 +rtr.18, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.18, idle_time, port1, Accumulator, 0, 0, 105799509712110, 3739590058407761828, 12474 +rtr.18, send_bit_count, port2, Accumulator, 0, 0, 1353984, 774389760, 2500 +rtr.18, send_packet_count, port2, Accumulator, 0, 0, 2500, 2500, 2500 +rtr.18, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.18, idle_time, port2, Accumulator, 0, 0, 18446744073707901448, 15962144576932513720, 2340 +rtr.18, xbar_stalls, port0, Accumulator, 0, 0, 77, 77, 77 +rtr.18, xbar_stalls, port1, Accumulator, 0, 0, 38, 38, 38 +rtr.18, xbar_stalls, port2, Accumulator, 0, 0, 217, 217, 217 +rtr.19, send_bit_count, port0, Accumulator, 0, 0, 2432832, 1298780160, 7005 +rtr.19, send_packet_count, port0, Accumulator, 0, 0, 7005, 7005, 7005 +rtr.19, output_port_stalls, port0, Accumulator, 0, 0, 0, 0, 0 +rtr.19, idle_time, port0, Accumulator, 0, 0, 109494625750876, 11318544427755874872, 12885 +rtr.19, send_bit_count, port1, Accumulator, 0, 0, 3020032, 1674919936, 6996 +rtr.19, send_packet_count, port1, Accumulator, 0, 0, 6996, 6996, 6996 +rtr.19, output_port_stalls, port1, Accumulator, 0, 0, 0, 0, 0 +rtr.19, idle_time, port1, Accumulator, 0, 0, 111493853052144, 13392040220360405752, 13002 +rtr.19, send_bit_count, port2, Accumulator, 0, 0, 254784, 16306176, 3981 +rtr.19, send_packet_count, port2, Accumulator, 0, 0, 3981, 3981, 3981 +rtr.19, output_port_stalls, port2, Accumulator, 0, 0, 0, 0, 0 +rtr.19, idle_time, port2, Accumulator, 0, 0, 18446744073709241098, 15652071472710857284, 3930 +rtr.19, xbar_stalls, port0, Accumulator, 0, 0, 89, 89, 89 +rtr.19, xbar_stalls, port1, Accumulator, 0, 0, 190, 190, 190 +rtr.19, xbar_stalls, port2, Accumulator, 0, 0, 151, 151, 151 +l3cache_0, packet_latency, , Accumulator, 0, 0, 11412, 35686, 4337 +l3cache_0, send_bit_count, , Accumulator, 0, 0, 1427200, 754597888, 4308 +l3cache_0, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, idle_time, , Accumulator, 0, 0, 17446255972, 6010266647463042998, 4276 +l3cache_0, TotalEventsReceived, , Accumulator, 0, 0, 4337, 4337, 4337 +l3cache_0, TotalEventsReplayed, , Accumulator, 0, 0, 26, 26, 26 +l3cache_0, CacheHits, , Accumulator, 0, 0, 193, 193, 193 +l3cache_0, GetSHit_Arrival, , Accumulator, 0, 0, 176, 176, 176 +l3cache_0, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, GetSHit_Blocked, , Accumulator, 0, 0, 17, 17, 17 +l3cache_0, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, CacheMisses, , Accumulator, 0, 0, 2059, 2059, 2059 +l3cache_0, GetSMiss_Arrival, , Accumulator, 0, 0, 1990, 1990, 1990 +l3cache_0, GetXMiss_Arrival, , Accumulator, 0, 0, 60, 60, 60 +l3cache_0, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, GetSMiss_Blocked, , Accumulator, 0, 0, 9, 9, 9 +l3cache_0, GetXMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, GetS_recv, , Accumulator, 0, 0, 2192, 2192, 2192 +l3cache_0, GetX_recv, , Accumulator, 0, 0, 60, 60, 60 +l3cache_0, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, GetSResp_recv, , Accumulator, 0, 0, 1902, 1902, 1902 +l3cache_0, GetXResp_recv, , Accumulator, 0, 0, 60, 60, 60 +l3cache_0, PutS_recv, , Accumulator, 0, 0, 7, 7, 7 +l3cache_0, PutM_recv, , Accumulator, 0, 0, 5, 5, 5 +l3cache_0, PutE_recv, , Accumulator, 0, 0, 17, 17, 17 +l3cache_0, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, MSHR_occupancy, , Accumulator, 0, 0, 676067, 2413259, 46430907 +l3cache_0, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetS_I, , Accumulator, 0, 0, 1905, 1905, 1905 +l3cache_0, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetS_E, , Accumulator, 0, 0, 280, 280, 280 +l3cache_0, stateEvent_GetS_M, , Accumulator, 0, 0, 7, 7, 7 +l3cache_0, stateEvent_GetX_I, , Accumulator, 0, 0, 60, 60, 60 +l3cache_0, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1902, 1902, 1902 +l3cache_0, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 60, 60, 60 +l3cache_0, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_E, , Accumulator, 0, 0, 7, 7, 7 +l3cache_0, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutE_E, , Accumulator, 0, 0, 17, 17, 17 +l3cache_0, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutM_M, , Accumulator, 0, 0, 5, 5, 5 +l3cache_0, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 93, 93, 93 +l3cache_0, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 1, 1, 1 +l3cache_0, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, latency_GetS_IS, , Accumulator, 0, 0, 647569, 220559371, 1902 +l3cache_0, latency_GetS_M, , Accumulator, 0, 0, 5368, 800688, 94 +l3cache_0, latency_GetX_IM, , Accumulator, 0, 0, 20440, 6964390, 60 +l3cache_0, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, latency_GetSEx_M, , Accumulator, 0, 0, 5368, 800688, 94 +l3cache_0, eventSent_GetS, , Accumulator, 0, 0, 1905, 1905, 1905 +l3cache_0, eventSent_GetX, , Accumulator, 0, 0, 60, 60, 60 +l3cache_0, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_GetSResp, , Accumulator, 0, 0, 2189, 2189, 2189 +l3cache_0, eventSent_GetXResp, , Accumulator, 0, 0, 60, 60, 60 +l3cache_0, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_FetchInvX, , Accumulator, 0, 0, 94, 94, 94 +l3cache_0, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l3cache_0, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, TotalEventsReceived, , Accumulator, 0, 0, 28622, 28622, 28622 +l1cache_0, TotalEventsReplayed, , Accumulator, 0, 0, 7133, 7133, 7133 +l1cache_0, CacheHits, , Accumulator, 0, 0, 23024, 23024, 23024 +l1cache_0, GetSHit_Arrival, , Accumulator, 0, 0, 9587, 9587, 9587 +l1cache_0, GetXHit_Arrival, , Accumulator, 0, 0, 6352, 6352, 6352 +l1cache_0, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, GetSHit_Blocked, , Accumulator, 0, 0, 6735, 6735, 6735 +l1cache_0, GetXHit_Blocked, , Accumulator, 0, 0, 350, 350, 350 +l1cache_0, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, CacheMisses, , Accumulator, 0, 0, 2651, 2651, 2651 +l1cache_0, GetSMiss_Arrival, , Accumulator, 0, 0, 2515, 2515, 2515 +l1cache_0, GetXMiss_Arrival, , Accumulator, 0, 0, 96, 96, 96 +l1cache_0, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, GetXMiss_Blocked, , Accumulator, 0, 0, 40, 40, 40 +l1cache_0, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, GetS_recv, , Accumulator, 0, 0, 18849, 18849, 18849 +l1cache_0, GetX_recv, , Accumulator, 0, 0, 6838, 6838, 6838 +l1cache_0, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, GetSResp_recv, , Accumulator, 0, 0, 2511, 2511, 2511 +l1cache_0, GetXResp_recv, , Accumulator, 0, 0, 136, 136, 136 +l1cache_0, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, FetchInv_recv, , Accumulator, 0, 0, 12, 12, 12 +l1cache_0, FetchInvX_recv, , Accumulator, 0, 0, 226, 226, 226 +l1cache_0, Inv_recv, , Accumulator, 0, 0, 50, 50, 50 +l1cache_0, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, MSHR_occupancy, , Accumulator, 0, 0, 3021689, 39588487, 46430892 +l1cache_0, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, evict_S, , Accumulator, 0, 0, 333, 333, 333 +l1cache_0, evict_E, , Accumulator, 0, 0, 1637, 1637, 1637 +l1cache_0, evict_M, , Accumulator, 0, 0, 75, 75, 75 +l1cache_0, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_GetS_I, , Accumulator, 0, 0, 2515, 2515, 2515 +l1cache_0, stateEvent_GetS_S, , Accumulator, 0, 0, 3464, 3464, 3464 +l1cache_0, stateEvent_GetS_E, , Accumulator, 0, 0, 8681, 8681, 8681 +l1cache_0, stateEvent_GetS_M, , Accumulator, 0, 0, 4177, 4177, 4177 +l1cache_0, stateEvent_GetX_I, , Accumulator, 0, 0, 95, 95, 95 +l1cache_0, stateEvent_GetX_S, , Accumulator, 0, 0, 41, 41, 41 +l1cache_0, stateEvent_GetX_E, , Accumulator, 0, 0, 13, 13, 13 +l1cache_0, stateEvent_GetX_M, , Accumulator, 0, 0, 6689, 6689, 6689 +l1cache_0, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2511, 2511, 2511 +l1cache_0, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 103, 103, 103 +l1cache_0, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 33, 33, 33 +l1cache_0, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Inv_S, , Accumulator, 0, 0, 42, 42, 42 +l1cache_0, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 +l1cache_0, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_M, , Accumulator, 0, 0, 12, 12, 12 +l1cache_0, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 171, 171, 171 +l1cache_0, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 55, 55, 55 +l1cache_0, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, latency_GetS_IS, , Accumulator, 0, 0, 823396, 304326136, 2511 +l1cache_0, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, latency_GetX_IM, , Accumulator, 0, 0, 34364, 12783642, 95 +l1cache_0, latency_GetX_SM, , Accumulator, 0, 0, 5444, 738354, 41 +l1cache_0, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, eventSent_GetS, , Accumulator, 0, 0, 2515, 2515, 2515 +l1cache_0, eventSent_GetX, , Accumulator, 0, 0, 136, 136, 136 +l1cache_0, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, eventSent_GetSResp, , Accumulator, 0, 0, 18833, 18833, 18833 +l1cache_0, eventSent_GetXResp, , Accumulator, 0, 0, 6838, 6838, 6838 +l1cache_0, eventSent_PutS, , Accumulator, 0, 0, 333, 333, 333 +l1cache_0, eventSent_PutE, , Accumulator, 0, 0, 1637, 1637, 1637 +l1cache_0, eventSent_PutM, , Accumulator, 0, 0, 75, 75, 75 +l1cache_0, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, eventSent_FetchResp, , Accumulator, 0, 0, 12, 12, 12 +l1cache_0, eventSent_FetchXResp, , Accumulator, 0, 0, 226, 226, 226 +l1cache_0, eventSent_AckInv, , Accumulator, 0, 0, 50, 50, 50 +l1cache_0, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l1cache_0, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, packet_latency, , Accumulator, 0, 0, 9093, 34975, 2819 +l2cache_0, send_bit_count, , Accumulator, 0, 0, 321856, 100519936, 2861 +l2cache_0, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, idle_time, , Accumulator, 0, 0, 17403682544, 6010188400520452576, 2704 +l2cache_0, TotalEventsReceived, , Accumulator, 0, 0, 7803, 7803, 7803 +l2cache_0, TotalEventsReplayed, , Accumulator, 0, 0, 8, 8, 8 +l2cache_0, CacheHits, , Accumulator, 0, 0, 145, 145, 145 +l2cache_0, GetSHit_Arrival, , Accumulator, 0, 0, 145, 145, 145 +l2cache_0, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, CacheMisses, , Accumulator, 0, 0, 2506, 2506, 2506 +l2cache_0, GetSMiss_Arrival, , Accumulator, 0, 0, 2370, 2370, 2370 +l2cache_0, GetXMiss_Arrival, , Accumulator, 0, 0, 136, 136, 136 +l2cache_0, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, GetXMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, GetS_recv, , Accumulator, 0, 0, 2515, 2515, 2515 +l2cache_0, GetX_recv, , Accumulator, 0, 0, 136, 136, 136 +l2cache_0, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, GetSResp_recv, , Accumulator, 0, 0, 2366, 2366, 2366 +l2cache_0, GetXResp_recv, , Accumulator, 0, 0, 136, 136, 136 +l2cache_0, PutS_recv, , Accumulator, 0, 0, 333, 333, 333 +l2cache_0, PutM_recv, , Accumulator, 0, 0, 75, 75, 75 +l2cache_0, PutE_recv, , Accumulator, 0, 0, 1637, 1637, 1637 +l2cache_0, FetchInv_recv, , Accumulator, 0, 0, 12, 12, 12 +l2cache_0, FetchInvX_recv, , Accumulator, 0, 0, 255, 255, 255 +l2cache_0, Inv_recv, , Accumulator, 0, 0, 50, 50, 50 +l2cache_0, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, MSHR_occupancy, , Accumulator, 0, 0, 848229, 3745665, 46430892 +l2cache_0, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, evict_S, , Accumulator, 0, 0, 11, 11, 11 +l2cache_0, evict_E, , Accumulator, 0, 0, 23, 23, 23 +l2cache_0, evict_M, , Accumulator, 0, 0, 4, 4, 4 +l2cache_0, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetS_I, , Accumulator, 0, 0, 2370, 2370, 2370 +l2cache_0, stateEvent_GetS_S, , Accumulator, 0, 0, 84, 84, 84 +l2cache_0, stateEvent_GetS_E, , Accumulator, 0, 0, 61, 61, 61 +l2cache_0, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetX_I, , Accumulator, 0, 0, 95, 95, 95 +l2cache_0, stateEvent_GetX_S, , Accumulator, 0, 0, 41, 41, 41 +l2cache_0, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2366, 2366, 2366 +l2cache_0, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 103, 103, 103 +l2cache_0, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 33, 33, 33 +l2cache_0, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_S, , Accumulator, 0, 0, 333, 333, 333 +l2cache_0, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutE_E, , Accumulator, 0, 0, 1637, 1637, 1637 +l2cache_0, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutM_E, , Accumulator, 0, 0, 10, 10, 10 +l2cache_0, stateEvent_PutM_M, , Accumulator, 0, 0, 65, 65, 65 +l2cache_0, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Inv_S, , Accumulator, 0, 0, 42, 42, 42 +l2cache_0, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 +l2cache_0, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_M, , Accumulator, 0, 0, 12, 12, 12 +l2cache_0, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 202, 202, 202 +l2cache_0, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 53, 53, 53 +l2cache_0, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 12, 12, 12 +l2cache_0, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 173, 173, 173 +l2cache_0, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 53, 53, 53 +l2cache_0, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 42, 42, 42 +l2cache_0, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 8, 8, 8 +l2cache_0, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, latency_GetS_IS, , Accumulator, 0, 0, 807750, 294533460, 2366 +l2cache_0, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, latency_GetX_IM, , Accumulator, 0, 0, 33794, 12374694, 95 +l2cache_0, latency_GetX_SM, , Accumulator, 0, 0, 3160, 252192, 41 +l2cache_0, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, eventSent_GetS, , Accumulator, 0, 0, 2370, 2370, 2370 +l2cache_0, eventSent_GetX, , Accumulator, 0, 0, 136, 136, 136 +l2cache_0, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, eventSent_GetSResp, , Accumulator, 0, 0, 2511, 2511, 2511 +l2cache_0, eventSent_GetXResp, , Accumulator, 0, 0, 136, 136, 136 +l2cache_0, eventSent_PutS, , Accumulator, 0, 0, 11, 11, 11 +l2cache_0, eventSent_PutE, , Accumulator, 0, 0, 23, 23, 23 +l2cache_0, eventSent_PutM, , Accumulator, 0, 0, 4, 4, 4 +l2cache_0, eventSent_Inv, , Accumulator, 0, 0, 50, 50, 50 +l2cache_0, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, eventSent_FetchInv, , Accumulator, 0, 0, 12, 12, 12 +l2cache_0, eventSent_FetchInvX, , Accumulator, 0, 0, 226, 226, 226 +l2cache_0, eventSent_FetchResp, , Accumulator, 0, 0, 12, 12, 12 +l2cache_0, eventSent_FetchXResp, , Accumulator, 0, 0, 255, 255, 255 +l2cache_0, eventSent_AckInv, , Accumulator, 0, 0, 50, 50, 50 +l2cache_0, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l2cache_0, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, packet_latency, , Accumulator, 0, 0, 15392, 59646, 4350 +l3cache_1, send_bit_count, , Accumulator, 0, 0, 1433728, 758259712, 4322 +l3cache_1, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, idle_time, , Accumulator, 0, 0, 17446223456, 6012978243379014214, 4279 +l3cache_1, TotalEventsReceived, , Accumulator, 0, 0, 4350, 4350, 4350 +l3cache_1, TotalEventsReplayed, , Accumulator, 0, 0, 21, 21, 21 +l3cache_1, CacheHits, , Accumulator, 0, 0, 207, 207, 207 +l3cache_1, GetSHit_Arrival, , Accumulator, 0, 0, 199, 199, 199 +l3cache_1, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, GetSHit_Blocked, , Accumulator, 0, 0, 8, 8, 8 +l3cache_1, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, CacheMisses, , Accumulator, 0, 0, 2056, 2056, 2056 +l3cache_1, GetSMiss_Arrival, , Accumulator, 0, 0, 1982, 1982, 1982 +l3cache_1, GetXMiss_Arrival, , Accumulator, 0, 0, 61, 61, 61 +l3cache_1, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, GetSMiss_Blocked, , Accumulator, 0, 0, 10, 10, 10 +l3cache_1, GetXMiss_Blocked, , Accumulator, 0, 0, 3, 3, 3 +l3cache_1, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, GetS_recv, , Accumulator, 0, 0, 2199, 2199, 2199 +l3cache_1, GetX_recv, , Accumulator, 0, 0, 64, 64, 64 +l3cache_1, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, GetSResp_recv, , Accumulator, 0, 0, 1887, 1887, 1887 +l3cache_1, GetXResp_recv, , Accumulator, 0, 0, 59, 59, 59 +l3cache_1, PutS_recv, , Accumulator, 0, 0, 8, 8, 8 +l3cache_1, PutM_recv, , Accumulator, 0, 0, 1, 1, 1 +l3cache_1, PutE_recv, , Accumulator, 0, 0, 19, 19, 19 +l3cache_1, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, MSHR_occupancy, , Accumulator, 0, 0, 685679, 2485989, 46430904 +l3cache_1, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetS_I, , Accumulator, 0, 0, 1890, 1890, 1890 +l3cache_1, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetS_E, , Accumulator, 0, 0, 289, 289, 289 +l3cache_1, stateEvent_GetS_M, , Accumulator, 0, 0, 20, 20, 20 +l3cache_1, stateEvent_GetX_I, , Accumulator, 0, 0, 59, 59, 59 +l3cache_1, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetX_M, , Accumulator, 0, 0, 5, 5, 5 +l3cache_1, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1887, 1887, 1887 +l3cache_1, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 59, 59, 59 +l3cache_1, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_E, , Accumulator, 0, 0, 6, 6, 6 +l3cache_1, stateEvent_PutS_M, , Accumulator, 0, 0, 2, 2, 2 +l3cache_1, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutE_E, , Accumulator, 0, 0, 19, 19, 19 +l3cache_1, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutM_M, , Accumulator, 0, 0, 1, 1, 1 +l3cache_1, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 4, 4, 4 +l3cache_1, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 100, 100, 100 +l3cache_1, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 2, 2, 2 +l3cache_1, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 7, 7, 7 +l3cache_1, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, latency_GetS_IS, , Accumulator, 0, 0, 657321, 229054389, 1887 +l3cache_1, latency_GetS_M, , Accumulator, 0, 0, 5823, 903767, 102 +l3cache_1, latency_GetX_IM, , Accumulator, 0, 0, 20673, 7252725, 59 +l3cache_1, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, latency_GetX_M, , Accumulator, 0, 0, 315, 22099, 5 +l3cache_1, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, latency_GetSEx_M, , Accumulator, 0, 0, 5823, 903767, 102 +l3cache_1, eventSent_GetS, , Accumulator, 0, 0, 1890, 1890, 1890 +l3cache_1, eventSent_GetX, , Accumulator, 0, 0, 59, 59, 59 +l3cache_1, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, eventSent_GetSResp, , Accumulator, 0, 0, 2196, 2196, 2196 +l3cache_1, eventSent_GetXResp, , Accumulator, 0, 0, 64, 64, 64 +l3cache_1, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, eventSent_Inv, , Accumulator, 0, 0, 7, 7, 7 +l3cache_1, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, eventSent_FetchInv, , Accumulator, 0, 0, 4, 4, 4 +l3cache_1, eventSent_FetchInvX, , Accumulator, 0, 0, 102, 102, 102 +l3cache_1, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l3cache_1, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, TotalEventsReceived, , Accumulator, 0, 0, 22217, 22217, 22217 +l1cache_1, TotalEventsReplayed, , Accumulator, 0, 0, 6686, 6686, 6686 +l1cache_1, CacheHits, , Accumulator, 0, 0, 17204, 17204, 17204 +l1cache_1, GetSHit_Arrival, , Accumulator, 0, 0, 5928, 5928, 5928 +l1cache_1, GetXHit_Arrival, , Accumulator, 0, 0, 4643, 4643, 4643 +l1cache_1, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, GetSHit_Blocked, , Accumulator, 0, 0, 6336, 6336, 6336 +l1cache_1, GetXHit_Blocked, , Accumulator, 0, 0, 297, 297, 297 +l1cache_1, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, CacheMisses, , Accumulator, 0, 0, 2432, 2432, 2432 +l1cache_1, GetSMiss_Arrival, , Accumulator, 0, 0, 2331, 2331, 2331 +l1cache_1, GetXMiss_Arrival, , Accumulator, 0, 0, 57, 57, 57 +l1cache_1, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, GetXMiss_Blocked, , Accumulator, 0, 0, 44, 44, 44 +l1cache_1, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, GetS_recv, , Accumulator, 0, 0, 14605, 14605, 14605 +l1cache_1, GetX_recv, , Accumulator, 0, 0, 5041, 5041, 5041 +l1cache_1, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, GetSResp_recv, , Accumulator, 0, 0, 2329, 2329, 2329 +l1cache_1, GetXResp_recv, , Accumulator, 0, 0, 101, 101, 101 +l1cache_1, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, FetchInv_recv, , Accumulator, 0, 0, 15, 15, 15 +l1cache_1, FetchInvX_recv, , Accumulator, 0, 0, 80, 80, 80 +l1cache_1, Inv_recv, , Accumulator, 0, 0, 46, 46, 46 +l1cache_1, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, MSHR_occupancy, , Accumulator, 0, 0, 2801887, 36870701, 46430821 +l1cache_1, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, evict_S, , Accumulator, 0, 0, 306, 306, 306 +l1cache_1, evict_E, , Accumulator, 0, 0, 1469, 1469, 1469 +l1cache_1, evict_M, , Accumulator, 0, 0, 49, 49, 49 +l1cache_1, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_GetS_I, , Accumulator, 0, 0, 2331, 2331, 2331 +l1cache_1, stateEvent_GetS_S, , Accumulator, 0, 0, 3433, 3433, 3433 +l1cache_1, stateEvent_GetS_E, , Accumulator, 0, 0, 6606, 6606, 6606 +l1cache_1, stateEvent_GetS_M, , Accumulator, 0, 0, 2225, 2225, 2225 +l1cache_1, stateEvent_GetX_I, , Accumulator, 0, 0, 56, 56, 56 +l1cache_1, stateEvent_GetX_S, , Accumulator, 0, 0, 45, 45, 45 +l1cache_1, stateEvent_GetX_E, , Accumulator, 0, 0, 2, 2, 2 +l1cache_1, stateEvent_GetX_M, , Accumulator, 0, 0, 4938, 4938, 4938 +l1cache_1, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2329, 2329, 2329 +l1cache_1, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 65, 65, 65 +l1cache_1, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 36, 36, 36 +l1cache_1, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Inv_S, , Accumulator, 0, 0, 37, 37, 37 +l1cache_1, stateEvent_Inv_SM, , Accumulator, 0, 0, 9, 9, 9 +l1cache_1, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_M, , Accumulator, 0, 0, 15, 15, 15 +l1cache_1, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 47, 47, 47 +l1cache_1, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 33, 33, 33 +l1cache_1, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, latency_GetS_IS, , Accumulator, 0, 0, 740570, 271825970, 2329 +l1cache_1, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, latency_GetX_IM, , Accumulator, 0, 0, 19935, 7428451, 56 +l1cache_1, latency_GetX_SM, , Accumulator, 0, 0, 7042, 1388490, 45 +l1cache_1, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, eventSent_GetS, , Accumulator, 0, 0, 2331, 2331, 2331 +l1cache_1, eventSent_GetX, , Accumulator, 0, 0, 101, 101, 101 +l1cache_1, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, eventSent_GetSResp, , Accumulator, 0, 0, 14593, 14593, 14593 +l1cache_1, eventSent_GetXResp, , Accumulator, 0, 0, 5041, 5041, 5041 +l1cache_1, eventSent_PutS, , Accumulator, 0, 0, 306, 306, 306 +l1cache_1, eventSent_PutE, , Accumulator, 0, 0, 1469, 1469, 1469 +l1cache_1, eventSent_PutM, , Accumulator, 0, 0, 49, 49, 49 +l1cache_1, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, eventSent_FetchResp, , Accumulator, 0, 0, 15, 15, 15 +l1cache_1, eventSent_FetchXResp, , Accumulator, 0, 0, 80, 80, 80 +l1cache_1, eventSent_AckInv, , Accumulator, 0, 0, 46, 46, 46 +l1cache_1, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l1cache_1, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, packet_latency, , Accumulator, 0, 0, 7928, 29456, 2550 +l2cache_1, send_bit_count, , Accumulator, 0, 0, 248960, 64299008, 2578 +l2cache_1, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, idle_time, , Accumulator, 0, 0, 17411314027, 6325692874157592665, 2453 +l2cache_1, TotalEventsReceived, , Accumulator, 0, 0, 6947, 6947, 6947 +l2cache_1, TotalEventsReplayed, , Accumulator, 0, 0, 9, 9, 9 +l2cache_1, CacheHits, , Accumulator, 0, 0, 88, 88, 88 +l2cache_1, GetSHit_Arrival, , Accumulator, 0, 0, 88, 88, 88 +l2cache_1, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, CacheMisses, , Accumulator, 0, 0, 2344, 2344, 2344 +l2cache_1, GetSMiss_Arrival, , Accumulator, 0, 0, 2243, 2243, 2243 +l2cache_1, GetXMiss_Arrival, , Accumulator, 0, 0, 100, 100, 100 +l2cache_1, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, GetXMiss_Blocked, , Accumulator, 0, 0, 1, 1, 1 +l2cache_1, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, GetS_recv, , Accumulator, 0, 0, 2331, 2331, 2331 +l2cache_1, GetX_recv, , Accumulator, 0, 0, 101, 101, 101 +l2cache_1, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, GetSResp_recv, , Accumulator, 0, 0, 2241, 2241, 2241 +l2cache_1, GetXResp_recv, , Accumulator, 0, 0, 101, 101, 101 +l2cache_1, PutS_recv, , Accumulator, 0, 0, 306, 306, 306 +l2cache_1, PutM_recv, , Accumulator, 0, 0, 49, 49, 49 +l2cache_1, PutE_recv, , Accumulator, 0, 0, 1469, 1469, 1469 +l2cache_1, FetchInv_recv, , Accumulator, 0, 0, 15, 15, 15 +l2cache_1, FetchInvX_recv, , Accumulator, 0, 0, 147, 147, 147 +l2cache_1, Inv_recv, , Accumulator, 0, 0, 46, 46, 46 +l2cache_1, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, MSHR_occupancy, , Accumulator, 0, 0, 751274, 3146670, 46430795 +l2cache_1, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, evict_S, , Accumulator, 0, 0, 8, 8, 8 +l2cache_1, evict_E, , Accumulator, 0, 0, 16, 16, 16 +l2cache_1, evict_M, , Accumulator, 0, 0, 2, 2, 2 +l2cache_1, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetS_I, , Accumulator, 0, 0, 2243, 2243, 2243 +l2cache_1, stateEvent_GetS_S, , Accumulator, 0, 0, 84, 84, 84 +l2cache_1, stateEvent_GetS_E, , Accumulator, 0, 0, 4, 4, 4 +l2cache_1, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetX_I, , Accumulator, 0, 0, 57, 57, 57 +l2cache_1, stateEvent_GetX_S, , Accumulator, 0, 0, 44, 44, 44 +l2cache_1, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2241, 2241, 2241 +l2cache_1, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 65, 65, 65 +l2cache_1, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 36, 36, 36 +l2cache_1, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_S, , Accumulator, 0, 0, 306, 306, 306 +l2cache_1, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutE_E, , Accumulator, 0, 0, 1469, 1469, 1469 +l2cache_1, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutM_E, , Accumulator, 0, 0, 2, 2, 2 +l2cache_1, stateEvent_PutM_M, , Accumulator, 0, 0, 47, 47, 47 +l2cache_1, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Inv_S, , Accumulator, 0, 0, 38, 38, 38 +l2cache_1, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 +l2cache_1, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_M, , Accumulator, 0, 0, 15, 15, 15 +l2cache_1, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 114, 114, 114 +l2cache_1, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 33, 33, 33 +l2cache_1, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 15, 15, 15 +l2cache_1, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 47, 47, 47 +l2cache_1, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 33, 33, 33 +l2cache_1, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 38, 38, 38 +l2cache_1, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 8, 8, 8 +l2cache_1, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, latency_GetS_IS, , Accumulator, 0, 0, 726244, 263021566, 2241 +l2cache_1, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, latency_GetX_IM, , Accumulator, 0, 0, 19755, 7215583, 57 +l2cache_1, latency_GetX_SM, , Accumulator, 0, 0, 3561, 320901, 44 +l2cache_1, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, eventSent_GetS, , Accumulator, 0, 0, 2243, 2243, 2243 +l2cache_1, eventSent_GetX, , Accumulator, 0, 0, 101, 101, 101 +l2cache_1, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, eventSent_GetSResp, , Accumulator, 0, 0, 2329, 2329, 2329 +l2cache_1, eventSent_GetXResp, , Accumulator, 0, 0, 101, 101, 101 +l2cache_1, eventSent_PutS, , Accumulator, 0, 0, 8, 8, 8 +l2cache_1, eventSent_PutE, , Accumulator, 0, 0, 16, 16, 16 +l2cache_1, eventSent_PutM, , Accumulator, 0, 0, 2, 2, 2 +l2cache_1, eventSent_Inv, , Accumulator, 0, 0, 46, 46, 46 +l2cache_1, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, eventSent_FetchInv, , Accumulator, 0, 0, 15, 15, 15 +l2cache_1, eventSent_FetchInvX, , Accumulator, 0, 0, 80, 80, 80 +l2cache_1, eventSent_FetchResp, , Accumulator, 0, 0, 15, 15, 15 +l2cache_1, eventSent_FetchXResp, , Accumulator, 0, 0, 147, 147, 147 +l2cache_1, eventSent_AckInv, , Accumulator, 0, 0, 46, 46, 46 +l2cache_1, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l2cache_1, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +memory_0, requests_received_GetS, , Accumulator, 0, 0, 3851, 3851, 3851 +memory_0, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +memory_0, requests_received_GetX, , Accumulator, 0, 0, 113, 113, 113 +memory_0, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +memory_0, outstanding_requests, , Accumulator, 0, 0, 83885, 440867, 3491605 +memory_0, latency_GetS, , Accumulator, 0, 0, 407145, 43098125, 3848 +memory_0, latency_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +memory_0, latency_GetX, , Accumulator, 0, 0, 12080, 1293650, 113 +memory_0, latency_PutM, , Accumulator, 0, 0, 0, 0, 0 +memory_0, cycles_with_issue, , Accumulator, 0, 0, 3964, 3964, 3964 +memory_0, cycles_attempted_issue_but_rejected, , Accumulator, 0, 0, 0, 0, 0 +memory_0, total_cycles, , Accumulator, 0, 0, 3491605, 3491605, 3491605 +dc_0, packet_latency, , Accumulator, 0, 0, 12334, 40224, 3965 +dc_0, send_bit_count, , Accumulator, 0, 0, 2281536, 1314164736, 3961 +dc_0, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +dc_0, idle_time, , Accumulator, 0, 0, 17406616285, 6010505647723498505, 3968 +dc_0, replacement_request_latency, , Accumulator, 0, 0, 0, 0, 0 +dc_0, get_request_latency, , Accumulator, 0, 0, 450882, 51349350, 3961 +dc_0, directory_cache_hits, , Accumulator, 0, 0, 3965, 3965, 3965 +dc_0, mshr_hits, , Accumulator, 0, 0, 0, 0, 0 +dc_0, requests_received_GetX, , Accumulator, 0, 0, 113, 113, 113 +dc_0, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +dc_0, requests_received_GetS, , Accumulator, 0, 0, 3852, 3852, 3852 +dc_0, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +dc_0, requests_received_PutE, , Accumulator, 0, 0, 0, 0, 0 +dc_0, requests_received_PutS, , Accumulator, 0, 0, 0, 0, 0 +dc_0, responses_received_NACK, , Accumulator, 0, 0, 0, 0, 0 +dc_0, responses_received_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +dc_0, responses_received_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +dc_0, responses_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +dc_0, responses_received_PutE, , Accumulator, 0, 0, 0, 0, 0 +dc_0, responses_received_PutS, , Accumulator, 0, 0, 0, 0, 0 +dc_0, memory_requests_data_read, , Accumulator, 0, 0, 3965, 3965, 3965 +dc_0, memory_requests_data_write, , Accumulator, 0, 0, 0, 0, 0 +dc_0, memory_requests_directory_entry_read, , Accumulator, 0, 0, 0, 0, 0 +dc_0, memory_requests_directory_entry_write, , Accumulator, 0, 0, 0, 0, 0 +dc_0, requests_sent_Inv, , Accumulator, 0, 0, 0, 0, 0 +dc_0, requests_sent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +dc_0, requests_sent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +dc_0, responses_sent_NACK, , Accumulator, 0, 0, 0, 0, 0 +dc_0, responses_sent_GetSResp, , Accumulator, 0, 0, 3848, 3848, 3848 +dc_0, responses_sent_GetXResp, , Accumulator, 0, 0, 113, 113, 113 +dc_0, MSHR_occupancy, , Accumulator, 0, 0, 87849, 479847, 3491605 +l3cache_2, packet_latency, , Accumulator, 0, 0, 17520, 77424, 4418 +l3cache_2, send_bit_count, , Accumulator, 0, 0, 1449216, 765444096, 4396 +l3cache_2, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, idle_time, , Accumulator, 0, 0, 17445896471, 6012885985144201971, 4369 +l3cache_2, TotalEventsReceived, , Accumulator, 0, 0, 4418, 4418, 4418 +l3cache_2, TotalEventsReplayed, , Accumulator, 0, 0, 42, 42, 42 +l3cache_2, CacheHits, , Accumulator, 0, 0, 184, 184, 184 +l3cache_2, GetSHit_Arrival, , Accumulator, 0, 0, 162, 162, 162 +l3cache_2, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, GetSHit_Blocked, , Accumulator, 0, 0, 22, 22, 22 +l3cache_2, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, CacheMisses, , Accumulator, 0, 0, 2098, 2098, 2098 +l3cache_2, GetSMiss_Arrival, , Accumulator, 0, 0, 2007, 2007, 2007 +l3cache_2, GetXMiss_Arrival, , Accumulator, 0, 0, 71, 71, 71 +l3cache_2, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, GetSMiss_Blocked, , Accumulator, 0, 0, 11, 11, 11 +l3cache_2, GetXMiss_Blocked, , Accumulator, 0, 0, 9, 9, 9 +l3cache_2, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, GetS_recv, , Accumulator, 0, 0, 2202, 2202, 2202 +l3cache_2, GetX_recv, , Accumulator, 0, 0, 80, 80, 80 +l3cache_2, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, GetSResp_recv, , Accumulator, 0, 0, 1930, 1930, 1930 +l3cache_2, GetXResp_recv, , Accumulator, 0, 0, 57, 57, 57 +l3cache_2, PutS_recv, , Accumulator, 0, 0, 7, 7, 7 +l3cache_2, PutM_recv, , Accumulator, 0, 0, 2, 2, 2 +l3cache_2, PutE_recv, , Accumulator, 0, 0, 13, 13, 13 +l3cache_2, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, MSHR_occupancy, , Accumulator, 0, 0, 712332, 2707512, 46430881 +l3cache_2, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetS_I, , Accumulator, 0, 0, 1931, 1931, 1931 +l3cache_2, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetS_E, , Accumulator, 0, 0, 257, 257, 257 +l3cache_2, stateEvent_GetS_M, , Accumulator, 0, 0, 14, 14, 14 +l3cache_2, stateEvent_GetX_I, , Accumulator, 0, 0, 57, 57, 57 +l3cache_2, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetX_E, , Accumulator, 0, 0, 3, 3, 3 +l3cache_2, stateEvent_GetX_M, , Accumulator, 0, 0, 20, 20, 20 +l3cache_2, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1930, 1930, 1930 +l3cache_2, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 57, 57, 57 +l3cache_2, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_E, , Accumulator, 0, 0, 7, 7, 7 +l3cache_2, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutE_E, , Accumulator, 0, 0, 13, 13, 13 +l3cache_2, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutM_M, , Accumulator, 0, 0, 2, 2, 2 +l3cache_2, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 19, 19, 19 +l3cache_2, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 84, 84, 84 +l3cache_2, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 3, 3, 3 +l3cache_2, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 21, 21, 21 +l3cache_2, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, latency_GetS_IS, , Accumulator, 0, 0, 681463, 240703779, 1930 +l3cache_2, latency_GetS_M, , Accumulator, 0, 0, 5800, 997252, 87 +l3cache_2, latency_GetX_IM, , Accumulator, 0, 0, 19985, 7008177, 57 +l3cache_2, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, latency_GetX_M, , Accumulator, 0, 0, 1481, 124175, 23 +l3cache_2, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, latency_GetSEx_M, , Accumulator, 0, 0, 5800, 997252, 87 +l3cache_2, eventSent_GetS, , Accumulator, 0, 0, 1931, 1931, 1931 +l3cache_2, eventSent_GetX, , Accumulator, 0, 0, 57, 57, 57 +l3cache_2, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, eventSent_GetSResp, , Accumulator, 0, 0, 2201, 2201, 2201 +l3cache_2, eventSent_GetXResp, , Accumulator, 0, 0, 80, 80, 80 +l3cache_2, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, eventSent_Inv, , Accumulator, 0, 0, 21, 21, 21 +l3cache_2, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, eventSent_FetchInv, , Accumulator, 0, 0, 19, 19, 19 +l3cache_2, eventSent_FetchInvX, , Accumulator, 0, 0, 87, 87, 87 +l3cache_2, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l3cache_2, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, TotalEventsReceived, , Accumulator, 0, 0, 22076, 22076, 22076 +l1cache_2, TotalEventsReplayed, , Accumulator, 0, 0, 6767, 6767, 6767 +l1cache_2, CacheHits, , Accumulator, 0, 0, 17185, 17185, 17185 +l1cache_2, GetSHit_Arrival, , Accumulator, 0, 0, 5863, 5863, 5863 +l1cache_2, GetXHit_Arrival, , Accumulator, 0, 0, 4605, 4605, 4605 +l1cache_2, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, GetSHit_Blocked, , Accumulator, 0, 0, 6420, 6420, 6420 +l1cache_2, GetXHit_Blocked, , Accumulator, 0, 0, 297, 297, 297 +l1cache_2, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, CacheMisses, , Accumulator, 0, 0, 2383, 2383, 2383 +l1cache_2, GetSMiss_Arrival, , Accumulator, 0, 0, 2284, 2284, 2284 +l1cache_2, GetXMiss_Arrival, , Accumulator, 0, 0, 58, 58, 58 +l1cache_2, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, GetXMiss_Blocked, , Accumulator, 0, 0, 41, 41, 41 +l1cache_2, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, GetS_recv, , Accumulator, 0, 0, 14567, 14567, 14567 +l1cache_2, GetX_recv, , Accumulator, 0, 0, 5001, 5001, 5001 +l1cache_2, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, GetSResp_recv, , Accumulator, 0, 0, 2284, 2284, 2284 +l1cache_2, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 +l1cache_2, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, FetchInv_recv, , Accumulator, 0, 0, 9, 9, 9 +l1cache_2, FetchInvX_recv, , Accumulator, 0, 0, 67, 67, 67 +l1cache_2, Inv_recv, , Accumulator, 0, 0, 49, 49, 49 +l1cache_2, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, MSHR_occupancy, , Accumulator, 0, 0, 2790033, 36515133, 46430909 +l1cache_2, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, evict_S, , Accumulator, 0, 0, 323, 323, 323 +l1cache_2, evict_E, , Accumulator, 0, 0, 1406, 1406, 1406 +l1cache_2, evict_M, , Accumulator, 0, 0, 50, 50, 50 +l1cache_2, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_GetS_I, , Accumulator, 0, 0, 2284, 2284, 2284 +l1cache_2, stateEvent_GetS_S, , Accumulator, 0, 0, 3502, 3502, 3502 +l1cache_2, stateEvent_GetS_E, , Accumulator, 0, 0, 6597, 6597, 6597 +l1cache_2, stateEvent_GetS_M, , Accumulator, 0, 0, 2184, 2184, 2184 +l1cache_2, stateEvent_GetX_I, , Accumulator, 0, 0, 56, 56, 56 +l1cache_2, stateEvent_GetX_S, , Accumulator, 0, 0, 43, 43, 43 +l1cache_2, stateEvent_GetX_E, , Accumulator, 0, 0, 2, 2, 2 +l1cache_2, stateEvent_GetX_M, , Accumulator, 0, 0, 4900, 4900, 4900 +l1cache_2, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2284, 2284, 2284 +l1cache_2, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 65, 65, 65 +l1cache_2, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 34, 34, 34 +l1cache_2, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Inv_S, , Accumulator, 0, 0, 40, 40, 40 +l1cache_2, stateEvent_Inv_SM, , Accumulator, 0, 0, 9, 9, 9 +l1cache_2, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_M, , Accumulator, 0, 0, 9, 9, 9 +l1cache_2, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 32, 32, 32 +l1cache_2, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 35, 35, 35 +l1cache_2, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, latency_GetS_IS, , Accumulator, 0, 0, 722062, 264646476, 2284 +l1cache_2, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, latency_GetX_IM, , Accumulator, 0, 0, 20117, 7528215, 56 +l1cache_2, latency_GetX_SM, , Accumulator, 0, 0, 5975, 1175981, 43 +l1cache_2, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, eventSent_GetS, , Accumulator, 0, 0, 2284, 2284, 2284 +l1cache_2, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 +l1cache_2, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, eventSent_GetSResp, , Accumulator, 0, 0, 14567, 14567, 14567 +l1cache_2, eventSent_GetXResp, , Accumulator, 0, 0, 5001, 5001, 5001 +l1cache_2, eventSent_PutS, , Accumulator, 0, 0, 323, 323, 323 +l1cache_2, eventSent_PutE, , Accumulator, 0, 0, 1406, 1406, 1406 +l1cache_2, eventSent_PutM, , Accumulator, 0, 0, 50, 50, 50 +l1cache_2, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, eventSent_FetchResp, , Accumulator, 0, 0, 9, 9, 9 +l1cache_2, eventSent_FetchXResp, , Accumulator, 0, 0, 67, 67, 67 +l1cache_2, eventSent_AckInv, , Accumulator, 0, 0, 49, 49, 49 +l1cache_2, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l1cache_2, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, packet_latency, , Accumulator, 0, 0, 7480, 28672, 2460 +l2cache_2, send_bit_count, , Accumulator, 0, 0, 210304, 43540480, 2470 +l2cache_2, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, idle_time, , Accumulator, 0, 0, 17408763904, 6325692716218366438, 2402 +l2cache_2, TotalEventsReceived, , Accumulator, 0, 0, 6747, 6747, 6747 +l2cache_2, TotalEventsReplayed, , Accumulator, 0, 0, 9, 9, 9 +l2cache_2, CacheHits, , Accumulator, 0, 0, 73, 73, 73 +l2cache_2, GetSHit_Arrival, , Accumulator, 0, 0, 73, 73, 73 +l2cache_2, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, CacheMisses, , Accumulator, 0, 0, 2310, 2310, 2310 +l2cache_2, GetSMiss_Arrival, , Accumulator, 0, 0, 2211, 2211, 2211 +l2cache_2, GetXMiss_Arrival, , Accumulator, 0, 0, 98, 98, 98 +l2cache_2, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, GetXMiss_Blocked, , Accumulator, 0, 0, 1, 1, 1 +l2cache_2, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, GetS_recv, , Accumulator, 0, 0, 2284, 2284, 2284 +l2cache_2, GetX_recv, , Accumulator, 0, 0, 99, 99, 99 +l2cache_2, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, GetSResp_recv, , Accumulator, 0, 0, 2211, 2211, 2211 +l2cache_2, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 +l2cache_2, PutS_recv, , Accumulator, 0, 0, 323, 323, 323 +l2cache_2, PutM_recv, , Accumulator, 0, 0, 50, 50, 50 +l2cache_2, PutE_recv, , Accumulator, 0, 0, 1406, 1406, 1406 +l2cache_2, FetchInv_recv, , Accumulator, 0, 0, 9, 9, 9 +l2cache_2, FetchInvX_recv, , Accumulator, 0, 0, 92, 92, 92 +l2cache_2, Inv_recv, , Accumulator, 0, 0, 49, 49, 49 +l2cache_2, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, MSHR_occupancy, , Accumulator, 0, 0, 732279, 2989317, 46430899 +l2cache_2, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, evict_S, , Accumulator, 0, 0, 3, 3, 3 +l2cache_2, evict_E, , Accumulator, 0, 0, 6, 6, 6 +l2cache_2, evict_M, , Accumulator, 0, 0, 1, 1, 1 +l2cache_2, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetS_I, , Accumulator, 0, 0, 2211, 2211, 2211 +l2cache_2, stateEvent_GetS_S, , Accumulator, 0, 0, 71, 71, 71 +l2cache_2, stateEvent_GetS_E, , Accumulator, 0, 0, 2, 2, 2 +l2cache_2, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetX_I, , Accumulator, 0, 0, 57, 57, 57 +l2cache_2, stateEvent_GetX_S, , Accumulator, 0, 0, 42, 42, 42 +l2cache_2, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2211, 2211, 2211 +l2cache_2, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 65, 65, 65 +l2cache_2, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 34, 34, 34 +l2cache_2, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_S, , Accumulator, 0, 0, 323, 323, 323 +l2cache_2, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutE_E, , Accumulator, 0, 0, 1406, 1406, 1406 +l2cache_2, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutM_E, , Accumulator, 0, 0, 2, 2, 2 +l2cache_2, stateEvent_PutM_M, , Accumulator, 0, 0, 48, 48, 48 +l2cache_2, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Inv_S, , Accumulator, 0, 0, 41, 41, 41 +l2cache_2, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 +l2cache_2, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_M, , Accumulator, 0, 0, 9, 9, 9 +l2cache_2, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 57, 57, 57 +l2cache_2, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 35, 35, 35 +l2cache_2, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 9, 9, 9 +l2cache_2, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 32, 32, 32 +l2cache_2, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 35, 35, 35 +l2cache_2, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 41, 41, 41 +l2cache_2, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 8, 8, 8 +l2cache_2, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, latency_GetS_IS, , Accumulator, 0, 0, 708066, 256062788, 2211 +l2cache_2, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, latency_GetX_IM, , Accumulator, 0, 0, 19925, 7309563, 57 +l2cache_2, latency_GetX_SM, , Accumulator, 0, 0, 3038, 263656, 42 +l2cache_2, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, eventSent_GetS, , Accumulator, 0, 0, 2211, 2211, 2211 +l2cache_2, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 +l2cache_2, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, eventSent_GetSResp, , Accumulator, 0, 0, 2284, 2284, 2284 +l2cache_2, eventSent_GetXResp, , Accumulator, 0, 0, 99, 99, 99 +l2cache_2, eventSent_PutS, , Accumulator, 0, 0, 3, 3, 3 +l2cache_2, eventSent_PutE, , Accumulator, 0, 0, 6, 6, 6 +l2cache_2, eventSent_PutM, , Accumulator, 0, 0, 1, 1, 1 +l2cache_2, eventSent_Inv, , Accumulator, 0, 0, 49, 49, 49 +l2cache_2, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, eventSent_FetchInv, , Accumulator, 0, 0, 9, 9, 9 +l2cache_2, eventSent_FetchInvX, , Accumulator, 0, 0, 67, 67, 67 +l2cache_2, eventSent_FetchResp, , Accumulator, 0, 0, 9, 9, 9 +l2cache_2, eventSent_FetchXResp, , Accumulator, 0, 0, 92, 92, 92 +l2cache_2, eventSent_AckInv, , Accumulator, 0, 0, 49, 49, 49 +l2cache_2, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l2cache_2, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, packet_latency, , Accumulator, 0, 0, 19836, 76922, 5667 +l3cache_3, send_bit_count, , Accumulator, 0, 0, 1852800, 977657856, 5646 +l3cache_3, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, idle_time, , Accumulator, 0, 0, 17443175030, 6017770212694991002, 5562 +l3cache_3, TotalEventsReceived, , Accumulator, 0, 0, 5667, 5667, 5667 +l3cache_3, TotalEventsReplayed, , Accumulator, 0, 0, 93, 93, 93 +l3cache_3, CacheHits, , Accumulator, 0, 0, 217, 217, 217 +l3cache_3, GetSHit_Arrival, , Accumulator, 0, 0, 190, 190, 190 +l3cache_3, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, GetSHit_Blocked, , Accumulator, 0, 0, 27, 27, 27 +l3cache_3, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, CacheMisses, , Accumulator, 0, 0, 2699, 2699, 2699 +l3cache_3, GetSMiss_Arrival, , Accumulator, 0, 0, 2292, 2292, 2292 +l3cache_3, GetXMiss_Arrival, , Accumulator, 0, 0, 341, 341, 341 +l3cache_3, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, GetSMiss_Blocked, , Accumulator, 0, 0, 28, 28, 28 +l3cache_3, GetXMiss_Blocked, , Accumulator, 0, 0, 38, 38, 38 +l3cache_3, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, GetS_recv, , Accumulator, 0, 0, 2537, 2537, 2537 +l3cache_3, GetX_recv, , Accumulator, 0, 0, 379, 379, 379 +l3cache_3, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, GetSResp_recv, , Accumulator, 0, 0, 1934, 1934, 1934 +l3cache_3, GetXResp_recv, , Accumulator, 0, 0, 58, 58, 58 +l3cache_3, PutS_recv, , Accumulator, 0, 0, 7, 7, 7 +l3cache_3, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, PutE_recv, , Accumulator, 0, 0, 14, 14, 14 +l3cache_3, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, MSHR_occupancy, , Accumulator, 0, 0, 733361, 2776371, 46430880 +l3cache_3, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetS_I, , Accumulator, 0, 0, 1937, 1937, 1937 +l3cache_3, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetS_E, , Accumulator, 0, 0, 282, 282, 282 +l3cache_3, stateEvent_GetS_M, , Accumulator, 0, 0, 318, 318, 318 +l3cache_3, stateEvent_GetX_I, , Accumulator, 0, 0, 58, 58, 58 +l3cache_3, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetX_M, , Accumulator, 0, 0, 321, 321, 321 +l3cache_3, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1934, 1934, 1934 +l3cache_3, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 58, 58, 58 +l3cache_3, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_E, , Accumulator, 0, 0, 7, 7, 7 +l3cache_3, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutE_E, , Accumulator, 0, 0, 14, 14, 14 +l3cache_3, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 42, 42, 42 +l3cache_3, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 97, 97, 97 +l3cache_3, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 286, 286, 286 +l3cache_3, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 313, 313, 313 +l3cache_3, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, latency_GetS_IS, , Accumulator, 0, 0, 678160, 237892812, 1934 +l3cache_3, latency_GetS_M, , Accumulator, 0, 0, 17013, 1171951, 383 +l3cache_3, latency_GetX_IM, , Accumulator, 0, 0, 20434, 7202782, 58 +l3cache_3, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, latency_GetX_M, , Accumulator, 0, 0, 15418, 788252, 321 +l3cache_3, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, latency_GetSEx_M, , Accumulator, 0, 0, 17013, 1171951, 383 +l3cache_3, eventSent_GetS, , Accumulator, 0, 0, 1937, 1937, 1937 +l3cache_3, eventSent_GetX, , Accumulator, 0, 0, 58, 58, 58 +l3cache_3, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, eventSent_GetSResp, , Accumulator, 0, 0, 2534, 2534, 2534 +l3cache_3, eventSent_GetXResp, , Accumulator, 0, 0, 379, 379, 379 +l3cache_3, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, eventSent_Inv, , Accumulator, 0, 0, 313, 313, 313 +l3cache_3, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, eventSent_FetchInv, , Accumulator, 0, 0, 42, 42, 42 +l3cache_3, eventSent_FetchInvX, , Accumulator, 0, 0, 383, 383, 383 +l3cache_3, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l3cache_3, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, TotalEventsReceived, , Accumulator, 0, 0, 21962, 21962, 21962 +l1cache_3, TotalEventsReplayed, , Accumulator, 0, 0, 6700, 6700, 6700 +l1cache_3, CacheHits, , Accumulator, 0, 0, 17023, 17023, 17023 +l1cache_3, GetSHit_Arrival, , Accumulator, 0, 0, 5848, 5848, 5848 +l1cache_3, GetXHit_Arrival, , Accumulator, 0, 0, 4521, 4521, 4521 +l1cache_3, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, GetSHit_Blocked, , Accumulator, 0, 0, 6358, 6358, 6358 +l1cache_3, GetXHit_Blocked, , Accumulator, 0, 0, 296, 296, 296 +l1cache_3, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, CacheMisses, , Accumulator, 0, 0, 2379, 2379, 2379 +l1cache_3, GetSMiss_Arrival, , Accumulator, 0, 0, 2284, 2284, 2284 +l1cache_3, GetXMiss_Arrival, , Accumulator, 0, 0, 55, 55, 55 +l1cache_3, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, GetXMiss_Blocked, , Accumulator, 0, 0, 40, 40, 40 +l1cache_3, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, GetS_recv, , Accumulator, 0, 0, 14500, 14500, 14500 +l1cache_3, GetX_recv, , Accumulator, 0, 0, 4912, 4912, 4912 +l1cache_3, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, GetSResp_recv, , Accumulator, 0, 0, 2281, 2281, 2281 +l1cache_3, GetXResp_recv, , Accumulator, 0, 0, 95, 95, 95 +l1cache_3, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, FetchInv_recv, , Accumulator, 0, 0, 12, 12, 12 +l1cache_3, FetchInvX_recv, , Accumulator, 0, 0, 119, 119, 119 +l1cache_3, Inv_recv, , Accumulator, 0, 0, 43, 43, 43 +l1cache_3, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, MSHR_occupancy, , Accumulator, 0, 0, 2798883, 36628491, 46430924 +l1cache_3, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, evict_S, , Accumulator, 0, 0, 334, 334, 334 +l1cache_3, evict_E, , Accumulator, 0, 0, 1394, 1394, 1394 +l1cache_3, evict_M, , Accumulator, 0, 0, 49, 49, 49 +l1cache_3, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_GetS_I, , Accumulator, 0, 0, 2284, 2284, 2284 +l1cache_3, stateEvent_GetS_S, , Accumulator, 0, 0, 3363, 3363, 3363 +l1cache_3, stateEvent_GetS_E, , Accumulator, 0, 0, 6578, 6578, 6578 +l1cache_3, stateEvent_GetS_M, , Accumulator, 0, 0, 2265, 2265, 2265 +l1cache_3, stateEvent_GetX_I, , Accumulator, 0, 0, 53, 53, 53 +l1cache_3, stateEvent_GetX_S, , Accumulator, 0, 0, 42, 42, 42 +l1cache_3, stateEvent_GetX_E, , Accumulator, 0, 0, 5, 5, 5 +l1cache_3, stateEvent_GetX_M, , Accumulator, 0, 0, 4812, 4812, 4812 +l1cache_3, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2281, 2281, 2281 +l1cache_3, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 59, 59, 59 +l1cache_3, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 36, 36, 36 +l1cache_3, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Inv_S, , Accumulator, 0, 0, 37, 37, 37 +l1cache_3, stateEvent_Inv_SM, , Accumulator, 0, 0, 6, 6, 6 +l1cache_3, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_M, , Accumulator, 0, 0, 12, 12, 12 +l1cache_3, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 86, 86, 86 +l1cache_3, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 33, 33, 33 +l1cache_3, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, latency_GetS_IS, , Accumulator, 0, 0, 728495, 266711369, 2281 +l1cache_3, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, latency_GetX_IM, , Accumulator, 0, 0, 18836, 6964606, 53 +l1cache_3, latency_GetX_SM, , Accumulator, 0, 0, 4923, 624861, 42 +l1cache_3, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, eventSent_GetS, , Accumulator, 0, 0, 2284, 2284, 2284 +l1cache_3, eventSent_GetX, , Accumulator, 0, 0, 95, 95, 95 +l1cache_3, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, eventSent_GetSResp, , Accumulator, 0, 0, 14487, 14487, 14487 +l1cache_3, eventSent_GetXResp, , Accumulator, 0, 0, 4912, 4912, 4912 +l1cache_3, eventSent_PutS, , Accumulator, 0, 0, 334, 334, 334 +l1cache_3, eventSent_PutE, , Accumulator, 0, 0, 1394, 1394, 1394 +l1cache_3, eventSent_PutM, , Accumulator, 0, 0, 49, 49, 49 +l1cache_3, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, eventSent_FetchResp, , Accumulator, 0, 0, 12, 12, 12 +l1cache_3, eventSent_FetchXResp, , Accumulator, 0, 0, 119, 119, 119 +l1cache_3, eventSent_AckInv, , Accumulator, 0, 0, 43, 43, 43 +l1cache_3, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l1cache_3, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, packet_latency, , Accumulator, 0, 0, 7838, 29600, 2521 +l2cache_3, send_bit_count, , Accumulator, 0, 0, 252224, 66867200, 2565 +l2cache_3, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, idle_time, , Accumulator, 0, 0, 17409480285, 6322976879784478017, 2442 +l2cache_3, TotalEventsReceived, , Accumulator, 0, 0, 6851, 6851, 6851 +l2cache_3, TotalEventsReplayed, , Accumulator, 0, 0, 6, 6, 6 +l2cache_3, CacheHits, , Accumulator, 0, 0, 66, 66, 66 +l2cache_3, GetSHit_Arrival, , Accumulator, 0, 0, 66, 66, 66 +l2cache_3, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, CacheMisses, , Accumulator, 0, 0, 2313, 2313, 2313 +l2cache_3, GetSMiss_Arrival, , Accumulator, 0, 0, 2218, 2218, 2218 +l2cache_3, GetXMiss_Arrival, , Accumulator, 0, 0, 93, 93, 93 +l2cache_3, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, GetXMiss_Blocked, , Accumulator, 0, 0, 2, 2, 2 +l2cache_3, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, GetS_recv, , Accumulator, 0, 0, 2284, 2284, 2284 +l2cache_3, GetX_recv, , Accumulator, 0, 0, 95, 95, 95 +l2cache_3, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, GetSResp_recv, , Accumulator, 0, 0, 2215, 2215, 2215 +l2cache_3, GetXResp_recv, , Accumulator, 0, 0, 95, 95, 95 +l2cache_3, PutS_recv, , Accumulator, 0, 0, 334, 334, 334 +l2cache_3, PutM_recv, , Accumulator, 0, 0, 49, 49, 49 +l2cache_3, PutE_recv, , Accumulator, 0, 0, 1394, 1394, 1394 +l2cache_3, FetchInv_recv, , Accumulator, 0, 0, 12, 12, 12 +l2cache_3, FetchInvX_recv, , Accumulator, 0, 0, 156, 156, 156 +l2cache_3, Inv_recv, , Accumulator, 0, 0, 43, 43, 43 +l2cache_3, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, MSHR_occupancy, , Accumulator, 0, 0, 738131, 2990253, 46430923 +l2cache_3, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, evict_S, , Accumulator, 0, 0, 11, 11, 11 +l2cache_3, evict_E, , Accumulator, 0, 0, 26, 26, 26 +l2cache_3, evict_M, , Accumulator, 0, 0, 4, 4, 4 +l2cache_3, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetS_I, , Accumulator, 0, 0, 2218, 2218, 2218 +l2cache_3, stateEvent_GetS_S, , Accumulator, 0, 0, 65, 65, 65 +l2cache_3, stateEvent_GetS_E, , Accumulator, 0, 0, 1, 1, 1 +l2cache_3, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetX_I, , Accumulator, 0, 0, 55, 55, 55 +l2cache_3, stateEvent_GetX_S, , Accumulator, 0, 0, 40, 40, 40 +l2cache_3, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2215, 2215, 2215 +l2cache_3, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 59, 59, 59 +l2cache_3, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 36, 36, 36 +l2cache_3, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_S, , Accumulator, 0, 0, 334, 334, 334 +l2cache_3, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutE_E, , Accumulator, 0, 0, 1394, 1394, 1394 +l2cache_3, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutM_E, , Accumulator, 0, 0, 4, 4, 4 +l2cache_3, stateEvent_PutM_M, , Accumulator, 0, 0, 45, 45, 45 +l2cache_3, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Inv_S, , Accumulator, 0, 0, 39, 39, 39 +l2cache_3, stateEvent_Inv_SM, , Accumulator, 0, 0, 4, 4, 4 +l2cache_3, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_M, , Accumulator, 0, 0, 12, 12, 12 +l2cache_3, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 124, 124, 124 +l2cache_3, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 32, 32, 32 +l2cache_3, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 12, 12, 12 +l2cache_3, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 87, 87, 87 +l2cache_3, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 32, 32, 32 +l2cache_3, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 39, 39, 39 +l2cache_3, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 4, 4, 4 +l2cache_3, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, latency_GetS_IS, , Accumulator, 0, 0, 714545, 258050489, 2215 +l2cache_3, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, latency_GetX_IM, , Accumulator, 0, 0, 18678, 6753930, 55 +l2cache_3, latency_GetX_SM, , Accumulator, 0, 0, 2723, 201977, 40 +l2cache_3, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, eventSent_GetS, , Accumulator, 0, 0, 2218, 2218, 2218 +l2cache_3, eventSent_GetX, , Accumulator, 0, 0, 95, 95, 95 +l2cache_3, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, eventSent_GetSResp, , Accumulator, 0, 0, 2281, 2281, 2281 +l2cache_3, eventSent_GetXResp, , Accumulator, 0, 0, 95, 95, 95 +l2cache_3, eventSent_PutS, , Accumulator, 0, 0, 11, 11, 11 +l2cache_3, eventSent_PutE, , Accumulator, 0, 0, 26, 26, 26 +l2cache_3, eventSent_PutM, , Accumulator, 0, 0, 4, 4, 4 +l2cache_3, eventSent_Inv, , Accumulator, 0, 0, 43, 43, 43 +l2cache_3, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, eventSent_FetchInv, , Accumulator, 0, 0, 12, 12, 12 +l2cache_3, eventSent_FetchInvX, , Accumulator, 0, 0, 119, 119, 119 +l2cache_3, eventSent_FetchResp, , Accumulator, 0, 0, 12, 12, 12 +l2cache_3, eventSent_FetchXResp, , Accumulator, 0, 0, 156, 156, 156 +l2cache_3, eventSent_AckInv, , Accumulator, 0, 0, 43, 43, 43 +l2cache_3, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l2cache_3, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +memory_1, requests_received_GetS, , Accumulator, 0, 0, 3819, 3819, 3819 +memory_1, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +memory_1, requests_received_GetX, , Accumulator, 0, 0, 117, 117, 117 +memory_1, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +memory_1, outstanding_requests, , Accumulator, 0, 0, 83243, 428319, 3491605 +memory_1, latency_GetS, , Accumulator, 0, 0, 403560, 42707500, 3815 +memory_1, latency_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +memory_1, latency_GetX, , Accumulator, 0, 0, 12445, 1325225, 117 +memory_1, latency_PutM, , Accumulator, 0, 0, 0, 0, 0 +memory_1, cycles_with_issue, , Accumulator, 0, 0, 3936, 3936, 3936 +memory_1, cycles_attempted_issue_but_rejected, , Accumulator, 0, 0, 0, 0, 0 +memory_1, total_cycles, , Accumulator, 0, 0, 3491605, 3491605, 3491605 +dc_1, packet_latency, , Accumulator, 0, 0, 12248, 42130, 3938 +dc_1, send_bit_count, , Accumulator, 0, 0, 2264256, 1304211456, 3931 +dc_1, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +dc_1, idle_time, , Accumulator, 0, 0, 17405958303, 6013268257451542003, 3934 +dc_1, replacement_request_latency, , Accumulator, 0, 0, 0, 0, 0 +dc_1, get_request_latency, , Accumulator, 0, 0, 447182, 50882014, 3932 +dc_1, directory_cache_hits, , Accumulator, 0, 0, 3937, 3937, 3937 +dc_1, mshr_hits, , Accumulator, 0, 0, 0, 0, 0 +dc_1, requests_received_GetX, , Accumulator, 0, 0, 117, 117, 117 +dc_1, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +dc_1, requests_received_GetS, , Accumulator, 0, 0, 3820, 3820, 3820 +dc_1, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +dc_1, requests_received_PutE, , Accumulator, 0, 0, 0, 0, 0 +dc_1, requests_received_PutS, , Accumulator, 0, 0, 0, 0, 0 +dc_1, responses_received_NACK, , Accumulator, 0, 0, 0, 0, 0 +dc_1, responses_received_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +dc_1, responses_received_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +dc_1, responses_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +dc_1, responses_received_PutE, , Accumulator, 0, 0, 0, 0, 0 +dc_1, responses_received_PutS, , Accumulator, 0, 0, 0, 0, 0 +dc_1, memory_requests_data_read, , Accumulator, 0, 0, 3937, 3937, 3937 +dc_1, memory_requests_data_write, , Accumulator, 0, 0, 0, 0, 0 +dc_1, memory_requests_directory_entry_read, , Accumulator, 0, 0, 0, 0, 0 +dc_1, memory_requests_directory_entry_write, , Accumulator, 0, 0, 0, 0, 0 +dc_1, requests_sent_Inv, , Accumulator, 0, 0, 0, 0, 0 +dc_1, requests_sent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +dc_1, requests_sent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +dc_1, responses_sent_NACK, , Accumulator, 0, 0, 0, 0, 0 +dc_1, responses_sent_GetSResp, , Accumulator, 0, 0, 3815, 3815, 3815 +dc_1, responses_sent_GetXResp, , Accumulator, 0, 0, 117, 117, 117 +dc_1, MSHR_occupancy, , Accumulator, 0, 0, 87179, 466089, 3491605 +l3cache_4, packet_latency, , Accumulator, 0, 0, 13647, 47013, 4371 +l3cache_4, send_bit_count, , Accumulator, 0, 0, 1438016, 760008704, 4349 +l3cache_4, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, idle_time, , Accumulator, 0, 0, 17445983149, 6020497202441365651, 4326 +l3cache_4, TotalEventsReceived, , Accumulator, 0, 0, 4371, 4371, 4371 +l3cache_4, TotalEventsReplayed, , Accumulator, 0, 0, 26, 26, 26 +l3cache_4, CacheHits, , Accumulator, 0, 0, 182, 182, 182 +l3cache_4, GetSHit_Arrival, , Accumulator, 0, 0, 161, 161, 161 +l3cache_4, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, GetSHit_Blocked, , Accumulator, 0, 0, 21, 21, 21 +l3cache_4, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, CacheMisses, , Accumulator, 0, 0, 2084, 2084, 2084 +l3cache_4, GetSMiss_Arrival, , Accumulator, 0, 0, 2026, 2026, 2026 +l3cache_4, GetXMiss_Arrival, , Accumulator, 0, 0, 53, 53, 53 +l3cache_4, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, GetSMiss_Blocked, , Accumulator, 0, 0, 5, 5, 5 +l3cache_4, GetXMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, GetS_recv, , Accumulator, 0, 0, 2213, 2213, 2213 +l3cache_4, GetX_recv, , Accumulator, 0, 0, 53, 53, 53 +l3cache_4, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, GetSResp_recv, , Accumulator, 0, 0, 1946, 1946, 1946 +l3cache_4, GetXResp_recv, , Accumulator, 0, 0, 53, 53, 53 +l3cache_4, PutS_recv, , Accumulator, 0, 0, 11, 11, 11 +l3cache_4, PutM_recv, , Accumulator, 0, 0, 2, 2, 2 +l3cache_4, PutE_recv, , Accumulator, 0, 0, 9, 9, 9 +l3cache_4, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, MSHR_occupancy, , Accumulator, 0, 0, 698100, 2568620, 46430891 +l3cache_4, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetS_I, , Accumulator, 0, 0, 1947, 1947, 1947 +l3cache_4, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetS_E, , Accumulator, 0, 0, 263, 263, 263 +l3cache_4, stateEvent_GetS_M, , Accumulator, 0, 0, 3, 3, 3 +l3cache_4, stateEvent_GetX_I, , Accumulator, 0, 0, 53, 53, 53 +l3cache_4, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1946, 1946, 1946 +l3cache_4, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 53, 53, 53 +l3cache_4, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_E, , Accumulator, 0, 0, 11, 11, 11 +l3cache_4, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutE_E, , Accumulator, 0, 0, 9, 9, 9 +l3cache_4, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutM_M, , Accumulator, 0, 0, 2, 2, 2 +l3cache_4, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 84, 84, 84 +l3cache_4, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, latency_GetS_IS, , Accumulator, 0, 0, 672585, 232542783, 1946 +l3cache_4, latency_GetS_M, , Accumulator, 0, 0, 4750, 664212, 84 +l3cache_4, latency_GetX_IM, , Accumulator, 0, 0, 18722, 6625068, 53 +l3cache_4, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, latency_GetSEx_M, , Accumulator, 0, 0, 4750, 664212, 84 +l3cache_4, eventSent_GetS, , Accumulator, 0, 0, 1947, 1947, 1947 +l3cache_4, eventSent_GetX, , Accumulator, 0, 0, 53, 53, 53 +l3cache_4, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_GetSResp, , Accumulator, 0, 0, 2212, 2212, 2212 +l3cache_4, eventSent_GetXResp, , Accumulator, 0, 0, 53, 53, 53 +l3cache_4, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_FetchInvX, , Accumulator, 0, 0, 84, 84, 84 +l3cache_4, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l3cache_4, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, TotalEventsReceived, , Accumulator, 0, 0, 21708, 21708, 21708 +l1cache_4, TotalEventsReplayed, , Accumulator, 0, 0, 6649, 6649, 6649 +l1cache_4, CacheHits, , Accumulator, 0, 0, 16667, 16667, 16667 +l1cache_4, GetSHit_Arrival, , Accumulator, 0, 0, 5525, 5525, 5525 +l1cache_4, GetXHit_Arrival, , Accumulator, 0, 0, 4543, 4543, 4543 +l1cache_4, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, GetSHit_Blocked, , Accumulator, 0, 0, 6302, 6302, 6302 +l1cache_4, GetXHit_Blocked, , Accumulator, 0, 0, 297, 297, 297 +l1cache_4, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, CacheMisses, , Accumulator, 0, 0, 2448, 2448, 2448 +l1cache_4, GetSMiss_Arrival, , Accumulator, 0, 0, 2349, 2349, 2349 +l1cache_4, GetXMiss_Arrival, , Accumulator, 0, 0, 54, 54, 54 +l1cache_4, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, GetXMiss_Blocked, , Accumulator, 0, 0, 45, 45, 45 +l1cache_4, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, GetS_recv, , Accumulator, 0, 0, 14188, 14188, 14188 +l1cache_4, GetX_recv, , Accumulator, 0, 0, 4939, 4939, 4939 +l1cache_4, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, GetSResp_recv, , Accumulator, 0, 0, 2345, 2345, 2345 +l1cache_4, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 +l1cache_4, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, FetchInv_recv, , Accumulator, 0, 0, 9, 9, 9 +l1cache_4, FetchInvX_recv, , Accumulator, 0, 0, 79, 79, 79 +l1cache_4, Inv_recv, , Accumulator, 0, 0, 49, 49, 49 +l1cache_4, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, MSHR_occupancy, , Accumulator, 0, 0, 2792991, 36574517, 46430906 +l1cache_4, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, evict_S, , Accumulator, 0, 0, 322, 322, 322 +l1cache_4, evict_E, , Accumulator, 0, 0, 1468, 1468, 1468 +l1cache_4, evict_M, , Accumulator, 0, 0, 49, 49, 49 +l1cache_4, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_GetS_I, , Accumulator, 0, 0, 2349, 2349, 2349 +l1cache_4, stateEvent_GetS_S, , Accumulator, 0, 0, 3307, 3307, 3307 +l1cache_4, stateEvent_GetS_E, , Accumulator, 0, 0, 6570, 6570, 6570 +l1cache_4, stateEvent_GetS_M, , Accumulator, 0, 0, 1950, 1950, 1950 +l1cache_4, stateEvent_GetX_I, , Accumulator, 0, 0, 54, 54, 54 +l1cache_4, stateEvent_GetX_S, , Accumulator, 0, 0, 45, 45, 45 +l1cache_4, stateEvent_GetX_E, , Accumulator, 0, 0, 4, 4, 4 +l1cache_4, stateEvent_GetX_M, , Accumulator, 0, 0, 4836, 4836, 4836 +l1cache_4, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2345, 2345, 2345 +l1cache_4, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 59, 59, 59 +l1cache_4, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 40, 40, 40 +l1cache_4, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Inv_S, , Accumulator, 0, 0, 44, 44, 44 +l1cache_4, stateEvent_Inv_SM, , Accumulator, 0, 0, 5, 5, 5 +l1cache_4, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_M, , Accumulator, 0, 0, 9, 9, 9 +l1cache_4, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 40, 40, 40 +l1cache_4, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 +l1cache_4, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, latency_GetS_IS, , Accumulator, 0, 0, 734853, 269038995, 2345 +l1cache_4, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, latency_GetX_IM, , Accumulator, 0, 0, 19070, 7095070, 54 +l1cache_4, latency_GetX_SM, , Accumulator, 0, 0, 6562, 1118554, 45 +l1cache_4, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, eventSent_GetS, , Accumulator, 0, 0, 2349, 2349, 2349 +l1cache_4, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 +l1cache_4, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, eventSent_GetSResp, , Accumulator, 0, 0, 14172, 14172, 14172 +l1cache_4, eventSent_GetXResp, , Accumulator, 0, 0, 4939, 4939, 4939 +l1cache_4, eventSent_PutS, , Accumulator, 0, 0, 322, 322, 322 +l1cache_4, eventSent_PutE, , Accumulator, 0, 0, 1468, 1468, 1468 +l1cache_4, eventSent_PutM, , Accumulator, 0, 0, 49, 49, 49 +l1cache_4, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, eventSent_FetchResp, , Accumulator, 0, 0, 9, 9, 9 +l1cache_4, eventSent_FetchXResp, , Accumulator, 0, 0, 79, 79, 79 +l1cache_4, eventSent_AckInv, , Accumulator, 0, 0, 49, 49, 49 +l1cache_4, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l1cache_4, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, packet_latency, , Accumulator, 0, 0, 7807, 29253, 2525 +l2cache_4, send_bit_count, , Accumulator, 0, 0, 223936, 48836608, 2563 +l2cache_4, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, idle_time, , Accumulator, 0, 0, 17407941992, 6325692703203377112, 2424 +l2cache_4, TotalEventsReceived, , Accumulator, 0, 0, 6949, 6949, 6949 +l2cache_4, TotalEventsReplayed, , Accumulator, 0, 0, 5, 5, 5 +l2cache_4, CacheHits, , Accumulator, 0, 0, 82, 82, 82 +l2cache_4, GetSHit_Arrival, , Accumulator, 0, 0, 82, 82, 82 +l2cache_4, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, CacheMisses, , Accumulator, 0, 0, 2366, 2366, 2366 +l2cache_4, GetSMiss_Arrival, , Accumulator, 0, 0, 2267, 2267, 2267 +l2cache_4, GetXMiss_Arrival, , Accumulator, 0, 0, 98, 98, 98 +l2cache_4, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, GetXMiss_Blocked, , Accumulator, 0, 0, 1, 1, 1 +l2cache_4, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, GetS_recv, , Accumulator, 0, 0, 2349, 2349, 2349 +l2cache_4, GetX_recv, , Accumulator, 0, 0, 99, 99, 99 +l2cache_4, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, GetSResp_recv, , Accumulator, 0, 0, 2263, 2263, 2263 +l2cache_4, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 +l2cache_4, PutS_recv, , Accumulator, 0, 0, 322, 322, 322 +l2cache_4, PutM_recv, , Accumulator, 0, 0, 49, 49, 49 +l2cache_4, PutE_recv, , Accumulator, 0, 0, 1468, 1468, 1468 +l2cache_4, FetchInv_recv, , Accumulator, 0, 0, 9, 9, 9 +l2cache_4, FetchInvX_recv, , Accumulator, 0, 0, 105, 105, 105 +l2cache_4, Inv_recv, , Accumulator, 0, 0, 49, 49, 49 +l2cache_4, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, MSHR_occupancy, , Accumulator, 0, 0, 744380, 3073570, 46430905 +l2cache_4, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, evict_S, , Accumulator, 0, 0, 7, 7, 7 +l2cache_4, evict_E, , Accumulator, 0, 0, 24, 24, 24 +l2cache_4, evict_M, , Accumulator, 0, 0, 3, 3, 3 +l2cache_4, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetS_I, , Accumulator, 0, 0, 2267, 2267, 2267 +l2cache_4, stateEvent_GetS_S, , Accumulator, 0, 0, 78, 78, 78 +l2cache_4, stateEvent_GetS_E, , Accumulator, 0, 0, 4, 4, 4 +l2cache_4, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetX_I, , Accumulator, 0, 0, 55, 55, 55 +l2cache_4, stateEvent_GetX_S, , Accumulator, 0, 0, 44, 44, 44 +l2cache_4, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2263, 2263, 2263 +l2cache_4, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 59, 59, 59 +l2cache_4, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 40, 40, 40 +l2cache_4, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_S, , Accumulator, 0, 0, 322, 322, 322 +l2cache_4, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutE_E, , Accumulator, 0, 0, 1468, 1468, 1468 +l2cache_4, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutM_E, , Accumulator, 0, 0, 4, 4, 4 +l2cache_4, stateEvent_PutM_M, , Accumulator, 0, 0, 45, 45, 45 +l2cache_4, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Inv_S, , Accumulator, 0, 0, 45, 45, 45 +l2cache_4, stateEvent_Inv_SM, , Accumulator, 0, 0, 4, 4, 4 +l2cache_4, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_M, , Accumulator, 0, 0, 9, 9, 9 +l2cache_4, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 66, 66, 66 +l2cache_4, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 +l2cache_4, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 9, 9, 9 +l2cache_4, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 40, 40, 40 +l2cache_4, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 39, 39, 39 +l2cache_4, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 45, 45, 45 +l2cache_4, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 4, 4, 4 +l2cache_4, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, latency_GetS_IS, , Accumulator, 0, 0, 720455, 260303867, 2263 +l2cache_4, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, latency_GetX_IM, , Accumulator, 0, 0, 18848, 6878578, 55 +l2cache_4, latency_GetX_SM, , Accumulator, 0, 0, 3195, 249231, 44 +l2cache_4, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, eventSent_GetS, , Accumulator, 0, 0, 2267, 2267, 2267 +l2cache_4, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 +l2cache_4, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, eventSent_GetSResp, , Accumulator, 0, 0, 2345, 2345, 2345 +l2cache_4, eventSent_GetXResp, , Accumulator, 0, 0, 99, 99, 99 +l2cache_4, eventSent_PutS, , Accumulator, 0, 0, 7, 7, 7 +l2cache_4, eventSent_PutE, , Accumulator, 0, 0, 24, 24, 24 +l2cache_4, eventSent_PutM, , Accumulator, 0, 0, 3, 3, 3 +l2cache_4, eventSent_Inv, , Accumulator, 0, 0, 49, 49, 49 +l2cache_4, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, eventSent_FetchInv, , Accumulator, 0, 0, 9, 9, 9 +l2cache_4, eventSent_FetchInvX, , Accumulator, 0, 0, 79, 79, 79 +l2cache_4, eventSent_FetchResp, , Accumulator, 0, 0, 9, 9, 9 +l2cache_4, eventSent_FetchXResp, , Accumulator, 0, 0, 105, 105, 105 +l2cache_4, eventSent_AckInv, , Accumulator, 0, 0, 49, 49, 49 +l2cache_4, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l2cache_4, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, packet_latency, , Accumulator, 0, 0, 11918, 37894, 4472 +l3cache_5, send_bit_count, , Accumulator, 0, 0, 1465856, 774471680, 4440 +l3cache_5, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, idle_time, , Accumulator, 0, 0, 17446068038, 6017924785612601904, 4406 +l3cache_5, TotalEventsReceived, , Accumulator, 0, 0, 4472, 4472, 4472 +l3cache_5, TotalEventsReplayed, , Accumulator, 0, 0, 65, 65, 65 +l3cache_5, CacheHits, , Accumulator, 0, 0, 201, 201, 201 +l3cache_5, GetSHit_Arrival, , Accumulator, 0, 0, 157, 157, 157 +l3cache_5, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, GetSHit_Blocked, , Accumulator, 0, 0, 44, 44, 44 +l3cache_5, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, CacheMisses, , Accumulator, 0, 0, 2111, 2111, 2111 +l3cache_5, GetSMiss_Arrival, , Accumulator, 0, 0, 2023, 2023, 2023 +l3cache_5, GetXMiss_Arrival, , Accumulator, 0, 0, 67, 67, 67 +l3cache_5, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, GetSMiss_Blocked, , Accumulator, 0, 0, 8, 8, 8 +l3cache_5, GetXMiss_Blocked, , Accumulator, 0, 0, 13, 13, 13 +l3cache_5, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, GetS_recv, , Accumulator, 0, 0, 2232, 2232, 2232 +l3cache_5, GetX_recv, , Accumulator, 0, 0, 80, 80, 80 +l3cache_5, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, GetSResp_recv, , Accumulator, 0, 0, 1927, 1927, 1927 +l3cache_5, GetXResp_recv, , Accumulator, 0, 0, 58, 58, 58 +l3cache_5, PutS_recv, , Accumulator, 0, 0, 13, 13, 13 +l3cache_5, PutM_recv, , Accumulator, 0, 0, 4, 4, 4 +l3cache_5, PutE_recv, , Accumulator, 0, 0, 15, 15, 15 +l3cache_5, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, MSHR_occupancy, , Accumulator, 0, 0, 678434, 2413910, 46430920 +l3cache_5, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetS_I, , Accumulator, 0, 0, 1931, 1931, 1931 +l3cache_5, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetS_E, , Accumulator, 0, 0, 271, 271, 271 +l3cache_5, stateEvent_GetS_M, , Accumulator, 0, 0, 30, 30, 30 +l3cache_5, stateEvent_GetX_I, , Accumulator, 0, 0, 58, 58, 58 +l3cache_5, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetX_E, , Accumulator, 0, 0, 1, 1, 1 +l3cache_5, stateEvent_GetX_M, , Accumulator, 0, 0, 21, 21, 21 +l3cache_5, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1927, 1927, 1927 +l3cache_5, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 58, 58, 58 +l3cache_5, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_E, , Accumulator, 0, 0, 13, 13, 13 +l3cache_5, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutE_E, , Accumulator, 0, 0, 15, 15, 15 +l3cache_5, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutM_M, , Accumulator, 0, 0, 4, 4, 4 +l3cache_5, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 15, 15, 15 +l3cache_5, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 92, 92, 92 +l3cache_5, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 8, 8, 8 +l3cache_5, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 28, 28, 28 +l3cache_5, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, latency_GetS_IS, , Accumulator, 0, 0, 650502, 219675438, 1927 +l3cache_5, latency_GetS_M, , Accumulator, 0, 0, 4652, 321716, 100 +l3cache_5, latency_GetX_IM, , Accumulator, 0, 0, 19598, 6624714, 58 +l3cache_5, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, latency_GetX_M, , Accumulator, 0, 0, 1791, 176227, 22 +l3cache_5, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, latency_GetSEx_M, , Accumulator, 0, 0, 4652, 321716, 100 +l3cache_5, eventSent_GetS, , Accumulator, 0, 0, 1931, 1931, 1931 +l3cache_5, eventSent_GetX, , Accumulator, 0, 0, 58, 58, 58 +l3cache_5, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, eventSent_GetSResp, , Accumulator, 0, 0, 2228, 2228, 2228 +l3cache_5, eventSent_GetXResp, , Accumulator, 0, 0, 80, 80, 80 +l3cache_5, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, eventSent_Inv, , Accumulator, 0, 0, 28, 28, 28 +l3cache_5, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, eventSent_FetchInv, , Accumulator, 0, 0, 15, 15, 15 +l3cache_5, eventSent_FetchInvX, , Accumulator, 0, 0, 100, 100, 100 +l3cache_5, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l3cache_5, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, TotalEventsReceived, , Accumulator, 0, 0, 21826, 21826, 21826 +l1cache_5, TotalEventsReplayed, , Accumulator, 0, 0, 6698, 6698, 6698 +l1cache_5, CacheHits, , Accumulator, 0, 0, 16834, 16834, 16834 +l1cache_5, GetSHit_Arrival, , Accumulator, 0, 0, 5640, 5640, 5640 +l1cache_5, GetXHit_Arrival, , Accumulator, 0, 0, 4544, 4544, 4544 +l1cache_5, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, GetSHit_Blocked, , Accumulator, 0, 0, 6355, 6355, 6355 +l1cache_5, GetXHit_Blocked, , Accumulator, 0, 0, 295, 295, 295 +l1cache_5, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, CacheMisses, , Accumulator, 0, 0, 2423, 2423, 2423 +l1cache_5, GetSMiss_Arrival, , Accumulator, 0, 0, 2324, 2324, 2324 +l1cache_5, GetXMiss_Arrival, , Accumulator, 0, 0, 57, 57, 57 +l1cache_5, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, GetXMiss_Blocked, , Accumulator, 0, 0, 42, 42, 42 +l1cache_5, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, GetS_recv, , Accumulator, 0, 0, 14319, 14319, 14319 +l1cache_5, GetX_recv, , Accumulator, 0, 0, 4938, 4938, 4938 +l1cache_5, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, GetSResp_recv, , Accumulator, 0, 0, 2321, 2321, 2321 +l1cache_5, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 +l1cache_5, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, FetchInv_recv, , Accumulator, 0, 0, 7, 7, 7 +l1cache_5, FetchInvX_recv, , Accumulator, 0, 0, 94, 94, 94 +l1cache_5, Inv_recv, , Accumulator, 0, 0, 48, 48, 48 +l1cache_5, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, MSHR_occupancy, , Accumulator, 0, 0, 2801188, 36665182, 46430922 +l1cache_5, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, evict_S, , Accumulator, 0, 0, 308, 308, 308 +l1cache_5, evict_E, , Accumulator, 0, 0, 1462, 1462, 1462 +l1cache_5, evict_M, , Accumulator, 0, 0, 49, 49, 49 +l1cache_5, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_GetS_I, , Accumulator, 0, 0, 2324, 2324, 2324 +l1cache_5, stateEvent_GetS_S, , Accumulator, 0, 0, 3193, 3193, 3193 +l1cache_5, stateEvent_GetS_E, , Accumulator, 0, 0, 6736, 6736, 6736 +l1cache_5, stateEvent_GetS_M, , Accumulator, 0, 0, 2066, 2066, 2066 +l1cache_5, stateEvent_GetX_I, , Accumulator, 0, 0, 55, 55, 55 +l1cache_5, stateEvent_GetX_S, , Accumulator, 0, 0, 44, 44, 44 +l1cache_5, stateEvent_GetX_E, , Accumulator, 0, 0, 2, 2, 2 +l1cache_5, stateEvent_GetX_M, , Accumulator, 0, 0, 4837, 4837, 4837 +l1cache_5, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2321, 2321, 2321 +l1cache_5, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 61, 61, 61 +l1cache_5, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 38, 38, 38 +l1cache_5, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Inv_S, , Accumulator, 0, 0, 42, 42, 42 +l1cache_5, stateEvent_Inv_SM, , Accumulator, 0, 0, 6, 6, 6 +l1cache_5, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_M, , Accumulator, 0, 0, 7, 7, 7 +l1cache_5, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 55, 55, 55 +l1cache_5, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 +l1cache_5, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, latency_GetS_IS, , Accumulator, 0, 0, 735893, 269217665, 2321 +l1cache_5, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, latency_GetX_IM, , Accumulator, 0, 0, 19851, 7414153, 55 +l1cache_5, latency_GetX_SM, , Accumulator, 0, 0, 6295, 1023751, 44 +l1cache_5, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, eventSent_GetS, , Accumulator, 0, 0, 2324, 2324, 2324 +l1cache_5, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 +l1cache_5, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, eventSent_GetSResp, , Accumulator, 0, 0, 14316, 14316, 14316 +l1cache_5, eventSent_GetXResp, , Accumulator, 0, 0, 4938, 4938, 4938 +l1cache_5, eventSent_PutS, , Accumulator, 0, 0, 308, 308, 308 +l1cache_5, eventSent_PutE, , Accumulator, 0, 0, 1462, 1462, 1462 +l1cache_5, eventSent_PutM, , Accumulator, 0, 0, 49, 49, 49 +l1cache_5, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, eventSent_FetchResp, , Accumulator, 0, 0, 7, 7, 7 +l1cache_5, eventSent_FetchXResp, , Accumulator, 0, 0, 94, 94, 94 +l1cache_5, eventSent_AckInv, , Accumulator, 0, 0, 48, 48, 48 +l1cache_5, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l1cache_5, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, packet_latency, , Accumulator, 0, 0, 7728, 28454, 2506 +l2cache_5, send_bit_count, , Accumulator, 0, 0, 219072, 47345664, 2519 +l2cache_5, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, idle_time, , Accumulator, 0, 0, 17406359247, 6325692543154193033, 2407 +l2cache_5, TotalEventsReceived, , Accumulator, 0, 0, 6897, 6897, 6897 +l2cache_5, TotalEventsReplayed, , Accumulator, 0, 0, 6, 6, 6 +l2cache_5, CacheHits, , Accumulator, 0, 0, 75, 75, 75 +l2cache_5, GetSHit_Arrival, , Accumulator, 0, 0, 75, 75, 75 +l2cache_5, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, CacheMisses, , Accumulator, 0, 0, 2348, 2348, 2348 +l2cache_5, GetSMiss_Arrival, , Accumulator, 0, 0, 2249, 2249, 2249 +l2cache_5, GetXMiss_Arrival, , Accumulator, 0, 0, 98, 98, 98 +l2cache_5, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, GetXMiss_Blocked, , Accumulator, 0, 0, 1, 1, 1 +l2cache_5, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, GetS_recv, , Accumulator, 0, 0, 2324, 2324, 2324 +l2cache_5, GetX_recv, , Accumulator, 0, 0, 99, 99, 99 +l2cache_5, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, GetSResp_recv, , Accumulator, 0, 0, 2246, 2246, 2246 +l2cache_5, GetXResp_recv, , Accumulator, 0, 0, 99, 99, 99 +l2cache_5, PutS_recv, , Accumulator, 0, 0, 308, 308, 308 +l2cache_5, PutM_recv, , Accumulator, 0, 0, 49, 49, 49 +l2cache_5, PutE_recv, , Accumulator, 0, 0, 1462, 1462, 1462 +l2cache_5, FetchInv_recv, , Accumulator, 0, 0, 7, 7, 7 +l2cache_5, FetchInvX_recv, , Accumulator, 0, 0, 106, 106, 106 +l2cache_5, Inv_recv, , Accumulator, 0, 0, 48, 48, 48 +l2cache_5, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, MSHR_occupancy, , Accumulator, 0, 0, 746143, 3043095, 46430926 +l2cache_5, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_S, , Accumulator, 0, 0, 7, 7, 7 +l2cache_5, evict_E, , Accumulator, 0, 0, 4, 4, 4 +l2cache_5, evict_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetS_I, , Accumulator, 0, 0, 2249, 2249, 2249 +l2cache_5, stateEvent_GetS_S, , Accumulator, 0, 0, 72, 72, 72 +l2cache_5, stateEvent_GetS_E, , Accumulator, 0, 0, 3, 3, 3 +l2cache_5, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetX_I, , Accumulator, 0, 0, 56, 56, 56 +l2cache_5, stateEvent_GetX_S, , Accumulator, 0, 0, 43, 43, 43 +l2cache_5, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2246, 2246, 2246 +l2cache_5, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 61, 61, 61 +l2cache_5, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 38, 38, 38 +l2cache_5, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_S, , Accumulator, 0, 0, 308, 308, 308 +l2cache_5, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutE_E, , Accumulator, 0, 0, 1462, 1462, 1462 +l2cache_5, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutM_E, , Accumulator, 0, 0, 2, 2, 2 +l2cache_5, stateEvent_PutM_M, , Accumulator, 0, 0, 47, 47, 47 +l2cache_5, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Inv_S, , Accumulator, 0, 0, 43, 43, 43 +l2cache_5, stateEvent_Inv_SM, , Accumulator, 0, 0, 5, 5, 5 +l2cache_5, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_M, , Accumulator, 0, 0, 7, 7, 7 +l2cache_5, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 67, 67, 67 +l2cache_5, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 +l2cache_5, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 7, 7, 7 +l2cache_5, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 55, 55, 55 +l2cache_5, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 39, 39, 39 +l2cache_5, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 43, 43, 43 +l2cache_5, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 5, 5, 5 +l2cache_5, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, latency_GetS_IS, , Accumulator, 0, 0, 721667, 260469305, 2246 +l2cache_5, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, latency_GetX_IM, , Accumulator, 0, 0, 19597, 7183697, 56 +l2cache_5, latency_GetX_SM, , Accumulator, 0, 0, 3364, 274922, 43 +l2cache_5, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, eventSent_GetS, , Accumulator, 0, 0, 2248, 2248, 2248 +l2cache_5, eventSent_GetX, , Accumulator, 0, 0, 99, 99, 99 +l2cache_5, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, eventSent_GetSResp, , Accumulator, 0, 0, 2321, 2321, 2321 +l2cache_5, eventSent_GetXResp, , Accumulator, 0, 0, 99, 99, 99 +l2cache_5, eventSent_PutS, , Accumulator, 0, 0, 7, 7, 7 +l2cache_5, eventSent_PutE, , Accumulator, 0, 0, 4, 4, 4 +l2cache_5, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, eventSent_Inv, , Accumulator, 0, 0, 48, 48, 48 +l2cache_5, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, eventSent_FetchInv, , Accumulator, 0, 0, 7, 7, 7 +l2cache_5, eventSent_FetchInvX, , Accumulator, 0, 0, 94, 94, 94 +l2cache_5, eventSent_FetchResp, , Accumulator, 0, 0, 7, 7, 7 +l2cache_5, eventSent_FetchXResp, , Accumulator, 0, 0, 106, 106, 106 +l2cache_5, eventSent_AckInv, , Accumulator, 0, 0, 48, 48, 48 +l2cache_5, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l2cache_5, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +memory_2, requests_received_GetS, , Accumulator, 0, 0, 3884, 3884, 3884 +memory_2, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +memory_2, requests_received_GetX, , Accumulator, 0, 0, 108, 108, 108 +memory_2, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +memory_2, outstanding_requests, , Accumulator, 0, 0, 84411, 441191, 3491605 +memory_2, latency_GetS, , Accumulator, 0, 0, 410300, 43416650, 3879 +memory_2, latency_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +memory_2, latency_GetX, , Accumulator, 0, 0, 11400, 1203850, 108 +memory_2, latency_PutM, , Accumulator, 0, 0, 0, 0, 0 +memory_2, cycles_with_issue, , Accumulator, 0, 0, 3992, 3992, 3992 +memory_2, cycles_attempted_issue_but_rejected, , Accumulator, 0, 0, 0, 0, 0 +memory_2, total_cycles, , Accumulator, 0, 0, 3491605, 3491605, 3491605 +dc_2, packet_latency, , Accumulator, 0, 0, 12535, 53693, 3993 +dc_2, send_bit_count, , Accumulator, 0, 0, 2296512, 1322790912, 3987 +dc_2, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +dc_2, idle_time, , Accumulator, 0, 0, 17407088489, 6010509898449604091, 3992 +dc_2, replacement_request_latency, , Accumulator, 0, 0, 0, 0, 0 +dc_2, get_request_latency, , Accumulator, 0, 0, 453370, 51576254, 3987 +dc_2, directory_cache_hits, , Accumulator, 0, 0, 3992, 3992, 3992 +dc_2, mshr_hits, , Accumulator, 0, 0, 0, 0, 0 +dc_2, requests_received_GetX, , Accumulator, 0, 0, 108, 108, 108 +dc_2, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +dc_2, requests_received_GetS, , Accumulator, 0, 0, 3884, 3884, 3884 +dc_2, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +dc_2, requests_received_PutE, , Accumulator, 0, 0, 0, 0, 0 +dc_2, requests_received_PutS, , Accumulator, 0, 0, 0, 0, 0 +dc_2, responses_received_NACK, , Accumulator, 0, 0, 0, 0, 0 +dc_2, responses_received_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +dc_2, responses_received_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +dc_2, responses_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +dc_2, responses_received_PutE, , Accumulator, 0, 0, 0, 0, 0 +dc_2, responses_received_PutS, , Accumulator, 0, 0, 0, 0, 0 +dc_2, memory_requests_data_read, , Accumulator, 0, 0, 3992, 3992, 3992 +dc_2, memory_requests_data_write, , Accumulator, 0, 0, 0, 0, 0 +dc_2, memory_requests_directory_entry_read, , Accumulator, 0, 0, 0, 0, 0 +dc_2, memory_requests_directory_entry_write, , Accumulator, 0, 0, 0, 0, 0 +dc_2, requests_sent_Inv, , Accumulator, 0, 0, 0, 0, 0 +dc_2, requests_sent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +dc_2, requests_sent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +dc_2, responses_sent_NACK, , Accumulator, 0, 0, 0, 0, 0 +dc_2, responses_sent_GetSResp, , Accumulator, 0, 0, 3879, 3879, 3879 +dc_2, responses_sent_GetXResp, , Accumulator, 0, 0, 108, 108, 108 +dc_2, MSHR_occupancy, , Accumulator, 0, 0, 88403, 480181, 3491605 +l3cache_6, packet_latency, , Accumulator, 0, 0, 9831, 31545, 4434 +l3cache_6, send_bit_count, , Accumulator, 0, 0, 1455360, 769081344, 4404 +l3cache_6, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, idle_time, , Accumulator, 0, 0, 17445908505, 6010321813644169345, 4375 +l3cache_6, TotalEventsReceived, , Accumulator, 0, 0, 4434, 4434, 4434 +l3cache_6, TotalEventsReplayed, , Accumulator, 0, 0, 42, 42, 42 +l3cache_6, CacheHits, , Accumulator, 0, 0, 190, 190, 190 +l3cache_6, GetSHit_Arrival, , Accumulator, 0, 0, 161, 161, 161 +l3cache_6, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, GetSHit_Blocked, , Accumulator, 0, 0, 29, 29, 29 +l3cache_6, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, CacheMisses, , Accumulator, 0, 0, 2107, 2107, 2107 +l3cache_6, GetSMiss_Arrival, , Accumulator, 0, 0, 2042, 2042, 2042 +l3cache_6, GetXMiss_Arrival, , Accumulator, 0, 0, 52, 52, 52 +l3cache_6, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, GetSMiss_Blocked, , Accumulator, 0, 0, 8, 8, 8 +l3cache_6, GetXMiss_Blocked, , Accumulator, 0, 0, 5, 5, 5 +l3cache_6, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, GetS_recv, , Accumulator, 0, 0, 2240, 2240, 2240 +l3cache_6, GetX_recv, , Accumulator, 0, 0, 57, 57, 57 +l3cache_6, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, GetSResp_recv, , Accumulator, 0, 0, 1949, 1949, 1949 +l3cache_6, GetXResp_recv, , Accumulator, 0, 0, 51, 51, 51 +l3cache_6, PutS_recv, , Accumulator, 0, 0, 6, 6, 6 +l3cache_6, PutM_recv, , Accumulator, 0, 0, 5, 5, 5 +l3cache_6, PutE_recv, , Accumulator, 0, 0, 19, 19, 19 +l3cache_6, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, MSHR_occupancy, , Accumulator, 0, 0, 676190, 2415236, 46430925 +l3cache_6, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetS_I, , Accumulator, 0, 0, 1954, 1954, 1954 +l3cache_6, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetS_E, , Accumulator, 0, 0, 274, 274, 274 +l3cache_6, stateEvent_GetS_M, , Accumulator, 0, 0, 12, 12, 12 +l3cache_6, stateEvent_GetX_I, , Accumulator, 0, 0, 51, 51, 51 +l3cache_6, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetX_M, , Accumulator, 0, 0, 6, 6, 6 +l3cache_6, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1949, 1949, 1949 +l3cache_6, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 51, 51, 51 +l3cache_6, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_E, , Accumulator, 0, 0, 6, 6, 6 +l3cache_6, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutE_E, , Accumulator, 0, 0, 19, 19, 19 +l3cache_6, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutM_M, , Accumulator, 0, 0, 5, 5, 5 +l3cache_6, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 5, 5, 5 +l3cache_6, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 95, 95, 95 +l3cache_6, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 1, 1, 1 +l3cache_6, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 6, 6, 6 +l3cache_6, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, latency_GetS_IS, , Accumulator, 0, 0, 648628, 215934392, 1949 +l3cache_6, latency_GetS_M, , Accumulator, 0, 0, 5636, 803258, 96 +l3cache_6, latency_GetX_IM, , Accumulator, 0, 0, 17012, 5677860, 51 +l3cache_6, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, latency_GetX_M, , Accumulator, 0, 0, 646, 80388, 6 +l3cache_6, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, latency_GetSEx_M, , Accumulator, 0, 0, 5636, 803258, 96 +l3cache_6, eventSent_GetS, , Accumulator, 0, 0, 1954, 1954, 1954 +l3cache_6, eventSent_GetX, , Accumulator, 0, 0, 51, 51, 51 +l3cache_6, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, eventSent_GetSResp, , Accumulator, 0, 0, 2235, 2235, 2235 +l3cache_6, eventSent_GetXResp, , Accumulator, 0, 0, 57, 57, 57 +l3cache_6, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, eventSent_Inv, , Accumulator, 0, 0, 6, 6, 6 +l3cache_6, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, eventSent_FetchInv, , Accumulator, 0, 0, 5, 5, 5 +l3cache_6, eventSent_FetchInvX, , Accumulator, 0, 0, 96, 96, 96 +l3cache_6, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l3cache_6, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, TotalEventsReceived, , Accumulator, 0, 0, 21930, 21930, 21930 +l1cache_6, TotalEventsReplayed, , Accumulator, 0, 0, 6566, 6566, 6566 +l1cache_6, CacheHits, , Accumulator, 0, 0, 16905, 16905, 16905 +l1cache_6, GetSHit_Arrival, , Accumulator, 0, 0, 5800, 5800, 5800 +l1cache_6, GetXHit_Arrival, , Accumulator, 0, 0, 4594, 4594, 4594 +l1cache_6, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, GetSHit_Blocked, , Accumulator, 0, 0, 6220, 6220, 6220 +l1cache_6, GetXHit_Blocked, , Accumulator, 0, 0, 291, 291, 291 +l1cache_6, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, CacheMisses, , Accumulator, 0, 0, 2453, 2453, 2453 +l1cache_6, GetSMiss_Arrival, , Accumulator, 0, 0, 2350, 2350, 2350 +l1cache_6, GetXMiss_Arrival, , Accumulator, 0, 0, 56, 56, 56 +l1cache_6, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, GetXMiss_Blocked, , Accumulator, 0, 0, 47, 47, 47 +l1cache_6, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, GetS_recv, , Accumulator, 0, 0, 14373, 14373, 14373 +l1cache_6, GetX_recv, , Accumulator, 0, 0, 4988, 4988, 4988 +l1cache_6, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, GetSResp_recv, , Accumulator, 0, 0, 2342, 2342, 2342 +l1cache_6, GetXResp_recv, , Accumulator, 0, 0, 103, 103, 103 +l1cache_6, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, FetchInv_recv, , Accumulator, 0, 0, 14, 14, 14 +l1cache_6, FetchInvX_recv, , Accumulator, 0, 0, 65, 65, 65 +l1cache_6, Inv_recv, , Accumulator, 0, 0, 45, 45, 45 +l1cache_6, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, MSHR_occupancy, , Accumulator, 0, 0, 2742250, 35873166, 46430903 +l1cache_6, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, evict_S, , Accumulator, 0, 0, 311, 311, 311 +l1cache_6, evict_E, , Accumulator, 0, 0, 1482, 1482, 1482 +l1cache_6, evict_M, , Accumulator, 0, 0, 50, 50, 50 +l1cache_6, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_GetS_I, , Accumulator, 0, 0, 2350, 2350, 2350 +l1cache_6, stateEvent_GetS_S, , Accumulator, 0, 0, 3371, 3371, 3371 +l1cache_6, stateEvent_GetS_E, , Accumulator, 0, 0, 6494, 6494, 6494 +l1cache_6, stateEvent_GetS_M, , Accumulator, 0, 0, 2155, 2155, 2155 +l1cache_6, stateEvent_GetX_I, , Accumulator, 0, 0, 55, 55, 55 +l1cache_6, stateEvent_GetX_S, , Accumulator, 0, 0, 48, 48, 48 +l1cache_6, stateEvent_GetX_E, , Accumulator, 0, 0, 2, 2, 2 +l1cache_6, stateEvent_GetX_M, , Accumulator, 0, 0, 4883, 4883, 4883 +l1cache_6, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2342, 2342, 2342 +l1cache_6, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 63, 63, 63 +l1cache_6, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 40, 40, 40 +l1cache_6, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Inv_S, , Accumulator, 0, 0, 37, 37, 37 +l1cache_6, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 +l1cache_6, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_M, , Accumulator, 0, 0, 14, 14, 14 +l1cache_6, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 30, 30, 30 +l1cache_6, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 35, 35, 35 +l1cache_6, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, latency_GetS_IS, , Accumulator, 0, 0, 729184, 266230174, 2342 +l1cache_6, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, latency_GetX_IM, , Accumulator, 0, 0, 19839, 7414759, 55 +l1cache_6, latency_GetX_SM, , Accumulator, 0, 0, 7495, 1280731, 48 +l1cache_6, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, eventSent_GetS, , Accumulator, 0, 0, 2350, 2350, 2350 +l1cache_6, eventSent_GetX, , Accumulator, 0, 0, 103, 103, 103 +l1cache_6, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, eventSent_GetSResp, , Accumulator, 0, 0, 14362, 14362, 14362 +l1cache_6, eventSent_GetXResp, , Accumulator, 0, 0, 4988, 4988, 4988 +l1cache_6, eventSent_PutS, , Accumulator, 0, 0, 311, 311, 311 +l1cache_6, eventSent_PutE, , Accumulator, 0, 0, 1482, 1482, 1482 +l1cache_6, eventSent_PutM, , Accumulator, 0, 0, 50, 50, 50 +l1cache_6, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, eventSent_FetchResp, , Accumulator, 0, 0, 14, 14, 14 +l1cache_6, eventSent_FetchXResp, , Accumulator, 0, 0, 65, 65, 65 +l1cache_6, eventSent_AckInv, , Accumulator, 0, 0, 45, 45, 45 +l1cache_6, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l1cache_6, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, packet_latency, , Accumulator, 0, 0, 8095, 31475, 2516 +l2cache_6, send_bit_count, , Accumulator, 0, 0, 220288, 46538752, 2562 +l2cache_6, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, idle_time, , Accumulator, 0, 0, 17406334224, 6325692593053012412, 2404 +l2cache_6, TotalEventsReceived, , Accumulator, 0, 0, 6936, 6936, 6936 +l2cache_6, TotalEventsReplayed, , Accumulator, 0, 0, 8, 8, 8 +l2cache_6, CacheHits, , Accumulator, 0, 0, 80, 80, 80 +l2cache_6, GetSHit_Arrival, , Accumulator, 0, 0, 80, 80, 80 +l2cache_6, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, CacheMisses, , Accumulator, 0, 0, 2373, 2373, 2373 +l2cache_6, GetSMiss_Arrival, , Accumulator, 0, 0, 2270, 2270, 2270 +l2cache_6, GetXMiss_Arrival, , Accumulator, 0, 0, 103, 103, 103 +l2cache_6, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, GetXMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, GetS_recv, , Accumulator, 0, 0, 2350, 2350, 2350 +l2cache_6, GetX_recv, , Accumulator, 0, 0, 103, 103, 103 +l2cache_6, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, GetSResp_recv, , Accumulator, 0, 0, 2262, 2262, 2262 +l2cache_6, GetXResp_recv, , Accumulator, 0, 0, 103, 103, 103 +l2cache_6, PutS_recv, , Accumulator, 0, 0, 311, 311, 311 +l2cache_6, PutM_recv, , Accumulator, 0, 0, 50, 50, 50 +l2cache_6, PutE_recv, , Accumulator, 0, 0, 1482, 1482, 1482 +l2cache_6, FetchInv_recv, , Accumulator, 0, 0, 14, 14, 14 +l2cache_6, FetchInvX_recv, , Accumulator, 0, 0, 92, 92, 92 +l2cache_6, Inv_recv, , Accumulator, 0, 0, 45, 45, 45 +l2cache_6, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, MSHR_occupancy, , Accumulator, 0, 0, 741246, 3100354, 46430910 +l2cache_6, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, evict_S, , Accumulator, 0, 0, 13, 13, 13 +l2cache_6, evict_E, , Accumulator, 0, 0, 21, 21, 21 +l2cache_6, evict_M, , Accumulator, 0, 0, 4, 4, 4 +l2cache_6, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetS_I, , Accumulator, 0, 0, 2270, 2270, 2270 +l2cache_6, stateEvent_GetS_S, , Accumulator, 0, 0, 74, 74, 74 +l2cache_6, stateEvent_GetS_E, , Accumulator, 0, 0, 6, 6, 6 +l2cache_6, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetX_I, , Accumulator, 0, 0, 55, 55, 55 +l2cache_6, stateEvent_GetX_S, , Accumulator, 0, 0, 48, 48, 48 +l2cache_6, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2262, 2262, 2262 +l2cache_6, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 63, 63, 63 +l2cache_6, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 40, 40, 40 +l2cache_6, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_S, , Accumulator, 0, 0, 311, 311, 311 +l2cache_6, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutE_E, , Accumulator, 0, 0, 1482, 1482, 1482 +l2cache_6, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutM_E, , Accumulator, 0, 0, 2, 2, 2 +l2cache_6, stateEvent_PutM_M, , Accumulator, 0, 0, 48, 48, 48 +l2cache_6, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Inv_S, , Accumulator, 0, 0, 37, 37, 37 +l2cache_6, stateEvent_Inv_SM, , Accumulator, 0, 0, 8, 8, 8 +l2cache_6, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_M, , Accumulator, 0, 0, 14, 14, 14 +l2cache_6, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 57, 57, 57 +l2cache_6, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 35, 35, 35 +l2cache_6, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 14, 14, 14 +l2cache_6, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 30, 30, 30 +l2cache_6, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 35, 35, 35 +l2cache_6, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 37, 37, 37 +l2cache_6, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 8, 8, 8 +l2cache_6, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, latency_GetS_IS, , Accumulator, 0, 0, 714812, 257562998, 2262 +l2cache_6, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, latency_GetX_IM, , Accumulator, 0, 0, 19509, 7178671, 55 +l2cache_6, latency_GetX_SM, , Accumulator, 0, 0, 3985, 337755, 48 +l2cache_6, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, eventSent_GetS, , Accumulator, 0, 0, 2270, 2270, 2270 +l2cache_6, eventSent_GetX, , Accumulator, 0, 0, 103, 103, 103 +l2cache_6, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, eventSent_GetSResp, , Accumulator, 0, 0, 2342, 2342, 2342 +l2cache_6, eventSent_GetXResp, , Accumulator, 0, 0, 103, 103, 103 +l2cache_6, eventSent_PutS, , Accumulator, 0, 0, 13, 13, 13 +l2cache_6, eventSent_PutE, , Accumulator, 0, 0, 21, 21, 21 +l2cache_6, eventSent_PutM, , Accumulator, 0, 0, 4, 4, 4 +l2cache_6, eventSent_Inv, , Accumulator, 0, 0, 45, 45, 45 +l2cache_6, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, eventSent_FetchInv, , Accumulator, 0, 0, 14, 14, 14 +l2cache_6, eventSent_FetchInvX, , Accumulator, 0, 0, 65, 65, 65 +l2cache_6, eventSent_FetchResp, , Accumulator, 0, 0, 14, 14, 14 +l2cache_6, eventSent_FetchXResp, , Accumulator, 0, 0, 92, 92, 92 +l2cache_6, eventSent_AckInv, , Accumulator, 0, 0, 45, 45, 45 +l2cache_6, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l2cache_6, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, packet_latency, , Accumulator, 0, 0, 9854, 31494, 4450 +l3cache_7, send_bit_count, , Accumulator, 0, 0, 1460416, 772059136, 4411 +l3cache_7, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, idle_time, , Accumulator, 0, 0, 17445956502, 6018053818393881184, 4344 +l3cache_7, TotalEventsReceived, , Accumulator, 0, 0, 4450, 4450, 4450 +l3cache_7, TotalEventsReplayed, , Accumulator, 0, 0, 42, 42, 42 +l3cache_7, CacheHits, , Accumulator, 0, 0, 198, 198, 198 +l3cache_7, GetSHit_Arrival, , Accumulator, 0, 0, 171, 171, 171 +l3cache_7, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, GetSHit_Blocked, , Accumulator, 0, 0, 27, 27, 27 +l3cache_7, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, CacheMisses, , Accumulator, 0, 0, 2106, 2106, 2106 +l3cache_7, GetSMiss_Arrival, , Accumulator, 0, 0, 2036, 2036, 2036 +l3cache_7, GetXMiss_Arrival, , Accumulator, 0, 0, 55, 55, 55 +l3cache_7, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, GetSMiss_Blocked, , Accumulator, 0, 0, 10, 10, 10 +l3cache_7, GetXMiss_Blocked, , Accumulator, 0, 0, 5, 5, 5 +l3cache_7, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, GetS_recv, , Accumulator, 0, 0, 2244, 2244, 2244 +l3cache_7, GetX_recv, , Accumulator, 0, 0, 60, 60, 60 +l3cache_7, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, GetSResp_recv, , Accumulator, 0, 0, 1931, 1931, 1931 +l3cache_7, GetXResp_recv, , Accumulator, 0, 0, 53, 53, 53 +l3cache_7, PutS_recv, , Accumulator, 0, 0, 12, 12, 12 +l3cache_7, PutM_recv, , Accumulator, 0, 0, 4, 4, 4 +l3cache_7, PutE_recv, , Accumulator, 0, 0, 23, 23, 23 +l3cache_7, FetchInv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, FetchInvX_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, Inv_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, MSHR_occupancy, , Accumulator, 0, 0, 675490, 2414444, 46430925 +l3cache_7, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetS_I, , Accumulator, 0, 0, 1934, 1934, 1934 +l3cache_7, stateEvent_GetS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetS_E, , Accumulator, 0, 0, 299, 299, 299 +l3cache_7, stateEvent_GetS_M, , Accumulator, 0, 0, 11, 11, 11 +l3cache_7, stateEvent_GetX_I, , Accumulator, 0, 0, 53, 53, 53 +l3cache_7, stateEvent_GetX_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetX_E, , Accumulator, 0, 0, 1, 1, 1 +l3cache_7, stateEvent_GetX_M, , Accumulator, 0, 0, 6, 6, 6 +l3cache_7, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 1931, 1931, 1931 +l3cache_7, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 53, 53, 53 +l3cache_7, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_E, , Accumulator, 0, 0, 12, 12, 12 +l3cache_7, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutE_E, , Accumulator, 0, 0, 23, 23, 23 +l3cache_7, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutM_E, , Accumulator, 0, 0, 1, 1, 1 +l3cache_7, stateEvent_PutM_M, , Accumulator, 0, 0, 3, 3, 3 +l3cache_7, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Inv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Inv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 3, 3, 3 +l3cache_7, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 108, 108, 108 +l3cache_7, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 4, 4, 4 +l3cache_7, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 8, 8, 8 +l3cache_7, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, latency_GetS_IS, , Accumulator, 0, 0, 647938, 217495450, 1931 +l3cache_7, latency_GetS_M, , Accumulator, 0, 0, 6068, 734304, 112 +l3cache_7, latency_GetX_IM, , Accumulator, 0, 0, 17862, 6027798, 53 +l3cache_7, latency_GetX_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, latency_GetX_M, , Accumulator, 0, 0, 682, 74934, 7 +l3cache_7, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, latency_GetSEx_M, , Accumulator, 0, 0, 6068, 734304, 112 +l3cache_7, eventSent_GetS, , Accumulator, 0, 0, 1934, 1934, 1934 +l3cache_7, eventSent_GetX, , Accumulator, 0, 0, 53, 53, 53 +l3cache_7, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, eventSent_GetSResp, , Accumulator, 0, 0, 2241, 2241, 2241 +l3cache_7, eventSent_GetXResp, , Accumulator, 0, 0, 60, 60, 60 +l3cache_7, eventSent_PutS, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, eventSent_PutE, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, eventSent_PutM, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, eventSent_Inv, , Accumulator, 0, 0, 8, 8, 8 +l3cache_7, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, eventSent_FetchInv, , Accumulator, 0, 0, 3, 3, 3 +l3cache_7, eventSent_FetchInvX, , Accumulator, 0, 0, 112, 112, 112 +l3cache_7, eventSent_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, eventSent_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, eventSent_AckInv, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l3cache_7, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, TotalEventsReceived, , Accumulator, 0, 0, 21993, 21993, 21993 +l1cache_7, TotalEventsReplayed, , Accumulator, 0, 0, 6680, 6680, 6680 +l1cache_7, CacheHits, , Accumulator, 0, 0, 17036, 17036, 17036 +l1cache_7, GetSHit_Arrival, , Accumulator, 0, 0, 5794, 5794, 5794 +l1cache_7, GetXHit_Arrival, , Accumulator, 0, 0, 4619, 4619, 4619 +l1cache_7, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, GetSHit_Blocked, , Accumulator, 0, 0, 6323, 6323, 6323 +l1cache_7, GetXHit_Blocked, , Accumulator, 0, 0, 300, 300, 300 +l1cache_7, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, CacheMisses, , Accumulator, 0, 0, 2406, 2406, 2406 +l1cache_7, GetSMiss_Arrival, , Accumulator, 0, 0, 2305, 2305, 2305 +l1cache_7, GetXMiss_Arrival, , Accumulator, 0, 0, 56, 56, 56 +l1cache_7, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, GetXMiss_Blocked, , Accumulator, 0, 0, 45, 45, 45 +l1cache_7, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, GetS_recv, , Accumulator, 0, 0, 14433, 14433, 14433 +l1cache_7, GetX_recv, , Accumulator, 0, 0, 5020, 5020, 5020 +l1cache_7, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, GetSResp_recv, , Accumulator, 0, 0, 2302, 2302, 2302 +l1cache_7, GetXResp_recv, , Accumulator, 0, 0, 101, 101, 101 +l1cache_7, PutS_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, PutM_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, PutE_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, FetchInv_recv, , Accumulator, 0, 0, 10, 10, 10 +l1cache_7, FetchInvX_recv, , Accumulator, 0, 0, 74, 74, 74 +l1cache_7, Inv_recv, , Accumulator, 0, 0, 53, 53, 53 +l1cache_7, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, MSHR_occupancy, , Accumulator, 0, 0, 2764584, 36149280, 46430890 +l1cache_7, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, evict_S, , Accumulator, 0, 0, 325, 325, 325 +l1cache_7, evict_E, , Accumulator, 0, 0, 1421, 1421, 1421 +l1cache_7, evict_M, , Accumulator, 0, 0, 50, 50, 50 +l1cache_7, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_GetS_I, , Accumulator, 0, 0, 2305, 2305, 2305 +l1cache_7, stateEvent_GetS_S, , Accumulator, 0, 0, 3582, 3582, 3582 +l1cache_7, stateEvent_GetS_E, , Accumulator, 0, 0, 6473, 6473, 6473 +l1cache_7, stateEvent_GetS_M, , Accumulator, 0, 0, 2062, 2062, 2062 +l1cache_7, stateEvent_GetX_I, , Accumulator, 0, 0, 54, 54, 54 +l1cache_7, stateEvent_GetX_S, , Accumulator, 0, 0, 47, 47, 47 +l1cache_7, stateEvent_GetX_E, , Accumulator, 0, 0, 4, 4, 4 +l1cache_7, stateEvent_GetX_M, , Accumulator, 0, 0, 4915, 4915, 4915 +l1cache_7, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2302, 2302, 2302 +l1cache_7, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 66, 66, 66 +l1cache_7, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 35, 35, 35 +l1cache_7, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutE_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutM_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutM_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Inv_S, , Accumulator, 0, 0, 41, 41, 41 +l1cache_7, stateEvent_Inv_SM, , Accumulator, 0, 0, 12, 12, 12 +l1cache_7, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_M, , Accumulator, 0, 0, 10, 10, 10 +l1cache_7, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 35, 35, 35 +l1cache_7, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 +l1cache_7, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, latency_GetS_IS, , Accumulator, 0, 0, 723435, 264946419, 2302 +l1cache_7, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, latency_GetX_IM, , Accumulator, 0, 0, 19189, 7088063, 54 +l1cache_7, latency_GetX_SM, , Accumulator, 0, 0, 7576, 1371048, 47 +l1cache_7, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, eventSent_GetS, , Accumulator, 0, 0, 2305, 2305, 2305 +l1cache_7, eventSent_GetX, , Accumulator, 0, 0, 101, 101, 101 +l1cache_7, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, eventSent_GetSResp, , Accumulator, 0, 0, 14419, 14419, 14419 +l1cache_7, eventSent_GetXResp, , Accumulator, 0, 0, 5020, 5020, 5020 +l1cache_7, eventSent_PutS, , Accumulator, 0, 0, 325, 325, 325 +l1cache_7, eventSent_PutE, , Accumulator, 0, 0, 1421, 1421, 1421 +l1cache_7, eventSent_PutM, , Accumulator, 0, 0, 50, 50, 50 +l1cache_7, eventSent_Inv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, eventSent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, eventSent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, eventSent_FetchResp, , Accumulator, 0, 0, 10, 10, 10 +l1cache_7, eventSent_FetchXResp, , Accumulator, 0, 0, 74, 74, 74 +l1cache_7, eventSent_AckInv, , Accumulator, 0, 0, 53, 53, 53 +l1cache_7, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l1cache_7, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, packet_latency, , Accumulator, 0, 0, 8186, 31702, 2500 +l2cache_7, send_bit_count, , Accumulator, 0, 0, 223232, 49676288, 2528 +l2cache_7, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, idle_time, , Accumulator, 0, 0, 17406014860, 6325692522071821278, 2417 +l2cache_7, TotalEventsReceived, , Accumulator, 0, 0, 6839, 6839, 6839 +l2cache_7, TotalEventsReplayed, , Accumulator, 0, 0, 12, 12, 12 +l2cache_7, CacheHits, , Accumulator, 0, 0, 71, 71, 71 +l2cache_7, GetSHit_Arrival, , Accumulator, 0, 0, 71, 71, 71 +l2cache_7, GetXHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, GetSExHit_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, GetSHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, GetXHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, GetSExHit_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, CacheMisses, , Accumulator, 0, 0, 2335, 2335, 2335 +l2cache_7, GetSMiss_Arrival, , Accumulator, 0, 0, 2234, 2234, 2234 +l2cache_7, GetXMiss_Arrival, , Accumulator, 0, 0, 101, 101, 101 +l2cache_7, GetSExMiss_Arrival, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, GetSMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, GetXMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, GetSExMiss_Blocked, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, GetS_recv, , Accumulator, 0, 0, 2305, 2305, 2305 +l2cache_7, GetX_recv, , Accumulator, 0, 0, 101, 101, 101 +l2cache_7, GetSEx_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, GetSResp_recv, , Accumulator, 0, 0, 2231, 2231, 2231 +l2cache_7, GetXResp_recv, , Accumulator, 0, 0, 101, 101, 101 +l2cache_7, PutS_recv, , Accumulator, 0, 0, 325, 325, 325 +l2cache_7, PutM_recv, , Accumulator, 0, 0, 50, 50, 50 +l2cache_7, PutE_recv, , Accumulator, 0, 0, 1421, 1421, 1421 +l2cache_7, FetchInv_recv, , Accumulator, 0, 0, 10, 10, 10 +l2cache_7, FetchInvX_recv, , Accumulator, 0, 0, 105, 105, 105 +l2cache_7, Inv_recv, , Accumulator, 0, 0, 53, 53, 53 +l2cache_7, NACK_recv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, MSHR_occupancy, , Accumulator, 0, 0, 734005, 2996671, 46430854 +l2cache_7, evict_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, evict_S, , Accumulator, 0, 0, 11, 11, 11 +l2cache_7, evict_E, , Accumulator, 0, 0, 9, 9, 9 +l2cache_7, evict_M, , Accumulator, 0, 0, 5, 5, 5 +l2cache_7, evict_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, evict_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, evict_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, evict_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, evict_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, evict_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, evict_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, evict_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, evict_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, evict_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetS_I, , Accumulator, 0, 0, 2234, 2234, 2234 +l2cache_7, stateEvent_GetS_S, , Accumulator, 0, 0, 69, 69, 69 +l2cache_7, stateEvent_GetS_E, , Accumulator, 0, 0, 2, 2, 2 +l2cache_7, stateEvent_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetX_I, , Accumulator, 0, 0, 54, 54, 54 +l2cache_7, stateEvent_GetX_S, , Accumulator, 0, 0, 47, 47, 47 +l2cache_7, stateEvent_GetX_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetSEx_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetSEx_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetSEx_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetSResp_IS, , Accumulator, 0, 0, 2231, 2231, 2231 +l2cache_7, stateEvent_GetSResp_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetSResp_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetSResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_GetXResp_IM, , Accumulator, 0, 0, 66, 66, 66 +l2cache_7, stateEvent_GetXResp_SM, , Accumulator, 0, 0, 35, 35, 35 +l2cache_7, stateEvent_GetXResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_S, , Accumulator, 0, 0, 325, 325, 325 +l2cache_7, stateEvent_PutS_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutS_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutE_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutE_E, , Accumulator, 0, 0, 1421, 1421, 1421 +l2cache_7, stateEvent_PutE_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutE_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutE_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutE_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutE_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutE_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutE_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutM_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutM_E, , Accumulator, 0, 0, 4, 4, 4 +l2cache_7, stateEvent_PutM_M, , Accumulator, 0, 0, 46, 46, 46 +l2cache_7, stateEvent_PutM_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutM_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutM_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutM_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutM_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_PutM_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Inv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Inv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Inv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Inv_S, , Accumulator, 0, 0, 41, 41, 41 +l2cache_7, stateEvent_Inv_SM, , Accumulator, 0, 0, 12, 12, 12 +l2cache_7, stateEvent_Inv_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Inv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Inv_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Inv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_E, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_M, , Accumulator, 0, 0, 10, 10, 10 +l2cache_7, stateEvent_FetchInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInv_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_E, , Accumulator, 0, 0, 66, 66, 66 +l2cache_7, stateEvent_FetchInvX_M, , Accumulator, 0, 0, 39, 39, 39 +l2cache_7, stateEvent_FetchInvX_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_EInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_MInvX, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchInvX_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Fetch_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Fetch_IS, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Fetch_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Fetch_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Fetch_S, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Fetch_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Fetch_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_Fetch_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_SInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_SMInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_MInv, , Accumulator, 0, 0, 10, 10, 10 +l2cache_7, stateEvent_FetchResp_SD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_SMD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_ED, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchResp_MD, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchXResp_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_FetchXResp_EInvX, , Accumulator, 0, 0, 35, 35, 35 +l2cache_7, stateEvent_FetchXResp_MInvX, , Accumulator, 0, 0, 39, 39, 39 +l2cache_7, stateEvent_AckInv_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_AckInv_SInv, , Accumulator, 0, 0, 41, 41, 41 +l2cache_7, stateEvent_AckInv_SMInv, , Accumulator, 0, 0, 12, 12, 12 +l2cache_7, stateEvent_AckInv_SI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_AckInv_EI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_AckInv_MI, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_AckInv_EInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_AckInv_MInv, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, stateEvent_AckPut_I, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, latency_GetS_IS, , Accumulator, 0, 0, 709339, 256346935, 2231 +l2cache_7, latency_GetS_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, latency_GetX_IM, , Accumulator, 0, 0, 18865, 6859739, 54 +l2cache_7, latency_GetX_SM, , Accumulator, 0, 0, 4117, 391949, 47 +l2cache_7, latency_GetX_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, latency_GetSEx_IM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, latency_GetSEx_SM, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, latency_GetSEx_M, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, eventSent_GetS, , Accumulator, 0, 0, 2234, 2234, 2234 +l2cache_7, eventSent_GetX, , Accumulator, 0, 0, 101, 101, 101 +l2cache_7, eventSent_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, eventSent_GetSResp, , Accumulator, 0, 0, 2302, 2302, 2302 +l2cache_7, eventSent_GetXResp, , Accumulator, 0, 0, 101, 101, 101 +l2cache_7, eventSent_PutS, , Accumulator, 0, 0, 11, 11, 11 +l2cache_7, eventSent_PutE, , Accumulator, 0, 0, 9, 9, 9 +l2cache_7, eventSent_PutM, , Accumulator, 0, 0, 5, 5, 5 +l2cache_7, eventSent_Inv, , Accumulator, 0, 0, 53, 53, 53 +l2cache_7, eventSent_Fetch, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, eventSent_FetchInv, , Accumulator, 0, 0, 10, 10, 10 +l2cache_7, eventSent_FetchInvX, , Accumulator, 0, 0, 74, 74, 74 +l2cache_7, eventSent_FetchResp, , Accumulator, 0, 0, 10, 10, 10 +l2cache_7, eventSent_FetchXResp, , Accumulator, 0, 0, 105, 105, 105 +l2cache_7, eventSent_AckInv, , Accumulator, 0, 0, 53, 53, 53 +l2cache_7, eventSent_AckPut, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, eventSent_NACK_up, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, eventSent_NACK_down, , Accumulator, 0, 0, 0, 0, 0 +l2cache_7, EventStalledForLockedCacheline, , Accumulator, 0, 0, 0, 0, 0 +memory_3, requests_received_GetS, , Accumulator, 0, 0, 3870, 3870, 3870 +memory_3, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +memory_3, requests_received_GetX, , Accumulator, 0, 0, 111, 111, 111 +memory_3, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +memory_3, outstanding_requests, , Accumulator, 0, 0, 84242, 441980, 3491605 +memory_3, latency_GetS, , Accumulator, 0, 0, 409070, 43316150, 3865 +memory_3, latency_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +memory_3, latency_GetX, , Accumulator, 0, 0, 11840, 1264500, 111 +memory_3, latency_PutM, , Accumulator, 0, 0, 0, 0, 0 +memory_3, cycles_with_issue, , Accumulator, 0, 0, 3981, 3981, 3981 +memory_3, cycles_attempted_issue_but_rejected, , Accumulator, 0, 0, 0, 0, 0 +memory_3, total_cycles, , Accumulator, 0, 0, 3491605, 3491605, 3491605 +dc_3, packet_latency, , Accumulator, 0, 0, 12471, 47983, 3981 +dc_3, send_bit_count, , Accumulator, 0, 0, 2290176, 1319141376, 3976 +dc_3, output_port_stalls, , Accumulator, 0, 0, 0, 0, 0 +dc_3, idle_time, , Accumulator, 0, 0, 18446744073658530871, 15652134759752061941, 3982 +dc_3, replacement_request_latency, , Accumulator, 0, 0, 0, 0, 0 +dc_3, get_request_latency, , Accumulator, 0, 0, 452523, 51529829, 3976 +dc_3, directory_cache_hits, , Accumulator, 0, 0, 3981, 3981, 3981 +dc_3, mshr_hits, , Accumulator, 0, 0, 0, 0, 0 +dc_3, requests_received_GetX, , Accumulator, 0, 0, 111, 111, 111 +dc_3, requests_received_GetSEx, , Accumulator, 0, 0, 0, 0, 0 +dc_3, requests_received_GetS, , Accumulator, 0, 0, 3870, 3870, 3870 +dc_3, requests_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +dc_3, requests_received_PutE, , Accumulator, 0, 0, 0, 0, 0 +dc_3, requests_received_PutS, , Accumulator, 0, 0, 0, 0, 0 +dc_3, responses_received_NACK, , Accumulator, 0, 0, 0, 0, 0 +dc_3, responses_received_FetchResp, , Accumulator, 0, 0, 0, 0, 0 +dc_3, responses_received_FetchXResp, , Accumulator, 0, 0, 0, 0, 0 +dc_3, responses_received_PutM, , Accumulator, 0, 0, 0, 0, 0 +dc_3, responses_received_PutE, , Accumulator, 0, 0, 0, 0, 0 +dc_3, responses_received_PutS, , Accumulator, 0, 0, 0, 0, 0 +dc_3, memory_requests_data_read, , Accumulator, 0, 0, 3981, 3981, 3981 +dc_3, memory_requests_data_write, , Accumulator, 0, 0, 0, 0, 0 +dc_3, memory_requests_directory_entry_read, , Accumulator, 0, 0, 0, 0, 0 +dc_3, memory_requests_directory_entry_write, , Accumulator, 0, 0, 0, 0, 0 +dc_3, requests_sent_Inv, , Accumulator, 0, 0, 0, 0, 0 +dc_3, requests_sent_FetchInv, , Accumulator, 0, 0, 0, 0, 0 +dc_3, requests_sent_FetchInvX, , Accumulator, 0, 0, 0, 0, 0 +dc_3, responses_sent_NACK, , Accumulator, 0, 0, 0, 0, 0 +dc_3, responses_sent_GetSResp, , Accumulator, 0, 0, 3865, 3865, 3865 +dc_3, responses_sent_GetXResp, , Accumulator, 0, 0, 111, 111, 111 +dc_3, MSHR_occupancy, , Accumulator, 0, 0, 88208, 481090, 3491602 diff --git a/src/sst/elements/Samba/tests/stencil3dbench.py b/src/sst/elements/Samba/tests/stencil3dbench.py new file mode 100644 index 0000000000..066cca44e5 --- /dev/null +++ b/src/sst/elements/Samba/tests/stencil3dbench.py @@ -0,0 +1,58 @@ +import sst + +# Define SST core options +#sst.setProgramOption("timebase", "1ps") +#sst.setProgramOption("stopAtCycle", "0 ns") + +# Define the simulation components +comp_cpu = sst.Component("cpu", "miranda.BaseCPU") +comp_cpu.addParams({ + "verbose" : 1, + "clock" : "2GHz", + "generator" : "miranda.Stencil3DBenchGenerator", + "generatorParams.verbose" : 1, + "generatorParams.nx" : 30, + "generatorParams.ny" : 20, + "generatorParams.nz" : 10, + "printStats" : 1, +}) + +# Tell SST what statistics handling we want +sst.setStatisticLoadLevel(4) + +# Enable statistics outputs +comp_cpu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) + +comp_l1cache = sst.Component("l1cache", "memHierarchy.Cache") +comp_l1cache.addParams({ + "access_latency_cycles" : "2", + "cache_frequency" : "2 GHz", + "replacement_policy" : "lru", + "coherence_protocol" : "MESI", + "associativity" : "4", + "cache_line_size" : "64", + "prefetcher" : "cassini.StridePrefetcher", + "debug" : "1", + "L1" : "1", + "cache_size" : "32KB" +}) + +# Enable statistics outputs +comp_l1cache.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) + +comp_memory = sst.Component("memory", "memHierarchy.MemController") +comp_memory.addParams({ + "coherence_protocol" : "MESI", + "backend.access_time" : "100 ns", + "backend.mem_size" : "4096MiB", + "clock" : "1GHz" +}) + + +# Define the simulation links +link_cpu_cache_link = sst.Link("link_cpu_cache_link") +link_cpu_cache_link.connect( (comp_cpu, "cache_link", "50ps"), (comp_l1cache, "high_network_0", "50ps") ) +link_cpu_cache_link.setNoCut() + +link_mem_bus_link = sst.Link("link_mem_bus_link") +link_mem_bus_link.connect( (comp_l1cache, "low_network_0", "50ps"), (comp_memory, "direct_link", "50ps") ) diff --git a/src/sst/elements/Samba/tests/stencil3dbench_mmu.py b/src/sst/elements/Samba/tests/stencil3dbench_mmu.py new file mode 100644 index 0000000000..edfe6da27f --- /dev/null +++ b/src/sst/elements/Samba/tests/stencil3dbench_mmu.py @@ -0,0 +1,102 @@ +import sst + +# Define SST core options +#sst.setProgramOption("timebase", "1ps") +#sst.setProgramOption("stopAtCycle", "0 ns") + +# Define the simulation components +comp_cpu = sst.Component("cpu", "miranda.BaseCPU") +comp_cpu.addParams({ + "verbose" : 1, + "clock" : "2GHz", + "generator" : "miranda.Stencil3DBenchGenerator", + "generatorParams.verbose" : 1, + "generatorParams.nx" : 30, + "generatorParams.ny" : 20, + "generatorParams.nz" : 10, + "printStats" : 1, +}) + +# Tell SST what statistics handling we want +sst.setStatisticLoadLevel(4) + +# Enable statistics outputs +comp_cpu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) + +comp_l1cache = sst.Component("l1cache", "memHierarchy.Cache") +comp_l1cache.addParams({ + "access_latency_cycles" : "2", + "cache_frequency" : "2 GHz", + "replacement_policy" : "lru", + "coherence_protocol" : "MESI", + "associativity" : "4", + "cache_line_size" : "64", + "prefetcher" : "cassini.StridePrefetcher", + "debug" : "1", + "L1" : "1", + "cache_size" : "32KB" +}) + +# Enable statistics outputs +comp_l1cache.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) + +comp_memory = sst.Component("memory", "memHierarchy.MemController") +comp_memory.addParams({ + "coherence_protocol" : "MESI", + "backend.access_time" : "100 ns", + "backend.mem_size" : "4096MiB", + "clock" : "1GHz" +}) + +mmu = sst.Component("mmu0", "Samba") +mmu.addParams({ + "corecount": 1, + "page_size_L1": 4, + "assoc_L1": 32, + "size_L1": 32, + "clock": "2GHz", + "levels": 2, + "max_width_L1": 2, + "max_outstanding_L1": 2, + "latency_L1": 1, + "parallel_mode_L1": 1, + "page_size_L2": 4, + "assoc_L2": 8, + "size_L2": 128, + "max_outstanding_L2": 2, + "max_width_L2": 4, + "latency_L2": 10, + "upper_link_L1": 1, # we assume same link latency of up and down traffic of the link + "upper_link_L2": 1, + "parallel_mode_L2": 0 +}); + +mmu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) + +# Define the simulation links +link_cpu_mmu_link = sst.Link("link_cpu_mmu_link") + +link_mmu_cache_link = sst.Link("link_mmu_cache_link") + + +''' +arielMMULink = sst.Link("cpu_mmu_link_" + str(next_core_id)) + MMUCacheLink = sst.Link("mmu_cache_link_" + str(next_core_id)) + arielMMULink.connect((ariel, "cache_link_%d"%next_core_id, ring_latency), (mmu, "cpu_to_mmu%d"%next_core_id, ring_latency)) + MMUCacheLink.connect((mmu, "mmu_to_cache%d"%next_core_id, ring_latency), (l1, "high_network_0", ring_latency)) + arielMMULink.setNoCut() + MMUCacheLink.setNoCut() +''' + + +link_cpu_mmu_link.connect( (comp_cpu, "cache_link", "50ps"), (mmu, "cpu_to_mmu0", "50ps") ) +link_cpu_mmu_link.setNoCut() + +link_mmu_cache_link.connect( (mmu, "mmu_to_cache0", "50ps"), (comp_l1cache, "high_network_0", "50ps") ) +link_mmu_cache_link.setNoCut() + + + +link_mem_bus_link = sst.Link("link_mem_bus_link") +link_mem_bus_link.connect( (comp_l1cache, "low_network_0", "50ps"), (comp_memory, "direct_link", "50ps") ) + diff --git a/src/sst/elements/Samba/tests/streambench.py b/src/sst/elements/Samba/tests/streambench.py new file mode 100644 index 0000000000..9ae3b3984c --- /dev/null +++ b/src/sst/elements/Samba/tests/streambench.py @@ -0,0 +1,57 @@ +import sst + +# Define SST core options +sst.setProgramOption("timebase", "1ps") +sst.setProgramOption("stopAtCycle", "0 ns") + +# Tell SST what statistics handling we want +sst.setStatisticLoadLevel(4) + +# Define the simulation components +comp_cpu = sst.Component("cpu", "miranda.BaseCPU") +comp_cpu.addParams({ + "verbose" : 0, + "generator" : "miranda.STREAMBenchGenerator", + "clock" : "2.4GHz", + "generatorParams.verbose" : 0, + "generatorParams.n" : 10000, + "generatorParams.operandwidth" : 16, + "printStats" : 1, +}) + +# Enable statistics outputs +comp_cpu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) + +comp_l1cache = sst.Component("l1cache", "memHierarchy.Cache") +comp_l1cache.addParams({ + "access_latency_cycles" : "2", + "cache_frequency" : "2.4 GHz", + "replacement_policy" : "lru", + "coherence_protocol" : "MESI", + "associativity" : "4", + "cache_line_size" : "64", + "prefetcher" : "cassini.StridePrefetcher", + "debug" : "1", + "L1" : "1", + "cache_size" : "32KB" +}) + +# Enable statistics outputs +comp_l1cache.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) + +comp_memory = sst.Component("memory", "memHierarchy.MemController") +comp_memory.addParams({ + "coherence_protocol" : "MESI", + "backend.access_time" : "100 ns", + "backend.mem_size" : "4096MiB", + "clock" : "1GHz" +}) + + +# Define the simulation links +link_cpu_cache_link = sst.Link("link_cpu_cache_link") +link_cpu_cache_link.connect( (comp_cpu, "cache_link", "50ps"), (comp_l1cache, "high_network_0", "50ps") ) +link_cpu_cache_link.setNoCut() + +link_mem_bus_link = sst.Link("link_mem_bus_link") +link_mem_bus_link.connect( (comp_l1cache, "low_network_0", "50ps"), (comp_memory, "direct_link", "50ps") ) diff --git a/src/sst/elements/Samba/tests/streambench_mmu.py b/src/sst/elements/Samba/tests/streambench_mmu.py new file mode 100644 index 0000000000..86dec24328 --- /dev/null +++ b/src/sst/elements/Samba/tests/streambench_mmu.py @@ -0,0 +1,101 @@ +import sst + +# Define SST core options +sst.setProgramOption("timebase", "1ps") +sst.setProgramOption("stopAtCycle", "0 ns") + +# Tell SST what statistics handling we want +sst.setStatisticLoadLevel(4) + +# Define the simulation components +comp_cpu = sst.Component("cpu", "miranda.BaseCPU") +comp_cpu.addParams({ + "verbose" : 0, + "generator" : "miranda.STREAMBenchGenerator", + "clock" : "2.4GHz", + "generatorParams.verbose" : 0, + "generatorParams.n" : 10000, + "generatorParams.operandwidth" : 16, + "printStats" : 1, +}) + +# Enable statistics outputs +comp_cpu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) + +comp_l1cache = sst.Component("l1cache", "memHierarchy.Cache") +comp_l1cache.addParams({ + "access_latency_cycles" : "2", + "cache_frequency" : "2.4 GHz", + "replacement_policy" : "lru", + "coherence_protocol" : "MESI", + "associativity" : "4", + "cache_line_size" : "64", + "prefetcher" : "cassini.StridePrefetcher", + "debug" : "1", + "L1" : "1", + "cache_size" : "32KB" +}) + +# Enable statistics outputs +comp_l1cache.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) + +comp_memory = sst.Component("memory", "memHierarchy.MemController") +comp_memory.addParams({ + "coherence_protocol" : "MESI", + "backend.access_time" : "100 ns", + "backend.mem_size" : "4096MiB", + "clock" : "1GHz" +}) + +mmu = sst.Component("mmu0", "Samba") +mmu.addParams({ + "corecount": 1, + "page_size_L1": 4, + "assoc_L1": 32, + "size_L1": 32, + "clock": "2.4GHz", + "levels": 2, + "max_width_L1": 2, + "max_outstanding_L1": 2, + "latency_L1": 1, + "parallel_mode_L1": 0, + "page_size_L2": 4, + "assoc_L2": 8, + "size_L2": 128, + "max_outstanding_L2": 2, + "max_width_L2": 2, + "latency_L2": 10, + "upper_link_L1": 1, # we assume same link latency of up and down traffic of the link + "upper_link_L2": 1, + "parallel_mode_L2": 0 +}); + +mmu.enableAllStatistics({"type":"sst.AccumulatorStatistic"}) + +# Define the simulation links +link_cpu_mmu_link = sst.Link("link_cpu_mmu_link") + +link_mmu_cache_link = sst.Link("link_mmu_cache_link") + + +''' +arielMMULink = sst.Link("cpu_mmu_link_" + str(next_core_id)) + MMUCacheLink = sst.Link("mmu_cache_link_" + str(next_core_id)) + arielMMULink.connect((ariel, "cache_link_%d"%next_core_id, ring_latency), (mmu, "cpu_to_mmu%d"%next_core_id, ring_latency)) + MMUCacheLink.connect((mmu, "mmu_to_cache%d"%next_core_id, ring_latency), (l1, "high_network_0", ring_latency)) + arielMMULink.setNoCut() + MMUCacheLink.setNoCut() +''' + + +link_cpu_mmu_link.connect( (comp_cpu, "cache_link", "50ps"), (mmu, "cpu_to_mmu0", "50ps") ) +link_cpu_mmu_link.setNoCut() + +link_mmu_cache_link.connect( (mmu, "mmu_to_cache0", "50ps"), (comp_l1cache, "high_network_0", "50ps") ) +link_mmu_cache_link.setNoCut() + + + +link_mem_bus_link = sst.Link("link_mem_bus_link") +link_mem_bus_link.connect( (comp_l1cache, "low_network_0", "50ps"), (comp_memory, "direct_link", "50ps") ) + From defe2a7f44f123e8522283eb2e085cdd2f229517 Mon Sep 17 00:00:00 2001 From: Branden Moore Date: Mon, 5 Dec 2016 17:00:54 -0700 Subject: [PATCH 5/5] [Samba] Do not include autogenerated Makefile.am --- src/sst/elements/Samba/Makefile.in | 869 ----------------------------- 1 file changed, 869 deletions(-) delete mode 100644 src/sst/elements/Samba/Makefile.in diff --git a/src/sst/elements/Samba/Makefile.in b/src/sst/elements/Samba/Makefile.in deleted file mode 100644 index b395efffa9..0000000000 --- a/src/sst/elements/Samba/Makefile.in +++ /dev/null @@ -1,869 +0,0 @@ -# Makefile.in generated by automake 1.13.4 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994-2013 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -VPATH = @srcdir@ -am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkglibexecdir = $(libexecdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = src/sst/elements/Samba -DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ - $(top_srcdir)/config/depcomp README -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/config/argz.m4 \ - $(top_srcdir)/config/libtool.m4 $(top_srcdir)/config/ltdl.m4 \ - $(top_srcdir)/config/ltoptions.m4 \ - $(top_srcdir)/config/ltsugar.m4 \ - $(top_srcdir)/config/ltversion.m4 \ - $(top_srcdir)/config/lt~obsolete.m4 \ - $(top_srcdir)/config/sst_check_chdl.m4 \ - $(top_srcdir)/config/sst_check_dramsim.m4 \ - $(top_srcdir)/config/sst_check_dumpi.m4 \ - $(top_srcdir)/config/sst_check_fdsim.m4 \ - $(top_srcdir)/config/sst_check_glpk.m4 \ - $(top_srcdir)/config/sst_check_goblin_hmcsim.m4 \ - $(top_srcdir)/config/sst_check_hybridsim.m4 \ - $(top_srcdir)/config/sst_check_libphx.m4 \ - $(top_srcdir)/config/sst_check_libz.m4 \ - $(top_srcdir)/config/sst_check_metis.m4 \ - $(top_srcdir)/config/sst_check_micron_hmcsim.m4 \ - $(top_srcdir)/config/sst_check_nvdimmsim.m4 \ - $(top_srcdir)/config/sst_check_otf.m4 \ - $(top_srcdir)/config/sst_check_pintool.m4 \ - $(top_srcdir)/config/sst_check_ptrace_set_tracer.m4 \ - $(top_srcdir)/config/sst_check_qsim.m4 \ - $(top_srcdir)/config/sst_check_ramulator.m4 \ - $(top_srcdir)/config/sst_check_systemc.m4 \ - $(top_srcdir)/config/sst_core_check_install.m4 \ - $(top_srcdir)/config/sst_elements_config_output.m4 \ - $(top_srcdir)/config/sst_os_check_osx.m4 \ - $(top_srcdir)/config/sst_elements_include.m4 \ - $(top_srcdir)/src/sst/elements/ariel/configure.m4 \ - $(top_srcdir)/src/sst/elements/chdlComponent/configure.m4 \ - $(top_srcdir)/src/sst/elements/ember/configure.m4 \ - $(top_srcdir)/src/sst/elements/HMC/configure.m4 \ - $(top_srcdir)/src/sst/elements/memHierarchy/configure.m4 \ - $(top_srcdir)/src/sst/elements/prospero/configure.m4 \ - $(top_srcdir)/src/sst/elements/qsimComponent/configure.m4 \ - $(top_srcdir)/src/sst/elements/Samba/configure.m4 \ - $(top_srcdir)/src/sst/elements/scheduler/configure.m4 \ - $(top_srcdir)/src/sst/elements/SysC/configure.m4 \ - $(top_srcdir)/src/sst/elements/VaultSimC/configure.m4 \ - $(top_srcdir)/src/sst/elements/zodiac/configure.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/src/sst_element_config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -am__installdirs = "$(DESTDIR)$(compdir)" -LTLIBRARIES = $(comp_LTLIBRARIES) -am__DEPENDENCIES_1 = -libSamba_la_DEPENDENCIES = $(am__DEPENDENCIES_1) -am_libSamba_la_OBJECTS = libSamba_la-libSamba.lo libSamba_la-Samba.lo \ - libSamba_la-TLBUnit.lo libSamba_la-TLBhierarchy.lo \ - libSamba_la-PageTableWalker.lo -libSamba_la_OBJECTS = $(am_libSamba_la_OBJECTS) -AM_V_lt = $(am__v_lt_@AM_V@) -am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) -am__v_lt_0 = --silent -am__v_lt_1 = -libSamba_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(libSamba_la_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_P = $(am__v_P_@AM_V@) -am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_@AM_V@) -am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_@AM_V@) -am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -AM_V_CXX = $(am__v_CXX_@AM_V@) -am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) -am__v_CXX_0 = @echo " CXX " $@; -am__v_CXX_1 = -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ - $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) -am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) -am__v_CXXLD_0 = @echo " CXXLD " $@; -am__v_CXXLD_1 = -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_@AM_V@) -am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_@AM_V@) -am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -SOURCES = $(libSamba_la_SOURCES) -DIST_SOURCES = $(libSamba_la_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ -AR = @AR@ -ARGZ_H = @ARGZ_H@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -BOOST_LIB_SUFFIX = @BOOST_LIB_SUFFIX@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CC_VERSION = @CC_VERSION@ -CFLAGS = @CFLAGS@ -CHDL_CPPFLAGS = @CHDL_CPPFLAGS@ -CHDL_CXXFLGAS = @CHDL_CXXFLGAS@ -CHDL_LDFLAGS = @CHDL_LDFLAGS@ -CHDL_LIBDIR = @CHDL_LIBDIR@ -CHDL_LIBS = @CHDL_LIBS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -DRAMSIM_CPPFLAGS = @DRAMSIM_CPPFLAGS@ -DRAMSIM_LDFLAGS = @DRAMSIM_LDFLAGS@ -DRAMSIM_LIB = @DRAMSIM_LIB@ -DRAMSIM_LIBDIR = @DRAMSIM_LIBDIR@ -DSYMUTIL = @DSYMUTIL@ -DUMPBIN = @DUMPBIN@ -DUMPI_CPPFLAGS = @DUMPI_CPPFLAGS@ -DUMPI_LDFLAGS = @DUMPI_LDFLAGS@ -DUMPI_LIB = @DUMPI_LIB@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -FDSIM_CPPFLAGS = @FDSIM_CPPFLAGS@ -FDSIM_CXXFLAGS = @FDSIM_CXXFLAGS@ -FDSIM_LDFLAGS = @FDSIM_LDFLAGS@ -FDSIM_LIB = @FDSIM_LIB@ -FDSIM_LIBDIR = @FDSIM_LIBDIR@ -FGREP = @FGREP@ -GLPK_CPPFLAGS = @GLPK_CPPFLAGS@ -GLPK_LDFLAGS = @GLPK_LDFLAGS@ -GLPK_LIB = @GLPK_LIB@ -GLPK_LIBDIR = @GLPK_LIBDIR@ -GOBLIN_HMCSIM_CPPFLAGS = @GOBLIN_HMCSIM_CPPFLAGS@ -GOBLIN_HMCSIM_LDFLAGS = @GOBLIN_HMCSIM_LDFLAGS@ -GOBLIN_HMCSIM_LIB = @GOBLIN_HMCSIM_LIB@ -GREP = @GREP@ -HAVE_SET_PTRACER = @HAVE_SET_PTRACER@ -HYBRIDSIM_CPPFLAGS = @HYBRIDSIM_CPPFLAGS@ -HYBRIDSIM_LDFLAGS = @HYBRIDSIM_LDFLAGS@ -HYBRIDSIM_LIB = @HYBRIDSIM_LIB@ -HYBRIDSIM_LIBDIR = @HYBRIDSIM_LIBDIR@ -INCLTDL = @INCLTDL@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LD = @LD@ -LDFLAGS = @LDFLAGS@ -LIBADD_DL = @LIBADD_DL@ -LIBADD_DLD_LINK = @LIBADD_DLD_LINK@ -LIBADD_DLOPEN = @LIBADD_DLOPEN@ -LIBADD_SHL_LOAD = @LIBADD_SHL_LOAD@ -LIBLTDL = @LIBLTDL@ -LIBOBJS = @LIBOBJS@ -LIBPHX_CPPFLAGS = @LIBPHX_CPPFLAGS@ -LIBPHX_LDFLAGS = @LIBPHX_LDFLAGS@ -LIBPHX_LIB = @LIBPHX_LIB@ -LIBPHX_LIBDIR = @LIBPHX_LIBDIR@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIBZ_CPPFLAGS = @LIBZ_CPPFLAGS@ -LIBZ_LDFLAGS = @LIBZ_LDFLAGS@ -LIBZ_LIB = @LIBZ_LIB@ -LIPO = @LIPO@ -LN_S = @LN_S@ -LTDLDEPS = @LTDLDEPS@ -LTDLINCL = @LTDLINCL@ -LTDLOPEN = @LTDLOPEN@ -LTLIBOBJS = @LTLIBOBJS@ -LT_CONFIG_H = @LT_CONFIG_H@ -LT_DLLOADERS = @LT_DLLOADERS@ -LT_DLPREOPEN = @LT_DLPREOPEN@ -MAKEINFO = @MAKEINFO@ -MANIFEST_TOOL = @MANIFEST_TOOL@ -METIS_CPPFLAGS = @METIS_CPPFLAGS@ -METIS_LDFLAGS = @METIS_LDFLAGS@ -METIS_LIB = @METIS_LIB@ -METIS_LIBDIR = @METIS_LIBDIR@ -MICRON_HMCSIM_CPPFLAGS = @MICRON_HMCSIM_CPPFLAGS@ -MICRON_HMCSIM_LDFLAGS = @MICRON_HMCSIM_LDFLAGS@ -MICRON_HMCSIM_LIBDIR = @MICRON_HMCSIM_LIBDIR@ -MICRON_HMCSIM_LIBS = @MICRON_HMCSIM_LIBS@ -MKDIR_P = @MKDIR_P@ -NM = @NM@ -NMEDIT = @NMEDIT@ -NVDIMMSIM_CPPFLAGS = @NVDIMMSIM_CPPFLAGS@ -NVDIMMSIM_CXXFLAGS = @NVDIMMSIM_CXXFLAGS@ -NVDIMMSIM_LDFLAGS = @NVDIMMSIM_LDFLAGS@ -NVDIMMSIM_LIB = @NVDIMMSIM_LIB@ -NVDIMMSIM_LIBDIR = @NVDIMMSIM_LIBDIR@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OTF_CONFIG_TOOL = @OTF_CONFIG_TOOL@ -OTF_CPPFLAGS = @OTF_CPPFLAGS@ -OTF_LDFLAGS = @OTF_LDFLAGS@ -OTF_PATH = @OTF_PATH@ -OTOOL = @OTOOL@ -OTOOL64 = @OTOOL64@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PINTOOL_CPPFLAGS = @PINTOOL_CPPFLAGS@ -PINTOOL_DIR = @PINTOOL_DIR@ -PINTOOL_LDFLAGS = @PINTOOL_LDFLAGS@ -PINTOOL_PATH = @PINTOOL_PATH@ -PINTOOL_RUNTIME = @PINTOOL_RUNTIME@ -QSIM_CPPFLAGS = @QSIM_CPPFLAGS@ -QSIM_LDFLAGS = @QSIM_LDFLAGS@ -QSIM_LIBDIR = @QSIM_LIBDIR@ -QSIM_LIBS = @QSIM_LIBS@ -RAMULATOR_CPPFLAGS = @RAMULATOR_CPPFLAGS@ -RAMULATOR_LDFLAGS = @RAMULATOR_LDFLAGS@ -RAMULATOR_LIB = @RAMULATOR_LIB@ -RAMULATOR_LIBDIR = @RAMULATOR_LIBDIR@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -SSTELEMENTS_GIT_COMMITCOUNT = @SSTELEMENTS_GIT_COMMITCOUNT@ -SSTELEMENTS_GIT_HEADSHA = @SSTELEMENTS_GIT_HEADSHA@ -SST_ACTIVE_ELEMENT_LIBRARIES = @SST_ACTIVE_ELEMENT_LIBRARIES@ -SST_CONFIG_TOOL = @SST_CONFIG_TOOL@ -SST_DIST_ELEMENT_LIBRARIES = @SST_DIST_ELEMENT_LIBRARIES@ -SST_PREFIX = @SST_PREFIX@ -SST_REGISTER_TOOL = @SST_REGISTER_TOOL@ -SST_SYSTEMC_CPPFLAGS = @SST_SYSTEMC_CPPFLAGS@ -SST_SYSTEMC_LDFLAGS = @SST_SYSTEMC_LDFLAGS@ -SST_SYSTEMC_LIB = @SST_SYSTEMC_LIB@ -SST_SYSTEMC_LIBDIR = @SST_SYSTEMC_LIBDIR@ -STRIP = @STRIP@ -VERSION = @VERSION@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -ltdl_LIBOBJS = @ltdl_LIBOBJS@ -ltdl_LTLIBOBJS = @ltdl_LTLIBOBJS@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sys_symbol_underscore = @sys_symbol_underscore@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -AM_CPPFLAGS = \ - $(BOOST_CPPFLAGS) \ - $(MPIT_CPPFLAGS) - -AM_LDFLAGS = -lm -compdir = $(pkglibdir) -comp_LTLIBRARIES = libSamba.la -libSamba_la_SOURCES = \ - libSamba.cc \ - Samba.cc \ - Samba.h \ - TLBUnit.cc \ - TLBUnit.h \ - TLBentry.h \ - TLBhierarchy.h \ - TLBhierarchy.cc \ - PageTableWalker.h \ - PageTableWalker.cc - -libSamba_la_CPPFLAGS = \ - -I$(top_srcdir)/src \ - $(SST_CXX0X_FLAGS) -fPIC -Wall \ - $(BOOST_CPPFLAGS) \ - $(MPI_CPPFLAGS) - -libSamba_la_LDFLAGS = \ - -avoid-version - -libSamba_la_LIBADD = \ - $(SST_SYSTEMC_LIB) - -all: all-am - -.SUFFIXES: -.SUFFIXES: .cc .lo .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/sst/elements/Samba/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/sst/elements/Samba/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -install-compLTLIBRARIES: $(comp_LTLIBRARIES) - @$(NORMAL_INSTALL) - @list='$(comp_LTLIBRARIES)'; test -n "$(compdir)" || list=; \ - list2=; for p in $$list; do \ - if test -f $$p; then \ - list2="$$list2 $$p"; \ - else :; fi; \ - done; \ - test -z "$$list2" || { \ - echo " $(MKDIR_P) '$(DESTDIR)$(compdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(compdir)" || exit 1; \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(compdir)'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(compdir)"; \ - } - -uninstall-compLTLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(comp_LTLIBRARIES)'; test -n "$(compdir)" || list=; \ - for p in $$list; do \ - $(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(compdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(compdir)/$$f"; \ - done - -clean-compLTLIBRARIES: - -test -z "$(comp_LTLIBRARIES)" || rm -f $(comp_LTLIBRARIES) - @list='$(comp_LTLIBRARIES)'; \ - locs=`for p in $$list; do echo $$p; done | \ - sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ - sort -u`; \ - test -z "$$locs" || { \ - echo rm -f $${locs}; \ - rm -f $${locs}; \ - } - -libSamba.la: $(libSamba_la_OBJECTS) $(libSamba_la_DEPENDENCIES) $(EXTRA_libSamba_la_DEPENDENCIES) - $(AM_V_CXXLD)$(libSamba_la_LINK) -rpath $(compdir) $(libSamba_la_OBJECTS) $(libSamba_la_LIBADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSamba_la-PageTableWalker.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSamba_la-Samba.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSamba_la-TLBUnit.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSamba_la-TLBhierarchy.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSamba_la-libSamba.Plo@am__quote@ - -.cc.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< - -.cc.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -.cc.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< - -libSamba_la-libSamba.lo: libSamba.cc -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libSamba_la-libSamba.lo -MD -MP -MF $(DEPDIR)/libSamba_la-libSamba.Tpo -c -o libSamba_la-libSamba.lo `test -f 'libSamba.cc' || echo '$(srcdir)/'`libSamba.cc -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libSamba_la-libSamba.Tpo $(DEPDIR)/libSamba_la-libSamba.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='libSamba.cc' object='libSamba_la-libSamba.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libSamba_la-libSamba.lo `test -f 'libSamba.cc' || echo '$(srcdir)/'`libSamba.cc - -libSamba_la-Samba.lo: Samba.cc -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libSamba_la-Samba.lo -MD -MP -MF $(DEPDIR)/libSamba_la-Samba.Tpo -c -o libSamba_la-Samba.lo `test -f 'Samba.cc' || echo '$(srcdir)/'`Samba.cc -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libSamba_la-Samba.Tpo $(DEPDIR)/libSamba_la-Samba.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Samba.cc' object='libSamba_la-Samba.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libSamba_la-Samba.lo `test -f 'Samba.cc' || echo '$(srcdir)/'`Samba.cc - -libSamba_la-TLBUnit.lo: TLBUnit.cc -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libSamba_la-TLBUnit.lo -MD -MP -MF $(DEPDIR)/libSamba_la-TLBUnit.Tpo -c -o libSamba_la-TLBUnit.lo `test -f 'TLBUnit.cc' || echo '$(srcdir)/'`TLBUnit.cc -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libSamba_la-TLBUnit.Tpo $(DEPDIR)/libSamba_la-TLBUnit.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TLBUnit.cc' object='libSamba_la-TLBUnit.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libSamba_la-TLBUnit.lo `test -f 'TLBUnit.cc' || echo '$(srcdir)/'`TLBUnit.cc - -libSamba_la-TLBhierarchy.lo: TLBhierarchy.cc -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libSamba_la-TLBhierarchy.lo -MD -MP -MF $(DEPDIR)/libSamba_la-TLBhierarchy.Tpo -c -o libSamba_la-TLBhierarchy.lo `test -f 'TLBhierarchy.cc' || echo '$(srcdir)/'`TLBhierarchy.cc -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libSamba_la-TLBhierarchy.Tpo $(DEPDIR)/libSamba_la-TLBhierarchy.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TLBhierarchy.cc' object='libSamba_la-TLBhierarchy.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libSamba_la-TLBhierarchy.lo `test -f 'TLBhierarchy.cc' || echo '$(srcdir)/'`TLBhierarchy.cc - -libSamba_la-PageTableWalker.lo: PageTableWalker.cc -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libSamba_la-PageTableWalker.lo -MD -MP -MF $(DEPDIR)/libSamba_la-PageTableWalker.Tpo -c -o libSamba_la-PageTableWalker.lo `test -f 'PageTableWalker.cc' || echo '$(srcdir)/'`PageTableWalker.cc -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libSamba_la-PageTableWalker.Tpo $(DEPDIR)/libSamba_la-PageTableWalker.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PageTableWalker.cc' object='libSamba_la-PageTableWalker.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libSamba_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libSamba_la-PageTableWalker.lo `test -f 'PageTableWalker.cc' || echo '$(srcdir)/'`PageTableWalker.cc - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(LTLIBRARIES) -installdirs: - for dir in "$(DESTDIR)$(compdir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-compLTLIBRARIES clean-generic clean-libtool \ - mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-compLTLIBRARIES - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-compLTLIBRARIES - -.MAKE: install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ - clean-compLTLIBRARIES clean-generic clean-libtool \ - cscopelist-am ctags ctags-am distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-compLTLIBRARIES install-data install-data-am \ - install-dvi install-dvi-am install-exec install-exec-am \ - install-html install-html-am install-info install-info-am \ - install-man install-pdf install-pdf-am install-ps \ - install-ps-am install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ - uninstall-am uninstall-compLTLIBRARIES - - -#noinst_PROGRAMS = infogather -#infogather_SOURCES = infogather.cc -#infogather_CPPFLAGS = -I/usr/local/systemc-2.3/include \ -# -std=c++11 -fPIC -Wall \ -# $(BOOST_CPPFLAGS) \ -# $(MPI_CPPFLAGS) -#infogather_LDFLAGS = -L/usr/local/systemc-2.3/lib-linux64/ -lsystemc \ -# -lhmcsim \ -# -avoid-version -#infogather_LDADD = libhmcsim.so - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: