Fixes to get MIPS_SE to compile.
authorGabe Black <gblack@eecs.umich.edu>
Thu, 21 Dec 2006 03:14:40 +0000 (22:14 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Thu, 21 Dec 2006 03:14:40 +0000 (22:14 -0500)
--HG--
extra : convert_revision : d173f212841341e436e9a38dcd3006d27886c1b8

src/cpu/o3/mips/dyn_inst.hh
src/cpu/o3/mips/dyn_inst_impl.hh

index 009a080128228ebca2b9647e260f8b68c1f13fd4..f5353090858c1fb78791878c8f5b20f99dd22ac7 100755 (executable)
@@ -70,8 +70,10 @@ class MipsDynInst : public BaseDynInst<Impl>
 
   public:
     /** BaseDynInst constructor given a binary instruction. */
-    MipsDynInst(ExtMachInst inst, Addr PC, Addr Pred_PC, InstSeqNum seq_num,
-                 O3CPU *cpu);
+    MipsDynInst(ExtMachInst inst,
+                Addr PC, Addr NPC,
+                Addr Pred_PC, Addr Pred_NPC,
+                InstSeqNum seq_num, O3CPU *cpu);
 
     /** BaseDynInst constructor given a static inst pointer. */
     MipsDynInst(StaticInstPtr &_staticInst);
index fa8cf6cb466ddddf3648398dca2e2e28d125b177..c0f9ae771fdcc42818a18697a09f2f05dc125d1e 100755 (executable)
 #include "cpu/o3/mips/dyn_inst.hh"
 
 template <class Impl>
-MipsDynInst<Impl>::MipsDynInst(ExtMachInst inst, Addr PC, Addr Pred_PC,
-                                 InstSeqNum seq_num, O3CPU *cpu)
-    : BaseDynInst<Impl>(inst, PC, Pred_PC, seq_num, cpu)
+MipsDynInst<Impl>::MipsDynInst(ExtMachInst inst,
+                               Addr PC, Addr NPC,
+                               Addr Pred_PC, Addr Pred_NPC,
+                               InstSeqNum seq_num, O3CPU *cpu)
+    : BaseDynInst<Impl>(inst, PC, NPC, Pred_PC, Pred_NPC, seq_num, cpu)
 {
     initVars();
 }