From: Gabe Black Date: Sun, 3 Sep 2006 06:02:56 +0000 (-0400) Subject: A quick fix to isolate the tracing code to SPARC X-Git-Tag: m5_2.0_beta2~117^2~6 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=14cc9baba59a7f93187933efd15f9cd1b94c25ed;p=gem5.git A quick fix to isolate the tracing code to SPARC --HG-- extra : convert_revision : 90c77f4d01101cad55f60d528b2a8be92d2f9aba --- diff --git a/src/cpu/exetrace.cc b/src/cpu/exetrace.cc index ad802eba2..8b1e60aea 100644 --- a/src/cpu/exetrace.cc +++ b/src/cpu/exetrace.cc @@ -42,6 +42,9 @@ #include "sim/param.hh" #include "sim/system.hh" +//XXX This is temporary +#include "arch/isa_specific.hh" + using namespace std; using namespace TheISA; @@ -54,18 +57,20 @@ using namespace TheISA; void Trace::InstRecord::dump(ostream &outs) { - static uint64_t regs[32] = { - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0}; - static uint64_t ccr = 0; - static uint64_t y = 0; - static uint64_t floats[32]; - uint64_t newVal; - static const char * prefixes[4] = {"G", "O", "L", "I"}; if (flags[PRINT_REG_DELTA]) { +#if THE_ISA == SPARC_ISA + static uint64_t regs[32] = { + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0}; + static uint64_t ccr = 0; + static uint64_t y = 0; + static uint64_t floats[32]; + uint64_t newVal; + static const char * prefixes[4] = {"G", "O", "L", "I"}; + char buf[256]; sprintf(buf, "PC = 0x%016llx", thread->readNextPC()); outs << buf; @@ -110,6 +115,7 @@ Trace::InstRecord::dump(ostream &outs) } } outs << endl; +#endif } else if (flags[INTEL_FORMAT]) { #if FULL_SYSTEM