gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ua2005.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 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 
29 #include "arch/sparc/interrupts.hh"
30 #include "arch/sparc/isa.hh"
31 #include "arch/sparc/registers.hh"
32 #include "base/bitfield.hh"
33 #include "base/trace.hh"
34 #include "cpu/base.hh"
35 #include "cpu/thread_context.hh"
36 #include "debug/Quiesce.hh"
37 #include "debug/Timer.hh"
38 #include "sim/system.hh"
39 
40 using namespace SparcISA;
41 
42 
43 void
45 {
46  BaseCPU *cpu = tc->getCpuPtr();
47 
48  // If PIL < 14, copy over the tm and sm bits
49  if (pil < 14 && softint & 0x10000)
50  cpu->postInterrupt(0, IT_SOFT_INT, 16);
51  else
52  cpu->clearInterrupt(0, IT_SOFT_INT, 16);
53  if (pil < 14 && softint & 0x1)
54  cpu->postInterrupt(0, IT_SOFT_INT, 0);
55  else
56  cpu->clearInterrupt(0, IT_SOFT_INT, 0);
57 
58  // Copy over any of the other bits that are set
59  for (int bit = 15; bit > 0; --bit) {
60  if (1 << bit & softint && bit > pil)
61  cpu->postInterrupt(0, IT_SOFT_INT, bit);
62  else
63  cpu->clearInterrupt(0, IT_SOFT_INT, bit);
64  }
65 }
66 
67 // These functions map register indices to names
68 static inline std::string
70 {
71  static std::string miscRegName[NumMiscRegs] =
72  {/*"y", "ccr",*/ "asi", "tick", "fprs", "pcr", "pic",
73  "gsr", "softint_set", "softint_clr", "softint", "tick_cmpr",
74  "stick", "stick_cmpr",
75  "tpc", "tnpc", "tstate", "tt", "privtick", "tba", "pstate", "tl",
76  "pil", "cwp", /*"cansave", "canrestore", "cleanwin", "otherwin",
77  "wstate",*/ "gl",
78  "hpstate", "htstate", "hintp", "htba", "hver", "strand_sts_reg",
79  "hstick_cmpr",
80  "fsr", "prictx", "secctx", "partId", "lsuCtrlReg",
81  "scratch0", "scratch1", "scratch2", "scratch3", "scratch4",
82  "scratch5", "scratch6", "scratch7", "cpuMondoHead", "cpuMondoTail",
83  "devMondoHead", "devMondoTail", "resErrorHead", "resErrorTail",
84  "nresErrorHead", "nresErrorTail", "TlbData" };
85  return miscRegName[index];
86 }
87 
88 void
89 ISA::setFSReg(int miscReg, RegVal val)
90 {
91  BaseCPU *cpu = tc->getCpuPtr();
92 
93  int64_t time;
94  switch (miscReg) {
95  /* Full system only ASRs */
96  case MISCREG_SOFTINT:
97  setMiscRegNoEffect(miscReg, val);
98  checkSoftInt();
99  break;
100  case MISCREG_SOFTINT_CLR:
102  case MISCREG_SOFTINT_SET:
104 
105  case MISCREG_TICK_CMPR:
106  if (tickCompare == NULL)
107  tickCompare = new TickCompareEvent(this);
108  setMiscRegNoEffect(miscReg, val);
109  if ((tick_cmpr & ~mask(63)) && tickCompare->scheduled())
110  cpu->deschedule(tickCompare);
111  time = (tick_cmpr & mask(63)) - (tick & mask(63));
112  if (!(tick_cmpr & ~mask(63)) && time > 0) {
113  if (tickCompare->scheduled())
114  cpu->deschedule(tickCompare);
115  cpu->schedule(tickCompare, cpu->clockEdge(Cycles(time)));
116  }
117  DPRINTF(Timer, "writing to TICK compare register value %#X\n", val);
118  break;
119 
120  case MISCREG_STICK_CMPR:
121  if (sTickCompare == NULL)
122  sTickCompare = new STickCompareEvent(this);
123  setMiscRegNoEffect(miscReg, val);
124  if ((stick_cmpr & ~mask(63)) && sTickCompare->scheduled())
125  cpu->deschedule(sTickCompare);
126  time = ((int64_t)(stick_cmpr & mask(63)) - (int64_t)stick) -
127  cpu->instCount();
128  if (!(stick_cmpr & ~mask(63)) && time > 0) {
129  if (sTickCompare->scheduled())
130  cpu->deschedule(sTickCompare);
131  cpu->schedule(sTickCompare, cpu->clockEdge(Cycles(time)));
132  }
133  DPRINTF(Timer, "writing to sTICK compare register value %#X\n", val);
134  break;
135 
136  case MISCREG_PSTATE:
137  setMiscRegNoEffect(miscReg, val);
138  break;
139 
140  case MISCREG_PIL:
141  setMiscRegNoEffect(miscReg, val);
142  checkSoftInt();
143  break;
144 
145  case MISCREG_HVER:
146  panic("Shouldn't be writing HVER\n");
147 
148  case MISCREG_HINTP:
149  setMiscRegNoEffect(miscReg, val);
150  if (hintp)
151  cpu->postInterrupt(0, IT_HINTP, 0);
152  else
153  cpu->clearInterrupt(0, IT_HINTP, 0);
154  break;
155 
156  case MISCREG_HTBA:
157  // clear lower 7 bits on writes.
158  setMiscRegNoEffect(miscReg, val & ULL(~0x7FFF));
159  break;
160 
163  setMiscRegNoEffect(miscReg, val);
165  cpu->postInterrupt(0, IT_CPU_MONDO, 0);
166  else
167  cpu->clearInterrupt(0, IT_CPU_MONDO, 0);
168  break;
171  setMiscRegNoEffect(miscReg, val);
173  cpu->postInterrupt(0, IT_DEV_MONDO, 0);
174  else
175  cpu->clearInterrupt(0, IT_DEV_MONDO, 0);
176  break;
179  setMiscRegNoEffect(miscReg, val);
181  cpu->postInterrupt(0, IT_RES_ERROR, 0);
182  else
183  cpu->clearInterrupt(0, IT_RES_ERROR, 0);
184  break;
187  setMiscRegNoEffect(miscReg, val);
188  // This one doesn't have an interrupt to report to the guest OS
189  break;
190 
191  case MISCREG_HSTICK_CMPR:
192  if (hSTickCompare == NULL)
193  hSTickCompare = new HSTickCompareEvent(this);
194  setMiscRegNoEffect(miscReg, val);
195  if ((hstick_cmpr & ~mask(63)) && hSTickCompare->scheduled())
197  time = ((int64_t)(hstick_cmpr & mask(63)) - (int64_t)stick) -
198  cpu->instCount();
199  if (!(hstick_cmpr & ~mask(63)) && time > 0) {
200  if (hSTickCompare->scheduled())
202  cpu->schedule(hSTickCompare, cpu->clockEdge(Cycles(time)));
203  }
204  DPRINTF(Timer, "writing to hsTICK compare register value %#X\n", val);
205  break;
206 
207  case MISCREG_HPSTATE:
208  {
209  HPSTATE newVal = val;
210  newVal.id = 1;
211  // T1000 spec says impl. dependent val must always be 1
212  setMiscRegNoEffect(miscReg, newVal);
213  newVal = hpstate;
214  if (newVal.tlz && tl == 0 && !newVal.hpriv)
215  cpu->postInterrupt(0, IT_TRAP_LEVEL_ZERO, 0);
216  else
218  break;
219  }
220  case MISCREG_HTSTATE:
221  setMiscRegNoEffect(miscReg, val);
222  break;
223 
225  if (bits(val,2,2))
226  panic("No support for setting spec_en bit\n");
227  setMiscRegNoEffect(miscReg, bits(val,0,0));
228  if (!bits(val,0,0)) {
229  DPRINTF(Quiesce, "Cpu executed quiescing instruction\n");
230  // Time to go to sleep
231  tc->suspend();
232  auto *workload = tc->getSystemPtr()->workload;
233  if (workload)
234  workload->recordQuiesce();
235  }
236  break;
237 
238  default:
239  panic("Invalid write to FS misc register %s\n",
240  getMiscRegName(miscReg));
241  }
242 }
243 
244 RegVal
245 ISA::readFSReg(int miscReg)
246 {
247  uint64_t temp;
248 
249  switch (miscReg) {
250  /* Privileged registers. */
259  case MISCREG_SOFTINT:
260  case MISCREG_TICK_CMPR:
261  case MISCREG_STICK_CMPR:
262  case MISCREG_PIL:
263  case MISCREG_HPSTATE:
264  case MISCREG_HINTP:
265  case MISCREG_HTSTATE:
266  case MISCREG_HSTICK_CMPR:
267  return readMiscRegNoEffect(miscReg) ;
268 
269  case MISCREG_HTBA:
270  return readMiscRegNoEffect(miscReg) & ULL(~0x7FFF);
271  case MISCREG_HVER:
272  // XXX set to match Legion
273  return ULL(0x3e) << 48 |
274  ULL(0x23) << 32 |
275  ULL(0x20) << 24 |
276  // MaxGL << 16 | XXX For some reason legion doesn't set GL
277  MaxTL << 8 |
278  (NWindows -1) << 0;
279 
281  System *sys;
282  int x;
283  sys = tc->getSystemPtr();
284 
285  temp = readMiscRegNoEffect(miscReg) & (STS::active | STS::speculative);
286  // Check that the CPU array is fully populated
287  // (by calling getNumCPus())
288  assert(sys->threads.size() > tc->contextId());
289 
290  temp |= tc->contextId() << STS::shft_id;
291 
292  for (x = tc->contextId() & ~3; x < sys->threads.size(); x++) {
293  switch (sys->threads[x]->status()) {
295  temp |= STS::st_run << (STS::shft_fsm0 -
296  ((x & 0x3) * (STS::shft_fsm0-STS::shft_fsm1)));
297  break;
299  // should this be idle?
300  temp |= STS::st_idle << (STS::shft_fsm0 -
301  ((x & 0x3) * (STS::shft_fsm0-STS::shft_fsm1)));
302  break;
304  temp |= STS::st_halt << (STS::shft_fsm0 -
305  ((x & 0x3) * (STS::shft_fsm0-STS::shft_fsm1)));
306  break;
307  default:
308  panic("What state are we in?!\n");
309  } // switch
310  } // for
311 
312  return temp;
313  default:
314  panic("Invalid read to FS misc register\n");
315  }
316 }
317 
318 void
320 {
321  panic("tick compare not implemented\n");
322 }
323 
324 void
326 {
327  BaseCPU *cpu = tc->getCpuPtr();
328 
329  // since our microcode instructions take two cycles we need to check if
330  // we're actually at the correct cycle or we need to wait a little while
331  // more
332  int delay;
333  delay = ((int64_t)(stick_cmpr & mask(63)) - (int64_t)stick) -
334  cpu->instCount();
335  assert(delay >= 0 && "stick compare missed interrupt cycle");
336 
337  if (delay == 0 || tc->status() == ThreadContext::Suspended) {
338  DPRINTF(Timer, "STick compare cycle reached at %#x\n",
339  (stick_cmpr & mask(63)));
340  if (!(tc->readMiscRegNoEffect(MISCREG_STICK_CMPR) & (ULL(1) << 63))) {
341  setMiscReg(MISCREG_SOFTINT, softint | (ULL(1) << 16));
342  }
343  } else {
344  cpu->schedule(sTickCompare, cpu->clockEdge(Cycles(delay)));
345  }
346 }
347 
348 void
350 {
351  BaseCPU *cpu = tc->getCpuPtr();
352 
353  // since our microcode instructions take two cycles we need to check if
354  // we're actually at the correct cycle or we need to wait a little while
355  // more
356  int delay;
357  if ( tc->status() == ThreadContext::Halted)
358  return;
359 
360  delay = ((int64_t)(hstick_cmpr & mask(63)) - (int64_t)stick) -
361  cpu->instCount();
362  assert(delay >= 0 && "hstick compare missed interrupt cycle");
363 
364  if (delay == 0 || tc->status() == ThreadContext::Suspended) {
365  DPRINTF(Timer, "HSTick compare cycle reached at %#x\n",
366  (stick_cmpr & mask(63)));
367  if (!(tc->readMiscRegNoEffect(MISCREG_HSTICK_CMPR) & (ULL(1) << 63))) {
369  }
370  // Need to do something to cause interrupt to happen here !!! @todo
371  } else {
372  cpu->schedule(hSTickCompare, cpu->clockEdge(Cycles(delay)));
373  }
374 }
375 
ThreadContext::readMiscRegNoEffect
virtual RegVal readMiscRegNoEffect(RegIndex misc_reg) const =0
SparcISA::MISCREG_PSTATE
@ MISCREG_PSTATE
Definition: miscregs.hh:62
Event::scheduled
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:462
SparcISA::MISCREG_QUEUE_CPU_MONDO_TAIL
@ MISCREG_QUEUE_CPU_MONDO_TAIL
Definition: miscregs.hh:103
system.hh
SparcISA::MISCREG_TICK_CMPR
@ MISCREG_TICK_CMPR
Definition: miscregs.hh:51
MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:44
SparcISA::MISCREG_PIL
@ MISCREG_PIL
Definition: miscregs.hh:64
SparcISA::ISA::sTickCompare
STickCompareEvent * sTickCompare
Definition: isa.hh:133
SparcISA::MISCREG_HINTP
@ MISCREG_HINTP
Definition: miscregs.hh:76
SparcISA::MISCREG_HTSTATE
@ MISCREG_HTSTATE
Definition: miscregs.hh:75
SparcISA::ISA::STickCompareEvent
EventWrapper< ISA, &ISA::processSTickCompare > STickCompareEvent
Definition: isa.hh:132
Workload::recordQuiesce
void recordQuiesce()
Definition: workload.hh:70
SparcISA::IT_CPU_MONDO
@ IT_CPU_MONDO
Definition: interrupts.hh:49
SparcISA::ISA::cpu_mondo_head
uint64_t cpu_mondo_head
Definition: isa.hh:106
ThreadContext::suspend
virtual void suspend()=0
Set the status to Suspended.
SparcISA::ISA::processSTickCompare
void processSTickCompare()
Definition: ua2005.cc:325
SparcISA::MISCREG_SOFTINT
@ MISCREG_SOFTINT
Definition: miscregs.hh:50
SparcISA::ISA::hintp
uint64_t hintp
Definition: isa.hh:89
BaseCPU::postInterrupt
void postInterrupt(ThreadID tid, int int_num, int index)
Definition: base.cc:191
EventManager::deschedule
void deschedule(Event &event)
Definition: eventq.hh:1025
SparcISA::MISCREG_QUEUE_DEV_MONDO_HEAD
@ MISCREG_QUEUE_DEV_MONDO_HEAD
Definition: miscregs.hh:104
SparcISA::NWindows
const int NWindows
Definition: sparc_traits.hh:41
ArmISA::miscRegName
const char *const miscRegName[]
Definition: miscregs.hh:1167
SparcISA::ISA::setFSReg
void setFSReg(int miscReg, RegVal val)
Definition: ua2005.cc:89
SparcISA::MISCREG_QUEUE_DEV_MONDO_TAIL
@ MISCREG_QUEUE_DEV_MONDO_TAIL
Definition: miscregs.hh:105
SparcISA::ISA::processHSTickCompare
void processHSTickCompare()
Definition: ua2005.cc:349
SparcISA::MISCREG_SOFTINT_CLR
@ MISCREG_SOFTINT_CLR
Definition: miscregs.hh:49
SparcISA::ISA::hpstate
HPSTATE hpstate
Hyperprivileged Registers.
Definition: isa.hh:87
SparcISA::ISA::readMiscRegNoEffect
RegVal readMiscRegNoEffect(int miscReg) const
Definition: isa.cc:165
SparcISA
Definition: asi.cc:31
SparcISA::ISA::stick_cmpr
uint64_t stick_cmpr
Definition: isa.hh:62
SparcISA::IT_TRAP_LEVEL_ZERO
@ IT_TRAP_LEVEL_ZERO
Definition: interrupts.hh:46
SparcISA::ISA::res_error_head
uint64_t res_error_head
Definition: isa.hh:110
EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1016
SparcISA::ISA::setMiscRegNoEffect
void setMiscRegNoEffect(int miscReg, RegVal val)
Definition: isa.cc:374
System::workload
Workload * workload
OS kernel.
Definition: system.hh:322
SparcISA::MISCREG_QUEUE_NRES_ERROR_TAIL
@ MISCREG_QUEUE_NRES_ERROR_TAIL
Definition: miscregs.hh:109
bitfield.hh
System
Definition: system.hh:73
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
ThreadContext::Halted
@ Halted
Permanently shut down.
Definition: thread_context.hh:116
BaseISA::tc
ThreadContext * tc
Definition: isa.hh:52
SparcISA::IT_DEV_MONDO
@ IT_DEV_MONDO
Definition: interrupts.hh:50
SparcISA::MISCREG_SOFTINT_SET
@ MISCREG_SOFTINT_SET
Definition: miscregs.hh:48
Clocked::clockEdge
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
Definition: clocked_object.hh:174
SparcISA::ISA::dev_mondo_head
uint64_t dev_mondo_head
Definition: isa.hh:108
SparcISA::ISA::res_error_tail
uint64_t res_error_tail
Definition: isa.hh:111
BaseCPU::clearInterrupt
void clearInterrupt(ThreadID tid, int int_num, int index)
Definition: base.hh:251
SparcISA::ISA::checkSoftInt
void checkSoftInt()
Definition: ua2005.cc:44
SparcISA::NumMiscRegs
const int NumMiscRegs
Definition: miscregs.hh:170
SparcISA::IT_SOFT_INT
@ IT_SOFT_INT
Definition: interrupts.hh:52
SparcISA::MISCREG_QUEUE_CPU_MONDO_HEAD
@ MISCREG_QUEUE_CPU_MONDO_HEAD
Definition: miscregs.hh:102
System::Threads::size
int size() const
Definition: system.hh:204
ThreadContext::contextId
virtual ContextID contextId() const =0
SparcISA::ISA::cpu_mondo_tail
uint64_t cpu_mondo_tail
Definition: isa.hh:107
RiscvISA::x
Bitfield< 3 > x
Definition: pagetable.hh:70
SparcISA::MISCREG_QUEUE_RES_ERROR_HEAD
@ MISCREG_QUEUE_RES_ERROR_HEAD
Definition: miscregs.hh:106
SparcISA::ISA::tick_cmpr
uint64_t tick_cmpr
Definition: isa.hh:60
SparcISA::ISA::pil
uint8_t pil
Definition: isa.hh:77
SparcISA::ISA::tick
uint64_t tick
Definition: isa.hh:56
SparcISA::MISCREG_STRAND_STS_REG
@ MISCREG_STRAND_STS_REG
Definition: miscregs.hh:79
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
ThreadContext::status
virtual Status status() const =0
SparcISA::MISCREG_STICK_CMPR
@ MISCREG_STICK_CMPR
Definition: miscregs.hh:53
SparcISA::ISA::setMiscReg
void setMiscReg(int miscReg, RegVal val)
Definition: isa.cc:555
SparcISA::ISA::softint
uint64_t softint
Definition: isa.hh:59
SparcISA::MISCREG_HSTICK_CMPR
@ MISCREG_HSTICK_CMPR
Definition: miscregs.hh:80
BaseCPU
Definition: base.hh:104
SparcISA::MISCREG_HPSTATE
@ MISCREG_HPSTATE
Hyper privileged registers.
Definition: miscregs.hh:74
System::threads
Threads threads
Definition: system.hh:304
ThreadContext::Suspended
@ Suspended
Temporarily inactive.
Definition: thread_context.hh:107
getMiscRegName
static std::string getMiscRegName(RegIndex index)
Definition: ua2005.cc:69
SparcISA::IT_RES_ERROR
@ IT_RES_ERROR
Definition: interrupts.hh:51
base.hh
SparcISA::ISA::processTickCompare
void processTickCompare()
Process a tick compare event and generate an interrupt on the cpu if appropriate.
Definition: ua2005.cc:319
RegIndex
uint16_t RegIndex
Definition: types.hh:52
SparcISA::MISCREG_QUEUE_NRES_ERROR_HEAD
@ MISCREG_QUEUE_NRES_ERROR_HEAD
Definition: miscregs.hh:108
SparcISA::MISCREG_HTBA
@ MISCREG_HTBA
Definition: miscregs.hh:77
SparcISA::ISA::tl
uint8_t tl
Definition: isa.hh:76
interrupts.hh
SparcISA::MISCREG_QUEUE_RES_ERROR_TAIL
@ MISCREG_QUEUE_RES_ERROR_TAIL
Definition: miscregs.hh:107
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
ThreadContext::Active
@ Active
Running.
Definition: thread_context.hh:103
bits
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition: bitfield.hh:73
SparcISA::ISA::hSTickCompare
HSTickCompareEvent * hSTickCompare
Definition: isa.hh:136
SparcISA::ISA::hstick_cmpr
uint64_t hstick_cmpr
Definition: isa.hh:91
registers.hh
trace.hh
SparcISA::ISA::tickCompare
TickCompareEvent * tickCompare
Definition: isa.hh:130
BaseCPU::instCount
Tick instCount()
Definition: base.hh:229
SparcISA::ISA::stick
uint64_t stick
Definition: isa.hh:61
SparcISA::ISA::TickCompareEvent
EventWrapper< ISA, &ISA::processTickCompare > TickCompareEvent
Definition: isa.hh:129
SparcISA::ISA::readFSReg
RegVal readFSReg(int miscReg)
Definition: ua2005.cc:245
SparcISA::ISA::HSTickCompareEvent
EventWrapper< ISA, &ISA::processHSTickCompare > HSTickCompareEvent
Definition: isa.hh:135
ThreadContext::getCpuPtr
virtual BaseCPU * getCpuPtr()=0
SparcISA::ISA::dev_mondo_tail
uint64_t dev_mondo_tail
Definition: isa.hh:109
isa.hh
SparcISA::MISCREG_HVER
@ MISCREG_HVER
Definition: miscregs.hh:78
thread_context.hh
ULL
#define ULL(N)
uint64_t constant
Definition: types.hh:46
RegVal
uint64_t RegVal
Definition: types.hh:174
SparcISA::IT_HINTP
@ IT_HINTP
Definition: interrupts.hh:47
ArmISA::mask
Bitfield< 28, 24 > mask
Definition: miscregs_types.hh:711
ThreadContext::getSystemPtr
virtual System * getSystemPtr()=0
SparcISA::MaxTL
const int MaxTL
Definition: sparc_traits.hh:36
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

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