syscall emulation: Enabled getrlimit and getrusage for x86.
[gem5.git] / src / arch / mips / decoder.hh
index 95385961d890f3b5ee499aca6b6b1cd9e98c75a9..4857eb35362e6ebbc3c142538909c9a4d20aebac 100644 (file)
 #ifndef __ARCH_MIPS_DECODER_HH__
 #define __ARCH_MIPS_DECODER_HH__
 
+#include "arch/generic/decode_cache.hh"
 #include "arch/mips/types.hh"
 #include "base/misc.hh"
 #include "base/types.hh"
-#include "cpu/decode_cache.hh"
-#include "cpu/static_inst_fwd.hh"
+#include "cpu/static_inst.hh"
 
 class ThreadContext;
 
@@ -99,7 +99,7 @@ class Decoder
 
   protected:
     /// A cache of decoded instruction objects.
-    static DecodeCache defaultCache;
+    static GenericISA::BasicDecodeCache defaultCache;
 
   public:
     StaticInstPtr decodeInst(ExtMachInst mach_inst);