changeset 6496f11d80da in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=6496f11d80da
description:
        CPU: Don't always reset the micro pc on faults. Let the faults handle 
it.

diffstat:

1 file changed, 2 deletions(-)
src/cpu/simple/base.cc |    2 --

diffs (12 lines):

diff -r 441f446c76f6 -r 6496f11d80da src/cpu/simple/base.cc
--- a/src/cpu/simple/base.cc    Sun Feb 01 00:30:11 2009 -0800
+++ b/src/cpu/simple/base.cc    Sun Feb 01 00:30:54 2009 -0800
@@ -472,8 +472,6 @@
     if (fault != NoFault) {
         curMacroStaticInst = StaticInst::nullStaticInstPtr;
         predecoder.reset();
-        thread->setMicroPC(normalMicroPC(0));
-        thread->setNextMicroPC(normalMicroPC(1));
         fault->invoke(tc);
     } else {
         //If we're at the last micro op for this instruction
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to