gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
exetrace.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017, 2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2001-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #include "cpu/exetrace.hh"
42 
43 #include <iomanip>
44 #include <sstream>
45 
46 #include "arch/utility.hh"
47 #include "base/loader/symtab.hh"
48 #include "config/the_isa.hh"
49 #include "cpu/base.hh"
50 #include "cpu/static_inst.hh"
51 #include "cpu/thread_context.hh"
52 #include "debug/ExecAll.hh"
53 #include "debug/FmtTicksOff.hh"
54 #include "enums/OpClass.hh"
55 
56 namespace Trace {
57 
58 void
60 {
61  std::stringstream outs;
62 
63  const bool in_user_mode = thread->getIsaPtr()->inUserMode();
64  if (in_user_mode && !Debug::ExecUser)
65  return;
66  if (!in_user_mode && !Debug::ExecKernel)
67  return;
68 
69  if (Debug::ExecAsid) {
70  outs << "A" << std::dec <<
71  thread->getIsaPtr()->getExecutingAsid() << " ";
72  }
73 
74  if (Debug::ExecThread)
75  outs << "T" << thread->threadId() << " : ";
76 
77  Addr cur_pc = pc.instAddr();
79  ccprintf(outs, "%#x", cur_pc);
80  if (Debug::ExecSymbol && (!FullSystem || !in_user_mode) &&
81  (it = Loader::debugSymbolTable.findNearest(cur_pc)) !=
83  Addr delta = cur_pc - it->address;
84  if (delta)
85  ccprintf(outs, " @%s+%d", it->name, delta);
86  else
87  ccprintf(outs, " @%s", it->name);
88  }
89 
90  if (inst->isMicroop()) {
91  ccprintf(outs, ".%2d", pc.microPC());
92  } else {
93  ccprintf(outs, " ");
94  }
95 
96  ccprintf(outs, " : ");
97 
98  //
99  // Print decoded instruction
100  //
101 
102  outs << std::setw(26) << std::left;
103  outs << inst->disassemble(cur_pc, &Loader::debugSymbolTable);
104 
105  if (ran) {
106  outs << " : ";
107 
108  if (Debug::ExecOpClass) {
109  outs << Enums::OpClassStrings[inst->opClass()] << " : ";
110  }
111 
112  if (Debug::ExecResult && !predicate) {
113  outs << "Predicated False";
114  }
115 
116  if (Debug::ExecResult && data_status != DataInvalid) {
117  switch (data_status) {
118  case DataVec:
119  {
120  ccprintf(outs, " D=0x[");
121  auto dv = data.as_vec->as<uint32_t>();
122  for (int i = TheISA::VecRegSizeBytes / 4 - 1; i >= 0;
123  i--) {
124  ccprintf(outs, "%08x", dv[i]);
125  if (i != 0) {
126  ccprintf(outs, "_");
127  }
128  }
129  ccprintf(outs, "]");
130  }
131  break;
132  case DataVecPred:
133  {
134  ccprintf(outs, " D=0b[");
135  auto pv = data.as_pred->as<uint8_t>();
136  for (int i = TheISA::VecPredRegSizeBits - 1; i >= 0; i--) {
137  ccprintf(outs, pv[i] ? "1" : "0");
138  if (i != 0 && i % 4 == 0) {
139  ccprintf(outs, "_");
140  }
141  }
142  ccprintf(outs, "]");
143  }
144  break;
145  default:
146  ccprintf(outs, " D=%#018x", data.as_int);
147  break;
148  }
149  }
150 
151  if (Debug::ExecEffAddr && getMemValid())
152  outs << " A=0x" << std::hex << addr;
153 
154  if (Debug::ExecFetchSeq && fetch_seq_valid)
155  outs << " FetchSeq=" << std::dec << fetch_seq;
156 
157  if (Debug::ExecCPSeq && cp_seq_valid)
158  outs << " CPSeq=" << std::dec << cp_seq;
159 
160  if (Debug::ExecFlags) {
161  outs << " flags=(";
162  inst->printFlags(outs, "|");
163  outs << ")";
164  }
165  }
166 
167  //
168  // End of line...
169  //
170  outs << std::endl;
171 
173  when, thread->getCpuPtr()->name(), "ExecEnable", "%s",
174  outs.str().c_str());
175 }
176 
177 void
179 {
180  /*
181  * The behavior this check tries to achieve is that if ExecMacro is on,
182  * the macroop will be printed. If it's on and microops are also on, it's
183  * printed before the microops start printing to give context. If the
184  * microops aren't printed, then it's printed only when the final microop
185  * finishes. Macroops then behave like regular instructions and don't
186  * complete/print when they fault.
187  */
188  if (Debug::ExecMacro && staticInst->isMicroop() &&
189  ((Debug::ExecMicro &&
190  macroStaticInst && staticInst->isFirstMicroop()) ||
191  (!Debug::ExecMicro &&
192  macroStaticInst && staticInst->isLastMicroop()))) {
193  traceInst(macroStaticInst, false);
194  }
195  if (Debug::ExecMicro || !staticInst->isMicroop()) {
196  traceInst(staticInst, true);
197  }
198 }
199 
200 } // namespace Trace
Trace::ExeTracerRecord::dump
void dump()
Definition: exetrace.cc:178
ArmISA::VecRegSizeBytes
constexpr unsigned VecRegSizeBytes
Definition: types.hh:818
data
const char data[]
Definition: circlebuf.test.cc:47
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Trace
Definition: nativetrace.cc:52
exetrace.hh
Trace::getDebugLogger
Logger * getDebugLogger()
Get the current global debug logger.
Definition: trace.cc:65
StaticInst::disassemble
virtual const std::string & disassemble(Addr pc, const Loader::SymbolTable *symtab=nullptr) const
Return string representation of disassembled instruction.
Definition: static_inst.cc:117
FullSystem
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:204
StaticInst::opClass
OpClass opClass() const
Operation class. Used to select appropriate function unit in issue.
Definition: static_inst.hh:229
Trace::Logger::dprintf_flag
void dprintf_flag(Tick when, const std::string &name, const std::string &flag, const char *fmt, const Args &...args)
Log a single message with a flag prefix.
Definition: trace.hh:67
Loader::debugSymbolTable
SymbolTable debugSymbolTable
Global unified debugging symbol table (for target).
Definition: symtab.cc:40
StaticInst::printFlags
void printFlags(std::ostream &outs, const std::string &separator) const
Print a separator separated list of this instruction's set flag names on the given stream.
Definition: static_inst.cc:126
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
static_inst.hh
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
ArmISA::VecPredRegSizeBits
constexpr unsigned VecPredRegSizeBits
Definition: types.hh:819
StaticInst::isMicroop
bool isMicroop() const
Definition: static_inst.hh:205
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
Loader::SymbolTable::const_iterator
SymbolVector::const_iterator const_iterator
Definition: symtab.hh:122
base.hh
ccprintf
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
RefCountingPtr< StaticInst >
symtab.hh
Trace::ExeTracerRecord::traceInst
void traceInst(const StaticInstPtr &inst, bool ran)
Definition: exetrace.cc:59
thread_context.hh

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