pseudo_inst.cc (2799:1c93aed5aa4a) pseudo_inst.cc (2840:227f7c4f8c81)
1/*
2 * Copyright (c) 2003-2006 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: Nathan Binkert
29 */
30
31#include <errno.h>
32#include <fcntl.h>
33#include <unistd.h>
34
35#include <string>
36
37#include "sim/pseudo_inst.hh"
38#include "arch/vtophys.hh"
39#include "cpu/base.hh"
40#include "cpu/sampler/sampler.hh"
41#include "cpu/thread_context.hh"
42#include "cpu/quiesce_event.hh"
43#include "kern/kernel_stats.hh"
44#include "sim/param.hh"
45#include "sim/serialize.hh"
46#include "sim/sim_exit.hh"
47#include "sim/stat_control.hh"
48#include "sim/stats.hh"
49#include "sim/system.hh"
50#include "sim/debug.hh"
51#include "sim/vptr.hh"
52
53using namespace std;
54
1/*
2 * Copyright (c) 2003-2006 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: Nathan Binkert
29 */
30
31#include <errno.h>
32#include <fcntl.h>
33#include <unistd.h>
34
35#include <string>
36
37#include "sim/pseudo_inst.hh"
38#include "arch/vtophys.hh"
39#include "cpu/base.hh"
40#include "cpu/sampler/sampler.hh"
41#include "cpu/thread_context.hh"
42#include "cpu/quiesce_event.hh"
43#include "kern/kernel_stats.hh"
44#include "sim/param.hh"
45#include "sim/serialize.hh"
46#include "sim/sim_exit.hh"
47#include "sim/stat_control.hh"
48#include "sim/stats.hh"
49#include "sim/system.hh"
50#include "sim/debug.hh"
51#include "sim/vptr.hh"
52
53using namespace std;
54
55extern Sampler *SampCPU;
56
57using namespace Stats;
58using namespace TheISA;
59
60namespace AlphaPseudo
61{
62 bool doStatisticsInsts;
63 bool doCheckpointInsts;
64 bool doQuiesce;
65
66 void
67 arm(ThreadContext *tc)
68 {
69 if (tc->getKernelStats())
70 tc->getKernelStats()->arm();
71 }
72
73 void
74 quiesce(ThreadContext *tc)
75 {
76 if (!doQuiesce)
77 return;
78
79 tc->suspend();
80 if (tc->getKernelStats())
81 tc->getKernelStats()->quiesce();
82 }
83
84 void
85 quiesceNs(ThreadContext *tc, uint64_t ns)
86 {
87 if (!doQuiesce || ns == 0)
88 return;
89
90 EndQuiesceEvent *quiesceEvent = tc->getQuiesceEvent();
91
92 if (quiesceEvent->scheduled())
93 quiesceEvent->reschedule(curTick + Clock::Int::ns * ns);
94 else
95 quiesceEvent->schedule(curTick + Clock::Int::ns * ns);
96
97 tc->suspend();
98 if (tc->getKernelStats())
99 tc->getKernelStats()->quiesce();
100 }
101
102 void
103 quiesceCycles(ThreadContext *tc, uint64_t cycles)
104 {
105 if (!doQuiesce || cycles == 0)
106 return;
107
108 EndQuiesceEvent *quiesceEvent = tc->getQuiesceEvent();
109
110 if (quiesceEvent->scheduled())
111 quiesceEvent->reschedule(curTick +
112 tc->getCpuPtr()->cycles(cycles));
113 else
114 quiesceEvent->schedule(curTick +
115 tc->getCpuPtr()->cycles(cycles));
116
117 tc->suspend();
118 if (tc->getKernelStats())
119 tc->getKernelStats()->quiesce();
120 }
121
122 uint64_t
123 quiesceTime(ThreadContext *tc)
124 {
125 return (tc->readLastActivate() - tc->readLastSuspend()) / Clock::Int::ns;
126 }
127
128 void
129 ivlb(ThreadContext *tc)
130 {
131 if (tc->getKernelStats())
132 tc->getKernelStats()->ivlb();
133 }
134
135 void
136 ivle(ThreadContext *tc)
137 {
138 }
139
140 void
141 m5exit_old(ThreadContext *tc)
142 {
143 exitSimLoop(curTick, "m5_exit_old instruction encountered");
144 }
145
146 void
147 m5exit(ThreadContext *tc, Tick delay)
148 {
149 Tick when = curTick + delay * Clock::Int::ns;
150 exitSimLoop(when, "m5_exit instruction encountered");
151 }
152
153 void
154 resetstats(ThreadContext *tc, Tick delay, Tick period)
155 {
156 if (!doStatisticsInsts)
157 return;
158
159
160 Tick when = curTick + delay * Clock::Int::ns;
161 Tick repeat = period * Clock::Int::ns;
162
163 using namespace Stats;
164 SetupEvent(Reset, when, repeat);
165 }
166
167 void
168 dumpstats(ThreadContext *tc, Tick delay, Tick period)
169 {
170 if (!doStatisticsInsts)
171 return;
172
173
174 Tick when = curTick + delay * Clock::Int::ns;
175 Tick repeat = period * Clock::Int::ns;
176
177 using namespace Stats;
178 SetupEvent(Dump, when, repeat);
179 }
180
181 void
182 addsymbol(ThreadContext *tc, Addr addr, Addr symbolAddr)
183 {
184 char symb[100];
185 CopyStringOut(tc, symb, symbolAddr, 100);
186 std::string symbol(symb);
187
188 DPRINTF(Loader, "Loaded symbol: %s @ %#llx\n", symbol, addr);
189
190 tc->getSystemPtr()->kernelSymtab->insert(addr,symbol);
191 }
192
193 void
194 dumpresetstats(ThreadContext *tc, Tick delay, Tick period)
195 {
196 if (!doStatisticsInsts)
197 return;
198
199
200 Tick when = curTick + delay * Clock::Int::ns;
201 Tick repeat = period * Clock::Int::ns;
202
203 using namespace Stats;
204 SetupEvent(Dump|Reset, when, repeat);
205 }
206
207 void
208 m5checkpoint(ThreadContext *tc, Tick delay, Tick period)
209 {
210 if (!doCheckpointInsts)
211 return;
212 }
213
214 uint64_t
215 readfile(ThreadContext *tc, Addr vaddr, uint64_t len, uint64_t offset)
216 {
217 const string &file = tc->getCpuPtr()->system->params()->readfile;
218 if (file.empty()) {
219 return ULL(0);
220 }
221
222 uint64_t result = 0;
223
224 int fd = ::open(file.c_str(), O_RDONLY, 0);
225 if (fd < 0)
226 panic("could not open file %s\n", file);
227
228 if (::lseek(fd, offset, SEEK_SET) < 0)
229 panic("could not seek: %s", strerror(errno));
230
231 char *buf = new char[len];
232 char *p = buf;
233 while (len > 0) {
234 int bytes = ::read(fd, p, len);
235 if (bytes <= 0)
236 break;
237
238 p += bytes;
239 result += bytes;
240 len -= bytes;
241 }
242
243 close(fd);
244 CopyIn(tc, vaddr, buf, result);
245 delete [] buf;
246 return result;
247 }
248
249 class Context : public ParamContext
250 {
251 public:
252 Context(const string &section) : ParamContext(section) {}
253 void checkParams();
254 };
255
256 Context context("pseudo_inst");
257
258 Param<bool> __quiesce(&context, "quiesce",
259 "enable quiesce instructions",
260 true);
261 Param<bool> __statistics(&context, "statistics",
262 "enable statistics pseudo instructions",
263 true);
264 Param<bool> __checkpoint(&context, "checkpoint",
265 "enable checkpoint pseudo instructions",
266 true);
267
268 void
269 Context::checkParams()
270 {
271 doQuiesce = __quiesce;
272 doStatisticsInsts = __statistics;
273 doCheckpointInsts = __checkpoint;
274 }
275
276 void debugbreak(ThreadContext *tc)
277 {
278 debug_break();
279 }
280
281 void switchcpu(ThreadContext *tc)
282 {
55using namespace Stats;
56using namespace TheISA;
57
58namespace AlphaPseudo
59{
60 bool doStatisticsInsts;
61 bool doCheckpointInsts;
62 bool doQuiesce;
63
64 void
65 arm(ThreadContext *tc)
66 {
67 if (tc->getKernelStats())
68 tc->getKernelStats()->arm();
69 }
70
71 void
72 quiesce(ThreadContext *tc)
73 {
74 if (!doQuiesce)
75 return;
76
77 tc->suspend();
78 if (tc->getKernelStats())
79 tc->getKernelStats()->quiesce();
80 }
81
82 void
83 quiesceNs(ThreadContext *tc, uint64_t ns)
84 {
85 if (!doQuiesce || ns == 0)
86 return;
87
88 EndQuiesceEvent *quiesceEvent = tc->getQuiesceEvent();
89
90 if (quiesceEvent->scheduled())
91 quiesceEvent->reschedule(curTick + Clock::Int::ns * ns);
92 else
93 quiesceEvent->schedule(curTick + Clock::Int::ns * ns);
94
95 tc->suspend();
96 if (tc->getKernelStats())
97 tc->getKernelStats()->quiesce();
98 }
99
100 void
101 quiesceCycles(ThreadContext *tc, uint64_t cycles)
102 {
103 if (!doQuiesce || cycles == 0)
104 return;
105
106 EndQuiesceEvent *quiesceEvent = tc->getQuiesceEvent();
107
108 if (quiesceEvent->scheduled())
109 quiesceEvent->reschedule(curTick +
110 tc->getCpuPtr()->cycles(cycles));
111 else
112 quiesceEvent->schedule(curTick +
113 tc->getCpuPtr()->cycles(cycles));
114
115 tc->suspend();
116 if (tc->getKernelStats())
117 tc->getKernelStats()->quiesce();
118 }
119
120 uint64_t
121 quiesceTime(ThreadContext *tc)
122 {
123 return (tc->readLastActivate() - tc->readLastSuspend()) / Clock::Int::ns;
124 }
125
126 void
127 ivlb(ThreadContext *tc)
128 {
129 if (tc->getKernelStats())
130 tc->getKernelStats()->ivlb();
131 }
132
133 void
134 ivle(ThreadContext *tc)
135 {
136 }
137
138 void
139 m5exit_old(ThreadContext *tc)
140 {
141 exitSimLoop(curTick, "m5_exit_old instruction encountered");
142 }
143
144 void
145 m5exit(ThreadContext *tc, Tick delay)
146 {
147 Tick when = curTick + delay * Clock::Int::ns;
148 exitSimLoop(when, "m5_exit instruction encountered");
149 }
150
151 void
152 resetstats(ThreadContext *tc, Tick delay, Tick period)
153 {
154 if (!doStatisticsInsts)
155 return;
156
157
158 Tick when = curTick + delay * Clock::Int::ns;
159 Tick repeat = period * Clock::Int::ns;
160
161 using namespace Stats;
162 SetupEvent(Reset, when, repeat);
163 }
164
165 void
166 dumpstats(ThreadContext *tc, Tick delay, Tick period)
167 {
168 if (!doStatisticsInsts)
169 return;
170
171
172 Tick when = curTick + delay * Clock::Int::ns;
173 Tick repeat = period * Clock::Int::ns;
174
175 using namespace Stats;
176 SetupEvent(Dump, when, repeat);
177 }
178
179 void
180 addsymbol(ThreadContext *tc, Addr addr, Addr symbolAddr)
181 {
182 char symb[100];
183 CopyStringOut(tc, symb, symbolAddr, 100);
184 std::string symbol(symb);
185
186 DPRINTF(Loader, "Loaded symbol: %s @ %#llx\n", symbol, addr);
187
188 tc->getSystemPtr()->kernelSymtab->insert(addr,symbol);
189 }
190
191 void
192 dumpresetstats(ThreadContext *tc, Tick delay, Tick period)
193 {
194 if (!doStatisticsInsts)
195 return;
196
197
198 Tick when = curTick + delay * Clock::Int::ns;
199 Tick repeat = period * Clock::Int::ns;
200
201 using namespace Stats;
202 SetupEvent(Dump|Reset, when, repeat);
203 }
204
205 void
206 m5checkpoint(ThreadContext *tc, Tick delay, Tick period)
207 {
208 if (!doCheckpointInsts)
209 return;
210 }
211
212 uint64_t
213 readfile(ThreadContext *tc, Addr vaddr, uint64_t len, uint64_t offset)
214 {
215 const string &file = tc->getCpuPtr()->system->params()->readfile;
216 if (file.empty()) {
217 return ULL(0);
218 }
219
220 uint64_t result = 0;
221
222 int fd = ::open(file.c_str(), O_RDONLY, 0);
223 if (fd < 0)
224 panic("could not open file %s\n", file);
225
226 if (::lseek(fd, offset, SEEK_SET) < 0)
227 panic("could not seek: %s", strerror(errno));
228
229 char *buf = new char[len];
230 char *p = buf;
231 while (len > 0) {
232 int bytes = ::read(fd, p, len);
233 if (bytes <= 0)
234 break;
235
236 p += bytes;
237 result += bytes;
238 len -= bytes;
239 }
240
241 close(fd);
242 CopyIn(tc, vaddr, buf, result);
243 delete [] buf;
244 return result;
245 }
246
247 class Context : public ParamContext
248 {
249 public:
250 Context(const string &section) : ParamContext(section) {}
251 void checkParams();
252 };
253
254 Context context("pseudo_inst");
255
256 Param<bool> __quiesce(&context, "quiesce",
257 "enable quiesce instructions",
258 true);
259 Param<bool> __statistics(&context, "statistics",
260 "enable statistics pseudo instructions",
261 true);
262 Param<bool> __checkpoint(&context, "checkpoint",
263 "enable checkpoint pseudo instructions",
264 true);
265
266 void
267 Context::checkParams()
268 {
269 doQuiesce = __quiesce;
270 doStatisticsInsts = __statistics;
271 doCheckpointInsts = __checkpoint;
272 }
273
274 void debugbreak(ThreadContext *tc)
275 {
276 debug_break();
277 }
278
279 void switchcpu(ThreadContext *tc)
280 {
283 if (SampCPU)
284 SampCPU->switchCPUs();
285 }
286}
281 }
282}