simple_trace.hh (10023:91faf6649de0) simple_trace.hh (13429:a1e199fd8122)
1 /*
2 * Copyright (c) 2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

61
62 /** Register the probe listeners. */
63 void regProbeListeners();
64
65 /** Returns the name of the trace. */
66 const std::string name() const { return ProbeListenerObject::name() + ".trace"; }
67
68 private:
1 /*
2 * Copyright (c) 2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

61
62 /** Register the probe listeners. */
63 void regProbeListeners();
64
65 /** Returns the name of the trace. */
66 const std::string name() const { return ProbeListenerObject::name() + ".trace"; }
67
68 private:
69 void traceFetch(const O3CPUImpl::DynInstPtr &dynInst);
70 void traceCommit(const O3CPUImpl::DynInstPtr &dynInst);
69 void traceFetch(const O3CPUImpl::DynInstConstPtr& dynInst);
70 void traceCommit(const O3CPUImpl::DynInstConstPtr& dynInst);
71
72};
73#endif//__CPU_O3_PROBE_SIMPLE_TRACE_HH__
71
72};
73#endif//__CPU_O3_PROBE_SIMPLE_TRACE_HH__