[llvm] [Xtensa] Implement Xtensa MAC16 Option. (PR #130004)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 6 00:12:51 PST 2025
================
@@ -73,8 +73,50 @@ static DecodeStatus DecodeARRegisterClass(MCInst &Inst, uint64_t RegNo,
return MCDisassembler::Success;
}
+static const unsigned MRDecoderTable[] = {Xtensa::M0, Xtensa::M1, Xtensa::M2,
+ Xtensa::M3};
+
+static DecodeStatus DecodeMRRegisterClass(MCInst &Inst, uint64_t RegNo,
+ uint64_t Address,
+ const void *Decoder) {
+ if (RegNo >= std::size(MRDecoderTable))
+ return MCDisassembler::Fail;
+
+ unsigned Reg = MRDecoderTable[RegNo];
+ Inst.addOperand(MCOperand::createReg(Reg));
+ return MCDisassembler::Success;
+}
+
+static const unsigned MR01DecoderTable[] = {Xtensa::M0, Xtensa::M1};
+
+static DecodeStatus DecodeMR01RegisterClass(MCInst &Inst, uint64_t RegNo,
+ uint64_t Address,
+ const void *Decoder) {
+ if (RegNo > 2)
+ return MCDisassembler::Fail;
+
+ unsigned Reg = MR01DecoderTable[RegNo];
----------------
arsenm wrote:
MCRegister
https://github.com/llvm/llvm-project/pull/130004
More information about the llvm-commits
mailing list