kernel_stats.cc (2716:b9114064d77a) kernel_stats.cc (3544:3db423e3b41d)
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
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 * Authors: Lisa Hsu
29 * Nathan Binkert
30 */
31
32#include <map>
33#include <stack>
34#include <string>
35
36#include "arch/alpha/osfpal.hh"
37#include "base/trace.hh"
38#include "cpu/thread_context.hh"
39#include "kern/kernel_stats.hh"
40#include "kern/tru64/tru64_syscalls.hh"
41#include "sim/system.hh"
42
43using namespace std;
44using namespace Stats;
45
46namespace Kernel {
47
48const char *modestr[] = { "kernel", "user", "idle" };
49
50Statistics::Statistics(System *system)
51 : idleProcess((Addr)-1), themode(kernel), lastModeTick(0),
52 iplLast(0), iplLastTick(0)
53{
54}
55
56void
57Statistics::regStats(const string &_name)
58{
59 myname = _name;
60
61 _arm
62 .name(name() + ".inst.arm")
63 .desc("number of arm instructions executed")
64 ;
65
66 _quiesce
67 .name(name() + ".inst.quiesce")
68 .desc("number of quiesce instructions executed")
69 ;
70
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
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 * Authors: Lisa Hsu
29 * Nathan Binkert
30 */
31
32#include <map>
33#include <stack>
34#include <string>
35
36#include "arch/alpha/osfpal.hh"
37#include "base/trace.hh"
38#include "cpu/thread_context.hh"
39#include "kern/kernel_stats.hh"
40#include "kern/tru64/tru64_syscalls.hh"
41#include "sim/system.hh"
42
43using namespace std;
44using namespace Stats;
45
46namespace Kernel {
47
48const char *modestr[] = { "kernel", "user", "idle" };
49
50Statistics::Statistics(System *system)
51 : idleProcess((Addr)-1), themode(kernel), lastModeTick(0),
52 iplLast(0), iplLastTick(0)
53{
54}
55
56void
57Statistics::regStats(const string &_name)
58{
59 myname = _name;
60
61 _arm
62 .name(name() + ".inst.arm")
63 .desc("number of arm instructions executed")
64 ;
65
66 _quiesce
67 .name(name() + ".inst.quiesce")
68 .desc("number of quiesce instructions executed")
69 ;
70
71 _ivlb
72 .name(name() + ".inst.ivlb")
73 .desc("number of ivlb instructions executed")
74 ;
75
76 _ivle
77 .name(name() + ".inst.ivle")
78 .desc("number of ivle instructions executed")
79 ;
80
81 _hwrei
82 .name(name() + ".inst.hwrei")
83 .desc("number of hwrei instructions executed")
84 ;
85
86 _iplCount
87 .init(32)
88 .name(name() + ".ipl_count")
89 .desc("number of times we switched to this ipl")
90 .flags(total | pdf | nozero | nonan)
91 ;
92
93 _iplGood
94 .init(32)
95 .name(name() + ".ipl_good")
96 .desc("number of times we switched to this ipl from a different ipl")
97 .flags(total | pdf | nozero | nonan)
98 ;
99
100 _iplTicks
101 .init(32)
102 .name(name() + ".ipl_ticks")
103 .desc("number of cycles we spent at this ipl")
104 .flags(total | pdf | nozero | nonan)
105 ;
106
107 _iplUsed
108 .name(name() + ".ipl_used")
109 .desc("fraction of swpipl calls that actually changed the ipl")
110 .flags(total | nozero | nonan)
111 ;
112
113 _iplUsed = _iplGood / _iplCount;
114
115 _callpal
116 .init(256)
117 .name(name() + ".callpal")
118 .desc("number of callpals executed")
119 .flags(total | pdf | nozero | nonan)
120 ;
121
122 for (int i = 0; i < PAL::NumCodes; ++i) {
123 const char *str = PAL::name(i);
124 if (str)
125 _callpal.subname(i, str);
126 }
127
128 _syscall
129 .init(SystemCalls<Tru64>::Number)
130 .name(name() + ".syscall")
131 .desc("number of syscalls executed")
132 .flags(total | pdf | nozero | nonan)
133 ;
134
135 for (int i = 0; i < SystemCalls<Tru64>::Number; ++i) {
136 const char *str = SystemCalls<Tru64>::name(i);
137 if (str) {
138 _syscall.subname(i, str);
139 }
140 }
141
142 _mode
143 .init(cpu_mode_num)
144 .name(name() + ".mode_switch")
145 .desc("number of protection mode switches")
146 ;
147
148 for (int i = 0; i < cpu_mode_num; ++i)
149 _mode.subname(i, modestr[i]);
150
151 _modeGood
152 .init(cpu_mode_num)
153 .name(name() + ".mode_good")
154 ;
155
156 for (int i = 0; i < cpu_mode_num; ++i)
157 _modeGood.subname(i, modestr[i]);
158
159 _modeFraction
160 .name(name() + ".mode_switch_good")
161 .desc("fraction of useful protection mode switches")
162 .flags(total)
163 ;
164
165 for (int i = 0; i < cpu_mode_num; ++i)
166 _modeFraction.subname(i, modestr[i]);
167
168 _modeFraction = _modeGood / _mode;
169
170 _modeTicks
171 .init(cpu_mode_num)
172 .name(name() + ".mode_ticks")
173 .desc("number of ticks spent at the given mode")
174 .flags(pdf)
175 ;
176 for (int i = 0; i < cpu_mode_num; ++i)
177 _modeTicks.subname(i, modestr[i]);
178
179 _swap_context
180 .name(name() + ".swap_context")
181 .desc("number of times the context was actually changed")
182 ;
183}
184
185void
186Statistics::setIdleProcess(Addr idlepcbb, ThreadContext *tc)
187{
188 assert(themode == kernel);
189 idleProcess = idlepcbb;
190 themode = idle;
191 changeMode(themode, tc);
192}
193
194void
195Statistics::changeMode(cpu_mode newmode, ThreadContext *tc)
196{
197 _mode[newmode]++;
198
199 if (newmode == themode)
200 return;
201
202 DPRINTF(Context, "old mode=%-8s new mode=%-8s\n",
203 modestr[themode], modestr[newmode]);
204
205 _modeGood[newmode]++;
206 _modeTicks[themode] += curTick - lastModeTick;
207
208 lastModeTick = curTick;
209 themode = newmode;
210}
211
212void
213Statistics::swpipl(int ipl)
214{
215 assert(ipl >= 0 && ipl <= 0x1f && "invalid IPL\n");
216
217 _iplCount[ipl]++;
218
219 if (ipl == iplLast)
220 return;
221
222 _iplGood[ipl]++;
223 _iplTicks[iplLast] += curTick - iplLastTick;
224 iplLastTick = curTick;
225 iplLast = ipl;
226}
227
228void
229Statistics::mode(cpu_mode newmode, ThreadContext *tc)
230{
231 Addr pcbb = tc->readMiscReg(AlphaISA::IPR_PALtemp23);
232
233 if (newmode == kernel && pcbb == idleProcess)
234 newmode = idle;
235
236 changeMode(newmode, tc);
237}
238
239void
240Statistics::context(Addr oldpcbb, Addr newpcbb, ThreadContext *tc)
241{
242 assert(themode != user);
243
244 _swap_context++;
245 changeMode(newpcbb == idleProcess ? idle : kernel, tc);
246}
247
248void
249Statistics::callpal(int code, ThreadContext *tc)
250{
251 if (!PAL::name(code))
252 return;
253
254 _callpal[code]++;
255
256 switch (code) {
257 case PAL::callsys: {
258 int number = tc->readIntReg(0);
259 if (SystemCalls<Tru64>::validSyscallNumber(number)) {
260 int cvtnum = SystemCalls<Tru64>::convert(number);
261 _syscall[cvtnum]++;
262 }
263 } break;
264 }
265}
266
267void
268Statistics::serialize(ostream &os)
269{
270 int exemode = themode;
271 SERIALIZE_SCALAR(exemode);
272 SERIALIZE_SCALAR(idleProcess);
273 SERIALIZE_SCALAR(iplLast);
274 SERIALIZE_SCALAR(iplLastTick);
275 SERIALIZE_SCALAR(lastModeTick);
276}
277
278void
279Statistics::unserialize(Checkpoint *cp, const string &section)
280{
281 int exemode;
282 UNSERIALIZE_SCALAR(exemode);
283 UNSERIALIZE_SCALAR(idleProcess);
284 UNSERIALIZE_SCALAR(iplLast);
285 UNSERIALIZE_SCALAR(iplLastTick);
286 UNSERIALIZE_SCALAR(lastModeTick);
287 themode = (cpu_mode)exemode;
288}
289
290/* end namespace Kernel */ }
71 _hwrei
72 .name(name() + ".inst.hwrei")
73 .desc("number of hwrei instructions executed")
74 ;
75
76 _iplCount
77 .init(32)
78 .name(name() + ".ipl_count")
79 .desc("number of times we switched to this ipl")
80 .flags(total | pdf | nozero | nonan)
81 ;
82
83 _iplGood
84 .init(32)
85 .name(name() + ".ipl_good")
86 .desc("number of times we switched to this ipl from a different ipl")
87 .flags(total | pdf | nozero | nonan)
88 ;
89
90 _iplTicks
91 .init(32)
92 .name(name() + ".ipl_ticks")
93 .desc("number of cycles we spent at this ipl")
94 .flags(total | pdf | nozero | nonan)
95 ;
96
97 _iplUsed
98 .name(name() + ".ipl_used")
99 .desc("fraction of swpipl calls that actually changed the ipl")
100 .flags(total | nozero | nonan)
101 ;
102
103 _iplUsed = _iplGood / _iplCount;
104
105 _callpal
106 .init(256)
107 .name(name() + ".callpal")
108 .desc("number of callpals executed")
109 .flags(total | pdf | nozero | nonan)
110 ;
111
112 for (int i = 0; i < PAL::NumCodes; ++i) {
113 const char *str = PAL::name(i);
114 if (str)
115 _callpal.subname(i, str);
116 }
117
118 _syscall
119 .init(SystemCalls<Tru64>::Number)
120 .name(name() + ".syscall")
121 .desc("number of syscalls executed")
122 .flags(total | pdf | nozero | nonan)
123 ;
124
125 for (int i = 0; i < SystemCalls<Tru64>::Number; ++i) {
126 const char *str = SystemCalls<Tru64>::name(i);
127 if (str) {
128 _syscall.subname(i, str);
129 }
130 }
131
132 _mode
133 .init(cpu_mode_num)
134 .name(name() + ".mode_switch")
135 .desc("number of protection mode switches")
136 ;
137
138 for (int i = 0; i < cpu_mode_num; ++i)
139 _mode.subname(i, modestr[i]);
140
141 _modeGood
142 .init(cpu_mode_num)
143 .name(name() + ".mode_good")
144 ;
145
146 for (int i = 0; i < cpu_mode_num; ++i)
147 _modeGood.subname(i, modestr[i]);
148
149 _modeFraction
150 .name(name() + ".mode_switch_good")
151 .desc("fraction of useful protection mode switches")
152 .flags(total)
153 ;
154
155 for (int i = 0; i < cpu_mode_num; ++i)
156 _modeFraction.subname(i, modestr[i]);
157
158 _modeFraction = _modeGood / _mode;
159
160 _modeTicks
161 .init(cpu_mode_num)
162 .name(name() + ".mode_ticks")
163 .desc("number of ticks spent at the given mode")
164 .flags(pdf)
165 ;
166 for (int i = 0; i < cpu_mode_num; ++i)
167 _modeTicks.subname(i, modestr[i]);
168
169 _swap_context
170 .name(name() + ".swap_context")
171 .desc("number of times the context was actually changed")
172 ;
173}
174
175void
176Statistics::setIdleProcess(Addr idlepcbb, ThreadContext *tc)
177{
178 assert(themode == kernel);
179 idleProcess = idlepcbb;
180 themode = idle;
181 changeMode(themode, tc);
182}
183
184void
185Statistics::changeMode(cpu_mode newmode, ThreadContext *tc)
186{
187 _mode[newmode]++;
188
189 if (newmode == themode)
190 return;
191
192 DPRINTF(Context, "old mode=%-8s new mode=%-8s\n",
193 modestr[themode], modestr[newmode]);
194
195 _modeGood[newmode]++;
196 _modeTicks[themode] += curTick - lastModeTick;
197
198 lastModeTick = curTick;
199 themode = newmode;
200}
201
202void
203Statistics::swpipl(int ipl)
204{
205 assert(ipl >= 0 && ipl <= 0x1f && "invalid IPL\n");
206
207 _iplCount[ipl]++;
208
209 if (ipl == iplLast)
210 return;
211
212 _iplGood[ipl]++;
213 _iplTicks[iplLast] += curTick - iplLastTick;
214 iplLastTick = curTick;
215 iplLast = ipl;
216}
217
218void
219Statistics::mode(cpu_mode newmode, ThreadContext *tc)
220{
221 Addr pcbb = tc->readMiscReg(AlphaISA::IPR_PALtemp23);
222
223 if (newmode == kernel && pcbb == idleProcess)
224 newmode = idle;
225
226 changeMode(newmode, tc);
227}
228
229void
230Statistics::context(Addr oldpcbb, Addr newpcbb, ThreadContext *tc)
231{
232 assert(themode != user);
233
234 _swap_context++;
235 changeMode(newpcbb == idleProcess ? idle : kernel, tc);
236}
237
238void
239Statistics::callpal(int code, ThreadContext *tc)
240{
241 if (!PAL::name(code))
242 return;
243
244 _callpal[code]++;
245
246 switch (code) {
247 case PAL::callsys: {
248 int number = tc->readIntReg(0);
249 if (SystemCalls<Tru64>::validSyscallNumber(number)) {
250 int cvtnum = SystemCalls<Tru64>::convert(number);
251 _syscall[cvtnum]++;
252 }
253 } break;
254 }
255}
256
257void
258Statistics::serialize(ostream &os)
259{
260 int exemode = themode;
261 SERIALIZE_SCALAR(exemode);
262 SERIALIZE_SCALAR(idleProcess);
263 SERIALIZE_SCALAR(iplLast);
264 SERIALIZE_SCALAR(iplLastTick);
265 SERIALIZE_SCALAR(lastModeTick);
266}
267
268void
269Statistics::unserialize(Checkpoint *cp, const string &section)
270{
271 int exemode;
272 UNSERIALIZE_SCALAR(exemode);
273 UNSERIALIZE_SCALAR(idleProcess);
274 UNSERIALIZE_SCALAR(iplLast);
275 UNSERIALIZE_SCALAR(iplLastTick);
276 UNSERIALIZE_SCALAR(lastModeTick);
277 themode = (cpu_mode)exemode;
278}
279
280/* end namespace Kernel */ }