gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
registers.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2006 The Regents of The University of Michigan
3  * Copyright (c) 2007 MIPS Technologies, Inc.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met: redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer;
10  * redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution;
13  * neither the name of the copyright holders nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  * Authors: Korey Sewell
30  */
31 
32 #ifndef __ARCH_MIPS_REGISTERS_HH__
33 #define __ARCH_MIPS_REGISTERS_HH__
34 
35 #include "arch/mips/generated/max_inst_regs.hh"
36 #include "base/misc.hh"
37 #include "base/types.hh"
38 
39 class ThreadContext;
40 
41 namespace MipsISA
42 {
43 
45 using MipsISAInst::MaxInstDestRegs;
47 
48 // Constants Related to the number of registers
49 const int NumIntArchRegs = 32;
50 const int NumIntSpecialRegs = 9;
51 const int NumFloatArchRegs = 32;
52 const int NumFloatSpecialRegs = 5;
53 
54 const int MaxShadowRegSets = 16; // Maximum number of shadow register sets
55 const int NumIntRegs = NumIntArchRegs + NumIntSpecialRegs; //HI & LO Regs
57 const int NumCCRegs = 0;
58 
59 const uint32_t MIPS32_QNAN = 0x7fbfffff;
60 const uint64_t MIPS64_QNAN = ULL(0x7ff7ffffffffffff);
61 
68 };
69 
70 enum FCSRBits {
71  Inexact = 1,
77 };
78 
79 enum FCSRFields {
83 };
84 
101 };
102 
103 // semantically meaningful register indices
104 const int ZeroReg = 0;
105 const int AssemblerReg = 1;
106 const int SyscallSuccessReg = 7;
107 const int FirstArgumentReg = 4;
108 const int ReturnValueReg = 2;
109 
110 const int KernelReg0 = 26;
111 const int KernelReg1 = 27;
112 const int GlobalPointerReg = 28;
113 const int StackPointerReg = 29;
114 const int FramePointerReg = 30;
115 const int ReturnAddressReg = 31;
116 
118 
119 // Enumerate names for 'Control' Registers in the CPU
120 // Reference MIPS32 Arch. for Programmers, Vol. III, Ch.8
121 // (Register Number-Register Select) Summary of Register
122 //------------------------------------------------------
123 // The first set of names classify the CP0 names as Register Banks
124 // for easy indexing when using the 'RD + SEL' index combination
125 // in CP0 instructions.
127  MISCREG_INDEX = 0, //Bank 0: 0 - 3
131 
132  MISCREG_CP0_RANDOM = 8, //Bank 1: 8 - 15
140 
141  MISCREG_ENTRYLO0 = 16, //Bank 2: 16 - 23
149 
150  MISCREG_ENTRYLO1 = 24, // Bank 3: 24
151 
152  MISCREG_CONTEXT = 32, // Bank 4: 32 - 33
154 
155  MISCREG_PAGEMASK = 40, //Bank 5: 40 - 41
157 
158  MISCREG_WIRED = 48, //Bank 6:48-55
164 
165  MISCREG_HWRENA = 56, //Bank 7: 56-63
166 
167  MISCREG_BADVADDR = 64, //Bank 8: 64-71
168 
169  MISCREG_COUNT = 72, //Bank 9: 72-79
170 
171  MISCREG_ENTRYHI = 80, //Bank 10: 80-87
172 
173  MISCREG_COMPARE = 88, //Bank 11: 88-95
174 
175  MISCREG_STATUS = 96, //Bank 12: 96-103
179 
180  MISCREG_CAUSE = 104, //Bank 13: 104-111
181 
182  MISCREG_EPC = 112, //Bank 14: 112-119
183 
184  MISCREG_PRID = 120, //Bank 15: 120-127,
186 
187  MISCREG_CONFIG = 128, //Bank 16: 128-135
195 
196 
197  MISCREG_LLADDR = 136, //Bank 17: 136-143
198 
199  MISCREG_WATCHLO0 = 144, //Bank 18: 144-151
207 
208  MISCREG_WATCHHI0 = 152, //Bank 19: 152-159
216 
217  MISCREG_XCCONTEXT64 = 160, //Bank 20: 160-167
218 
219  //Bank 21: 168-175
220 
221  //Bank 22: 176-183
222 
223  MISCREG_DEBUG = 184, //Bank 23: 184-191
228 
229  MISCREG_DEPC = 192, //Bank 24: 192-199
230 
231  MISCREG_PERFCNT0 = 200, //Bank 25: 200-207
239 
240  MISCREG_ERRCTL = 208, //Bank 26: 208-215
241 
242  MISCREG_CACHEERR0 = 216, //Bank 27: 216-223
246 
247  MISCREG_TAGLO0 = 224, //Bank 28: 224-231
255 
256  MISCREG_TAGHI0 = 232, //Bank 29: 232-239
264 
265 
266  MISCREG_ERROR_EPC = 240, //Bank 30: 240-247
267 
268  MISCREG_DESAVE = 248, //Bank 31: 248-256
269 
272 
274 };
275 
277 
278 // These help enumerate all the registers for dependence tracking.
281 const int Misc_Reg_Base = CC_Reg_Base + NumCCRegs; // NumCCRegs == 0
283 
285 
286 typedef uint16_t RegIndex;
287 
288 typedef uint32_t IntReg;
289 
290 // floating point register file entry type
291 typedef uint32_t FloatRegBits;
292 typedef float FloatReg;
293 
294 // cop-0/cop-1 system control register
295 typedef uint64_t MiscReg;
296 
297 // dummy typedef since we don't have CC regs
298 typedef uint8_t CCReg;
299 
300 typedef union {
304 } AnyReg;
305 
306 } // namespace MipsISA
307 
308 #endif
const int NumCCRegs
Definition: registers.hh:57
const int SyscallPseudoReturnReg
Definition: registers.hh:117
const int KernelReg0
Definition: registers.hh:110
const int KernelReg1
Definition: registers.hh:111
const int NumFloatSpecialRegs
Definition: registers.hh:52
const int ReturnValueReg
Definition: registers.hh:108
const int FP_Reg_Base
Definition: registers.hh:279
const uint32_t MIPS32_QNAN
Definition: registers.hh:59
const int NumIntRegs
Definition: registers.hh:55
MiscReg ctrlreg
Definition: registers.hh:303
FloatReg fpreg
Definition: registers.hh:302
const int AssemblerReg
Definition: registers.hh:105
const int MaxInstSrcRegs
Definition: registers.hh:56
const int NumFloatArchRegs
Definition: registers.hh:51
const int GlobalPointerReg
Definition: registers.hh:112
ThreadContext is the external interface to all thread state for anything outside of the CPU...
const int NumIntSpecialRegs
Definition: registers.hh:50
const int SyscallSuccessReg
Definition: registers.hh:106
const int MaxMiscDestRegs
Definition: registers.hh:61
uint16_t RegIndex
Definition: registers.hh:286
uint32_t IntReg
Definition: registers.hh:288
const int NumIntArchRegs
Definition: registers.hh:49
const int CC_Reg_Base
Definition: registers.hh:280
FPControlRegNums
Definition: registers.hh:62
MiscIntRegNums
Definition: registers.hh:85
uint8_t CCReg
Definition: registers.hh:298
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint32_t FloatRegBits
Definition: registers.hh:291
const int FirstArgumentReg
Definition: registers.hh:107
#define ULL(N)
uint64_t constant
Definition: types.hh:50
const int ZeroReg
Definition: registers.hh:104
float FloatReg
Definition: registers.hh:292
const int Misc_Reg_Base
Definition: registers.hh:281
const int ReturnAddressReg
Definition: registers.hh:115
const int FramePointerReg
Definition: registers.hh:114
const int TotalNumRegs
Definition: registers.hh:284
const int StackPointerReg
Definition: registers.hh:113
const int Max_Reg_Index
Definition: registers.hh:282
const int NumFloatRegs
Definition: registers.hh:56
const int NumMiscRegs
Definition: registers.hh:276
uint64_t MiscReg
Definition: registers.hh:295
const int MaxShadowRegSets
Definition: registers.hh:54
const uint64_t MIPS64_QNAN
Definition: registers.hh:60

Generated on Fri Jun 9 2017 13:03:36 for gem5 by doxygen 1.8.6