46 #include "arch/isa_traits.hh" 47 #include "arch/utility.hh" 49 #include "config/the_isa.hh" 53 #include "debug/ExecAll.hh" 54 #include "debug/FmtTicksOff.hh" 55 #include "enums/OpClass.hh" 65 std::stringstream outs;
67 if (!Debug::ExecUser || !Debug::ExecKernel) {
69 if (in_user_mode && !Debug::ExecUser)
return;
70 if (!in_user_mode && !Debug::ExecKernel)
return;
76 if (Debug::ExecThread)
77 outs <<
"T" << thread->threadId() <<
" : ";
81 Addr cur_pc =
pc.instAddr();
85 cur_pc, sym_str, sym_addr)) {
86 if (cur_pc != sym_addr)
87 sym_str +=
csprintf(
"+%d",cur_pc - sym_addr);
88 outs <<
"@" << sym_str;
90 outs <<
"0x" << hex << cur_pc;
94 outs <<
"." << setw(2) << dec <<
pc.microPC();
105 outs << setw(26) << left;
111 if (Debug::ExecOpClass) {
112 outs << Enums::OpClassStrings[inst->
opClass()] <<
" : ";
115 if (Debug::ExecResult && !predicate) {
116 outs <<
"Predicated False";
119 if (Debug::ExecResult && data_status != DataInvalid) {
120 switch (data_status) {
124 auto dv =
data.as_vec->as<uint32_t>();
138 auto pv =
data.as_pred->as<uint8_t>();
141 if (i != 0 && i % 4 == 0) {
154 if (Debug::ExecEffAddr && getMemValid())
155 outs <<
" A=0x" << hex <<
addr;
157 if (Debug::ExecFetchSeq && fetch_seq_valid)
158 outs <<
" FetchSeq=" << dec << fetch_seq;
160 if (Debug::ExecCPSeq && cp_seq_valid)
161 outs <<
" CPSeq=" << dec << cp_seq;
163 if (Debug::ExecFlags) {
176 when, thread->getCpuPtr()->name(),
"ExecEnable",
"%s",
191 if (Debug::ExecMacro && staticInst->isMicroop() &&
192 ((Debug::ExecMicro &&
193 macroStaticInst && staticInst->isFirstMicroop()) ||
194 (!Debug::ExecMicro &&
195 macroStaticInst && staticInst->isLastMicroop()))) {
196 traceInst(macroStaticInst,
false);
198 if (Debug::ExecMicro || !staticInst->isMicroop()) {
199 traceInst(staticInst,
true);
210 ExeTracerParams::create()
void ccprintf(cp::Print &print)
virtual const std::string & disassemble(Addr pc, const Loader::SymbolTable *symtab=nullptr) const
Return string representation of disassembled instruction.
constexpr unsigned VecRegSizeBytes
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Overload hash function for BasicBlockRange type.
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.
std::string csprintf(const char *format, const Args &...args)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
OpClass opClass() const
Operation class. Used to select appropriate function unit in issue.
static bool inUserMode(CPSR cpsr)
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...
Logger * getDebugLogger()
Get the current global debug logger.
uint64_t getExecutingAsid(ThreadContext *tc)
constexpr unsigned VecPredRegSizeBits
void traceInst(const StaticInstPtr &inst, bool ran)
SymbolTable * debugSymbolTable
Global unified debugging symbol table (for target).