gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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 bool StoreTrace::s_init = false; // Total number of store lifetimes of
34  // all lines
35 int64_t StoreTrace::s_total_samples = 0; // Total number of store
36  // lifetimes of all lines
41 
43  : m_store_count(-1), m_store_first_to_stolen(-1),
44  m_store_last_to_stolen(-1), m_store_first_to_last(-1)
45 {
47  m_addr = addr;
48  m_total_samples = 0;
49 
50  // Really -1 isn't valid, so this will trigger the initilization code
51  m_last_writer = -1;
53 }
54 
56 {
57 }
58 
59 void
60 StoreTrace::print(std::ostream& out) const
61 {
62  out << m_addr
63  << " total_samples: " << m_total_samples << std::endl
64  << "store_count: " << m_store_count << std::endl
65  << "store_first_to_stolen: " << m_store_first_to_stolen << std::endl
66  << "store_last_to_stolen: " << m_store_last_to_stolen << std::endl
67  << "store_first_to_last: " << m_store_first_to_last << std::endl;
68 }
69 
70 void
72 {
73  if (!s_init) {
74  s_total_samples = 0;
75  s_store_count_ptr = new Histogram(-1);
79  }
80  s_init = true;
81 }
82 
83 void
84 StoreTrace::printSummary(std::ostream& out)
85 {
86  out << "total_samples: " << s_total_samples << std::endl;
87  out << "store_count: " << (*s_store_count_ptr) << std::endl;
88  out << "store_first_to_stolen: "
89  << (*s_store_first_to_stolen_ptr) << std::endl;
90  out << "store_last_to_stolen: "
91  << (*s_store_last_to_stolen_ptr) << std::endl;
92  out << "store_first_to_last: " << (*s_store_first_to_last_ptr)
93  << std::endl;
94 }
95 
96 void
98 {
100  s_total_samples = 0;
105 }
106 
107 void
109 {
110  Tick current = curTick();
111 
112  assert((m_last_writer == -1) || (m_last_writer == node));
113 
114  m_last_writer = node;
115  if (m_last_writer == -1) {
116  assert(m_stores_this_interval == 0);
117  }
118 
119  if (m_stores_this_interval == 0) {
120  // A new proessor just wrote the line, so reset the stats
121  m_first_store = current;
122  }
123 
124  m_last_store = current;
126 }
127 
128 void
130 {
131  if (node == m_last_writer) {
132  Tick current = curTick();
133  assert(m_stores_this_interval != 0);
134  assert(m_last_store != 0);
135  assert(m_first_store != 0);
136  assert(m_last_writer != -1);
137 
138  // Per line stats
143  m_total_samples++;
144 
145  // Global stats
146  assert(s_store_first_to_stolen_ptr != NULL);
151  s_total_samples++;
152 
153  // Initilize for next go round
155  m_last_store = 0;
156  m_first_store = 0;
157  m_last_writer = -1;
158  }
159 }
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:108
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
StoreTrace::~StoreTrace
~StoreTrace()
Definition: StoreTrace.cc:55
StoreTrace::printSummary
static void printSummary(std::ostream &out)
Definition: StoreTrace.cc:84
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:60
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:71
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:97
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:148
StoreTrace::m_total_samples
int64_t m_total_samples
Definition: StoreTrace.hh:69
StoreTrace.hh
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
StoreTrace::m_last_store
Tick m_last_store
Definition: StoreTrace.hh:66
Histogram
Definition: Histogram.hh:37
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
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
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:129
Histogram::add
void add(int64_t value)
Definition: Histogram.cc:86

Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17