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