76a77,79
> template<> ArmFault::FaultVals ArmFaultVals<ReExec>::vals =
> {"ReExec Flush", 0x00, MODE_SVC, 0, 0, true, true}; // some dummy values
>
227a231,241
> void
> ReExec::invoke(ThreadContext *tc, StaticInstPtr inst) {
> DPRINTF(Faults, "Invoking ReExec Fault\n");
>
> // Set the PC to then the faulting instruction.
> // Net effect is simply squashing all instructions including this
> // instruction and refetching/rexecuting current instruction
> PCState pc = tc->pcState();
> tc->pcState(pc);
> }
>