[llvm] [llvm-exegesis] [AArch64] Resolving Illegal Instruction Error (PR #132346)

via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 04:34:37 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
----------------
lakshayk-nv wrote:

> Which ones fail for you? 
>>
All 14 variants of AUT `AUTD[A|B|ZA|ZB], AUTI[A|A1716|ASP|AZ|B|B1716|BSP|BZ|ZA|ZB]` throws illegal instruction error. 

https://github.com/llvm/llvm-project/pull/132346


More information about the llvm-commits mailing list