diff options
Diffstat (limited to 'src/arch/arm/system.hh')
-rw-r--r-- | src/arch/arm/system.hh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/arch/arm/system.hh b/src/arch/arm/system.hh index b81ec05f9..46103f42c 100644 --- a/src/arch/arm/system.hh +++ b/src/arch/arm/system.hh @@ -259,8 +259,11 @@ class ArmSystem : public System */ static ExceptionLevel highestEL(ThreadContext *tc); - /** Returns the reset address if the highest implemented exception level for - * the system of a specific thread context is 64 bits (ARMv8) + /** Return true if the system implements a specific exception level */ + static bool haveEL(ThreadContext *tc, ExceptionLevel el); + + /** Returns the reset address if the highest implemented exception level + * for the system of a specific thread context is 64 bits (ARMv8) */ static Addr resetAddr64(ThreadContext *tc); |