exetrace.cc (10417:710ee116eb68) exetrace.cc (10664:61a0b02aa800)
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;

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

66 if (!in_user_mode && !Debug::ExecKernel) return;
67 }
68
69 if (Debug::ExecTicks)
70 dumpTicks(outs);
71
72 outs << thread->getCpuPtr()->name() << " ";
73
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;

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

66 if (!in_user_mode && !Debug::ExecKernel) return;
67 }
68
69 if (Debug::ExecTicks)
70 dumpTicks(outs);
71
72 outs << thread->getCpuPtr()->name() << " ";
73
74 if (Debug::ExecSpeculative)
75 outs << (misspeculating ? "-" : "+") << " ";
76
77 if (Debug::ExecAsid)
78 outs << "A" << dec << TheISA::getExecutingAsid(thread) << " ";
79
80 if (Debug::ExecThread)
81 outs << "T" << thread->threadId() << " : ";
82
83 std::string sym_str;
84 Addr sym_addr;

--- 97 unchanged lines hidden ---
74 if (Debug::ExecAsid)
75 outs << "A" << dec << TheISA::getExecutingAsid(thread) << " ";
76
77 if (Debug::ExecThread)
78 outs << "T" << thread->threadId() << " : ";
79
80 std::string sym_str;
81 Addr sym_addr;

--- 97 unchanged lines hidden ---