LLVM 23.0.0git
AArch64ELFStreamer.cpp
Go to the documentation of this file.
1//===- lib/MC/AArch64ELFStreamer.cpp - ELF Object Output for AArch64 ------===//
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 assembles .s files and emits AArch64 ELF .o object files. Different
10// from generic ELF streamer in emitting mapping symbols ($x and $d) to delimit
11// regions of data and code.
12//
13//===----------------------------------------------------------------------===//
14
15#include "AArch64ELFStreamer.h"
16#include "AArch64MCTargetDesc.h"
18#include "llvm/ADT/DenseMap.h"
19#include "llvm/ADT/StringRef.h"
20#include "llvm/ADT/Twine.h"
23#include "llvm/MC/MCAssembler.h"
25#include "llvm/MC/MCContext.h"
28#include "llvm/MC/MCExpr.h"
29#include "llvm/MC/MCInst.h"
32#include "llvm/MC/MCStreamer.h"
34#include "llvm/MC/MCSymbolELF.h"
40
41using namespace llvm;
42
43namespace {
44
45class AArch64ELFStreamer;
46
47class AArch64TargetAsmStreamer : public AArch64TargetStreamer {
48 formatted_raw_ostream &OS;
49 std::string VendorTag;
50
51 void emitInst(uint32_t Inst) override;
52
53 void emitDirectiveVariantPCS(MCSymbol *Symbol) override {
54 OS << "\t.variant_pcs\t" << Symbol->getName() << "\n";
55 }
56
57 void emitDirectiveArch(StringRef Name) override {
58 OS << "\t.arch\t" << Name << "\n";
59 }
60
61 void emitDirectiveArchExtension(StringRef Name) override {
62 OS << "\t.arch_extension\t" << Name << "\n";
63 }
64
65 void emitARM64WinCFIAllocStack(unsigned Size) override {
66 OS << "\t.seh_stackalloc\t" << Size << "\n";
67 }
68 void emitARM64WinCFISaveR19R20X(int Offset) override {
69 OS << "\t.seh_save_r19r20_x\t" << Offset << "\n";
70 }
71 void emitARM64WinCFISaveFPLR(int Offset) override {
72 OS << "\t.seh_save_fplr\t" << Offset << "\n";
73 }
74 void emitARM64WinCFISaveFPLRX(int Offset) override {
75 OS << "\t.seh_save_fplr_x\t" << Offset << "\n";
76 }
77 void emitARM64WinCFISaveReg(unsigned Reg, int Offset) override {
78 OS << "\t.seh_save_reg\tx" << Reg << ", " << Offset << "\n";
79 }
80 void emitARM64WinCFISaveRegX(unsigned Reg, int Offset) override {
81 OS << "\t.seh_save_reg_x\tx" << Reg << ", " << Offset << "\n";
82 }
83 void emitARM64WinCFISaveRegP(unsigned Reg, int Offset) override {
84 OS << "\t.seh_save_regp\tx" << Reg << ", " << Offset << "\n";
85 }
86 void emitARM64WinCFISaveRegPX(unsigned Reg, int Offset) override {
87 OS << "\t.seh_save_regp_x\tx" << Reg << ", " << Offset << "\n";
88 }
89 void emitARM64WinCFISaveLRPair(unsigned Reg, int Offset) override {
90 OS << "\t.seh_save_lrpair\tx" << Reg << ", " << Offset << "\n";
91 }
92 void emitARM64WinCFISaveFReg(unsigned Reg, int Offset) override {
93 OS << "\t.seh_save_freg\td" << Reg << ", " << Offset << "\n";
94 }
95 void emitARM64WinCFISaveFRegX(unsigned Reg, int Offset) override {
96 OS << "\t.seh_save_freg_x\td" << Reg << ", " << Offset << "\n";
97 }
98 void emitARM64WinCFISaveFRegP(unsigned Reg, int Offset) override {
99 OS << "\t.seh_save_fregp\td" << Reg << ", " << Offset << "\n";
100 }
101 void emitARM64WinCFISaveFRegPX(unsigned Reg, int Offset) override {
102 OS << "\t.seh_save_fregp_x\td" << Reg << ", " << Offset << "\n";
103 }
104 void emitARM64WinCFISetFP() override { OS << "\t.seh_set_fp\n"; }
105 void emitARM64WinCFIAddFP(unsigned Size) override {
106 OS << "\t.seh_add_fp\t" << Size << "\n";
107 }
108 void emitARM64WinCFINop() override { OS << "\t.seh_nop\n"; }
109 void emitARM64WinCFISaveNext() override { OS << "\t.seh_save_next\n"; }
110 void emitARM64WinCFIPrologEnd() override { OS << "\t.seh_endprologue\n"; }
111 void emitARM64WinCFIEpilogStart() override { OS << "\t.seh_startepilogue\n"; }
112 void emitARM64WinCFIEpilogEnd() override { OS << "\t.seh_endepilogue\n"; }
113 void emitARM64WinCFITrapFrame() override { OS << "\t.seh_trap_frame\n"; }
114 void emitARM64WinCFIMachineFrame() override { OS << "\t.seh_pushframe\n"; }
115 void emitARM64WinCFIContext() override { OS << "\t.seh_context\n"; }
116 void emitARM64WinCFIECContext() override { OS << "\t.seh_ec_context\n"; }
117 void emitARM64WinCFIClearUnwoundToCall() override {
118 OS << "\t.seh_clear_unwound_to_call\n";
119 }
120 void emitARM64WinCFIPACSignLR() override {
121 OS << "\t.seh_pac_sign_lr\n";
122 }
123
124 void emitARM64WinCFISaveAnyRegI(unsigned Reg, int Offset) override {
125 OS << "\t.seh_save_any_reg\tx" << Reg << ", " << Offset << "\n";
126 }
127 void emitARM64WinCFISaveAnyRegIP(unsigned Reg, int Offset) override {
128 OS << "\t.seh_save_any_reg_p\tx" << Reg << ", " << Offset << "\n";
129 }
130 void emitARM64WinCFISaveAnyRegD(unsigned Reg, int Offset) override {
131 OS << "\t.seh_save_any_reg\td" << Reg << ", " << Offset << "\n";
132 }
133 void emitARM64WinCFISaveAnyRegDP(unsigned Reg, int Offset) override {
134 OS << "\t.seh_save_any_reg_p\td" << Reg << ", " << Offset << "\n";
135 }
136 void emitARM64WinCFISaveAnyRegQ(unsigned Reg, int Offset) override {
137 OS << "\t.seh_save_any_reg\tq" << Reg << ", " << Offset << "\n";
138 }
139 void emitARM64WinCFISaveAnyRegQP(unsigned Reg, int Offset) override {
140 OS << "\t.seh_save_any_reg_p\tq" << Reg << ", " << Offset << "\n";
141 }
142 void emitARM64WinCFISaveAnyRegIX(unsigned Reg, int Offset) override {
143 OS << "\t.seh_save_any_reg_x\tx" << Reg << ", " << Offset << "\n";
144 }
145 void emitARM64WinCFISaveAnyRegIPX(unsigned Reg, int Offset) override {
146 OS << "\t.seh_save_any_reg_px\tx" << Reg << ", " << Offset << "\n";
147 }
148 void emitARM64WinCFISaveAnyRegDX(unsigned Reg, int Offset) override {
149 OS << "\t.seh_save_any_reg_x\td" << Reg << ", " << Offset << "\n";
150 }
151 void emitARM64WinCFISaveAnyRegDPX(unsigned Reg, int Offset) override {
152 OS << "\t.seh_save_any_reg_px\td" << Reg << ", " << Offset << "\n";
153 }
154 void emitARM64WinCFISaveAnyRegQX(unsigned Reg, int Offset) override {
155 OS << "\t.seh_save_any_reg_x\tq" << Reg << ", " << Offset << "\n";
156 }
157 void emitARM64WinCFISaveAnyRegQPX(unsigned Reg, int Offset) override {
158 OS << "\t.seh_save_any_reg_px\tq" << Reg << ", " << Offset << "\n";
159 }
160 void emitARM64WinCFIAllocZ(int Offset) override {
161 OS << "\t.seh_allocz\t" << Offset << "\n";
162 }
163 void emitARM64WinCFISaveZReg(unsigned Reg, int Offset) override {
164 OS << "\t.seh_save_zreg\tz" << Reg << ", " << Offset << "\n";
165 }
166 void emitARM64WinCFISavePReg(unsigned Reg, int Offset) override {
167 OS << "\t.seh_save_preg\tp" << Reg << ", " << Offset << "\n";
168 }
169
170 void emitAttribute(StringRef VendorName, unsigned Tag, unsigned Value,
171 std::string String) override {
172
173 // AArch64 build attributes for assembly attribute form:
174 // .aeabi_attribute tag, value
175 if (unsigned(-1) == Value && "" == String) {
176 assert(0 && "Arguments error");
177 return;
178 }
179
180 unsigned VendorID = AArch64BuildAttributes::getVendorID(VendorName);
181
182 switch (VendorID) {
184 if (unsigned(-1) != Value) {
185 OS << "\t.aeabi_attribute" << "\t" << Tag << ", " << Value;
187 }
188 if ("" != String) {
189 OS << "\t.aeabi_attribute" << "\t" << Tag << ", " << String;
190 AArch64TargetStreamer::emitAttribute(VendorName, Tag, unsigned(-1),
191 String);
192 }
193 break;
194 // Note: AEABI_FEATURE_AND_BITS takes only unsigned values
196 switch (Tag) {
197 default: // allow emitting any attribute by number
198 OS << "\t.aeabi_attribute" << "\t" << Tag << ", " << Value;
199 // Keep the data structure consistent with the case of ELF emission
200 // (important for llvm-mc asm parsing)
202 break;
206 OS << "\t.aeabi_attribute" << "\t" << Tag << ", " << Value << "\t// "
209 break;
210 }
211 break;
212 // Note: AEABI_PAUTHABI takes only unsigned values
214 switch (Tag) {
215 default: // allow emitting any attribute by number
216 OS << "\t.aeabi_attribute" << "\t" << Tag << ", " << Value;
217 // Keep the data structure consistent with the case of ELF emission
218 // (important for llvm-mc asm parsing)
220 break;
223 OS << "\t.aeabi_attribute" << "\t" << Tag << ", " << Value << "\t// "
226 break;
227 }
228 break;
229 }
230 OS << "\n";
231 }
232
233 void emitAttributesSubsection(
234 StringRef SubsectionName,
236 AArch64BuildAttributes::SubsectionType ParameterType) override {
237 // The AArch64 build attributes assembly subsection header format:
238 // ".aeabi_subsection name, optional, parameter type"
239 // optional: required (0) optional (1)
240 // parameter type: uleb128 or ULEB128 (0) ntbs or NTBS (1)
241 unsigned SubsectionID = AArch64BuildAttributes::getVendorID(SubsectionName);
242
243 assert((0 == Optional || 1 == Optional) &&
245 assert((0 == ParameterType || 1 == ParameterType) &&
247
248 std::string SubsectionTag = ".aeabi_subsection";
249 StringRef OptionalStr = getOptionalStr(Optional);
250 StringRef ParameterStr = getTypeStr(ParameterType);
251
252 switch (SubsectionID) {
254 // Private subsection
255 break;
256 }
259 "subsection .aeabi-pauthabi should be marked as "
260 "required and not as optional");
261 assert(AArch64BuildAttributes::ULEB128 == ParameterType &&
262 "subsection .aeabi-pauthabi should be "
263 "marked as uleb128 and not as ntbs");
264 break;
265 }
268 "subsection .aeabi_feature_and_bits should be "
269 "marked as optional and not as required");
270 assert(AArch64BuildAttributes::ULEB128 == ParameterType &&
271 "subsection .aeabi_feature_and_bits should "
272 "be marked as uleb128 and not as ntbs");
273 break;
274 }
275 }
276 OS << "\t" << SubsectionTag << "\t" << SubsectionName << ", " << OptionalStr
277 << ", " << ParameterStr;
278 // Keep the data structure consistent with the case of ELF emission
279 // (important for llvm-mc asm parsing)
281 ParameterType);
282 OS << "\n";
283 }
284
285public:
286 AArch64TargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS);
287};
288
289AArch64TargetAsmStreamer::AArch64TargetAsmStreamer(MCStreamer &S,
291 : AArch64TargetStreamer(S), OS(OS) {}
292
293void AArch64TargetAsmStreamer::emitInst(uint32_t Inst) {
294 OS << "\t.inst\t0x" << Twine::utohexstr(Inst) << "\n";
295}
296
297/// Extend the generic ELFStreamer class so that it can emit mapping symbols at
298/// the appropriate points in the object files. These symbols are defined in the
299/// AArch64 ELF ABI:
300/// infocenter.arm.com/help/topic/com.arm.doc.ihi0056a/IHI0056A_aaelf64.pdf
301///
302/// In brief: $x or $d should be emitted at the start of each contiguous region
303/// of A64 code or data in a section. In practice, this emission does not rely
304/// on explicit assembler directives but on inherent properties of the
305/// directives doing the emission (e.g. ".byte" is data, "add x0, x0, x0" an
306/// instruction).
307///
308/// As a result this system is orthogonal to the DataRegion infrastructure used
309/// by MachO. Beware!
310class AArch64ELFStreamer : public MCELFStreamer {
311public:
312 friend AArch64TargetELFStreamer;
313 AArch64ELFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
314 std::unique_ptr<MCObjectWriter> OW,
315 std::unique_ptr<MCCodeEmitter> Emitter)
316 : MCELFStreamer(Context, std::move(TAB), std::move(OW),
317 std::move(Emitter)),
318 LastEMS(EMS_None) {
319 ImplicitMapSyms = getContext().getTargetOptions().ImplicitMapSyms;
320 }
321
322 void changeSection(MCSection *Section, uint32_t Subsection = 0) override {
323 // Save the mapping symbol state for potential reuse when revisiting the
324 // section. When ImplicitMapSyms is true, the initial state is
325 // EMS_A64 for text sections and EMS_Data for the others.
326 LastMappingSymbols[getCurrentSection().first] = LastEMS;
327 auto It = LastMappingSymbols.find(Section);
328 if (It != LastMappingSymbols.end())
329 LastEMS = It->second;
330 else if (ImplicitMapSyms)
331 LastEMS = Section->isText() ? EMS_A64 : EMS_Data;
332 else
333 LastEMS = EMS_None;
334
335 MCELFStreamer::changeSection(Section, Subsection);
336
337 // Section alignment of 4 to match GNU Assembler
338 if (Section->isText())
339 Section->ensureMinAlignment(Align(4));
340 }
341
342 // Reset state between object emissions
343 void reset() override {
345 LastMappingSymbols.clear();
346 LastEMS = EMS_None;
347 }
348
349 /// This function is the one used to emit instruction data into the ELF
350 /// streamer. We override it to add the appropriate mapping symbol if
351 /// necessary.
352 void emitInstruction(const MCInst &Inst,
353 const MCSubtargetInfo &STI) override {
354 emitA64MappingSymbol();
355 MCELFStreamer::emitInstruction(Inst, STI);
356 }
357
358 /// Emit a 32-bit value as an instruction. This is only used for the .inst
359 /// directive, EmitInstruction should be used in other cases.
360 void emitInst(uint32_t Inst) {
361 char Buffer[4];
362
363 // We can't just use EmitIntValue here, as that will emit a data mapping
364 // symbol, and swap the endianness on big-endian systems (instructions are
365 // always little-endian).
366 for (char &C : Buffer) {
367 C = uint8_t(Inst);
368 Inst >>= 8;
369 }
370
371 emitA64MappingSymbol();
372 MCELFStreamer::emitBytes(StringRef(Buffer, 4));
373 }
374
375 /// This is one of the functions used to emit data into an ELF section, so the
376 /// AArch64 streamer overrides it to add the appropriate mapping symbol ($d)
377 /// if necessary.
378 void emitBytes(StringRef Data) override {
379 emitDataMappingSymbol();
380 MCELFStreamer::emitBytes(Data);
381 }
382
383 /// This is one of the functions used to emit data into an ELF section, so the
384 /// AArch64 streamer overrides it to add the appropriate mapping symbol ($d)
385 /// if necessary.
386 void emitValueImpl(const MCExpr *Value, unsigned Size, SMLoc Loc) override {
387 emitDataMappingSymbol();
388 MCELFStreamer::emitValueImpl(Value, Size, Loc);
389 }
390
391 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
392 SMLoc Loc) override {
393 emitDataMappingSymbol();
394 MCObjectStreamer::emitFill(NumBytes, FillValue, Loc);
395 }
396
397private:
398 enum ElfMappingSymbol {
399 EMS_None,
400 EMS_A64,
401 EMS_Data
402 };
403
404 void emitDataMappingSymbol() {
405 if (LastEMS == EMS_Data)
406 return;
407 emitMappingSymbol("$d");
408 LastEMS = EMS_Data;
409 }
410
411 void emitA64MappingSymbol() {
412 if (LastEMS == EMS_A64)
413 return;
414 emitMappingSymbol("$x");
415 LastEMS = EMS_A64;
416 }
417
418 MCSymbol *emitMappingSymbol(StringRef Name) {
419 auto *Symbol =
420 static_cast<MCSymbolELF *>(getContext().createLocalSymbol(Name));
421 emitLabel(Symbol);
422 return Symbol;
423 }
424
425 DenseMap<const MCSection *, ElfMappingSymbol> LastMappingSymbols;
426 ElfMappingSymbol LastEMS;
427 bool ImplicitMapSyms;
428};
429} // end anonymous namespace
430
431AArch64ELFStreamer &AArch64TargetELFStreamer::getStreamer() {
432 return static_cast<AArch64ELFStreamer &>(Streamer);
433}
434
435void AArch64TargetELFStreamer::emitAttributesSubsection(
436 StringRef VendorName, AArch64BuildAttributes::SubsectionOptional IsOptional,
439 ParameterType);
440}
441
442void AArch64TargetELFStreamer::emitAttribute(StringRef VendorName, unsigned Tag,
443 unsigned Value,
444 std::string String) {
445 if (unsigned(-1) != Value)
447 if ("" != String)
448 AArch64TargetStreamer::emitAttribute(VendorName, Tag, unsigned(-1), String);
449}
450
451void AArch64TargetELFStreamer::emitInst(uint32_t Inst) {
452 getStreamer().emitInst(Inst);
453}
454
455void AArch64TargetELFStreamer::emitDirectiveVariantPCS(MCSymbol *Symbol) {
456 getStreamer().getAssembler().registerSymbol(*Symbol);
457 static_cast<MCSymbolELF *>(Symbol)->setOther(ELF::STO_AARCH64_VARIANT_PCS);
458}
459
460void AArch64TargetELFStreamer::finish() {
462 AArch64ELFStreamer &S = getStreamer();
463 MCContext &Ctx = S.getContext();
464 auto &Asm = S.getAssembler();
465
466 S.emitAttributesSection(AttributeSection, ".ARM.attributes",
467 ELF::SHT_AARCH64_ATTRIBUTES, AttributeSubSections);
468
469 // If ImplicitMapSyms is specified, ensure that text sections end with
470 // the A64 state while non-text sections end with the data state. When
471 // sections are combined by the linker, the subsequent section will start with
472 // the right state. The ending mapping symbol is added right after the last
473 // symbol relative to the section. When a dumb linker combines (.text.0; .word
474 // 0) and (.text.1; .word 0), the ending $x of .text.0 precedes the $d of
475 // .text.1, even if they have the same address.
476 if (S.ImplicitMapSyms) {
477 auto &Syms = Asm.getSymbols();
478 const size_t NumSyms = Syms.size();
479 DenseMap<MCSection *, std::pair<size_t, MCSymbol *>> EndMapSym;
480 for (MCSection &Sec : Asm) {
481 S.switchSection(&Sec);
482 if (S.LastEMS == (Sec.isText() ? AArch64ELFStreamer::EMS_Data
483 : AArch64ELFStreamer::EMS_A64))
484 EndMapSym.insert(
485 {&Sec, {NumSyms, S.emitMappingSymbol(Sec.isText() ? "$x" : "$d")}});
486 }
487 if (Syms.size() != NumSyms) {
489 Syms.truncate(NumSyms);
490 // Find the last symbol index for each candidate section.
491 for (auto [I, Sym] : llvm::enumerate(Syms)) {
492 if (!Sym->isInSection())
493 continue;
494 auto It = EndMapSym.find(&Sym->getSection());
495 if (It != EndMapSym.end())
496 It->second.first = I;
497 }
498 SmallVector<size_t, 0> Idx;
499 for (auto [I, Sym] : llvm::enumerate(Syms)) {
500 NewSyms.push_back(Sym);
501 if (!Sym->isInSection())
502 continue;
503 auto It = EndMapSym.find(&Sym->getSection());
504 // If `Sym` is the last symbol relative to the section, add the ending
505 // mapping symbol after `Sym`.
506 if (It != EndMapSym.end() && I == It->second.first) {
507 NewSyms.push_back(It->second.second);
508 Idx.push_back(I);
509 }
510 }
511 Syms = std::move(NewSyms);
512 // F.second holds the number of symbols added before the FILE symbol.
513 // Take into account the inserted mapping symbols.
514 for (auto &F : S.getWriter().getFileNames())
515 F.second += llvm::lower_bound(Idx, F.second) - Idx.begin();
516 }
517 }
518
519 // The mix of execute-only and non-execute-only at link time is
520 // non-execute-only. To avoid the empty implicitly created .text
521 // section from making the whole .text section non-execute-only, we
522 // mark it execute-only if it is empty and there is at least one
523 // execute-only section in the object.
524 if (any_of(Asm, [](const MCSection &Sec) {
525 return static_cast<const MCSectionELF &>(Sec).getFlags() &
527 })) {
528 auto *Text =
529 static_cast<MCSectionELF *>(Ctx.getObjectFileInfo()->getTextSection());
530 bool Empty = true;
531 for (auto &F : *Text) {
532 if (F.getSize()) {
533 Empty = false;
534 break;
535 }
536 }
537 if (Empty)
538 Text->setFlags(Text->getFlags() | ELF::SHF_AARCH64_PURECODE);
539 }
540
541 MCSectionELF *MemtagSec = nullptr;
542 for (const MCSymbol &Symbol : Asm.symbols()) {
543 auto &Sym = static_cast<const MCSymbolELF &>(Symbol);
544 if (Sym.isMemtag()) {
545 MemtagSec = Ctx.getELFSection(".memtag.globals.static",
547 break;
548 }
549 }
550 if (!MemtagSec)
551 return;
552
553 // switchSection registers the section symbol and invalidates symbols(). We
554 // need a separate symbols() loop.
555 S.switchSection(MemtagSec);
556 const auto *Zero = MCConstantExpr::create(0, Ctx);
557 for (const MCSymbol &Symbol : Asm.symbols()) {
558 auto &Sym = static_cast<const MCSymbolELF &>(Symbol);
559 if (!Sym.isMemtag())
560 continue;
561 auto *SRE = MCSymbolRefExpr::create(&Sym, Ctx);
562 S.emitRelocDirective(*Zero, "BFD_RELOC_NONE", SRE);
563 }
564}
565
566MCTargetStreamer *
568 MCInstPrinter *InstPrint) {
569 return new AArch64TargetAsmStreamer(S, OS);
570}
571
574 std::unique_ptr<MCAsmBackend> &&TAB,
575 std::unique_ptr<MCObjectWriter> &&OW,
576 std::unique_ptr<MCCodeEmitter> &&Emitter) {
577 return new AArch64ELFStreamer(Context, std::move(TAB), std::move(OW),
578 std::move(Emitter));
579}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
dxil DXContainer Global Emitter
This file defines the DenseMap class.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Register Reg
static Split data
static uint32_t getFlags(const Symbol *Sym)
Definition TapiFile.cpp:26
LocallyHashedType DenseMapInfo< LocallyHashedType >::Empty
virtual void emitAttributesSubsection(StringRef VendorName, AArch64BuildAttributes::SubsectionOptional IsOptional, AArch64BuildAttributes::SubsectionType ParameterType)
Build attributes implementation.
virtual void emitAttribute(StringRef VendorName, unsigned Tag, unsigned Value, std::string String)
iterator find(const_arg_type_t< KeyT > Val)
Definition DenseMap.h:225
iterator end()
Definition DenseMap.h:143
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Definition DenseMap.h:286
static LLVM_ABI const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Definition MCExpr.cpp:212
Context object for machine code objects.
Definition MCContext.h:83
const MCObjectFileInfo * getObjectFileInfo() const
Definition MCContext.h:413
MCSectionELF * getELFSection(const Twine &Section, unsigned Type, unsigned Flags)
Definition MCContext.h:550
void changeSection(MCSection *Section, uint32_t Subsection=0) override
This is called by popSection and switchSection, if the current section changes.
void reset() override
state management
This is an instance of a target assembly language printer that converts an MCInst to valid target ass...
void emitFill(const MCExpr &NumBytes, uint64_t FillValue, SMLoc Loc=SMLoc()) override
Emit Size bytes worth of the value specified by FillValue.
Streaming machine code generation interface.
Definition MCStreamer.h:222
static const MCSymbolRefExpr * create(const MCSymbol *Symbol, MCContext &Ctx, SMLoc Loc=SMLoc())
Definition MCExpr.h:214
void push_back(const T &Elt)
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:47
static Twine utohexstr(uint64_t Val)
Definition Twine.h:385
formatted_raw_ostream - A raw_ostream that wraps another one and keeps track of line and column posit...
LLVM_ABI StringRef getPauthABITagsStr(unsigned PauthABITag)
LLVM_ABI StringRef getOptionalStr(unsigned Optional)
VendorID
AArch64 build attributes vendors IDs (a.k.a subsection name)
LLVM_ABI StringRef getSubsectionTypeUnknownError()
LLVM_ABI StringRef getSubsectionOptionalUnknownError()
LLVM_ABI VendorID getVendorID(StringRef const Vendor)
LLVM_ABI StringRef getTypeStr(unsigned Type)
LLVM_ABI StringRef getFeatureAndBitsTagsStr(unsigned FeatureAndBitsTag)
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
@ SHF_AARCH64_PURECODE
Definition ELF.h:1349
@ SHT_AARCH64_MEMTAG_GLOBALS_STATIC
Definition ELF.h:1221
@ SHT_AARCH64_ATTRIBUTES
Definition ELF.h:1215
@ STO_AARCH64_VARIANT_PCS
Definition ELF.h:444
void emitInstruction(MCObjectStreamer &, const MCInst &Inst, const MCSubtargetInfo &STI)
Context & getContext() const
Definition BasicBlock.h:99
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:558
FunctionAddr VTableAddr Value
Definition InstrProf.h:137
MCStreamer * createAArch64ELFStreamer(const Triple &, MCContext &Context, std::unique_ptr< MCAsmBackend > &&TAB, std::unique_ptr< MCObjectWriter > &&OW, std::unique_ptr< MCCodeEmitter > &&Emitter)
MCTargetStreamer * createAArch64AsmTargetStreamer(MCStreamer &S, formatted_raw_ostream &OS, MCInstPrinter *InstPrint)
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
Definition STLExtras.h:2553
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1745
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
FunctionAddr VTableAddr uintptr_t uintptr_t Data
Definition InstrProf.h:221
auto lower_bound(R &&Range, T &&Value)
Provide wrappers to std::lower_bound which take ranges instead of having to pass begin/end explicitly...
Definition STLExtras.h:2051
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1916