diff options
author | Jim Lin <jim@andestech.com> | 2025-08-07 14:35:15 +0800 |
---|---|---|
committer | Jim Lin <jim@andestech.com> | 2025-08-08 11:18:18 +0800 |
commit | b9ca01b7464caa211841f88281d0a7ed0a97d634 (patch) | |
tree | 3189ac13652f0ab58fd686847a79fb0fc6696712 /llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp | |
parent | 3769ce013be2879bf0b329c14a16f5cb766f26ce (diff) | |
download | llvm-b9ca01b7464caa211841f88281d0a7ed0a97d634.zip llvm-b9ca01b7464caa211841f88281d0a7ed0a97d634.tar.gz llvm-b9ca01b7464caa211841f88281d0a7ed0a97d634.tar.bz2 |
[RISCV] Move the decoder table for XCV, Xqci and XRivos from standard section to vendor section. NFC
Diffstat (limited to 'llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp')
-rw-r--r-- | llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp b/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp index 67cc01e..e0ac591 100644 --- a/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp +++ b/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp @@ -674,6 +674,9 @@ static constexpr FeatureBitset XAndesGroup = { static constexpr DecoderListEntry DecoderList32[]{ // Vendor Extensions + {DecoderTableXCV32, XCVFeatureGroup, "CORE-V extensions"}, + {DecoderTableXRivos32, XRivosFeatureGroup, "Rivos"}, + {DecoderTableXqci32, XqciFeatureGroup, "Qualcomm uC Extensions"}, {DecoderTableXVentana32, {RISCV::FeatureVendorXVentanaCondOps}, "XVentanaCondOps"}, @@ -690,9 +693,6 @@ static constexpr DecoderListEntry DecoderList32[]{ "MIPS mips.pref"}, {DecoderTableXAndes32, XAndesGroup, "Andes extensions"}, // Standard Extensions - {DecoderTableXCV32, XCVFeatureGroup, "CORE-V extensions"}, - {DecoderTableXqci32, XqciFeatureGroup, "Qualcomm uC Extensions"}, - {DecoderTableXRivos32, XRivosFeatureGroup, "Rivos"}, {DecoderTable32, {}, "standard 32-bit instructions"}, {DecoderTableRV32Only32, {}, "RV32-only standard 32-bit instructions"}, {DecoderTableZfinx32, {}, "Zfinx (Float in Integer)"}, |