[clang] [llvm] [RISCV] Assembler support for XRivosVizip (PR #127694)

Philip Reames via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 19 12:37:06 PST 2025


================
@@ -721,6 +721,8 @@ DecodeStatus RISCVDisassembler::getInstruction32(MCInst &MI, uint64_t &Size,
                         "Qualcomm uC Conditional Move custom opcode table");
   TRY_TO_DECODE_FEATURE(RISCV::FeatureVendorXqciint, DecoderTableXqciint32,
                         "Qualcomm uC Interrupts custom opcode table");
+  TRY_TO_DECODE_FEATURE(RISCV::FeatureVendorXRivosVizip, DecoderTableXRivos32,
----------------
preames wrote:

JFYI, repeating the existing macro per extension with the same table name works just fine.  You could also do other structures, but the direct migration is pretty easy - just change the table names.  

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


More information about the cfe-commits mailing list