[llvm] [llvm-exegesis][AArch64] Disable pauth and ldgm as unsupported instructions (PR #132346)

Aiden Grossman via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 3 12:33:52 PDT 2025


================
@@ -39,12 +39,18 @@ const char *
 ExegesisTarget::getIgnoredOpcodeReasonOrNull(const LLVMState &State,
                                              unsigned Opcode) const {
   const MCInstrDesc &InstrDesc = State.getIC().getInstr(Opcode).Description;
-  if (InstrDesc.isPseudo() || InstrDesc.usesCustomInsertionHook())
-    return "Unsupported opcode: isPseudo/usesCustomInserter";
-  if (InstrDesc.isBranch() || InstrDesc.isIndirectBranch())
-    return "Unsupported opcode: isBranch/isIndirectBranch";
-  if (InstrDesc.isCall() || InstrDesc.isReturn())
-    return "Unsupported opcode: isCall/isReturn";
+  if (InstrDesc.isPseudo())
----------------
boomanaiden154 wrote:

All the changes in this file seem to be formatting changes that are now irrelevant to the PR? They should probably be reverted.

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


More information about the llvm-commits mailing list