exetrace.cc revision 2299
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <fstream>
30#include <iomanip>
31
32#include "sim/param.hh"
33#include "encumbered/cpu/full/dyn_inst.hh"
34#include "encumbered/cpu/full/spec_state.hh"
35#include "encumbered/cpu/full/issue.hh"
36#include "cpu/exetrace.hh"
37#include "base/loader/symtab.hh"
38#include "cpu/base.hh"
39#include "cpu/static_inst.hh"
40
41using namespace std;
42
43
44////////////////////////////////////////////////////////////////////////
45//
46//  Methods for the InstRecord object
47//
48
49
50void
51Trace::InstRecord::dump(ostream &outs)
52{
53    if (flags[INTEL_FORMAT]) {
54#if FULL_SYSTEM
55        bool is_trace_system = (cpu->system->name() == trace_system);
56#else
57        bool is_trace_system = true;
58#endif
59        if (is_trace_system) {
60            ccprintf(outs, "%7d ) ", cycle);
61            outs << "0x" << hex << PC << ":\t";
62            if (staticInst->isLoad()) {
63                outs << "<RD 0x" << hex << addr;
64                outs << ">";
65            } else if (staticInst->isStore()) {
66                outs << "<WR 0x" << hex << addr;
67                outs << ">";
68            }
69            outs << endl;
70        }
71    } else {
72        if (flags[PRINT_CYCLE])
73            ccprintf(outs, "%7d: ", cycle);
74
75        outs << cpu->name() << " ";
76
77        if (flags[TRACE_MISSPEC])
78            outs << (misspeculating ? "-" : "+") << " ";
79
80        if (flags[PRINT_THREAD_NUM])
81            outs << "T" << thread << " : ";
82
83
84        std::string sym_str;
85        Addr sym_addr;
86        if (debugSymbolTable
87            && debugSymbolTable->findNearestSymbol(PC, sym_str, sym_addr)
88            && flags[PC_SYMBOL]) {
89            if (PC != sym_addr)
90                sym_str += csprintf("+%d", PC - sym_addr);
91            outs << "@" << sym_str << " : ";
92        }
93        else {
94            outs << "0x" << hex << PC << " : ";
95        }
96
97        //
98        //  Print decoded instruction
99        //
100
101#if defined(__GNUC__) && (__GNUC__ < 3)
102        // There's a bug in gcc 2.x library that prevents setw()
103        // from working properly on strings
104        string mc(staticInst->disassemble(PC, debugSymbolTable));
105        while (mc.length() < 26)
106            mc += " ";
107        outs << mc;
108#else
109        outs << setw(26) << left << staticInst->disassemble(PC, debugSymbolTable);
110#endif
111
112        outs << " : ";
113
114        if (flags[PRINT_OP_CLASS]) {
115            outs << opClassStrings[staticInst->opClass()] << " : ";
116        }
117
118        if (flags[PRINT_RESULT_DATA] && data_status != DataInvalid) {
119            outs << " D=";
120#if 0
121            if (data_status == DataDouble)
122                ccprintf(outs, "%f", data.as_double);
123            else
124                ccprintf(outs, "%#018x", data.as_int);
125#else
126            ccprintf(outs, "%#018x", data.as_int);
127#endif
128        }
129
130        if (flags[PRINT_EFF_ADDR] && addr_valid)
131            outs << " A=0x" << hex << addr;
132
133        if (flags[PRINT_INT_REGS] && regs_valid) {
134            for (int i = 0; i < 32;)
135                for (int j = i + 1; i <= j; i++)
136                    ccprintf(outs, "r%02d = %#018x%s", i, iregs->regs[i],
137                             ((i == j) ? "\n" : "    "));
138            outs << "\n";
139        }
140
141        if (flags[PRINT_FETCH_SEQ] && fetch_seq_valid)
142            outs << "  FetchSeq=" << dec << fetch_seq;
143
144        if (flags[PRINT_CP_SEQ] && cp_seq_valid)
145            outs << "  CPSeq=" << dec << cp_seq;
146
147        //
148        //  End of line...
149        //
150        outs << endl;
151    }
152}
153
154
155vector<bool> Trace::InstRecord::flags(NUM_BITS);
156string Trace::InstRecord::trace_system;
157
158////////////////////////////////////////////////////////////////////////
159//
160// Parameter space for per-cycle execution address tracing options.
161// Derive from ParamContext so we can override checkParams() function.
162//
163class ExecutionTraceParamContext : public ParamContext
164{
165  public:
166    ExecutionTraceParamContext(const string &_iniSection)
167        : ParamContext(_iniSection)
168        {
169        }
170
171    void checkParams();	// defined at bottom of file
172};
173
174ExecutionTraceParamContext exeTraceParams("exetrace");
175
176Param<bool> exe_trace_spec(&exeTraceParams, "speculative",
177                           "capture speculative instructions", true);
178
179Param<bool> exe_trace_print_cycle(&exeTraceParams, "print_cycle",
180                                  "print cycle number", true);
181Param<bool> exe_trace_print_opclass(&exeTraceParams, "print_opclass",
182                                  "print op class", true);
183Param<bool> exe_trace_print_thread(&exeTraceParams, "print_thread",
184                                  "print thread number", true);
185Param<bool> exe_trace_print_effaddr(&exeTraceParams, "print_effaddr",
186                                  "print effective address", true);
187Param<bool> exe_trace_print_data(&exeTraceParams, "print_data",
188                                  "print result data", true);
189Param<bool> exe_trace_print_iregs(&exeTraceParams, "print_iregs",
190                                  "print all integer regs", false);
191Param<bool> exe_trace_print_fetchseq(&exeTraceParams, "print_fetchseq",
192                                  "print fetch sequence number", false);
193Param<bool> exe_trace_print_cp_seq(&exeTraceParams, "print_cpseq",
194                                  "print correct-path sequence number", false);
195Param<bool> exe_trace_pc_symbol(&exeTraceParams, "pc_symbol",
196                                  "Use symbols for the PC if available", true);
197Param<bool> exe_trace_intel_format(&exeTraceParams, "intel_format",
198                                   "print trace in intel compatible format", false);
199Param<string> exe_trace_system(&exeTraceParams, "trace_system",
200                                   "print trace of which system (client or server)",
201                                   "client");
202
203
204//
205// Helper function for ExecutionTraceParamContext::checkParams() just
206// to get us into the InstRecord namespace
207//
208void
209Trace::InstRecord::setParams()
210{
211    flags[TRACE_MISSPEC]     = exe_trace_spec;
212
213    flags[PRINT_CYCLE]       = exe_trace_print_cycle;
214    flags[PRINT_OP_CLASS]    = exe_trace_print_opclass;
215    flags[PRINT_THREAD_NUM]  = exe_trace_print_thread;
216    flags[PRINT_RESULT_DATA] = exe_trace_print_effaddr;
217    flags[PRINT_EFF_ADDR]    = exe_trace_print_data;
218    flags[PRINT_INT_REGS]    = exe_trace_print_iregs;
219    flags[PRINT_FETCH_SEQ]   = exe_trace_print_fetchseq;
220    flags[PRINT_CP_SEQ]      = exe_trace_print_cp_seq;
221    flags[PC_SYMBOL]         = exe_trace_pc_symbol;
222    flags[INTEL_FORMAT]      = exe_trace_intel_format;
223    trace_system	     = exe_trace_system;
224}
225
226void
227ExecutionTraceParamContext::checkParams()
228{
229    Trace::InstRecord::setParams();
230}
231
232