Deleted Added
sdiff udiff text old ( 4776:8c8407243a2c ) new ( 5034:6186ef720dd4 )
full compact
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{
69 return new Trace::IntelTrace(name);
70};