summaryrefslogtreecommitdiff
path: root/src/arch/arm/insts/static_inst.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/insts/static_inst.hh')
-rw-r--r--src/arch/arm/insts/static_inst.hh28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/arch/arm/insts/static_inst.hh b/src/arch/arm/insts/static_inst.hh
index 7ca1a84b6..9aed77c21 100644
--- a/src/arch/arm/insts/static_inst.hh
+++ b/src/arch/arm/insts/static_inst.hh
@@ -364,6 +364,11 @@ class ArmStaticInst : public StaticInst
mnemonic, true);
}
+ // Utility function used by checkForWFxTrap32 and checkForWFxTrap64
+ // Returns true if processor has to trap a WFI/WFE instruction.
+ bool isWFxTrapping(ThreadContext *tc,
+ ExceptionLevel targetEL, bool isWfe) const;
+
/**
* Trap an access to Advanced SIMD or FP registers due to access
* control bits.
@@ -406,6 +411,29 @@ class ArmStaticInst : public StaticInst
bool fpexc_check, bool advsimd) const;
/**
+ * Check if WFE/WFI instruction execution in aarch32 should be trapped.
+ *
+ * See aarch32/exceptions/traps/AArch32.checkForWFxTrap in the
+ * ARM ARM psueodcode library.
+ */
+ Fault checkForWFxTrap32(ThreadContext *tc,
+ ExceptionLevel tgtEl, bool isWfe) const;
+
+ /**
+ * Check if WFE/WFI instruction execution in aarch64 should be trapped.
+ *
+ * See aarch64/exceptions/traps/AArch64.checkForWFxTrap in the
+ * ARM ARM psueodcode library.
+ */
+ Fault checkForWFxTrap64(ThreadContext *tc,
+ ExceptionLevel tgtEl, bool isWfe) const;
+
+ /**
+ * WFE/WFI trapping helper function.
+ */
+ Fault trapWFx(ThreadContext *tc, CPSR cpsr, SCR scr, bool isWfe) const;
+
+ /**
* Get the new PSTATE from a SPSR register in preparation for an
* exception return.
*