587489c26be0d1b1658021b795656ce7e3068bb9
[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/ELFObjectWriter.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/ADT/StringMap.h"
17 #include "llvm/ADT/Twine.h"
18 #include "llvm/MC/MCAssembler.h"
19 #include "llvm/MC/MCAsmLayout.h"
20 #include "llvm/MC/MCContext.h"
21 #include "llvm/MC/MCELFSymbolFlags.h"
22 #include "llvm/MC/MCExpr.h"
23 #include "llvm/MC/MCObjectWriter.h"
24 #include "llvm/MC/MCSectionELF.h"
25 #include "llvm/MC/MCSymbol.h"
26 #include "llvm/MC/MCValue.h"
27 #include "llvm/Support/Debug.h"
28 #include "llvm/Support/ErrorHandling.h"
29 #include "llvm/Support/ELF.h"
30 #include "llvm/Target/TargetAsmBackend.h"
31
32 #include "../Target/X86/X86FixupKinds.h"
33
34 #include <vector>
35 using namespace llvm;
36
37 static unsigned GetType(const MCSymbolData &SD) {
38   uint32_t Type = (SD.getFlags() & (0xf << ELF_STT_Shift)) >> ELF_STT_Shift;
39   assert(Type == ELF::STT_NOTYPE || Type == ELF::STT_OBJECT ||
40          Type == ELF::STT_FUNC || Type == ELF::STT_SECTION ||
41          Type == ELF::STT_FILE || Type == ELF::STT_COMMON ||
42          Type == ELF::STT_TLS);
43   return Type;
44 }
45
46 namespace {
47
48   class ELFObjectWriterImpl {
49     static bool isFixupKindX86PCRel(unsigned Kind) {
50       switch (Kind) {
51       default:
52         return false;
53       case X86::reloc_pcrel_1byte:
54       case X86::reloc_pcrel_4byte:
55       case X86::reloc_riprel_4byte:
56       case X86::reloc_riprel_4byte_movq_load:
57         return true;
58       }
59     }
60
61     /*static bool isFixupKindX86RIPRel(unsigned Kind) {
62       return Kind == X86::reloc_riprel_4byte ||
63         Kind == X86::reloc_riprel_4byte_movq_load;
64     }*/
65
66
67     /// ELFSymbolData - Helper struct for containing some precomputed information
68     /// on symbols.
69     struct ELFSymbolData {
70       MCSymbolData *SymbolData;
71       uint64_t StringIndex;
72       uint32_t SectionIndex;
73
74       // Support lexicographic sorting.
75       bool operator<(const ELFSymbolData &RHS) const {
76         if (GetType(*SymbolData) == ELF::STT_FILE)
77           return true;
78         if (GetType(*RHS.SymbolData) == ELF::STT_FILE)
79           return false;
80         return SymbolData->getSymbol().getName() <
81                RHS.SymbolData->getSymbol().getName();
82       }
83     };
84
85     /// @name Relocation Data
86     /// @{
87
88     struct ELFRelocationEntry {
89       // Make these big enough for both 32-bit and 64-bit
90       uint64_t r_offset;
91       uint64_t r_info;
92       uint64_t r_addend;
93
94       // Support lexicographic sorting.
95       bool operator<(const ELFRelocationEntry &RE) const {
96         return RE.r_offset < r_offset;
97       }
98     };
99
100     llvm::DenseMap<const MCSectionData*,
101                    std::vector<ELFRelocationEntry> > Relocations;
102     DenseMap<const MCSection*, uint64_t> SectionStringTableIndex;
103
104     /// @}
105     /// @name Symbol Table Data
106     /// @{
107
108     SmallString<256> StringTable;
109     std::vector<ELFSymbolData> LocalSymbolData;
110     std::vector<ELFSymbolData> ExternalSymbolData;
111     std::vector<ELFSymbolData> UndefinedSymbolData;
112
113     /// @}
114
115     ELFObjectWriter *Writer;
116
117     raw_ostream &OS;
118
119     unsigned Is64Bit : 1;
120
121     bool HasRelocationAddend;
122
123     Triple::OSType OSType;
124
125     // This holds the symbol table index of the last local symbol.
126     unsigned LastLocalSymbolIndex;
127     // This holds the .strtab section index.
128     unsigned StringTableIndex;
129
130     unsigned ShstrtabIndex;
131
132   public:
133     ELFObjectWriterImpl(ELFObjectWriter *_Writer, bool _Is64Bit,
134                         bool _HasRelAddend, Triple::OSType _OSType)
135       : Writer(_Writer), OS(Writer->getStream()),
136         Is64Bit(_Is64Bit), HasRelocationAddend(_HasRelAddend),
137         OSType(_OSType) {
138     }
139
140     void Write8(uint8_t Value) { Writer->Write8(Value); }
141     void Write16(uint16_t Value) { Writer->Write16(Value); }
142     void Write32(uint32_t Value) { Writer->Write32(Value); }
143     //void Write64(uint64_t Value) { Writer->Write64(Value); }
144     void WriteZeros(unsigned N) { Writer->WriteZeros(N); }
145     //void WriteBytes(StringRef Str, unsigned ZeroFillSize = 0) {
146     //  Writer->WriteBytes(Str, ZeroFillSize);
147     //}
148
149     void WriteWord(uint64_t W) {
150       if (Is64Bit)
151         Writer->Write64(W);
152       else
153         Writer->Write32(W);
154     }
155
156     void String8(char *buf, uint8_t Value) {
157       buf[0] = Value;
158     }
159
160     void StringLE16(char *buf, uint16_t Value) {
161       buf[0] = char(Value >> 0);
162       buf[1] = char(Value >> 8);
163     }
164
165     void StringLE32(char *buf, uint32_t Value) {
166       StringLE16(buf, uint16_t(Value >> 0));
167       StringLE16(buf + 2, uint16_t(Value >> 16));
168     }
169
170     void StringLE64(char *buf, uint64_t Value) {
171       StringLE32(buf, uint32_t(Value >> 0));
172       StringLE32(buf + 4, uint32_t(Value >> 32));
173     }
174
175     void StringBE16(char *buf ,uint16_t Value) {
176       buf[0] = char(Value >> 8);
177       buf[1] = char(Value >> 0);
178     }
179
180     void StringBE32(char *buf, uint32_t Value) {
181       StringBE16(buf, uint16_t(Value >> 16));
182       StringBE16(buf + 2, uint16_t(Value >> 0));
183     }
184
185     void StringBE64(char *buf, uint64_t Value) {
186       StringBE32(buf, uint32_t(Value >> 32));
187       StringBE32(buf + 4, uint32_t(Value >> 0));
188     }
189
190     void String16(char *buf, uint16_t Value) {
191       if (Writer->isLittleEndian())
192         StringLE16(buf, Value);
193       else
194         StringBE16(buf, Value);
195     }
196
197     void String32(char *buf, uint32_t Value) {
198       if (Writer->isLittleEndian())
199         StringLE32(buf, Value);
200       else
201         StringBE32(buf, Value);
202     }
203
204     void String64(char *buf, uint64_t Value) {
205       if (Writer->isLittleEndian())
206         StringLE64(buf, Value);
207       else
208         StringBE64(buf, Value);
209     }
210
211     void WriteHeader(uint64_t SectionDataSize, unsigned NumberOfSections);
212
213     void WriteSymbolEntry(MCDataFragment *F, uint64_t name, uint8_t info,
214                           uint64_t value, uint64_t size,
215                           uint8_t other, uint16_t shndx);
216
217     void WriteSymbol(MCDataFragment *F, ELFSymbolData &MSD,
218                      const MCAsmLayout &Layout);
219
220     void WriteSymbolTable(MCDataFragment *F, const MCAssembler &Asm,
221                           const MCAsmLayout &Layout,
222                           unsigned NumRegularSections);
223
224     void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
225                           const MCFragment *Fragment, const MCFixup &Fixup,
226                           MCValue Target, uint64_t &FixedValue);
227
228     uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
229                                          const MCSymbol *S);
230
231     /// ComputeSymbolTable - Compute the symbol table data
232     ///
233     /// \param StringTable [out] - The string table data.
234     /// \param StringIndexMap [out] - Map from symbol names to offsets in the
235     /// string table.
236     void ComputeSymbolTable(MCAssembler &Asm);
237
238     void WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
239                          const MCSectionData &SD);
240
241     void WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout) {
242       for (MCAssembler::const_iterator it = Asm.begin(),
243              ie = Asm.end(); it != ie; ++it) {
244         WriteRelocation(Asm, Layout, *it);
245       }
246     }
247
248     void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout);
249
250     void ExecutePostLayoutBinding(MCAssembler &Asm) {
251       // Compute symbol table information.
252       ComputeSymbolTable(Asm);
253     }
254
255     void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
256                           uint64_t Address, uint64_t Offset,
257                           uint64_t Size, uint32_t Link, uint32_t Info,
258                           uint64_t Alignment, uint64_t EntrySize);
259
260     void WriteRelocationsFragment(const MCAssembler &Asm, MCDataFragment *F,
261                                   const MCSectionData *SD);
262
263     void WriteObject(const MCAssembler &Asm, const MCAsmLayout &Layout);
264   };
265
266 }
267
268 // Emit the ELF header.
269 void ELFObjectWriterImpl::WriteHeader(uint64_t SectionDataSize,
270                                       unsigned NumberOfSections) {
271   // ELF Header
272   // ----------
273   //
274   // Note
275   // ----
276   // emitWord method behaves differently for ELF32 and ELF64, writing
277   // 4 bytes in the former and 8 in the latter.
278
279   Write8(0x7f); // e_ident[EI_MAG0]
280   Write8('E');  // e_ident[EI_MAG1]
281   Write8('L');  // e_ident[EI_MAG2]
282   Write8('F');  // e_ident[EI_MAG3]
283
284   Write8(Is64Bit ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
285
286   // e_ident[EI_DATA]
287   Write8(Writer->isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
288
289   Write8(ELF::EV_CURRENT);        // e_ident[EI_VERSION]
290   // e_ident[EI_OSABI]
291   switch (OSType) {
292     case Triple::FreeBSD:  Write8(ELF::ELFOSABI_FREEBSD); break;
293     case Triple::Linux:    Write8(ELF::ELFOSABI_LINUX); break;
294     default:               Write8(ELF::ELFOSABI_NONE); break;
295   }
296   Write8(0);                  // e_ident[EI_ABIVERSION]
297
298   WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
299
300   Write16(ELF::ET_REL);             // e_type
301
302   // FIXME: Make this configurable
303   Write16(Is64Bit ? ELF::EM_X86_64 : ELF::EM_386); // e_machine = target
304
305   Write32(ELF::EV_CURRENT);         // e_version
306   WriteWord(0);                    // e_entry, no entry point in .o file
307   WriteWord(0);                    // e_phoff, no program header for .o
308   WriteWord(SectionDataSize + (Is64Bit ? sizeof(ELF::Elf64_Ehdr) :
309             sizeof(ELF::Elf32_Ehdr)));  // e_shoff = sec hdr table off in bytes
310
311   // FIXME: Make this configurable.
312   Write32(0);   // e_flags = whatever the target wants
313
314   // e_ehsize = ELF header size
315   Write16(Is64Bit ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
316
317   Write16(0);                  // e_phentsize = prog header entry size
318   Write16(0);                  // e_phnum = # prog header entries = 0
319
320   // e_shentsize = Section header entry size
321   Write16(Is64Bit ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
322
323   // e_shnum     = # of section header ents
324   Write16(NumberOfSections);
325
326   // e_shstrndx  = Section # of '.shstrtab'
327   Write16(ShstrtabIndex);
328 }
329
330 void ELFObjectWriterImpl::WriteSymbolEntry(MCDataFragment *F, uint64_t name,
331                                            uint8_t info, uint64_t value,
332                                            uint64_t size, uint8_t other,
333                                            uint16_t shndx) {
334   if (Is64Bit) {
335     char buf[8];
336
337     String32(buf, name);
338     F->getContents() += StringRef(buf, 4); // st_name
339
340     String8(buf, info);
341     F->getContents() += StringRef(buf, 1);  // st_info
342
343     String8(buf, other);
344     F->getContents() += StringRef(buf, 1); // st_other
345
346     String16(buf, shndx);
347     F->getContents() += StringRef(buf, 2); // st_shndx
348
349     String64(buf, value);
350     F->getContents() += StringRef(buf, 8); // st_value
351
352     String64(buf, size);
353     F->getContents() += StringRef(buf, 8);  // st_size
354   } else {
355     char buf[4];
356
357     String32(buf, name);
358     F->getContents() += StringRef(buf, 4);  // st_name
359
360     String32(buf, value);
361     F->getContents() += StringRef(buf, 4); // st_value
362
363     String32(buf, size);
364     F->getContents() += StringRef(buf, 4);  // st_size
365
366     String8(buf, info);
367     F->getContents() += StringRef(buf, 1);  // st_info
368
369     String8(buf, other);
370     F->getContents() += StringRef(buf, 1); // st_other
371
372     String16(buf, shndx);
373     F->getContents() += StringRef(buf, 2); // st_shndx
374   }
375 }
376
377 void ELFObjectWriterImpl::WriteSymbol(MCDataFragment *F, ELFSymbolData &MSD,
378                                       const MCAsmLayout &Layout) {
379   MCSymbolData &Data = *MSD.SymbolData;
380   uint8_t Info = (Data.getFlags() & 0xff);
381   uint8_t Other = ((Data.getFlags() & 0xf00) >> ELF_STV_Shift);
382   uint64_t Value = 0;
383   uint64_t Size = 0;
384   const MCExpr *ESize;
385
386   if (Data.isCommon() && Data.isExternal())
387     Value = Data.getCommonAlignment();
388
389   assert(!(Data.isCommon() && !Data.isExternal()));
390
391   if (!Data.isCommon() && !(Data.getFlags() & ELF_STB_Weak))
392     if (MCFragment *FF = Data.getFragment())
393       Value = Layout.getSymbolAddress(&Data) -
394               Layout.getSectionAddress(FF->getParent());
395
396   ESize = Data.getSize();
397   if (Data.getSize()) {
398     MCValue Res;
399     if (ESize->getKind() == MCExpr::Binary) {
400       const MCBinaryExpr *BE = static_cast<const MCBinaryExpr *>(ESize);
401
402       if (BE->EvaluateAsRelocatable(Res, &Layout)) {
403         MCSymbolData &A =
404           Layout.getAssembler().getSymbolData(Res.getSymA()->getSymbol());
405         MCSymbolData &B =
406           Layout.getAssembler().getSymbolData(Res.getSymB()->getSymbol());
407
408         Size = Layout.getSymbolAddress(&A) - Layout.getSymbolAddress(&B);
409       }
410     } else if (ESize->getKind() == MCExpr::Constant) {
411       Size = static_cast<const MCConstantExpr *>(ESize)->getValue();
412     } else {
413       assert(0 && "Unsupported size expression");
414     }
415   }
416
417   // Write out the symbol table entry
418   WriteSymbolEntry(F, MSD.StringIndex, Info, Value,
419                    Size, Other, MSD.SectionIndex);
420 }
421
422 void ELFObjectWriterImpl::WriteSymbolTable(MCDataFragment *F,
423                                            const MCAssembler &Asm,
424                                            const MCAsmLayout &Layout,
425                                            unsigned NumRegularSections) {
426   // The string table must be emitted first because we need the index
427   // into the string table for all the symbol names.
428   assert(StringTable.size() && "Missing string table");
429
430   // FIXME: Make sure the start of the symbol table is aligned.
431
432   // The first entry is the undefined symbol entry.
433   unsigned EntrySize = Is64Bit ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
434   F->getContents().append(EntrySize, '\x00');
435
436   // Write the symbol table entries.
437   LastLocalSymbolIndex = LocalSymbolData.size() + 1;
438   for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
439     ELFSymbolData &MSD = LocalSymbolData[i];
440     WriteSymbol(F, MSD, Layout);
441   }
442
443   // Write out a symbol table entry for each regular section.
444   unsigned Index = 1;
445   for (MCAssembler::const_iterator it = Asm.begin();
446        Index <= NumRegularSections; ++it, ++Index) {
447     const MCSectionELF &Section =
448       static_cast<const MCSectionELF&>(it->getSection());
449     // Leave out relocations so we don't have indexes within
450     // the relocations messed up
451     if (Section.getType() == ELF::SHT_RELA || Section.getType() == ELF::SHT_REL)
452       continue;
453     WriteSymbolEntry(F, 0, ELF::STT_SECTION, 0, 0, ELF::STV_DEFAULT, Index);
454     LastLocalSymbolIndex++;
455   }
456
457   for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
458     ELFSymbolData &MSD = ExternalSymbolData[i];
459     MCSymbolData &Data = *MSD.SymbolData;
460     assert((Data.getFlags() & ELF_STB_Global) &&
461            "External symbol requires STB_GLOBAL flag");
462     WriteSymbol(F, MSD, Layout);
463     if ((Data.getFlags() & (0xf << ELF_STB_Shift)) == ELF_STB_Local)
464       LastLocalSymbolIndex++;
465   }
466
467   for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
468     ELFSymbolData &MSD = UndefinedSymbolData[i];
469     MCSymbolData &Data = *MSD.SymbolData;
470     Data.setFlags(Data.getFlags() | ELF_STB_Global);
471     WriteSymbol(F, MSD, Layout);
472     if ((Data.getFlags() & (0xf << ELF_STB_Shift)) == ELF_STB_Local)
473       LastLocalSymbolIndex++;
474   }
475 }
476
477 // FIXME: this is currently X86/X86_64 only
478 void ELFObjectWriterImpl::RecordRelocation(const MCAssembler &Asm,
479                                            const MCAsmLayout &Layout,
480                                            const MCFragment *Fragment,
481                                            const MCFixup &Fixup,
482                                            MCValue Target,
483                                            uint64_t &FixedValue) {
484   int64_t Addend = 0;
485   unsigned Index = 0;
486   int64_t Value = Target.getConstant();
487
488   bool IsPCRel = isFixupKindX86PCRel(Fixup.getKind());
489   if (!Target.isAbsolute()) {
490     const MCSymbol *Symbol = &Target.getSymA()->getSymbol();
491     MCSymbolData &SD = Asm.getSymbolData(*Symbol);
492     const MCSymbolData *Base = Asm.getAtom(Layout, &SD);
493     MCFragment *F = SD.getFragment();
494
495     // Avoid relocations for cases like jumps and calls in the same file.
496     if (Symbol->isDefined() && !SD.isExternal() &&
497         IsPCRel &&
498         &Fragment->getParent()->getSection() == &Symbol->getSection()) {
499       uint64_t FixupAddr = Layout.getFragmentAddress(Fragment) + Fixup.getOffset();
500       FixedValue = Layout.getSymbolAddress(&SD) + Target.getConstant() - FixupAddr;
501       return;
502     }
503
504     if (Base) {
505       if (F && !SD.isExternal()) {
506         Index = F->getParent()->getOrdinal() + LocalSymbolData.size() + 1;
507
508         MCSectionData *FSD = F->getParent();
509         // Offset of the symbol in the section
510         Value += Layout.getSymbolAddress(&SD) - Layout.getSectionAddress(FSD);
511       } else
512         Index = getSymbolIndexInSymbolTable(Asm, Symbol);
513       if (Base != &SD)
514         Value += Layout.getSymbolAddress(&SD) - Layout.getSymbolAddress(Base);
515       Addend = Value;
516       // Compensate for the addend on i386.
517       if (Is64Bit)
518         Value = 0;
519     } else {
520       if (F) {
521         // Index of the section in .symtab against this symbol
522         // is being relocated + 2 (empty section + abs. symbols).
523         Index = F->getParent()->getOrdinal() + LocalSymbolData.size() + 1;
524
525         MCSectionData *FSD = F->getParent();
526         // Offset of the symbol in the section
527         Addend = Layout.getSymbolAddress(&SD) - Layout.getSectionAddress(FSD);
528       } else {
529         FixedValue = Value;
530         return;
531       }
532     }
533   }
534
535   FixedValue = Value;
536
537   // determine the type of the relocation
538   unsigned Type;
539   if (Is64Bit) {
540     if (IsPCRel) {
541       Type = ELF::R_X86_64_PC32;
542     } else {
543       switch ((unsigned)Fixup.getKind()) {
544       default: llvm_unreachable("invalid fixup kind!");
545       case FK_Data_8: Type = ELF::R_X86_64_64; break;
546       case X86::reloc_pcrel_4byte:
547       case FK_Data_4:
548         // check that the offset fits within a signed long
549         if (Target.getConstant() < 0) {
550           assert(isInt<32>(Target.getConstant()));
551           Type = ELF::R_X86_64_32S;
552         } else {
553           assert(isUInt<32>(Target.getConstant()));
554           Type = ELF::R_X86_64_32;
555         }
556         break;
557       case FK_Data_2: Type = ELF::R_X86_64_16; break;
558       case X86::reloc_pcrel_1byte:
559       case FK_Data_1: Type = ELF::R_X86_64_8; break;
560       }
561     }
562   } else {
563     if (IsPCRel) {
564       Type = ELF::R_386_PC32;
565     } else {
566       switch ((unsigned)Fixup.getKind()) {
567       default: llvm_unreachable("invalid fixup kind!");
568       case X86::reloc_pcrel_4byte:
569       case FK_Data_4: Type = ELF::R_386_32; break;
570       case FK_Data_2: Type = ELF::R_386_16; break;
571       case X86::reloc_pcrel_1byte:
572       case FK_Data_1: Type = ELF::R_386_8; break;
573       }
574     }
575   }
576
577   ELFRelocationEntry ERE;
578
579   if (Is64Bit) {
580     struct ELF::Elf64_Rela ERE64;
581     ERE64.setSymbolAndType(Index, Type);
582     ERE.r_info = ERE64.r_info;
583   } else {
584     struct ELF::Elf32_Rela ERE32;
585     ERE32.setSymbolAndType(Index, Type);
586     ERE.r_info = ERE32.r_info;
587   }
588
589   ERE.r_offset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
590
591   if (HasRelocationAddend)
592     ERE.r_addend = Addend;
593   else
594     ERE.r_addend = 0; // Silence compiler warning.
595
596   Relocations[Fragment->getParent()].push_back(ERE);
597 }
598
599 uint64_t
600 ELFObjectWriterImpl::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
601                                                  const MCSymbol *S) {
602   MCSymbolData &SD = Asm.getSymbolData(*S);
603
604   // Local symbol.
605   if (!SD.isExternal() && !S->isUndefined())
606     return SD.getIndex() + /* empty symbol */ 1;
607
608   // External or undefined symbol.
609   return SD.getIndex() + Asm.size() + /* empty symbol */ 1;
610 }
611
612 void ELFObjectWriterImpl::ComputeSymbolTable(MCAssembler &Asm) {
613   // Build section lookup table.
614   DenseMap<const MCSection*, uint8_t> SectionIndexMap;
615   unsigned Index = 1;
616   for (MCAssembler::iterator it = Asm.begin(),
617          ie = Asm.end(); it != ie; ++it, ++Index)
618     SectionIndexMap[&it->getSection()] = Index;
619
620   // Index 0 is always the empty string.
621   StringMap<uint64_t> StringIndexMap;
622   StringTable += '\x00';
623
624   // Add the data for local symbols.
625   for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
626          ie = Asm.symbol_end(); it != ie; ++it) {
627     const MCSymbol &Symbol = it->getSymbol();
628
629     // Ignore non-linker visible symbols.
630     if (!Asm.isSymbolLinkerVisible(Symbol))
631       continue;
632
633     if (it->isExternal() || Symbol.isUndefined())
634       continue;
635
636     uint64_t &Entry = StringIndexMap[Symbol.getName()];
637     if (!Entry) {
638       Entry = StringTable.size();
639       StringTable += Symbol.getName();
640       StringTable += '\x00';
641     }
642
643     ELFSymbolData MSD;
644     MSD.SymbolData = it;
645     MSD.StringIndex = Entry;
646
647     if (Symbol.isAbsolute()) {
648       MSD.SectionIndex = ELF::SHN_ABS;
649       LocalSymbolData.push_back(MSD);
650     } else {
651       MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
652       assert(MSD.SectionIndex && "Invalid section index!");
653       LocalSymbolData.push_back(MSD);
654     }
655   }
656
657   // Now add non-local symbols.
658   for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
659          ie = Asm.symbol_end(); it != ie; ++it) {
660     const MCSymbol &Symbol = it->getSymbol();
661
662     // Ignore non-linker visible symbols.
663     if (!Asm.isSymbolLinkerVisible(Symbol))
664       continue;
665
666     if (!it->isExternal() && !Symbol.isUndefined())
667       continue;
668
669     uint64_t &Entry = StringIndexMap[Symbol.getName()];
670     if (!Entry) {
671       Entry = StringTable.size();
672       StringTable += Symbol.getName();
673       StringTable += '\x00';
674     }
675
676     ELFSymbolData MSD;
677     MSD.SymbolData = it;
678     MSD.StringIndex = Entry;
679
680     if (it->isCommon()) {
681       MSD.SectionIndex = ELF::SHN_COMMON;
682       ExternalSymbolData.push_back(MSD);
683     } else if (Symbol.isUndefined()) {
684       MSD.SectionIndex = ELF::SHN_UNDEF;
685       // XXX: for some reason we dont Emit* this
686       it->setFlags(it->getFlags() | ELF_STB_Global);
687       UndefinedSymbolData.push_back(MSD);
688     } else if (Symbol.isAbsolute()) {
689       MSD.SectionIndex = ELF::SHN_ABS;
690       ExternalSymbolData.push_back(MSD);
691     } else {
692       MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
693       assert(MSD.SectionIndex && "Invalid section index!");
694       ExternalSymbolData.push_back(MSD);
695     }
696   }
697
698   // Symbols are required to be in lexicographic order.
699   array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
700   array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
701   array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
702
703   // Set the symbol indices. Local symbols must come before all other
704   // symbols with non-local bindings.
705   Index = 0;
706   for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
707     LocalSymbolData[i].SymbolData->setIndex(Index++);
708   for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
709     ExternalSymbolData[i].SymbolData->setIndex(Index++);
710   for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
711     UndefinedSymbolData[i].SymbolData->setIndex(Index++);
712 }
713
714 void ELFObjectWriterImpl::WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
715                                           const MCSectionData &SD) {
716   if (!Relocations[&SD].empty()) {
717     MCContext &Ctx = Asm.getContext();
718     const MCSection *RelaSection;
719     const MCSectionELF &Section =
720       static_cast<const MCSectionELF&>(SD.getSection());
721
722     const StringRef SectionName = Section.getSectionName();
723     std::string RelaSectionName = HasRelocationAddend ? ".rela" : ".rel";
724     RelaSectionName += SectionName;
725
726     unsigned EntrySize;
727     if (HasRelocationAddend)
728       EntrySize = Is64Bit ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
729     else
730       EntrySize = Is64Bit ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
731
732     RelaSection = Ctx.getELFSection(RelaSectionName, HasRelocationAddend ?
733                                     ELF::SHT_RELA : ELF::SHT_REL, 0,
734                                     SectionKind::getReadOnly(),
735                                     false, EntrySize);
736
737     MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
738     RelaSD.setAlignment(Is64Bit ? 8 : 4);
739
740     MCDataFragment *F = new MCDataFragment(&RelaSD);
741
742     WriteRelocationsFragment(Asm, F, &SD);
743
744     Asm.AddSectionToTheEnd(RelaSD, Layout);
745   }
746 }
747
748 void ELFObjectWriterImpl::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
749                                            uint64_t Flags, uint64_t Address,
750                                            uint64_t Offset, uint64_t Size,
751                                            uint32_t Link, uint32_t Info,
752                                            uint64_t Alignment,
753                                            uint64_t EntrySize) {
754   Write32(Name);        // sh_name: index into string table
755   Write32(Type);        // sh_type
756   WriteWord(Flags);     // sh_flags
757   WriteWord(Address);   // sh_addr
758   WriteWord(Offset);    // sh_offset
759   WriteWord(Size);      // sh_size
760   Write32(Link);        // sh_link
761   Write32(Info);        // sh_info
762   WriteWord(Alignment); // sh_addralign
763   WriteWord(EntrySize); // sh_entsize
764 }
765
766 void ELFObjectWriterImpl::WriteRelocationsFragment(const MCAssembler &Asm,
767                                                    MCDataFragment *F,
768                                                    const MCSectionData *SD) {
769   std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
770   // sort by the r_offset just like gnu as does
771   array_pod_sort(Relocs.begin(), Relocs.end());
772
773   for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
774     ELFRelocationEntry entry = Relocs[e - i - 1];
775
776     if (Is64Bit) {
777       char buf[8];
778
779       String64(buf, entry.r_offset);
780       F->getContents() += StringRef(buf, 8);
781
782       String64(buf, entry.r_info);
783       F->getContents() += StringRef(buf, 8);
784
785       if (HasRelocationAddend) {
786         String64(buf, entry.r_addend);
787         F->getContents() += StringRef(buf, 8);
788       }
789     } else {
790       char buf[4];
791
792       String32(buf, entry.r_offset);
793       F->getContents() += StringRef(buf, 4);
794
795       String32(buf, entry.r_info);
796       F->getContents() += StringRef(buf, 4);
797
798       if (HasRelocationAddend) {
799         String32(buf, entry.r_addend);
800         F->getContents() += StringRef(buf, 4);
801       }
802     }
803   }
804 }
805
806 void ELFObjectWriterImpl::CreateMetadataSections(MCAssembler &Asm,
807                                                  MCAsmLayout &Layout) {
808   MCContext &Ctx = Asm.getContext();
809   MCDataFragment *F;
810
811   WriteRelocations(Asm, Layout);
812
813   const MCSection *SymtabSection;
814   unsigned EntrySize = Is64Bit ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
815
816   unsigned NumRegularSections = Asm.size();
817
818   // We construct .shstrtab, .symtab and .strtab in this order to match gnu as.
819   const MCSection *ShstrtabSection;
820   ShstrtabSection = Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
821                                       SectionKind::getReadOnly(), false);
822   MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
823   ShstrtabSD.setAlignment(1);
824   ShstrtabIndex = Asm.size();
825
826   SymtabSection = Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
827                                     SectionKind::getReadOnly(),
828                                     false, EntrySize);
829   MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
830   SymtabSD.setAlignment(Is64Bit ? 8 : 4);
831
832   const MCSection *StrtabSection;
833   StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
834                                     SectionKind::getReadOnly(), false);
835   MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
836   StrtabSD.setAlignment(1);
837   StringTableIndex = Asm.size();
838
839
840   // Symbol table
841   F = new MCDataFragment(&SymtabSD);
842   WriteSymbolTable(F, Asm, Layout, NumRegularSections);
843   Asm.AddSectionToTheEnd(SymtabSD, Layout);
844
845   F = new MCDataFragment(&StrtabSD);
846   F->getContents().append(StringTable.begin(), StringTable.end());
847   Asm.AddSectionToTheEnd(StrtabSD, Layout);
848
849   F = new MCDataFragment(&ShstrtabSD);
850
851   // Section header string table.
852   //
853   // The first entry of a string table holds a null character so skip
854   // section 0.
855   uint64_t Index = 1;
856   F->getContents() += '\x00';
857
858   for (MCAssembler::const_iterator it = Asm.begin(),
859          ie = Asm.end(); it != ie; ++it) {
860     const MCSectionELF &Section =
861       static_cast<const MCSectionELF&>(it->getSection());
862     // FIXME: We could merge suffixes like in .text and .rela.text.
863
864     // Remember the index into the string table so we can write it
865     // into the sh_name field of the section header table.
866     SectionStringTableIndex[&it->getSection()] = Index;
867
868     Index += Section.getSectionName().size() + 1;
869     F->getContents() += Section.getSectionName();
870     F->getContents() += '\x00';
871   }
872
873   Asm.AddSectionToTheEnd(ShstrtabSD, Layout);
874 }
875
876 void ELFObjectWriterImpl::WriteObject(const MCAssembler &Asm,
877                                       const MCAsmLayout &Layout) {
878   CreateMetadataSections(const_cast<MCAssembler&>(Asm),
879                          const_cast<MCAsmLayout&>(Layout));
880
881   // Add 1 for the null section.
882   unsigned NumSections = Asm.size() + 1;
883   uint64_t NaturalAlignment = Is64Bit ? 8 : 4;
884   uint64_t HeaderSize = Is64Bit ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr);
885   uint64_t FileOff = HeaderSize;
886
887   for (MCAssembler::const_iterator it = Asm.begin(),
888          ie = Asm.end(); it != ie; ++it) {
889     const MCSectionData &SD = *it;
890
891     FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
892
893     // Get the size of the section in the output file (including padding).
894     uint64_t Size = Layout.getSectionFileSize(&SD);
895
896     FileOff += Size;
897   }
898
899   FileOff = RoundUpToAlignment(FileOff, NaturalAlignment);
900
901   // Write out the ELF header ...
902   WriteHeader(FileOff - HeaderSize, NumSections);
903
904   FileOff = HeaderSize;
905
906   // ... then all of the sections ...
907   DenseMap<const MCSection*, uint64_t> SectionOffsetMap;
908
909   DenseMap<const MCSection*, uint8_t> SectionIndexMap;
910
911   unsigned Index = 1;
912   for (MCAssembler::const_iterator it = Asm.begin(),
913          ie = Asm.end(); it != ie; ++it) {
914     const MCSectionData &SD = *it;
915
916     uint64_t Padding = OffsetToAlignment(FileOff, SD.getAlignment());
917     WriteZeros(Padding);
918     FileOff += Padding;
919
920     // Remember the offset into the file for this section.
921     SectionOffsetMap[&it->getSection()] = FileOff;
922     SectionIndexMap[&it->getSection()] = Index++;
923
924     FileOff += Layout.getSectionFileSize(&SD);
925
926     Asm.WriteSectionData(it, Layout, Writer);
927   }
928
929   uint64_t Padding = OffsetToAlignment(FileOff, NaturalAlignment);
930   WriteZeros(Padding);
931   FileOff += Padding;
932
933   // ... and then the section header table.
934   // Should we align the section header table?
935   //
936   // Null section first.
937   WriteSecHdrEntry(0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
938
939   for (MCAssembler::const_iterator it = Asm.begin(),
940          ie = Asm.end(); it != ie; ++it) {
941     const MCSectionData &SD = *it;
942     const MCSectionELF &Section =
943       static_cast<const MCSectionELF&>(SD.getSection());
944
945     uint64_t sh_link = 0;
946     uint64_t sh_info = 0;
947
948     switch(Section.getType()) {
949     case ELF::SHT_DYNAMIC:
950       sh_link = SectionStringTableIndex[&it->getSection()];
951       sh_info = 0;
952       break;
953
954     case ELF::SHT_REL:
955     case ELF::SHT_RELA: {
956       const MCSection *SymtabSection;
957       const MCSection *InfoSection;
958
959       SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
960                                                      SectionKind::getReadOnly(),
961                                                      false);
962       sh_link = SectionIndexMap[SymtabSection];
963
964       // Remove ".rel" and ".rela" prefixes.
965       unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
966       StringRef SectionName = Section.getSectionName().substr(SecNameLen);
967
968       InfoSection = Asm.getContext().getELFSection(SectionName,
969                                                    ELF::SHT_PROGBITS, 0,
970                                                    SectionKind::getReadOnly(),
971                                                    false);
972       sh_info = SectionIndexMap[InfoSection];
973       break;
974     }
975
976     case ELF::SHT_SYMTAB:
977     case ELF::SHT_DYNSYM:
978       sh_link = StringTableIndex;
979       sh_info = LastLocalSymbolIndex;
980       break;
981
982     case ELF::SHT_PROGBITS:
983     case ELF::SHT_STRTAB:
984     case ELF::SHT_NOBITS:
985     case ELF::SHT_NULL:
986       // Nothing to do.
987       break;
988
989     case ELF::SHT_HASH:
990     case ELF::SHT_GROUP:
991     case ELF::SHT_SYMTAB_SHNDX:
992     default:
993       assert(0 && "FIXME: sh_type value not supported!");
994       break;
995     }
996
997     WriteSecHdrEntry(SectionStringTableIndex[&it->getSection()],
998                      Section.getType(), Section.getFlags(),
999                      0,
1000                      SectionOffsetMap.lookup(&SD.getSection()),
1001                      Layout.getSectionSize(&SD), sh_link,
1002                      sh_info, SD.getAlignment(),
1003                      Section.getEntrySize());
1004   }
1005 }
1006
1007 ELFObjectWriter::ELFObjectWriter(raw_ostream &OS,
1008                                  bool Is64Bit,
1009                                  Triple::OSType OSType,
1010                                  bool IsLittleEndian,
1011                                  bool HasRelocationAddend)
1012   : MCObjectWriter(OS, IsLittleEndian)
1013 {
1014   Impl = new ELFObjectWriterImpl(this, Is64Bit, HasRelocationAddend, OSType);
1015 }
1016
1017 ELFObjectWriter::~ELFObjectWriter() {
1018   delete (ELFObjectWriterImpl*) Impl;
1019 }
1020
1021 void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm) {
1022   ((ELFObjectWriterImpl*) Impl)->ExecutePostLayoutBinding(Asm);
1023 }
1024
1025 void ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
1026                                        const MCAsmLayout &Layout,
1027                                        const MCFragment *Fragment,
1028                                        const MCFixup &Fixup, MCValue Target,
1029                                        uint64_t &FixedValue) {
1030   ((ELFObjectWriterImpl*) Impl)->RecordRelocation(Asm, Layout, Fragment, Fixup,
1031                                                   Target, FixedValue);
1032 }
1033
1034 void ELFObjectWriter::WriteObject(const MCAssembler &Asm,
1035                                   const MCAsmLayout &Layout) {
1036   ((ELFObjectWriterImpl*) Impl)->WriteObject(Asm, Layout);
1037 }