inteltrace.cc (4776:8c8407243a2c) inteltrace.cc (5034:6186ef720dd4)
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;

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

31 * Steve Raasch
32 */
33
34#include <iomanip>
35
36#include "cpu/exetrace.hh"
37#include "cpu/inteltrace.hh"
38#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;

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

31 * Steve Raasch
32 */
33
34#include <iomanip>
35
36#include "cpu/exetrace.hh"
37#include "cpu/inteltrace.hh"
38#include "cpu/static_inst.hh"
39#include "params/IntelTrace.hh"
40
41using namespace std;
42using namespace TheISA;
43
44namespace Trace {
45
46void
47Trace::IntelTraceRecord::dump()

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

61
62////////////////////////////////////////////////////////////////////////
63//
64// ExeTracer Simulation Object
65//
66Trace::IntelTrace *
67IntelTraceParams::create()
68{
39
40using namespace std;
41using namespace TheISA;
42
43namespace Trace {
44
45void
46Trace::IntelTraceRecord::dump()

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

60
61////////////////////////////////////////////////////////////////////////
62//
63// ExeTracer Simulation Object
64//
65Trace::IntelTrace *
66IntelTraceParams::create()
67{
69 return new Trace::IntelTrace(name);
68 return new Trace::IntelTrace(this);
70};
69};