exetrace.hh (6216:2f4020838149) exetrace.hh (7680:f4eda002333b)
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;

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

30 */
31
32#ifndef __CPU_EXETRACE_HH__
33#define __CPU_EXETRACE_HH__
34
35#include "base/trace.hh"
36#include "base/types.hh"
37#include "cpu/static_inst.hh"
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;

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

30 */
31
32#ifndef __CPU_EXETRACE_HH__
33#define __CPU_EXETRACE_HH__
34
35#include "base/trace.hh"
36#include "base/types.hh"
37#include "cpu/static_inst.hh"
38#include "cpu/thread_context.hh"
38#include "params/ExeTracer.hh"
39#include "sim/insttracer.hh"
40
41class ThreadContext;
42
39#include "params/ExeTracer.hh"
40#include "sim/insttracer.hh"
41
42class ThreadContext;
43
43
44namespace Trace {
45
46class ExeTracerRecord : public InstRecord
47{
48 public:
49 ExeTracerRecord(Tick _when, ThreadContext *_thread,
50 const StaticInstPtr _staticInst, Addr _pc, bool spec,
51 const StaticInstPtr _macroStaticInst = NULL, MicroPC _upc = 0)

--- 40 unchanged lines hidden ---
44namespace Trace {
45
46class ExeTracerRecord : public InstRecord
47{
48 public:
49 ExeTracerRecord(Tick _when, ThreadContext *_thread,
50 const StaticInstPtr _staticInst, Addr _pc, bool spec,
51 const StaticInstPtr _macroStaticInst = NULL, MicroPC _upc = 0)

--- 40 unchanged lines hidden ---