summaryrefslogtreecommitdiff
path: root/src/cpu/static_inst.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-09 00:10:02 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-09 00:10:02 -0700
commitb66eb3b8d1e759bacb55ef187541f4c37767241a (patch)
treeb5ffb5f3177d2d30e9fce35a9ced3c36a101b2c8 /src/cpu/static_inst.hh
parentf57c286d2c3fceae84fde60f148f70305c846772 (diff)
downloadgem5-b66eb3b8d1e759bacb55ef187541f4c37767241a.tar.xz
O3: Generaize the O3 IMPL class so it isn't split out by ISA.
--HG-- rename : src/cpu/o3/sparc/cpu_builder.cc => src/cpu/o3/cpu_builder.cc rename : src/cpu/o3/sparc/dyn_inst.cc => src/cpu/o3/dyn_inst.cc rename : src/cpu/o3/sparc/impl.hh => src/cpu/o3/impl.hh rename : src/cpu/o3/sparc/thread_context.cc => src/cpu/o3/thread_context.cc
Diffstat (limited to 'src/cpu/static_inst.hh')
-rw-r--r--src/cpu/static_inst.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cpu/static_inst.hh b/src/cpu/static_inst.hh
index 2c3c3dbc2..8a1b3e749 100644
--- a/src/cpu/static_inst.hh
+++ b/src/cpu/static_inst.hh
@@ -42,7 +42,6 @@
#include "base/misc.hh"
#include "base/refcnt.hh"
#include "cpu/op_class.hh"
-#include "cpu/o3/dyn_inst_decl.hh"
#include "sim/faults.hh"
#include "sim/host.hh"
@@ -54,6 +53,10 @@ class ThreadContext;
class DynInst;
class Packet;
+class O3CPUImpl;
+template <class Impl> class BaseO3DynInst;
+typedef BaseO3DynInst<O3CPUImpl> O3DynInst;
+
template <class Impl>
class OzoneDynInst;