1 //===- lib/MC/MCELFStreamer.cpp - ELF Object Output -----------------------===//
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 assembles .s files and emits ELF .o object files.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/MC/MCELFStreamer.h"
14 #include "llvm/ADT/SmallVector.h"
15 #include "llvm/BinaryFormat/ELF.h"
16 #include "llvm/MC/MCAsmBackend.h"
17 #include "llvm/MC/MCAsmInfo.h"
18 #include "llvm/MC/MCAssembler.h"
19 #include "llvm/MC/MCCodeEmitter.h"
20 #include "llvm/MC/MCContext.h"
21 #include "llvm/MC/MCELFObjectWriter.h"
22 #include "llvm/MC/MCExpr.h"
23 #include "llvm/MC/MCFixup.h"
24 #include "llvm/MC/MCFragment.h"
25 #include "llvm/MC/MCObjectFileInfo.h"
26 #include "llvm/MC/MCObjectWriter.h"
27 #include "llvm/MC/MCSection.h"
28 #include "llvm/MC/MCSectionELF.h"
29 #include "llvm/MC/MCStreamer.h"
30 #include "llvm/MC/MCSymbol.h"
31 #include "llvm/MC/MCSymbolELF.h"
32 #include "llvm/MC/TargetRegistry.h"
33 #include "llvm/Support/Casting.h"
34 #include "llvm/Support/ErrorHandling.h"
35 #include "llvm/Support/LEB128.h"
41 MCELFStreamer::MCELFStreamer(MCContext
&Context
,
42 std::unique_ptr
<MCAsmBackend
> TAB
,
43 std::unique_ptr
<MCObjectWriter
> OW
,
44 std::unique_ptr
<MCCodeEmitter
> Emitter
)
45 : MCObjectStreamer(Context
, std::move(TAB
), std::move(OW
),
46 std::move(Emitter
)) {}
48 ELFObjectWriter
&MCELFStreamer::getWriter() {
49 return static_cast<ELFObjectWriter
&>(getAssembler().getWriter());
52 bool MCELFStreamer::isBundleLocked() const {
53 return getCurrentSectionOnly()->isBundleLocked();
56 void MCELFStreamer::initSections(bool NoExecStack
, const MCSubtargetInfo
&STI
) {
57 MCContext
&Ctx
= getContext();
58 switchSection(Ctx
.getObjectFileInfo()->getTextSection());
59 emitCodeAlignment(Align(Ctx
.getObjectFileInfo()->getTextSectionAlignment()),
63 switchSection(Ctx
.getAsmInfo()->getNonexecutableStackSection(Ctx
));
66 void MCELFStreamer::emitLabel(MCSymbol
*S
, SMLoc Loc
) {
67 auto *Symbol
= cast
<MCSymbolELF
>(S
);
68 MCObjectStreamer::emitLabel(Symbol
, Loc
);
70 const MCSectionELF
&Section
=
71 static_cast<const MCSectionELF
&>(*getCurrentSectionOnly());
72 if (Section
.getFlags() & ELF::SHF_TLS
)
73 Symbol
->setType(ELF::STT_TLS
);
76 void MCELFStreamer::emitLabelAtPos(MCSymbol
*S
, SMLoc Loc
, MCDataFragment
&F
,
78 auto *Symbol
= cast
<MCSymbolELF
>(S
);
79 MCObjectStreamer::emitLabelAtPos(Symbol
, Loc
, F
, Offset
);
81 const MCSectionELF
&Section
=
82 static_cast<const MCSectionELF
&>(*getCurrentSectionOnly());
83 if (Section
.getFlags() & ELF::SHF_TLS
)
84 Symbol
->setType(ELF::STT_TLS
);
87 void MCELFStreamer::emitAssemblerFlag(MCAssemblerFlag Flag
) {
88 // Let the target do whatever target specific stuff it needs to do.
89 getAssembler().getBackend().handleAssemblerFlag(Flag
);
92 // If bundle alignment is used and there are any instructions in the section, it
93 // needs to be aligned to at least the bundle size.
94 static void setSectionAlignmentForBundling(const MCAssembler
&Assembler
,
96 if (Assembler
.isBundlingEnabled() && Section
->hasInstructions())
97 Section
->ensureMinAlignment(Align(Assembler
.getBundleAlignSize()));
100 void MCELFStreamer::changeSection(MCSection
*Section
, uint32_t Subsection
) {
101 MCAssembler
&Asm
= getAssembler();
102 if (auto *F
= getCurrentFragment()) {
103 if (isBundleLocked())
104 report_fatal_error("Unterminated .bundle_lock when changing a section");
106 // Ensure the previous section gets aligned if necessary.
107 setSectionAlignmentForBundling(Asm
, F
->getParent());
109 auto *SectionELF
= static_cast<const MCSectionELF
*>(Section
);
110 const MCSymbol
*Grp
= SectionELF
->getGroup();
112 Asm
.registerSymbol(*Grp
);
113 if (SectionELF
->getFlags() & ELF::SHF_GNU_RETAIN
)
114 getWriter().markGnuAbi();
116 changeSectionImpl(Section
, Subsection
);
117 Asm
.registerSymbol(*Section
->getBeginSymbol());
120 void MCELFStreamer::emitWeakReference(MCSymbol
*Alias
, const MCSymbol
*Symbol
) {
121 getAssembler().registerSymbol(*Symbol
);
122 const MCExpr
*Value
= MCSymbolRefExpr::create(
123 Symbol
, MCSymbolRefExpr::VK_WEAKREF
, getContext());
124 Alias
->setVariableValue(Value
);
127 // When GNU as encounters more than one .type declaration for an object it seems
128 // to use a mechanism similar to the one below to decide which type is actually
129 // used in the object file. The greater of T1 and T2 is selected based on the
130 // following ordering:
131 // STT_NOTYPE < STT_OBJECT < STT_FUNC < STT_GNU_IFUNC < STT_TLS < anything else
132 // If neither T1 < T2 nor T2 < T1 according to this ordering, use T2 (the user
134 static unsigned CombineSymbolTypes(unsigned T1
, unsigned T2
) {
135 for (unsigned Type
: {ELF::STT_NOTYPE
, ELF::STT_OBJECT
, ELF::STT_FUNC
,
136 ELF::STT_GNU_IFUNC
, ELF::STT_TLS
}) {
146 bool MCELFStreamer::emitSymbolAttribute(MCSymbol
*S
, MCSymbolAttr Attribute
) {
147 auto *Symbol
= cast
<MCSymbolELF
>(S
);
149 // Adding a symbol attribute always introduces the symbol, note that an
150 // important side effect of calling registerSymbol here is to register
151 // the symbol with the assembler.
152 getAssembler().registerSymbol(*Symbol
);
154 // The implementation of symbol attributes is designed to match 'as', but it
155 // leaves much to desired. It doesn't really make sense to arbitrarily add and
156 // remove flags, but 'as' allows this (in particular, see .desc).
158 // In the future it might be worth trying to make these operations more well
163 case MCSA_LazyReference
:
165 case MCSA_SymbolResolver
:
166 case MCSA_PrivateExtern
:
167 case MCSA_WeakDefinition
:
168 case MCSA_WeakDefAutoPrivate
:
170 case MCSA_IndirectSymbol
:
172 case MCSA_WeakAntiDep
:
175 case MCSA_NoDeadStrip
:
179 case MCSA_ELF_TypeGnuUniqueObject
:
180 Symbol
->setType(CombineSymbolTypes(Symbol
->getType(), ELF::STT_OBJECT
));
181 Symbol
->setBinding(ELF::STB_GNU_UNIQUE
);
182 getWriter().markGnuAbi();
186 // For `.weak x; .global x`, GNU as sets the binding to STB_WEAK while we
187 // traditionally set the binding to STB_GLOBAL. This is error-prone, so we
188 // error on such cases. Note, we also disallow changed binding from .local.
189 if (Symbol
->isBindingSet() && Symbol
->getBinding() != ELF::STB_GLOBAL
)
190 getContext().reportError(getStartTokLoc(),
192 " changed binding to STB_GLOBAL");
193 Symbol
->setBinding(ELF::STB_GLOBAL
);
196 case MCSA_WeakReference
:
198 // For `.global x; .weak x`, both MC and GNU as set the binding to STB_WEAK.
199 // We emit a warning for now but may switch to an error in the future.
200 if (Symbol
->isBindingSet() && Symbol
->getBinding() != ELF::STB_WEAK
)
201 getContext().reportWarning(
202 getStartTokLoc(), Symbol
->getName() + " changed binding to STB_WEAK");
203 Symbol
->setBinding(ELF::STB_WEAK
);
207 if (Symbol
->isBindingSet() && Symbol
->getBinding() != ELF::STB_LOCAL
)
208 getContext().reportError(getStartTokLoc(),
210 " changed binding to STB_LOCAL");
211 Symbol
->setBinding(ELF::STB_LOCAL
);
214 case MCSA_ELF_TypeFunction
:
215 Symbol
->setType(CombineSymbolTypes(Symbol
->getType(), ELF::STT_FUNC
));
218 case MCSA_ELF_TypeIndFunction
:
219 Symbol
->setType(CombineSymbolTypes(Symbol
->getType(), ELF::STT_GNU_IFUNC
));
220 getWriter().markGnuAbi();
223 case MCSA_ELF_TypeObject
:
224 Symbol
->setType(CombineSymbolTypes(Symbol
->getType(), ELF::STT_OBJECT
));
227 case MCSA_ELF_TypeTLS
:
228 Symbol
->setType(CombineSymbolTypes(Symbol
->getType(), ELF::STT_TLS
));
231 case MCSA_ELF_TypeCommon
:
232 // TODO: Emit these as a common symbol.
233 Symbol
->setType(CombineSymbolTypes(Symbol
->getType(), ELF::STT_OBJECT
));
236 case MCSA_ELF_TypeNoType
:
237 Symbol
->setType(CombineSymbolTypes(Symbol
->getType(), ELF::STT_NOTYPE
));
241 Symbol
->setVisibility(ELF::STV_PROTECTED
);
245 Symbol
->setMemtag(true);
249 Symbol
->setVisibility(ELF::STV_HIDDEN
);
253 Symbol
->setVisibility(ELF::STV_INTERNAL
);
257 llvm_unreachable("ELF doesn't support the .alt_entry attribute");
260 llvm_unreachable("ELF doesn't support the .lglobl attribute");
266 void MCELFStreamer::emitCommonSymbol(MCSymbol
*S
, uint64_t Size
,
267 Align ByteAlignment
) {
268 auto *Symbol
= cast
<MCSymbolELF
>(S
);
269 getAssembler().registerSymbol(*Symbol
);
271 if (!Symbol
->isBindingSet())
272 Symbol
->setBinding(ELF::STB_GLOBAL
);
274 Symbol
->setType(ELF::STT_OBJECT
);
276 if (Symbol
->getBinding() == ELF::STB_LOCAL
) {
277 MCSection
&Section
= *getAssembler().getContext().getELFSection(
278 ".bss", ELF::SHT_NOBITS
, ELF::SHF_WRITE
| ELF::SHF_ALLOC
);
279 MCSectionSubPair P
= getCurrentSection();
280 switchSection(&Section
);
282 emitValueToAlignment(ByteAlignment
, 0, 1, 0);
286 switchSection(P
.first
, P
.second
);
288 if (Symbol
->declareCommon(Size
, ByteAlignment
))
289 report_fatal_error(Twine("Symbol: ") + Symbol
->getName() +
290 " redeclared as different type");
293 cast
<MCSymbolELF
>(Symbol
)
294 ->setSize(MCConstantExpr::create(Size
, getContext()));
297 void MCELFStreamer::emitELFSize(MCSymbol
*Symbol
, const MCExpr
*Value
) {
298 cast
<MCSymbolELF
>(Symbol
)->setSize(Value
);
301 void MCELFStreamer::emitELFSymverDirective(const MCSymbol
*OriginalSym
,
303 bool KeepOriginalSym
) {
304 getWriter().Symvers
.push_back(ELFObjectWriter::Symver
{
305 getStartTokLoc(), OriginalSym
, Name
, KeepOriginalSym
});
308 void MCELFStreamer::emitLocalCommonSymbol(MCSymbol
*S
, uint64_t Size
,
309 Align ByteAlignment
) {
310 auto *Symbol
= cast
<MCSymbolELF
>(S
);
311 // FIXME: Should this be caught and done earlier?
312 getAssembler().registerSymbol(*Symbol
);
313 Symbol
->setBinding(ELF::STB_LOCAL
);
314 emitCommonSymbol(Symbol
, Size
, ByteAlignment
);
317 void MCELFStreamer::emitValueImpl(const MCExpr
*Value
, unsigned Size
,
319 if (isBundleLocked())
320 report_fatal_error("Emitting values inside a locked bundle is forbidden");
321 fixSymbolsInTLSFixups(Value
);
322 MCObjectStreamer::emitValueImpl(Value
, Size
, Loc
);
325 void MCELFStreamer::emitValueToAlignment(Align Alignment
, int64_t Value
,
327 unsigned MaxBytesToEmit
) {
328 if (isBundleLocked())
329 report_fatal_error("Emitting values inside a locked bundle is forbidden");
330 MCObjectStreamer::emitValueToAlignment(Alignment
, Value
, ValueSize
,
334 void MCELFStreamer::emitCGProfileEntry(const MCSymbolRefExpr
*From
,
335 const MCSymbolRefExpr
*To
,
337 getWriter().getCGProfile().push_back({From
, To
, Count
});
340 void MCELFStreamer::emitIdent(StringRef IdentString
) {
341 MCSection
*Comment
= getAssembler().getContext().getELFSection(
342 ".comment", ELF::SHT_PROGBITS
, ELF::SHF_MERGE
| ELF::SHF_STRINGS
, 1);
344 switchSection(Comment
);
349 emitBytes(IdentString
);
354 void MCELFStreamer::fixSymbolsInTLSFixups(const MCExpr
*expr
) {
355 switch (expr
->getKind()) {
357 cast
<MCTargetExpr
>(expr
)->fixELFSymbolsInTLSFixups(getAssembler());
359 case MCExpr::Constant
:
362 case MCExpr::Binary
: {
363 const MCBinaryExpr
*be
= cast
<MCBinaryExpr
>(expr
);
364 fixSymbolsInTLSFixups(be
->getLHS());
365 fixSymbolsInTLSFixups(be
->getRHS());
369 case MCExpr::SymbolRef
: {
370 const MCSymbolRefExpr
&symRef
= *cast
<MCSymbolRefExpr
>(expr
);
371 switch (symRef
.getKind()) {
374 case MCSymbolRefExpr::VK_GOTTPOFF
:
375 case MCSymbolRefExpr::VK_INDNTPOFF
:
376 case MCSymbolRefExpr::VK_NTPOFF
:
377 case MCSymbolRefExpr::VK_GOTNTPOFF
:
378 case MCSymbolRefExpr::VK_TLSCALL
:
379 case MCSymbolRefExpr::VK_TLSDESC
:
380 case MCSymbolRefExpr::VK_TLSGD
:
381 case MCSymbolRefExpr::VK_TLSLD
:
382 case MCSymbolRefExpr::VK_TLSLDM
:
383 case MCSymbolRefExpr::VK_TPOFF
:
384 case MCSymbolRefExpr::VK_TPREL
:
385 case MCSymbolRefExpr::VK_DTPOFF
:
386 case MCSymbolRefExpr::VK_DTPREL
:
387 case MCSymbolRefExpr::VK_PPC_DTPMOD
:
388 case MCSymbolRefExpr::VK_PPC_TPREL_LO
:
389 case MCSymbolRefExpr::VK_PPC_TPREL_HI
:
390 case MCSymbolRefExpr::VK_PPC_TPREL_HA
:
391 case MCSymbolRefExpr::VK_PPC_TPREL_HIGH
:
392 case MCSymbolRefExpr::VK_PPC_TPREL_HIGHA
:
393 case MCSymbolRefExpr::VK_PPC_TPREL_HIGHER
:
394 case MCSymbolRefExpr::VK_PPC_TPREL_HIGHERA
:
395 case MCSymbolRefExpr::VK_PPC_TPREL_HIGHEST
:
396 case MCSymbolRefExpr::VK_PPC_TPREL_HIGHESTA
:
397 case MCSymbolRefExpr::VK_PPC_DTPREL_LO
:
398 case MCSymbolRefExpr::VK_PPC_DTPREL_HI
:
399 case MCSymbolRefExpr::VK_PPC_DTPREL_HA
:
400 case MCSymbolRefExpr::VK_PPC_DTPREL_HIGH
:
401 case MCSymbolRefExpr::VK_PPC_DTPREL_HIGHA
:
402 case MCSymbolRefExpr::VK_PPC_DTPREL_HIGHER
:
403 case MCSymbolRefExpr::VK_PPC_DTPREL_HIGHERA
:
404 case MCSymbolRefExpr::VK_PPC_DTPREL_HIGHEST
:
405 case MCSymbolRefExpr::VK_PPC_DTPREL_HIGHESTA
:
406 case MCSymbolRefExpr::VK_PPC_GOT_TPREL
:
407 case MCSymbolRefExpr::VK_PPC_GOT_TPREL_LO
:
408 case MCSymbolRefExpr::VK_PPC_GOT_TPREL_HI
:
409 case MCSymbolRefExpr::VK_PPC_GOT_TPREL_HA
:
410 case MCSymbolRefExpr::VK_PPC_GOT_TPREL_PCREL
:
411 case MCSymbolRefExpr::VK_PPC_GOT_DTPREL
:
412 case MCSymbolRefExpr::VK_PPC_GOT_DTPREL_LO
:
413 case MCSymbolRefExpr::VK_PPC_GOT_DTPREL_HI
:
414 case MCSymbolRefExpr::VK_PPC_GOT_DTPREL_HA
:
415 case MCSymbolRefExpr::VK_PPC_TLS
:
416 case MCSymbolRefExpr::VK_PPC_TLS_PCREL
:
417 case MCSymbolRefExpr::VK_PPC_GOT_TLSGD
:
418 case MCSymbolRefExpr::VK_PPC_GOT_TLSGD_LO
:
419 case MCSymbolRefExpr::VK_PPC_GOT_TLSGD_HI
:
420 case MCSymbolRefExpr::VK_PPC_GOT_TLSGD_HA
:
421 case MCSymbolRefExpr::VK_PPC_GOT_TLSGD_PCREL
:
422 case MCSymbolRefExpr::VK_PPC_TLSGD
:
423 case MCSymbolRefExpr::VK_PPC_GOT_TLSLD
:
424 case MCSymbolRefExpr::VK_PPC_GOT_TLSLD_LO
:
425 case MCSymbolRefExpr::VK_PPC_GOT_TLSLD_HI
:
426 case MCSymbolRefExpr::VK_PPC_GOT_TLSLD_HA
:
427 case MCSymbolRefExpr::VK_PPC_TLSLD
:
430 getAssembler().registerSymbol(symRef
.getSymbol());
431 cast
<MCSymbolELF
>(symRef
.getSymbol()).setType(ELF::STT_TLS
);
436 fixSymbolsInTLSFixups(cast
<MCUnaryExpr
>(expr
)->getSubExpr());
441 void MCELFStreamer::finalizeCGProfileEntry(const MCSymbolRefExpr
*&SRE
,
443 const MCSymbol
*S
= &SRE
->getSymbol();
444 if (S
->isTemporary()) {
445 if (!S
->isInSection()) {
446 getContext().reportError(
447 SRE
->getLoc(), Twine("Reference to undefined temporary symbol ") +
448 "`" + S
->getName() + "`");
451 S
= S
->getSection().getBeginSymbol();
453 SRE
= MCSymbolRefExpr::create(S
, MCSymbolRefExpr::VK_None
, getContext(),
456 const MCConstantExpr
*MCOffset
= MCConstantExpr::create(Offset
, getContext());
457 if (std::optional
<std::pair
<bool, std::string
>> Err
=
458 MCObjectStreamer::emitRelocDirective(
459 *MCOffset
, "BFD_RELOC_NONE", SRE
, SRE
->getLoc(),
460 *getContext().getSubtargetInfo()))
461 report_fatal_error("Relocation for CG Profile could not be created: " +
465 void MCELFStreamer::finalizeCGProfile() {
466 ELFObjectWriter
&W
= getWriter();
467 if (W
.getCGProfile().empty())
469 MCSection
*CGProfile
= getAssembler().getContext().getELFSection(
470 ".llvm.call-graph-profile", ELF::SHT_LLVM_CALL_GRAPH_PROFILE
,
471 ELF::SHF_EXCLUDE
, /*sizeof(Elf_CGProfile_Impl<>)=*/8);
473 switchSection(CGProfile
);
475 for (auto &E
: W
.getCGProfile()) {
476 finalizeCGProfileEntry(E
.From
, Offset
);
477 finalizeCGProfileEntry(E
.To
, Offset
);
478 emitIntValue(E
.Count
, sizeof(uint64_t));
479 Offset
+= sizeof(uint64_t);
484 void MCELFStreamer::emitInstToFragment(const MCInst
&Inst
,
485 const MCSubtargetInfo
&STI
) {
486 this->MCObjectStreamer::emitInstToFragment(Inst
, STI
);
487 MCRelaxableFragment
&F
= *cast
<MCRelaxableFragment
>(getCurrentFragment());
489 for (auto &Fixup
: F
.getFixups())
490 fixSymbolsInTLSFixups(Fixup
.getValue());
493 // A fragment can only have one Subtarget, and when bundling is enabled we
494 // sometimes need to use the same fragment. We give an error if there
495 // are conflicting Subtargets.
496 static void CheckBundleSubtargets(const MCSubtargetInfo
*OldSTI
,
497 const MCSubtargetInfo
*NewSTI
) {
498 if (OldSTI
&& NewSTI
&& OldSTI
!= NewSTI
)
499 report_fatal_error("A Bundle can only have one Subtarget.");
502 void MCELFStreamer::emitInstToData(const MCInst
&Inst
,
503 const MCSubtargetInfo
&STI
) {
504 MCAssembler
&Assembler
= getAssembler();
506 // There are several possibilities here:
508 // If bundling is disabled, append the encoded instruction to the current data
509 // fragment (or create a new such fragment if the current fragment is not a
510 // data fragment, or the Subtarget has changed).
512 // If bundling is enabled:
513 // - If we're not in a bundle-locked group, emit the instruction into a
514 // fragment of its own.
515 // - If we're in a bundle-locked group, append the instruction to the current
516 // data fragment because we want all the instructions in a group to get into
517 // the same fragment. Be careful not to do that for the first instruction in
518 // the group, though.
521 if (Assembler
.isBundlingEnabled()) {
522 MCSection
&Sec
= *getCurrentSectionOnly();
523 if (isBundleLocked() && !Sec
.isBundleGroupBeforeFirstInst()) {
524 // If we are bundle-locked, we re-use the current fragment.
525 // The bundle-locking directive ensures this is a new data fragment.
526 DF
= cast
<MCDataFragment
>(getCurrentFragment());
527 CheckBundleSubtargets(DF
->getSubtargetInfo(), &STI
);
529 DF
= getContext().allocFragment
<MCDataFragment
>();
532 if (Sec
.getBundleLockState() == MCSection::BundleLockedAlignToEnd
) {
533 // If this fragment is for a group marked "align_to_end", set a flag
534 // in the fragment. This can happen after the fragment has already been
535 // created if there are nested bundle_align groups and an inner one
536 // is the one marked align_to_end.
537 DF
->setAlignToBundleEnd(true);
540 // We're now emitting an instruction in a bundle group, so this flag has
542 Sec
.setBundleGroupBeforeFirstInst(false);
544 DF
= getOrCreateDataFragment(&STI
);
547 // Emit instruction directly into data fragment.
548 size_t FixupStartIndex
= DF
->getFixups().size();
549 size_t CodeOffset
= DF
->getContents().size();
550 Assembler
.getEmitter().encodeInstruction(Inst
, DF
->getContents(),
551 DF
->getFixups(), STI
);
553 auto Fixups
= MutableArrayRef(DF
->getFixups()).slice(FixupStartIndex
);
554 for (auto &Fixup
: Fixups
) {
555 Fixup
.setOffset(Fixup
.getOffset() + CodeOffset
);
556 fixSymbolsInTLSFixups(Fixup
.getValue());
559 DF
->setHasInstructions(STI
);
560 if (!Fixups
.empty() && Fixups
.back().getTargetKind() ==
561 getAssembler().getBackend().RelaxFixupKind
)
562 DF
->setLinkerRelaxable();
565 void MCELFStreamer::emitBundleAlignMode(Align Alignment
) {
566 assert(Log2(Alignment
) <= 30 && "Invalid bundle alignment");
567 MCAssembler
&Assembler
= getAssembler();
568 if (Alignment
> 1 && (Assembler
.getBundleAlignSize() == 0 ||
569 Assembler
.getBundleAlignSize() == Alignment
.value()))
570 Assembler
.setBundleAlignSize(Alignment
.value());
572 report_fatal_error(".bundle_align_mode cannot be changed once set");
575 void MCELFStreamer::emitBundleLock(bool AlignToEnd
) {
576 MCSection
&Sec
= *getCurrentSectionOnly();
578 if (!getAssembler().isBundlingEnabled())
579 report_fatal_error(".bundle_lock forbidden when bundling is disabled");
581 if (!isBundleLocked())
582 Sec
.setBundleGroupBeforeFirstInst(true);
584 Sec
.setBundleLockState(AlignToEnd
? MCSection::BundleLockedAlignToEnd
585 : MCSection::BundleLocked
);
588 void MCELFStreamer::emitBundleUnlock() {
589 MCSection
&Sec
= *getCurrentSectionOnly();
591 if (!getAssembler().isBundlingEnabled())
592 report_fatal_error(".bundle_unlock forbidden when bundling is disabled");
593 else if (!isBundleLocked())
594 report_fatal_error(".bundle_unlock without matching lock");
595 else if (Sec
.isBundleGroupBeforeFirstInst())
596 report_fatal_error("Empty bundle-locked group is forbidden");
598 Sec
.setBundleLockState(MCSection::NotBundleLocked
);
601 void MCELFStreamer::finishImpl() {
602 // Emit the .gnu attributes section if any attributes have been added.
603 if (!GNUAttributes
.empty()) {
604 MCSection
*DummyAttributeSection
= nullptr;
605 createAttributesSection("gnu", ".gnu.attributes", ELF::SHT_GNU_ATTRIBUTES
,
606 DummyAttributeSection
, GNUAttributes
);
609 // Ensure the last section gets aligned if necessary.
610 if (MCFragment
*F
= getCurrentFragment())
611 setSectionAlignmentForBundling(getAssembler(), F
->getParent());
616 this->MCObjectStreamer::finishImpl();
619 void MCELFStreamer::emitThumbFunc(MCSymbol
*Func
) {
620 llvm_unreachable("Generic ELF doesn't support this directive");
623 void MCELFStreamer::emitSymbolDesc(MCSymbol
*Symbol
, unsigned DescValue
) {
624 llvm_unreachable("ELF doesn't support this directive");
627 void MCELFStreamer::emitZerofill(MCSection
*Section
, MCSymbol
*Symbol
,
628 uint64_t Size
, Align ByteAlignment
,
630 llvm_unreachable("ELF doesn't support this directive");
633 void MCELFStreamer::emitTBSSSymbol(MCSection
*Section
, MCSymbol
*Symbol
,
634 uint64_t Size
, Align ByteAlignment
) {
635 llvm_unreachable("ELF doesn't support this directive");
638 void MCELFStreamer::setAttributeItem(unsigned Attribute
, unsigned Value
,
639 bool OverwriteExisting
) {
640 // Look for existing attribute item
641 if (AttributeItem
*Item
= getAttributeItem(Attribute
)) {
642 if (!OverwriteExisting
)
644 Item
->Type
= AttributeItem::NumericAttribute
;
645 Item
->IntValue
= Value
;
649 // Create new attribute item
650 AttributeItem Item
= {AttributeItem::NumericAttribute
, Attribute
, Value
,
651 std::string(StringRef(""))};
652 Contents
.push_back(Item
);
655 void MCELFStreamer::setAttributeItem(unsigned Attribute
, StringRef Value
,
656 bool OverwriteExisting
) {
657 // Look for existing attribute item
658 if (AttributeItem
*Item
= getAttributeItem(Attribute
)) {
659 if (!OverwriteExisting
)
661 Item
->Type
= AttributeItem::TextAttribute
;
662 Item
->StringValue
= std::string(Value
);
666 // Create new attribute item
667 AttributeItem Item
= {AttributeItem::TextAttribute
, Attribute
, 0,
669 Contents
.push_back(Item
);
672 void MCELFStreamer::setAttributeItems(unsigned Attribute
, unsigned IntValue
,
673 StringRef StringValue
,
674 bool OverwriteExisting
) {
675 // Look for existing attribute item
676 if (AttributeItem
*Item
= getAttributeItem(Attribute
)) {
677 if (!OverwriteExisting
)
679 Item
->Type
= AttributeItem::NumericAndTextAttributes
;
680 Item
->IntValue
= IntValue
;
681 Item
->StringValue
= std::string(StringValue
);
685 // Create new attribute item
686 AttributeItem Item
= {AttributeItem::NumericAndTextAttributes
, Attribute
,
687 IntValue
, std::string(StringValue
)};
688 Contents
.push_back(Item
);
691 MCELFStreamer::AttributeItem
*
692 MCELFStreamer::getAttributeItem(unsigned Attribute
) {
693 for (AttributeItem
&Item
: Contents
)
694 if (Item
.Tag
== Attribute
)
700 MCELFStreamer::calculateContentSize(SmallVector
<AttributeItem
, 64> &AttrsVec
) {
702 for (const AttributeItem
&Item
: AttrsVec
) {
704 case AttributeItem::HiddenAttribute
:
706 case AttributeItem::NumericAttribute
:
707 Result
+= getULEB128Size(Item
.Tag
);
708 Result
+= getULEB128Size(Item
.IntValue
);
710 case AttributeItem::TextAttribute
:
711 Result
+= getULEB128Size(Item
.Tag
);
712 Result
+= Item
.StringValue
.size() + 1; // string + '\0'
714 case AttributeItem::NumericAndTextAttributes
:
715 Result
+= getULEB128Size(Item
.Tag
);
716 Result
+= getULEB128Size(Item
.IntValue
);
717 Result
+= Item
.StringValue
.size() + 1; // string + '\0';
724 void MCELFStreamer::createAttributesSection(
725 StringRef Vendor
, const Twine
&Section
, unsigned Type
,
726 MCSection
*&AttributeSection
, SmallVector
<AttributeItem
, 64> &AttrsVec
) {
728 // [ <section-length> "vendor-name"
729 // [ <file-tag> <size> <attribute>*
730 // | <section-tag> <size> <section-number>* 0 <attribute>*
731 // | <symbol-tag> <size> <symbol-number>* 0 <attribute>*
735 // Switch section to AttributeSection or get/create the section.
736 if (AttributeSection
) {
737 switchSection(AttributeSection
);
739 AttributeSection
= getContext().getELFSection(Section
, Type
, 0);
740 switchSection(AttributeSection
);
746 // Vendor size + Vendor name + '\0'
747 const size_t VendorHeaderSize
= 4 + Vendor
.size() + 1;
750 const size_t TagHeaderSize
= 1 + 4;
752 const size_t ContentsSize
= calculateContentSize(AttrsVec
);
754 emitInt32(VendorHeaderSize
+ TagHeaderSize
+ ContentsSize
);
758 emitInt8(ARMBuildAttrs::File
);
759 emitInt32(TagHeaderSize
+ ContentsSize
);
761 // Size should have been accounted for already, now
762 // emit each field as its type (ULEB or String)
763 for (const AttributeItem
&Item
: AttrsVec
) {
764 emitULEB128IntValue(Item
.Tag
);
767 llvm_unreachable("Invalid attribute type");
768 case AttributeItem::NumericAttribute
:
769 emitULEB128IntValue(Item
.IntValue
);
771 case AttributeItem::TextAttribute
:
772 emitBytes(Item
.StringValue
);
775 case AttributeItem::NumericAndTextAttributes
:
776 emitULEB128IntValue(Item
.IntValue
);
777 emitBytes(Item
.StringValue
);
786 MCStreamer
*llvm::createELFStreamer(MCContext
&Context
,
787 std::unique_ptr
<MCAsmBackend
> &&MAB
,
788 std::unique_ptr
<MCObjectWriter
> &&OW
,
789 std::unique_ptr
<MCCodeEmitter
> &&CE
) {
791 new MCELFStreamer(Context
, std::move(MAB
), std::move(OW
), std::move(CE
));