merge
[gem5.git] / src / cpu / ozone / dyn_inst.hh
1 /*
2 * Copyright (c) 2005-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: Kevin Lim
29 */
30
31 #ifndef __CPU_OZONE_DYN_INST_HH__
32 #define __CPU_OZONE_DYN_INST_HH__
33
34 #include "arch/isa_traits.hh"
35 #include "arch/types.hh"
36 #include "config/full_system.hh"
37 #include "cpu/base_dyn_inst.hh"
38 #include "cpu/inst_seq.hh"
39 #include "cpu/ozone/cpu.hh" // MUST include this
40 #include "cpu/ozone/ozone_impl.hh"
41
42 #include <list>
43 #include <vector>
44
45 template <class Impl>
46 class OzoneDynInst : public BaseDynInst<Impl>
47 {
48 public:
49 // Typedefs
50 typedef typename Impl::OzoneCPU OzoneCPU;
51
52 typedef typename OzoneCPU::ImplState ImplState;
53
54 // Typedef for DynInstPtr. This is really just a RefCountingPtr<OoODynInst>.
55 typedef typename Impl::DynInstPtr DynInstPtr;
56
57 typedef TheISA::ExtMachInst ExtMachInst;
58 typedef TheISA::MachInst MachInst;
59 typedef TheISA::FloatReg FloatReg;
60 typedef TheISA::FloatRegBits FloatRegBits;
61 typedef TheISA::MiscReg MiscReg;
62 typedef typename std::list<DynInstPtr>::iterator ListIt;
63
64 // Note that this is duplicated from the BaseDynInst class; I'm
65 // simply not sure the enum would carry through so I could use it
66 // in array declarations in this class.
67 enum {
68 MaxInstSrcRegs = TheISA::MaxInstSrcRegs,
69 MaxInstDestRegs = TheISA::MaxInstDestRegs
70 };
71
72 OzoneDynInst(OzoneCPU *cpu);
73
74 OzoneDynInst(ExtMachInst inst, Addr PC, Addr Pred_PC,
75 InstSeqNum seq_num, OzoneCPU *cpu);
76
77 OzoneDynInst(StaticInstPtr inst);
78
79 ~OzoneDynInst();
80
81 void setSrcInst(DynInstPtr &newSrcInst, int regIdx)
82 { srcInsts[regIdx] = newSrcInst; }
83
84 bool srcInstReady(int regIdx);
85
86 void setPrevDestInst(DynInstPtr &oldDestInst, int regIdx)
87 { prevDestInst[regIdx] = oldDestInst; }
88
89 DynInstPtr &getPrevDestInst(int regIdx)
90 { return prevDestInst[regIdx]; }
91
92 void addDependent(DynInstPtr &dependent_inst);
93
94 std::vector<DynInstPtr> &getDependents() { return dependents; }
95 std::vector<DynInstPtr> &getMemDeps() { return memDependents; }
96 std::list<DynInstPtr> &getMemSrcs() { return srcMemInsts; }
97
98 void wakeDependents();
99
100 void wakeMemDependents();
101
102 void addMemDependent(DynInstPtr &inst) { memDependents.push_back(inst); }
103
104 void addSrcMemInst(DynInstPtr &inst) { srcMemInsts.push_back(inst); }
105
106 void markMemInstReady(OzoneDynInst<Impl> *inst);
107
108 // For now I will remove instructions from the list when they wake
109 // up. In the future, you only really need a counter.
110 bool memDepReady() { return srcMemInsts.empty(); }
111
112 private:
113 void initInstPtrs();
114
115 std::vector<DynInstPtr> dependents;
116
117 std::vector<DynInstPtr> memDependents;
118
119 std::list<DynInstPtr> srcMemInsts;
120
121 /** The instruction that produces the value of the source
122 * registers. These may be NULL if the value has already been
123 * read from the source instruction.
124 */
125 DynInstPtr srcInsts[MaxInstSrcRegs];
126
127 /**
128 * Previous rename instruction for this destination.
129 */
130 DynInstPtr prevDestInst[MaxInstSrcRegs];
131
132 public:
133
134 Fault initiateAcc();
135
136 Fault completeAcc(PacketPtr pkt);
137
138 // The register accessor methods provide the index of the
139 // instruction's operand (e.g., 0 or 1), not the architectural
140 // register index, to simplify the implementation of register
141 // renaming. We find the architectural register index by indexing
142 // into the instruction's own operand index table. Note that a
143 // raw pointer to the StaticInst is provided instead of a
144 // ref-counted StaticInstPtr to redice overhead. This is fine as
145 // long as these methods don't copy the pointer into any long-term
146 // storage (which is pretty hard to imagine they would have reason
147 // to do).
148
149 uint64_t readIntRegOperand(const StaticInst *si, int idx)
150 {
151 return srcInsts[idx]->readIntResult();
152 }
153
154 FloatReg readFloatRegOperand(const StaticInst *si, int idx)
155 {
156 return srcInsts[idx]->readFloatResult();
157 }
158
159 FloatReg readFloatRegOperand(const StaticInst *si, int idx)
160 {
161 return srcInsts[idx]->readFloatResult();
162 }
163
164 FloatRegBits readFloatRegOperandBits(const StaticInst *si, int idx)
165 {
166 return srcInsts[idx]->readIntResult();
167 }
168
169 /** @todo: Make results into arrays so they can handle multiple dest
170 * registers.
171 */
172 void setIntRegOperand(const StaticInst *si, int idx, uint64_t val)
173 {
174 BaseDynInst<Impl>::setIntReg(si, idx, val);
175 }
176
177 void setFloatRegOperand(const StaticInst *si, int idx, FloatReg val)
178 {
179 BaseDynInst<Impl>::setFloatReg(si, idx, val);
180 }
181
182 void setFloatRegOperandBits(const StaticInst *si, int idx,
183 FloatRegBits val)
184 {
185 BaseDynInst<Impl>::setFloatRegBits(si, idx, val);
186 }
187
188 void setIntResult(uint64_t result) { this->instResult.integer = result; }
189 void setDoubleResult(double result) { this->instResult.dbl = result; }
190
191 bool srcsReady();
192 bool eaSrcsReady();
193
194 Fault execute();
195
196 Fault executeEAComp()
197 { return NoFault; }
198
199 Fault executeMemAcc()
200 { return this->staticInst->memAccInst()->execute(this, this->traceData); }
201
202 void clearDependents();
203
204 void clearMemDependents();
205
206 public:
207 // ISA stuff
208 MiscReg readMiscRegNoEffect(int misc_reg);
209
210 MiscReg readMiscReg(int misc_reg);
211
212 void setMiscRegNoEffect(int misc_reg, const MiscReg &val);
213
214 void setMiscReg(int misc_reg, const MiscReg &val);
215
216 #if FULL_SYSTEM
217 Fault hwrei();
218 void trap(Fault fault);
219 bool simPalCheck(int palFunc);
220 #else
221 void syscall(uint64_t &callnum);
222 #endif
223
224 ListIt iqIt;
225 bool iqItValid;
226 };
227
228 #endif // __CPU_OZONE_DYN_INST_HH__