exetrace.cc revision 7720
12SN/A/*
21762SN/A * Copyright (c) 2001-2005 The Regents of The University of Michigan
32SN/A * All rights reserved.
42SN/A *
52SN/A * Redistribution and use in source and binary forms, with or without
62SN/A * modification, are permitted provided that the following conditions are
72SN/A * met: redistributions of source code must retain the above copyright
82SN/A * notice, this list of conditions and the following disclaimer;
92SN/A * redistributions in binary form must reproduce the above copyright
102SN/A * notice, this list of conditions and the following disclaimer in the
112SN/A * documentation and/or other materials provided with the distribution;
122SN/A * neither the name of the copyright holders nor the names of its
132SN/A * contributors may be used to endorse or promote products derived from
142SN/A * this software without specific prior written permission.
152SN/A *
162SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Steve Reinhardt
292665Ssaidi@eecs.umich.edu *          Lisa Hsu
302665Ssaidi@eecs.umich.edu *          Nathan Binkert
312665Ssaidi@eecs.umich.edu *          Steve Raasch
322SN/A */
332SN/A
342SN/A#include <iomanip>
352SN/A
367349SAli.Saidi@ARM.com#include "arch/isa_traits.hh"
377680Sgblack@eecs.umich.edu#include "arch/utility.hh"
3856SN/A#include "base/loader/symtab.hh"
391717SN/A#include "cpu/base.hh"
402518SN/A#include "cpu/exetrace.hh"
4156SN/A#include "cpu/static_inst.hh"
424776Sgblack@eecs.umich.edu#include "cpu/thread_context.hh"
436658Snate@binkert.org#include "config/the_isa.hh"
444762Snate@binkert.org#include "enums/OpClass.hh"
453065Sgblack@eecs.umich.edu
462SN/Ausing namespace std;
472973Sgblack@eecs.umich.eduusing namespace TheISA;
482SN/A
493506Ssaidi@eecs.umich.edunamespace Trace {
504054Sbinkertn@umich.edu
514054Sbinkertn@umich.eduvoid
525866Sksewell@umich.eduExeTracerRecord::dumpTicks(ostream &outs)
535866Sksewell@umich.edu{
545866Sksewell@umich.edu    ccprintf(outs, "%7d: ", when);
555866Sksewell@umich.edu}
565866Sksewell@umich.edu
575866Sksewell@umich.eduvoid
585784Sgblack@eecs.umich.eduTrace::ExeTracerRecord::traceInst(StaticInstPtr inst, bool ran)
594054Sbinkertn@umich.edu{
604776Sgblack@eecs.umich.edu    ostream &outs = Trace::output();
614054Sbinkertn@umich.edu
624776Sgblack@eecs.umich.edu    if (IsOn(ExecTicks))
635866Sksewell@umich.edu        dumpTicks(outs);
644054Sbinkertn@umich.edu
654776Sgblack@eecs.umich.edu    outs << thread->getCpuPtr()->name() << " ";
664054Sbinkertn@umich.edu
674776Sgblack@eecs.umich.edu    if (IsOn(ExecSpeculative))
684776Sgblack@eecs.umich.edu        outs << (misspeculating ? "-" : "+") << " ";
694054Sbinkertn@umich.edu
704776Sgblack@eecs.umich.edu    if (IsOn(ExecThread))
715715Shsul@eecs.umich.edu        outs << "T" << thread->threadId() << " : ";
724776Sgblack@eecs.umich.edu
734776Sgblack@eecs.umich.edu    std::string sym_str;
744776Sgblack@eecs.umich.edu    Addr sym_addr;
757720Sgblack@eecs.umich.edu    Addr cur_pc = pc.instAddr();
764776Sgblack@eecs.umich.edu    if (debugSymbolTable
774776Sgblack@eecs.umich.edu        && IsOn(ExecSymbol)
785947Sgblack@eecs.umich.edu#if FULL_SYSTEM
795947Sgblack@eecs.umich.edu        && !inUserMode(thread)
805947Sgblack@eecs.umich.edu#endif
817349SAli.Saidi@ARM.com        && debugSymbolTable->findNearestSymbol(cur_pc, sym_str, sym_addr)) {
827349SAli.Saidi@ARM.com        if (cur_pc != sym_addr)
837349SAli.Saidi@ARM.com            sym_str += csprintf("+%d",cur_pc - sym_addr);
845784Sgblack@eecs.umich.edu        outs << "@" << sym_str;
857720Sgblack@eecs.umich.edu    } else {
867349SAli.Saidi@ARM.com        outs << "0x" << hex << cur_pc;
874776Sgblack@eecs.umich.edu    }
884776Sgblack@eecs.umich.edu
895784Sgblack@eecs.umich.edu    if (inst->isMicroop()) {
907720Sgblack@eecs.umich.edu        outs << "." << setw(2) << dec << pc.microPC();
915784Sgblack@eecs.umich.edu    } else {
925784Sgblack@eecs.umich.edu        outs << "   ";
935784Sgblack@eecs.umich.edu    }
945784Sgblack@eecs.umich.edu
955784Sgblack@eecs.umich.edu    outs << " : ";
965784Sgblack@eecs.umich.edu
974776Sgblack@eecs.umich.edu    //
984776Sgblack@eecs.umich.edu    //  Print decoded instruction
994776Sgblack@eecs.umich.edu    //
1004776Sgblack@eecs.umich.edu
1014776Sgblack@eecs.umich.edu    outs << setw(26) << left;
1027349SAli.Saidi@ARM.com    outs << inst->disassemble(cur_pc, debugSymbolTable);
1034776Sgblack@eecs.umich.edu
1045784Sgblack@eecs.umich.edu    if (ran) {
1055784Sgblack@eecs.umich.edu        outs << " : ";
1065784Sgblack@eecs.umich.edu
1075784Sgblack@eecs.umich.edu        if (IsOn(ExecOpClass)) {
1085784Sgblack@eecs.umich.edu            outs << Enums::OpClassStrings[inst->opClass()] << " : ";
1095784Sgblack@eecs.umich.edu        }
1105784Sgblack@eecs.umich.edu
1117600Sminkyu.jeong@arm.com        if (IsOn(ExecResult) && predicate == false) {
1127600Sminkyu.jeong@arm.com            outs << "Predicated False";
1137600Sminkyu.jeong@arm.com        }
1147600Sminkyu.jeong@arm.com
1155784Sgblack@eecs.umich.edu        if (IsOn(ExecResult) && data_status != DataInvalid) {
1165784Sgblack@eecs.umich.edu            ccprintf(outs, " D=%#018x", data.as_int);
1175784Sgblack@eecs.umich.edu        }
1185784Sgblack@eecs.umich.edu
1195784Sgblack@eecs.umich.edu        if (IsOn(ExecEffAddr) && addr_valid)
1205784Sgblack@eecs.umich.edu            outs << " A=0x" << hex << addr;
1215784Sgblack@eecs.umich.edu
1225784Sgblack@eecs.umich.edu        if (IsOn(ExecFetchSeq) && fetch_seq_valid)
1235784Sgblack@eecs.umich.edu            outs << "  FetchSeq=" << dec << fetch_seq;
1245784Sgblack@eecs.umich.edu
1255784Sgblack@eecs.umich.edu        if (IsOn(ExecCPSeq) && cp_seq_valid)
1265784Sgblack@eecs.umich.edu            outs << "  CPSeq=" << dec << cp_seq;
1274776Sgblack@eecs.umich.edu    }
1284776Sgblack@eecs.umich.edu
1294776Sgblack@eecs.umich.edu    //
1304776Sgblack@eecs.umich.edu    //  End of line...
1314776Sgblack@eecs.umich.edu    //
1324776Sgblack@eecs.umich.edu    outs << endl;
1333506Ssaidi@eecs.umich.edu}
1343506Ssaidi@eecs.umich.edu
1355784Sgblack@eecs.umich.eduvoid
1365784Sgblack@eecs.umich.eduTrace::ExeTracerRecord::dump()
1375784Sgblack@eecs.umich.edu{
1385784Sgblack@eecs.umich.edu    /*
1395784Sgblack@eecs.umich.edu     * The behavior this check tries to achieve is that if ExecMacro is on,
1405784Sgblack@eecs.umich.edu     * the macroop will be printed. If it's on and microops are also on, it's
1415784Sgblack@eecs.umich.edu     * printed before the microops start printing to give context. If the
1425784Sgblack@eecs.umich.edu     * microops aren't printed, then it's printed only when the final microop
1435784Sgblack@eecs.umich.edu     * finishes. Macroops then behave like regular instructions and don't
1445784Sgblack@eecs.umich.edu     * complete/print when they fault.
1455784Sgblack@eecs.umich.edu     */
1465784Sgblack@eecs.umich.edu    if (IsOn(ExecMacro) && staticInst->isMicroop() &&
1475791Srstrong@cs.ucsd.edu            ((IsOn(ExecMicro) &&
1485784Sgblack@eecs.umich.edu             macroStaticInst && staticInst->isFirstMicroop()) ||
1495784Sgblack@eecs.umich.edu            (!IsOn(ExecMicro) &&
1505791Srstrong@cs.ucsd.edu             macroStaticInst && staticInst->isLastMicroop()))) {
1515784Sgblack@eecs.umich.edu        traceInst(macroStaticInst, false);
1525784Sgblack@eecs.umich.edu    }
1535784Sgblack@eecs.umich.edu    if (IsOn(ExecMicro) || !staticInst->isMicroop()) {
1545784Sgblack@eecs.umich.edu        traceInst(staticInst, true);
1555784Sgblack@eecs.umich.edu    }
1565784Sgblack@eecs.umich.edu}
1575784Sgblack@eecs.umich.edu
1584776Sgblack@eecs.umich.edu/* namespace Trace */ }
1594776Sgblack@eecs.umich.edu
1602SN/A////////////////////////////////////////////////////////////////////////
1612SN/A//
1624776Sgblack@eecs.umich.edu//  ExeTracer Simulation Object
1632SN/A//
1644776Sgblack@eecs.umich.eduTrace::ExeTracer *
1654776Sgblack@eecs.umich.eduExeTracerParams::create()
1663748Sgblack@eecs.umich.edu{
1675034Smilesck@eecs.umich.edu    return new Trace::ExeTracer(this);
1684776Sgblack@eecs.umich.edu};
169