summaryrefslogtreecommitdiff
path: root/src/cpu/ozone
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2011-08-02 11:51:16 -0700
committerGabe Black <gblack@eecs.umich.edu>2011-08-02 11:51:16 -0700
commit6230668f5e7e4d7298d039a99d3bd73d9064bea9 (patch)
treeaaee702dc1cb9f023e719d2d82576907367f6a72 /src/cpu/ozone
parent1c68c32cc9926a53bd5df2d85d851541383d34d7 (diff)
downloadgem5-6230668f5e7e4d7298d039a99d3bd73d9064bea9.tar.xz
O3: Get rid of the raw ExtMachInst constructor on DynInsts.
This constructor assumes that the ExtMachInst can be decoded directly into a StaticInst that's useful to execute. With the advent of microcoded instructions that's no longer true.
Diffstat (limited to 'src/cpu/ozone')
-rw-r--r--src/cpu/ozone/dyn_inst_impl.hh8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/cpu/ozone/dyn_inst_impl.hh b/src/cpu/ozone/dyn_inst_impl.hh
index 002b39fa2..5eb8ea8da 100644
--- a/src/cpu/ozone/dyn_inst_impl.hh
+++ b/src/cpu/ozone/dyn_inst_impl.hh
@@ -47,14 +47,6 @@ OzoneDynInst<Impl>::OzoneDynInst(OzoneCPU *cpu)
}
template <class Impl>
-OzoneDynInst<Impl>::OzoneDynInst(ExtMachInst inst, Addr PC, Addr Pred_PC,
- InstSeqNum seq_num, OzoneCPU *cpu)
- : BaseDynInst<Impl>(inst, PC, Pred_PC, seq_num, cpu)
-{
- initInstPtrs();
-}
-
-template <class Impl>
OzoneDynInst<Impl>::OzoneDynInst(StaticInstPtr _staticInst)
: BaseDynInst<Impl>(_staticInst)
{