gem5  v20.1.0.0
nativetrace.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 
30 
31 #include "arch/sparc/isa_traits.hh"
32 #include "arch/sparc/registers.hh"
33 #include "cpu/thread_context.hh"
34 #include "params/SparcNativeTrace.hh"
35 #include "sim/byteswap.hh"
36 
37 namespace Trace {
38 
39 static const char *intRegNames[SparcISA::NumIntArchRegs] = {
40  // Global registers
41  "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
42  // Output registers
43  "o0", "o1", "o2", "o3", "o4", "o5", "o6", "o7",
44  // Local registers
45  "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
46  // Input registers
47  "i0", "i1", "i2", "i3", "i4", "i5", "i6", "i7",
48 };
49 
50 void
52 {
53  ThreadContext *tc = record->getThread();
54 
55  uint64_t regVal, realRegVal;
56 
57  // Integer registers
58 
59  // I doubt a real SPARC will describe more integer registers than this.
60  assert(SparcISA::NumIntArchRegs == 32);
61  const char **regName = intRegNames;
62  for (int i = 0; i < SparcISA::NumIntArchRegs; i++) {
63  regVal = tc->readIntReg(i);
64  read(&realRegVal, sizeof(realRegVal));
65  realRegVal = betoh(realRegVal);
66  checkReg(*(regName++), regVal, realRegVal);
67  }
68 
70  // PC
71  read(&realRegVal, sizeof(realRegVal));
72  realRegVal = betoh(realRegVal);
73  regVal = pc.npc();
74  checkReg("pc", regVal, realRegVal);
75 
76  // NPC
77  read(&realRegVal, sizeof(realRegVal));
78  realRegVal = betoh(realRegVal);
79  pc.nnpc();
80  checkReg("npc", regVal, realRegVal);
81 
82  // CCR
83  read(&realRegVal, sizeof(realRegVal));
84  realRegVal = betoh(realRegVal);
85  regVal = tc->readIntReg(SparcISA::INTREG_CCR);
86  checkReg("ccr", regVal, realRegVal);
87 }
88 
89 } // namespace Trace
90 
92 //
93 // ExeTracer Simulation Object
94 //
96 SparcNativeTraceParams::create()
97 {
98  return new Trace::SparcNativeTrace(this);
99 };
Trace::SparcNativeTrace::check
void check(NativeTraceRecord *record)
Definition: nativetrace.cc:51
nativetrace.hh
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
SparcISA::NumIntArchRegs
@ NumIntArchRegs
Definition: registers.hh:76
Trace
Definition: nativetrace.cc:52
SparcISA::INTREG_CCR
@ INTREG_CCR
Definition: registers.hh:80
GenericISA::DelaySlotUPCState
Definition: types.hh:391
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
isa_traits.hh
Trace::NativeTraceRecord
Definition: nativetrace.hh:48
betoh
T betoh(T value)
Definition: byteswap.hh:143
ThreadContext::pcState
virtual TheISA::PCState pcState() const =0
Trace::intRegNames
static const char * intRegNames[SparcISA::NumIntArchRegs]
Definition: nativetrace.cc:39
registers.hh
ThreadContext::readIntReg
virtual RegVal readIntReg(RegIndex reg_idx) const =0
thread_context.hh
Trace::InstRecord::getThread
ThreadContext * getThread() const
Definition: insttracer.hh:234
Trace::SparcNativeTrace
Definition: nativetrace.hh:39
byteswap.hh

Generated on Wed Sep 30 2020 14:02:01 for gem5 by doxygen 1.8.17