diff options
Diffstat (limited to 'src/arch/arm/faults.hh')
-rw-r--r-- | src/arch/arm/faults.hh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/arch/arm/faults.hh b/src/arch/arm/faults.hh index 234d8cfec..54edb336b 100644 --- a/src/arch/arm/faults.hh +++ b/src/arch/arm/faults.hh @@ -257,6 +257,15 @@ static inline Fault genMachineCheckFault() return new Reset(); } +// A fault that flushes the pipe, excluding the faulting instructions +class ArmSev : public ArmFaultVals<ArmSev> +{ + public: + ArmSev () {} + void invoke(ThreadContext *tc, + StaticInstPtr inst = StaticInst::nullStaticInstPtr); +}; + } // namespace ArmISA #endif // __ARM_FAULTS_HH__ |