cpu: Use cprintf and C++ type magic to get rid of a THE_ISA.

It should be fine to let operator overloading take care of figuring out
how to print the ExtMachInst type for a given ISA.

Change-Id: I173fd9f49013d92191118775d20344219a69337e
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/34822
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Gabe Black
2020-09-18 23:28:40 -07:00
parent dcffee005e
commit 2e5ffdb7f3

View File

@@ -214,10 +214,7 @@ MinorDynInst::minorTraceInst(const Named &named_object) const
regs_str << ',';
}
#if THE_ISA == ARM_ISA
regs_str << " extMachInst=" << std::hex << std::setw(16)
<< std::setfill('0') << staticInst->machInst << std::dec;
#endif
ccprintf(regs_str, " extMachInst=%160x", staticInst->machInst);
}
std::ostringstream flags;