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
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{
68 return new Trace::IntelTrace(this);
69};