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

Sjoerd Meijer via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 10:54:51 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:

Sorry for about to add this:  I don't know what that FEAT_FPAC things is. 
I don't think it is advertised as in the linux kernel features, maybe it is a bit of a different name, but don't think I see something that looks like it. Maybe I am missing something because I didn't research it too long. But if this is extension for raising the exception, then it looks like Grace has that like you wrote.

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


More information about the llvm-commits mailing list