gem5  v20.1.0.0
StoreTrace.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
30 
31 #include "sim/core.hh"
32 
33 using namespace std;
34 
35 bool StoreTrace::s_init = false; // Total number of store lifetimes of
36  // all lines
37 int64_t StoreTrace::s_total_samples = 0; // Total number of store
38  // lifetimes of all lines
43 
45  : m_store_count(-1), m_store_first_to_stolen(-1),
46  m_store_last_to_stolen(-1), m_store_first_to_last(-1)
47 {
49  m_addr = addr;
50  m_total_samples = 0;
51 
52  // Really -1 isn't valid, so this will trigger the initilization code
53  m_last_writer = -1;
55 }
56 
58 {
59 }
60 
61 void
62 StoreTrace::print(ostream& out) const
63 {
64  out << m_addr
65  << " total_samples: " << m_total_samples << endl
66  << "store_count: " << m_store_count << endl
67  << "store_first_to_stolen: " << m_store_first_to_stolen << endl
68  << "store_last_to_stolen: " << m_store_last_to_stolen << endl
69  << "store_first_to_last: " << m_store_first_to_last << endl;
70 }
71 
72 void
74 {
75  if (!s_init) {
76  s_total_samples = 0;
77  s_store_count_ptr = new Histogram(-1);
81  }
82  s_init = true;
83 }
84 
85 void
87 {
88  out << "total_samples: " << s_total_samples << endl;
89  out << "store_count: " << (*s_store_count_ptr) << endl;
90  out << "store_first_to_stolen: " << (*s_store_first_to_stolen_ptr) << endl;
91  out << "store_last_to_stolen: " << (*s_store_last_to_stolen_ptr) << endl;
92  out << "store_first_to_last: " << (*s_store_first_to_last_ptr) << endl;
93 }
94 
95 void
97 {
99  s_total_samples = 0;
104 }
105 
106 void
108 {
109  Tick current = curTick();
110 
111  assert((m_last_writer == -1) || (m_last_writer == node));
112 
113  m_last_writer = node;
114  if (m_last_writer == -1) {
115  assert(m_stores_this_interval == 0);
116  }
117 
118  if (m_stores_this_interval == 0) {
119  // A new proessor just wrote the line, so reset the stats
120  m_first_store = current;
121  }
122 
123  m_last_store = current;
125 }
126 
127 void
129 {
130  if (node == m_last_writer) {
131  Tick current = curTick();
132  assert(m_stores_this_interval != 0);
133  assert(m_last_store != 0);
134  assert(m_first_store != 0);
135  assert(m_last_writer != -1);
136 
137  // Per line stats
142  m_total_samples++;
143 
144  // Global stats
145  assert(s_store_first_to_stolen_ptr != NULL);
150  s_total_samples++;
151 
152  // Initilize for next go round
154  m_last_store = 0;
155  m_first_store = 0;
156  m_last_writer = -1;
157  }
158 }
StoreTrace::s_store_first_to_last_ptr
static Histogram * s_store_first_to_last_ptr
Definition: StoreTrace.hh:61
StoreTrace::s_store_count_ptr
static Histogram * s_store_count_ptr
Definition: StoreTrace.hh:58
StoreTrace::store
void store(NodeID node)
Definition: StoreTrace.cc:107
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:63
StoreTrace::~StoreTrace
~StoreTrace()
Definition: StoreTrace.cc:57
StoreTrace::printSummary
static void printSummary(std::ostream &out)
Definition: StoreTrace.cc:86
StoreTrace::s_init
static bool s_init
Definition: StoreTrace.hh:55
StoreTrace::m_store_last_to_stolen
Histogram m_store_last_to_stolen
Definition: StoreTrace.hh:72
StoreTrace::m_last_writer
NodeID m_last_writer
Definition: StoreTrace.hh:64
StoreTrace::print
void print(std::ostream &out) const
Definition: StoreTrace.cc:62
StoreTrace::m_store_count
Histogram m_store_count
Definition: StoreTrace.hh:70
StoreTrace::s_store_first_to_stolen_ptr
static Histogram * s_store_first_to_stolen_ptr
Definition: StoreTrace.hh:59
StoreTrace::initSummary
static void initSummary()
Definition: StoreTrace.cc:73
StoreTrace::s_total_samples
static int64_t s_total_samples
Definition: StoreTrace.hh:56
Histogram::clear
void clear()
Definition: Histogram.hh:47
StoreTrace::clearSummary
static void clearSummary()
Definition: StoreTrace.cc:96
StoreTrace::m_addr
Addr m_addr
Definition: StoreTrace.hh:63
StoreTrace::StoreTrace
StoreTrace()
Definition: StoreTrace.hh:41
StoreTrace::m_first_store
Tick m_first_store
Definition: StoreTrace.hh:65
StoreTrace::m_store_first_to_last
Histogram m_store_first_to_last
Definition: StoreTrace.hh:73
core.hh
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
StoreTrace::m_total_samples
int64_t m_total_samples
Definition: StoreTrace.hh:69
StoreTrace.hh
StoreTrace::m_last_store
Tick m_last_store
Definition: StoreTrace.hh:66
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
Histogram
Definition: Histogram.hh:37
addr
ip6_addr_t addr
Definition: inet.hh:423
StoreTrace::s_store_last_to_stolen_ptr
static Histogram * s_store_last_to_stolen_ptr
Definition: StoreTrace.hh:60
NodeID
unsigned int NodeID
Definition: TypeDefines.hh:34
StoreTrace::m_store_first_to_stolen
Histogram m_store_first_to_stolen
Definition: StoreTrace.hh:71
StoreTrace::m_stores_this_interval
int m_stores_this_interval
Definition: StoreTrace.hh:67
StoreTrace::downgrade
void downgrade(NodeID node)
Definition: StoreTrace.cc:128
curTick
Tick curTick()
The current simulated tick.
Definition: core.hh:45
Histogram::add
void add(int64_t value)
Definition: Histogram.cc:88

Generated on Wed Sep 30 2020 14:02:13 for gem5 by doxygen 1.8.17