mem-cache: Add multiple eviction stats
[gem5.git] / src / arch / x86 / emulenv.cc
index e6c170d0f1c26801ad8f8f1b452536628a8d7af8..0e2795da1ad6f877e708bcbfddc50b756f0fd3de 100644 (file)
  * Authors: Gabe Black
  */
 
+#include "arch/x86/emulenv.hh"
+
 #include <cassert>
 
-#include "arch/x86/emulenv.hh"
-#include "base/misc.hh"
+#include "base/logging.hh"
 
 using namespace X86ISA;
 
@@ -53,7 +54,7 @@ void EmulEnv::doModRM(const ExtMachInst & machInst)
         index = machInst.sib.index | (machInst.rex.x << 3);
         base = machInst.sib.base | (machInst.rex.b << 3);
         //In this special case, we don't use a base. The displacement also
-        //changes, but that's managed by the predecoder.
+        //changes, but that's managed by the decoder.
         if (machInst.sib.base == INTREG_RBP && machInst.modRM.mod == 0)
             base = NUM_INTREGS;
         //In -this- special case, we don't use an index.