[llvm] [RISCV] Consolidate some DecoderNamespaces for standard extensions. (PR #128954)

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 07:14:52 PST 2025


================
@@ -721,6 +711,11 @@ DecodeStatus RISCVDisassembler::getInstruction32(MCInst &MI, uint64_t &Size,
   TRY_TO_DECODE_FEATURE_ANY(XRivosFeatureGroup, DecoderTableXRivos32, "Rivos");
 
   TRY_TO_DECODE(true, DecoderTable32, "RISCV32");
+  TRY_TO_DECODE(true, DecoderTableRV32GPRPair32,
+                "RV32GPRPair (rv32 and GPR pairs)");
+  TRY_TO_DECODE(true, DecoderTableZfinx32, "Zfinx (Float in Integer)");
+  TRY_TO_DECODE(true, DecoderTableZdinxRV32GPRPair32,
+                "ZdinxRV32GPRPair (rv32 and Double in Integer)");
----------------
topperc wrote:

@jrtc27 why couldn't you put your downstream stuff before the standard table even if the standard table is first upstream?

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


More information about the llvm-commits mailing list