base.hh (10934:5af8f40d8f2c) base.hh (10935:acd48ddd725f)
1/*
2 * Copyright (c) 2011-2012 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating
9 * to a hardware implementation of the functionality of the software
10 * licensed hereunder. You may use the software subject to the license
11 * terms below provided that you ensure that this notice is replicated
12 * unmodified and in its entirety in all distributions of the software,
13 * modified or unmodified, in source code or in binary form.
14 *
15 * Copyright (c) 2002-2005 The Regents of The University of Michigan
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Steve Reinhardt
42 * Dave Greene
43 * Nathan Binkert
44 */
45
46#ifndef __CPU_SIMPLE_BASE_HH__
47#define __CPU_SIMPLE_BASE_HH__
48
49#include "base/statistics.hh"
50#include "config/the_isa.hh"
51#include "cpu/base.hh"
52#include "cpu/checker/cpu.hh"
53#include "cpu/exec_context.hh"
54#include "cpu/pc_event.hh"
55#include "cpu/simple_thread.hh"
56#include "cpu/static_inst.hh"
57#include "mem/packet.hh"
58#include "mem/port.hh"
59#include "mem/request.hh"
60#include "sim/eventq.hh"
61#include "sim/full_system.hh"
62#include "sim/system.hh"
63
64// forward declarations
65class Checkpoint;
66class Process;
67class Processor;
68class ThreadContext;
69
70namespace TheISA
71{
72 class DTB;
73 class ITB;
74}
75
76namespace Trace {
77 class InstRecord;
78}
79
80struct BaseSimpleCPUParams;
81class BPredUnit;
82
83class BaseSimpleCPU : public BaseCPU, public ExecContext
84{
85 protected:
86 typedef TheISA::MiscReg MiscReg;
87 typedef TheISA::FloatReg FloatReg;
88 typedef TheISA::FloatRegBits FloatRegBits;
89 typedef TheISA::CCReg CCReg;
1/*
2 * Copyright (c) 2011-2012 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating
9 * to a hardware implementation of the functionality of the software
10 * licensed hereunder. You may use the software subject to the license
11 * terms below provided that you ensure that this notice is replicated
12 * unmodified and in its entirety in all distributions of the software,
13 * modified or unmodified, in source code or in binary form.
14 *
15 * Copyright (c) 2002-2005 The Regents of The University of Michigan
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Steve Reinhardt
42 * Dave Greene
43 * Nathan Binkert
44 */
45
46#ifndef __CPU_SIMPLE_BASE_HH__
47#define __CPU_SIMPLE_BASE_HH__
48
49#include "base/statistics.hh"
50#include "config/the_isa.hh"
51#include "cpu/base.hh"
52#include "cpu/checker/cpu.hh"
53#include "cpu/exec_context.hh"
54#include "cpu/pc_event.hh"
55#include "cpu/simple_thread.hh"
56#include "cpu/static_inst.hh"
57#include "mem/packet.hh"
58#include "mem/port.hh"
59#include "mem/request.hh"
60#include "sim/eventq.hh"
61#include "sim/full_system.hh"
62#include "sim/system.hh"
63
64// forward declarations
65class Checkpoint;
66class Process;
67class Processor;
68class ThreadContext;
69
70namespace TheISA
71{
72 class DTB;
73 class ITB;
74}
75
76namespace Trace {
77 class InstRecord;
78}
79
80struct BaseSimpleCPUParams;
81class BPredUnit;
82
83class BaseSimpleCPU : public BaseCPU, public ExecContext
84{
85 protected:
86 typedef TheISA::MiscReg MiscReg;
87 typedef TheISA::FloatReg FloatReg;
88 typedef TheISA::FloatRegBits FloatRegBits;
89 typedef TheISA::CCReg CCReg;
90 typedef TheISA::VectorReg VectorReg;
91
92 BPredUnit *branchPred;
93
94 protected:
95 Trace::InstRecord *traceData;
96
97 inline void checkPcEventQueue() {
98 Addr oldpc, pc = thread->instAddr();
99 do {
100 oldpc = pc;
101 system->pcEventQueue.service(tc);
102 pc = thread->instAddr();
103 } while (oldpc != pc);
104 }
105
106 public:
107 void wakeup();
108
109 void zero_fill_64(Addr addr) {
110 static int warned = 0;
111 if (!warned) {
112 warn ("WH64 is not implemented");
113 warned = 1;
114 }
115 };
116
117 public:
118 BaseSimpleCPU(BaseSimpleCPUParams *params);
119 virtual ~BaseSimpleCPU();
120
121 public:
122 /** SimpleThread object, provides all the architectural state. */
123 SimpleThread *thread;
124
125 /** ThreadContext object, provides an interface for external
126 * objects to modify this thread's state.
127 */
128 ThreadContext *tc;
129
130 CheckerCPU *checker;
131
132 protected:
133
134 enum Status {
135 Idle,
136 Running,
137 Faulting,
138 ITBWaitResponse,
139 IcacheRetry,
140 IcacheWaitResponse,
141 IcacheWaitSwitch,
142 DTBWaitResponse,
143 DcacheRetry,
144 DcacheWaitResponse,
145 DcacheWaitSwitch,
146 };
147
148 Status _status;
149
150 public:
151
152 Addr dbg_vtophys(Addr addr);
153
154 bool interval_stats;
155
156 // current instruction
157 TheISA::MachInst inst;
158
159 StaticInstPtr curStaticInst;
160 StaticInstPtr curMacroStaticInst;
161
162 //This is the offset from the current pc that fetch should be performed at
163 Addr fetchOffset;
164 //This flag says to stay at the current pc. This is useful for
165 //instructions which go beyond MachInst boundaries.
166 bool stayAtPC;
167
168 void checkForInterrupts();
169 void setupFetchRequest(Request *req);
170 void preExecute();
171 void postExecute();
172 void advancePC(const Fault &fault);
173
174 virtual void haltContext(ThreadID thread_num);
175
176 // statistics
177 virtual void regStats();
178 virtual void resetStats();
179
180 virtual void startup();
181
182 // number of simulated instructions
183 Counter numInst;
184 Counter startNumInst;
185 Stats::Scalar numInsts;
186 Counter numOp;
187 Counter startNumOp;
188 Stats::Scalar numOps;
189
190 void countInst()
191 {
192 if (!curStaticInst->isMicroop() || curStaticInst->isLastMicroop()) {
193 numInst++;
194 numInsts++;
195 }
196 numOp++;
197 numOps++;
198
199 system->totalNumInsts++;
200 thread->funcExeInst++;
201 }
202
203 virtual Counter totalInsts() const
204 {
205 return numInst - startNumInst;
206 }
207
208 virtual Counter totalOps() const
209 {
210 return numOp - startNumOp;
211 }
212
213 //number of integer alu accesses
214 Stats::Scalar numIntAluAccesses;
215
216 //number of float alu accesses
217 Stats::Scalar numFpAluAccesses;
218
219 //number of function calls/returns
220 Stats::Scalar numCallsReturns;
221
222 //conditional control instructions;
223 Stats::Scalar numCondCtrlInsts;
224
225 //number of int instructions
226 Stats::Scalar numIntInsts;
227
228 //number of float instructions
229 Stats::Scalar numFpInsts;
230
231 //number of integer register file accesses
232 Stats::Scalar numIntRegReads;
233 Stats::Scalar numIntRegWrites;
234
235 //number of float register file accesses
236 Stats::Scalar numFpRegReads;
237 Stats::Scalar numFpRegWrites;
238
239 //number of condition code register file accesses
240 Stats::Scalar numCCRegReads;
241 Stats::Scalar numCCRegWrites;
242
90
91 BPredUnit *branchPred;
92
93 protected:
94 Trace::InstRecord *traceData;
95
96 inline void checkPcEventQueue() {
97 Addr oldpc, pc = thread->instAddr();
98 do {
99 oldpc = pc;
100 system->pcEventQueue.service(tc);
101 pc = thread->instAddr();
102 } while (oldpc != pc);
103 }
104
105 public:
106 void wakeup();
107
108 void zero_fill_64(Addr addr) {
109 static int warned = 0;
110 if (!warned) {
111 warn ("WH64 is not implemented");
112 warned = 1;
113 }
114 };
115
116 public:
117 BaseSimpleCPU(BaseSimpleCPUParams *params);
118 virtual ~BaseSimpleCPU();
119
120 public:
121 /** SimpleThread object, provides all the architectural state. */
122 SimpleThread *thread;
123
124 /** ThreadContext object, provides an interface for external
125 * objects to modify this thread's state.
126 */
127 ThreadContext *tc;
128
129 CheckerCPU *checker;
130
131 protected:
132
133 enum Status {
134 Idle,
135 Running,
136 Faulting,
137 ITBWaitResponse,
138 IcacheRetry,
139 IcacheWaitResponse,
140 IcacheWaitSwitch,
141 DTBWaitResponse,
142 DcacheRetry,
143 DcacheWaitResponse,
144 DcacheWaitSwitch,
145 };
146
147 Status _status;
148
149 public:
150
151 Addr dbg_vtophys(Addr addr);
152
153 bool interval_stats;
154
155 // current instruction
156 TheISA::MachInst inst;
157
158 StaticInstPtr curStaticInst;
159 StaticInstPtr curMacroStaticInst;
160
161 //This is the offset from the current pc that fetch should be performed at
162 Addr fetchOffset;
163 //This flag says to stay at the current pc. This is useful for
164 //instructions which go beyond MachInst boundaries.
165 bool stayAtPC;
166
167 void checkForInterrupts();
168 void setupFetchRequest(Request *req);
169 void preExecute();
170 void postExecute();
171 void advancePC(const Fault &fault);
172
173 virtual void haltContext(ThreadID thread_num);
174
175 // statistics
176 virtual void regStats();
177 virtual void resetStats();
178
179 virtual void startup();
180
181 // number of simulated instructions
182 Counter numInst;
183 Counter startNumInst;
184 Stats::Scalar numInsts;
185 Counter numOp;
186 Counter startNumOp;
187 Stats::Scalar numOps;
188
189 void countInst()
190 {
191 if (!curStaticInst->isMicroop() || curStaticInst->isLastMicroop()) {
192 numInst++;
193 numInsts++;
194 }
195 numOp++;
196 numOps++;
197
198 system->totalNumInsts++;
199 thread->funcExeInst++;
200 }
201
202 virtual Counter totalInsts() const
203 {
204 return numInst - startNumInst;
205 }
206
207 virtual Counter totalOps() const
208 {
209 return numOp - startNumOp;
210 }
211
212 //number of integer alu accesses
213 Stats::Scalar numIntAluAccesses;
214
215 //number of float alu accesses
216 Stats::Scalar numFpAluAccesses;
217
218 //number of function calls/returns
219 Stats::Scalar numCallsReturns;
220
221 //conditional control instructions;
222 Stats::Scalar numCondCtrlInsts;
223
224 //number of int instructions
225 Stats::Scalar numIntInsts;
226
227 //number of float instructions
228 Stats::Scalar numFpInsts;
229
230 //number of integer register file accesses
231 Stats::Scalar numIntRegReads;
232 Stats::Scalar numIntRegWrites;
233
234 //number of float register file accesses
235 Stats::Scalar numFpRegReads;
236 Stats::Scalar numFpRegWrites;
237
238 //number of condition code register file accesses
239 Stats::Scalar numCCRegReads;
240 Stats::Scalar numCCRegWrites;
241
243 //number of vector register file accesses
244 Stats::Scalar numVectorRegReads;
245 Stats::Scalar numVectorRegWrites;
246
247 // number of simulated memory references
248 Stats::Scalar numMemRefs;
249 Stats::Scalar numLoadInsts;
250 Stats::Scalar numStoreInsts;
251
252 // number of idle cycles
253 Stats::Formula numIdleCycles;
254
255 // number of busy cycles
256 Stats::Formula numBusyCycles;
257
258 // number of simulated loads
259 Counter numLoad;
260 Counter startNumLoad;
261
262 // number of idle cycles
263 Stats::Average notIdleFraction;
264 Stats::Formula idleFraction;
265
266 // number of cycles stalled for I-cache responses
267 Stats::Scalar icacheStallCycles;
268 Counter lastIcacheStall;
269
270 // number of cycles stalled for D-cache responses
271 Stats::Scalar dcacheStallCycles;
272 Counter lastDcacheStall;
273
274 /// @{
275 /// Total number of branches fetched
276 Stats::Scalar numBranches;
277 /// Number of branches predicted as taken
278 Stats::Scalar numPredictedBranches;
279 /// Number of misprediced branches
280 Stats::Scalar numBranchMispred;
281 /// @}
282
283 // instruction mix histogram by OpClass
284 Stats::Vector statExecutedInstType;
285
286 void serializeThread(CheckpointOut &cp,
287 ThreadID tid) const M5_ATTR_OVERRIDE;
288 void unserializeThread(CheckpointIn &cp, ThreadID tid) M5_ATTR_OVERRIDE;
289
290 // These functions are only used in CPU models that split
291 // effective address computation from the actual memory access.
292 void setEA(Addr EA) { panic("BaseSimpleCPU::setEA() not implemented\n"); }
293 Addr getEA() const { panic("BaseSimpleCPU::getEA() not implemented\n"); }
294
295 // The register accessor methods provide the index of the
296 // instruction's operand (e.g., 0 or 1), not the architectural
297 // register index, to simplify the implementation of register
298 // renaming. We find the architectural register index by indexing
299 // into the instruction's own operand index table. Note that a
300 // raw pointer to the StaticInst is provided instead of a
301 // ref-counted StaticInstPtr to redice overhead. This is fine as
302 // long as these methods don't copy the pointer into any long-term
303 // storage (which is pretty hard to imagine they would have reason
304 // to do).
305
306 IntReg readIntRegOperand(const StaticInst *si, int idx)
307 {
308 numIntRegReads++;
309 return thread->readIntReg(si->srcRegIdx(idx));
310 }
311
312 FloatReg readFloatRegOperand(const StaticInst *si, int idx)
313 {
314 numFpRegReads++;
315 int reg_idx = si->srcRegIdx(idx) - TheISA::FP_Reg_Base;
316 return thread->readFloatReg(reg_idx);
317 }
318
319 FloatRegBits readFloatRegOperandBits(const StaticInst *si, int idx)
320 {
321 numFpRegReads++;
322 int reg_idx = si->srcRegIdx(idx) - TheISA::FP_Reg_Base;
323 return thread->readFloatRegBits(reg_idx);
324 }
325
326 CCReg readCCRegOperand(const StaticInst *si, int idx)
327 {
328 numCCRegReads++;
329 int reg_idx = si->srcRegIdx(idx) - TheISA::CC_Reg_Base;
330 return thread->readCCReg(reg_idx);
331 }
332
242 // number of simulated memory references
243 Stats::Scalar numMemRefs;
244 Stats::Scalar numLoadInsts;
245 Stats::Scalar numStoreInsts;
246
247 // number of idle cycles
248 Stats::Formula numIdleCycles;
249
250 // number of busy cycles
251 Stats::Formula numBusyCycles;
252
253 // number of simulated loads
254 Counter numLoad;
255 Counter startNumLoad;
256
257 // number of idle cycles
258 Stats::Average notIdleFraction;
259 Stats::Formula idleFraction;
260
261 // number of cycles stalled for I-cache responses
262 Stats::Scalar icacheStallCycles;
263 Counter lastIcacheStall;
264
265 // number of cycles stalled for D-cache responses
266 Stats::Scalar dcacheStallCycles;
267 Counter lastDcacheStall;
268
269 /// @{
270 /// Total number of branches fetched
271 Stats::Scalar numBranches;
272 /// Number of branches predicted as taken
273 Stats::Scalar numPredictedBranches;
274 /// Number of misprediced branches
275 Stats::Scalar numBranchMispred;
276 /// @}
277
278 // instruction mix histogram by OpClass
279 Stats::Vector statExecutedInstType;
280
281 void serializeThread(CheckpointOut &cp,
282 ThreadID tid) const M5_ATTR_OVERRIDE;
283 void unserializeThread(CheckpointIn &cp, ThreadID tid) M5_ATTR_OVERRIDE;
284
285 // These functions are only used in CPU models that split
286 // effective address computation from the actual memory access.
287 void setEA(Addr EA) { panic("BaseSimpleCPU::setEA() not implemented\n"); }
288 Addr getEA() const { panic("BaseSimpleCPU::getEA() not implemented\n"); }
289
290 // The register accessor methods provide the index of the
291 // instruction's operand (e.g., 0 or 1), not the architectural
292 // register index, to simplify the implementation of register
293 // renaming. We find the architectural register index by indexing
294 // into the instruction's own operand index table. Note that a
295 // raw pointer to the StaticInst is provided instead of a
296 // ref-counted StaticInstPtr to redice overhead. This is fine as
297 // long as these methods don't copy the pointer into any long-term
298 // storage (which is pretty hard to imagine they would have reason
299 // to do).
300
301 IntReg readIntRegOperand(const StaticInst *si, int idx)
302 {
303 numIntRegReads++;
304 return thread->readIntReg(si->srcRegIdx(idx));
305 }
306
307 FloatReg readFloatRegOperand(const StaticInst *si, int idx)
308 {
309 numFpRegReads++;
310 int reg_idx = si->srcRegIdx(idx) - TheISA::FP_Reg_Base;
311 return thread->readFloatReg(reg_idx);
312 }
313
314 FloatRegBits readFloatRegOperandBits(const StaticInst *si, int idx)
315 {
316 numFpRegReads++;
317 int reg_idx = si->srcRegIdx(idx) - TheISA::FP_Reg_Base;
318 return thread->readFloatRegBits(reg_idx);
319 }
320
321 CCReg readCCRegOperand(const StaticInst *si, int idx)
322 {
323 numCCRegReads++;
324 int reg_idx = si->srcRegIdx(idx) - TheISA::CC_Reg_Base;
325 return thread->readCCReg(reg_idx);
326 }
327
333 const VectorReg &readVectorRegOperand(const StaticInst *si, int idx)
334 {
335 numVectorRegReads++;
336 int reg_idx = si->srcRegIdx(idx) - TheISA::Vector_Reg_Base;
337 return thread->readVectorReg(reg_idx);
338 }
339
340 void setIntRegOperand(const StaticInst *si, int idx, IntReg val)
341 {
342 numIntRegWrites++;
343 thread->setIntReg(si->destRegIdx(idx), val);
344 }
345
346 void setFloatRegOperand(const StaticInst *si, int idx, FloatReg val)
347 {
348 numFpRegWrites++;
349 int reg_idx = si->destRegIdx(idx) - TheISA::FP_Reg_Base;
350 thread->setFloatReg(reg_idx, val);
351 }
352
353 void setFloatRegOperandBits(const StaticInst *si, int idx,
354 FloatRegBits val)
355 {
356 numFpRegWrites++;
357 int reg_idx = si->destRegIdx(idx) - TheISA::FP_Reg_Base;
358 thread->setFloatRegBits(reg_idx, val);
359 }
360
361 void setCCRegOperand(const StaticInst *si, int idx, CCReg val)
362 {
363 numCCRegWrites++;
364 int reg_idx = si->destRegIdx(idx) - TheISA::CC_Reg_Base;
365 thread->setCCReg(reg_idx, val);
366 }
367
328 void setIntRegOperand(const StaticInst *si, int idx, IntReg val)
329 {
330 numIntRegWrites++;
331 thread->setIntReg(si->destRegIdx(idx), val);
332 }
333
334 void setFloatRegOperand(const StaticInst *si, int idx, FloatReg val)
335 {
336 numFpRegWrites++;
337 int reg_idx = si->destRegIdx(idx) - TheISA::FP_Reg_Base;
338 thread->setFloatReg(reg_idx, val);
339 }
340
341 void setFloatRegOperandBits(const StaticInst *si, int idx,
342 FloatRegBits val)
343 {
344 numFpRegWrites++;
345 int reg_idx = si->destRegIdx(idx) - TheISA::FP_Reg_Base;
346 thread->setFloatRegBits(reg_idx, val);
347 }
348
349 void setCCRegOperand(const StaticInst *si, int idx, CCReg val)
350 {
351 numCCRegWrites++;
352 int reg_idx = si->destRegIdx(idx) - TheISA::CC_Reg_Base;
353 thread->setCCReg(reg_idx, val);
354 }
355
368 void setVectorRegOperand(const StaticInst *si, int idx,
369 const VectorReg &val)
370 {
371 numVectorRegWrites++;
372 int reg_idx = si->destRegIdx(idx) - TheISA::Vector_Reg_Base;
373 thread->setVectorReg(reg_idx, val);
374 }
375
376 bool readPredicate() { return thread->readPredicate(); }
377 void setPredicate(bool val)
378 {
379 thread->setPredicate(val);
380 if (traceData) {
381 traceData->setPredicate(val);
382 }
383 }
384 TheISA::PCState pcState() const { return thread->pcState(); }
385 void pcState(const TheISA::PCState &val) { thread->pcState(val); }
386 Addr instAddr() { return thread->instAddr(); }
387 Addr nextInstAddr() { return thread->nextInstAddr(); }
388 MicroPC microPC() { return thread->microPC(); }
389
390 MiscReg readMiscRegNoEffect(int misc_reg) const
391 {
392 return thread->readMiscRegNoEffect(misc_reg);
393 }
394
395 MiscReg readMiscReg(int misc_reg)
396 {
397 numIntRegReads++;
398 return thread->readMiscReg(misc_reg);
399 }
400
401 void setMiscReg(int misc_reg, const MiscReg &val)
402 {
403 numIntRegWrites++;
404 return thread->setMiscReg(misc_reg, val);
405 }
406
407 MiscReg readMiscRegOperand(const StaticInst *si, int idx)
408 {
409 numIntRegReads++;
410 int reg_idx = si->srcRegIdx(idx) - TheISA::Misc_Reg_Base;
411 return thread->readMiscReg(reg_idx);
412 }
413
414 void setMiscRegOperand(
415 const StaticInst *si, int idx, const MiscReg &val)
416 {
417 numIntRegWrites++;
418 int reg_idx = si->destRegIdx(idx) - TheISA::Misc_Reg_Base;
419 return thread->setMiscReg(reg_idx, val);
420 }
421
422 void demapPage(Addr vaddr, uint64_t asn)
423 {
424 thread->demapPage(vaddr, asn);
425 }
426
427 void demapInstPage(Addr vaddr, uint64_t asn)
428 {
429 thread->demapInstPage(vaddr, asn);
430 }
431
432 void demapDataPage(Addr vaddr, uint64_t asn)
433 {
434 thread->demapDataPage(vaddr, asn);
435 }
436
437 unsigned int readStCondFailures() const {
438 return thread->readStCondFailures();
439 }
440
441 void setStCondFailures(unsigned int sc_failures) {
442 thread->setStCondFailures(sc_failures);
443 }
444
445 MiscReg readRegOtherThread(int regIdx, ThreadID tid = InvalidThreadID)
446 {
447 panic("Simple CPU models do not support multithreaded "
448 "register access.\n");
449 }
450
451 void setRegOtherThread(int regIdx, MiscReg val,
452 ThreadID tid = InvalidThreadID)
453 {
454 panic("Simple CPU models do not support multithreaded "
455 "register access.\n");
456 }
457
458 //Fault CacheOp(uint8_t Op, Addr EA);
459
460 Fault hwrei() { return thread->hwrei(); }
461 bool simPalCheck(int palFunc) { return thread->simPalCheck(palFunc); }
462
463 void
464 syscall(int64_t callnum)
465 {
466 if (FullSystem)
467 panic("Syscall emulation isn't available in FS mode.\n");
468
469 thread->syscall(callnum);
470 }
471
472 ThreadContext *tcBase() { return tc; }
473
474 private:
475 TheISA::PCState pred_pc;
476
477 public:
478 // monitor/mwait funtions
479 void armMonitor(Addr address) { BaseCPU::armMonitor(address); }
480 bool mwait(PacketPtr pkt) { return BaseCPU::mwait(pkt); }
481 void mwaitAtomic(ThreadContext *tc)
482 { return BaseCPU::mwaitAtomic(tc, thread->dtb); }
483 AddressMonitor *getAddrMonitor() { return BaseCPU::getCpuAddrMonitor(); }
484};
485
486#endif // __CPU_SIMPLE_BASE_HH__
356 bool readPredicate() { return thread->readPredicate(); }
357 void setPredicate(bool val)
358 {
359 thread->setPredicate(val);
360 if (traceData) {
361 traceData->setPredicate(val);
362 }
363 }
364 TheISA::PCState pcState() const { return thread->pcState(); }
365 void pcState(const TheISA::PCState &val) { thread->pcState(val); }
366 Addr instAddr() { return thread->instAddr(); }
367 Addr nextInstAddr() { return thread->nextInstAddr(); }
368 MicroPC microPC() { return thread->microPC(); }
369
370 MiscReg readMiscRegNoEffect(int misc_reg) const
371 {
372 return thread->readMiscRegNoEffect(misc_reg);
373 }
374
375 MiscReg readMiscReg(int misc_reg)
376 {
377 numIntRegReads++;
378 return thread->readMiscReg(misc_reg);
379 }
380
381 void setMiscReg(int misc_reg, const MiscReg &val)
382 {
383 numIntRegWrites++;
384 return thread->setMiscReg(misc_reg, val);
385 }
386
387 MiscReg readMiscRegOperand(const StaticInst *si, int idx)
388 {
389 numIntRegReads++;
390 int reg_idx = si->srcRegIdx(idx) - TheISA::Misc_Reg_Base;
391 return thread->readMiscReg(reg_idx);
392 }
393
394 void setMiscRegOperand(
395 const StaticInst *si, int idx, const MiscReg &val)
396 {
397 numIntRegWrites++;
398 int reg_idx = si->destRegIdx(idx) - TheISA::Misc_Reg_Base;
399 return thread->setMiscReg(reg_idx, val);
400 }
401
402 void demapPage(Addr vaddr, uint64_t asn)
403 {
404 thread->demapPage(vaddr, asn);
405 }
406
407 void demapInstPage(Addr vaddr, uint64_t asn)
408 {
409 thread->demapInstPage(vaddr, asn);
410 }
411
412 void demapDataPage(Addr vaddr, uint64_t asn)
413 {
414 thread->demapDataPage(vaddr, asn);
415 }
416
417 unsigned int readStCondFailures() const {
418 return thread->readStCondFailures();
419 }
420
421 void setStCondFailures(unsigned int sc_failures) {
422 thread->setStCondFailures(sc_failures);
423 }
424
425 MiscReg readRegOtherThread(int regIdx, ThreadID tid = InvalidThreadID)
426 {
427 panic("Simple CPU models do not support multithreaded "
428 "register access.\n");
429 }
430
431 void setRegOtherThread(int regIdx, MiscReg val,
432 ThreadID tid = InvalidThreadID)
433 {
434 panic("Simple CPU models do not support multithreaded "
435 "register access.\n");
436 }
437
438 //Fault CacheOp(uint8_t Op, Addr EA);
439
440 Fault hwrei() { return thread->hwrei(); }
441 bool simPalCheck(int palFunc) { return thread->simPalCheck(palFunc); }
442
443 void
444 syscall(int64_t callnum)
445 {
446 if (FullSystem)
447 panic("Syscall emulation isn't available in FS mode.\n");
448
449 thread->syscall(callnum);
450 }
451
452 ThreadContext *tcBase() { return tc; }
453
454 private:
455 TheISA::PCState pred_pc;
456
457 public:
458 // monitor/mwait funtions
459 void armMonitor(Addr address) { BaseCPU::armMonitor(address); }
460 bool mwait(PacketPtr pkt) { return BaseCPU::mwait(pkt); }
461 void mwaitAtomic(ThreadContext *tc)
462 { return BaseCPU::mwaitAtomic(tc, thread->dtb); }
463 AddressMonitor *getAddrMonitor() { return BaseCPU::getCpuAddrMonitor(); }
464};
465
466#endif // __CPU_SIMPLE_BASE_HH__