LLVM 20.0.0git
LoongArchMCInstLower.cpp
Go to the documentation of this file.
1//=- LoongArchMCInstLower.cpp - Convert LoongArch MachineInstr to an MCInst -=//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains code to lower LoongArch MachineInstrs to their
10// corresponding MCInst records.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LoongArch.h"
20#include "llvm/MC/MCAsmInfo.h"
21#include "llvm/MC/MCContext.h"
22
23using namespace llvm;
24
26 const AsmPrinter &AP) {
27 MCContext &Ctx = AP.OutContext;
29
30 switch (MO.getTargetFlags()) {
31 default:
32 llvm_unreachable("Unknown target flag on GV operand");
35 break;
38 break;
41 break;
44 break;
47 break;
50 break;
53 break;
56 break;
59 break;
62 break;
65 break;
68 break;
71 break;
74 break;
77 break;
80 break;
83 break;
86 break;
89 break;
92 break;
95 break;
98 break;
101 break;
104 break;
107 break;
110 break;
113 break;
116 break;
117 // TODO: Handle more target-flags.
118 }
119
120 const MCExpr *ME =
122
123 if (!MO.isJTI() && !MO.isMBB() && MO.getOffset())
125 ME, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
126
128 ME = LoongArchMCExpr::create(ME, Kind, Ctx);
129 return MCOperand::createExpr(ME);
130}
131
133 MCOperand &MCOp,
134 const AsmPrinter &AP) {
135 switch (MO.getType()) {
136 default:
138 "lowerLoongArchMachineOperandToMCOperand: unknown operand type");
140 // Ignore all implicit register operands.
141 if (MO.isImplicit())
142 return false;
143 MCOp = MCOperand::createReg(MO.getReg());
144 break;
146 // Regmasks are like implicit defs.
147 return false;
149 MCOp = MCOperand::createImm(MO.getImm());
150 break;
152 MCOp = lowerSymbolOperand(MO, AP.GetCPISymbol(MO.getIndex()), AP);
153 break;
155 MCOp = lowerSymbolOperand(MO, AP.getSymbolPreferLocal(*MO.getGlobal()), AP);
156 break;
158 MCOp = lowerSymbolOperand(MO, MO.getMBB()->getSymbol(), AP);
159 break;
161 MCOp = lowerSymbolOperand(
162 MO, AP.GetExternalSymbolSymbol(MO.getSymbolName()), AP);
163 break;
165 MCOp = lowerSymbolOperand(
166 MO, AP.GetBlockAddressSymbol(MO.getBlockAddress()), AP);
167 break;
169 MCOp = lowerSymbolOperand(MO, AP.GetJTISymbol(MO.getIndex()), AP);
170 break;
171 }
172 return true;
173}
174
176 MCInst &OutMI, AsmPrinter &AP) {
177 OutMI.setOpcode(MI->getOpcode());
178
179 for (const MachineOperand &MO : MI->operands()) {
180 MCOperand MCOp;
182 OutMI.addOperand(MCOp);
183 }
184 return false;
185}
Symbol * Sym
Definition: ELF_riscv.cpp:479
IRTranslator LLVM IR MI
static MCOperand lowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym, const AsmPrinter &AP)
This class is intended to be used as a driving class for all asm writers.
Definition: AsmPrinter.h:86
virtual MCSymbol * GetCPISymbol(unsigned CPID) const
Return the symbol for the specified constant pool entry.
MCSymbol * GetJTISymbol(unsigned JTID, bool isLinkerPrivate=false) const
Return the symbol for the specified jump table entry.
MCSymbol * getSymbolPreferLocal(const GlobalValue &GV) const
Similar to getSymbol() but preferred for references.
Definition: AsmPrinter.cpp:705
MCContext & OutContext
This is the context for the output file that we are streaming.
Definition: AsmPrinter.h:96
MCSymbol * GetExternalSymbolSymbol(Twine Sym) const
Return the MCSymbol for the specified ExternalSymbol.
MCSymbol * GetBlockAddressSymbol(const BlockAddress *BA) const
Return the MCSymbol used to satisfy BlockAddress uses of the specified basic block.
static const LoongArchMCExpr * create(const MCExpr *Expr, VariantKind Kind, MCContext &Ctx, bool Hint=false)
static const MCBinaryExpr * createAdd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx)
Definition: MCExpr.h:537
static const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Definition: MCExpr.cpp:222
Context object for machine code objects.
Definition: MCContext.h:83
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:34
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:185
void addOperand(const MCOperand Op)
Definition: MCInst.h:211
void setOpcode(unsigned Op)
Definition: MCInst.h:198
Instances of this class represent operands of the MCInst class.
Definition: MCInst.h:37
static MCOperand createExpr(const MCExpr *Val)
Definition: MCInst.h:163
static MCOperand createReg(MCRegister Reg)
Definition: MCInst.h:135
static MCOperand createImm(int64_t Val)
Definition: MCInst.h:142
static const MCSymbolRefExpr * create(const MCSymbol *Symbol, MCContext &Ctx)
Definition: MCExpr.h:398
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:41
MCSymbol * getSymbol() const
Return the MCSymbol for this basic block.
Representation of each machine instruction.
Definition: MachineInstr.h:69
MachineOperand class - Representation of each machine instruction operand.
const GlobalValue * getGlobal() const
int64_t getImm() const
bool isImplicit() const
MachineBasicBlock * getMBB() const
bool isJTI() const
isJTI - Tests if this is a MO_JumpTableIndex operand.
const BlockAddress * getBlockAddress() const
unsigned getTargetFlags() const
MachineOperandType getType() const
getType - Returns the MachineOperandType for this operand.
const char * getSymbolName() const
Register getReg() const
getReg - Returns the register number.
@ MO_Immediate
Immediate operand.
@ MO_ConstantPoolIndex
Address of indexed Constant in Constant Pool.
@ MO_GlobalAddress
Address of a global value.
@ MO_RegisterMask
Mask of preserved registers.
@ MO_BlockAddress
Address of a basic block.
@ MO_MachineBasicBlock
MachineBasicBlock reference.
@ MO_Register
Register operand.
@ MO_ExternalSymbol
Name of external global symbol.
@ MO_JumpTableIndex
Address of indexed Jump Table for switch.
int64_t getOffset() const
Return the offset from the symbol in this operand.
bool isMBB() const
isMBB - Tests if this is a MO_MachineBasicBlock operand.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
bool lowerLoongArchMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI, AsmPrinter &AP)
bool lowerLoongArchMachineOperandToMCOperand(const MachineOperand &MO, MCOperand &MCOp, const AsmPrinter &AP)
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:167