Omit unused section symbols from the symbol table.
[oota-llvm.git] / lib / MC / ELFObjectWriter.cpp
1 //===- lib/MC/ELFObjectWriter.cpp - ELF File Writer -----------------------===//
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 implements ELF object file writer information.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/MC/MCELFObjectWriter.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/ADT/SmallPtrSet.h"
17 #include "llvm/ADT/SmallString.h"
18 #include "llvm/ADT/StringMap.h"
19 #include "llvm/MC/MCAsmBackend.h"
20 #include "llvm/MC/MCAsmInfo.h"
21 #include "llvm/MC/MCAsmLayout.h"
22 #include "llvm/MC/MCAssembler.h"
23 #include "llvm/MC/MCContext.h"
24 #include "llvm/MC/MCExpr.h"
25 #include "llvm/MC/MCFixupKindInfo.h"
26 #include "llvm/MC/MCObjectWriter.h"
27 #include "llvm/MC/MCSectionELF.h"
28 #include "llvm/MC/MCSymbolELF.h"
29 #include "llvm/MC/MCValue.h"
30 #include "llvm/MC/StringTableBuilder.h"
31 #include "llvm/Support/Compression.h"
32 #include "llvm/Support/Debug.h"
33 #include "llvm/Support/ELF.h"
34 #include "llvm/Support/Endian.h"
35 #include "llvm/Support/ErrorHandling.h"
36 #include <vector>
37 using namespace llvm;
38
39 #undef  DEBUG_TYPE
40 #define DEBUG_TYPE "reloc-info"
41
42 namespace {
43
44 typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy;
45
46 class ELFObjectWriter;
47
48 class SymbolTableWriter {
49   ELFObjectWriter &EWriter;
50   bool Is64Bit;
51
52   // indexes we are going to write to .symtab_shndx.
53   std::vector<uint32_t> ShndxIndexes;
54
55   // The numbel of symbols written so far.
56   unsigned NumWritten;
57
58   void createSymtabShndx();
59
60   template <typename T> void write(T Value);
61
62 public:
63   SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
64
65   void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
66                    uint8_t other, uint32_t shndx, bool Reserved);
67
68   ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; }
69 };
70
71 class ELFObjectWriter : public MCObjectWriter {
72     static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
73     static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout);
74     static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolELF &Symbol,
75                            bool Used, bool Renamed);
76
77     /// Helper struct for containing some precomputed information on symbols.
78     struct ELFSymbolData {
79       const MCSymbolELF *Symbol;
80       uint32_t SectionIndex;
81       StringRef Name;
82
83       // Support lexicographic sorting.
84       bool operator<(const ELFSymbolData &RHS) const {
85         unsigned LHSType = Symbol->getType();
86         unsigned RHSType = RHS.Symbol->getType();
87         if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
88           return false;
89         if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
90           return true;
91         if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
92           return SectionIndex < RHS.SectionIndex;
93         return Name < RHS.Name;
94       }
95     };
96
97     /// The target specific ELF writer instance.
98     std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
99
100     DenseMap<const MCSymbolELF *, const MCSymbolELF *> Renames;
101
102     llvm::DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>>
103         Relocations;
104
105     /// @}
106     /// @name Symbol Table Data
107     /// @{
108
109     StringTableBuilder StrTabBuilder;
110
111     /// @}
112
113     // This holds the symbol table index of the last local symbol.
114     unsigned LastLocalSymbolIndex;
115     // This holds the .strtab section index.
116     unsigned StringTableIndex;
117     // This holds the .symtab section index.
118     unsigned SymbolTableIndex;
119     // This holds the .symtab_shndx section index.
120     unsigned SymtabShndxSectionIndex = 0;
121
122     // Sections in the order they are to be output in the section table.
123     std::vector<const MCSectionELF *> SectionTable;
124     unsigned addToSectionTable(const MCSectionELF *Sec);
125
126     // TargetObjectWriter wrappers.
127     bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
128     bool hasRelocationAddend() const {
129       return TargetObjectWriter->hasRelocationAddend();
130     }
131     unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
132                           bool IsPCRel) const {
133       return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
134     }
135
136   public:
137     ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
138                     bool IsLittleEndian)
139         : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
140
141     void reset() override {
142       Renames.clear();
143       Relocations.clear();
144       StrTabBuilder.clear();
145       SectionTable.clear();
146       MCObjectWriter::reset();
147     }
148
149     ~ELFObjectWriter() override;
150
151     void WriteWord(uint64_t W) {
152       if (is64Bit())
153         Write64(W);
154       else
155         Write32(W);
156     }
157
158     template <typename T> void write(T Val) {
159       if (IsLittleEndian)
160         support::endian::Writer<support::little>(OS).write(Val);
161       else
162         support::endian::Writer<support::big>(OS).write(Val);
163     }
164
165     void writeHeader(const MCAssembler &Asm);
166
167     void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
168                      ELFSymbolData &MSD, const MCAsmLayout &Layout);
169
170     // Start and end offset of each section
171     typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
172         SectionOffsetsTy;
173
174     bool shouldRelocateWithSymbol(const MCAssembler &Asm,
175                                   const MCSymbolRefExpr *RefA,
176                                   const MCSymbol *Sym, uint64_t C,
177                                   unsigned Type) const;
178
179     void RecordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
180                           const MCFragment *Fragment, const MCFixup &Fixup,
181                           MCValue Target, bool &IsPCRel,
182                           uint64_t &FixedValue) override;
183
184     // Map from a signature symbol to the group section index
185     typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
186
187     /// Compute the symbol table data
188     ///
189     /// \param Asm - The assembler.
190     /// \param SectionIndexMap - Maps a section to its index.
191     /// \param RevGroupMap - Maps a signature symbol to the group section.
192     void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
193                             const SectionIndexMapTy &SectionIndexMap,
194                             const RevGroupMapTy &RevGroupMap,
195                             SectionOffsetsTy &SectionOffsets);
196
197     MCSectionELF *createRelocationSection(MCContext &Ctx,
198                                           const MCSectionELF &Sec);
199
200     const MCSectionELF *createStringTable(MCContext &Ctx);
201
202     void ExecutePostLayoutBinding(MCAssembler &Asm,
203                                   const MCAsmLayout &Layout) override;
204
205     void writeSectionHeader(const MCAssembler &Asm, const MCAsmLayout &Layout,
206                             const SectionIndexMapTy &SectionIndexMap,
207                             const SectionOffsetsTy &SectionOffsets);
208
209     void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
210                           const MCAsmLayout &Layout);
211
212     void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
213                           uint64_t Address, uint64_t Offset, uint64_t Size,
214                           uint32_t Link, uint32_t Info, uint64_t Alignment,
215                           uint64_t EntrySize);
216
217     void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
218
219     bool IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
220                                                 const MCSymbol &SymA,
221                                                 const MCFragment &FB,
222                                                 bool InSet,
223                                                 bool IsPCRel) const override;
224
225     bool isWeak(const MCSymbol &Sym) const override;
226
227     void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
228     void writeSection(const SectionIndexMapTy &SectionIndexMap,
229                       uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
230                       const MCSectionELF &Section);
231   };
232 }
233
234 unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
235   SectionTable.push_back(Sec);
236   StrTabBuilder.add(Sec->getSectionName());
237   return SectionTable.size();
238 }
239
240 void SymbolTableWriter::createSymtabShndx() {
241   if (!ShndxIndexes.empty())
242     return;
243
244   ShndxIndexes.resize(NumWritten);
245 }
246
247 template <typename T> void SymbolTableWriter::write(T Value) {
248   EWriter.write(Value);
249 }
250
251 SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
252     : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
253
254 void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
255                                     uint64_t size, uint8_t other,
256                                     uint32_t shndx, bool Reserved) {
257   bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
258
259   if (LargeIndex)
260     createSymtabShndx();
261
262   if (!ShndxIndexes.empty()) {
263     if (LargeIndex)
264       ShndxIndexes.push_back(shndx);
265     else
266       ShndxIndexes.push_back(0);
267   }
268
269   uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
270
271   if (Is64Bit) {
272     write(name);  // st_name
273     write(info);  // st_info
274     write(other); // st_other
275     write(Index); // st_shndx
276     write(value); // st_value
277     write(size);  // st_size
278   } else {
279     write(name);            // st_name
280     write(uint32_t(value)); // st_value
281     write(uint32_t(size));  // st_size
282     write(info);            // st_info
283     write(other);           // st_other
284     write(Index);           // st_shndx
285   }
286
287   ++NumWritten;
288 }
289
290 bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
291   const MCFixupKindInfo &FKI =
292     Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
293
294   return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
295 }
296
297 ELFObjectWriter::~ELFObjectWriter()
298 {}
299
300 // Emit the ELF header.
301 void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
302   // ELF Header
303   // ----------
304   //
305   // Note
306   // ----
307   // emitWord method behaves differently for ELF32 and ELF64, writing
308   // 4 bytes in the former and 8 in the latter.
309
310   WriteBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
311
312   Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
313
314   // e_ident[EI_DATA]
315   Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
316
317   Write8(ELF::EV_CURRENT);        // e_ident[EI_VERSION]
318   // e_ident[EI_OSABI]
319   Write8(TargetObjectWriter->getOSABI());
320   Write8(0);                  // e_ident[EI_ABIVERSION]
321
322   WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
323
324   Write16(ELF::ET_REL);             // e_type
325
326   Write16(TargetObjectWriter->getEMachine()); // e_machine = target
327
328   Write32(ELF::EV_CURRENT);         // e_version
329   WriteWord(0);                    // e_entry, no entry point in .o file
330   WriteWord(0);                    // e_phoff, no program header for .o
331   WriteWord(0);                     // e_shoff = sec hdr table off in bytes
332
333   // e_flags = whatever the target wants
334   Write32(Asm.getELFHeaderEFlags());
335
336   // e_ehsize = ELF header size
337   Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
338
339   Write16(0);                  // e_phentsize = prog header entry size
340   Write16(0);                  // e_phnum = # prog header entries = 0
341
342   // e_shentsize = Section header entry size
343   Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
344
345   // e_shnum     = # of section header ents
346   Write16(0);
347
348   // e_shstrndx  = Section # of '.shstrtab'
349   assert(StringTableIndex < ELF::SHN_LORESERVE);
350   Write16(StringTableIndex);
351 }
352
353 uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
354                                       const MCAsmLayout &Layout) {
355   if (Sym.isCommon() && Sym.isExternal())
356     return Sym.getCommonAlignment();
357
358   uint64_t Res;
359   if (!Layout.getSymbolOffset(Sym, Res))
360     return 0;
361
362   if (Layout.getAssembler().isThumbFunc(&Sym))
363     Res |= 1;
364
365   return Res;
366 }
367
368 void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
369                                                const MCAsmLayout &Layout) {
370   // The presence of symbol versions causes undefined symbols and
371   // versions declared with @@@ to be renamed.
372
373   for (const MCSymbol &A : Asm.symbols()) {
374     const auto &Alias = cast<MCSymbolELF>(A);
375     // Not an alias.
376     if (!Alias.isVariable())
377       continue;
378     auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
379     if (!Ref)
380       continue;
381     const auto &Symbol = cast<MCSymbolELF>(Ref->getSymbol());
382
383     StringRef AliasName = Alias.getName();
384     size_t Pos = AliasName.find('@');
385     if (Pos == StringRef::npos)
386       continue;
387
388     // Aliases defined with .symvar copy the binding from the symbol they alias.
389     // This is the first place we are able to copy this information.
390     Alias.setExternal(Symbol.isExternal());
391     Alias.setBinding(Symbol.getBinding());
392
393     StringRef Rest = AliasName.substr(Pos);
394     if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
395       continue;
396
397     // FIXME: produce a better error message.
398     if (Symbol.isUndefined() && Rest.startswith("@@") &&
399         !Rest.startswith("@@@"))
400       report_fatal_error("A @@ version cannot be undefined");
401
402     Renames.insert(std::make_pair(&Symbol, &Alias));
403   }
404 }
405
406 static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
407   uint8_t Type = newType;
408
409   // Propagation rules:
410   // IFUNC > FUNC > OBJECT > NOTYPE
411   // TLS_OBJECT > OBJECT > NOTYPE
412   //
413   // dont let the new type degrade the old type
414   switch (origType) {
415   default:
416     break;
417   case ELF::STT_GNU_IFUNC:
418     if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
419         Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
420       Type = ELF::STT_GNU_IFUNC;
421     break;
422   case ELF::STT_FUNC:
423     if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
424         Type == ELF::STT_TLS)
425       Type = ELF::STT_FUNC;
426     break;
427   case ELF::STT_OBJECT:
428     if (Type == ELF::STT_NOTYPE)
429       Type = ELF::STT_OBJECT;
430     break;
431   case ELF::STT_TLS:
432     if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
433         Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
434       Type = ELF::STT_TLS;
435     break;
436   }
437
438   return Type;
439 }
440
441 void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
442                                   uint32_t StringIndex, ELFSymbolData &MSD,
443                                   const MCAsmLayout &Layout) {
444   const auto &Symbol = cast<MCSymbolELF>(*MSD.Symbol);
445   assert((!Symbol.getFragment() ||
446           (Symbol.getFragment()->getParent() == &Symbol.getSection())) &&
447          "The symbol's section doesn't match the fragment's symbol");
448   const MCSymbolELF *Base =
449       cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol));
450
451   // This has to be in sync with when computeSymbolTable uses SHN_ABS or
452   // SHN_COMMON.
453   bool IsReserved = !Base || Symbol.isCommon();
454
455   // Binding and Type share the same byte as upper and lower nibbles
456   uint8_t Binding = Symbol.getBinding();
457   uint8_t Type = Symbol.getType();
458   if (Base) {
459     Type = mergeTypeForSet(Type, Base->getType());
460   }
461   uint8_t Info = (Binding << 4) | Type;
462
463   // Other and Visibility share the same byte with Visibility using the lower
464   // 2 bits
465   uint8_t Visibility = Symbol.getVisibility();
466   uint8_t Other = Symbol.getOther() | Visibility;
467
468   uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
469   uint64_t Size = 0;
470
471   const MCExpr *ESize = MSD.Symbol->getSize();
472   if (!ESize && Base)
473     ESize = Base->getSize();
474
475   if (ESize) {
476     int64_t Res;
477     if (!ESize->evaluateKnownAbsolute(Res, Layout))
478       report_fatal_error("Size expression must be absolute.");
479     Size = Res;
480   }
481
482   // Write out the symbol table entry
483   Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
484                      IsReserved);
485 }
486
487 // It is always valid to create a relocation with a symbol. It is preferable
488 // to use a relocation with a section if that is possible. Using the section
489 // allows us to omit some local symbols from the symbol table.
490 bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
491                                                const MCSymbolRefExpr *RefA,
492                                                const MCSymbol *S, uint64_t C,
493                                                unsigned Type) const {
494   const auto *Sym = cast_or_null<MCSymbolELF>(S);
495   // A PCRel relocation to an absolute value has no symbol (or section). We
496   // represent that with a relocation to a null section.
497   if (!RefA)
498     return false;
499
500   MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
501   switch (Kind) {
502   default:
503     break;
504   // The .odp creation emits a relocation against the symbol ".TOC." which
505   // create a R_PPC64_TOC relocation. However the relocation symbol name
506   // in final object creation should be NULL, since the symbol does not
507   // really exist, it is just the reference to TOC base for the current
508   // object file. Since the symbol is undefined, returning false results
509   // in a relocation with a null section which is the desired result.
510   case MCSymbolRefExpr::VK_PPC_TOCBASE:
511     return false;
512
513   // These VariantKind cause the relocation to refer to something other than
514   // the symbol itself, like a linker generated table. Since the address of
515   // symbol is not relevant, we cannot replace the symbol with the
516   // section and patch the difference in the addend.
517   case MCSymbolRefExpr::VK_GOT:
518   case MCSymbolRefExpr::VK_PLT:
519   case MCSymbolRefExpr::VK_GOTPCREL:
520   case MCSymbolRefExpr::VK_Mips_GOT:
521   case MCSymbolRefExpr::VK_PPC_GOT_LO:
522   case MCSymbolRefExpr::VK_PPC_GOT_HI:
523   case MCSymbolRefExpr::VK_PPC_GOT_HA:
524     return true;
525   }
526
527   // An undefined symbol is not in any section, so the relocation has to point
528   // to the symbol itself.
529   assert(Sym && "Expected a symbol");
530   if (Sym->isUndefined())
531     return true;
532
533   unsigned Binding = Sym->getBinding();
534   switch(Binding) {
535   default:
536     llvm_unreachable("Invalid Binding");
537   case ELF::STB_LOCAL:
538     break;
539   case ELF::STB_WEAK:
540     // If the symbol is weak, it might be overridden by a symbol in another
541     // file. The relocation has to point to the symbol so that the linker
542     // can update it.
543     return true;
544   case ELF::STB_GLOBAL:
545     // Global ELF symbols can be preempted by the dynamic linker. The relocation
546     // has to point to the symbol for a reason analogous to the STB_WEAK case.
547     return true;
548   }
549
550   // If a relocation points to a mergeable section, we have to be careful.
551   // If the offset is zero, a relocation with the section will encode the
552   // same information. With a non-zero offset, the situation is different.
553   // For example, a relocation can point 42 bytes past the end of a string.
554   // If we change such a relocation to use the section, the linker would think
555   // that it pointed to another string and subtracting 42 at runtime will
556   // produce the wrong value.
557   auto &Sec = cast<MCSectionELF>(Sym->getSection());
558   unsigned Flags = Sec.getFlags();
559   if (Flags & ELF::SHF_MERGE) {
560     if (C != 0)
561       return true;
562
563     // It looks like gold has a bug (http://sourceware.org/PR16794) and can
564     // only handle section relocations to mergeable sections if using RELA.
565     if (!hasRelocationAddend())
566       return true;
567   }
568
569   // Most TLS relocations use a got, so they need the symbol. Even those that
570   // are just an offset (@tpoff), require a symbol in gold versions before
571   // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
572   // http://sourceware.org/PR16773.
573   if (Flags & ELF::SHF_TLS)
574     return true;
575
576   // If the symbol is a thumb function the final relocation must set the lowest
577   // bit. With a symbol that is done by just having the symbol have that bit
578   // set, so we would lose the bit if we relocated with the section.
579   // FIXME: We could use the section but add the bit to the relocation value.
580   if (Asm.isThumbFunc(Sym))
581     return true;
582
583   if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type))
584     return true;
585   return false;
586 }
587
588 // True if the assembler knows nothing about the final value of the symbol.
589 // This doesn't cover the comdat issues, since in those cases the assembler
590 // can at least know that all symbols in the section will move together.
591 static bool isWeak(const MCSymbolELF &Sym) {
592   if (Sym.getType() == ELF::STT_GNU_IFUNC)
593     return true;
594
595   switch (Sym.getBinding()) {
596   default:
597     llvm_unreachable("Unknown binding");
598   case ELF::STB_LOCAL:
599     return false;
600   case ELF::STB_GLOBAL:
601     return false;
602   case ELF::STB_WEAK:
603   case ELF::STB_GNU_UNIQUE:
604     return true;
605   }
606 }
607
608 void ELFObjectWriter::RecordRelocation(MCAssembler &Asm,
609                                        const MCAsmLayout &Layout,
610                                        const MCFragment *Fragment,
611                                        const MCFixup &Fixup, MCValue Target,
612                                        bool &IsPCRel, uint64_t &FixedValue) {
613   const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
614   uint64_t C = Target.getConstant();
615   uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
616
617   if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
618     assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
619            "Should not have constructed this");
620
621     // Let A, B and C being the components of Target and R be the location of
622     // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
623     // If it is pcrel, we want to compute (A - B + C - R).
624
625     // In general, ELF has no relocations for -B. It can only represent (A + C)
626     // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
627     // replace B to implement it: (A - R - K + C)
628     if (IsPCRel)
629       Asm.getContext().reportFatalError(
630           Fixup.getLoc(),
631           "No relocation available to represent this relative expression");
632
633     const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol());
634
635     if (SymB.isUndefined())
636       Asm.getContext().reportFatalError(
637           Fixup.getLoc(),
638           Twine("symbol '") + SymB.getName() +
639               "' can not be undefined in a subtraction expression");
640
641     assert(!SymB.isAbsolute() && "Should have been folded");
642     const MCSection &SecB = SymB.getSection();
643     if (&SecB != &FixupSection)
644       Asm.getContext().reportFatalError(
645           Fixup.getLoc(), "Cannot represent a difference across sections");
646
647     if (::isWeak(SymB))
648       Asm.getContext().reportFatalError(
649           Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
650
651     uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
652     uint64_t K = SymBOffset - FixupOffset;
653     IsPCRel = true;
654     C -= K;
655   }
656
657   // We either rejected the fixup or folded B into C at this point.
658   const MCSymbolRefExpr *RefA = Target.getSymA();
659   const auto *SymA = RefA ? cast<MCSymbolELF>(&RefA->getSymbol()) : nullptr;
660
661   bool ViaWeakRef = false;
662   if (SymA && SymA->isVariable()) {
663     const MCExpr *Expr = SymA->getVariableValue();
664     if (const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr)) {
665       if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF) {
666         SymA = cast<MCSymbolELF>(&Inner->getSymbol());
667         ViaWeakRef = true;
668       }
669     }
670   }
671
672   unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
673   bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
674   if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
675     C += Layout.getSymbolOffset(*SymA);
676
677   uint64_t Addend = 0;
678   if (hasRelocationAddend()) {
679     Addend = C;
680     C = 0;
681   }
682
683   FixedValue = C;
684
685   if (!RelocateWithSymbol) {
686     const MCSection *SecA =
687         (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
688     auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
689     const auto *SectionSymbol =
690         ELFSec ? cast<MCSymbolELF>(ELFSec->getBeginSymbol()) : nullptr;
691     if (SectionSymbol)
692       SectionSymbol->setUsedInReloc();
693     ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
694     Relocations[&FixupSection].push_back(Rec);
695     return;
696   }
697
698   if (SymA) {
699     if (const MCSymbolELF *R = Renames.lookup(SymA))
700       SymA = R;
701
702     if (ViaWeakRef)
703       SymA->setIsWeakrefUsedInReloc();
704     else
705       SymA->setUsedInReloc();
706   }
707   ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
708   Relocations[&FixupSection].push_back(Rec);
709   return;
710 }
711
712 bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
713                                  const MCSymbolELF &Symbol, bool Used,
714                                  bool Renamed) {
715   if (Symbol.isVariable()) {
716     const MCExpr *Expr = Symbol.getVariableValue();
717     if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
718       if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
719         return false;
720     }
721   }
722
723   if (Used)
724     return true;
725
726   if (Renamed)
727     return false;
728
729   if (Symbol.isVariable() && Symbol.isUndefined()) {
730     // FIXME: this is here just to diagnose the case of a var = commmon_sym.
731     Layout.getBaseSymbol(Symbol);
732     return false;
733   }
734
735   if (Symbol.isUndefined() && !Symbol.isBindingSet())
736     return false;
737
738   if (Symbol.isTemporary())
739     return false;
740
741   if (Symbol.getType() == ELF::STT_SECTION)
742     return false;
743
744   return true;
745 }
746
747 void ELFObjectWriter::computeSymbolTable(
748     MCAssembler &Asm, const MCAsmLayout &Layout,
749     const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
750     SectionOffsetsTy &SectionOffsets) {
751   MCContext &Ctx = Asm.getContext();
752   SymbolTableWriter Writer(*this, is64Bit());
753
754   // Symbol table
755   unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
756   MCSectionELF *SymtabSection =
757       Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
758   SymtabSection->setAlignment(is64Bit() ? 8 : 4);
759   SymbolTableIndex = addToSectionTable(SymtabSection);
760
761   uint64_t Padding =
762       OffsetToAlignment(OS.tell(), SymtabSection->getAlignment());
763   WriteZeros(Padding);
764
765   uint64_t SecStart = OS.tell();
766
767   // The first entry is the undefined symbol entry.
768   Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
769
770   std::vector<ELFSymbolData> LocalSymbolData;
771   std::vector<ELFSymbolData> ExternalSymbolData;
772
773   // Add the data for the symbols.
774   bool HasLargeSectionIndex = false;
775   for (const MCSymbol &S : Asm.symbols()) {
776     const auto &Symbol = cast<MCSymbolELF>(S);
777     bool Used = Symbol.isUsedInReloc();
778     bool WeakrefUsed = Symbol.isWeakrefUsedInReloc();
779     bool isSignature = Symbol.isSignature();
780
781     if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
782                     Renames.count(&Symbol)))
783       continue;
784
785     ELFSymbolData MSD;
786     MSD.Symbol = cast<MCSymbolELF>(&Symbol);
787
788     bool Local = Symbol.getBinding() == ELF::STB_LOCAL;
789     if (Symbol.isAbsolute()) {
790       MSD.SectionIndex = ELF::SHN_ABS;
791     } else if (Symbol.isCommon()) {
792       assert(!Local);
793       MSD.SectionIndex = ELF::SHN_COMMON;
794     } else if (Symbol.isUndefined()) {
795       if (isSignature && !Used) {
796         MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
797         if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
798           HasLargeSectionIndex = true;
799       } else {
800         MSD.SectionIndex = ELF::SHN_UNDEF;
801       }
802     } else {
803       const MCSectionELF &Section =
804           static_cast<const MCSectionELF &>(Symbol.getSection());
805       MSD.SectionIndex = SectionIndexMap.lookup(&Section);
806       assert(MSD.SectionIndex && "Invalid section index!");
807       if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
808         HasLargeSectionIndex = true;
809     }
810
811     // The @@@ in symbol version is replaced with @ in undefined symbols and @@
812     // in defined ones.
813     //
814     // FIXME: All name handling should be done before we get to the writer,
815     // including dealing with GNU-style version suffixes.  Fixing this isn't
816     // trivial.
817     //
818     // We thus have to be careful to not perform the symbol version replacement
819     // blindly:
820     //
821     // The ELF format is used on Windows by the MCJIT engine.  Thus, on
822     // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
823     // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
824     // C++ name mangling can legally have "@@@" as a sub-string. In that case,
825     // the EFLObjectWriter should not interpret the "@@@" sub-string as
826     // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
827     // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
828     // "__imp_?" or "__imp_@?".
829     //
830     // It would have been interesting to perform the MS mangling prefix check
831     // only when the target triple is of the form *-pc-windows-elf. But, it
832     // seems that this information is not easily accessible from the
833     // ELFObjectWriter.
834     StringRef Name = Symbol.getName();
835     if (!Name.startswith("?") && !Name.startswith("@?") &&
836         !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
837       // This symbol isn't following the MSVC C++ name mangling convention. We
838       // can thus safely interpret the @@@ in symbol names as specifying symbol
839       // versioning.
840       SmallString<32> Buf;
841       size_t Pos = Name.find("@@@");
842       if (Pos != StringRef::npos) {
843         Buf += Name.substr(0, Pos);
844         unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
845         Buf += Name.substr(Pos + Skip);
846         Name = Buf;
847       }
848     }
849
850     // Sections have their own string table
851     if (Symbol.getType() != ELF::STT_SECTION)
852       MSD.Name = StrTabBuilder.add(Name);
853
854     if (Local)
855       LocalSymbolData.push_back(MSD);
856     else
857       ExternalSymbolData.push_back(MSD);
858   }
859
860   if (HasLargeSectionIndex) {
861     MCSectionELF *SymtabShndxSection =
862         Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
863     SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
864     SymtabShndxSection->setAlignment(4);
865   }
866
867   ArrayRef<std::string> FileNames = Asm.getFileNames();
868   for (const std::string &Name : FileNames)
869     StrTabBuilder.add(Name);
870
871   StrTabBuilder.finalize(StringTableBuilder::ELF);
872
873   for (const std::string &Name : FileNames)
874     Writer.writeSymbol(StrTabBuilder.getOffset(Name),
875                        ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
876                        ELF::SHN_ABS, true);
877
878   // Symbols are required to be in lexicographic order.
879   array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
880   array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
881
882   // Set the symbol indices. Local symbols must come before all other
883   // symbols with non-local bindings.
884   unsigned Index = FileNames.size() + 1;
885
886   for (ELFSymbolData &MSD : LocalSymbolData) {
887     unsigned StringIndex = MSD.Symbol->getType() == ELF::STT_SECTION
888                                ? 0
889                                : StrTabBuilder.getOffset(MSD.Name);
890     MSD.Symbol->setIndex(Index++);
891     writeSymbol(Writer, StringIndex, MSD, Layout);
892   }
893
894   // Write the symbol table entries.
895   LastLocalSymbolIndex = Index;
896
897   for (ELFSymbolData &MSD : ExternalSymbolData) {
898     unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
899     MSD.Symbol->setIndex(Index++);
900     writeSymbol(Writer, StringIndex, MSD, Layout);
901     assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL);
902   }
903
904   uint64_t SecEnd = OS.tell();
905   SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
906
907   ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
908   if (ShndxIndexes.empty()) {
909     assert(SymtabShndxSectionIndex == 0);
910     return;
911   }
912   assert(SymtabShndxSectionIndex != 0);
913
914   SecStart = OS.tell();
915   const MCSectionELF *SymtabShndxSection =
916       SectionTable[SymtabShndxSectionIndex - 1];
917   for (uint32_t Index : ShndxIndexes)
918     write(Index);
919   SecEnd = OS.tell();
920   SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
921 }
922
923 MCSectionELF *
924 ELFObjectWriter::createRelocationSection(MCContext &Ctx,
925                                          const MCSectionELF &Sec) {
926   if (Relocations[&Sec].empty())
927     return nullptr;
928
929   const StringRef SectionName = Sec.getSectionName();
930   std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
931   RelaSectionName += SectionName;
932
933   unsigned EntrySize;
934   if (hasRelocationAddend())
935     EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
936   else
937     EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
938
939   unsigned Flags = 0;
940   if (Sec.getFlags() & ELF::SHF_GROUP)
941     Flags = ELF::SHF_GROUP;
942
943   MCSectionELF *RelaSection = Ctx.createELFRelSection(
944       RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
945       Flags, EntrySize, Sec.getGroup(), &Sec);
946   RelaSection->setAlignment(is64Bit() ? 8 : 4);
947   return RelaSection;
948 }
949
950 static SmallVector<char, 128>
951 getUncompressedData(const MCAsmLayout &Layout,
952                     const MCSection::FragmentListType &Fragments) {
953   SmallVector<char, 128> UncompressedData;
954   for (const MCFragment &F : Fragments) {
955     const SmallVectorImpl<char> *Contents;
956     switch (F.getKind()) {
957     case MCFragment::FT_Data:
958       Contents = &cast<MCDataFragment>(F).getContents();
959       break;
960     case MCFragment::FT_Dwarf:
961       Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
962       break;
963     case MCFragment::FT_DwarfFrame:
964       Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
965       break;
966     default:
967       llvm_unreachable(
968           "Not expecting any other fragment types in a debug_* section");
969     }
970     UncompressedData.append(Contents->begin(), Contents->end());
971   }
972   return UncompressedData;
973 }
974
975 // Include the debug info compression header:
976 // "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
977 // useful for consumers to preallocate a buffer to decompress into.
978 static bool
979 prependCompressionHeader(uint64_t Size,
980                          SmallVectorImpl<char> &CompressedContents) {
981   const StringRef Magic = "ZLIB";
982   if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
983     return false;
984   if (sys::IsLittleEndianHost)
985     sys::swapByteOrder(Size);
986   CompressedContents.insert(CompressedContents.begin(),
987                             Magic.size() + sizeof(Size), 0);
988   std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
989   std::copy(reinterpret_cast<char *>(&Size),
990             reinterpret_cast<char *>(&Size + 1),
991             CompressedContents.begin() + Magic.size());
992   return true;
993 }
994
995 void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
996                                        const MCAsmLayout &Layout) {
997   MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
998   StringRef SectionName = Section.getSectionName();
999
1000   // Compressing debug_frame requires handling alignment fragments which is
1001   // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1002   // for writing to arbitrary buffers) for little benefit.
1003   if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
1004       !SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
1005     Asm.writeSectionData(&Section, Layout);
1006     return;
1007   }
1008
1009   // Gather the uncompressed data from all the fragments.
1010   const MCSection::FragmentListType &Fragments = Section.getFragmentList();
1011   SmallVector<char, 128> UncompressedData =
1012       getUncompressedData(Layout, Fragments);
1013
1014   SmallVector<char, 128> CompressedContents;
1015   zlib::Status Success = zlib::compress(
1016       StringRef(UncompressedData.data(), UncompressedData.size()),
1017       CompressedContents);
1018   if (Success != zlib::StatusOK) {
1019     Asm.writeSectionData(&Section, Layout);
1020     return;
1021   }
1022
1023   if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
1024     Asm.writeSectionData(&Section, Layout);
1025     return;
1026   }
1027   Asm.getContext().renameELFSection(&Section,
1028                                     (".z" + SectionName.drop_front(1)).str());
1029   OS << CompressedContents;
1030 }
1031
1032 void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1033                                        uint64_t Flags, uint64_t Address,
1034                                        uint64_t Offset, uint64_t Size,
1035                                        uint32_t Link, uint32_t Info,
1036                                        uint64_t Alignment,
1037                                        uint64_t EntrySize) {
1038   Write32(Name);        // sh_name: index into string table
1039   Write32(Type);        // sh_type
1040   WriteWord(Flags);     // sh_flags
1041   WriteWord(Address);   // sh_addr
1042   WriteWord(Offset);    // sh_offset
1043   WriteWord(Size);      // sh_size
1044   Write32(Link);        // sh_link
1045   Write32(Info);        // sh_info
1046   WriteWord(Alignment); // sh_addralign
1047   WriteWord(EntrySize); // sh_entsize
1048 }
1049
1050 void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
1051                                        const MCSectionELF &Sec) {
1052   std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
1053
1054   // Sort the relocation entries. Most targets just sort by Offset, but some
1055   // (e.g., MIPS) have additional constraints.
1056   TargetObjectWriter->sortRelocs(Asm, Relocs);
1057
1058   for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
1059     const ELFRelocationEntry &Entry = Relocs[e - i - 1];
1060     unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
1061
1062     if (is64Bit()) {
1063       write(Entry.Offset);
1064       if (TargetObjectWriter->isN64()) {
1065         write(uint32_t(Index));
1066
1067         write(TargetObjectWriter->getRSsym(Entry.Type));
1068         write(TargetObjectWriter->getRType3(Entry.Type));
1069         write(TargetObjectWriter->getRType2(Entry.Type));
1070         write(TargetObjectWriter->getRType(Entry.Type));
1071       } else {
1072         struct ELF::Elf64_Rela ERE64;
1073         ERE64.setSymbolAndType(Index, Entry.Type);
1074         write(ERE64.r_info);
1075       }
1076       if (hasRelocationAddend())
1077         write(Entry.Addend);
1078     } else {
1079       write(uint32_t(Entry.Offset));
1080
1081       struct ELF::Elf32_Rela ERE32;
1082       ERE32.setSymbolAndType(Index, Entry.Type);
1083       write(ERE32.r_info);
1084
1085       if (hasRelocationAddend())
1086         write(uint32_t(Entry.Addend));
1087     }
1088   }
1089 }
1090
1091 const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
1092   const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
1093   OS << StrTabBuilder.data();
1094   return StrtabSection;
1095 }
1096
1097 void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1098                                    uint32_t GroupSymbolIndex, uint64_t Offset,
1099                                    uint64_t Size, const MCSectionELF &Section) {
1100   uint64_t sh_link = 0;
1101   uint64_t sh_info = 0;
1102
1103   switch(Section.getType()) {
1104   default:
1105     // Nothing to do.
1106     break;
1107
1108   case ELF::SHT_DYNAMIC:
1109     llvm_unreachable("SHT_DYNAMIC in a relocatable object");
1110
1111   case ELF::SHT_REL:
1112   case ELF::SHT_RELA: {
1113     sh_link = SymbolTableIndex;
1114     assert(sh_link && ".symtab not found");
1115     const MCSectionELF *InfoSection = Section.getAssociatedSection();
1116     sh_info = SectionIndexMap.lookup(InfoSection);
1117     break;
1118   }
1119
1120   case ELF::SHT_SYMTAB:
1121   case ELF::SHT_DYNSYM:
1122     sh_link = StringTableIndex;
1123     sh_info = LastLocalSymbolIndex;
1124     break;
1125
1126   case ELF::SHT_SYMTAB_SHNDX:
1127     sh_link = SymbolTableIndex;
1128     break;
1129
1130   case ELF::SHT_GROUP:
1131     sh_link = SymbolTableIndex;
1132     sh_info = GroupSymbolIndex;
1133     break;
1134   }
1135
1136   if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
1137       Section.getType() == ELF::SHT_ARM_EXIDX)
1138     sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
1139
1140   WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
1141                    Section.getType(), Section.getFlags(), 0, Offset, Size,
1142                    sh_link, sh_info, Section.getAlignment(),
1143                    Section.getEntrySize());
1144 }
1145
1146 void ELFObjectWriter::writeSectionHeader(
1147     const MCAssembler &Asm, const MCAsmLayout &Layout,
1148     const SectionIndexMapTy &SectionIndexMap,
1149     const SectionOffsetsTy &SectionOffsets) {
1150   const unsigned NumSections = SectionTable.size();
1151
1152   // Null section first.
1153   uint64_t FirstSectionSize =
1154       (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
1155   WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
1156
1157   for (const MCSectionELF *Section : SectionTable) {
1158     uint32_t GroupSymbolIndex;
1159     unsigned Type = Section->getType();
1160     if (Type != ELF::SHT_GROUP)
1161       GroupSymbolIndex = 0;
1162     else
1163       GroupSymbolIndex = Section->getGroup()->getIndex();
1164
1165     const std::pair<uint64_t, uint64_t> &Offsets =
1166         SectionOffsets.find(Section)->second;
1167     uint64_t Size;
1168     if (Type == ELF::SHT_NOBITS)
1169       Size = Layout.getSectionAddressSize(Section);
1170     else
1171       Size = Offsets.second - Offsets.first;
1172
1173     writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
1174                  *Section);
1175   }
1176 }
1177
1178 void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1179                                   const MCAsmLayout &Layout) {
1180   MCContext &Ctx = Asm.getContext();
1181   MCSectionELF *StrtabSection =
1182       Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1183   StringTableIndex = addToSectionTable(StrtabSection);
1184
1185   RevGroupMapTy RevGroupMap;
1186   SectionIndexMapTy SectionIndexMap;
1187
1188   std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
1189
1190   // Write out the ELF header ...
1191   writeHeader(Asm);
1192
1193   // ... then the sections ...
1194   SectionOffsetsTy SectionOffsets;
1195   std::vector<MCSectionELF *> Groups;
1196   std::vector<MCSectionELF *> Relocations;
1197   for (MCSection &Sec : Asm) {
1198     MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
1199
1200     uint64_t Padding = OffsetToAlignment(OS.tell(), Section.getAlignment());
1201     WriteZeros(Padding);
1202
1203     // Remember the offset into the file for this section.
1204     uint64_t SecStart = OS.tell();
1205
1206     const MCSymbolELF *SignatureSymbol = Section.getGroup();
1207     writeSectionData(Asm, Section, Layout);
1208
1209     uint64_t SecEnd = OS.tell();
1210     SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1211
1212     MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
1213
1214     if (SignatureSymbol) {
1215       Asm.registerSymbol(*SignatureSymbol);
1216       unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1217       if (!GroupIdx) {
1218         MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
1219         GroupIdx = addToSectionTable(Group);
1220         Group->setAlignment(4);
1221         Groups.push_back(Group);
1222       }
1223       GroupMembers[SignatureSymbol].push_back(&Section);
1224       if (RelSection)
1225         GroupMembers[SignatureSymbol].push_back(RelSection);
1226     }
1227
1228     SectionIndexMap[&Section] = addToSectionTable(&Section);
1229     if (RelSection) {
1230       SectionIndexMap[RelSection] = addToSectionTable(RelSection);
1231       Relocations.push_back(RelSection);
1232     }
1233   }
1234
1235   for (MCSectionELF *Group : Groups) {
1236     uint64_t Padding = OffsetToAlignment(OS.tell(), Group->getAlignment());
1237     WriteZeros(Padding);
1238
1239     // Remember the offset into the file for this section.
1240     uint64_t SecStart = OS.tell();
1241
1242     const MCSymbol *SignatureSymbol = Group->getGroup();
1243     assert(SignatureSymbol);
1244     write(uint32_t(ELF::GRP_COMDAT));
1245     for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1246       uint32_t SecIndex = SectionIndexMap.lookup(Member);
1247       write(SecIndex);
1248     }
1249
1250     uint64_t SecEnd = OS.tell();
1251     SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1252   }
1253
1254   // Compute symbol table information.
1255   computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
1256
1257   for (MCSectionELF *RelSection : Relocations) {
1258     uint64_t Padding = OffsetToAlignment(OS.tell(), RelSection->getAlignment());
1259     WriteZeros(Padding);
1260
1261     // Remember the offset into the file for this section.
1262     uint64_t SecStart = OS.tell();
1263
1264     writeRelocations(Asm, *RelSection->getAssociatedSection());
1265
1266     uint64_t SecEnd = OS.tell();
1267     SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
1268   }
1269
1270   {
1271     uint64_t SecStart = OS.tell();
1272     const MCSectionELF *Sec = createStringTable(Ctx);
1273     uint64_t SecEnd = OS.tell();
1274     SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
1275   }
1276
1277   uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
1278   uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
1279   WriteZeros(Padding);
1280
1281   const unsigned SectionHeaderOffset = OS.tell();
1282
1283   // ... then the section header table ...
1284   writeSectionHeader(Asm, Layout, SectionIndexMap, SectionOffsets);
1285
1286   uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
1287                              ? (uint16_t)ELF::SHN_UNDEF
1288                              : SectionTable.size() + 1;
1289   if (sys::IsLittleEndianHost != IsLittleEndian)
1290     sys::swapByteOrder(NumSections);
1291   unsigned NumSectionsOffset;
1292
1293   if (is64Bit()) {
1294     uint64_t Val = SectionHeaderOffset;
1295     if (sys::IsLittleEndianHost != IsLittleEndian)
1296       sys::swapByteOrder(Val);
1297     OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1298               offsetof(ELF::Elf64_Ehdr, e_shoff));
1299     NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
1300   } else {
1301     uint32_t Val = SectionHeaderOffset;
1302     if (sys::IsLittleEndianHost != IsLittleEndian)
1303       sys::swapByteOrder(Val);
1304     OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1305               offsetof(ELF::Elf32_Ehdr, e_shoff));
1306     NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
1307   }
1308   OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
1309             NumSectionsOffset);
1310 }
1311
1312 bool ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
1313     const MCAssembler &Asm, const MCSymbol &SA, const MCFragment &FB,
1314     bool InSet, bool IsPCRel) const {
1315   const auto &SymA = cast<MCSymbolELF>(SA);
1316   if (IsPCRel) {
1317     assert(!InSet);
1318     if (::isWeak(SymA))
1319       return false;
1320   }
1321   return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
1322                                                                 InSet, IsPCRel);
1323 }
1324
1325 bool ELFObjectWriter::isWeak(const MCSymbol &S) const {
1326   const auto &Sym = cast<MCSymbolELF>(S);
1327   if (::isWeak(Sym))
1328     return true;
1329
1330   // It is invalid to replace a reference to a global in a comdat
1331   // with a reference to a local since out of comdat references
1332   // to a local are forbidden.
1333   // We could try to return false for more cases, like the reference
1334   // being in the same comdat or Sym being an alias to another global,
1335   // but it is not clear if it is worth the effort.
1336   if (Sym.getBinding() != ELF::STB_GLOBAL)
1337     return false;
1338
1339   if (!Sym.isInSection())
1340     return false;
1341
1342   const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1343   return Sec.getGroup();
1344 }
1345
1346 MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
1347                                             raw_pwrite_stream &OS,
1348                                             bool IsLittleEndian) {
1349   return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
1350 }