cpu: Fix base FP and CC register index in o3 insertThread()
[gem5.git] / src / cpu / exec_context.hh
1 /*
2 * Copyright (c) 2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2002-2005 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Kevin Lim
41 * Andreas Sandberg
42 */
43
44 #ifndef __CPU_EXEC_CONTEXT_HH__
45 #define __CPU_EXEC_CONTEXT_HH__
46
47 #include "arch/registers.hh"
48 #include "base/types.hh"
49 #include "config/the_isa.hh"
50 #include "cpu/base.hh"
51 #include "cpu/static_inst_fwd.hh"
52 #include "cpu/translation.hh"
53
54 /**
55 * The ExecContext is an abstract base class the provides the
56 * interface used by the ISA to manipulate the state of the CPU model.
57 *
58 * Register accessor methods in this class typically provide the index
59 * of the instruction's operand (e.g., 0 or 1), not the architectural
60 * register index, to simplify the implementation of register
61 * renaming. The architectural register index can be found by
62 * indexing into the instruction's own operand index table.
63 *
64 * @note The methods in this class typically take a raw pointer to the
65 * StaticInst is provided instead of a ref-counted StaticInstPtr to
66 * reduce overhead as an argument. This is fine as long as the
67 * implementation doesn't copy the pointer into any long-term storage
68 * (which is pretty hard to imagine they would have reason to do).
69 */
70 class ExecContext {
71 public:
72 typedef TheISA::IntReg IntReg;
73 typedef TheISA::PCState PCState;
74 typedef TheISA::FloatReg FloatReg;
75 typedef TheISA::FloatRegBits FloatRegBits;
76 typedef TheISA::MiscReg MiscReg;
77
78 typedef TheISA::CCReg CCReg;
79
80 public:
81 /**
82 * @{
83 * @name Integer Register Interfaces
84 *
85 */
86
87 /** Reads an integer register. */
88 virtual IntReg readIntRegOperand(const StaticInst *si, int idx) = 0;
89
90 /** Sets an integer register to a value. */
91 virtual void setIntRegOperand(const StaticInst *si,
92 int idx, IntReg val) = 0;
93
94 /** @} */
95
96
97 /**
98 * @{
99 * @name Floating Point Register Interfaces
100 */
101
102 /** Reads a floating point register of single register width. */
103 virtual FloatReg readFloatRegOperand(const StaticInst *si, int idx) = 0;
104
105 /** Reads a floating point register in its binary format, instead
106 * of by value. */
107 virtual FloatRegBits readFloatRegOperandBits(const StaticInst *si,
108 int idx) = 0;
109
110 /** Sets a floating point register of single width to a value. */
111 virtual void setFloatRegOperand(const StaticInst *si,
112 int idx, FloatReg val) = 0;
113
114 /** Sets the bits of a floating point register of single width
115 * to a binary value. */
116 virtual void setFloatRegOperandBits(const StaticInst *si,
117 int idx, FloatRegBits val) = 0;
118
119 /** @} */
120
121 /**
122 * @{
123 * @name Condition Code Registers
124 */
125 virtual CCReg readCCRegOperand(const StaticInst *si, int idx) = 0;
126 virtual void setCCRegOperand(const StaticInst *si, int idx, CCReg val) = 0;
127 /** @} */
128
129 /**
130 * @{
131 * @name Misc Register Interfaces
132 */
133 virtual MiscReg readMiscRegOperand(const StaticInst *si, int idx) = 0;
134 virtual void setMiscRegOperand(const StaticInst *si,
135 int idx, const MiscReg &val) = 0;
136
137 /**
138 * Reads a miscellaneous register, handling any architectural
139 * side effects due to reading that register.
140 */
141 virtual MiscReg readMiscReg(int misc_reg) = 0;
142
143 /**
144 * Sets a miscellaneous register, handling any architectural
145 * side effects due to writing that register.
146 */
147 virtual void setMiscReg(int misc_reg, const MiscReg &val) = 0;
148
149 /** @} */
150
151 /**
152 * @{
153 * @name PC Control
154 */
155 virtual PCState pcState() const = 0;
156 virtual void pcState(const PCState &val) = 0;
157 /** @} */
158
159 /**
160 * @{
161 * @name Memory Interface
162 */
163 /**
164 * Record the effective address of the instruction.
165 *
166 * @note Only valid for memory ops.
167 */
168 virtual void setEA(Addr EA) = 0;
169 /**
170 * Get the effective address of the instruction.
171 *
172 * @note Only valid for memory ops.
173 */
174 virtual Addr getEA() const = 0;
175
176 virtual Fault readMem(Addr addr, uint8_t *data, unsigned int size,
177 unsigned int flags) = 0;
178
179 virtual Fault writeMem(uint8_t *data, unsigned int size, Addr addr,
180 unsigned int flags, uint64_t *res) = 0;
181
182 /**
183 * Sets the number of consecutive store conditional failures.
184 */
185 virtual void setStCondFailures(unsigned int sc_failures) = 0;
186
187 /**
188 * Returns the number of consecutive store conditional failures.
189 */
190 virtual unsigned int readStCondFailures() const = 0;
191
192 /** @} */
193
194 /**
195 * @{
196 * @name SysCall Emulation Interfaces
197 */
198
199 /**
200 * Executes a syscall specified by the callnum.
201 */
202 virtual void syscall(int64_t callnum) = 0;
203
204 /** @} */
205
206 /** Returns a pointer to the ThreadContext. */
207 virtual ThreadContext *tcBase() = 0;
208
209 /**
210 * @{
211 * @name Alpha-Specific Interfaces
212 */
213
214 /**
215 * Somewhat Alpha-specific function that handles returning from an
216 * error or interrupt.
217 */
218 virtual Fault hwrei() = 0;
219
220 /**
221 * Check for special simulator handling of specific PAL calls. If
222 * return value is false, actual PAL call will be suppressed.
223 */
224 virtual bool simPalCheck(int palFunc) = 0;
225
226 /** @} */
227
228 /**
229 * @{
230 * @name ARM-Specific Interfaces
231 */
232
233 virtual bool readPredicate() = 0;
234 virtual void setPredicate(bool val) = 0;
235
236 /** @} */
237
238 /**
239 * @{
240 * @name X86-Specific Interfaces
241 */
242
243 /**
244 * Invalidate a page in the DTLB <i>and</i> ITLB.
245 */
246 virtual void demapPage(Addr vaddr, uint64_t asn) = 0;
247 virtual void armMonitor(Addr address) = 0;
248 virtual bool mwait(PacketPtr pkt) = 0;
249 virtual void mwaitAtomic(ThreadContext *tc) = 0;
250 virtual AddressMonitor *getAddrMonitor() = 0;
251
252 /** @} */
253
254 /**
255 * @{
256 * @name MIPS-Specific Interfaces
257 */
258
259 #if THE_ISA == MIPS_ISA
260 virtual MiscReg readRegOtherThread(int regIdx,
261 ThreadID tid = InvalidThreadID) = 0;
262 virtual void setRegOtherThread(int regIdx, MiscReg val,
263 ThreadID tid = InvalidThreadID) = 0;
264 #endif
265
266 /** @} */
267 };
268
269 #endif // __CPU_EXEC_CONTEXT_HH__