From 14cc9baba59a7f93187933efd15f9cd1b94c25ed Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 3 Sep 2006 02:02:56 -0400 Subject: A quick fix to isolate the tracing code to SPARC --HG-- extra : convert_revision : 90c77f4d01101cad55f60d528b2a8be92d2f9aba --- src/cpu/exetrace.cc | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) (limited to 'src') 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 -- cgit v1.2.3