exetrace.hh (6214:1ec0ec8933ae) exetrace.hh (6216:2f4020838149)
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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Steve Reinhardt
29 * Nathan Binkert
30 */
31
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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Steve Reinhardt
29 * Nathan Binkert
30 */
31
32#ifndef __EXETRACE_HH__
33#define __EXETRACE_HH__
32#ifndef __CPU_EXETRACE_HH__
33#define __CPU_EXETRACE_HH__
34
35#include "base/trace.hh"
34
35#include "base/trace.hh"
36#include "cpu/static_inst.hh"
37#include "base/types.hh"
36#include "base/types.hh"
38#include "sim/insttracer.hh"
37#include "cpu/static_inst.hh"
39#include "params/ExeTracer.hh"
38#include "params/ExeTracer.hh"
39#include "sim/insttracer.hh"
40
41class ThreadContext;
42
43
44namespace Trace {
45
46class ExeTracerRecord : public InstRecord
47{

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

83
84 return new ExeTracerRecord(when, tc,
85 staticInst, pc, tc->misspeculating(), macroStaticInst, upc);
86 }
87};
88
89/* namespace Trace */ }
90
40
41class ThreadContext;
42
43
44namespace Trace {
45
46class ExeTracerRecord : public InstRecord
47{

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

83
84 return new ExeTracerRecord(when, tc,
85 staticInst, pc, tc->misspeculating(), macroStaticInst, upc);
86 }
87};
88
89/* namespace Trace */ }
90
91#endif // __EXETRACE_HH__
91#endif // __CPU_EXETRACE_HH__