[llvm] [llvm-exegesis] [AArch64] Resolving Illegal Instruction Error (PR #132346)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 04:46:02 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
+}
+
+static bool isUncheckedAccessOpcode(unsigned Opcode) {
+ return Opcode == 4694; // LDGM instruction
----------------
lakshayk-nv wrote:
Done.
https://github.com/llvm/llvm-project/pull/132346
More information about the llvm-commits
mailing list