base_dyn_inst.hh (2654:9559cfa91b9d) base_dyn_inst.hh (2665:a124942bacb8)
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;

--- 10 unchanged lines hidden (view full) ---

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.
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;

--- 10 unchanged lines hidden (view full) ---

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: Kevin Lim
27 */
28
29#ifndef __CPU_BASE_DYN_INST_HH__
30#define __CPU_BASE_DYN_INST_HH__
31
29 */
30
31#ifndef __CPU_BASE_DYN_INST_HH__
32#define __CPU_BASE_DYN_INST_HH__
33
32#include <list>
33#include <string>
34#include <string>
35#include <vector>
34
35#include "base/fast_alloc.hh"
36#include "base/trace.hh"
37#include "config/full_system.hh"
38#include "cpu/exetrace.hh"
39#include "cpu/inst_seq.hh"
36
37#include "base/fast_alloc.hh"
38#include "base/trace.hh"
39#include "config/full_system.hh"
40#include "cpu/exetrace.hh"
41#include "cpu/inst_seq.hh"
42#include "cpu/o3/comm.hh"
40#include "cpu/static_inst.hh"
43#include "cpu/static_inst.hh"
41#include "encumbered/cpu/full/op_class.hh"
42#include "mem/functional/memory_control.hh"
43#include "sim/system.hh"
44/*
45#include "encumbered/cpu/full/bpred_update.hh"
44#include "encumbered/cpu/full/bpred_update.hh"
45#include "encumbered/cpu/full/op_class.hh"
46#include "encumbered/cpu/full/spec_memory.hh"
47#include "encumbered/cpu/full/spec_state.hh"
48#include "encumbered/mem/functional/main.hh"
46#include "encumbered/cpu/full/spec_memory.hh"
47#include "encumbered/cpu/full/spec_state.hh"
48#include "encumbered/mem/functional/main.hh"
49*/
50
51/**
52 * @file
53 * Defines a dynamic instruction context.
54 */
55
56// Forward declaration.
57class StaticInstPtr;
58
59template <class Impl>
60class BaseDynInst : public FastAlloc, public RefCounted
61{
62 public:
63 // Typedef for the CPU.
64 typedef typename Impl::FullCPU FullCPU;
49
50/**
51 * @file
52 * Defines a dynamic instruction context.
53 */
54
55// Forward declaration.
56class StaticInstPtr;
57
58template <class Impl>
59class BaseDynInst : public FastAlloc, public RefCounted
60{
61 public:
62 // Typedef for the CPU.
63 typedef typename Impl::FullCPU FullCPU;
65 typedef typename FullCPU::ImplState ImplState;
66
64
67 // Binary machine instruction type.
65 /// Binary machine instruction type.
68 typedef TheISA::MachInst MachInst;
66 typedef TheISA::MachInst MachInst;
69 // Extended machine instruction type
70 typedef TheISA::ExtMachInst ExtMachInst;
71 // Logical register index type.
67 /// Logical register index type.
72 typedef TheISA::RegIndex RegIndex;
68 typedef TheISA::RegIndex RegIndex;
73 // Integer register index type.
69 /// Integer register index type.
74 typedef TheISA::IntReg IntReg;
75
70 typedef TheISA::IntReg IntReg;
71
76 // The DynInstPtr type.
77 typedef typename Impl::DynInstPtr DynInstPtr;
78
79 // The list of instructions iterator type.
80 typedef typename std::list<DynInstPtr>::iterator ListIt;
81
82 enum {
72 enum {
83 MaxInstSrcRegs = TheISA::MaxInstSrcRegs, /// Max source regs
84 MaxInstDestRegs = TheISA::MaxInstDestRegs, /// Max dest regs
73 MaxInstSrcRegs = TheISA::MaxInstSrcRegs, //< Max source regs
74 MaxInstDestRegs = TheISA::MaxInstDestRegs, //< Max dest regs
85 };
86
75 };
76
87 /** The StaticInst used by this BaseDynInst. */
77 /** The static inst used by this dyn inst. */
88 StaticInstPtr staticInst;
89
90 ////////////////////////////////////////////
91 //
92 // INSTRUCTION EXECUTION
93 //
94 ////////////////////////////////////////////
78 StaticInstPtr staticInst;
79
80 ////////////////////////////////////////////
81 //
82 // INSTRUCTION EXECUTION
83 //
84 ////////////////////////////////////////////
95 /** InstRecord that tracks this instructions. */
96 Trace::InstRecord *traceData;
97
85 Trace::InstRecord *traceData;
86
98 /**
99 * Does a read to a given address.
100 * @param addr The address to read.
101 * @param data The read's data is written into this parameter.
102 * @param flags The request's flags.
103 * @return Returns any fault due to the read.
104 */
105 template <class T>
106 Fault read(Addr addr, T &data, unsigned flags);
107
87 template <class T>
88 Fault read(Addr addr, T &data, unsigned flags);
89
108 /**
109 * Does a write to a given address.
110 * @param data The data to be written.
111 * @param addr The address to write to.
112 * @param flags The request's flags.
113 * @param res The result of the write (for load locked/store conditionals).
114 * @return Returns any fault due to the write.
115 */
116 template <class T>
117 Fault write(T data, Addr addr, unsigned flags,
118 uint64_t *res);
119
120 void prefetch(Addr addr, unsigned flags);
121 void writeHint(Addr addr, int size, unsigned flags);
122 Fault copySrcTranslate(Addr src);
123 Fault copy(Addr dest);
124
125 /** @todo: Consider making this private. */
126 public:
90 template <class T>
91 Fault write(T data, Addr addr, unsigned flags,
92 uint64_t *res);
93
94 void prefetch(Addr addr, unsigned flags);
95 void writeHint(Addr addr, int size, unsigned flags);
96 Fault copySrcTranslate(Addr src);
97 Fault copy(Addr dest);
98
99 /** @todo: Consider making this private. */
100 public:
101 /** Is this instruction valid. */
102 bool valid;
103
127 /** The sequence number of the instruction. */
128 InstSeqNum seqNum;
129
104 /** The sequence number of the instruction. */
105 InstSeqNum seqNum;
106
130 /** Is the instruction in the IQ */
131 bool iqEntry;
107 /** How many source registers are ready. */
108 unsigned readyRegs;
132
109
133 /** Is the instruction in the ROB */
134 bool robEntry;
135
136 /** Is the instruction in the LSQ */
137 bool lsqEntry;
138
139 /** Is the instruction completed. */
140 bool completed;
141
110 /** Is the instruction completed. */
111 bool completed;
112
142 /** Is the instruction's result ready. */
143 bool resultReady;
144
145 /** Can this instruction issue. */
146 bool canIssue;
147
148 /** Has this instruction issued. */
149 bool issued;
150
151 /** Has this instruction executed (or made it through execute) yet. */
152 bool executed;
153
154 /** Can this instruction commit. */
155 bool canCommit;
156
113 /** Can this instruction issue. */
114 bool canIssue;
115
116 /** Has this instruction issued. */
117 bool issued;
118
119 /** Has this instruction executed (or made it through execute) yet. */
120 bool executed;
121
122 /** Can this instruction commit. */
123 bool canCommit;
124
157 /** Is this instruction committed. */
158 bool committed;
159
160 /** Is this instruction squashed. */
161 bool squashed;
162
163 /** Is this instruction squashed in the instruction queue. */
164 bool squashedInIQ;
165
125 /** Is this instruction squashed. */
126 bool squashed;
127
128 /** Is this instruction squashed in the instruction queue. */
129 bool squashedInIQ;
130
166 /** Is this instruction squashed in the instruction queue. */
167 bool squashedInLSQ;
168
169 /** Is this instruction squashed in the instruction queue. */
170 bool squashedInROB;
171
172 /** Is this a recover instruction. */
173 bool recoverInst;
174
175 /** Is this a thread blocking instruction. */
176 bool blockingInst; /* this inst has called thread_block() */
177
178 /** Is this a thread syncrhonization instruction. */
179 bool threadsyncWait;
180
181 /** The thread this instruction is from. */
182 short threadNumber;
183
184 /** data address space ID, for loads & stores. */
185 short asid;
186
131 /** Is this a recover instruction. */
132 bool recoverInst;
133
134 /** Is this a thread blocking instruction. */
135 bool blockingInst; /* this inst has called thread_block() */
136
137 /** Is this a thread syncrhonization instruction. */
138 bool threadsyncWait;
139
140 /** The thread this instruction is from. */
141 short threadNumber;
142
143 /** data address space ID, for loads & stores. */
144 short asid;
145
187 /** How many source registers are ready. */
188 unsigned readyRegs;
189
190 /** Pointer to the FullCPU object. */
191 FullCPU *cpu;
192
146 /** Pointer to the FullCPU object. */
147 FullCPU *cpu;
148
193 /** Pointer to the exec context. */
194 ImplState *thread;
149 /** Pointer to the exec context. Will not exist in the final version. */
150 CPUExecContext *cpuXC;
195
196 /** The kind of fault this instruction has generated. */
197 Fault fault;
198
151
152 /** The kind of fault this instruction has generated. */
153 Fault fault;
154
199 /** The memory request. */
200 MemReqPtr req;
201
202 /** The effective virtual address (lds & stores only). */
203 Addr effAddr;
204
205 /** The effective physical address. */
206 Addr physEffAddr;
207
208 /** Effective virtual address for a copy source. */
209 Addr copySrcEffAddr;

--- 31 unchanged lines hidden (view full) ---

241 Addr nextPC;
242
243 /** Predicted next PC. */
244 Addr predPC;
245
246 /** Count of total number of dynamic instructions. */
247 static int instcount;
248
155 /** The effective virtual address (lds & stores only). */
156 Addr effAddr;
157
158 /** The effective physical address. */
159 Addr physEffAddr;
160
161 /** Effective virtual address for a copy source. */
162 Addr copySrcEffAddr;

--- 31 unchanged lines hidden (view full) ---

194 Addr nextPC;
195
196 /** Predicted next PC. */
197 Addr predPC;
198
199 /** Count of total number of dynamic instructions. */
200 static int instcount;
201
249#ifdef DEBUG
250 void dumpSNList();
251#endif
252
253 /** Whether or not the source register is ready.
254 * @todo: Not sure this should be here vs the derived class.
202 /** Whether or not the source register is ready. Not sure this should be
203 * here vs. the derived class.
255 */
256 bool _readySrcRegIdx[MaxInstSrcRegs];
257
258 public:
204 */
205 bool _readySrcRegIdx[MaxInstSrcRegs];
206
207 public:
259 /** BaseDynInst constructor given a binary instruction.
260 * @param inst The binary instruction.
261 * @param PC The PC of the instruction.
262 * @param pred_PC The predicted next PC.
263 * @param seq_num The sequence number of the instruction.
264 * @param cpu Pointer to the instruction's CPU.
265 */
266 BaseDynInst(ExtMachInst inst, Addr PC, Addr pred_PC, InstSeqNum seq_num,
208 /** BaseDynInst constructor given a binary instruction. */
209 BaseDynInst(MachInst inst, Addr PC, Addr Pred_PC, InstSeqNum seq_num,
267 FullCPU *cpu);
268
210 FullCPU *cpu);
211
269 /** BaseDynInst constructor given a StaticInst pointer.
270 * @param _staticInst The StaticInst for this BaseDynInst.
271 */
212 /** BaseDynInst constructor given a static inst pointer. */
272 BaseDynInst(StaticInstPtr &_staticInst);
273
274 /** BaseDynInst destructor. */
275 ~BaseDynInst();
276
277 private:
278 /** Function to initialize variables in the constructors. */
279 void initVars();
280
281 public:
213 BaseDynInst(StaticInstPtr &_staticInst);
214
215 /** BaseDynInst destructor. */
216 ~BaseDynInst();
217
218 private:
219 /** Function to initialize variables in the constructors. */
220 void initVars();
221
222 public:
282 /**
283 * @todo: Make this function work; currently it is a dummy function.
284 * @param fault Last fault.
285 * @param cmd Last command.
286 * @param addr Virtual address of access.
287 * @param p Memory accessed.
288 * @param nbytes Access size.
289 */
290 void
223 void
291 trace_mem(Fault fault,
292 MemCmd cmd,
293 Addr addr,
294 void *p,
295 int nbytes);
224 trace_mem(Fault fault, // last fault
225 MemCmd cmd, // last command
226 Addr addr, // virtual address of access
227 void *p, // memory accessed
228 int nbytes); // access size
296
297 /** Dumps out contents of this BaseDynInst. */
298 void dump();
299
300 /** Dumps out contents of this BaseDynInst into given string. */
301 void dump(std::string &outstring);
302
303 /** Returns the fault type. */
304 Fault getFault() { return fault; }
305
306 /** Checks whether or not this instruction has had its branch target
307 * calculated yet. For now it is not utilized and is hacked to be
308 * always false.
229
230 /** Dumps out contents of this BaseDynInst. */
231 void dump();
232
233 /** Dumps out contents of this BaseDynInst into given string. */
234 void dump(std::string &outstring);
235
236 /** Returns the fault type. */
237 Fault getFault() { return fault; }
238
239 /** Checks whether or not this instruction has had its branch target
240 * calculated yet. For now it is not utilized and is hacked to be
241 * always false.
309 * @todo: Actually use this instruction.
310 */
311 bool doneTargCalc() { return false; }
312
313 /** Returns the next PC. This could be the speculative next PC if it is
314 * called prior to the actual branch target being calculated.
315 */
316 Addr readNextPC() { return nextPC; }
317
318 /** Set the predicted target of this current instruction. */
319 void setPredTarg(Addr predicted_PC) { predPC = predicted_PC; }
320
321 /** Returns the predicted target of the branch. */
322 Addr readPredTarg() { return predPC; }
323
324 /** Returns whether the instruction was predicted taken or not. */
242 */
243 bool doneTargCalc() { return false; }
244
245 /** Returns the next PC. This could be the speculative next PC if it is
246 * called prior to the actual branch target being calculated.
247 */
248 Addr readNextPC() { return nextPC; }
249
250 /** Set the predicted target of this current instruction. */
251 void setPredTarg(Addr predicted_PC) { predPC = predicted_PC; }
252
253 /** Returns the predicted target of the branch. */
254 Addr readPredTarg() { return predPC; }
255
256 /** Returns whether the instruction was predicted taken or not. */
325 bool predTaken() { return predPC != (PC + sizeof(MachInst)); }
257 bool predTaken() {
258 return( predPC != (PC + sizeof(MachInst) ) );
259 }
326
327 /** Returns whether the instruction mispredicted. */
260
261 /** Returns whether the instruction mispredicted. */
328 bool mispredicted() { return predPC != nextPC; }
262 bool mispredicted() { return (predPC != nextPC); }
329
330 //
331 // Instruction types. Forward checks to StaticInst object.
332 //
333 bool isNop() const { return staticInst->isNop(); }
334 bool isMemRef() const { return staticInst->isMemRef(); }
335 bool isLoad() const { return staticInst->isLoad(); }
336 bool isStore() const { return staticInst->isStore(); }
263
264 //
265 // Instruction types. Forward checks to StaticInst object.
266 //
267 bool isNop() const { return staticInst->isNop(); }
268 bool isMemRef() const { return staticInst->isMemRef(); }
269 bool isLoad() const { return staticInst->isLoad(); }
270 bool isStore() const { return staticInst->isStore(); }
337 bool isStoreConditional() const
338 { return staticInst->isStoreConditional(); }
339 bool isInstPrefetch() const { return staticInst->isInstPrefetch(); }
340 bool isDataPrefetch() const { return staticInst->isDataPrefetch(); }
341 bool isCopy() const { return staticInst->isCopy(); }
342 bool isInteger() const { return staticInst->isInteger(); }
343 bool isFloating() const { return staticInst->isFloating(); }
344 bool isControl() const { return staticInst->isControl(); }
345 bool isCall() const { return staticInst->isCall(); }
346 bool isReturn() const { return staticInst->isReturn(); }
347 bool isDirectCtrl() const { return staticInst->isDirectCtrl(); }
348 bool isIndirectCtrl() const { return staticInst->isIndirectCtrl(); }
349 bool isCondCtrl() const { return staticInst->isCondCtrl(); }
350 bool isUncondCtrl() const { return staticInst->isUncondCtrl(); }
351 bool isThreadSync() const { return staticInst->isThreadSync(); }
352 bool isSerializing() const { return staticInst->isSerializing(); }
271 bool isInstPrefetch() const { return staticInst->isInstPrefetch(); }
272 bool isDataPrefetch() const { return staticInst->isDataPrefetch(); }
273 bool isCopy() const { return staticInst->isCopy(); }
274 bool isInteger() const { return staticInst->isInteger(); }
275 bool isFloating() const { return staticInst->isFloating(); }
276 bool isControl() const { return staticInst->isControl(); }
277 bool isCall() const { return staticInst->isCall(); }
278 bool isReturn() const { return staticInst->isReturn(); }
279 bool isDirectCtrl() const { return staticInst->isDirectCtrl(); }
280 bool isIndirectCtrl() const { return staticInst->isIndirectCtrl(); }
281 bool isCondCtrl() const { return staticInst->isCondCtrl(); }
282 bool isUncondCtrl() const { return staticInst->isUncondCtrl(); }
283 bool isThreadSync() const { return staticInst->isThreadSync(); }
284 bool isSerializing() const { return staticInst->isSerializing(); }
353 bool isSerializeBefore() const
354 { return staticInst->isSerializeBefore() || serializeBefore; }
355 bool isSerializeAfter() const
356 { return staticInst->isSerializeAfter() || serializeAfter; }
357 bool isMemBarrier() const { return staticInst->isMemBarrier(); }
358 bool isWriteBarrier() const { return staticInst->isWriteBarrier(); }
359 bool isNonSpeculative() const { return staticInst->isNonSpeculative(); }
285 bool isMemBarrier() const { return staticInst->isMemBarrier(); }
286 bool isWriteBarrier() const { return staticInst->isWriteBarrier(); }
287 bool isNonSpeculative() const { return staticInst->isNonSpeculative(); }
360 bool isQuiesce() const { return staticInst->isQuiesce(); }
361 bool isIprAccess() const { return staticInst->isIprAccess(); }
362 bool isUnverifiable() const { return staticInst->isUnverifiable(); }
363
288
364 /** Temporarily sets this instruction as a serialize before instruction. */
365 void setSerializeBefore() { serializeBefore = true; }
366
367 /** Clears the serializeBefore part of this instruction. */
368 void clearSerializeBefore() { serializeBefore = false; }
369
370 /** Checks if this serializeBefore is only temporarily set. */
371 bool isTempSerializeBefore() { return serializeBefore; }
372
373 /** Tracks if instruction has been externally set as serializeBefore. */
374 bool serializeBefore;
375
376 /** Temporarily sets this instruction as a serialize after instruction. */
377 void setSerializeAfter() { serializeAfter = true; }
378
379 /** Clears the serializeAfter part of this instruction.*/
380 void clearSerializeAfter() { serializeAfter = false; }
381
382 /** Checks if this serializeAfter is only temporarily set. */
383 bool isTempSerializeAfter() { return serializeAfter; }
384
385 /** Tracks if instruction has been externally set as serializeAfter. */
386 bool serializeAfter;
387
388 /** Checks if the serialization part of this instruction has been
389 * handled. This does not apply to the temporary serializing
390 * state; it only applies to this instruction's own permanent
391 * serializing state.
392 */
393 bool isSerializeHandled() { return serializeHandled; }
394
395 /** Sets the serialization part of this instruction as handled. */
396 void setSerializeHandled() { serializeHandled = true; }
397
398 /** Whether or not the serialization of this instruction has been handled. */
399 bool serializeHandled;
400
401 /** Returns the opclass of this instruction. */
402 OpClass opClass() const { return staticInst->opClass(); }
403
404 /** Returns the branch target address. */
405 Addr branchTarget() const { return staticInst->branchTarget(PC); }
406
289 /** Returns the opclass of this instruction. */
290 OpClass opClass() const { return staticInst->opClass(); }
291
292 /** Returns the branch target address. */
293 Addr branchTarget() const { return staticInst->branchTarget(PC); }
294
407 /** Returns the number of source registers. */
408 int8_t numSrcRegs() const { return staticInst->numSrcRegs(); }
295 /** Number of source registers. */
296 int8_t numSrcRegs() const { return staticInst->numSrcRegs(); }
409
297
410 /** Returns the number of destination registers. */
298 /** Number of destination registers. */
411 int8_t numDestRegs() const { return staticInst->numDestRegs(); }
412
413 // the following are used to track physical register usage
414 // for machines with separate int & FP reg files
415 int8_t numFPDestRegs() const { return staticInst->numFPDestRegs(); }
416 int8_t numIntDestRegs() const { return staticInst->numIntDestRegs(); }
417
418 /** Returns the logical register index of the i'th destination register. */
299 int8_t numDestRegs() const { return staticInst->numDestRegs(); }
300
301 // the following are used to track physical register usage
302 // for machines with separate int & FP reg files
303 int8_t numFPDestRegs() const { return staticInst->numFPDestRegs(); }
304 int8_t numIntDestRegs() const { return staticInst->numIntDestRegs(); }
305
306 /** Returns the logical register index of the i'th destination register. */
419 RegIndex destRegIdx(int i) const { return staticInst->destRegIdx(i); }
307 RegIndex destRegIdx(int i) const
308 {
309 return staticInst->destRegIdx(i);
310 }
420
421 /** Returns the logical register index of the i'th source register. */
311
312 /** Returns the logical register index of the i'th source register. */
422 RegIndex srcRegIdx(int i) const { return staticInst->srcRegIdx(i); }
313 RegIndex srcRegIdx(int i) const
314 {
315 return staticInst->srcRegIdx(i);
316 }
423
424 /** Returns the result of an integer instruction. */
425 uint64_t readIntResult() { return instResult.integer; }
426
427 /** Returns the result of a floating point instruction. */
428 float readFloatResult() { return instResult.fp; }
429
430 /** Returns the result of a floating point (double) instruction. */
431 double readDoubleResult() { return instResult.dbl; }
432
317
318 /** Returns the result of an integer instruction. */
319 uint64_t readIntResult() { return instResult.integer; }
320
321 /** Returns the result of a floating point instruction. */
322 float readFloatResult() { return instResult.fp; }
323
324 /** Returns the result of a floating point (double) instruction. */
325 double readDoubleResult() { return instResult.dbl; }
326
433 void setIntReg(const StaticInst *si, int idx, uint64_t val)
327 //Push to .cc file.
328 /** Records that one of the source registers is ready. */
329 void markSrcRegReady()
434 {
330 {
435 instResult.integer = val;
331 ++readyRegs;
332 if(readyRegs == numSrcRegs()) {
333 canIssue = true;
334 }
436 }
437
335 }
336
438 void setFloatRegSingle(const StaticInst *si, int idx, float val)
337 /** Marks a specific register as ready.
338 * @todo: Move this to .cc file.
339 */
340 void markSrcRegReady(RegIndex src_idx)
439 {
341 {
440 instResult.fp = val;
441 }
342 ++readyRegs;
442
343
443 void setFloatRegDouble(const StaticInst *si, int idx, double val)
444 {
445 instResult.dbl = val;
446 }
344 _readySrcRegIdx[src_idx] = 1;
447
345
448 void setFloatRegInt(const StaticInst *si, int idx, uint64_t val)
449 {
450 instResult.integer = val;
346 if(readyRegs == numSrcRegs()) {
347 canIssue = true;
348 }
451 }
452
349 }
350
453 /** Records that one of the source registers is ready. */
454 void markSrcRegReady();
455
456 /** Marks a specific register as ready. */
457 void markSrcRegReady(RegIndex src_idx);
458
459 /** Returns if a source register is ready. */
460 bool isReadySrcRegIdx(int idx) const
461 {
462 return this->_readySrcRegIdx[idx];
463 }
464
465 /** Sets this instruction as completed. */
466 void setCompleted() { completed = true; }
467
351 /** Returns if a source register is ready. */
352 bool isReadySrcRegIdx(int idx) const
353 {
354 return this->_readySrcRegIdx[idx];
355 }
356
357 /** Sets this instruction as completed. */
358 void setCompleted() { completed = true; }
359
468 /** Returns whether or not this instruction is completed. */
360 /** Returns whethe or not this instruction is completed. */
469 bool isCompleted() const { return completed; }
470
361 bool isCompleted() const { return completed; }
362
471 void setResultReady() { resultReady = true; }
472
473 bool isResultReady() const { return resultReady; }
474
475 /** Sets this instruction as ready to issue. */
476 void setCanIssue() { canIssue = true; }
477
478 /** Returns whether or not this instruction is ready to issue. */
479 bool readyToIssue() const { return canIssue; }
480
481 /** Sets this instruction as issued from the IQ. */
482 void setIssued() { issued = true; }

--- 11 unchanged lines hidden (view full) ---

494 void setCanCommit() { canCommit = true; }
495
496 /** Clears this instruction as being ready to commit. */
497 void clearCanCommit() { canCommit = false; }
498
499 /** Returns whether or not this instruction is ready to commit. */
500 bool readyToCommit() const { return canCommit; }
501
363 /** Sets this instruction as ready to issue. */
364 void setCanIssue() { canIssue = true; }
365
366 /** Returns whether or not this instruction is ready to issue. */
367 bool readyToIssue() const { return canIssue; }
368
369 /** Sets this instruction as issued from the IQ. */
370 void setIssued() { issued = true; }

--- 11 unchanged lines hidden (view full) ---

382 void setCanCommit() { canCommit = true; }
383
384 /** Clears this instruction as being ready to commit. */
385 void clearCanCommit() { canCommit = false; }
386
387 /** Returns whether or not this instruction is ready to commit. */
388 bool readyToCommit() const { return canCommit; }
389
502 /** Sets this instruction as committed. */
503 void setCommitted() { committed = true; }
504
505 /** Returns whether or not this instruction is committed. */
506 bool isCommitted() const { return committed; }
507
508 /** Sets this instruction as squashed. */
509 void setSquashed() { squashed = true; }
510
511 /** Returns whether or not this instruction is squashed. */
512 bool isSquashed() const { return squashed; }
513
390 /** Sets this instruction as squashed. */
391 void setSquashed() { squashed = true; }
392
393 /** Returns whether or not this instruction is squashed. */
394 bool isSquashed() const { return squashed; }
395
514 //Instruction Queue Entry
515 //-----------------------
516 /** Sets this instruction as a entry the IQ. */
517 void setInIQ() { iqEntry = true; }
518
519 /** Sets this instruction as a entry the IQ. */
520 void removeInIQ() { iqEntry = false; }
521
522 /** Sets this instruction as squashed in the IQ. */
396 /** Sets this instruction as squashed in the IQ. */
523 void setSquashedInIQ() { squashedInIQ = true; squashed = true;}
397 void setSquashedInIQ() { squashedInIQ = true; }
524
525 /** Returns whether or not this instruction is squashed in the IQ. */
526 bool isSquashedInIQ() const { return squashedInIQ; }
527
398
399 /** Returns whether or not this instruction is squashed in the IQ. */
400 bool isSquashedInIQ() const { return squashedInIQ; }
401
528 /** Returns whether or not this instruction has issued. */
529 bool isInIQ() const { return iqEntry; }
530
531
532 //Load / Store Queue Functions
533 //-----------------------
534 /** Sets this instruction as a entry the LSQ. */
535 void setInLSQ() { lsqEntry = true; }
536
537 /** Sets this instruction as a entry the LSQ. */
538 void removeInLSQ() { lsqEntry = false; }
539
540 /** Sets this instruction as squashed in the LSQ. */
541 void setSquashedInLSQ() { squashedInLSQ = true;}
542
543 /** Returns whether or not this instruction is squashed in the LSQ. */
544 bool isSquashedInLSQ() const { return squashedInLSQ; }
545
546 /** Returns whether or not this instruction is in the LSQ. */
547 bool isInLSQ() const { return lsqEntry; }
548
549
550 //Reorder Buffer Functions
551 //-----------------------
552 /** Sets this instruction as a entry the ROB. */
553 void setInROB() { robEntry = true; }
554
555 /** Sets this instruction as a entry the ROB. */
556 void removeInROB() { robEntry = false; }
557
558 /** Sets this instruction as squashed in the ROB. */
559 void setSquashedInROB() { squashedInROB = true; }
560
561 /** Returns whether or not this instruction is squashed in the ROB. */
562 bool isSquashedInROB() const { return squashedInROB; }
563
564 /** Returns whether or not this instruction is in the ROB. */
565 bool isInROB() const { return robEntry; }
566
567 /** Read the PC of this instruction. */
568 const Addr readPC() const { return PC; }
569
570 /** Set the next PC of this instruction (its actual target). */
402 /** Read the PC of this instruction. */
403 const Addr readPC() const { return PC; }
404
405 /** Set the next PC of this instruction (its actual target). */
571 void setNextPC(uint64_t val)
572 {
573 nextPC = val;
574// instResult.integer = val;
575 }
406 void setNextPC(uint64_t val) { nextPC = val; }
576
407
577 void setASID(short addr_space_id) { asid = addr_space_id; }
578
579 void setThread(unsigned tid) { threadNumber = tid; }
580
581 void setState(ImplState *state) { thread = state; }
582
583 /** Returns the exec context.
584 * @todo: Remove this once the ExecContext is no longer used.
585 */
408 /** Returns the exec context.
409 * @todo: Remove this once the ExecContext is no longer used.
410 */
586 ExecContext *xcBase() { return thread->getXCProxy(); }
411 ExecContext *xcBase() { return cpuXC->getProxy(); }
587
588 private:
589 /** Instruction effective address.
590 * @todo: Consider if this is necessary or not.
591 */
592 Addr instEffAddr;
412
413 private:
414 /** Instruction effective address.
415 * @todo: Consider if this is necessary or not.
416 */
417 Addr instEffAddr;
593
594 /** Whether or not the effective address calculation is completed.
595 * @todo: Consider if this is necessary or not.
596 */
597 bool eaCalcDone;
598
599 public:
600 /** Sets the effective address. */
601 void setEA(Addr &ea) { instEffAddr = ea; eaCalcDone = true; }
602
603 /** Returns the effective address. */
418 /** Whether or not the effective address calculation is completed.
419 * @todo: Consider if this is necessary or not.
420 */
421 bool eaCalcDone;
422
423 public:
424 /** Sets the effective address. */
425 void setEA(Addr &ea) { instEffAddr = ea; eaCalcDone = true; }
426
427 /** Returns the effective address. */
604 const Addr &getEA() const { return req->vaddr; }
428 const Addr &getEA() const { return instEffAddr; }
605
606 /** Returns whether or not the eff. addr. calculation has been completed. */
607 bool doneEACalc() { return eaCalcDone; }
608
609 /** Returns whether or not the eff. addr. source registers are ready. */
610 bool eaSrcsReady();
611
429
430 /** Returns whether or not the eff. addr. calculation has been completed. */
431 bool doneEACalc() { return eaCalcDone; }
432
433 /** Returns whether or not the eff. addr. source registers are ready. */
434 bool eaSrcsReady();
435
612 /** Whether or not the memory operation is done. */
613 bool memOpDone;
614
615 public:
616 /** Load queue index. */
617 int16_t lqIdx;
618
619 /** Store queue index. */
620 int16_t sqIdx;
436 public:
437 /** Load queue index. */
438 int16_t lqIdx;
439
440 /** Store queue index. */
441 int16_t sqIdx;
621
622 bool reachedCommit;
623
624 /** Iterator pointing to this BaseDynInst in the list of all insts. */
625 ListIt instListIt;
626
627 /** Returns iterator to this instruction in the list of all insts. */
628 ListIt &getInstListIt() { return instListIt; }
629
630 /** Sets iterator for this instruction in the list of all insts. */
631 void setInstListIt(ListIt _instListIt) { instListIt = _instListIt; }
632};
633
634template<class Impl>
635template<class T>
636inline Fault
637BaseDynInst<Impl>::read(Addr addr, T &data, unsigned flags)
638{
442};
443
444template<class Impl>
445template<class T>
446inline Fault
447BaseDynInst<Impl>::read(Addr addr, T &data, unsigned flags)
448{
639 if (executed) {
640 fault = cpu->read(req, data, lqIdx);
641 return fault;
642 }
643
644 req = new MemReq(addr, thread->getXCProxy(), sizeof(T), flags);
449 MemReqPtr req = new MemReq(addr, cpuXC->getProxy(), sizeof(T), flags);
645 req->asid = asid;
450 req->asid = asid;
646 req->thread_num = threadNumber;
647 req->pc = this->PC;
648
451
649 if ((req->vaddr & (TheISA::VMPageSize - 1)) + req->size >
650 TheISA::VMPageSize) {
651 return TheISA::genAlignmentFault();
652 }
653
654 fault = cpu->translateDataReadReq(req);
655
452 fault = cpu->translateDataReadReq(req);
453
454 // Record key MemReq parameters so we can generate another one
455 // just like it for the timing access without calling translate()
456 // again (which might mess up the TLB).
457 // Do I ever really need this? -KTL 3/05
656 effAddr = req->vaddr;
657 physEffAddr = req->paddr;
658 memReqFlags = req->flags;
659
458 effAddr = req->vaddr;
459 physEffAddr = req->paddr;
460 memReqFlags = req->flags;
461
462 /**
463 * @todo
464 * Replace the disjoint functional memory with a unified one and remove
465 * this hack.
466 */
467#if !FULL_SYSTEM
468 req->paddr = req->vaddr;
469#endif
470
660 if (fault == NoFault) {
471 if (fault == NoFault) {
661#if FULL_SYSTEM
662 if (cpu->system->memctrl->badaddr(physEffAddr)) {
663 fault = TheISA::genMachineCheckFault();
664 data = (T)-1;
665 this->setExecuted();
666 } else {
667 fault = cpu->read(req, data, lqIdx);
668 }
669#else
670 fault = cpu->read(req, data, lqIdx);
472 fault = cpu->read(req, data, lqIdx);
671#endif
672 } else {
673 // Return a fixed value to keep simulation deterministic even
674 // along misspeculated paths.
675 data = (T)-1;
473 } else {
474 // Return a fixed value to keep simulation deterministic even
475 // along misspeculated paths.
476 data = (T)-1;
676
677 // Commit will have to clean up whatever happened. Set this
678 // instruction as executed.
679 this->setExecuted();
680 }
681
682 if (traceData) {
683 traceData->setAddr(addr);
684 traceData->setData(data);
685 }
686
687 return fault;

--- 4 unchanged lines hidden (view full) ---

692inline Fault
693BaseDynInst<Impl>::write(T data, Addr addr, unsigned flags, uint64_t *res)
694{
695 if (traceData) {
696 traceData->setAddr(addr);
697 traceData->setData(data);
698 }
699
477 }
478
479 if (traceData) {
480 traceData->setAddr(addr);
481 traceData->setData(data);
482 }
483
484 return fault;

--- 4 unchanged lines hidden (view full) ---

489inline Fault
490BaseDynInst<Impl>::write(T data, Addr addr, unsigned flags, uint64_t *res)
491{
492 if (traceData) {
493 traceData->setAddr(addr);
494 traceData->setData(data);
495 }
496
700 req = new MemReq(addr, thread->getXCProxy(), sizeof(T), flags);
497 MemReqPtr req = new MemReq(addr, cpuXC->getProxy(), sizeof(T), flags);
701
702 req->asid = asid;
498
499 req->asid = asid;
703 req->thread_num = threadNumber;
704 req->pc = this->PC;
705
500
706 if ((req->vaddr & (TheISA::VMPageSize - 1)) + req->size >
707 TheISA::VMPageSize) {
708 return TheISA::genAlignmentFault();
709 }
710
711 fault = cpu->translateDataWriteReq(req);
712
501 fault = cpu->translateDataWriteReq(req);
502
503 // Record key MemReq parameters so we can generate another one
504 // just like it for the timing access without calling translate()
505 // again (which might mess up the TLB).
713 effAddr = req->vaddr;
714 physEffAddr = req->paddr;
715 memReqFlags = req->flags;
716
506 effAddr = req->vaddr;
507 physEffAddr = req->paddr;
508 memReqFlags = req->flags;
509
510 /**
511 * @todo
512 * Replace the disjoint functional memory with a unified one and remove
513 * this hack.
514 */
515#if !FULL_SYSTEM
516 req->paddr = req->vaddr;
517#endif
518
717 if (fault == NoFault) {
519 if (fault == NoFault) {
718#if FULL_SYSTEM
719 if (cpu->system->memctrl->badaddr(physEffAddr)) {
720 fault = TheISA::genMachineCheckFault();
721 } else {
722 fault = cpu->write(req, data, sqIdx);
723 }
724#else
725 fault = cpu->write(req, data, sqIdx);
520 fault = cpu->write(req, data, sqIdx);
726#endif
727 }
728
729 if (res) {
730 // always return some result to keep misspeculated paths
731 // (which will ignore faults) deterministic
732 *res = (fault == NoFault) ? req->result : 0;
733 }
734
735 return fault;
736}
737
738#endif // __CPU_BASE_DYN_INST_HH__
521 }
522
523 if (res) {
524 // always return some result to keep misspeculated paths
525 // (which will ignore faults) deterministic
526 *res = (fault == NoFault) ? req->result : 0;
527 }
528
529 return fault;
530}
531
532#endif // __CPU_BASE_DYN_INST_HH__