Remove trailing whitespace. NFC ®
[oota-llvm.git] / lib / MC / MCELFStreamer.cpp
1 //===- lib/MC/MCELFStreamer.cpp - ELF Object Output -----------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file assembles .s files and emits ELF .o object files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/MC/MCELFStreamer.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/ADT/SmallPtrSet.h"
17 #include "llvm/MC/MCAsmBackend.h"
18 #include "llvm/MC/MCAsmInfo.h"
19 #include "llvm/MC/MCAssembler.h"
20 #include "llvm/MC/MCCodeEmitter.h"
21 #include "llvm/MC/MCContext.h"
22 #include "llvm/MC/MCELF.h"
23 #include "llvm/MC/MCELFSymbolFlags.h"
24 #include "llvm/MC/MCExpr.h"
25 #include "llvm/MC/MCInst.h"
26 #include "llvm/MC/MCObjectFileInfo.h"
27 #include "llvm/MC/MCObjectStreamer.h"
28 #include "llvm/MC/MCSection.h"
29 #include "llvm/MC/MCSectionELF.h"
30 #include "llvm/MC/MCSymbol.h"
31 #include "llvm/MC/MCValue.h"
32 #include "llvm/Support/Debug.h"
33 #include "llvm/Support/ELF.h"
34 #include "llvm/Support/ErrorHandling.h"
35 #include "llvm/Support/raw_ostream.h"
36
37 using namespace llvm;
38
39 MCELFStreamer::~MCELFStreamer() {
40 }
41
42 void MCELFStreamer::InitSections(bool NoExecStack) {
43   // This emulates the same behavior of GNU as. This makes it easier
44   // to compare the output as the major sections are in the same order.
45   MCContext &Ctx = getContext();
46   SwitchSection(Ctx.getObjectFileInfo()->getTextSection());
47   EmitCodeAlignment(4);
48
49   SwitchSection(Ctx.getObjectFileInfo()->getDataSection());
50   EmitCodeAlignment(4);
51
52   SwitchSection(Ctx.getObjectFileInfo()->getBSSSection());
53   EmitCodeAlignment(4);
54
55   SwitchSection(Ctx.getObjectFileInfo()->getTextSection());
56
57   if (NoExecStack)
58     SwitchSection(Ctx.getAsmInfo()->getNonexecutableStackSection(Ctx));
59 }
60
61 void MCELFStreamer::EmitLabel(MCSymbol *Symbol) {
62   assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
63
64   MCObjectStreamer::EmitLabel(Symbol);
65
66   const MCSectionELF &Section =
67     static_cast<const MCSectionELF&>(Symbol->getSection());
68   MCSymbolData &SD = getAssembler().getSymbolData(*Symbol);
69   if (Section.getFlags() & ELF::SHF_TLS)
70     MCELF::SetType(SD, ELF::STT_TLS);
71 }
72
73 void MCELFStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
74   // Let the target do whatever target specific stuff it needs to do.
75   getAssembler().getBackend().handleAssemblerFlag(Flag);
76   // Do any generic stuff we need to do.
77   switch (Flag) {
78   case MCAF_SyntaxUnified: return; // no-op here.
79   case MCAF_Code16: return; // Change parsing mode; no-op here.
80   case MCAF_Code32: return; // Change parsing mode; no-op here.
81   case MCAF_Code64: return; // Change parsing mode; no-op here.
82   case MCAF_SubsectionsViaSymbols:
83     getAssembler().setSubsectionsViaSymbols(true);
84     return;
85   }
86
87   llvm_unreachable("invalid assembler flag!");
88 }
89
90 void MCELFStreamer::ChangeSection(const MCSection *Section,
91                                   const MCExpr *Subsection) {
92   MCSectionData *CurSection = getCurrentSectionData();
93   if (CurSection && CurSection->isBundleLocked())
94     report_fatal_error("Unterminated .bundle_lock when changing a section");
95
96   MCAssembler &Asm = getAssembler();
97   auto *SectionELF = static_cast<const MCSectionELF *>(Section);
98   const MCSymbol *Grp = SectionELF->getGroup();
99   if (Grp)
100     Asm.getOrCreateSymbolData(*Grp);
101
102   this->MCObjectStreamer::ChangeSection(Section, Subsection);
103   MCSymbol *SectionSymbol = getContext().getOrCreateSectionSymbol(*SectionELF);
104   if (SectionSymbol->isUndefined()) {
105     EmitLabel(SectionSymbol);
106     MCELF::SetType(Asm.getSymbolData(*SectionSymbol), ELF::STT_SECTION);
107   }
108 }
109
110 void MCELFStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
111   getAssembler().getOrCreateSymbolData(*Symbol);
112   const MCExpr *Value = MCSymbolRefExpr::Create(
113       Symbol, MCSymbolRefExpr::VK_WEAKREF, getContext());
114   Alias->setVariableValue(Value);
115 }
116
117 // When GNU as encounters more than one .type declaration for an object it seems
118 // to use a mechanism similar to the one below to decide which type is actually
119 // used in the object file.  The greater of T1 and T2 is selected based on the
120 // following ordering:
121 //  STT_NOTYPE < STT_OBJECT < STT_FUNC < STT_GNU_IFUNC < STT_TLS < anything else
122 // If neither T1 < T2 nor T2 < T1 according to this ordering, use T2 (the user
123 // provided type).
124 static unsigned CombineSymbolTypes(unsigned T1, unsigned T2) {
125   unsigned TypeOrdering[] = {ELF::STT_NOTYPE, ELF::STT_OBJECT, ELF::STT_FUNC,
126                              ELF::STT_GNU_IFUNC, ELF::STT_TLS};
127   for (unsigned i = 0; i != array_lengthof(TypeOrdering); ++i) {
128     if (T1 == TypeOrdering[i])
129       return T2;
130     if (T2 == TypeOrdering[i])
131       return T1;
132   }
133
134   return T2;
135 }
136
137 bool MCELFStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
138                                         MCSymbolAttr Attribute) {
139   // Indirect symbols are handled differently, to match how 'as' handles
140   // them. This makes writing matching .o files easier.
141   if (Attribute == MCSA_IndirectSymbol) {
142     // Note that we intentionally cannot use the symbol data here; this is
143     // important for matching the string table that 'as' generates.
144     IndirectSymbolData ISD;
145     ISD.Symbol = Symbol;
146     ISD.SectionData = getCurrentSectionData();
147     getAssembler().getIndirectSymbols().push_back(ISD);
148     return true;
149   }
150
151   // Adding a symbol attribute always introduces the symbol, note that an
152   // important side effect of calling getOrCreateSymbolData here is to register
153   // the symbol with the assembler.
154   MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
155
156   // The implementation of symbol attributes is designed to match 'as', but it
157   // leaves much to desired. It doesn't really make sense to arbitrarily add and
158   // remove flags, but 'as' allows this (in particular, see .desc).
159   //
160   // In the future it might be worth trying to make these operations more well
161   // defined.
162   switch (Attribute) {
163   case MCSA_LazyReference:
164   case MCSA_Reference:
165   case MCSA_SymbolResolver:
166   case MCSA_PrivateExtern:
167   case MCSA_WeakDefinition:
168   case MCSA_WeakDefAutoPrivate:
169   case MCSA_Invalid:
170   case MCSA_IndirectSymbol:
171     return false;
172
173   case MCSA_NoDeadStrip:
174     // Ignore for now.
175     break;
176
177   case MCSA_ELF_TypeGnuUniqueObject:
178     MCELF::SetType(SD, CombineSymbolTypes(MCELF::GetType(SD), ELF::STT_OBJECT));
179     MCELF::SetBinding(SD, ELF::STB_GNU_UNIQUE);
180     SD.setExternal(true);
181     BindingExplicitlySet.insert(Symbol);
182     break;
183
184   case MCSA_Global:
185     MCELF::SetBinding(SD, ELF::STB_GLOBAL);
186     SD.setExternal(true);
187     BindingExplicitlySet.insert(Symbol);
188     break;
189
190   case MCSA_WeakReference:
191   case MCSA_Weak:
192     MCELF::SetBinding(SD, ELF::STB_WEAK);
193     SD.setExternal(true);
194     BindingExplicitlySet.insert(Symbol);
195     break;
196
197   case MCSA_Local:
198     MCELF::SetBinding(SD, ELF::STB_LOCAL);
199     SD.setExternal(false);
200     BindingExplicitlySet.insert(Symbol);
201     break;
202
203   case MCSA_ELF_TypeFunction:
204     MCELF::SetType(SD, CombineSymbolTypes(MCELF::GetType(SD),
205                                           ELF::STT_FUNC));
206     break;
207
208   case MCSA_ELF_TypeIndFunction:
209     MCELF::SetType(SD, CombineSymbolTypes(MCELF::GetType(SD),
210                                           ELF::STT_GNU_IFUNC));
211     break;
212
213   case MCSA_ELF_TypeObject:
214     MCELF::SetType(SD, CombineSymbolTypes(MCELF::GetType(SD),
215                                           ELF::STT_OBJECT));
216     break;
217
218   case MCSA_ELF_TypeTLS:
219     MCELF::SetType(SD, CombineSymbolTypes(MCELF::GetType(SD),
220                                           ELF::STT_TLS));
221     break;
222
223   case MCSA_ELF_TypeCommon:
224     // TODO: Emit these as a common symbol.
225     MCELF::SetType(SD, CombineSymbolTypes(MCELF::GetType(SD),
226                                           ELF::STT_OBJECT));
227     break;
228
229   case MCSA_ELF_TypeNoType:
230     MCELF::SetType(SD, CombineSymbolTypes(MCELF::GetType(SD),
231                                           ELF::STT_NOTYPE));
232     break;
233
234   case MCSA_Protected:
235     MCELF::SetVisibility(SD, ELF::STV_PROTECTED);
236     break;
237
238   case MCSA_Hidden:
239     MCELF::SetVisibility(SD, ELF::STV_HIDDEN);
240     break;
241
242   case MCSA_Internal:
243     MCELF::SetVisibility(SD, ELF::STV_INTERNAL);
244     break;
245   }
246
247   return true;
248 }
249
250 void MCELFStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
251                                        unsigned ByteAlignment) {
252   MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
253
254   if (!BindingExplicitlySet.count(Symbol)) {
255     MCELF::SetBinding(SD, ELF::STB_GLOBAL);
256     SD.setExternal(true);
257   }
258
259   MCELF::SetType(SD, ELF::STT_OBJECT);
260
261   if (MCELF::GetBinding(SD) == ELF_STB_Local) {
262     const MCSection *Section = getAssembler().getContext().getELFSection(".bss",
263                                                          ELF::SHT_NOBITS,
264                                                          ELF::SHF_WRITE |
265                                                          ELF::SHF_ALLOC,
266                                                          SectionKind::getBSS());
267
268     AssignSection(Symbol, Section);
269
270     struct LocalCommon L = {&SD, Size, ByteAlignment};
271     LocalCommons.push_back(L);
272   } else {
273     SD.setCommon(Size, ByteAlignment);
274   }
275
276   SD.setSize(MCConstantExpr::Create(Size, getContext()));
277 }
278
279 void MCELFStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
280   MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
281   SD.setSize(Value);
282 }
283
284 void MCELFStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
285                                           unsigned ByteAlignment) {
286   // FIXME: Should this be caught and done earlier?
287   MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
288   MCELF::SetBinding(SD, ELF::STB_LOCAL);
289   SD.setExternal(false);
290   BindingExplicitlySet.insert(Symbol);
291   EmitCommonSymbol(Symbol, Size, ByteAlignment);
292 }
293
294 void MCELFStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
295                                   const SMLoc &Loc) {
296   if (getCurrentSectionData()->isBundleLocked())
297     report_fatal_error("Emitting values inside a locked bundle is forbidden");
298   fixSymbolsInTLSFixups(Value);
299   MCObjectStreamer::EmitValueImpl(Value, Size, Loc);
300 }
301
302 void MCELFStreamer::EmitValueToAlignment(unsigned ByteAlignment,
303                                          int64_t Value,
304                                          unsigned ValueSize,
305                                          unsigned MaxBytesToEmit) {
306   if (getCurrentSectionData()->isBundleLocked())
307     report_fatal_error("Emitting values inside a locked bundle is forbidden");
308   MCObjectStreamer::EmitValueToAlignment(ByteAlignment, Value,
309                                          ValueSize, MaxBytesToEmit);
310 }
311
312 // Add a symbol for the file name of this module. They start after the
313 // null symbol and don't count as normal symbol, i.e. a non-STT_FILE symbol
314 // with the same name may appear.
315 void MCELFStreamer::EmitFileDirective(StringRef Filename) {
316   getAssembler().addFileName(Filename);
317 }
318
319 void MCELFStreamer::EmitIdent(StringRef IdentString) {
320   const MCSection *Comment = getAssembler().getContext().getELFSection(
321       ".comment", ELF::SHT_PROGBITS, ELF::SHF_MERGE | ELF::SHF_STRINGS,
322       SectionKind::getReadOnly(), 1, "");
323   PushSection();
324   SwitchSection(Comment);
325   if (!SeenIdent) {
326     EmitIntValue(0, 1);
327     SeenIdent = true;
328   }
329   EmitBytes(IdentString);
330   EmitIntValue(0, 1);
331   PopSection();
332 }
333
334 void MCELFStreamer::fixSymbolsInTLSFixups(const MCExpr *expr) {
335   switch (expr->getKind()) {
336   case MCExpr::Target:
337     cast<MCTargetExpr>(expr)->fixELFSymbolsInTLSFixups(getAssembler());
338     break;
339   case MCExpr::Constant:
340     break;
341
342   case MCExpr::Binary: {
343     const MCBinaryExpr *be = cast<MCBinaryExpr>(expr);
344     fixSymbolsInTLSFixups(be->getLHS());
345     fixSymbolsInTLSFixups(be->getRHS());
346     break;
347   }
348
349   case MCExpr::SymbolRef: {
350     const MCSymbolRefExpr &symRef = *cast<MCSymbolRefExpr>(expr);
351     switch (symRef.getKind()) {
352     default:
353       return;
354     case MCSymbolRefExpr::VK_GOTTPOFF:
355     case MCSymbolRefExpr::VK_INDNTPOFF:
356     case MCSymbolRefExpr::VK_NTPOFF:
357     case MCSymbolRefExpr::VK_GOTNTPOFF:
358     case MCSymbolRefExpr::VK_TLSGD:
359     case MCSymbolRefExpr::VK_TLSLD:
360     case MCSymbolRefExpr::VK_TLSLDM:
361     case MCSymbolRefExpr::VK_TPOFF:
362     case MCSymbolRefExpr::VK_DTPOFF:
363     case MCSymbolRefExpr::VK_Mips_TLSGD:
364     case MCSymbolRefExpr::VK_Mips_GOTTPREL:
365     case MCSymbolRefExpr::VK_Mips_TPREL_HI:
366     case MCSymbolRefExpr::VK_Mips_TPREL_LO:
367     case MCSymbolRefExpr::VK_PPC_DTPMOD:
368     case MCSymbolRefExpr::VK_PPC_TPREL:
369     case MCSymbolRefExpr::VK_PPC_TPREL_LO:
370     case MCSymbolRefExpr::VK_PPC_TPREL_HI:
371     case MCSymbolRefExpr::VK_PPC_TPREL_HA:
372     case MCSymbolRefExpr::VK_PPC_TPREL_HIGHER:
373     case MCSymbolRefExpr::VK_PPC_TPREL_HIGHERA:
374     case MCSymbolRefExpr::VK_PPC_TPREL_HIGHEST:
375     case MCSymbolRefExpr::VK_PPC_TPREL_HIGHESTA:
376     case MCSymbolRefExpr::VK_PPC_DTPREL:
377     case MCSymbolRefExpr::VK_PPC_DTPREL_LO:
378     case MCSymbolRefExpr::VK_PPC_DTPREL_HI:
379     case MCSymbolRefExpr::VK_PPC_DTPREL_HA:
380     case MCSymbolRefExpr::VK_PPC_DTPREL_HIGHER:
381     case MCSymbolRefExpr::VK_PPC_DTPREL_HIGHERA:
382     case MCSymbolRefExpr::VK_PPC_DTPREL_HIGHEST:
383     case MCSymbolRefExpr::VK_PPC_DTPREL_HIGHESTA:
384     case MCSymbolRefExpr::VK_PPC_GOT_TPREL:
385     case MCSymbolRefExpr::VK_PPC_GOT_TPREL_LO:
386     case MCSymbolRefExpr::VK_PPC_GOT_TPREL_HI:
387     case MCSymbolRefExpr::VK_PPC_GOT_TPREL_HA:
388     case MCSymbolRefExpr::VK_PPC_GOT_DTPREL:
389     case MCSymbolRefExpr::VK_PPC_GOT_DTPREL_LO:
390     case MCSymbolRefExpr::VK_PPC_GOT_DTPREL_HI:
391     case MCSymbolRefExpr::VK_PPC_GOT_DTPREL_HA:
392     case MCSymbolRefExpr::VK_PPC_TLS:
393     case MCSymbolRefExpr::VK_PPC_GOT_TLSGD:
394     case MCSymbolRefExpr::VK_PPC_GOT_TLSGD_LO:
395     case MCSymbolRefExpr::VK_PPC_GOT_TLSGD_HI:
396     case MCSymbolRefExpr::VK_PPC_GOT_TLSGD_HA:
397     case MCSymbolRefExpr::VK_PPC_TLSGD:
398     case MCSymbolRefExpr::VK_PPC_GOT_TLSLD:
399     case MCSymbolRefExpr::VK_PPC_GOT_TLSLD_LO:
400     case MCSymbolRefExpr::VK_PPC_GOT_TLSLD_HI:
401     case MCSymbolRefExpr::VK_PPC_GOT_TLSLD_HA:
402     case MCSymbolRefExpr::VK_PPC_TLSLD:
403       break;
404     }
405     MCSymbolData &SD = getAssembler().getOrCreateSymbolData(symRef.getSymbol());
406     MCELF::SetType(SD, ELF::STT_TLS);
407     break;
408   }
409
410   case MCExpr::Unary:
411     fixSymbolsInTLSFixups(cast<MCUnaryExpr>(expr)->getSubExpr());
412     break;
413   }
414 }
415
416 void MCELFStreamer::EmitInstToFragment(const MCInst &Inst,
417                                        const MCSubtargetInfo &STI) {
418   this->MCObjectStreamer::EmitInstToFragment(Inst, STI);
419   MCRelaxableFragment &F = *cast<MCRelaxableFragment>(getCurrentFragment());
420
421   for (unsigned i = 0, e = F.getFixups().size(); i != e; ++i)
422     fixSymbolsInTLSFixups(F.getFixups()[i].getValue());
423 }
424
425 void MCELFStreamer::EmitInstToData(const MCInst &Inst,
426                                    const MCSubtargetInfo &STI) {
427   MCAssembler &Assembler = getAssembler();
428   SmallVector<MCFixup, 4> Fixups;
429   SmallString<256> Code;
430   raw_svector_ostream VecOS(Code);
431   Assembler.getEmitter().EncodeInstruction(Inst, VecOS, Fixups, STI);
432   VecOS.flush();
433
434   for (unsigned i = 0, e = Fixups.size(); i != e; ++i)
435     fixSymbolsInTLSFixups(Fixups[i].getValue());
436
437   // There are several possibilities here:
438   //
439   // If bundling is disabled, append the encoded instruction to the current data
440   // fragment (or create a new such fragment if the current fragment is not a
441   // data fragment).
442   //
443   // If bundling is enabled:
444   // - If we're not in a bundle-locked group, emit the instruction into a
445   //   fragment of its own. If there are no fixups registered for the
446   //   instruction, emit a MCCompactEncodedInstFragment. Otherwise, emit a
447   //   MCDataFragment.
448   // - If we're in a bundle-locked group, append the instruction to the current
449   //   data fragment because we want all the instructions in a group to get into
450   //   the same fragment. Be careful not to do that for the first instruction in
451   //   the group, though.
452   MCDataFragment *DF;
453
454   if (Assembler.isBundlingEnabled()) {
455     MCSectionData *SD = getCurrentSectionData();
456     if (SD->isBundleLocked() && !SD->isBundleGroupBeforeFirstInst())
457       // If we are bundle-locked, we re-use the current fragment.
458       // The bundle-locking directive ensures this is a new data fragment.
459       DF = cast<MCDataFragment>(getCurrentFragment());
460     else if (!SD->isBundleLocked() && Fixups.size() == 0) {
461       // Optimize memory usage by emitting the instruction to a
462       // MCCompactEncodedInstFragment when not in a bundle-locked group and
463       // there are no fixups registered.
464       MCCompactEncodedInstFragment *CEIF = new MCCompactEncodedInstFragment();
465       insert(CEIF);
466       CEIF->getContents().append(Code.begin(), Code.end());
467       return;
468     } else {
469       DF = new MCDataFragment();
470       insert(DF);
471     }
472     if (SD->getBundleLockState() == MCSectionData::BundleLockedAlignToEnd) {
473       // If this fragment is for a group marked "align_to_end", set a flag
474       // in the fragment. This can happen after the fragment has already been
475       // created if there are nested bundle_align groups and an inner one
476       // is the one marked align_to_end.
477       DF->setAlignToBundleEnd(true);
478     }
479
480     // We're now emitting an instruction in a bundle group, so this flag has
481     // to be turned off.
482     SD->setBundleGroupBeforeFirstInst(false);
483   } else {
484     DF = getOrCreateDataFragment();
485   }
486
487   // Add the fixups and data.
488   for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
489     Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
490     DF->getFixups().push_back(Fixups[i]);
491   }
492   DF->setHasInstructions(true);
493   DF->getContents().append(Code.begin(), Code.end());
494 }
495
496 void MCELFStreamer::EmitBundleAlignMode(unsigned AlignPow2) {
497   assert(AlignPow2 <= 30 && "Invalid bundle alignment");
498   MCAssembler &Assembler = getAssembler();
499   if (AlignPow2 > 0 && (Assembler.getBundleAlignSize() == 0 ||
500                         Assembler.getBundleAlignSize() == 1U << AlignPow2))
501     Assembler.setBundleAlignSize(1U << AlignPow2);
502   else
503     report_fatal_error(".bundle_align_mode cannot be changed once set");
504 }
505
506 void MCELFStreamer::EmitBundleLock(bool AlignToEnd) {
507   MCSectionData *SD = getCurrentSectionData();
508
509   // Sanity checks
510   //
511   if (!getAssembler().isBundlingEnabled())
512     report_fatal_error(".bundle_lock forbidden when bundling is disabled");
513
514   if (!SD->isBundleLocked())
515     SD->setBundleGroupBeforeFirstInst(true);
516
517   SD->setBundleLockState(AlignToEnd ? MCSectionData::BundleLockedAlignToEnd :
518                                       MCSectionData::BundleLocked);
519 }
520
521 void MCELFStreamer::EmitBundleUnlock() {
522   MCSectionData *SD = getCurrentSectionData();
523
524   // Sanity checks
525   if (!getAssembler().isBundlingEnabled())
526     report_fatal_error(".bundle_unlock forbidden when bundling is disabled");
527   else if (!SD->isBundleLocked())
528     report_fatal_error(".bundle_unlock without matching lock");
529   else if (SD->isBundleGroupBeforeFirstInst())
530     report_fatal_error("Empty bundle-locked group is forbidden");
531
532   SD->setBundleLockState(MCSectionData::NotBundleLocked);
533 }
534
535 void MCELFStreamer::Flush() {
536   for (std::vector<LocalCommon>::const_iterator i = LocalCommons.begin(),
537                                                 e = LocalCommons.end();
538        i != e; ++i) {
539     MCSymbolData *SD = i->SD;
540     uint64_t Size = i->Size;
541     unsigned ByteAlignment = i->ByteAlignment;
542     const MCSymbol &Symbol = SD->getSymbol();
543     const MCSection &Section = Symbol.getSection();
544
545     MCSectionData &SectData = getAssembler().getOrCreateSectionData(Section);
546     new MCAlignFragment(ByteAlignment, 0, 1, ByteAlignment, &SectData);
547
548     MCFragment *F = new MCFillFragment(0, 0, Size, &SectData);
549     SD->setFragment(F);
550
551     // Update the maximum alignment of the section if necessary.
552     if (ByteAlignment > SectData.getAlignment())
553       SectData.setAlignment(ByteAlignment);
554   }
555
556   LocalCommons.clear();
557 }
558
559 void MCELFStreamer::FinishImpl() {
560   EmitFrames(nullptr);
561
562   Flush();
563
564   this->MCObjectStreamer::FinishImpl();
565 }
566
567 MCStreamer *llvm::createELFStreamer(MCContext &Context, MCAsmBackend &MAB,
568                                     raw_ostream &OS, MCCodeEmitter *CE,
569                                     bool RelaxAll) {
570   MCELFStreamer *S = new MCELFStreamer(Context, MAB, OS, CE);
571   if (RelaxAll)
572     S->getAssembler().setRelaxAll(true);
573   return S;
574 }
575
576 void MCELFStreamer::EmitThumbFunc(MCSymbol *Func) {
577   llvm_unreachable("Generic ELF doesn't support this directive");
578 }
579
580 void MCELFStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
581   llvm_unreachable("ELF doesn't support this directive");
582 }
583
584 void MCELFStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
585   llvm_unreachable("ELF doesn't support this directive");
586 }
587
588 void MCELFStreamer::EmitCOFFSymbolStorageClass(int StorageClass) {
589   llvm_unreachable("ELF doesn't support this directive");
590 }
591
592 void MCELFStreamer::EmitCOFFSymbolType(int Type) {
593   llvm_unreachable("ELF doesn't support this directive");
594 }
595
596 void MCELFStreamer::EndCOFFSymbolDef() {
597   llvm_unreachable("ELF doesn't support this directive");
598 }
599
600 void MCELFStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
601                                  uint64_t Size, unsigned ByteAlignment) {
602   llvm_unreachable("ELF doesn't support this directive");
603 }
604
605 void MCELFStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
606                                    uint64_t Size, unsigned ByteAlignment) {
607   llvm_unreachable("ELF doesn't support this directive");
608 }