47 #include "config/the_isa.hh"
51 #include "debug/ExecAll.hh"
52 #include "debug/FmtTicksOff.hh"
53 #include "enums/OpClass.hh"
63 std::stringstream outs;
65 const bool in_user_mode = thread->getIsaPtr()->inUserMode();
66 if (in_user_mode && !debug::ExecUser)
68 if (!in_user_mode && !debug::ExecKernel)
71 if (debug::ExecAsid) {
72 outs <<
"A" << std::dec <<
73 thread->getIsaPtr()->getExecutingAsid() <<
" ";
76 if (debug::ExecThread)
77 outs <<
"T" << thread->threadId() <<
" : ";
79 Addr cur_pc =
pc.instAddr();
82 if (debug::ExecSymbol && (!
FullSystem || !in_user_mode) &&
85 Addr delta = cur_pc - it->address;
87 ccprintf(outs,
" @%s+%d", it->name, delta);
104 outs << std::setw(26) << std::left;
110 if (debug::ExecOpClass) {
111 outs << enums::OpClassStrings[inst->
opClass()] <<
" : ";
114 if (debug::ExecResult && !predicate) {
115 outs <<
"Predicated False";
118 if (debug::ExecResult && data_status != DataInvalid) {
119 switch (data_status) {
132 if (debug::ExecEffAddr && getMemValid())
133 outs <<
" A=0x" << std::hex <<
addr;
135 if (debug::ExecFetchSeq && fetch_seq_valid)
136 outs <<
" FetchSeq=" << std::dec << fetch_seq;
138 if (debug::ExecCPSeq && cp_seq_valid)
139 outs <<
" CPSeq=" << std::dec << cp_seq;
141 if (debug::ExecFlags) {
154 when, thread->getCpuPtr()->name(),
"ExecEnable",
"%s",
169 if (debug::ExecMacro && staticInst->isMicroop() &&
170 ((debug::ExecMicro &&
171 macroStaticInst && staticInst->isFirstMicroop()) ||
172 (!debug::ExecMicro &&
173 macroStaticInst && staticInst->isLastMicroop()))) {
174 traceInst(macroStaticInst,
false);
176 if (debug::ExecMicro || !staticInst->isMicroop()) {
177 traceInst(staticInst,
true);