LLVM 20.0.0git
AArch64MCInstLower.cpp
Go to the documentation of this file.
1//==-- AArch64MCInstLower.cpp - Convert AArch64 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 AArch64 MachineInstrs to their corresponding
10// MCInst records.
11//
12//===----------------------------------------------------------------------===//
13
14#include "AArch64MCInstLower.h"
22#include "llvm/IR/Function.h"
23#include "llvm/IR/Mangler.h"
24#include "llvm/MC/MCContext.h"
25#include "llvm/MC/MCExpr.h"
26#include "llvm/MC/MCInst.h"
27#include "llvm/MC/MCStreamer.h"
28#include "llvm/Object/COFF.h"
33using namespace llvm;
34using namespace llvm::object;
35
37
39 : Ctx(ctx), Printer(printer) {}
40
44}
45
47 unsigned TargetFlags) const {
48 const Triple &TheTriple = Printer.TM.getTargetTriple();
49 if (!TheTriple.isOSBinFormatCOFF())
50 return Printer.getSymbolPreferLocal(*GV);
51
52 assert(TheTriple.isOSWindows() &&
53 "Windows is the only supported COFF target");
54
55 bool IsIndirect =
57 if (!IsIndirect) {
58 // For ARM64EC, symbol lookup in the MSVC linker has limited awareness
59 // of ARM64EC mangling ("#"/"$$h"). So object files need to refer to both
60 // the mangled and unmangled names of ARM64EC symbols, even if they aren't
61 // actually used by any relocations. Emit the necessary references here.
62 if (!TheTriple.isWindowsArm64EC() || !isa<Function>(GV) ||
63 !GV->hasExternalLinkage())
64 return Printer.getSymbol(GV);
65
66 StringRef Name = Printer.getSymbol(GV)->getName();
67 // Don't mangle ARM64EC runtime functions.
68 static constexpr StringLiteral ExcludedFns[] = {
69 "__os_arm64x_check_icall_cfg", "__os_arm64x_dispatch_call_no_redirect",
70 "__os_arm64x_check_icall"};
71 if (is_contained(ExcludedFns, Name))
72 return Printer.getSymbol(GV);
73
74 if (std::optional<std::string> MangledName =
76 MCSymbol *MangledSym = Ctx.getOrCreateSymbol(MangledName.value());
77 if (!cast<Function>(GV)->hasMetadata("arm64ec_hasguestexit")) {
78 Printer.OutStreamer->emitSymbolAttribute(Printer.getSymbol(GV),
80 Printer.OutStreamer->emitAssignment(
81 Printer.getSymbol(GV),
83 Ctx));
84 Printer.OutStreamer->emitSymbolAttribute(MangledSym, MCSA_WeakAntiDep);
85 Printer.OutStreamer->emitAssignment(
86 MangledSym,
89 }
90
91 if (TargetFlags & AArch64II::MO_ARM64EC_CALLMANGLE)
92 return MangledSym;
93 }
94
95 return Printer.getSymbol(GV);
96 }
97
99
100 if ((TargetFlags & AArch64II::MO_DLLIMPORT) &&
101 TheTriple.isWindowsArm64EC() &&
102 !(TargetFlags & AArch64II::MO_ARM64EC_CALLMANGLE) &&
103 isa<Function>(GV)) {
104 // __imp_aux is specific to arm64EC; it represents the actual address of
105 // an imported function without any thunks.
106 //
107 // If we see a reference to an "aux" symbol, also emit a reference to the
108 // corresponding non-aux symbol. Otherwise, the Microsoft linker behaves
109 // strangely when linking against x64 import libararies.
110 //
111 // emitSymbolAttribute() doesn't have any real effect here; it just
112 // ensures the symbol name appears in the assembly without any
113 // side-effects. It might make sense to design a cleaner way to express
114 // this.
115 Name = "__imp_";
116 Printer.TM.getNameWithPrefix(Name, GV,
117 Printer.getObjFileLowering().getMangler());
118 MCSymbol *ExtraSym = Ctx.getOrCreateSymbol(Name);
119 Printer.OutStreamer->emitSymbolAttribute(ExtraSym, MCSA_Global);
120
121 Name = "__imp_aux_";
122 } else if (TargetFlags & AArch64II::MO_DLLIMPORT) {
123 Name = "__imp_";
124 } else if (TargetFlags & AArch64II::MO_COFFSTUB) {
125 Name = ".refptr.";
126 }
127 Printer.TM.getNameWithPrefix(Name, GV,
128 Printer.getObjFileLowering().getMangler());
129
130 MCSymbol *MCSym = Ctx.getOrCreateSymbol(Name);
131
132 if (TargetFlags & AArch64II::MO_COFFSTUB) {
133 MachineModuleInfoCOFF &MMICOFF =
136 MMICOFF.getGVStubEntry(MCSym);
137
138 if (!StubSym.getPointer())
139 StubSym = MachineModuleInfoImpl::StubValueTy(Printer.getSymbol(GV), true);
140 }
141
142 return MCSym;
143}
144
145MCSymbol *
147 return Printer.GetExternalSymbolSymbol(MO.getSymbolName());
148}
149
151 MCSymbol *Sym) const {
152 // FIXME: We would like an efficient form for this, so we don't have to do a
153 // lot of extra uniquing.
155 if ((MO.getTargetFlags() & AArch64II::MO_GOT) != 0) {
158 else if ((MO.getTargetFlags() & AArch64II::MO_FRAGMENT) ==
161 else
162 llvm_unreachable("Unexpected target flags with MO_GOT on GV operand");
163 } else if ((MO.getTargetFlags() & AArch64II::MO_TLS) != 0) {
166 else if ((MO.getTargetFlags() & AArch64II::MO_FRAGMENT) ==
169 else
170 llvm_unreachable("Unexpected target flags with MO_TLS on GV operand");
171 } else {
173 RefKind = MCSymbolRefExpr::VK_PAGE;
174 else if ((MO.getTargetFlags() & AArch64II::MO_FRAGMENT) ==
177 }
178 const MCExpr *Expr = MCSymbolRefExpr::create(Sym, RefKind, Ctx);
179 if (!MO.isJTI() && MO.getOffset())
181 Expr, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
182 return MCOperand::createExpr(Expr);
183}
184
186 MCSymbol *Sym) const {
187 uint32_t RefFlags = 0;
188
190 const MachineFunction *MF = MO.getParent()->getParent()->getParent();
191 RefFlags |= (MF->getInfo<AArch64FunctionInfo>()->hasELFSignedGOT()
194 } else if (MO.getTargetFlags() & AArch64II::MO_TLS) {
195 TLSModel::Model Model;
196 if (MO.isGlobal()) {
197 const MachineFunction *MF = MO.getParent()->getParent()->getParent();
200 } else {
201 const GlobalValue *GV = MO.getGlobal();
202 Model = Printer.TM.getTLSModel(GV);
204 Model == TLSModel::LocalDynamic)
206 }
207 } else {
208 assert(MO.isSymbol() &&
209 StringRef(MO.getSymbolName()) == "_TLS_MODULE_BASE_" &&
210 "unexpected external TLS symbol");
211 // The general dynamic access sequence is used to get the
212 // address of _TLS_MODULE_BASE_.
214 }
215 switch (Model) {
217 RefFlags |= AArch64MCExpr::VK_GOTTPREL;
218 break;
220 RefFlags |= AArch64MCExpr::VK_TPREL;
221 break;
223 RefFlags |= AArch64MCExpr::VK_DTPREL;
224 break;
226 // TODO: it's probably better to introduce MO_TLS_AUTH or smth and avoid
227 // running hasELFSignedGOT() every time, but existing flags already
228 // cover all 12 bits of SubReg_TargetFlags field in MachineOperand, and
229 // making the field wider breaks static assertions.
230 const MachineFunction *MF = MO.getParent()->getParent()->getParent();
231 RefFlags |= MF->getInfo<AArch64FunctionInfo>()->hasELFSignedGOT()
234 break;
235 }
236 }
237 } else if (MO.getTargetFlags() & AArch64II::MO_PREL) {
238 RefFlags |= AArch64MCExpr::VK_PREL;
239 } else {
240 // No modifier means this is a generic reference, classified as absolute for
241 // the cases where it matters (:abs_g0: etc).
242 RefFlags |= AArch64MCExpr::VK_ABS;
243 }
244
246 RefFlags |= AArch64MCExpr::VK_PAGE;
247 else if ((MO.getTargetFlags() & AArch64II::MO_FRAGMENT) ==
249 RefFlags |= AArch64MCExpr::VK_PAGEOFF;
251 RefFlags |= AArch64MCExpr::VK_G3;
253 RefFlags |= AArch64MCExpr::VK_G2;
255 RefFlags |= AArch64MCExpr::VK_G1;
257 RefFlags |= AArch64MCExpr::VK_G0;
259 RefFlags |= AArch64MCExpr::VK_HI12;
260
262 RefFlags |= AArch64MCExpr::VK_NC;
263
264 const MCExpr *Expr =
266 if (!MO.isJTI() && MO.getOffset())
268 Expr, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
269
271 RefKind = static_cast<AArch64MCExpr::VariantKind>(RefFlags);
272 Expr = AArch64MCExpr::create(Expr, RefKind, Ctx);
273
274 return MCOperand::createExpr(Expr);
275}
276
278 MCSymbol *Sym) const {
279 uint32_t RefFlags = 0;
280
284 else if ((MO.getTargetFlags() & AArch64II::MO_FRAGMENT) ==
287
288 } else if (MO.getTargetFlags() & AArch64II::MO_S) {
289 RefFlags |= AArch64MCExpr::VK_SABS;
290 } else {
291 RefFlags |= AArch64MCExpr::VK_ABS;
292
294 RefFlags |= AArch64MCExpr::VK_PAGE;
295 else if ((MO.getTargetFlags() & AArch64II::MO_FRAGMENT) ==
298 }
299
301 RefFlags |= AArch64MCExpr::VK_G3;
303 RefFlags |= AArch64MCExpr::VK_G2;
305 RefFlags |= AArch64MCExpr::VK_G1;
307 RefFlags |= AArch64MCExpr::VK_G0;
308
309 // FIXME: Currently we only set VK_NC for MO_G3/MO_G2/MO_G1/MO_G0. This is
310 // because setting VK_NC for others would mean setting their respective
311 // RefFlags correctly. We should do this in a separate patch.
312 if (MO.getTargetFlags() & AArch64II::MO_NC) {
313 auto MOFrag = (MO.getTargetFlags() & AArch64II::MO_FRAGMENT);
314 if (MOFrag == AArch64II::MO_G3 || MOFrag == AArch64II::MO_G2 ||
315 MOFrag == AArch64II::MO_G1 || MOFrag == AArch64II::MO_G0)
316 RefFlags |= AArch64MCExpr::VK_NC;
317 }
318
319 const MCExpr *Expr =
321 if (!MO.isJTI() && MO.getOffset())
323 Expr, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
324
325 auto RefKind = static_cast<AArch64MCExpr::VariantKind>(RefFlags);
327 "Invalid relocation requested");
328 Expr = AArch64MCExpr::create(Expr, RefKind, Ctx);
329
330 return MCOperand::createExpr(Expr);
331}
332
334 MCSymbol *Sym) const {
335 if (Printer.TM.getTargetTriple().isOSBinFormatMachO())
336 return lowerSymbolOperandMachO(MO, Sym);
337 if (Printer.TM.getTargetTriple().isOSBinFormatCOFF())
338 return lowerSymbolOperandCOFF(MO, Sym);
339
340 assert(Printer.TM.getTargetTriple().isOSBinFormatELF() && "Invalid target");
341 return lowerSymbolOperandELF(MO, Sym);
342}
343
345 MCOperand &MCOp) const {
346 switch (MO.getType()) {
347 default:
348 llvm_unreachable("unknown operand type");
350 // Ignore all implicit register operands.
351 if (MO.isImplicit())
352 return false;
353 MCOp = MCOperand::createReg(MO.getReg());
354 break;
356 // Regmasks are like implicit defs.
357 return false;
359 MCOp = MCOperand::createImm(MO.getImm());
360 break;
364 break;
367 break;
370 break;
372 MCOp = LowerSymbolOperand(MO, MO.getMCSymbol());
373 break;
375 MCOp = LowerSymbolOperand(MO, Printer.GetJTISymbol(MO.getIndex()));
376 break;
378 MCOp = LowerSymbolOperand(MO, Printer.GetCPISymbol(MO.getIndex()));
379 break;
381 MCOp = LowerSymbolOperand(
382 MO, Printer.GetBlockAddressSymbol(MO.getBlockAddress()));
383 break;
384 }
385 return true;
386}
387
389 OutMI.setOpcode(MI->getOpcode());
390
391 for (const MachineOperand &MO : MI->operands()) {
392 MCOperand MCOp;
393 if (lowerOperand(MO, MCOp))
394 OutMI.addOperand(MCOp);
395 }
396
397 switch (OutMI.getOpcode()) {
398 case AArch64::CATCHRET:
399 OutMI = MCInst();
400 OutMI.setOpcode(AArch64::RET);
401 OutMI.addOperand(MCOperand::createReg(AArch64::LR));
402 break;
403 case AArch64::CLEANUPRET:
404 OutMI = MCInst();
405 OutMI.setOpcode(AArch64::RET);
406 OutMI.addOperand(MCOperand::createReg(AArch64::LR));
407 break;
408 }
409}
cl::opt< bool > EnableAArch64ELFLocalDynamicTLSGeneration("aarch64-elf-ldtls-generation", cl::Hidden, cl::desc("Allow AArch64 Local Dynamic TLS code generation"), cl::init(false))
cl::opt< bool > EnableAArch64ELFLocalDynamicTLSGeneration
dxil pretty printer
dxil pretty DXIL Metadata Pretty Printer
std::string Name
Symbol * Sym
Definition: ELF_riscv.cpp:479
IRTranslator LLVM IR MI
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
AArch64FunctionInfo - This class is derived from MachineFunctionInfo and contains private AArch64-spe...
static const AArch64MCExpr * create(const MCExpr *Expr, VariantKind Kind, MCContext &Ctx)
MCSymbol * GetExternalSymbolSymbol(const MachineOperand &MO) const
MCOperand lowerSymbolOperandCOFF(const MachineOperand &MO, MCSymbol *Sym) const
MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const
MCSymbol * GetGlobalValueSymbol(const GlobalValue *GV, unsigned TargetFlags) const
MCOperand lowerSymbolOperandELF(const MachineOperand &MO, MCSymbol *Sym) const
AArch64MCInstLower(MCContext &ctx, AsmPrinter &printer)
void Lower(const MachineInstr *MI, MCInst &OutMI) const
bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp) const
MCSymbol * GetGlobalAddressSymbol(const MachineOperand &MO) const
MCOperand lowerSymbolOperandMachO(const MachineOperand &MO, MCSymbol *Sym) const
This class is intended to be used as a driving class for all asm writers.
Definition: AsmPrinter.h:86
const TargetLoweringObjectFile & getObjFileLowering() const
Return information about object file lowering.
Definition: AsmPrinter.cpp:408
MCSymbol * getSymbol(const GlobalValue *GV) const
Definition: AsmPrinter.cpp:701
TargetMachine & TM
Target machine description.
Definition: AsmPrinter.h:89
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
MachineModuleInfo * MMI
This is a pointer to the current MachineModuleInfo.
Definition: AsmPrinter.h:107
MCSymbol * GetExternalSymbolSymbol(Twine Sym) const
Return the MCSymbol for the specified ExternalSymbol.
std::unique_ptr< MCStreamer > OutStreamer
This is the MCStreamer object for the file we are generating.
Definition: AsmPrinter.h:101
MCSymbol * GetBlockAddressSymbol(const BlockAddress *BA) const
Return the MCSymbol used to satisfy BlockAddress uses of the specified basic block.
bool hasExternalLinkage() const
Definition: GlobalValue.h:511
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
MCSymbol * getOrCreateSymbol(const Twine &Name)
Lookup the symbol inside with the specified Name.
Definition: MCContext.cpp:212
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
unsigned getOpcode() const
Definition: MCInst.h:199
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
StringRef getName() const
getName - Get the symbol name.
Definition: MCSymbol.h:205
MCSymbol * getSymbol() const
Return the MCSymbol for this basic block.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
Representation of each machine instruction.
Definition: MachineInstr.h:69
const MachineBasicBlock * getParent() const
Definition: MachineInstr.h:347
MachineModuleInfoCOFF - This is a MachineModuleInfoImpl implementation for COFF targets.
StubValueTy & getGVStubEntry(MCSymbol *Sym)
Ty & getObjFileInfo()
Keep track of various per-module pieces of information for backends that would like to do so.
MachineOperand class - Representation of each machine instruction operand.
const GlobalValue * getGlobal() const
int64_t getImm() const
bool isImplicit() const
MachineBasicBlock * getMBB() const
bool isSymbol() const
isSymbol - Tests if this is a MO_ExternalSymbol operand.
bool isJTI() const
isJTI - Tests if this is a MO_JumpTableIndex operand.
const BlockAddress * getBlockAddress() const
MachineInstr * getParent()
getParent - Return the instruction that this operand belongs to.
unsigned getTargetFlags() const
bool isGlobal() const
isGlobal - Tests if this is a MO_GlobalAddress operand.
MachineOperandType getType() const
getType - Returns the MachineOperandType for this operand.
const char * getSymbolName() const
Register getReg() const
getReg - Returns the register number.
MCSymbol * getMCSymbol() const
@ MO_Immediate
Immediate operand.
@ MO_ConstantPoolIndex
Address of indexed Constant in Constant Pool.
@ MO_MCSymbol
MCSymbol reference (for debug/eh info)
@ 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.
PointerIntPair - This class implements a pair of a pointer and small integer.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition: SmallString.h:26
A wrapper around a string literal that serves as a proxy for constructing global tables of StringRefs...
Definition: StringRef.h:853
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
TLSModel::Model getTLSModel(const GlobalValue *GV) const
Returns the TLS model which should be used for the given global variable.
const Triple & getTargetTriple() const
void getNameWithPrefix(SmallVectorImpl< char > &Name, const GlobalValue *GV, Mangler &Mang, bool MayAlwaysUsePrivate=false) const
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
bool isOSBinFormatMachO() const
Tests whether the environment is MachO.
Definition: Triple.h:743
bool isOSBinFormatCOFF() const
Tests whether the OS uses the COFF binary format.
Definition: Triple.h:735
bool isOSWindows() const
Tests whether the OS is Windows.
Definition: Triple.h:635
bool isWindowsArm64EC() const
Definition: Triple.h:651
bool isOSBinFormatELF() const
Tests whether the OS uses the ELF binary format.
Definition: Triple.h:730
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ MO_DLLIMPORT
MO_DLLIMPORT - On a symbol operand, this represents that the reference to the symbol is for an import...
@ MO_NC
MO_NC - Indicates whether the linker is expected to check the symbol reference for overflow.
@ MO_G1
MO_G1 - A symbol operand with this flag (granule 1) represents the bits 16-31 of a 64-bit address,...
@ MO_S
MO_S - Indicates that the bits of the symbol operand represented by MO_G0 etc are signed.
@ MO_PAGEOFF
MO_PAGEOFF - A symbol operand with this flag represents the offset of that symbol within a 4K page.
@ MO_GOT
MO_GOT - This flag indicates that a symbol operand represents the address of the GOT entry for the sy...
@ MO_PREL
MO_PREL - Indicates that the bits of the symbol operand represented by MO_G0 etc are PC relative.
@ MO_G0
MO_G0 - A symbol operand with this flag (granule 0) represents the bits 0-15 of a 64-bit address,...
@ MO_ARM64EC_CALLMANGLE
MO_ARM64EC_CALLMANGLE - Operand refers to the Arm64EC-mangled version of a symbol,...
@ MO_PAGE
MO_PAGE - A symbol operand with this flag represents the pc-relative offset of the 4K page containing...
@ MO_HI12
MO_HI12 - This flag indicates that a symbol operand represents the bits 13-24 of a 64-bit address,...
@ MO_TLS
MO_TLS - Indicates that the operand being accessed is some kind of thread-local symbol.
@ MO_G2
MO_G2 - A symbol operand with this flag (granule 2) represents the bits 32-47 of a 64-bit address,...
@ MO_G3
MO_G3 - A symbol operand with this flag (granule 3) represents the high 16-bits of a 64-bit address,...
@ MO_COFFSTUB
MO_COFFSTUB - On a symbol operand "FOO", this indicates that the reference is actually to the "....
@ GeneralDynamic
Definition: CodeGen.h:46
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
std::optional< std::string > getArm64ECMangledFunctionName(StringRef Name)
Returns the ARM64EC mangled function name unless the input is already mangled.
Definition: Mangler.cpp:294
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition: STLExtras.h:1903
@ MCSA_Global
.type _foo, @gnu_unique_object
Definition: MCDirectives.h:30
@ MCSA_WeakAntiDep
.weak_anti_dep (COFF)
Definition: MCDirectives.h:49