gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
isa.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2009 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 
29 #include "arch/x86/isa.hh"
30 
31 #include "arch/x86/decoder.hh"
32 #include "arch/x86/mmu.hh"
33 #include "cpu/base.hh"
34 #include "cpu/thread_context.hh"
35 #include "params/X86ISA.hh"
36 #include "sim/serialize.hh"
37 
38 namespace X86ISA
39 {
40 
41 void
42 ISA::updateHandyM5Reg(Efer efer, CR0 cr0,
43  SegAttr csAttr, SegAttr ssAttr, RFLAGS rflags)
44 {
45  HandyM5Reg m5reg = 0;
46  if (efer.lma) {
47  m5reg.mode = LongMode;
48  if (csAttr.longMode)
49  m5reg.submode = SixtyFourBitMode;
50  else
51  m5reg.submode = CompatabilityMode;
52  } else {
53  m5reg.mode = LegacyMode;
54  if (cr0.pe) {
55  if (rflags.vm)
56  m5reg.submode = Virtual8086Mode;
57  else
58  m5reg.submode = ProtectedMode;
59  } else {
60  m5reg.submode = RealMode;
61  }
62  }
63  m5reg.cpl = csAttr.dpl;
64  m5reg.paging = cr0.pg;
65  m5reg.prot = cr0.pe;
66 
67  // Compute the default and alternate operand size.
68  if (m5reg.submode == SixtyFourBitMode || csAttr.defaultSize) {
69  m5reg.defOp = 2;
70  m5reg.altOp = 1;
71  } else {
72  m5reg.defOp = 1;
73  m5reg.altOp = 2;
74  }
75 
76  // Compute the default and alternate address size.
77  if (m5reg.submode == SixtyFourBitMode) {
78  m5reg.defAddr = 3;
79  m5reg.altAddr = 2;
80  } else if (csAttr.defaultSize) {
81  m5reg.defAddr = 2;
82  m5reg.altAddr = 1;
83  } else {
84  m5reg.defAddr = 1;
85  m5reg.altAddr = 2;
86  }
87 
88  // Compute the stack size
89  if (m5reg.submode == SixtyFourBitMode) {
90  m5reg.stack = 3;
91  } else if (ssAttr.defaultSize) {
92  m5reg.stack = 2;
93  } else {
94  m5reg.stack = 1;
95  }
96 
97  regVal[MISCREG_M5_REG] = m5reg;
98  if (tc)
99  tc->getDecoderPtr()->setM5Reg(m5reg);
100 }
101 
102 void
104 {
105  // Blank everything. 0 might not be an appropriate value for some things,
106  // but it is for most.
107  memset(regVal, 0, NumMiscRegs * sizeof(RegVal));
108 
109  // If some state should be non-zero after a reset, set those values here.
110  regVal[MISCREG_CR0] = 0x0000000060000010ULL;
111 
112  regVal[MISCREG_MTRRCAP] = 0x0508;
113 
114  regVal[MISCREG_MCG_CAP] = 0x104;
115 
116  regVal[MISCREG_PAT] = 0x0007040600070406ULL;
117 
118  regVal[MISCREG_SYSCFG] = 0x20601;
119 
120  regVal[MISCREG_TOP_MEM] = 0x4000000;
121 
122  regVal[MISCREG_DR6] = (mask(8) << 4) | (mask(16) << 16);
123  regVal[MISCREG_DR7] = 1 << 10;
124 
125  LocalApicBase lApicBase = 0;
126  lApicBase.base = 0xFEE00000 >> 12;
127  lApicBase.enable = 1;
128  // The "bsp" bit will be set when this register is read, since then we'll
129  // have a ThreadContext to check the contextId from.
130  regVal[MISCREG_APIC_BASE] = lApicBase;
131 }
132 
133 ISA::ISA(const X86ISAParams &p) : BaseISA(p), vendorString(p.vendor_string)
134 {
135  fatal_if(vendorString.size() != 12,
136  "CPUID vendor string must be 12 characters\n");
137  clear();
138 }
139 
140 RegVal
141 ISA::readMiscRegNoEffect(int miscReg) const
142 {
143  // Make sure we're not dealing with an illegal control register.
144  // Instructions should filter out these indexes, and nothing else should
145  // attempt to read them directly.
146  assert(isValidMiscReg(miscReg));
147 
148  return regVal[miscReg];
149 }
150 
151 RegVal
152 ISA::readMiscReg(int miscReg)
153 {
154  if (miscReg == MISCREG_TSC) {
155  return regVal[MISCREG_TSC] + tc->getCpuPtr()->curCycle();
156  }
157 
158  if (miscReg == MISCREG_FSW) {
159  RegVal fsw = regVal[MISCREG_FSW];
161  return insertBits(fsw, 13, 11, top);
162  }
163 
164  if (miscReg == MISCREG_APIC_BASE) {
165  LocalApicBase base = regVal[MISCREG_APIC_BASE];
166  base.bsp = (tc->contextId() == 0);
167  return base;
168  }
169 
170  return readMiscRegNoEffect(miscReg);
171 }
172 
173 void
175 {
176  // Make sure we're not dealing with an illegal control register.
177  // Instructions should filter out these indexes, and nothing else should
178  // attempt to write to them directly.
179  assert(isValidMiscReg(miscReg));
180 
181  HandyM5Reg m5Reg = regVal[MISCREG_M5_REG];
182  int reg_width = 64;
183  switch (miscReg) {
184  case MISCREG_X87_TOP:
185  reg_width = 3;
186  break;
187  case MISCREG_FTW:
188  reg_width = 8;
189  break;
190  case MISCREG_FSW:
191  case MISCREG_FCW:
192  case MISCREG_FOP:
193  reg_width = 16;
194  break;
195  case MISCREG_MXCSR:
196  reg_width = 32;
197  break;
198  case MISCREG_FISEG:
199  case MISCREG_FOSEG:
200  if (m5Reg.submode != SixtyFourBitMode)
201  reg_width = 16;
202  break;
203  case MISCREG_FIOFF:
204  case MISCREG_FOOFF:
205  if (m5Reg.submode != SixtyFourBitMode)
206  reg_width = 32;
207  break;
208  default:
209  break;
210  }
211 
212  regVal[miscReg] = val & mask(reg_width);
213 }
214 
215 void
217 {
218  RegVal newVal = val;
219  switch(miscReg)
220  {
221  case MISCREG_CR0:
222  {
223  CR0 toggled = regVal[miscReg] ^ val;
224  CR0 newCR0 = val;
225  Efer efer = regVal[MISCREG_EFER];
226  if (toggled.pg && efer.lme) {
227  if (newCR0.pg) {
228  //Turning on long mode
229  efer.lma = 1;
230  regVal[MISCREG_EFER] = efer;
231  } else {
232  //Turning off long mode
233  efer.lma = 0;
234  regVal[MISCREG_EFER] = efer;
235  }
236  }
237  if (toggled.pg) {
238  tc->getMMUPtr()->flushAll();
239  }
240  //This must always be 1.
241  newCR0.et = 1;
242  newVal = newCR0;
244  newCR0,
248  }
249  break;
250  case MISCREG_CR2:
251  break;
252  case MISCREG_CR3:
253  static_cast<MMU *>(tc->getMMUPtr())->flushNonGlobal();
254  break;
255  case MISCREG_CR4:
256  {
257  CR4 toggled = regVal[miscReg] ^ val;
258  if (toggled.pae || toggled.pse || toggled.pge) {
259  tc->getMMUPtr()->flushAll();
260  }
261  }
262  break;
263  case MISCREG_CR8:
264  break;
265  case MISCREG_CS_ATTR:
266  {
267  SegAttr toggled = regVal[miscReg] ^ val;
268  SegAttr newCSAttr = val;
269  if (toggled.longMode) {
270  if (newCSAttr.longMode) {
275  } else {
280  }
281  }
284  newCSAttr,
287  }
288  break;
289  case MISCREG_SS_ATTR:
293  val,
295  break;
296  // These segments always actually use their bases, or in other words
297  // their effective bases must stay equal to their actual bases.
298  case MISCREG_FS_BASE:
299  case MISCREG_GS_BASE:
300  case MISCREG_HS_BASE:
301  case MISCREG_TSL_BASE:
302  case MISCREG_TSG_BASE:
303  case MISCREG_TR_BASE:
304  case MISCREG_IDTR_BASE:
306  break;
307  // These segments ignore their bases in 64 bit mode.
308  // their effective bases must stay equal to their actual bases.
309  case MISCREG_ES_BASE:
310  case MISCREG_CS_BASE:
311  case MISCREG_SS_BASE:
312  case MISCREG_DS_BASE:
313  {
314  Efer efer = regVal[MISCREG_EFER];
315  SegAttr csAttr = regVal[MISCREG_CS_ATTR];
316  if (!efer.lma || !csAttr.longMode) // Check for non 64 bit mode.
317  regVal[MISCREG_SEG_EFF_BASE(miscReg -
319  }
320  break;
321  case MISCREG_TSC:
323  return;
324  case MISCREG_DR0:
325  case MISCREG_DR1:
326  case MISCREG_DR2:
327  case MISCREG_DR3:
328  /* These should eventually set up breakpoints. */
329  break;
330  case MISCREG_DR4:
331  miscReg = MISCREG_DR6;
333  case MISCREG_DR6:
334  {
335  DR6 dr6 = regVal[MISCREG_DR6];
336  DR6 newDR6 = val;
337  dr6.b0 = newDR6.b0;
338  dr6.b1 = newDR6.b1;
339  dr6.b2 = newDR6.b2;
340  dr6.b3 = newDR6.b3;
341  dr6.bd = newDR6.bd;
342  dr6.bs = newDR6.bs;
343  dr6.bt = newDR6.bt;
344  newVal = dr6;
345  }
346  break;
347  case MISCREG_DR5:
348  miscReg = MISCREG_DR7;
350  case MISCREG_DR7:
351  {
352  DR7 dr7 = regVal[MISCREG_DR7];
353  DR7 newDR7 = val;
354  dr7.l0 = newDR7.l0;
355  dr7.g0 = newDR7.g0;
356  if (dr7.l0 || dr7.g0) {
357  panic("Debug register breakpoints not implemented.\n");
358  } else {
359  /* Disable breakpoint 0. */
360  }
361  dr7.l1 = newDR7.l1;
362  dr7.g1 = newDR7.g1;
363  if (dr7.l1 || dr7.g1) {
364  panic("Debug register breakpoints not implemented.\n");
365  } else {
366  /* Disable breakpoint 1. */
367  }
368  dr7.l2 = newDR7.l2;
369  dr7.g2 = newDR7.g2;
370  if (dr7.l2 || dr7.g2) {
371  panic("Debug register breakpoints not implemented.\n");
372  } else {
373  /* Disable breakpoint 2. */
374  }
375  dr7.l3 = newDR7.l3;
376  dr7.g3 = newDR7.g3;
377  if (dr7.l3 || dr7.g3) {
378  panic("Debug register breakpoints not implemented.\n");
379  } else {
380  /* Disable breakpoint 3. */
381  }
382  dr7.gd = newDR7.gd;
383  dr7.rw0 = newDR7.rw0;
384  dr7.len0 = newDR7.len0;
385  dr7.rw1 = newDR7.rw1;
386  dr7.len1 = newDR7.len1;
387  dr7.rw2 = newDR7.rw2;
388  dr7.len2 = newDR7.len2;
389  dr7.rw3 = newDR7.rw3;
390  dr7.len3 = newDR7.len3;
391  }
392  break;
393  case MISCREG_M5_REG:
394  // Writing anything to the m5reg with side effects makes it update
395  // based on the current values of the relevant registers. The actual
396  // value written is discarded.
402  return;
403  default:
404  break;
405  }
406  setMiscRegNoEffect(miscReg, newVal);
407 }
408 
409 void
411 {
413 }
414 
415 void
417 {
424 }
425 
426 void
428 {
430  tc->getDecoderPtr()->setM5Reg(regVal[MISCREG_M5_REG]);
431 }
432 
433 std::string
435 {
436  return vendorString;
437 }
438 
439 }
X86ISA::MISCREG_FOSEG
@ MISCREG_FOSEG
Definition: misc.hh:387
X86ISA::MISCREG_M5_REG
@ MISCREG_M5_REG
Definition: misc.hh:137
X86ISA::ISA::setMiscRegNoEffect
void setMiscRegNoEffect(int miscReg, RegVal val)
Definition: isa.cc:174
X86ISA::MISCREG_MCG_CAP
@ MISCREG_MCG_CAP
Definition: misc.hh:151
insertBits
constexpr T insertBits(T val, unsigned first, unsigned last, B bit_val)
Returns val with bits first to last set to the LSBs of bit_val.
Definition: bitfield.hh:143
X86ISA::Virtual8086Mode
@ Virtual8086Mode
Definition: types.hh:194
X86ISA::MISCREG_FOP
@ MISCREG_FOP
Definition: misc.hh:389
X86ISA::MISCREG_APIC_BASE
@ MISCREG_APIC_BASE
Definition: misc.hh:393
X86ISA::MISCREG_GS_BASE
@ MISCREG_GS_BASE
Definition: misc.hh:317
mmu.hh
X86ISA::MISCREG_MTRRCAP
@ MISCREG_MTRRCAP
Definition: misc.hh:145
serialize.hh
X86ISA::ISA::vendorString
std::string vendorString
Definition: isa.hh:121
X86ISA::MISCREG_ES_BASE
@ MISCREG_ES_BASE
Definition: misc.hh:312
X86ISA::MISCREG_X87_TOP
@ MISCREG_X87_TOP
Definition: misc.hh:377
BaseISA::setThreadContext
virtual void setThreadContext(ThreadContext *_tc)
Definition: isa.hh:56
X86ISA::MISCREG_FISEG
@ MISCREG_FISEG
Definition: misc.hh:385
X86ISA::ISA::readMiscReg
RegVal readMiscReg(int miscReg)
Definition: isa.cc:152
ThreadContext::getMMUPtr
virtual BaseMMU * getMMUPtr()=0
X86ISA::NumMiscRegs
const int NumMiscRegs
Definition: registers.hh:52
X86ISA::ISA::clear
void clear()
Definition: isa.cc:103
X86ISA::CompatabilityMode
@ CompatabilityMode
Definition: types.hh:192
X86ISA::MISCREG_CR2
@ MISCREG_CR2
Definition: misc.hh:107
X86ISA::ISA::updateHandyM5Reg
void updateHandyM5Reg(Efer efer, CR0 cr0, SegAttr csAttr, SegAttr ssAttr, RFLAGS rflags)
Definition: isa.cc:42
X86ISA::MISCREG_ES_EFF_BASE
@ MISCREG_ES_EFF_BASE
Definition: misc.hh:330
top
Definition: test.h:61
X86ISA::base
Bitfield< 51, 12 > base
Definition: pagetable.hh:138
X86ISA::ISA::setMiscReg
void setMiscReg(int miscReg, RegVal val)
Definition: isa.cc:216
X86ISA::ISA::setThreadContext
void setThreadContext(ThreadContext *_tc) override
Definition: isa.cc:427
X86ISA::MISCREG_EFER
@ MISCREG_EFER
Definition: misc.hh:245
X86ISA::MISCREG_DR1
@ MISCREG_DR1
Definition: misc.hh:125
X86ISA::ISA::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: isa.cc:410
X86ISA::ISA::getVendorString
std::string getVendorString() const
Definition: isa.cc:434
BaseMMU::flushAll
void flushAll()
Definition: mmu.hh:65
decoder.hh
X86ISA::MISCREG_TR_BASE
@ MISCREG_TR_BASE
Definition: misc.hh:323
X86ISA::MISCREG_DS_EFF_BASE
@ MISCREG_DS_EFF_BASE
Definition: misc.hh:333
X86ISA::ProtectedMode
@ ProtectedMode
Definition: types.hh:193
cp
Definition: cprintf.cc:37
X86ISA::MISCREG_DR5
@ MISCREG_DR5
Definition: misc.hh:129
X86ISA::MISCREG_CR4
@ MISCREG_CR4
Definition: misc.hh:109
X86ISA::MISCREG_SS_ATTR
@ MISCREG_SS_ATTR
Definition: misc.hh:364
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
X86ISA::MISCREG_TOP_MEM
@ MISCREG_TOP_MEM
Definition: misc.hh:283
X86ISA::MISCREG_RFLAGS
@ MISCREG_RFLAGS
Definition: misc.hh:134
BaseISA::tc
ThreadContext * tc
Definition: isa.hh:52
X86ISA::MISCREG_HS_BASE
@ MISCREG_HS_BASE
Definition: misc.hh:318
X86ISA::MISCREG_DR7
@ MISCREG_DR7
Definition: misc.hh:131
X86ISA::MISCREG_DS_BASE
@ MISCREG_DS_BASE
Definition: misc.hh:315
Clocked::curCycle
Cycles curCycle() const
Determine the current cycle, corresponding to a tick aligned to a clock edge.
Definition: clocked_object.hh:192
X86ISA::MISCREG_SS_EFF_BASE
@ MISCREG_SS_EFF_BASE
Definition: misc.hh:332
X86ISA::RealMode
@ RealMode
Definition: types.hh:195
X86ISA::MISCREG_CS_EFF_BASE
@ MISCREG_CS_EFF_BASE
Definition: misc.hh:331
X86ISA::MMU
Definition: mmu.hh:48
X86ISA::isValidMiscReg
static bool isValidMiscReg(int index)
Definition: misc.hh:402
M5_FALLTHROUGH
#define M5_FALLTHROUGH
Definition: compiler.hh:59
X86ISA::ISA::ISA
ISA(const Params &p)
Definition: isa.cc:133
ThreadContext::contextId
virtual ContextID contextId() const =0
X86ISA::ISA::regVal
RegVal regVal[NUM_MISCREGS]
Definition: isa.hh:53
SERIALIZE_ARRAY
#define SERIALIZE_ARRAY(member, size)
Definition: serialize.hh:626
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
X86ISA::MISCREG_DR4
@ MISCREG_DR4
Definition: misc.hh:128
X86ISA
This is exposed globally, independent of the ISA.
Definition: acpi.hh:55
X86ISA::MISCREG_CS_ATTR
@ MISCREG_CS_ATTR
Definition: misc.hh:363
X86ISA::MISCREG_DR0
@ MISCREG_DR0
Definition: misc.hh:124
X86ISA::MISCREG_DR3
@ MISCREG_DR3
Definition: misc.hh:127
isa.hh
X86ISA::MISCREG_FTW
@ MISCREG_FTW
Definition: misc.hh:383
X86ISA::MISCREG_CR3
@ MISCREG_CR3
Definition: misc.hh:108
X86ISA::MISCREG_SYSCFG
@ MISCREG_SYSCFG
Definition: misc.hh:271
X86ISA::MISCREG_DR2
@ MISCREG_DR2
Definition: misc.hh:126
X86ISA::ISA::readMiscRegNoEffect
RegVal readMiscRegNoEffect(int miscReg) const
Definition: isa.cc:141
X86ISA::MISCREG_SEG_EFF_BASE
static MiscRegIndex MISCREG_SEG_EFF_BASE(int index)
Definition: misc.hh:519
X86ISA::MISCREG_DR6
@ MISCREG_DR6
Definition: misc.hh:130
base.hh
X86ISA::p
Bitfield< 0 > p
Definition: pagetable.hh:148
UNSERIALIZE_ARRAY
#define UNSERIALIZE_ARRAY(member, size)
Definition: serialize.hh:634
X86ISA::MISCREG_FIOFF
@ MISCREG_FIOFF
Definition: misc.hh:386
X86ISA::MISCREG_CR0
@ MISCREG_CR0
Definition: misc.hh:105
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
ThreadContext::getDecoderPtr
virtual TheISA::Decoder * getDecoderPtr()=0
X86ISA::mask
mask
Definition: misc.hh:796
X86ISA::MISCREG_IDTR_BASE
@ MISCREG_IDTR_BASE
Definition: misc.hh:324
X86ISA::MISCREG_MXCSR
@ MISCREG_MXCSR
Definition: misc.hh:380
X86ISA::SixtyFourBitMode
@ SixtyFourBitMode
Definition: types.hh:191
X86ISA::MISCREG_TSL_BASE
@ MISCREG_TSL_BASE
Definition: misc.hh:319
X86ISA::MISCREG_PAT
@ MISCREG_PAT
Definition: misc.hh:196
X86ISA::MISCREG_FSW
@ MISCREG_FSW
Definition: misc.hh:382
X86ISA::ISA::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: isa.cc:416
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:219
CheckpointIn
Definition: serialize.hh:68
X86ISA::MISCREG_CS_BASE
@ MISCREG_CS_BASE
Definition: misc.hh:313
X86ISA::MISCREG_CR8
@ MISCREG_CR8
Definition: misc.hh:113
ThreadContext::getCpuPtr
virtual BaseCPU * getCpuPtr()=0
X86ISA::MISCREG_SEG_BASE_BASE
@ MISCREG_SEG_BASE_BASE
Definition: misc.hh:311
X86ISA::MISCREG_FOOFF
@ MISCREG_FOOFF
Definition: misc.hh:388
BaseISA
Definition: isa.hh:47
X86ISA::MISCREG_FS_BASE
@ MISCREG_FS_BASE
Definition: misc.hh:316
thread_context.hh
ULL
#define ULL(N)
uint64_t constant
Definition: types.hh:46
X86ISA::MISCREG_TSC
@ MISCREG_TSC
Definition: misc.hh:143
RegVal
uint64_t RegVal
Definition: types.hh:174
X86ISA::MISCREG_TSG_BASE
@ MISCREG_TSG_BASE
Definition: misc.hh:320
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
X86ISA::MISCREG_SS_BASE
@ MISCREG_SS_BASE
Definition: misc.hh:314
X86ISA::MISCREG_FCW
@ MISCREG_FCW
Definition: misc.hh:381

Generated on Tue Jun 22 2021 15:28:19 for gem5 by doxygen 1.8.17