[llvm] [llvm-exegesis] [AArch64] Resolving Illegal Instruction Error (PR #132346)
Sjoerd Meijer via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 03:31:58 PDT 2025
================
@@ -35,6 +35,14 @@ const ExegesisTarget *ExegesisTarget::lookup(Triple TT) {
return nullptr;
}
+static bool isPointerAuthOpcode(unsigned Opcode) {
+ return (Opcode >= 1648 && Opcode <= 1667); // AUT instruction class range
----------------
sjoerdmeijer wrote:
And fully agreed on checking the opcodes by the way, this needs to be a switch statement on all the pauth opcodes.
https://github.com/llvm/llvm-project/pull/132346
More information about the llvm-commits
mailing list