[llvm] [Exegesis][RISCV] Add initial RVV support (PR #128767)

Min-Yih Hsu via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 26 16:13:01 PST 2025


================
@@ -35,6 +35,19 @@ const ExegesisTarget *ExegesisTarget::lookup(Triple TT) {
   return nullptr;
 }
 
+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())
----------------
mshockwave wrote:

> What's causing those to be ignored today?

I don't think JAL and JALR are explicitly ignored. If anything, the snippets for these two opcodes will just crash silently (with a message shown in the result, of course) inside the sandbox built by JIT without affecting other snippets. 

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


More information about the llvm-commits mailing list