[llvm] [llvm-exegesis][AArch64] Check for PAC keys before disabling them (PR #138643)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Wed May 14 14:07:47 PDT 2025
================
@@ -207,18 +216,35 @@ class ExegesisAArch64Target : public ExegesisTarget {
if (isPointerAuth(Opcode)) {
#if defined(__aarch64__) && defined(__linux__)
+ // For some systems with existing PAC keys set, it is better to
+ // check the existing state of the key before setting it.
+ // For systems without PAC, this is a No-op but with PAC, it is
+ // safer to check the existing key state and then disable/enable them.
----------------
boomanaiden154 wrote:
Could you describe within the comment what "safer" means?
https://github.com/llvm/llvm-project/pull/138643
More information about the llvm-commits
mailing list