Deleted Added
sdiff udiff text old ( 6658:f4de76601762 ) new ( 7349:8b4564729c81 )
full compact
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;

--- 19 unchanged lines hidden (view full) ---

28 * Authors: Steve Reinhardt
29 * Lisa Hsu
30 * Nathan Binkert
31 * Steve Raasch
32 */
33
34#include <iomanip>
35
36#include "base/loader/symtab.hh"
37#include "cpu/base.hh"
38#include "cpu/exetrace.hh"
39#include "cpu/static_inst.hh"
40#include "cpu/thread_context.hh"
41#include "config/the_isa.hh"
42#include "enums/OpClass.hh"
43

--- 21 unchanged lines hidden (view full) ---

65 if (IsOn(ExecSpeculative))
66 outs << (misspeculating ? "-" : "+") << " ";
67
68 if (IsOn(ExecThread))
69 outs << "T" << thread->threadId() << " : ";
70
71 std::string sym_str;
72 Addr sym_addr;
73 if (debugSymbolTable
74 && IsOn(ExecSymbol)
75#if FULL_SYSTEM
76 && !inUserMode(thread)
77#endif
78 && debugSymbolTable->findNearestSymbol(PC, sym_str, sym_addr)) {
79 if (PC != sym_addr)
80 sym_str += csprintf("+%d", PC - sym_addr);
81 outs << "@" << sym_str;
82 }
83 else {
84 outs << "0x" << hex << PC;
85 }
86
87 if (inst->isMicroop()) {
88 outs << "." << setw(2) << dec << upc;
89 } else {
90 outs << " ";
91 }
92
93 outs << " : ";
94
95 //
96 // Print decoded instruction
97 //
98
99 outs << setw(26) << left;
100 outs << inst->disassemble(PC, debugSymbolTable);
101
102 if (ran) {
103 outs << " : ";
104
105 if (IsOn(ExecOpClass)) {
106 outs << Enums::OpClassStrings[inst->opClass()] << " : ";
107 }
108

--- 54 unchanged lines hidden ---