gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
cpu_impl.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011, 2016 ARM Limited
3  * Copyright (c) 2013 Advanced Micro Devices, Inc.
4  * All rights reserved
5  *
6  * The license below extends only to copyright in the software and shall
7  * not be construed as granting a license to any other intellectual
8  * property including but not limited to intellectual property relating
9  * to a hardware implementation of the functionality of the software
10  * licensed hereunder. You may use the software subject to the license
11  * terms below provided that you ensure that this notice is replicated
12  * unmodified and in its entirety in all distributions of the software,
13  * modified or unmodified, in source code or in binary form.
14  *
15  * Copyright (c) 2006 The Regents of The University of Michigan
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #ifndef __CPU_CHECKER_CPU_IMPL_HH__
43 #define __CPU_CHECKER_CPU_IMPL_HH__
44 
45 #include <list>
46 #include <string>
47 
48 #include "base/refcnt.hh"
49 #include "config/the_isa.hh"
50 #include "cpu/base_dyn_inst.hh"
51 #include "cpu/exetrace.hh"
52 #include "cpu/reg_class.hh"
53 #include "cpu/simple_thread.hh"
54 #include "cpu/static_inst.hh"
55 #include "cpu/thread_context.hh"
56 #include "cpu/checker/cpu.hh"
57 #include "debug/Checker.hh"
58 #include "sim/full_system.hh"
59 #include "sim/sim_object.hh"
60 #include "sim/stats.hh"
61 
62 template <class Impl>
63 void
65 {
66  if (fault != NoFault) {
67  curMacroStaticInst = StaticInst::nullStaticInstPtr;
68  fault->invoke(tc, curStaticInst);
69  thread->decoder.reset();
70  } else {
71  if (curStaticInst) {
72  if (curStaticInst->isLastMicroop())
73  curMacroStaticInst = StaticInst::nullStaticInstPtr;
74  TheISA::PCState pcState = thread->pcState();
75  TheISA::advancePC(pcState, curStaticInst);
76  thread->pcState(pcState);
77  DPRINTF(Checker, "Advancing PC to %s.\n", thread->pcState());
78  }
79  }
80 }
82 
83 template <class Impl>
84 void
86 {
87  DPRINTF(Checker, "IRQ detected at PC: %s with %d insts in buffer\n",
88  thread->pcState(), instList.size());
89  DynInstPtr boundaryInst = NULL;
90  if (!instList.empty()) {
91  // Set the instructions as completed and verify as much as possible.
92  DynInstPtr inst;
94 
95  for (itr = instList.begin(); itr != instList.end(); itr++) {
96  (*itr)->setCompleted();
97  }
98 
99  inst = instList.front();
100  boundaryInst = instList.back();
101  verify(inst); // verify the instructions
102  inst = NULL;
103  }
104  if ((!boundaryInst && curMacroStaticInst &&
105  curStaticInst->isDelayedCommit() &&
106  !curStaticInst->isLastMicroop()) ||
107  (boundaryInst && boundaryInst->isDelayedCommit() &&
108  !boundaryInst->isLastMicroop())) {
109  panic("%lli: Trying to take an interrupt in middle of "
110  "a non-interuptable instruction!", curTick());
111  }
112  boundaryInst = NULL;
113  thread->decoder.reset();
114  curMacroStaticInst = StaticInst::nullStaticInstPtr;
115 }
116 
117 template <class Impl>
118 void
119 Checker<Impl>::verify(const DynInstPtr &completed_inst)
120 {
121  DynInstPtr inst;
122 
123  // Make sure serializing instructions are actually
124  // seen as serializing to commit. instList should be
125  // empty in these cases.
126  if ((completed_inst->isSerializing() ||
127  completed_inst->isSerializeBefore()) &&
128  (!instList.empty() ?
129  (instList.front()->seqNum != completed_inst->seqNum) : 0)) {
130  panic("%lli: Instruction sn:%lli at PC %s is serializing before but is"
131  " entering instList with other instructions\n", curTick(),
132  completed_inst->seqNum, completed_inst->pcState());
133  }
134 
135  // Either check this instruction, or add it to a list of
136  // instructions waiting to be checked. Instructions must be
137  // checked in program order, so if a store has committed yet not
138  // completed, there may be some instructions that are waiting
139  // behind it that have completed and must be checked.
140  if (!instList.empty()) {
141  if (youngestSN < completed_inst->seqNum) {
142  DPRINTF(Checker, "Adding instruction [sn:%lli] PC:%s to list\n",
143  completed_inst->seqNum, completed_inst->pcState());
144  instList.push_back(completed_inst);
145  youngestSN = completed_inst->seqNum;
146  }
147 
148  if (!instList.front()->isCompleted()) {
149  return;
150  } else {
151  inst = instList.front();
152  instList.pop_front();
153  }
154  } else {
155  if (!completed_inst->isCompleted()) {
156  if (youngestSN < completed_inst->seqNum) {
157  DPRINTF(Checker, "Adding instruction [sn:%lli] PC:%s to list\n",
158  completed_inst->seqNum, completed_inst->pcState());
159  instList.push_back(completed_inst);
160  youngestSN = completed_inst->seqNum;
161  }
162  return;
163  } else {
164  if (youngestSN < completed_inst->seqNum) {
165  inst = completed_inst;
166  youngestSN = completed_inst->seqNum;
167  } else {
168  return;
169  }
170  }
171  }
172 
173  // Make sure a serializing instruction is actually seen as
174  // serializing. instList should be empty here
175  if (inst->isSerializeAfter() && !instList.empty()) {
176  panic("%lli: Instruction sn:%lli at PC %s is serializing after but is"
177  " exiting instList with other instructions\n", curTick(),
178  completed_inst->seqNum, completed_inst->pcState());
179  }
180  unverifiedInst = inst;
181  inst = NULL;
182 
183  // Try to check all instructions that are completed, ending if we
184  // run out of instructions to check or if an instruction is not
185  // yet completed.
186  while (1) {
187  DPRINTF(Checker, "Processing instruction [sn:%lli] PC:%s.\n",
188  unverifiedInst->seqNum, unverifiedInst->pcState());
189  unverifiedReq = NULL;
190  unverifiedReq = unverifiedInst->reqToVerify;
191  unverifiedMemData = unverifiedInst->memData;
192  // Make sure results queue is empty
193  while (!result.empty()) {
194  result.pop();
195  }
196  baseStats.numCycles++;
197 
198  Fault fault = NoFault;
199 
200  // maintain $r0 semantics
201  thread->setIntReg(TheISA::ZeroReg, 0);
202 
203  // Check if any recent PC changes match up with anything we
204  // expect to happen. This is mostly to check if traps or
205  // PC-based events have occurred in both the checker and CPU.
206  if (changedPC) {
207  DPRINTF(Checker, "Changed PC recently to %s\n",
208  thread->pcState());
209  if (willChangePC) {
210  if (newPCState == thread->pcState()) {
211  DPRINTF(Checker, "Changed PC matches expected PC\n");
212  } else {
213  warn("%lli: Changed PC does not match expected PC, "
214  "changed: %s, expected: %s",
215  curTick(), thread->pcState(), newPCState);
217  }
218  willChangePC = false;
219  }
220  changedPC = false;
221  }
222 
223  // Try to fetch the instruction
224  uint64_t fetchOffset = 0;
225  bool fetchDone = false;
226 
227  while (!fetchDone) {
228  Addr fetch_PC = thread->instAddr();
229  fetch_PC = (fetch_PC & PCMask) + fetchOffset;
230 
231  TheISA::MachInst machInst;
232 
233  // If not in the middle of a macro instruction
234  if (!curMacroStaticInst) {
235  // set up memory request for instruction fetch
236  auto mem_req = std::make_shared<Request>(
237  fetch_PC, sizeof(TheISA::MachInst), 0, requestorId,
238  fetch_PC, thread->contextId());
239 
240  mem_req->setVirt(fetch_PC, sizeof(TheISA::MachInst),
241  Request::INST_FETCH, requestorId,
242  thread->instAddr());
243 
244  fault = mmu->translateFunctional(
245  mem_req, tc, BaseTLB::Execute);
246 
247  if (fault != NoFault) {
248  if (unverifiedInst->getFault() == NoFault) {
249  // In this case the instruction was not a dummy
250  // instruction carrying an ITB fault. In the single
251  // threaded case the ITB should still be able to
252  // translate this instruction; in the SMT case it's
253  // possible that its ITB entry was kicked out.
254  warn("%lli: Instruction PC %s was not found in the "
255  "ITB!", curTick(), thread->pcState());
256  handleError(unverifiedInst);
257 
258  // go to the next instruction
260 
261  // Give up on an ITB fault..
262  unverifiedInst = NULL;
263  return;
264  } else {
265  // The instruction is carrying an ITB fault. Handle
266  // the fault and see if our results match the CPU on
267  // the next tick().
268  fault = unverifiedInst->getFault();
269  break;
270  }
271  } else {
272  PacketPtr pkt = new Packet(mem_req, MemCmd::ReadReq);
273 
274  pkt->dataStatic(&machInst);
275  icachePort->sendFunctional(pkt);
276 
277  delete pkt;
278  }
279  }
280 
281  if (fault == NoFault) {
282  TheISA::PCState pcState = thread->pcState();
283 
284  if (isRomMicroPC(pcState.microPC())) {
285  fetchDone = true;
286  curStaticInst = thread->decoder.fetchRomMicroop(
287  pcState.microPC(), nullptr);
288  } else if (!curMacroStaticInst) {
289  //We're not in the middle of a macro instruction
290  StaticInstPtr instPtr = nullptr;
291 
292  //Predecode, ie bundle up an ExtMachInst
293  //If more fetch data is needed, pass it in.
294  Addr fetchPC = (pcState.instAddr() & PCMask) + fetchOffset;
295  thread->decoder.moreBytes(pcState, fetchPC, machInst);
296 
297  //If an instruction is ready, decode it.
298  //Otherwise, we'll have to fetch beyond the
299  //MachInst at the current pc.
300  if (thread->decoder.instReady()) {
301  fetchDone = true;
302  instPtr = thread->decoder.decode(pcState);
303  thread->pcState(pcState);
304  } else {
305  fetchDone = false;
306  fetchOffset += sizeof(TheISA::MachInst);
307  }
308 
309  //If we decoded an instruction and it's microcoded,
310  //start pulling out micro ops
311  if (instPtr && instPtr->isMacroop()) {
312  curMacroStaticInst = instPtr;
313  curStaticInst =
314  instPtr->fetchMicroop(pcState.microPC());
315  } else {
316  curStaticInst = instPtr;
317  }
318  } else {
319  // Read the next micro op from the macro-op
320  curStaticInst =
321  curMacroStaticInst->fetchMicroop(pcState.microPC());
322  fetchDone = true;
323  }
324  }
325  }
326  // reset decoder on Checker
327  thread->decoder.reset();
328 
329  // Check Checker and CPU get same instruction, and record
330  // any faults the CPU may have had.
331  Fault unverifiedFault;
332  if (fault == NoFault) {
333  unverifiedFault = unverifiedInst->getFault();
334 
335  // Checks that the instruction matches what we expected it to be.
336  // Checks both the machine instruction and the PC.
337  validateInst(unverifiedInst);
338  }
339 
340  // keep an instruction count
341  numInst++;
342 
343 
344  // Either the instruction was a fault and we should process the fault,
345  // or we should just go ahead execute the instruction. This assumes
346  // that the instruction is properly marked as a fault.
347  if (fault == NoFault) {
348  // Execute Checker instruction and trace
349  if (!unverifiedInst->isUnverifiable()) {
350  Trace::InstRecord *traceData = tracer->getInstRecord(curTick(),
351  tc,
352  curStaticInst,
353  pcState(),
354  curMacroStaticInst);
355  fault = curStaticInst->execute(this, traceData);
356  if (traceData) {
357  traceData->dump();
358  delete traceData;
359  }
360  }
361 
362  if (fault == NoFault && unverifiedFault == NoFault) {
363  thread->funcExeInst++;
364  // Checks to make sure instrution results are correct.
365  validateExecution(unverifiedInst);
366 
367  if (curStaticInst->isLoad()) {
368  ++numLoad;
369  }
370  } else if (fault != NoFault && unverifiedFault == NoFault) {
371  panic("%lli: sn: %lli at PC: %s took a fault in checker "
372  "but not in driver CPU\n", curTick(),
373  unverifiedInst->seqNum, unverifiedInst->pcState());
374  } else if (fault == NoFault && unverifiedFault != NoFault) {
375  panic("%lli: sn: %lli at PC: %s took a fault in driver "
376  "CPU but not in checker\n", curTick(),
377  unverifiedInst->seqNum, unverifiedInst->pcState());
378  }
379  }
380 
381  // Take any faults here
382  if (fault != NoFault) {
383  if (FullSystem) {
384  fault->invoke(tc, curStaticInst);
385  willChangePC = true;
386  newPCState = thread->pcState();
387  DPRINTF(Checker, "Fault, PC is now %s\n", newPCState);
388  curMacroStaticInst = StaticInst::nullStaticInstPtr;
389  }
390  } else {
391  advancePC(fault);
392  }
393 
394  if (FullSystem) {
395  // @todo: Determine if these should happen only if the
396  // instruction hasn't faulted. In the SimpleCPU case this may
397  // not be true, but in the O3 case this may be true.
398  Addr oldpc;
399  int count = 0;
400  do {
401  oldpc = thread->instAddr();
402  thread->pcEventQueue.service(oldpc, tc);
403  count++;
404  } while (oldpc != thread->instAddr());
405  if (count > 1) {
406  willChangePC = true;
407  newPCState = thread->pcState();
408  DPRINTF(Checker, "PC Event, PC is now %s\n", newPCState);
409  }
410  }
411 
412  // @todo: Optionally can check all registers. (Or just those
413  // that have been modified).
414  validateState();
415 
416  // Continue verifying instructions if there's another completed
417  // instruction waiting to be verified.
418  if (instList.empty()) {
419  break;
420  } else if (instList.front()->isCompleted()) {
421  unverifiedInst = NULL;
422  unverifiedInst = instList.front();
423  instList.pop_front();
424  } else {
425  break;
426  }
427  }
428  unverifiedInst = NULL;
429 }
430 
431 template <class Impl>
432 void
434 {
435  instList.clear();
436 }
437 
438 template <class Impl>
439 void
441 {
442 }
443 
444 template <class Impl>
445 void
447 {
448  if (inst->instAddr() != thread->instAddr()) {
449  warn("%lli: PCs do not match! Inst: %s, checker: %s",
450  curTick(), inst->pcState(), thread->pcState());
451  if (changedPC) {
452  warn("%lli: Changed PCs recently, may not be an error",
453  curTick());
454  } else {
455  handleError(inst);
456  }
457  }
458 
459  if (curStaticInst != inst->staticInst) {
460  warn("%lli: StaticInstPtrs don't match. (%s, %s).\n", curTick(),
461  curStaticInst->getName(), inst->staticInst->getName());
462  }
463 }
464 
465 template <class Impl>
466 void
468 {
469  InstResult checker_val;
470  InstResult inst_val;
471  int idx = -1;
472  bool result_mismatch = false;
473  bool scalar_mismatch = false;
474  bool vector_mismatch = false;
475 
476  if (inst->isUnverifiable()) {
477  // Unverifiable instructions assume they were executed
478  // properly by the CPU. Grab the result from the
479  // instruction and write it to the register.
480  copyResult(inst, InstResult(0ul, InstResult::ResultType::Scalar), idx);
481  } else if (inst->numDestRegs() > 0 && !result.empty()) {
482  DPRINTF(Checker, "Dest regs %d, number of checker dest regs %d\n",
483  inst->numDestRegs(), result.size());
484  for (int i = 0; i < inst->numDestRegs() && !result.empty(); i++) {
485  checker_val = result.front();
486  result.pop();
487  inst_val = inst->popResult(
489  if (checker_val != inst_val) {
490  result_mismatch = true;
491  idx = i;
492  scalar_mismatch = checker_val.isScalar();
493  vector_mismatch = checker_val.isVector();
494  panic_if(!(scalar_mismatch || vector_mismatch),
495  "Unknown type of result\n");
496  }
497  }
498  } // Checker CPU checks all the saved results in the dyninst passed by
499  // the cpu model being checked against the saved results present in
500  // the static inst executed in the Checker. Sometimes the number
501  // of saved results differs between the dyninst and static inst, but
502  // this is ok and not a bug. May be worthwhile to try and correct this.
503 
504  if (result_mismatch) {
505  if (scalar_mismatch) {
506  warn("%lli: Instruction results (%i) do not match! (Values may"
507  " not actually be integers) Inst: %#x, checker: %#x",
508  curTick(), idx, inst_val.asIntegerNoAssert(),
509  checker_val.asInteger());
510  }
511 
512  // It's useful to verify load values from memory, but in MP
513  // systems the value obtained at execute may be different than
514  // the value obtained at completion. Similarly DMA can
515  // present the same problem on even UP systems. Thus there is
516  // the option to only warn on loads having a result error.
517  // The load/store queue in Detailed CPU can also cause problems
518  // if load/store forwarding is allowed.
519  if (inst->isLoad() && warnOnlyOnLoadError) {
520  copyResult(inst, inst_val, idx);
521  } else {
522  handleError(inst);
523  }
524  }
525 
526  if (inst->nextInstAddr() != thread->nextInstAddr()) {
527  warn("%lli: Instruction next PCs do not match! Inst: %#x, "
528  "checker: %#x",
529  curTick(), inst->nextInstAddr(), thread->nextInstAddr());
530  handleError(inst);
531  }
532 
533  // Checking side effect registers can be difficult if they are not
534  // checked simultaneously with the execution of the instruction.
535  // This is because other valid instructions may have modified
536  // these registers in the meantime, and their values are not
537  // stored within the DynInst.
538  while (!miscRegIdxs.empty()) {
539  int misc_reg_idx = miscRegIdxs.front();
540  miscRegIdxs.pop();
541 
542  if (inst->tcBase()->readMiscRegNoEffect(misc_reg_idx) !=
543  thread->readMiscRegNoEffect(misc_reg_idx)) {
544  warn("%lli: Misc reg idx %i (side effect) does not match! "
545  "Inst: %#x, checker: %#x",
546  curTick(), misc_reg_idx,
547  inst->tcBase()->readMiscRegNoEffect(misc_reg_idx),
548  thread->readMiscRegNoEffect(misc_reg_idx));
549  handleError(inst);
550  }
551  }
552 }
553 
554 
555 // This function is weird, if it is called it means the Checker and
556 // O3 have diverged, so panic is called for now. It may be useful
557 // to resynch states and continue if the divergence is a false positive
558 template <class Impl>
559 void
561 {
562  if (updateThisCycle) {
563  // Change this back to warn if divergences end up being false positives
564  panic("%lli: Instruction PC %#x results didn't match up, copying all "
565  "registers from main CPU", curTick(), unverifiedInst->instAddr());
566 
567  // Terribly convoluted way to make sure O3 model does not implode
568  bool no_squash_from_TC = unverifiedInst->thread->noSquashFromTC;
569  unverifiedInst->thread->noSquashFromTC = true;
570 
571  // Heavy-weight copying of all registers
572  thread->copyArchRegs(unverifiedInst->tcBase());
573  unverifiedInst->thread->noSquashFromTC = no_squash_from_TC;
574 
575  // Set curStaticInst to unverifiedInst->staticInst
576  curStaticInst = unverifiedInst->staticInst;
577  // Also advance the PC. Hopefully no PC-based events happened.
579  updateThisCycle = false;
580  }
581 }
582 
583 template <class Impl>
584 void
586  const InstResult& mismatch_val, int start_idx)
587 {
588  // We've already popped one dest off the queue,
589  // so do the fix-up then start with the next dest reg;
590  if (start_idx >= 0) {
591  const RegId& idx = inst->destRegIdx(start_idx);
592  switch (idx.classValue()) {
593  case IntRegClass:
594  panic_if(!mismatch_val.isScalar(), "Unexpected type of result");
595  thread->setIntReg(idx.index(), mismatch_val.asInteger());
596  break;
597  case FloatRegClass:
598  panic_if(!mismatch_val.isScalar(), "Unexpected type of result");
599  thread->setFloatReg(idx.index(), mismatch_val.asInteger());
600  break;
601  case VecRegClass:
602  panic_if(!mismatch_val.isVector(), "Unexpected type of result");
603  thread->setVecReg(idx, mismatch_val.asVector());
604  break;
605  case VecElemClass:
606  panic_if(!mismatch_val.isVecElem(),
607  "Unexpected type of result");
608  thread->setVecElem(idx, mismatch_val.asVectorElem());
609  break;
610  case CCRegClass:
611  panic_if(!mismatch_val.isScalar(), "Unexpected type of result");
612  thread->setCCReg(idx.index(), mismatch_val.asInteger());
613  break;
614  case MiscRegClass:
615  panic_if(!mismatch_val.isScalar(), "Unexpected type of result");
616  thread->setMiscReg(idx.index(), mismatch_val.asInteger());
617  break;
618  default:
619  panic("Unknown register class: %d", (int)idx.classValue());
620  }
621  }
622  start_idx++;
623  InstResult res;
624  for (int i = start_idx; i < inst->numDestRegs(); i++) {
625  const RegId& idx = inst->destRegIdx(i);
626  res = inst->popResult();
627  switch (idx.classValue()) {
628  case IntRegClass:
629  panic_if(!res.isScalar(), "Unexpected type of result");
630  thread->setIntReg(idx.index(), res.asInteger());
631  break;
632  case FloatRegClass:
633  panic_if(!res.isScalar(), "Unexpected type of result");
634  thread->setFloatReg(idx.index(), res.asInteger());
635  break;
636  case VecRegClass:
637  panic_if(!res.isVector(), "Unexpected type of result");
638  thread->setVecReg(idx, res.asVector());
639  break;
640  case VecElemClass:
641  panic_if(!res.isVecElem(), "Unexpected type of result");
642  thread->setVecElem(idx, res.asVectorElem());
643  break;
644  case CCRegClass:
645  panic_if(!res.isScalar(), "Unexpected type of result");
646  thread->setCCReg(idx.index(), res.asInteger());
647  break;
648  case MiscRegClass:
649  panic_if(res.isValid(), "MiscReg expecting invalid result");
650  // Try to get the proper misc register index for ARM here...
651  thread->setMiscReg(idx.index(), 0);
652  break;
653  // else Register is out of range...
654  default:
655  panic("Unknown register class: %d", (int)idx.classValue());
656  }
657  }
658 }
659 
660 template <class Impl>
661 void
663 {
664  cprintf("Error detected, instruction information:\n");
665  cprintf("PC:%s, nextPC:%#x\n[sn:%lli]\n[tid:%i]\n"
666  "Completed:%i\n",
667  inst->pcState(),
668  inst->nextInstAddr(),
669  inst->seqNum,
670  inst->threadNumber,
671  inst->isCompleted());
672  inst->dump();
674 }
675 
676 template <class Impl>
677 void
679 {
680  int num = 0;
681 
682  InstListIt inst_list_it = --(instList.end());
683 
684  cprintf("Inst list size: %i\n", instList.size());
685 
686  while (inst_list_it != instList.end())
687  {
688  cprintf("Instruction:%i\n",
689  num);
690 
691  cprintf("PC:%s\n[sn:%lli]\n[tid:%i]\n"
692  "Completed:%i\n",
693  (*inst_list_it)->pcState(),
694  (*inst_list_it)->seqNum,
695  (*inst_list_it)->threadNumber,
696  (*inst_list_it)->isCompleted());
697 
698  cprintf("\n");
699 
700  inst_list_it--;
701  ++num;
702  }
703 
704 }
705 
706 #endif//__CPU_CHECKER_CPU_IMPL_HH__
InstResult
Definition: inst_res.hh:46
refcnt.hh
InstResult::asVector
const TheISA::VecRegContainer & asVector() const
Definition: inst_res.hh:181
InstResult::isScalar
bool isScalar() const
Checks.
Definition: inst_res.hh:151
warn
#define warn(...)
Definition: logging.hh:239
VecElemClass
@ VecElemClass
Vector Register Native Elem lane.
Definition: reg_class.hh:58
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
ArmISA::MachInst
uint32_t MachInst
Definition: types.hh:52
base_dyn_inst.hh
MemCmd::ReadReq
@ ReadReq
Definition: packet.hh:83
exetrace.hh
Checker
Templated Checker class.
Definition: cpu.hh:638
Trace::InstRecord
Definition: insttracer.hh:55
FullSystem
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:204
Checker::validateInst
void validateInst(const DynInstPtr &inst)
Definition: cpu_impl.hh:446
X86ISA::count
count
Definition: misc.hh:703
InstResult::isVecElem
bool isVecElem() const
Is this a vector element result?.
Definition: inst_res.hh:155
Checker::validateExecution
void validateExecution(const DynInstPtr &inst)
Definition: cpu_impl.hh:467
ArmISA::advancePC
void advancePC(PCState &pc, const StaticInstPtr &inst)
Definition: utility.hh:392
Trace::InstRecord::dump
virtual void dump()=0
Checker::validateState
void validateState()
Definition: cpu_impl.hh:560
RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:75
Checker::switchOut
void switchOut()
Prepare for another CPU to take over execution.
Definition: cpu_impl.hh:433
Checker::dumpInsts
void dumpInsts()
Definition: cpu_impl.hh:678
stats.hh
FloatRegClass
@ FloatRegClass
Floating-point register.
Definition: reg_class.hh:54
CheckerCPU::handleError
void handleError()
Definition: cpu.hh:603
CheckerCPU::dumpAndExit
void dumpAndExit()
Definition: cpu.cc:367
InstResult::isValid
bool isValid() const
Is this a valid result?.
Definition: inst_res.hh:159
sim_object.hh
cprintf
void cprintf(const char *format, const Args &...args)
Definition: cprintf.hh:152
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
StaticInst::isMacroop
bool isMacroop() const
Definition: static_inst.hh:204
cpu.hh
InstResult::ResultType::Scalar
@ Scalar
ArmISA::ZeroReg
const int ZeroReg
Definition: registers.hh:110
Checker::advancePC
void advancePC(const Fault &fault)
Definition: cpu_impl.hh:64
InstResult::asIntegerNoAssert
const uint64_t & asIntegerNoAssert() const
Cast to integer without checking type.
Definition: inst_res.hh:176
InstResult::asInteger
const uint64_t & asInteger() const
Explicit cast-like operations.
Definition: inst_res.hh:165
static_inst.hh
Checker< O3CPUImpl >::DynInstPtr
O3CPUImpl ::DynInstPtr DynInstPtr
Definition: cpu.hh:641
NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:251
ProbePoints::Packet
ProbePointArg< PacketInfo > Packet
Packet probe point.
Definition: mem.hh:103
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
StaticInst::nullStaticInstPtr
static StaticInstPtr nullStaticInstPtr
Pointer to a statically allocated "null" instruction object.
Definition: static_inst.hh:253
IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:53
isRomMicroPC
static bool isRomMicroPC(MicroPC upc)
Definition: types.hh:167
Request::INST_FETCH
@ INST_FETCH
The request was an instruction fetch.
Definition: request.hh:108
Checker::takeOverFrom
void takeOverFrom(BaseCPU *oldCPU)
Load the state of a CPU from the previous CPU object, invoked on all new CPUs that are about to be sw...
Definition: cpu_impl.hh:440
Checker::verify
void verify(const DynInstPtr &inst)
Definition: cpu_impl.hh:119
full_system.hh
CCRegClass
@ CCRegClass
Condition-code register.
Definition: reg_class.hh:60
BaseCPU
Definition: base.hh:104
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:197
MiscRegClass
@ MiscRegClass
Control (misc) register.
Definition: reg_class.hh:61
VecRegClass
@ VecRegClass
Vector Register.
Definition: reg_class.hh:56
simple_thread.hh
StaticInst::fetchMicroop
virtual StaticInstPtr fetchMicroop(MicroPC upc) const
Return the microop that goes with a particular micropc.
Definition: static_inst.cc:96
MipsISA::PCState
GenericISA::DelaySlotPCState< MachInst > PCState
Definition: types.hh:41
Packet::dataStatic
void dataStatic(T *p)
Set the data pointer to the following value that should not be freed.
Definition: packet.hh:1108
Checker::copyResult
void copyResult(const DynInstPtr &inst, const InstResult &mismatch_val, int start_idx)
Definition: cpu_impl.hh:585
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Checker< O3CPUImpl >::InstListIt
std::list< DynInstPtr >::iterator InstListIt
Definition: cpu.hh:680
reg_class.hh
RefCountingPtr< StaticInst >
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
RegId::index
const RegIndex & index() const
Index accessors.
Definition: reg_class.hh:171
InstResult::asVectorElem
const TheISA::VecElem & asVectorElem() const
Definition: inst_res.hh:187
std::list
STL list class.
Definition: stl.hh:51
InstResult::isVector
bool isVector() const
Is this a vector result?.
Definition: inst_res.hh:153
BaseTLB::Execute
@ Execute
Definition: tlb.hh:57
RegId::classValue
const RegClass & classValue() const
Class accessor.
Definition: reg_class.hh:199
thread_context.hh
Checker::handlePendingInt
void handlePendingInt()
Definition: cpu_impl.hh:85
CheckerCPU::pcState
TheISA::PCState pcState() const override
Definition: cpu.hh:468
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

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