gem5
v21.0.1.0
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
c
d
e
f
i
l
m
o
p
r
s
t
v
x
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
_
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
mem
ruby
profiler
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
29
#include "
mem/ruby/profiler/StoreTrace.hh
"
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
37
Histogram
*
StoreTrace::s_store_count_ptr
= NULL;
38
Histogram
*
StoreTrace::s_store_first_to_stolen_ptr
= NULL;
39
Histogram
*
StoreTrace::s_store_last_to_stolen_ptr
= NULL;
40
Histogram
*
StoreTrace::s_store_first_to_last_ptr
= NULL;
41
42
StoreTrace::StoreTrace
(
Addr
addr
)
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
{
46
StoreTrace::initSummary
();
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;
52
m_stores_this_interval
= 0;
53
}
54
55
StoreTrace::~StoreTrace
()
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
71
StoreTrace::initSummary
()
72
{
73
if
(!
s_init
) {
74
s_total_samples
= 0;
75
s_store_count_ptr
=
new
Histogram
(-1);
76
s_store_first_to_stolen_ptr
=
new
Histogram
(-1);
77
s_store_last_to_stolen_ptr
=
new
Histogram
(-1);
78
s_store_first_to_last_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
97
StoreTrace::clearSummary
()
98
{
99
StoreTrace::initSummary
();
100
s_total_samples
= 0;
101
s_store_count_ptr
->
clear
();
102
s_store_first_to_stolen_ptr
->
clear
();
103
s_store_last_to_stolen_ptr
->
clear
();
104
s_store_first_to_last_ptr
->
clear
();
105
}
106
107
void
108
StoreTrace::store
(
NodeID
node)
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;
125
m_stores_this_interval
++;
126
}
127
128
void
129
StoreTrace::downgrade
(
NodeID
node)
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
139
m_store_first_to_stolen
.
add
(current -
m_first_store
);
140
m_store_count
.
add
(
m_stores_this_interval
);
141
m_store_last_to_stolen
.
add
(current -
m_last_store
);
142
m_store_first_to_last
.
add
(
m_last_store
-
m_first_store
);
143
m_total_samples
++;
144
145
// Global stats
146
assert(
s_store_first_to_stolen_ptr
!= NULL);
147
s_store_first_to_stolen_ptr
->
add
(current -
m_first_store
);
148
s_store_count_ptr
->
add
(
m_stores_this_interval
);
149
s_store_last_to_stolen_ptr
->
add
(current -
m_last_store
);
150
s_store_first_to_last_ptr
->
add
(
m_last_store
-
m_first_store
);
151
s_total_samples
++;
152
153
// Initilize for next go round
154
m_stores_this_interval
= 0;
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 Jun 22 2021 15:28:30 for gem5 by
doxygen
1.8.17