gem5  v21.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/mips/isa.hh"
30 
31 #include "arch/mips/mt.hh"
34 #include "base/bitfield.hh"
35 #include "cpu/base.hh"
36 #include "cpu/thread_context.hh"
37 #include "debug/MipsPRA.hh"
38 #include "params/MipsISA.hh"
39 
40 namespace MipsISA
41 {
42 
43 std::string
45 {
46  "Index", "MVPControl", "MVPConf0", "MVPConf1", "", "", "", "",
47  "Random", "VPEControl", "VPEConf0", "VPEConf1",
48  "YQMask", "VPESchedule", "VPEScheFBack", "VPEOpt",
49  "EntryLo0", "TCStatus", "TCBind", "TCRestart",
50  "TCHalt", "TCContext", "TCSchedule", "TCScheFBack",
51  "EntryLo1", "", "", "", "", "", "", "",
52  "Context", "ContextConfig", "", "", "", "", "", "",
53  "PageMask", "PageGrain", "", "", "", "", "", "",
54  "Wired", "SRSConf0", "SRCConf1", "SRSConf2",
55  "SRSConf3", "SRSConf4", "", "",
56  "HWREna", "", "", "", "", "", "", "",
57  "BadVAddr", "", "", "", "", "", "", "",
58  "Count", "", "", "", "", "", "", "",
59  "EntryHi", "", "", "", "", "", "", "",
60  "Compare", "", "", "", "", "", "", "",
61  "Status", "IntCtl", "SRSCtl", "SRSMap", "", "", "", "",
62  "Cause", "", "", "", "", "", "", "",
63  "EPC", "", "", "", "", "", "", "",
64  "PRId", "EBase", "", "", "", "", "", "",
65  "Config", "Config1", "Config2", "Config3", "", "", "", "",
66  "LLAddr", "", "", "", "", "", "", "",
67  "WatchLo0", "WatchLo1", "WatchLo2", "WatchLo3",
68  "WatchLo4", "WatchLo5", "WatchLo6", "WatchLo7",
69  "WatchHi0", "WatchHi1", "WatchHi2", "WatchHi3",
70  "WatchHi4", "WatchHi5", "WatchHi6", "WatchHi7",
71  "XCContext64", "", "", "", "", "", "", "",
72  "", "", "", "", "", "", "", "",
73  "", "", "", "", "", "", "", "",
74  "Debug", "TraceControl1", "TraceControl2", "UserTraceData",
75  "TraceBPC", "", "", "",
76  "DEPC", "", "", "", "", "", "", "",
77  "PerfCnt0", "PerfCnt1", "PerfCnt2", "PerfCnt3",
78  "PerfCnt4", "PerfCnt5", "PerfCnt6", "PerfCnt7",
79  "ErrCtl", "", "", "", "", "", "", "",
80  "CacheErr0", "CacheErr1", "CacheErr2", "CacheErr3", "", "", "", "",
81  "TagLo0", "DataLo1", "TagLo2", "DataLo3",
82  "TagLo4", "DataLo5", "TagLo6", "DataLo7",
83  "TagHi0", "DataHi1", "TagHi2", "DataHi3",
84  "TagHi4", "DataHi5", "TagHi6", "DataHi7",
85  "ErrorEPC", "", "", "", "", "", "", "",
86  "DESAVE", "", "", "", "", "", "", "",
87  "LLFlag"
88 };
89 
90 ISA::ISA(const Params &p) : BaseISA(p), numThreads(p.num_threads),
91  numVpes(p.num_vpes)
92 {
93  miscRegFile.resize(NumMiscRegs);
94  bankType.resize(NumMiscRegs);
95 
96  for (int i=0; i < NumMiscRegs; i++) {
97  miscRegFile[i].resize(1);
99  }
100 
102 
103  for (int i = 0; i < NumMiscRegs; i++) {
104  miscRegFile_WriteMask[i].push_back(0);
105  }
106 
107  // Initialize all Per-VPE regs
108  uint32_t per_vpe_regs[] = { MISCREG_VPE_CONTROL,
116  };
117  uint32_t num_vpe_regs = sizeof(per_vpe_regs) / 4;
118  for (int i = 0; i < num_vpe_regs; i++) {
119  if (numVpes > 1) {
120  miscRegFile[per_vpe_regs[i]].resize(numVpes);
121  }
122  bankType[per_vpe_regs[i]] = perVirtProcessor;
123  }
124 
125  // Initialize all Per-TC regs
126  uint32_t per_tc_regs[] = { MISCREG_STATUS,
132  };
133  uint32_t num_tc_regs = sizeof(per_tc_regs) / 4;
134 
135  for (int i = 0; i < num_tc_regs; i++) {
136  miscRegFile[per_tc_regs[i]].resize(numThreads);
137  bankType[per_tc_regs[i]] = perThreadContext;
138  }
139 
140  clear();
141 }
142 
143 void
145 {
146  for (int i = 0; i < NumMiscRegs; i++) {
147  for (int j = 0; j < miscRegFile[i].size(); j++)
148  miscRegFile[i][j] = 0;
149 
150  for (int k = 0; k < miscRegFile_WriteMask[i].size(); k++)
151  miscRegFile_WriteMask[i][k] = (long unsigned int)(-1);
152  }
153 }
154 
155 
156 void
158 {
159  DPRINTF(MipsPRA, "Resetting CP0 State with %i TCs and %i VPEs\n",
161 
163  panic("CP state must be set before the following code is used");
164 
165  // Do Default CP0 initialization HERE
166 
167  // Do Initialization for MT cores here (eventually use
168  // core_name parameter to toggle this initialization)
169  // ===================================================
170  DPRINTF(MipsPRA, "Initializing CP0 State.... ");
171 
173  procId.coOp = cp.CP0_PRId_CompanyOptions;
174  procId.coId = cp.CP0_PRId_CompanyID;
175  procId.procId = cp.CP0_PRId_ProcessorID;
176  procId.rev = cp.CP0_PRId_Revision;
178 
179  // Now, create Write Mask for ProcID register
180  RegVal procIDMask = 0; // Read-Only register
181  replaceBits(procIDMask, 32, 0, 0);
182  setRegMask(MISCREG_PRID, procIDMask);
183 
184  // Config
185  ConfigReg cfg = readMiscRegNoEffect(MISCREG_CONFIG);
186  cfg.be = cp.CP0_Config_BE;
187  cfg.at = cp.CP0_Config_AT;
188  cfg.ar = cp.CP0_Config_AR;
189  cfg.mt = cp.CP0_Config_MT;
190  cfg.vi = cp.CP0_Config_VI;
191  cfg.m = 1;
193  // Now, create Write Mask for Config register
194  RegVal cfg_Mask = 0x7FFF0007;
195  replaceBits(cfg_Mask, 32, 0, 0);
196  setRegMask(MISCREG_CONFIG, cfg_Mask);
197 
198  // Config1
199  Config1Reg cfg1 = readMiscRegNoEffect(MISCREG_CONFIG1);
200  cfg1.mmuSize = cp.CP0_Config1_MMU;
201  cfg1.is = cp.CP0_Config1_IS;
202  cfg1.il = cp.CP0_Config1_IL;
203  cfg1.ia = cp.CP0_Config1_IA;
204  cfg1.ds = cp.CP0_Config1_DS;
205  cfg1.dl = cp.CP0_Config1_DL;
206  cfg1.da = cp.CP0_Config1_DA;
207  cfg1.fp = cp.CP0_Config1_FP;
208  cfg1.ep = cp.CP0_Config1_EP;
209  cfg1.wr = cp.CP0_Config1_WR;
210  cfg1.md = cp.CP0_Config1_MD;
211  cfg1.c2 = cp.CP0_Config1_C2;
212  cfg1.pc = cp.CP0_Config1_PC;
213  cfg1.m = cp.CP0_Config1_M;
215  // Now, create Write Mask for Config register
216  RegVal cfg1_Mask = 0; // Read Only Register
217  replaceBits(cfg1_Mask, 32,0 , 0);
218  setRegMask(MISCREG_CONFIG1, cfg1_Mask);
219 
220  // Config2
221  Config2Reg cfg2 = readMiscRegNoEffect(MISCREG_CONFIG2);
222  cfg2.tu = cp.CP0_Config2_TU;
223  cfg2.ts = cp.CP0_Config2_TS;
224  cfg2.tl = cp.CP0_Config2_TL;
225  cfg2.ta = cp.CP0_Config2_TA;
226  cfg2.su = cp.CP0_Config2_SU;
227  cfg2.ss = cp.CP0_Config2_SS;
228  cfg2.sl = cp.CP0_Config2_SL;
229  cfg2.sa = cp.CP0_Config2_SA;
230  cfg2.m = cp.CP0_Config2_M;
232  // Now, create Write Mask for Config register
233  RegVal cfg2_Mask = 0x7000F000; // Read Only Register
234  replaceBits(cfg2_Mask, 32, 0, 0);
235  setRegMask(MISCREG_CONFIG2, cfg2_Mask);
236 
237  // Config3
238  Config3Reg cfg3 = readMiscRegNoEffect(MISCREG_CONFIG3);
239  cfg3.dspp = cp.CP0_Config3_DSPP;
240  cfg3.lpa = cp.CP0_Config3_LPA;
241  cfg3.veic = cp.CP0_Config3_VEIC;
242  cfg3.vint = cp.CP0_Config3_VInt;
243  cfg3.sp = cp.CP0_Config3_SP;
244  cfg3.mt = cp.CP0_Config3_MT;
245  cfg3.sm = cp.CP0_Config3_SM;
246  cfg3.tl = cp.CP0_Config3_TL;
248  // Now, create Write Mask for Config register
249  RegVal cfg3_Mask = 0; // Read Only Register
250  replaceBits(cfg3_Mask, 32,0 , 0);
251  setRegMask(MISCREG_CONFIG3, cfg3_Mask);
252 
253  // EBase - CPUNum
254  EBaseReg eBase = readMiscRegNoEffect(MISCREG_EBASE);
255  eBase.cpuNum = cp.CP0_EBase_CPUNum;
256  replaceBits(eBase, 31, 31, 1);
258  // Now, create Write Mask for Config register
259  RegVal EB_Mask = 0x3FFFF000;// Except Exception Base, the
260  // entire register is read only
261  replaceBits(EB_Mask, 32, 0, 0);
262  setRegMask(MISCREG_EBASE, EB_Mask);
263 
264  // SRS Control - HSS (Highest Shadow Set)
265  SRSCtlReg scsCtl = readMiscRegNoEffect(MISCREG_SRSCTL);
266  scsCtl.hss = cp.CP0_SrsCtl_HSS;
268  // Now, create Write Mask for the SRS Ctl register
269  RegVal SC_Mask = 0x0000F3C0;
270  replaceBits(SC_Mask, 32, 0, 0);
271  setRegMask(MISCREG_SRSCTL, SC_Mask);
272 
273  // IntCtl - IPTI, IPPCI
274  IntCtlReg intCtl = readMiscRegNoEffect(MISCREG_INTCTL);
275  intCtl.ipti = cp.CP0_IntCtl_IPTI;
276  intCtl.ippci = cp.CP0_IntCtl_IPPCI;
278  // Now, create Write Mask for the IntCtl register
279  RegVal IC_Mask = 0x000003E0;
280  replaceBits(IC_Mask, 32, 0, 0);
281  setRegMask(MISCREG_INTCTL, IC_Mask);
282 
283  // Watch Hi - M - FIXME (More than 1 Watch register)
284  WatchHiReg watchHi = readMiscRegNoEffect(MISCREG_WATCHHI0);
285  watchHi.m = cp.CP0_WatchHi_M;
287  // Now, create Write Mask for the IntCtl register
288  RegVal wh_Mask = 0x7FFF0FFF;
289  replaceBits(wh_Mask, 32, 0, 0);
290  setRegMask(MISCREG_WATCHHI0, wh_Mask);
291 
292  // Perf Ctr - M - FIXME (More than 1 PerfCnt Pair)
293  PerfCntCtlReg perfCntCtl = readMiscRegNoEffect(MISCREG_PERFCNT0);
294  perfCntCtl.m = cp.CP0_PerfCtr_M;
295  perfCntCtl.w = cp.CP0_PerfCtr_W;
297  // Now, create Write Mask for the IntCtl register
298  RegVal pc_Mask = 0x00007FF;
299  replaceBits(pc_Mask, 32, 0, 0);
300  setRegMask(MISCREG_PERFCNT0, pc_Mask);
301 
302  // Random
304  // Now, create Write Mask for the IntCtl register
305  RegVal random_Mask = 0;
306  replaceBits(random_Mask, 32, 0, 0);
307  setRegMask(MISCREG_CP0_RANDOM, random_Mask);
308 
309  // PageGrain
310  PageGrainReg pageGrain = readMiscRegNoEffect(MISCREG_PAGEGRAIN);
311  pageGrain.esp = cp.CP0_Config3_SP;
313  // Now, create Write Mask for the IntCtl register
314  RegVal pg_Mask = 0x10000000;
315  replaceBits(pg_Mask, 32, 0, 0);
316  setRegMask(MISCREG_PAGEGRAIN, pg_Mask);
317 
318  // Status
320  // Only CU0 and IE are modified on a reset - everything else needs
321  // to be controlled on a per CPU model basis
322 
323  // Enable CP0 on reset
324  // status.cu0 = 1;
325 
326  // Enable ERL bit on a reset
327  status.erl = 1;
328  // Enable BEV bit on a reset
329  status.bev = 1;
330 
332  // Now, create Write Mask for the Status register
333  RegVal stat_Mask = 0xFF78FF17;
334  replaceBits(stat_Mask, 32, 0, 0);
335  setRegMask(MISCREG_STATUS, stat_Mask);
336 
337 
338  // MVPConf0
339  MVPConf0Reg mvpConf0 = readMiscRegNoEffect(MISCREG_MVP_CONF0);
340  mvpConf0.tca = 1;
341  mvpConf0.pvpe = numVpes - 1;
342  mvpConf0.ptc = numThreads - 1;
344 
345  // VPEConf0
346  VPEConf0Reg vpeConf0 = readMiscRegNoEffect(MISCREG_VPE_CONF0);
347  vpeConf0.mvp = 1;
349 
350  // TCBind
351  for (ThreadID tid = 0; tid < numThreads; tid++) {
352  TCBindReg tcBind = readMiscRegNoEffect(MISCREG_TC_BIND, tid);
353  tcBind.curTC = tid;
354  setMiscRegNoEffect(MISCREG_TC_BIND, tcBind, tid);
355  }
356  // TCHalt
357  TCHaltReg tcHalt = readMiscRegNoEffect(MISCREG_TC_HALT);
358  tcHalt.h = 0;
360 
361  // TCStatus
362  // Set TCStatus Activated to 1 for the initial thread that is running
363  TCStatusReg tcStatus = readMiscRegNoEffect(MISCREG_TC_STATUS);
364  tcStatus.a = 1;
366 
367  // Set Dynamically Allocatable bit to 1 for all other threads
368  for (ThreadID tid = 1; tid < numThreads; tid++) {
369  tcStatus = readMiscRegNoEffect(MISCREG_TC_STATUS, tid);
370  tcStatus.da = 1;
371  setMiscRegNoEffect(MISCREG_TC_STATUS, tcStatus, tid);
372  }
373 
374 
375  RegVal mask = 0x7FFFFFFF;
376 
377  // Now, create Write Mask for the Index register
378  replaceBits(mask, 32, 0, 0);
380 
381  mask = 0x3FFFFFFF;
382  replaceBits(mask, 32, 0, 0);
385 
386  mask = 0xFF800000;
387  replaceBits(mask, 32, 0, 0);
389 
390  mask = 0x1FFFF800;
391  replaceBits(mask, 32, 0, 0);
393 
394  mask = 0x0;
395  replaceBits(mask, 32, 0, 0);
398 
399  mask = 0x08C00300;
400  replaceBits(mask, 32, 0, 0);
402 
403 }
404 
405 inline unsigned
407 {
408  TCBindReg tcBind = miscRegFile[MISCREG_TC_BIND][tid];
409  return tcBind.curVPE;
410 }
411 
412 RegVal
413 ISA::readMiscRegNoEffect(int misc_reg, ThreadID tid) const
414 {
415  unsigned reg_sel = (bankType[misc_reg] == perThreadContext)
416  ? tid : getVPENum(tid);
417  DPRINTF(MipsPRA, "Reading CP0 Register:%u Select:%u (%s) (%lx).\n",
418  misc_reg / 8, misc_reg % 8, miscRegNames[misc_reg],
419  miscRegFile[misc_reg][reg_sel]);
420  return miscRegFile[misc_reg][reg_sel];
421 }
422 
423 //@TODO: MIPS MT's register view automatically connects
424 // Status to TCStatus depending on current thread
425 //template <class TC>
426 RegVal
427 ISA::readMiscReg(int misc_reg, ThreadID tid)
428 {
429  unsigned reg_sel = (bankType[misc_reg] == perThreadContext)
430  ? tid : getVPENum(tid);
431  DPRINTF(MipsPRA,
432  "Reading CP0 Register:%u Select:%u (%s) with effect (%lx).\n",
433  misc_reg / 8, misc_reg % 8, miscRegNames[misc_reg],
434  miscRegFile[misc_reg][reg_sel]);
435 
436  return miscRegFile[misc_reg][reg_sel];
437 }
438 
439 void
441 {
442  unsigned reg_sel = (bankType[misc_reg] == perThreadContext)
443  ? tid : getVPENum(tid);
444  DPRINTF(MipsPRA,
445  "[tid:%i] Setting (direct set) CP0 Register:%u "
446  "Select:%u (%s) to %#x.\n",
447  tid, misc_reg / 8, misc_reg % 8, miscRegNames[misc_reg], val);
448 
449  miscRegFile[misc_reg][reg_sel] = val;
450 }
451 
452 void
453 ISA::setRegMask(int misc_reg, RegVal val, ThreadID tid)
454 {
455  unsigned reg_sel = (bankType[misc_reg] == perThreadContext)
456  ? tid : getVPENum(tid);
457  DPRINTF(MipsPRA,
458  "[tid:%i] Setting CP0 Register: %u Select: %u (%s) to %#x\n",
459  tid, misc_reg / 8, misc_reg % 8, miscRegNames[misc_reg], val);
460  miscRegFile_WriteMask[misc_reg][reg_sel] = val;
461 }
462 
463 // PROGRAMMER'S NOTES:
464 // (1) Some CP0 Registers have fields that cannot
465 // be overwritten. Make sure to handle those particular registers
466 // with care!
467 void
468 ISA::setMiscReg(int misc_reg, RegVal val, ThreadID tid)
469 {
470  int reg_sel = (bankType[misc_reg] == perThreadContext)
471  ? tid : getVPENum(tid);
472 
473  DPRINTF(MipsPRA,
474  "[tid:%i] Setting CP0 Register:%u "
475  "Select:%u (%s) to %#x, with effect.\n",
476  tid, misc_reg / 8, misc_reg % 8, miscRegNames[misc_reg], val);
477 
478  RegVal cp0_val = filterCP0Write(misc_reg, reg_sel, val);
479 
480  miscRegFile[misc_reg][reg_sel] = cp0_val;
481 
483 }
484 
490 RegVal
491 ISA::filterCP0Write(int misc_reg, int reg_sel, RegVal val)
492 {
493  RegVal retVal = val;
494 
495  // Mask off read-only regions
496  retVal &= miscRegFile_WriteMask[misc_reg][reg_sel];
497  RegVal curVal = miscRegFile[misc_reg][reg_sel];
498  // Mask off current alue with inverse mask (clear writeable bits)
499  curVal &= (~miscRegFile_WriteMask[misc_reg][reg_sel]);
500  retVal |= curVal; // Combine the two
501  DPRINTF(MipsPRA,
502  "filterCP0Write: Mask: %lx, Inverse Mask: %lx, write Val: %x, "
503  "current val: %lx, written val: %x\n",
504  miscRegFile_WriteMask[misc_reg][reg_sel],
505  ~miscRegFile_WriteMask[misc_reg][reg_sel],
506  val, miscRegFile[misc_reg][reg_sel], retVal);
507  return retVal;
508 }
509 
510 void
512 {
513  if (!cp0Updated) {
514  cp0Updated = true;
515 
516  //schedule UPDATE
517  auto cp0_event = new EventFunctionWrapper(
518  [this, cpu]{ processCP0Event(cpu, UpdateCP0); },
519  "Coprocessor-0 event", true, Event::CPU_Tick_Pri);
520  cpu->schedule(cp0_event, cpu->clockEdge(delay));
521  }
522 }
523 
524 void
526 {
528  //
529  // EVALUATE CP0 STATE FOR MIPS MT
530  //
532  MVPConf0Reg mvpConf0 = readMiscRegNoEffect(MISCREG_MVP_CONF0);
533  ThreadID num_threads = mvpConf0.ptc + 1;
534 
535  for (ThreadID tid = 0; tid < num_threads; tid++) {
536  TCStatusReg tcStatus = readMiscRegNoEffect(MISCREG_TC_STATUS, tid);
537  TCHaltReg tcHalt = readMiscRegNoEffect(MISCREG_TC_HALT, tid);
538 
539  //@todo: add vpe/mt check here thru mvpcontrol & vpecontrol regs
540  if (tcHalt.h == 1 || tcStatus.a == 0) {
541  haltThread(cpu->getContext(tid));
542  } else if (tcHalt.h == 0 && tcStatus.a == 1) {
543  restoreThread(cpu->getContext(tid));
544  }
545  }
546 
547  num_threads = mvpConf0.ptc + 1;
548 
549  // Toggle update flag after we finished updating
550  cp0Updated = false;
551 }
552 
553 void
555 {
556  switch (cp0EventType)
557  {
558  case UpdateCP0:
559  updateCPU(cpu);
560  break;
561  }
562 }
563 
564 }
MipsISA::MISCREG_WATCHHI0
@ MISCREG_WATCHHI0
Definition: registers.hh:201
MipsISA::MISCREG_SRS_CONF2
@ MISCREG_SRS_CONF2
Definition: registers.hh:154
MipsISA::ISA::configCP
void configCP()
Definition: isa.cc:157
ArmISA::status
Bitfield< 5, 0 > status
Definition: miscregs_types.hh:417
MipsISA::ISA::bankType
std::vector< BankType > bankType
Definition: isa.hh:72
isa.hh
MipsISA::MISCREG_VPE_OPT
@ MISCREG_VPE_OPT
Definition: registers.hh:132
MipsISA::MISCREG_VPE_CONTROL
@ MISCREG_VPE_CONTROL
Definition: registers.hh:126
EventBase::CPU_Tick_Pri
static const Priority CPU_Tick_Pri
CPU ticks must come after other associated CPU events (such as writebacks).
Definition: eventq.hh:201
MipsISA::MISCREG_TC_CONTEXT
@ MISCREG_TC_CONTEXT
Definition: registers.hh:139
MipsISA::MISCREG_VPE_SCHEFBACK
@ MISCREG_VPE_SCHEFBACK
Definition: registers.hh:131
MipsISA::ISA::clear
void clear()
Definition: isa.cc:144
MipsISA::ISA::numVpes
uint8_t numVpes
Definition: isa.hh:62
ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:233
MipsISA::ISA::setMiscRegNoEffect
void setMiscRegNoEffect(int misc_reg, RegVal val, ThreadID tid=0)
Definition: isa.cc:440
MipsISA::MISCREG_CONTEXT
@ MISCREG_CONTEXT
Definition: registers.hh:145
pra_constants.hh
MipsISA::ISA::miscRegNames
static std::string miscRegNames[NumMiscRegs]
Definition: isa.hh:128
MipsISA::procId
Bitfield< 15, 8 > procId
Definition: pra_constants.hh:203
MipsISA::MISCREG_INTCTL
@ MISCREG_INTCTL
Definition: registers.hh:169
MipsISA::MISCREG_ENTRYLO0
@ MISCREG_ENTRYLO0
Definition: registers.hh:134
MipsISA::MISCREG_CAUSE
@ MISCREG_CAUSE
Definition: registers.hh:173
MipsISA::mask
mask
Definition: pra_constants.hh:70
MipsISA::MISCREG_CP0_RANDOM
@ MISCREG_CP0_RANDOM
Definition: registers.hh:125
MipsISA::MISCREG_TC_BIND
@ MISCREG_TC_BIND
Definition: registers.hh:136
BaseCPU::getContext
virtual ThreadContext * getContext(int tn)
Given a thread num get tho thread context for it.
Definition: base.hh:300
MipsISA::ISA::miscRegFile_WriteMask
std::vector< std::vector< RegVal > > miscRegFile_WriteMask
Definition: isa.hh:71
MipsISA
Definition: decoder.cc:31
MipsISA::haltThread
void haltThread(TC *tc)
Definition: mt.hh:133
EventFunctionWrapper
Definition: eventq.hh:1112
MipsISA::MISCREG_PAGEMASK
@ MISCREG_PAGEMASK
Definition: registers.hh:148
MipsISA::MISCREG_STATUS
@ MISCREG_STATUS
Definition: registers.hh:168
MipsISA::ISA::perThreadContext
@ perThreadContext
Definition: isa.hh:66
ArmISA::j
Bitfield< 24 > j
Definition: miscregs_types.hh:54
MipsISA::MISCREG_CONFIG1
@ MISCREG_CONFIG1
Definition: registers.hh:181
MipsISA::ISA::cp0Updated
bool cp0Updated
Definition: isa.hh:111
cp
Definition: cprintf.cc:37
EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1016
MipsISA::ISA::UpdateCP0
@ UpdateCP0
Definition: isa.hh:115
MipsISA::ISA::readMiscReg
RegVal readMiscReg(int misc_reg, ThreadID tid=0)
Definition: isa.cc:427
MipsISA::k
Bitfield< 23 > k
Definition: dt_constants.hh:78
bitfield.hh
MipsISA::ISA::filterCP0Write
RegVal filterCP0Write(int misc_reg, int reg_sel, RegVal val)
This method doesn't need to adjust the Control Register Offset since it has already been done in the ...
Definition: isa.cc:491
MipsISA::MISCREG_TC_SCHEDULE
@ MISCREG_TC_SCHEDULE
Definition: registers.hh:140
MipsISA::MISCREG_MVP_CONF0
@ MISCREG_MVP_CONF0
Definition: registers.hh:122
MipsISA::MISCREG_PERFCNT0
@ MISCREG_PERFCNT0
Definition: registers.hh:224
MipsISA::MISCREG_YQMASK
@ MISCREG_YQMASK
Definition: registers.hh:129
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
MipsISA::MISCREG_EBASE
@ MISCREG_EBASE
Definition: registers.hh:178
BaseISA::tc
ThreadContext * tc
Definition: isa.hh:52
MipsISA::MISCREG_SRS_CONF4
@ MISCREG_SRS_CONF4
Definition: registers.hh:156
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
MipsISA::MISCREG_LLADDR
@ MISCREG_LLADDR
Definition: registers.hh:190
MipsISA::ISA::Params
MipsISAParams Params
Definition: isa.hh:57
MipsISA::MISCREG_SRS_CONF1
@ MISCREG_SRS_CONF1
Definition: registers.hh:153
MipsISA::ISA::miscRegFile
std::vector< std::vector< RegVal > > miscRegFile
Definition: isa.hh:70
MipsISA::MISCREG_SRS_CONF0
@ MISCREG_SRS_CONF0
Definition: registers.hh:152
X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
MipsISA::MISCREG_CONFIG
@ MISCREG_CONFIG
Definition: registers.hh:180
MipsISA::MISCREG_VPE_SCHEDULE
@ MISCREG_VPE_SCHEDULE
Definition: registers.hh:130
MipsISA::MISCREG_CONFIG3
@ MISCREG_CONFIG3
Definition: registers.hh:183
MipsISA::ISA::CP0EventType
CP0EventType
Definition: isa.hh:114
MipsISA::CoreSpecific
Definition: types.hh:75
MipsISA::ISA::numThreads
uint8_t numThreads
Definition: isa.hh:61
MipsISA::ISA::updateCPU
void updateCPU(BaseCPU *cpu)
Definition: isa.cc:525
BaseCPU
Definition: base.hh:104
MipsISA::ISA::perProcessor
@ perProcessor
Definition: isa.hh:65
MipsISA::ISA::setMiscReg
void setMiscReg(int misc_reg, RegVal val, ThreadID tid=0)
Definition: isa.cc:468
MipsISA::ISA::processCP0Event
void processCP0Event(BaseCPU *cpu, CP0EventType)
Process a CP0 event.
Definition: isa.cc:554
MipsISA::MISCREG_PAGEGRAIN
@ MISCREG_PAGEGRAIN
Definition: registers.hh:149
MipsISA::ISA::readMiscRegNoEffect
RegVal readMiscRegNoEffect(int misc_reg, ThreadID tid=0) const
Definition: isa.cc:413
MipsISA::i
Bitfield< 2 > i
Definition: pra_constants.hh:276
MipsISA::NumMiscRegs
const int NumMiscRegs
Definition: registers.hh:269
base.hh
MipsISA::MISCREG_ENTRYLO1
@ MISCREG_ENTRYLO1
Definition: registers.hh:143
MipsISA::ISA::perVirtProcessor
@ perVirtProcessor
Definition: isa.hh:67
MipsISA::MISCREG_VPE_CONF0
@ MISCREG_VPE_CONF0
Definition: registers.hh:127
MipsISA::MISCREG_SRS_CONF3
@ MISCREG_SRS_CONF3
Definition: registers.hh:155
MipsISA::ISA::ISA
ISA(const Params &p)
Definition: isa.cc:90
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
MipsISA::MISCREG_VPE_CONF1
@ MISCREG_VPE_CONF1
Definition: registers.hh:128
MipsISA::MISCREG_CONFIG2
@ MISCREG_CONFIG2
Definition: registers.hh:182
MipsISA::ISA::getVPENum
unsigned getVPENum(ThreadID tid) const
Definition: isa.cc:406
MipsISA::MISCREG_PRID
@ MISCREG_PRID
Definition: registers.hh:177
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
MipsISA::ISA::scheduleCP0Update
void scheduleCP0Update(BaseCPU *cpu, Cycles delay=Cycles(0))
Definition: isa.cc:511
MipsISA::MISCREG_SRSCTL
@ MISCREG_SRSCTL
Definition: registers.hh:170
MipsISA::MISCREG_TC_STATUS
@ MISCREG_TC_STATUS
Definition: registers.hh:135
MipsISA::MISCREG_DEBUG
@ MISCREG_DEBUG
Definition: registers.hh:216
MipsISA::MISCREG_TC_SCHEFBACK
@ MISCREG_TC_SCHEFBACK
Definition: registers.hh:141
mt_constants.hh
ThreadContext::getCpuPtr
virtual BaseCPU * getCpuPtr()=0
BaseISA
Definition: isa.hh:47
MipsISA::ISA::setRegMask
void setRegMask(int misc_reg, RegVal val, ThreadID tid=0)
Definition: isa.cc:453
mt.hh
MipsISA::MISCREG_BADVADDR
@ MISCREG_BADVADDR
Definition: registers.hh:160
thread_context.hh
replaceBits
constexpr void replaceBits(T &val, unsigned first, unsigned last, B bit_val)
A convenience function to replace bits first to last of val with bit_val in place.
Definition: bitfield.hh:174
MipsISA::MISCREG_TC_RESTART
@ MISCREG_TC_RESTART
Definition: registers.hh:137
RegVal
uint64_t RegVal
Definition: types.hh:174
MipsISA::MISCREG_TC_HALT
@ MISCREG_TC_HALT
Definition: registers.hh:138
MipsISA::MISCREG_INDEX
@ MISCREG_INDEX
Definition: registers.hh:120
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
MipsISA::restoreThread
void restoreThread(TC *tc)
Definition: mt.hh:152

Generated on Tue Mar 23 2021 19:41:18 for gem5 by doxygen 1.8.17