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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Steve Reinhardt
29 * Lisa Hsu
30 * Nathan Binkert
31 * Steve Raasch
32 */
33
34#include "cpu/inteltrace.hh"
35
36#include <iomanip>
37
38#include "config/the_isa.hh"
39#include "cpu/exetrace.hh"
38#include "cpu/inteltrace.hh"
40#include "cpu/static_inst.hh"
41
42using namespace std;
43using namespace TheISA;
44
45namespace Trace {
46
47void

--- 24 unchanged lines hidden ---