1 //===-- RISCVMCCodeEmitter.cpp - Convert RISC-V code to machine code ------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file implements the RISCVMCCodeEmitter class.
11 //===----------------------------------------------------------------------===//
13 #include "MCTargetDesc/RISCVBaseInfo.h"
14 #include "MCTargetDesc/RISCVFixupKinds.h"
15 #include "MCTargetDesc/RISCVMCExpr.h"
16 #include "MCTargetDesc/RISCVMCTargetDesc.h"
17 #include "llvm/ADT/Statistic.h"
18 #include "llvm/MC/MCAsmInfo.h"
19 #include "llvm/MC/MCCodeEmitter.h"
20 #include "llvm/MC/MCContext.h"
21 #include "llvm/MC/MCExpr.h"
22 #include "llvm/MC/MCInst.h"
23 #include "llvm/MC/MCInstBuilder.h"
24 #include "llvm/MC/MCInstrInfo.h"
25 #include "llvm/MC/MCRegisterInfo.h"
26 #include "llvm/MC/MCSubtargetInfo.h"
27 #include "llvm/MC/MCSymbol.h"
28 #include "llvm/Support/Casting.h"
29 #include "llvm/Support/EndianStream.h"
33 #define DEBUG_TYPE "mccodeemitter"
35 STATISTIC(MCNumEmitted
, "Number of MC instructions emitted");
36 STATISTIC(MCNumFixups
, "Number of MC fixups created");
39 class RISCVMCCodeEmitter
: public MCCodeEmitter
{
40 RISCVMCCodeEmitter(const RISCVMCCodeEmitter
&) = delete;
41 void operator=(const RISCVMCCodeEmitter
&) = delete;
43 MCInstrInfo
const &MCII
;
46 RISCVMCCodeEmitter(MCContext
&ctx
, MCInstrInfo
const &MCII
)
47 : Ctx(ctx
), MCII(MCII
) {}
49 ~RISCVMCCodeEmitter() override
= default;
51 void encodeInstruction(const MCInst
&MI
, SmallVectorImpl
<char> &CB
,
52 SmallVectorImpl
<MCFixup
> &Fixups
,
53 const MCSubtargetInfo
&STI
) const override
;
55 void expandFunctionCall(const MCInst
&MI
, SmallVectorImpl
<char> &CB
,
56 SmallVectorImpl
<MCFixup
> &Fixups
,
57 const MCSubtargetInfo
&STI
) const;
59 void expandTLSDESCCall(const MCInst
&MI
, SmallVectorImpl
<char> &CB
,
60 SmallVectorImpl
<MCFixup
> &Fixups
,
61 const MCSubtargetInfo
&STI
) const;
63 void expandAddTPRel(const MCInst
&MI
, SmallVectorImpl
<char> &CB
,
64 SmallVectorImpl
<MCFixup
> &Fixups
,
65 const MCSubtargetInfo
&STI
) const;
67 void expandLongCondBr(const MCInst
&MI
, SmallVectorImpl
<char> &CB
,
68 SmallVectorImpl
<MCFixup
> &Fixups
,
69 const MCSubtargetInfo
&STI
) const;
71 /// TableGen'erated function for getting the binary encoding for an
73 uint64_t getBinaryCodeForInstr(const MCInst
&MI
,
74 SmallVectorImpl
<MCFixup
> &Fixups
,
75 const MCSubtargetInfo
&STI
) const;
77 /// Return binary encoding of operand. If the machine operand requires
78 /// relocation, record the relocation and return zero.
79 uint64_t getMachineOpValue(const MCInst
&MI
, const MCOperand
&MO
,
80 SmallVectorImpl
<MCFixup
> &Fixups
,
81 const MCSubtargetInfo
&STI
) const;
83 uint64_t getImmOpValueAsr1(const MCInst
&MI
, unsigned OpNo
,
84 SmallVectorImpl
<MCFixup
> &Fixups
,
85 const MCSubtargetInfo
&STI
) const;
87 uint64_t getImmOpValue(const MCInst
&MI
, unsigned OpNo
,
88 SmallVectorImpl
<MCFixup
> &Fixups
,
89 const MCSubtargetInfo
&STI
) const;
91 unsigned getVMaskReg(const MCInst
&MI
, unsigned OpNo
,
92 SmallVectorImpl
<MCFixup
> &Fixups
,
93 const MCSubtargetInfo
&STI
) const;
95 unsigned getRlistOpValue(const MCInst
&MI
, unsigned OpNo
,
96 SmallVectorImpl
<MCFixup
> &Fixups
,
97 const MCSubtargetInfo
&STI
) const;
99 unsigned getRegReg(const MCInst
&MI
, unsigned OpNo
,
100 SmallVectorImpl
<MCFixup
> &Fixups
,
101 const MCSubtargetInfo
&STI
) const;
103 } // end anonymous namespace
105 MCCodeEmitter
*llvm::createRISCVMCCodeEmitter(const MCInstrInfo
&MCII
,
107 return new RISCVMCCodeEmitter(Ctx
, MCII
);
110 // Expand PseudoCALL(Reg), PseudoTAIL and PseudoJump to AUIPC and JALR with
111 // relocation types. We expand those pseudo-instructions while encoding them,
112 // meaning AUIPC and JALR won't go through RISC-V MC to MC compressed
113 // instruction transformation. This is acceptable because AUIPC has no 16-bit
114 // form and C_JALR has no immediate operand field. We let linker relaxation
115 // deal with it. When linker relaxation is enabled, AUIPC and JALR have a
116 // chance to relax to JAL.
117 // If the C extension is enabled, JAL has a chance relax to C_JAL.
118 void RISCVMCCodeEmitter::expandFunctionCall(const MCInst
&MI
,
119 SmallVectorImpl
<char> &CB
,
120 SmallVectorImpl
<MCFixup
> &Fixups
,
121 const MCSubtargetInfo
&STI
) const {
125 if (MI
.getOpcode() == RISCV::PseudoTAIL
) {
126 Func
= MI
.getOperand(0);
127 Ra
= RISCVII::getTailExpandUseRegNo(STI
.getFeatureBits());
128 } else if (MI
.getOpcode() == RISCV::PseudoCALLReg
) {
129 Func
= MI
.getOperand(1);
130 Ra
= MI
.getOperand(0).getReg();
131 } else if (MI
.getOpcode() == RISCV::PseudoCALL
) {
132 Func
= MI
.getOperand(0);
134 } else if (MI
.getOpcode() == RISCV::PseudoJump
) {
135 Func
= MI
.getOperand(1);
136 Ra
= MI
.getOperand(0).getReg();
140 assert(Func
.isExpr() && "Expected expression");
142 const MCExpr
*CallExpr
= Func
.getExpr();
144 // Emit AUIPC Ra, Func with R_RISCV_CALL relocation type.
145 TmpInst
= MCInstBuilder(RISCV::AUIPC
).addReg(Ra
).addExpr(CallExpr
);
146 Binary
= getBinaryCodeForInstr(TmpInst
, Fixups
, STI
);
147 support::endian::write(CB
, Binary
, llvm::endianness::little
);
149 if (MI
.getOpcode() == RISCV::PseudoTAIL
||
150 MI
.getOpcode() == RISCV::PseudoJump
)
151 // Emit JALR X0, Ra, 0
152 TmpInst
= MCInstBuilder(RISCV::JALR
).addReg(RISCV::X0
).addReg(Ra
).addImm(0);
154 // Emit JALR Ra, Ra, 0
155 TmpInst
= MCInstBuilder(RISCV::JALR
).addReg(Ra
).addReg(Ra
).addImm(0);
156 Binary
= getBinaryCodeForInstr(TmpInst
, Fixups
, STI
);
157 support::endian::write(CB
, Binary
, llvm::endianness::little
);
160 void RISCVMCCodeEmitter::expandTLSDESCCall(const MCInst
&MI
,
161 SmallVectorImpl
<char> &CB
,
162 SmallVectorImpl
<MCFixup
> &Fixups
,
163 const MCSubtargetInfo
&STI
) const {
164 MCOperand SrcSymbol
= MI
.getOperand(3);
165 assert(SrcSymbol
.isExpr() &&
166 "Expected expression as first input to TLSDESCCALL");
167 const RISCVMCExpr
*Expr
= dyn_cast
<RISCVMCExpr
>(SrcSymbol
.getExpr());
168 MCRegister Link
= MI
.getOperand(0).getReg();
169 MCRegister Dest
= MI
.getOperand(1).getReg();
170 int64_t Imm
= MI
.getOperand(2).getImm();
171 Fixups
.push_back(MCFixup::create(
172 0, Expr
, MCFixupKind(RISCV::fixup_riscv_tlsdesc_call
), MI
.getLoc()));
174 MCInstBuilder(RISCV::JALR
).addReg(Link
).addReg(Dest
).addImm(Imm
);
176 uint32_t Binary
= getBinaryCodeForInstr(Call
, Fixups
, STI
);
177 support::endian::write(CB
, Binary
, llvm::endianness::little
);
180 // Expand PseudoAddTPRel to a simple ADD with the correct relocation.
181 void RISCVMCCodeEmitter::expandAddTPRel(const MCInst
&MI
,
182 SmallVectorImpl
<char> &CB
,
183 SmallVectorImpl
<MCFixup
> &Fixups
,
184 const MCSubtargetInfo
&STI
) const {
185 MCOperand DestReg
= MI
.getOperand(0);
186 MCOperand SrcReg
= MI
.getOperand(1);
187 MCOperand TPReg
= MI
.getOperand(2);
188 assert(TPReg
.isReg() && TPReg
.getReg() == RISCV::X4
&&
189 "Expected thread pointer as second input to TP-relative add");
191 MCOperand SrcSymbol
= MI
.getOperand(3);
192 assert(SrcSymbol
.isExpr() &&
193 "Expected expression as third input to TP-relative add");
195 const RISCVMCExpr
*Expr
= dyn_cast
<RISCVMCExpr
>(SrcSymbol
.getExpr());
196 assert(Expr
&& Expr
->getKind() == RISCVMCExpr::VK_RISCV_TPREL_ADD
&&
197 "Expected tprel_add relocation on TP-relative symbol");
199 // Emit the correct tprel_add relocation for the symbol.
200 Fixups
.push_back(MCFixup::create(
201 0, Expr
, MCFixupKind(RISCV::fixup_riscv_tprel_add
), MI
.getLoc()));
203 // Emit fixup_riscv_relax for tprel_add where the relax feature is enabled.
204 if (STI
.hasFeature(RISCV::FeatureRelax
)) {
205 const MCConstantExpr
*Dummy
= MCConstantExpr::create(0, Ctx
);
206 Fixups
.push_back(MCFixup::create(
207 0, Dummy
, MCFixupKind(RISCV::fixup_riscv_relax
), MI
.getLoc()));
210 // Emit a normal ADD instruction with the given operands.
211 MCInst TmpInst
= MCInstBuilder(RISCV::ADD
)
215 uint32_t Binary
= getBinaryCodeForInstr(TmpInst
, Fixups
, STI
);
216 support::endian::write(CB
, Binary
, llvm::endianness::little
);
219 static unsigned getInvertedBranchOp(unsigned BrOp
) {
222 llvm_unreachable("Unexpected branch opcode!");
223 case RISCV::PseudoLongBEQ
:
225 case RISCV::PseudoLongBNE
:
227 case RISCV::PseudoLongBLT
:
229 case RISCV::PseudoLongBGE
:
231 case RISCV::PseudoLongBLTU
:
233 case RISCV::PseudoLongBGEU
:
238 // Expand PseudoLongBxx to an inverted conditional branch and an unconditional
240 void RISCVMCCodeEmitter::expandLongCondBr(const MCInst
&MI
,
241 SmallVectorImpl
<char> &CB
,
242 SmallVectorImpl
<MCFixup
> &Fixups
,
243 const MCSubtargetInfo
&STI
) const {
244 MCRegister SrcReg1
= MI
.getOperand(0).getReg();
245 MCRegister SrcReg2
= MI
.getOperand(1).getReg();
246 MCOperand SrcSymbol
= MI
.getOperand(2);
247 unsigned Opcode
= MI
.getOpcode();
249 Opcode
== RISCV::PseudoLongBNE
|| Opcode
== RISCV::PseudoLongBEQ
;
251 bool UseCompressedBr
= false;
252 if (IsEqTest
&& (STI
.hasFeature(RISCV::FeatureStdExtC
) ||
253 STI
.hasFeature(RISCV::FeatureStdExtZca
))) {
254 if (RISCV::X8
<= SrcReg1
.id() && SrcReg1
.id() <= RISCV::X15
&&
255 SrcReg2
.id() == RISCV::X0
) {
256 UseCompressedBr
= true;
257 } else if (RISCV::X8
<= SrcReg2
.id() && SrcReg2
.id() <= RISCV::X15
&&
258 SrcReg1
.id() == RISCV::X0
) {
259 std::swap(SrcReg1
, SrcReg2
);
260 UseCompressedBr
= true;
265 if (UseCompressedBr
) {
267 Opcode
== RISCV::PseudoLongBNE
? RISCV::C_BEQZ
: RISCV::C_BNEZ
;
268 MCInst TmpInst
= MCInstBuilder(InvOpc
).addReg(SrcReg1
).addImm(6);
269 uint16_t Binary
= getBinaryCodeForInstr(TmpInst
, Fixups
, STI
);
270 support::endian::write
<uint16_t>(CB
, Binary
, llvm::endianness::little
);
273 unsigned InvOpc
= getInvertedBranchOp(Opcode
);
275 MCInstBuilder(InvOpc
).addReg(SrcReg1
).addReg(SrcReg2
).addImm(8);
276 uint32_t Binary
= getBinaryCodeForInstr(TmpInst
, Fixups
, STI
);
277 support::endian::write(CB
, Binary
, llvm::endianness::little
);
281 // Save the number fixups.
282 size_t FixupStartIndex
= Fixups
.size();
284 // Emit an unconditional jump to the destination.
286 MCInstBuilder(RISCV::JAL
).addReg(RISCV::X0
).addOperand(SrcSymbol
);
287 uint32_t Binary
= getBinaryCodeForInstr(TmpInst
, Fixups
, STI
);
288 support::endian::write(CB
, Binary
, llvm::endianness::little
);
290 // Drop any fixup added so we can add the correct one.
291 Fixups
.resize(FixupStartIndex
);
293 if (SrcSymbol
.isExpr()) {
294 Fixups
.push_back(MCFixup::create(Offset
, SrcSymbol
.getExpr(),
295 MCFixupKind(RISCV::fixup_riscv_jal
),
300 void RISCVMCCodeEmitter::encodeInstruction(const MCInst
&MI
,
301 SmallVectorImpl
<char> &CB
,
302 SmallVectorImpl
<MCFixup
> &Fixups
,
303 const MCSubtargetInfo
&STI
) const {
304 const MCInstrDesc
&Desc
= MCII
.get(MI
.getOpcode());
305 // Get byte count of instruction.
306 unsigned Size
= Desc
.getSize();
308 // RISCVInstrInfo::getInstSizeInBytes expects that the total size of the
309 // expanded instructions for each pseudo is correct in the Size field of the
310 // tablegen definition for the pseudo.
311 switch (MI
.getOpcode()) {
314 case RISCV::PseudoCALLReg
:
315 case RISCV::PseudoCALL
:
316 case RISCV::PseudoTAIL
:
317 case RISCV::PseudoJump
:
318 expandFunctionCall(MI
, CB
, Fixups
, STI
);
321 case RISCV::PseudoAddTPRel
:
322 expandAddTPRel(MI
, CB
, Fixups
, STI
);
325 case RISCV::PseudoLongBEQ
:
326 case RISCV::PseudoLongBNE
:
327 case RISCV::PseudoLongBLT
:
328 case RISCV::PseudoLongBGE
:
329 case RISCV::PseudoLongBLTU
:
330 case RISCV::PseudoLongBGEU
:
331 expandLongCondBr(MI
, CB
, Fixups
, STI
);
334 case RISCV::PseudoTLSDESCCall
:
335 expandTLSDESCCall(MI
, CB
, Fixups
, STI
);
342 llvm_unreachable("Unhandled encodeInstruction length!");
344 uint16_t Bits
= getBinaryCodeForInstr(MI
, Fixups
, STI
);
345 support::endian::write
<uint16_t>(CB
, Bits
, llvm::endianness::little
);
349 uint32_t Bits
= getBinaryCodeForInstr(MI
, Fixups
, STI
);
350 support::endian::write(CB
, Bits
, llvm::endianness::little
);
354 uint64_t Bits
= getBinaryCodeForInstr(MI
, Fixups
, STI
) & 0xffff'ffff'ffffu
;
355 SmallVector
<char, 8> Encoding
;
356 support::endian::write(Encoding
, Bits
, llvm::endianness::little
);
357 assert(Encoding
[6] == 0 && Encoding
[7] == 0 &&
358 "Unexpected encoding for 48-bit instruction");
359 Encoding
.truncate(6);
364 uint64_t Bits
= getBinaryCodeForInstr(MI
, Fixups
, STI
);
365 support::endian::write(CB
, Bits
, llvm::endianness::little
);
370 ++MCNumEmitted
; // Keep track of the # of mi's emitted.
374 RISCVMCCodeEmitter::getMachineOpValue(const MCInst
&MI
, const MCOperand
&MO
,
375 SmallVectorImpl
<MCFixup
> &Fixups
,
376 const MCSubtargetInfo
&STI
) const {
379 return Ctx
.getRegisterInfo()->getEncodingValue(MO
.getReg());
384 llvm_unreachable("Unhandled expression!");
389 RISCVMCCodeEmitter::getImmOpValueAsr1(const MCInst
&MI
, unsigned OpNo
,
390 SmallVectorImpl
<MCFixup
> &Fixups
,
391 const MCSubtargetInfo
&STI
) const {
392 const MCOperand
&MO
= MI
.getOperand(OpNo
);
395 uint64_t Res
= MO
.getImm();
396 assert((Res
& 1) == 0 && "LSB is non-zero");
400 return getImmOpValue(MI
, OpNo
, Fixups
, STI
);
403 uint64_t RISCVMCCodeEmitter::getImmOpValue(const MCInst
&MI
, unsigned OpNo
,
404 SmallVectorImpl
<MCFixup
> &Fixups
,
405 const MCSubtargetInfo
&STI
) const {
406 bool EnableRelax
= STI
.hasFeature(RISCV::FeatureRelax
);
407 const MCOperand
&MO
= MI
.getOperand(OpNo
);
409 MCInstrDesc
const &Desc
= MCII
.get(MI
.getOpcode());
410 unsigned MIFrm
= RISCVII::getFormat(Desc
.TSFlags
);
412 // If the destination is an immediate, there is nothing to do.
416 assert(MO
.isExpr() &&
417 "getImmOpValue expects only expressions or immediates");
418 const MCExpr
*Expr
= MO
.getExpr();
419 MCExpr::ExprKind Kind
= Expr
->getKind();
420 RISCV::Fixups FixupKind
= RISCV::fixup_riscv_invalid
;
421 bool RelaxCandidate
= false;
422 if (Kind
== MCExpr::Target
) {
423 const RISCVMCExpr
*RVExpr
= cast
<RISCVMCExpr
>(Expr
);
425 switch (RVExpr
->getKind()) {
426 case RISCVMCExpr::VK_RISCV_None
:
427 case RISCVMCExpr::VK_RISCV_Invalid
:
428 case RISCVMCExpr::VK_RISCV_32_PCREL
:
429 llvm_unreachable("Unhandled fixup kind!");
430 case RISCVMCExpr::VK_RISCV_TPREL_ADD
:
431 // tprel_add is only used to indicate that a relocation should be emitted
432 // for an add instruction used in TP-relative addressing. It should not be
433 // expanded as if representing an actual instruction operand and so to
434 // encounter it here is an error.
436 "VK_RISCV_TPREL_ADD should not represent an instruction operand");
437 case RISCVMCExpr::VK_RISCV_LO
:
438 if (MIFrm
== RISCVII::InstFormatI
)
439 FixupKind
= RISCV::fixup_riscv_lo12_i
;
440 else if (MIFrm
== RISCVII::InstFormatS
)
441 FixupKind
= RISCV::fixup_riscv_lo12_s
;
443 llvm_unreachable("VK_RISCV_LO used with unexpected instruction format");
444 RelaxCandidate
= true;
446 case RISCVMCExpr::VK_RISCV_HI
:
447 FixupKind
= RISCV::fixup_riscv_hi20
;
448 RelaxCandidate
= true;
450 case RISCVMCExpr::VK_RISCV_PCREL_LO
:
451 if (MIFrm
== RISCVII::InstFormatI
)
452 FixupKind
= RISCV::fixup_riscv_pcrel_lo12_i
;
453 else if (MIFrm
== RISCVII::InstFormatS
)
454 FixupKind
= RISCV::fixup_riscv_pcrel_lo12_s
;
457 "VK_RISCV_PCREL_LO used with unexpected instruction format");
458 RelaxCandidate
= true;
460 case RISCVMCExpr::VK_RISCV_PCREL_HI
:
461 FixupKind
= RISCV::fixup_riscv_pcrel_hi20
;
462 RelaxCandidate
= true;
464 case RISCVMCExpr::VK_RISCV_GOT_HI
:
465 FixupKind
= RISCV::fixup_riscv_got_hi20
;
467 case RISCVMCExpr::VK_RISCV_TPREL_LO
:
468 if (MIFrm
== RISCVII::InstFormatI
)
469 FixupKind
= RISCV::fixup_riscv_tprel_lo12_i
;
470 else if (MIFrm
== RISCVII::InstFormatS
)
471 FixupKind
= RISCV::fixup_riscv_tprel_lo12_s
;
474 "VK_RISCV_TPREL_LO used with unexpected instruction format");
475 RelaxCandidate
= true;
477 case RISCVMCExpr::VK_RISCV_TPREL_HI
:
478 FixupKind
= RISCV::fixup_riscv_tprel_hi20
;
479 RelaxCandidate
= true;
481 case RISCVMCExpr::VK_RISCV_TLS_GOT_HI
:
482 FixupKind
= RISCV::fixup_riscv_tls_got_hi20
;
484 case RISCVMCExpr::VK_RISCV_TLS_GD_HI
:
485 FixupKind
= RISCV::fixup_riscv_tls_gd_hi20
;
487 case RISCVMCExpr::VK_RISCV_CALL
:
488 FixupKind
= RISCV::fixup_riscv_call
;
489 RelaxCandidate
= true;
491 case RISCVMCExpr::VK_RISCV_CALL_PLT
:
492 FixupKind
= RISCV::fixup_riscv_call_plt
;
493 RelaxCandidate
= true;
495 case RISCVMCExpr::VK_RISCV_TLSDESC_HI
:
496 FixupKind
= RISCV::fixup_riscv_tlsdesc_hi20
;
498 case RISCVMCExpr::VK_RISCV_TLSDESC_LOAD_LO
:
499 FixupKind
= RISCV::fixup_riscv_tlsdesc_load_lo12
;
501 case RISCVMCExpr::VK_RISCV_TLSDESC_ADD_LO
:
502 FixupKind
= RISCV::fixup_riscv_tlsdesc_add_lo12
;
504 case RISCVMCExpr::VK_RISCV_TLSDESC_CALL
:
505 FixupKind
= RISCV::fixup_riscv_tlsdesc_call
;
508 } else if ((Kind
== MCExpr::SymbolRef
&&
509 cast
<MCSymbolRefExpr
>(Expr
)->getKind() ==
510 MCSymbolRefExpr::VK_None
) ||
511 Kind
== MCExpr::Binary
) {
512 // FIXME: Sub kind binary exprs have chance of underflow.
513 if (MIFrm
== RISCVII::InstFormatJ
) {
514 FixupKind
= RISCV::fixup_riscv_jal
;
515 } else if (MIFrm
== RISCVII::InstFormatB
) {
516 FixupKind
= RISCV::fixup_riscv_branch
;
517 } else if (MIFrm
== RISCVII::InstFormatCJ
) {
518 FixupKind
= RISCV::fixup_riscv_rvc_jump
;
519 } else if (MIFrm
== RISCVII::InstFormatCB
) {
520 FixupKind
= RISCV::fixup_riscv_rvc_branch
;
521 } else if (MIFrm
== RISCVII::InstFormatI
) {
522 FixupKind
= RISCV::fixup_riscv_12_i
;
526 assert(FixupKind
!= RISCV::fixup_riscv_invalid
&& "Unhandled expression!");
529 MCFixup::create(0, Expr
, MCFixupKind(FixupKind
), MI
.getLoc()));
532 // Ensure an R_RISCV_RELAX relocation will be emitted if linker relaxation is
533 // enabled and the current fixup will result in a relocation that may be
535 if (EnableRelax
&& RelaxCandidate
) {
536 const MCConstantExpr
*Dummy
= MCConstantExpr::create(0, Ctx
);
538 MCFixup::create(0, Dummy
, MCFixupKind(RISCV::fixup_riscv_relax
),
546 unsigned RISCVMCCodeEmitter::getVMaskReg(const MCInst
&MI
, unsigned OpNo
,
547 SmallVectorImpl
<MCFixup
> &Fixups
,
548 const MCSubtargetInfo
&STI
) const {
549 MCOperand MO
= MI
.getOperand(OpNo
);
550 assert(MO
.isReg() && "Expected a register.");
552 switch (MO
.getReg()) {
554 llvm_unreachable("Invalid mask register.");
557 case RISCV::NoRegister
:
562 unsigned RISCVMCCodeEmitter::getRlistOpValue(const MCInst
&MI
, unsigned OpNo
,
563 SmallVectorImpl
<MCFixup
> &Fixups
,
564 const MCSubtargetInfo
&STI
) const {
565 const MCOperand
&MO
= MI
.getOperand(OpNo
);
566 assert(MO
.isImm() && "Rlist operand must be immediate");
567 auto Imm
= MO
.getImm();
568 assert(Imm
>= 4 && "EABI is currently not implemented");
572 unsigned RISCVMCCodeEmitter::getRegReg(const MCInst
&MI
, unsigned OpNo
,
573 SmallVectorImpl
<MCFixup
> &Fixups
,
574 const MCSubtargetInfo
&STI
) const {
575 const MCOperand
&MO
= MI
.getOperand(OpNo
);
576 const MCOperand
&MO1
= MI
.getOperand(OpNo
+ 1);
577 assert(MO
.isReg() && MO1
.isReg() && "Expected registers.");
579 unsigned Op
= Ctx
.getRegisterInfo()->getEncodingValue(MO
.getReg());
580 unsigned Op1
= Ctx
.getRegisterInfo()->getEncodingValue(MO1
.getReg());
582 return Op
| Op1
<< 5;
585 #include "RISCVGenMCCodeEmitter.inc"