[llvm] [llvm-exegesis] [AArch64] Resolving Illegal Instruction Error (PR #132346)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 00:09:26 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
----------------
boomanaiden154 wrote:
Same here regarding the opcode number.
https://github.com/llvm/llvm-project/pull/132346
More information about the llvm-commits
mailing list