gem5  v22.0.0.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 "arch/x86/regs/ccr.hh"
34 #include "arch/x86/regs/int.hh"
35 #include "arch/x86/regs/misc.hh"
36 #include "base/compiler.hh"
37 #include "cpu/base.hh"
38 #include "cpu/thread_context.hh"
39 #include "debug/CCRegs.hh"
40 #include "debug/FloatRegs.hh"
41 #include "debug/IntRegs.hh"
42 #include "debug/MiscRegs.hh"
43 #include "params/X86ISA.hh"
44 #include "sim/serialize.hh"
45 
46 namespace gem5
47 {
48 
49 namespace X86ISA
50 {
51 
52 void
54  SegAttr csAttr, SegAttr ssAttr, RFLAGS rflags)
55 {
56  HandyM5Reg m5reg = 0;
57  if (efer.lma) {
58  m5reg.mode = LongMode;
59  if (csAttr.longMode)
60  m5reg.submode = SixtyFourBitMode;
61  else
62  m5reg.submode = CompatabilityMode;
63  } else {
64  m5reg.mode = LegacyMode;
65  if (cr0.pe) {
66  if (rflags.vm)
67  m5reg.submode = Virtual8086Mode;
68  else
69  m5reg.submode = ProtectedMode;
70  } else {
71  m5reg.submode = RealMode;
72  }
73  }
74  m5reg.cpl = csAttr.dpl;
75  m5reg.paging = cr0.pg;
76  m5reg.prot = cr0.pe;
77 
78  // Compute the default and alternate operand size.
79  if (m5reg.submode == SixtyFourBitMode || csAttr.defaultSize) {
80  m5reg.defOp = 2;
81  m5reg.altOp = 1;
82  } else {
83  m5reg.defOp = 1;
84  m5reg.altOp = 2;
85  }
86 
87  // Compute the default and alternate address size.
88  if (m5reg.submode == SixtyFourBitMode) {
89  m5reg.defAddr = 3;
90  m5reg.altAddr = 2;
91  } else if (csAttr.defaultSize) {
92  m5reg.defAddr = 2;
93  m5reg.altAddr = 1;
94  } else {
95  m5reg.defAddr = 1;
96  m5reg.altAddr = 2;
97  }
98 
99  // Compute the stack size
100  if (m5reg.submode == SixtyFourBitMode) {
101  m5reg.stack = 3;
102  } else if (ssAttr.defaultSize) {
103  m5reg.stack = 2;
104  } else {
105  m5reg.stack = 1;
106  }
107 
108  regVal[misc_reg::M5Reg] = m5reg;
109  if (tc)
110  tc->getDecoderPtr()->as<Decoder>().setM5Reg(m5reg);
111 }
112 
113 void
115 {
116  // Blank everything. 0 might not be an appropriate value for some things,
117  // but it is for most.
118  memset(regVal, 0, misc_reg::NumRegs * sizeof(RegVal));
119 
120  // If some state should be non-zero after a reset, set those values here.
121  regVal[misc_reg::Cr0] = 0x0000000060000010ULL;
122 
123  regVal[misc_reg::Mtrrcap] = 0x0508;
124 
125  regVal[misc_reg::McgCap] = 0x104;
126 
127  regVal[misc_reg::Pat] = 0x0007040600070406ULL;
128 
129  regVal[misc_reg::Syscfg] = 0x20601;
130 
131  regVal[misc_reg::TopMem] = 0x4000000;
132 
133  regVal[misc_reg::Dr6] = (mask(8) << 4) | (mask(16) << 16);
134  regVal[misc_reg::Dr7] = 1 << 10;
135 
136  LocalApicBase lApicBase = 0;
137  lApicBase.base = 0xFEE00000 >> 12;
138  lApicBase.enable = 1;
139  // The "bsp" bit will be set when this register is read, since then we'll
140  // have a ThreadContext to check the contextId from.
141  regVal[misc_reg::ApicBase] = lApicBase;
142 }
143 
144 ISA::ISA(const X86ISAParams &p) : BaseISA(p), vendorString(p.vendor_string)
145 {
146  fatal_if(vendorString.size() != 12,
147  "CPUID vendor string must be 12 characters\n");
148 
149  _regClasses.emplace_back(int_reg::NumRegs, debug::IntRegs);
150  _regClasses.emplace_back(float_reg::NumRegs, debug::FloatRegs);
151  _regClasses.emplace_back(1, debug::IntRegs); // Not applicable to X86
152  _regClasses.emplace_back(2, debug::IntRegs); // Not applicable to X86
153  _regClasses.emplace_back(1, debug::IntRegs); // Not applicable to X86
154  _regClasses.emplace_back(cc_reg::NumRegs, debug::CCRegs);
155  _regClasses.emplace_back(misc_reg::NumRegs, debug::MiscRegs);
156 
157  clear();
158 }
159 
160 static void
162 {
163  // This function assumes no side effects other than TLB invalidation
164  // need to be considered while copying state. That will likely not be
165  // true in the future.
166  for (int i = 0; i < misc_reg::NumRegs; ++i) {
167  if (!misc_reg::isValid(i))
168  continue;
169 
171  }
172 
173  // The TSC has to be updated with side-effects if the CPUs in a
174  // CPU switch have different frequencies.
176 
177  dest->getMMUPtr()->flushAll();
178 }
179 
180 void
182 {
183  //copy int regs
184  for (int i = 0; i < int_reg::NumRegs; ++i) {
186  tc->setRegFlat(reg, src->getRegFlat(reg));
187  }
188  //copy float regs
189  for (int i = 0; i < float_reg::NumRegs; ++i) {
191  tc->setRegFlat(reg, src->getRegFlat(reg));
192  }
193  //copy condition-code regs
194  for (int i = 0; i < cc_reg::NumRegs; ++i) {
195  RegId reg(CCRegClass, i);
196  tc->setRegFlat(reg, src->getRegFlat(reg));
197  }
198  copyMiscRegs(src, tc);
199  tc->pcState(src->pcState());
200 }
201 
202 RegVal
203 ISA::readMiscRegNoEffect(int miscReg) const
204 {
205  // Make sure we're not dealing with an illegal control register.
206  // Instructions should filter out these indexes, and nothing else should
207  // attempt to read them directly.
208  assert(misc_reg::isValid(miscReg));
209 
210  return regVal[miscReg];
211 }
212 
213 RegVal
214 ISA::readMiscReg(int miscReg)
215 {
216  if (miscReg == misc_reg::Tsc) {
217  return regVal[misc_reg::Tsc] + tc->getCpuPtr()->curCycle();
218  }
219 
220  if (miscReg == misc_reg::Fsw) {
221  RegVal fsw = regVal[misc_reg::Fsw];
223  return insertBits(fsw, 13, 11, top);
224  }
225 
226  if (miscReg == misc_reg::ApicBase) {
227  LocalApicBase base = regVal[misc_reg::ApicBase];
228  base.bsp = (tc->contextId() == 0);
229  return base;
230  }
231 
232  return readMiscRegNoEffect(miscReg);
233 }
234 
235 void
237 {
238  // Make sure we're not dealing with an illegal control register.
239  // Instructions should filter out these indexes, and nothing else should
240  // attempt to write to them directly.
241  assert(misc_reg::isValid(miscReg));
242 
243  HandyM5Reg m5Reg = regVal[misc_reg::M5Reg];
244  int reg_width = 64;
245  switch (miscReg) {
246  case misc_reg::X87Top:
247  reg_width = 3;
248  break;
249  case misc_reg::Ftw:
250  reg_width = 8;
251  break;
252  case misc_reg::Fsw:
253  case misc_reg::Fcw:
254  case misc_reg::Fop:
255  reg_width = 16;
256  break;
257  case misc_reg::Mxcsr:
258  reg_width = 32;
259  break;
260  case misc_reg::Fiseg:
261  case misc_reg::Foseg:
262  if (m5Reg.submode != SixtyFourBitMode)
263  reg_width = 16;
264  break;
265  case misc_reg::Fioff:
266  case misc_reg::Fooff:
267  if (m5Reg.submode != SixtyFourBitMode)
268  reg_width = 32;
269  break;
270  default:
271  break;
272  }
273 
274  regVal[miscReg] = val & mask(reg_width);
275 }
276 
277 void
279 {
280  RegVal newVal = val;
281  switch(miscReg)
282  {
283  case misc_reg::Cr0:
284  {
285  CR0 toggled = regVal[miscReg] ^ val;
286  CR0 newCR0 = val;
287  Efer efer = regVal[misc_reg::Efer];
288  if (toggled.pg && efer.lme) {
289  if (newCR0.pg) {
290  //Turning on long mode
291  efer.lma = 1;
292  regVal[misc_reg::Efer] = efer;
293  } else {
294  //Turning off long mode
295  efer.lma = 0;
296  regVal[misc_reg::Efer] = efer;
297  }
298  }
299  if (toggled.pg) {
300  tc->getMMUPtr()->flushAll();
301  }
302  //This must always be 1.
303  newCR0.et = 1;
304  newVal = newCR0;
306  newCR0,
310  }
311  break;
312  case misc_reg::Cr2:
313  break;
314  case misc_reg::Cr3:
315  static_cast<MMU *>(tc->getMMUPtr())->flushNonGlobal();
316  break;
317  case misc_reg::Cr4:
318  {
319  CR4 toggled = regVal[miscReg] ^ val;
320  if (toggled.pae || toggled.pse || toggled.pge) {
321  tc->getMMUPtr()->flushAll();
322  }
323  }
324  break;
325  case misc_reg::Cr8:
326  break;
327  case misc_reg::Rflags:
328  {
329  RFLAGS rflags = val;
330  panic_if(rflags.vm, "Virtual 8086 mode is not supported.");
331  break;
332  }
333  case misc_reg::CsAttr:
334  {
335  SegAttr toggled = regVal[miscReg] ^ val;
336  SegAttr newCSAttr = val;
337  if (toggled.longMode) {
338  if (newCSAttr.longMode) {
343  } else {
348  }
349  }
352  newCSAttr,
355  }
356  break;
357  case misc_reg::SsAttr:
361  val,
363  break;
364  // These segments always actually use their bases, or in other words
365  // their effective bases must stay equal to their actual bases.
366  case misc_reg::FsBase:
367  case misc_reg::GsBase:
368  case misc_reg::HsBase:
369  case misc_reg::TslBase:
370  case misc_reg::TsgBase:
371  case misc_reg::TrBase:
372  case misc_reg::IdtrBase:
374  break;
375  // These segments ignore their bases in 64 bit mode.
376  // their effective bases must stay equal to their actual bases.
377  case misc_reg::EsBase:
378  case misc_reg::CsBase:
379  case misc_reg::SsBase:
380  case misc_reg::DsBase:
381  {
382  Efer efer = regVal[misc_reg::Efer];
383  SegAttr csAttr = regVal[misc_reg::CsAttr];
384  if (!efer.lma || !csAttr.longMode) // Check for non 64 bit mode.
385  regVal[misc_reg::segEffBase(miscReg -
387  }
388  break;
389  case misc_reg::Tsc:
390  regVal[misc_reg::Tsc] = val - tc->getCpuPtr()->curCycle();
391  return;
392  case misc_reg::Dr0:
393  case misc_reg::Dr1:
394  case misc_reg::Dr2:
395  case misc_reg::Dr3:
396  /* These should eventually set up breakpoints. */
397  break;
398  case misc_reg::Dr4:
399  miscReg = misc_reg::Dr6;
400  [[fallthrough]];
401  case misc_reg::Dr6:
402  {
403  DR6 dr6 = regVal[misc_reg::Dr6];
404  DR6 newDR6 = val;
405  dr6.b0 = newDR6.b0;
406  dr6.b1 = newDR6.b1;
407  dr6.b2 = newDR6.b2;
408  dr6.b3 = newDR6.b3;
409  dr6.bd = newDR6.bd;
410  dr6.bs = newDR6.bs;
411  dr6.bt = newDR6.bt;
412  newVal = dr6;
413  }
414  break;
415  case misc_reg::Dr5:
416  miscReg = misc_reg::Dr7;
417  [[fallthrough]];
418  case misc_reg::Dr7:
419  {
420  DR7 dr7 = regVal[misc_reg::Dr7];
421  DR7 newDR7 = val;
422  dr7.l0 = newDR7.l0;
423  dr7.g0 = newDR7.g0;
424  if (dr7.l0 || dr7.g0) {
425  panic("Debug register breakpoints not implemented.\n");
426  } else {
427  /* Disable breakpoint 0. */
428  }
429  dr7.l1 = newDR7.l1;
430  dr7.g1 = newDR7.g1;
431  if (dr7.l1 || dr7.g1) {
432  panic("Debug register breakpoints not implemented.\n");
433  } else {
434  /* Disable breakpoint 1. */
435  }
436  dr7.l2 = newDR7.l2;
437  dr7.g2 = newDR7.g2;
438  if (dr7.l2 || dr7.g2) {
439  panic("Debug register breakpoints not implemented.\n");
440  } else {
441  /* Disable breakpoint 2. */
442  }
443  dr7.l3 = newDR7.l3;
444  dr7.g3 = newDR7.g3;
445  if (dr7.l3 || dr7.g3) {
446  panic("Debug register breakpoints not implemented.\n");
447  } else {
448  /* Disable breakpoint 3. */
449  }
450  dr7.gd = newDR7.gd;
451  dr7.rw0 = newDR7.rw0;
452  dr7.len0 = newDR7.len0;
453  dr7.rw1 = newDR7.rw1;
454  dr7.len1 = newDR7.len1;
455  dr7.rw2 = newDR7.rw2;
456  dr7.len2 = newDR7.len2;
457  dr7.rw3 = newDR7.rw3;
458  dr7.len3 = newDR7.len3;
459  }
460  break;
461  case misc_reg::M5Reg:
462  // Writing anything to the m5reg with side effects makes it update
463  // based on the current values of the relevant registers. The actual
464  // value written is discarded.
470  return;
471  default:
472  break;
473  }
474  setMiscRegNoEffect(miscReg, newVal);
475 }
476 
477 void
479 {
481 }
482 
483 void
485 {
492 }
493 
494 void
496 {
498  tc->getDecoderPtr()->as<Decoder>().setM5Reg(regVal[misc_reg::M5Reg]);
499 }
500 
501 std::string
503 {
504  return vendorString;
505 }
506 
507 } // namespace X86ISA
508 } // namespace gem5
gem5::X86ISA::mask
mask
Definition: misc.hh:796
gem5::X86ISA::misc_reg::Dr7
@ Dr7
Definition: misc.hh:140
gem5::ThreadContext::readMiscReg
virtual RegVal readMiscReg(RegIndex misc_reg)=0
gem5::X86ISA::ISA::copyRegsFrom
void copyRegsFrom(ThreadContext *src) override
Definition: isa.cc:181
gem5::BaseISA::tc
ThreadContext * tc
Definition: isa.hh:65
gem5::RegVal
uint64_t RegVal
Definition: types.hh:173
gem5::X86ISA::misc_reg::Ftw
@ Ftw
Definition: misc.hh:391
gem5::X86ISA::misc_reg::Fioff
@ Fioff
Definition: misc.hh:394
mmu.hh
serialize.hh
gem5::InstDecoder::as
Type & as()
Definition: decoder.hh:71
gem5::X86ISA::ISA::vendorString
std::string vendorString
Definition: isa.hh:59
gem5::X86ISA::misc_reg::M5Reg
@ M5Reg
Definition: misc.hh:146
gem5::X86ISA::copyMiscRegs
static void copyMiscRegs(ThreadContext *src, ThreadContext *dest)
Definition: isa.cc:161
gem5::X86ISA::misc_reg::TopMem
@ TopMem
Definition: misc.hh:292
gem5::CCRegClass
@ CCRegClass
Condition-code register.
Definition: reg_class.hh:65
gem5::ThreadContext::getMMUPtr
virtual BaseMMU * getMMUPtr()=0
gem5::CheckpointIn
Definition: serialize.hh:68
gem5::ThreadContext::pcState
virtual const PCStateBase & pcState() const =0
gem5::X86ISA::misc_reg::Dr6
@ Dr6
Definition: misc.hh:139
gem5::X86ISA::misc_reg::CsBase
@ CsBase
Definition: misc.hh:322
gem5::X86ISA::ISA::ISA
ISA(const Params &p)
Definition: isa.cc:144
ccr.hh
gem5::X86ISA::misc_reg::DsEffBase
@ DsEffBase
Definition: misc.hh:342
gem5::X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
gem5::X86ISA::misc_reg::segEffBase
static RegIndex segEffBase(int index)
Definition: misc.hh:517
gem5::X86ISA::misc_reg::ApicBase
@ ApicBase
Definition: misc.hh:401
top
Definition: test.h:61
gem5::ThreadContext::contextId
virtual ContextID contextId() const =0
gem5::ThreadContext::getRegFlat
virtual RegVal getRegFlat(const RegId &reg) const
Flat register interfaces.
Definition: thread_context.cc:201
gem5::X86ISA::misc_reg::Fcw
@ Fcw
Definition: misc.hh:389
gem5::X86ISA::misc_reg::DsBase
@ DsBase
Definition: misc.hh:324
gem5::X86ISA::base
Bitfield< 51, 12 > base
Definition: pagetable.hh:141
gem5::X86ISA::misc_reg::Dr5
@ Dr5
Definition: misc.hh:138
gem5::X86ISA::Virtual8086Mode
@ Virtual8086Mode
Definition: types.hh:207
gem5::X86ISA::misc_reg::CsEffBase
@ CsEffBase
Definition: misc.hh:340
gem5::X86ISA::SixtyFourBitMode
@ SixtyFourBitMode
Definition: types.hh:204
gem5::ArmISA::i
Bitfield< 7 > i
Definition: misc_types.hh:67
gem5::X86ISA::ISA::setMiscReg
void setMiscReg(int miscReg, RegVal val)
Definition: isa.cc:278
gem5::X86ISA::misc_reg::SsEffBase
@ SsEffBase
Definition: misc.hh:341
gem5::X86ISA::misc_reg::Dr1
@ Dr1
Definition: misc.hh:134
decoder.hh
gem5::X86ISA::misc_reg::Dr0
@ Dr0
Definition: misc.hh:133
gem5::X86ISA::misc_reg::Dr2
@ Dr2
Definition: misc.hh:135
gem5::X86ISA::misc_reg::TsgBase
@ TsgBase
Definition: misc.hh:329
gem5::X86ISA::misc_reg::isValid
static bool isValid(int index)
Definition: misc.hh:410
gem5::X86ISA::float_reg::NumRegs
@ NumRegs
Definition: float.hh:117
gem5::X86ISA::ISA::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: isa.cc:478
gem5::FloatRegClass
@ FloatRegClass
Floating-point register.
Definition: reg_class.hh:59
gem5::X86ISA::misc_reg::Tsc
@ Tsc
Definition: misc.hh:152
gem5::BaseISA::_regClasses
RegClasses _regClasses
Definition: isa.hh:67
gem5::X86ISA::ISA::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: isa.cc:484
gem5::X86ISA::misc_reg::Cr0
@ Cr0
Definition: misc.hh:114
gem5::ArmISA::cc_reg::NumRegs
@ NumRegs
Definition: cc.hh:60
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:94
gem5::X86ISA::ISA::readMiscRegNoEffect
RegVal readMiscRegNoEffect(int miscReg) const
Definition: isa.cc:203
gem5::X86ISA::misc_reg::Foseg
@ Foseg
Definition: misc.hh:395
gem5::X86ISA::ProtectedMode
@ ProtectedMode
Definition: types.hh:206
gem5::X86ISA::ISA::setThreadContext
void setThreadContext(ThreadContext *_tc) override
Definition: isa.cc:495
gem5::X86ISA::misc_reg::GsBase
@ GsBase
Definition: misc.hh:326
int.hh
gem5::ThreadContext::getDecoderPtr
virtual InstDecoder * getDecoderPtr()=0
gem5::X86ISA::misc_reg::NumRegs
@ NumRegs
Definition: misc.hh:406
gem5::X86ISA::misc_reg::Mxcsr
@ Mxcsr
Definition: misc.hh:388
gem5::X86ISA::misc_reg::SegBaseBase
@ SegBaseBase
Definition: misc.hh:320
gem5::X86ISA::misc_reg::Fiseg
@ Fiseg
Definition: misc.hh:393
gem5::X86ISA::ISA::clear
void clear()
Definition: isa.cc:114
gem5::BaseISA::setThreadContext
virtual void setThreadContext(ThreadContext *_tc)
Definition: isa.hh:72
gem5::X86ISA::misc_reg::Fop
@ Fop
Definition: misc.hh:397
gem5::X86ISA::misc_reg::TslBase
@ TslBase
Definition: misc.hh:328
gem5::X86ISA::Decoder
Definition: decoder.hh:56
gem5::X86ISA::misc_reg::Fsw
@ Fsw
Definition: misc.hh:390
gem5::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:166
compiler.hh
SERIALIZE_ARRAY
#define SERIALIZE_ARRAY(member, size)
Definition: serialize.hh:610
gem5::X86ISA::misc_reg::Cr2
@ Cr2
Definition: misc.hh:116
gem5::ThreadContext::readMiscRegNoEffect
virtual RegVal readMiscRegNoEffect(RegIndex misc_reg) const =0
gem5::ThreadContext::setRegFlat
virtual void setRegFlat(const RegId &reg, RegVal val)
Definition: thread_context.cc:209
gem5::X86ISA::misc_reg::Cr3
@ Cr3
Definition: misc.hh:117
gem5::X86ISA::ISA::readMiscReg
RegVal readMiscReg(int miscReg)
Definition: isa.cc:214
gem5::X86ISA::misc_reg::Cr4
@ Cr4
Definition: misc.hh:118
gem5::X86ISA::ISA::getVendorString
std::string getVendorString() const
Definition: isa.cc:502
isa.hh
gem5::X86ISA::ISA::regVal
RegVal regVal[misc_reg::NumRegs]
Definition: isa.hh:55
gem5::X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:92
gem5::X86ISA::CompatabilityMode
@ CompatabilityMode
Definition: types.hh:205
gem5::IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:58
gem5::X86ISA::misc_reg::Dr3
@ Dr3
Definition: misc.hh:136
gem5::X86ISA::misc_reg::IdtrBase
@ IdtrBase
Definition: misc.hh:333
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:204
gem5::X86ISA::misc_reg::FsBase
@ FsBase
Definition: misc.hh:325
gem5::X86ISA::misc_reg::Mtrrcap
@ Mtrrcap
Definition: misc.hh:154
base.hh
UNSERIALIZE_ARRAY
#define UNSERIALIZE_ARRAY(member, size)
Definition: serialize.hh:618
gem5::X86ISA::misc_reg::Fooff
@ Fooff
Definition: misc.hh:396
gem5::X86ISA::misc_reg::X87Top
@ X87Top
Definition: misc.hh:386
gem5::X86ISA::misc_reg::McgCap
@ McgCap
Definition: misc.hh:160
gem5::ThreadContext::setMiscReg
virtual void setMiscReg(RegIndex misc_reg, RegVal val)=0
gem5::X86ISA::ISA::updateHandyM5Reg
void updateHandyM5Reg(Efer efer, CR0 cr0, SegAttr csAttr, SegAttr ssAttr, RFLAGS rflags)
Definition: isa.cc:53
gem5::X86ISA::cc_reg::NumRegs
@ NumRegs
Definition: ccr.hh:58
gem5::BaseMMU::flushAll
virtual void flushAll()
Definition: mmu.cc:81
gem5::X86ISA::misc_reg::EsEffBase
@ EsEffBase
Definition: misc.hh:339
gem5::X86ISA::RealMode
@ RealMode
Definition: types.hh:208
gem5::X86ISA::misc_reg::SsBase
@ SsBase
Definition: misc.hh:323
gem5::X86ISA::p
Bitfield< 0 > p
Definition: pagetable.hh:151
gem5::X86ISA::misc_reg::SsAttr
@ SsAttr
Definition: misc.hh:373
gem5::X86ISA::misc_reg::Rflags
@ Rflags
Definition: misc.hh:143
gem5::X86ISA::misc_reg::Dr4
@ Dr4
Definition: misc.hh:137
gem5::CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:66
gem5::X86ISA::misc_reg::Syscfg
@ Syscfg
Definition: misc.hh:280
gem5::ThreadContext::getCpuPtr
virtual BaseCPU * getCpuPtr()=0
gem5::X86ISA::misc_reg::EsBase
@ EsBase
Definition: misc.hh:321
gem5::BaseISA
Definition: isa.hh:57
gem5::X86ISA::misc_reg::Cr8
@ Cr8
Definition: misc.hh:122
gem5::X86ISA::ISA::setMiscRegNoEffect
void setMiscRegNoEffect(int miscReg, RegVal val)
Definition: isa.cc:236
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:226
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::X86ISA::misc_reg::Efer
@ Efer
Definition: misc.hh:254
gem5::X86ISA::misc_reg::CsAttr
@ CsAttr
Definition: misc.hh:372
misc.hh
gem5::X86ISA::misc_reg::HsBase
@ HsBase
Definition: misc.hh:327
gem5::X86ISA::misc_reg::Pat
@ Pat
Definition: misc.hh:205
thread_context.hh
gem5::X86ISA::misc_reg::TrBase
@ TrBase
Definition: misc.hh:332
gem5::RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:126
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:178
gem5::ThreadContext::setMiscRegNoEffect
virtual void setMiscRegNoEffect(RegIndex misc_reg, RegVal val)=0
gem5::X86ISA::MMU
Definition: mmu.hh:52

Generated on Thu Jun 16 2022 10:41:35 for gem5 by doxygen 1.8.17