Move PPC bits to lib/Target/PowerPC.
[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 "ELFObjectWriter.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/ADT/StringMap.h"
17 #include "llvm/ADT/Twine.h"
18 #include "llvm/MC/MCAsmBackend.h"
19 #include "llvm/MC/MCAsmLayout.h"
20 #include "llvm/MC/MCContext.h"
21 #include "llvm/MC/MCExpr.h"
22 #include "llvm/MC/MCSectionELF.h"
23 #include "llvm/MC/MCValue.h"
24 #include "llvm/Support/Debug.h"
25 #include "llvm/Support/ErrorHandling.h"
26 #include "llvm/Support/ELF.h"
27 #include "llvm/Support/CommandLine.h"
28 #include "llvm/ADT/StringSwitch.h"
29
30 #include "../Target/Mips/MCTargetDesc/MipsFixupKinds.h"
31
32 #include <vector>
33 using namespace llvm;
34
35 #undef  DEBUG_TYPE
36 #define DEBUG_TYPE "reloc-info"
37
38 bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
39   const MCFixupKindInfo &FKI =
40     Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
41
42   return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
43 }
44
45 bool ELFObjectWriter::RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
46   switch (Variant) {
47   default:
48     return false;
49   case MCSymbolRefExpr::VK_GOT:
50   case MCSymbolRefExpr::VK_PLT:
51   case MCSymbolRefExpr::VK_GOTPCREL:
52   case MCSymbolRefExpr::VK_GOTOFF:
53   case MCSymbolRefExpr::VK_TPOFF:
54   case MCSymbolRefExpr::VK_TLSGD:
55   case MCSymbolRefExpr::VK_GOTTPOFF:
56   case MCSymbolRefExpr::VK_INDNTPOFF:
57   case MCSymbolRefExpr::VK_NTPOFF:
58   case MCSymbolRefExpr::VK_GOTNTPOFF:
59   case MCSymbolRefExpr::VK_TLSLDM:
60   case MCSymbolRefExpr::VK_DTPOFF:
61   case MCSymbolRefExpr::VK_TLSLD:
62     return true;
63   }
64 }
65
66 ELFObjectWriter::~ELFObjectWriter()
67 {}
68
69 // Emit the ELF header.
70 void ELFObjectWriter::WriteHeader(uint64_t SectionDataSize,
71                                   unsigned NumberOfSections) {
72   // ELF Header
73   // ----------
74   //
75   // Note
76   // ----
77   // emitWord method behaves differently for ELF32 and ELF64, writing
78   // 4 bytes in the former and 8 in the latter.
79
80   Write8(0x7f); // e_ident[EI_MAG0]
81   Write8('E');  // e_ident[EI_MAG1]
82   Write8('L');  // e_ident[EI_MAG2]
83   Write8('F');  // e_ident[EI_MAG3]
84
85   Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
86
87   // e_ident[EI_DATA]
88   Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
89
90   Write8(ELF::EV_CURRENT);        // e_ident[EI_VERSION]
91   // e_ident[EI_OSABI]
92   Write8(TargetObjectWriter->getOSABI());
93   Write8(0);                  // e_ident[EI_ABIVERSION]
94
95   WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
96
97   Write16(ELF::ET_REL);             // e_type
98
99   Write16(TargetObjectWriter->getEMachine()); // e_machine = target
100
101   Write32(ELF::EV_CURRENT);         // e_version
102   WriteWord(0);                    // e_entry, no entry point in .o file
103   WriteWord(0);                    // e_phoff, no program header for .o
104   WriteWord(SectionDataSize + (is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
105             sizeof(ELF::Elf32_Ehdr)));  // e_shoff = sec hdr table off in bytes
106
107   // e_flags = whatever the target wants
108   Write32(getEFlags());
109
110   // e_ehsize = ELF header size
111   Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
112
113   Write16(0);                  // e_phentsize = prog header entry size
114   Write16(0);                  // e_phnum = # prog header entries = 0
115
116   // e_shentsize = Section header entry size
117   Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
118
119   // e_shnum     = # of section header ents
120   if (NumberOfSections >= ELF::SHN_LORESERVE)
121     Write16(ELF::SHN_UNDEF);
122   else
123     Write16(NumberOfSections);
124
125   // e_shstrndx  = Section # of '.shstrtab'
126   if (ShstrtabIndex >= ELF::SHN_LORESERVE)
127     Write16(ELF::SHN_XINDEX);
128   else
129     Write16(ShstrtabIndex);
130 }
131
132 void ELFObjectWriter::WriteSymbolEntry(MCDataFragment *SymtabF,
133                                        MCDataFragment *ShndxF,
134                                        uint64_t name,
135                                        uint8_t info, uint64_t value,
136                                        uint64_t size, uint8_t other,
137                                        uint32_t shndx,
138                                        bool Reserved) {
139   if (ShndxF) {
140     if (shndx >= ELF::SHN_LORESERVE && !Reserved)
141       String32(*ShndxF, shndx);
142     else
143       String32(*ShndxF, 0);
144   }
145
146   uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ?
147     uint16_t(ELF::SHN_XINDEX) : shndx;
148
149   if (is64Bit()) {
150     String32(*SymtabF, name);  // st_name
151     String8(*SymtabF, info);   // st_info
152     String8(*SymtabF, other);  // st_other
153     String16(*SymtabF, Index); // st_shndx
154     String64(*SymtabF, value); // st_value
155     String64(*SymtabF, size);  // st_size
156   } else {
157     String32(*SymtabF, name);  // st_name
158     String32(*SymtabF, value); // st_value
159     String32(*SymtabF, size);  // st_size
160     String8(*SymtabF, info);   // st_info
161     String8(*SymtabF, other);  // st_other
162     String16(*SymtabF, Index); // st_shndx
163   }
164 }
165
166 uint64_t ELFObjectWriter::SymbolValue(MCSymbolData &Data,
167                                       const MCAsmLayout &Layout) {
168   if (Data.isCommon() && Data.isExternal())
169     return Data.getCommonAlignment();
170
171   const MCSymbol &Symbol = Data.getSymbol();
172
173   if (Symbol.isAbsolute() && Symbol.isVariable()) {
174     if (const MCExpr *Value = Symbol.getVariableValue()) {
175       int64_t IntValue;
176       if (Value->EvaluateAsAbsolute(IntValue, Layout))
177         return (uint64_t)IntValue;
178     }
179   }
180
181   if (!Symbol.isInSection())
182     return 0;
183
184
185   if (Data.getFragment()) {
186     if (Data.getFlags() & ELF_Other_ThumbFunc)
187       return Layout.getSymbolOffset(&Data)+1;
188     else
189       return Layout.getSymbolOffset(&Data);
190   }
191
192   return 0;
193 }
194
195 void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
196                                                const MCAsmLayout &Layout) {
197   // The presence of symbol versions causes undefined symbols and
198   // versions declared with @@@ to be renamed.
199
200   for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
201          ie = Asm.symbol_end(); it != ie; ++it) {
202     const MCSymbol &Alias = it->getSymbol();
203     const MCSymbol &Symbol = Alias.AliasedSymbol();
204     MCSymbolData &SD = Asm.getSymbolData(Symbol);
205
206     // Not an alias.
207     if (&Symbol == &Alias)
208       continue;
209
210     StringRef AliasName = Alias.getName();
211     size_t Pos = AliasName.find('@');
212     if (Pos == StringRef::npos)
213       continue;
214
215     // Aliases defined with .symvar copy the binding from the symbol they alias.
216     // This is the first place we are able to copy this information.
217     it->setExternal(SD.isExternal());
218     MCELF::SetBinding(*it, MCELF::GetBinding(SD));
219
220     StringRef Rest = AliasName.substr(Pos);
221     if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
222       continue;
223
224     // FIXME: produce a better error message.
225     if (Symbol.isUndefined() && Rest.startswith("@@") &&
226         !Rest.startswith("@@@"))
227       report_fatal_error("A @@ version cannot be undefined");
228
229     Renames.insert(std::make_pair(&Symbol, &Alias));
230   }
231 }
232
233 void ELFObjectWriter::WriteSymbol(MCDataFragment *SymtabF,
234                                   MCDataFragment *ShndxF,
235                                   ELFSymbolData &MSD,
236                                   const MCAsmLayout &Layout) {
237   MCSymbolData &OrigData = *MSD.SymbolData;
238   MCSymbolData &Data =
239     Layout.getAssembler().getSymbolData(OrigData.getSymbol().AliasedSymbol());
240
241   bool IsReserved = Data.isCommon() || Data.getSymbol().isAbsolute() ||
242     Data.getSymbol().isVariable();
243
244   uint8_t Binding = MCELF::GetBinding(OrigData);
245   uint8_t Visibility = MCELF::GetVisibility(OrigData);
246   uint8_t Type = MCELF::GetType(Data);
247
248   uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
249   uint8_t Other = Visibility;
250
251   uint64_t Value = SymbolValue(Data, Layout);
252   uint64_t Size = 0;
253
254   assert(!(Data.isCommon() && !Data.isExternal()));
255
256   const MCExpr *ESize = Data.getSize();
257   if (ESize) {
258     int64_t Res;
259     if (!ESize->EvaluateAsAbsolute(Res, Layout))
260       report_fatal_error("Size expression must be absolute.");
261     Size = Res;
262   }
263
264   // Write out the symbol table entry
265   WriteSymbolEntry(SymtabF, ShndxF, MSD.StringIndex, Info, Value,
266                    Size, Other, MSD.SectionIndex, IsReserved);
267 }
268
269 void ELFObjectWriter::WriteSymbolTable(MCDataFragment *SymtabF,
270                                        MCDataFragment *ShndxF,
271                                        const MCAssembler &Asm,
272                                        const MCAsmLayout &Layout,
273                                     const SectionIndexMapTy &SectionIndexMap) {
274   // The string table must be emitted first because we need the index
275   // into the string table for all the symbol names.
276   assert(StringTable.size() && "Missing string table");
277
278   // FIXME: Make sure the start of the symbol table is aligned.
279
280   // The first entry is the undefined symbol entry.
281   WriteSymbolEntry(SymtabF, ShndxF, 0, 0, 0, 0, 0, 0, false);
282
283   // Write the symbol table entries.
284   LastLocalSymbolIndex = LocalSymbolData.size() + 1;
285   for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
286     ELFSymbolData &MSD = LocalSymbolData[i];
287     WriteSymbol(SymtabF, ShndxF, MSD, Layout);
288   }
289
290   // Write out a symbol table entry for each regular section.
291   for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e;
292        ++i) {
293     const MCSectionELF &Section =
294       static_cast<const MCSectionELF&>(i->getSection());
295     if (Section.getType() == ELF::SHT_RELA ||
296         Section.getType() == ELF::SHT_REL ||
297         Section.getType() == ELF::SHT_STRTAB ||
298         Section.getType() == ELF::SHT_SYMTAB ||
299         Section.getType() == ELF::SHT_SYMTAB_SHNDX)
300       continue;
301     WriteSymbolEntry(SymtabF, ShndxF, 0, ELF::STT_SECTION, 0, 0,
302                      ELF::STV_DEFAULT, SectionIndexMap.lookup(&Section),
303                      false);
304     LastLocalSymbolIndex++;
305   }
306
307   for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
308     ELFSymbolData &MSD = ExternalSymbolData[i];
309     MCSymbolData &Data = *MSD.SymbolData;
310     assert(((Data.getFlags() & ELF_STB_Global) ||
311             (Data.getFlags() & ELF_STB_Weak)) &&
312            "External symbol requires STB_GLOBAL or STB_WEAK flag");
313     WriteSymbol(SymtabF, ShndxF, MSD, Layout);
314     if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
315       LastLocalSymbolIndex++;
316   }
317
318   for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
319     ELFSymbolData &MSD = UndefinedSymbolData[i];
320     MCSymbolData &Data = *MSD.SymbolData;
321     WriteSymbol(SymtabF, ShndxF, MSD, Layout);
322     if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
323       LastLocalSymbolIndex++;
324   }
325 }
326
327 const MCSymbol *ELFObjectWriter::SymbolToReloc(const MCAssembler &Asm,
328                                                const MCValue &Target,
329                                                const MCFragment &F, 
330                                                const MCFixup &Fixup,
331                                                bool IsPCRel) const {
332   const MCSymbol &Symbol = Target.getSymA()->getSymbol();
333   const MCSymbol &ASymbol = Symbol.AliasedSymbol();
334   const MCSymbol *Renamed = Renames.lookup(&Symbol);
335   const MCSymbolData &SD = Asm.getSymbolData(Symbol);
336
337   if (ASymbol.isUndefined()) {
338     if (Renamed)
339       return Renamed;
340     return &ASymbol;
341   }
342
343   if (SD.isExternal()) {
344     if (Renamed)
345       return Renamed;
346     return &Symbol;
347   }
348
349   const MCSectionELF &Section =
350     static_cast<const MCSectionELF&>(ASymbol.getSection());
351   const SectionKind secKind = Section.getKind();
352
353   if (secKind.isBSS())
354     return ExplicitRelSym(Asm, Target, F, Fixup, IsPCRel);
355
356   if (secKind.isThreadLocal()) {
357     if (Renamed)
358       return Renamed;
359     return &Symbol;
360   }
361
362   MCSymbolRefExpr::VariantKind Kind = Target.getSymA()->getKind();
363   const MCSectionELF &Sec2 =
364     static_cast<const MCSectionELF&>(F.getParent()->getSection());
365
366   if (&Sec2 != &Section &&
367       (Kind == MCSymbolRefExpr::VK_PLT ||
368        Kind == MCSymbolRefExpr::VK_GOTPCREL ||
369        Kind == MCSymbolRefExpr::VK_GOTOFF)) {
370     if (Renamed)
371       return Renamed;
372     return &Symbol;
373   }
374
375   if (Section.getFlags() & ELF::SHF_MERGE) {
376     if (Target.getConstant() == 0)
377       return ExplicitRelSym(Asm, Target, F, Fixup, IsPCRel);
378     if (Renamed)
379       return Renamed;
380     return &Symbol;
381   }
382
383   return ExplicitRelSym(Asm, Target, F, Fixup, IsPCRel);
384
385 }
386
387
388 void ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
389                                        const MCAsmLayout &Layout,
390                                        const MCFragment *Fragment,
391                                        const MCFixup &Fixup,
392                                        MCValue Target,
393                                        uint64_t &FixedValue) {
394   int64_t Addend = 0;
395   int Index = 0;
396   int64_t Value = Target.getConstant();
397   const MCSymbol *RelocSymbol = NULL;
398
399   bool IsPCRel = isFixupKindPCRel(Asm, Fixup.getKind());
400   if (!Target.isAbsolute()) {
401     const MCSymbol &Symbol = Target.getSymA()->getSymbol();
402     const MCSymbol &ASymbol = Symbol.AliasedSymbol();
403     RelocSymbol = SymbolToReloc(Asm, Target, *Fragment, Fixup, IsPCRel);
404
405     if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
406       const MCSymbol &SymbolB = RefB->getSymbol();
407       MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
408       IsPCRel = true;
409
410       // Offset of the symbol in the section
411       int64_t a = Layout.getSymbolOffset(&SDB);
412
413       // Offset of the relocation in the section
414       int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
415       Value += b - a;
416     }
417
418     if (!RelocSymbol) {
419       MCSymbolData &SD = Asm.getSymbolData(ASymbol);
420       MCFragment *F = SD.getFragment();
421
422       Index = F->getParent()->getOrdinal() + 1;
423
424       // Offset of the symbol in the section
425       Value += Layout.getSymbolOffset(&SD);
426     } else {
427       if (Asm.getSymbolData(Symbol).getFlags() & ELF_Other_Weakref)
428         WeakrefUsedInReloc.insert(RelocSymbol);
429       else
430         UsedInReloc.insert(RelocSymbol);
431       Index = -1;
432     }
433     Addend = Value;
434     // Compensate for the addend on i386.
435     if (is64Bit())
436       Value = 0;
437   }
438
439   FixedValue = Value;
440   unsigned Type = GetRelocType(Target, Fixup, IsPCRel,
441                                (RelocSymbol != 0), Addend);
442   MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
443     MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
444   if (RelocNeedsGOT(Modifier))
445     NeedsGOT = true;
446
447   uint64_t RelocOffset = Layout.getFragmentOffset(Fragment) +
448     Fixup.getOffset();
449
450   // FIXME: no tests cover this. Is adjustFixupOffset dead code?
451   TargetObjectWriter->adjustFixupOffset(Fixup, RelocOffset);
452
453   if (!hasRelocationAddend())
454     Addend = 0;
455
456   if (is64Bit())
457     assert(isInt<64>(Addend));
458   else
459     assert(isInt<32>(Addend));
460
461   ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
462   Relocations[Fragment->getParent()].push_back(ERE);
463 }
464
465
466 uint64_t
467 ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
468                                              const MCSymbol *S) {
469   MCSymbolData &SD = Asm.getSymbolData(*S);
470   return SD.getIndex();
471 }
472
473 bool ELFObjectWriter::isInSymtab(const MCAssembler &Asm,
474                                  const MCSymbolData &Data,
475                                  bool Used, bool Renamed) {
476   if (Data.getFlags() & ELF_Other_Weakref)
477     return false;
478
479   if (Used)
480     return true;
481
482   if (Renamed)
483     return false;
484
485   const MCSymbol &Symbol = Data.getSymbol();
486
487   if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
488     return true;
489
490   const MCSymbol &A = Symbol.AliasedSymbol();
491   if (Symbol.isVariable() && !A.isVariable() && A.isUndefined())
492     return false;
493
494   bool IsGlobal = MCELF::GetBinding(Data) == ELF::STB_GLOBAL;
495   if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
496     return false;
497
498   if (!Asm.isSymbolLinkerVisible(Symbol) && !Symbol.isUndefined())
499     return false;
500
501   if (Symbol.isTemporary())
502     return false;
503
504   return true;
505 }
506
507 bool ELFObjectWriter::isLocal(const MCSymbolData &Data, bool isSignature,
508                               bool isUsedInReloc) {
509   if (Data.isExternal())
510     return false;
511
512   const MCSymbol &Symbol = Data.getSymbol();
513   const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
514
515   if (RefSymbol.isUndefined() && !RefSymbol.isVariable()) {
516     if (isSignature && !isUsedInReloc)
517       return true;
518
519     return false;
520   }
521
522   return true;
523 }
524
525 void ELFObjectWriter::ComputeIndexMap(MCAssembler &Asm,
526                                       SectionIndexMapTy &SectionIndexMap,
527                                       const RelMapTy &RelMap) {
528   unsigned Index = 1;
529   for (MCAssembler::iterator it = Asm.begin(),
530          ie = Asm.end(); it != ie; ++it) {
531     const MCSectionELF &Section =
532       static_cast<const MCSectionELF &>(it->getSection());
533     if (Section.getType() != ELF::SHT_GROUP)
534       continue;
535     SectionIndexMap[&Section] = Index++;
536   }
537
538   for (MCAssembler::iterator it = Asm.begin(),
539          ie = Asm.end(); it != ie; ++it) {
540     const MCSectionELF &Section =
541       static_cast<const MCSectionELF &>(it->getSection());
542     if (Section.getType() == ELF::SHT_GROUP ||
543         Section.getType() == ELF::SHT_REL ||
544         Section.getType() == ELF::SHT_RELA)
545       continue;
546     SectionIndexMap[&Section] = Index++;
547     const MCSectionELF *RelSection = RelMap.lookup(&Section);
548     if (RelSection)
549       SectionIndexMap[RelSection] = Index++;
550   }
551 }
552
553 void ELFObjectWriter::ComputeSymbolTable(MCAssembler &Asm,
554                                       const SectionIndexMapTy &SectionIndexMap,
555                                          RevGroupMapTy RevGroupMap,
556                                          unsigned NumRegularSections) {
557   // FIXME: Is this the correct place to do this?
558   // FIXME: Why is an undefined reference to _GLOBAL_OFFSET_TABLE_ needed?
559   if (NeedsGOT) {
560     llvm::StringRef Name = "_GLOBAL_OFFSET_TABLE_";
561     MCSymbol *Sym = Asm.getContext().GetOrCreateSymbol(Name);
562     MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
563     Data.setExternal(true);
564     MCELF::SetBinding(Data, ELF::STB_GLOBAL);
565   }
566
567   // Index 0 is always the empty string.
568   StringMap<uint64_t> StringIndexMap;
569   StringTable += '\x00';
570
571   // FIXME: We could optimize suffixes in strtab in the same way we
572   // optimize them in shstrtab.
573
574   // Add the data for the symbols.
575   for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
576          ie = Asm.symbol_end(); it != ie; ++it) {
577     const MCSymbol &Symbol = it->getSymbol();
578
579     bool Used = UsedInReloc.count(&Symbol);
580     bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
581     bool isSignature = RevGroupMap.count(&Symbol);
582
583     if (!isInSymtab(Asm, *it,
584                     Used || WeakrefUsed || isSignature,
585                     Renames.count(&Symbol)))
586       continue;
587
588     ELFSymbolData MSD;
589     MSD.SymbolData = it;
590     const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
591
592     // Undefined symbols are global, but this is the first place we
593     // are able to set it.
594     bool Local = isLocal(*it, isSignature, Used);
595     if (!Local && MCELF::GetBinding(*it) == ELF::STB_LOCAL) {
596       MCSymbolData &SD = Asm.getSymbolData(RefSymbol);
597       MCELF::SetBinding(*it, ELF::STB_GLOBAL);
598       MCELF::SetBinding(SD, ELF::STB_GLOBAL);
599     }
600
601     if (RefSymbol.isUndefined() && !Used && WeakrefUsed)
602       MCELF::SetBinding(*it, ELF::STB_WEAK);
603
604     if (it->isCommon()) {
605       assert(!Local);
606       MSD.SectionIndex = ELF::SHN_COMMON;
607     } else if (Symbol.isAbsolute() || RefSymbol.isVariable()) {
608       MSD.SectionIndex = ELF::SHN_ABS;
609     } else if (RefSymbol.isUndefined()) {
610       if (isSignature && !Used)
611         MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]);
612       else
613         MSD.SectionIndex = ELF::SHN_UNDEF;
614     } else {
615       const MCSectionELF &Section =
616         static_cast<const MCSectionELF&>(RefSymbol.getSection());
617       MSD.SectionIndex = SectionIndexMap.lookup(&Section);
618       if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
619         NeedsSymtabShndx = true;
620       assert(MSD.SectionIndex && "Invalid section index!");
621     }
622
623     // The @@@ in symbol version is replaced with @ in undefined symbols and
624     // @@ in defined ones.
625     StringRef Name = Symbol.getName();
626     SmallString<32> Buf;
627
628     size_t Pos = Name.find("@@@");
629     if (Pos != StringRef::npos) {
630       Buf += Name.substr(0, Pos);
631       unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
632       Buf += Name.substr(Pos + Skip);
633       Name = Buf;
634     }
635
636     uint64_t &Entry = StringIndexMap[Name];
637     if (!Entry) {
638       Entry = StringTable.size();
639       StringTable += Name;
640       StringTable += '\x00';
641     }
642     MSD.StringIndex = Entry;
643     if (MSD.SectionIndex == ELF::SHN_UNDEF)
644       UndefinedSymbolData.push_back(MSD);
645     else if (Local)
646       LocalSymbolData.push_back(MSD);
647     else
648       ExternalSymbolData.push_back(MSD);
649   }
650
651   // Symbols are required to be in lexicographic order.
652   array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
653   array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
654   array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
655
656   // Set the symbol indices. Local symbols must come before all other
657   // symbols with non-local bindings.
658   unsigned Index = 1;
659   for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
660     LocalSymbolData[i].SymbolData->setIndex(Index++);
661
662   Index += NumRegularSections;
663
664   for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
665     ExternalSymbolData[i].SymbolData->setIndex(Index++);
666   for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
667     UndefinedSymbolData[i].SymbolData->setIndex(Index++);
668
669   if (NumRegularSections > ELF::SHN_LORESERVE)
670     NeedsSymtabShndx = true;
671 }
672
673 void ELFObjectWriter::CreateRelocationSections(MCAssembler &Asm,
674                                                MCAsmLayout &Layout,
675                                                RelMapTy &RelMap) {
676   for (MCAssembler::const_iterator it = Asm.begin(),
677          ie = Asm.end(); it != ie; ++it) {
678     const MCSectionData &SD = *it;
679     if (Relocations[&SD].empty())
680       continue;
681
682     MCContext &Ctx = Asm.getContext();
683     const MCSectionELF &Section =
684       static_cast<const MCSectionELF&>(SD.getSection());
685
686     const StringRef SectionName = Section.getSectionName();
687     std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
688     RelaSectionName += SectionName;
689
690     unsigned EntrySize;
691     if (hasRelocationAddend())
692       EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
693     else
694       EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
695
696     const MCSectionELF *RelaSection =
697       Ctx.getELFSection(RelaSectionName, hasRelocationAddend() ?
698                         ELF::SHT_RELA : ELF::SHT_REL, 0,
699                         SectionKind::getReadOnly(),
700                         EntrySize, "");
701     RelMap[&Section] = RelaSection;
702     Asm.getOrCreateSectionData(*RelaSection);
703   }
704 }
705
706 void ELFObjectWriter::WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout,
707                                        const RelMapTy &RelMap) {
708   for (MCAssembler::const_iterator it = Asm.begin(),
709          ie = Asm.end(); it != ie; ++it) {
710     const MCSectionData &SD = *it;
711     const MCSectionELF &Section =
712       static_cast<const MCSectionELF&>(SD.getSection());
713
714     const MCSectionELF *RelaSection = RelMap.lookup(&Section);
715     if (!RelaSection)
716       continue;
717     MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
718     RelaSD.setAlignment(is64Bit() ? 8 : 4);
719
720     MCDataFragment *F = new MCDataFragment(&RelaSD);
721     WriteRelocationsFragment(Asm, F, &*it);
722   }
723 }
724
725 void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
726                                        uint64_t Flags, uint64_t Address,
727                                        uint64_t Offset, uint64_t Size,
728                                        uint32_t Link, uint32_t Info,
729                                        uint64_t Alignment,
730                                        uint64_t EntrySize) {
731   Write32(Name);        // sh_name: index into string table
732   Write32(Type);        // sh_type
733   WriteWord(Flags);     // sh_flags
734   WriteWord(Address);   // sh_addr
735   WriteWord(Offset);    // sh_offset
736   WriteWord(Size);      // sh_size
737   Write32(Link);        // sh_link
738   Write32(Info);        // sh_info
739   WriteWord(Alignment); // sh_addralign
740   WriteWord(EntrySize); // sh_entsize
741 }
742
743 void ELFObjectWriter::WriteRelocationsFragment(const MCAssembler &Asm,
744                                                MCDataFragment *F,
745                                                const MCSectionData *SD) {
746   std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
747   // sort by the r_offset just like gnu as does
748   array_pod_sort(Relocs.begin(), Relocs.end());
749
750   for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
751     ELFRelocationEntry entry = Relocs[e - i - 1];
752
753     if (!entry.Index)
754       ;
755     else if (entry.Index < 0)
756       entry.Index = getSymbolIndexInSymbolTable(Asm, entry.Symbol);
757     else
758       entry.Index += LocalSymbolData.size();
759     if (is64Bit()) {
760       String64(*F, entry.r_offset);
761
762       struct ELF::Elf64_Rela ERE64;
763       ERE64.setSymbolAndType(entry.Index, entry.Type);
764       String64(*F, ERE64.r_info);
765
766       if (hasRelocationAddend())
767         String64(*F, entry.r_addend);
768     } else {
769       String32(*F, entry.r_offset);
770
771       struct ELF::Elf32_Rela ERE32;
772       ERE32.setSymbolAndType(entry.Index, entry.Type);
773       String32(*F, ERE32.r_info);
774
775       if (hasRelocationAddend())
776         String32(*F, entry.r_addend);
777     }
778   }
779 }
780
781 static int compareBySuffix(const void *a, const void *b) {
782   const MCSectionELF *secA = *static_cast<const MCSectionELF* const *>(a);
783   const MCSectionELF *secB = *static_cast<const MCSectionELF* const *>(b);
784   const StringRef &NameA = secA->getSectionName();
785   const StringRef &NameB = secB->getSectionName();
786   const unsigned sizeA = NameA.size();
787   const unsigned sizeB = NameB.size();
788   const unsigned len = std::min(sizeA, sizeB);
789   for (unsigned int i = 0; i < len; ++i) {
790     char ca = NameA[sizeA - i - 1];
791     char cb = NameB[sizeB - i - 1];
792     if (ca != cb)
793       return cb - ca;
794   }
795
796   return sizeB - sizeA;
797 }
798
799 void ELFObjectWriter::CreateMetadataSections(MCAssembler &Asm,
800                                              MCAsmLayout &Layout,
801                                              SectionIndexMapTy &SectionIndexMap,
802                                              const RelMapTy &RelMap) {
803   MCContext &Ctx = Asm.getContext();
804   MCDataFragment *F;
805
806   unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
807
808   // We construct .shstrtab, .symtab and .strtab in this order to match gnu as.
809   const MCSectionELF *ShstrtabSection =
810     Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
811                       SectionKind::getReadOnly());
812   MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
813   ShstrtabSD.setAlignment(1);
814
815   const MCSectionELF *SymtabSection =
816     Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
817                       SectionKind::getReadOnly(),
818                       EntrySize, "");
819   MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
820   SymtabSD.setAlignment(is64Bit() ? 8 : 4);
821
822   MCSectionData *SymtabShndxSD = NULL;
823
824   if (NeedsSymtabShndx) {
825     const MCSectionELF *SymtabShndxSection =
826       Ctx.getELFSection(".symtab_shndx", ELF::SHT_SYMTAB_SHNDX, 0,
827                         SectionKind::getReadOnly(), 4, "");
828     SymtabShndxSD = &Asm.getOrCreateSectionData(*SymtabShndxSection);
829     SymtabShndxSD->setAlignment(4);
830   }
831
832   const MCSectionELF *StrtabSection;
833   StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
834                                     SectionKind::getReadOnly());
835   MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
836   StrtabSD.setAlignment(1);
837
838   ComputeIndexMap(Asm, SectionIndexMap, RelMap);
839
840   ShstrtabIndex = SectionIndexMap.lookup(ShstrtabSection);
841   SymbolTableIndex = SectionIndexMap.lookup(SymtabSection);
842   StringTableIndex = SectionIndexMap.lookup(StrtabSection);
843
844   // Symbol table
845   F = new MCDataFragment(&SymtabSD);
846   MCDataFragment *ShndxF = NULL;
847   if (NeedsSymtabShndx) {
848     ShndxF = new MCDataFragment(SymtabShndxSD);
849   }
850   WriteSymbolTable(F, ShndxF, Asm, Layout, SectionIndexMap);
851
852   F = new MCDataFragment(&StrtabSD);
853   F->getContents().append(StringTable.begin(), StringTable.end());
854
855   F = new MCDataFragment(&ShstrtabSD);
856
857   std::vector<const MCSectionELF*> Sections;
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     Sections.push_back(&Section);
863   }
864   array_pod_sort(Sections.begin(), Sections.end(), compareBySuffix);
865
866   // Section header string table.
867   //
868   // The first entry of a string table holds a null character so skip
869   // section 0.
870   uint64_t Index = 1;
871   F->getContents() += '\x00';
872
873   for (unsigned int I = 0, E = Sections.size(); I != E; ++I) {
874     const MCSectionELF &Section = *Sections[I];
875
876     StringRef Name = Section.getSectionName();
877     if (I != 0) {
878       StringRef PreviousName = Sections[I - 1]->getSectionName();
879       if (PreviousName.endswith(Name)) {
880         SectionStringTableIndex[&Section] = Index - Name.size() - 1;
881         continue;
882       }
883     }
884     // Remember the index into the string table so we can write it
885     // into the sh_name field of the section header table.
886     SectionStringTableIndex[&Section] = Index;
887
888     Index += Name.size() + 1;
889     F->getContents() += Name;
890     F->getContents() += '\x00';
891   }
892 }
893
894 void ELFObjectWriter::CreateIndexedSections(MCAssembler &Asm,
895                                             MCAsmLayout &Layout,
896                                             GroupMapTy &GroupMap,
897                                             RevGroupMapTy &RevGroupMap,
898                                             SectionIndexMapTy &SectionIndexMap,
899                                             const RelMapTy &RelMap) {
900   // Create the .note.GNU-stack section if needed.
901   MCContext &Ctx = Asm.getContext();
902   if (Asm.getNoExecStack()) {
903     const MCSectionELF *GnuStackSection =
904       Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS, 0,
905                         SectionKind::getReadOnly());
906     Asm.getOrCreateSectionData(*GnuStackSection);
907   }
908
909   // Build the groups
910   for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
911        it != ie; ++it) {
912     const MCSectionELF &Section =
913       static_cast<const MCSectionELF&>(it->getSection());
914     if (!(Section.getFlags() & ELF::SHF_GROUP))
915       continue;
916
917     const MCSymbol *SignatureSymbol = Section.getGroup();
918     Asm.getOrCreateSymbolData(*SignatureSymbol);
919     const MCSectionELF *&Group = RevGroupMap[SignatureSymbol];
920     if (!Group) {
921       Group = Ctx.CreateELFGroupSection();
922       MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
923       Data.setAlignment(4);
924       MCDataFragment *F = new MCDataFragment(&Data);
925       String32(*F, ELF::GRP_COMDAT);
926     }
927     GroupMap[Group] = SignatureSymbol;
928   }
929
930   ComputeIndexMap(Asm, SectionIndexMap, RelMap);
931
932   // Add sections to the groups
933   for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
934        it != ie; ++it) {
935     const MCSectionELF &Section =
936       static_cast<const MCSectionELF&>(it->getSection());
937     if (!(Section.getFlags() & ELF::SHF_GROUP))
938       continue;
939     const MCSectionELF *Group = RevGroupMap[Section.getGroup()];
940     MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
941     // FIXME: we could use the previous fragment
942     MCDataFragment *F = new MCDataFragment(&Data);
943     unsigned Index = SectionIndexMap.lookup(&Section);
944     String32(*F, Index);
945   }
946 }
947
948 void ELFObjectWriter::WriteSection(MCAssembler &Asm,
949                                    const SectionIndexMapTy &SectionIndexMap,
950                                    uint32_t GroupSymbolIndex,
951                                    uint64_t Offset, uint64_t Size,
952                                    uint64_t Alignment,
953                                    const MCSectionELF &Section) {
954   uint64_t sh_link = 0;
955   uint64_t sh_info = 0;
956
957   switch(Section.getType()) {
958   case ELF::SHT_DYNAMIC:
959     sh_link = SectionStringTableIndex[&Section];
960     sh_info = 0;
961     break;
962
963   case ELF::SHT_REL:
964   case ELF::SHT_RELA: {
965     const MCSectionELF *SymtabSection;
966     const MCSectionELF *InfoSection;
967     SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB,
968                                                    0,
969                                                    SectionKind::getReadOnly());
970     sh_link = SectionIndexMap.lookup(SymtabSection);
971     assert(sh_link && ".symtab not found");
972
973     // Remove ".rel" and ".rela" prefixes.
974     unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
975     StringRef SectionName = Section.getSectionName().substr(SecNameLen);
976
977     InfoSection = Asm.getContext().getELFSection(SectionName,
978                                                  ELF::SHT_PROGBITS, 0,
979                                                  SectionKind::getReadOnly());
980     sh_info = SectionIndexMap.lookup(InfoSection);
981     break;
982   }
983
984   case ELF::SHT_SYMTAB:
985   case ELF::SHT_DYNSYM:
986     sh_link = StringTableIndex;
987     sh_info = LastLocalSymbolIndex;
988     break;
989
990   case ELF::SHT_SYMTAB_SHNDX:
991     sh_link = SymbolTableIndex;
992     break;
993
994   case ELF::SHT_PROGBITS:
995   case ELF::SHT_STRTAB:
996   case ELF::SHT_NOBITS:
997   case ELF::SHT_NOTE:
998   case ELF::SHT_NULL:
999   case ELF::SHT_ARM_ATTRIBUTES:
1000   case ELF::SHT_INIT_ARRAY:
1001   case ELF::SHT_FINI_ARRAY:
1002   case ELF::SHT_PREINIT_ARRAY:
1003   case ELF::SHT_X86_64_UNWIND:
1004     // Nothing to do.
1005     break;
1006
1007   case ELF::SHT_GROUP:
1008     sh_link = SymbolTableIndex;
1009     sh_info = GroupSymbolIndex;
1010     break;
1011
1012   default:
1013     assert(0 && "FIXME: sh_type value not supported!");
1014     break;
1015   }
1016
1017   WriteSecHdrEntry(SectionStringTableIndex[&Section], Section.getType(),
1018                    Section.getFlags(), 0, Offset, Size, sh_link, sh_info,
1019                    Alignment, Section.getEntrySize());
1020 }
1021
1022 bool ELFObjectWriter::IsELFMetaDataSection(const MCSectionData &SD) {
1023   return SD.getOrdinal() == ~UINT32_C(0) &&
1024     !SD.getSection().isVirtualSection();
1025 }
1026
1027 uint64_t ELFObjectWriter::DataSectionSize(const MCSectionData &SD) {
1028   uint64_t Ret = 0;
1029   for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1030        ++i) {
1031     const MCFragment &F = *i;
1032     assert(F.getKind() == MCFragment::FT_Data);
1033     Ret += cast<MCDataFragment>(F).getContents().size();
1034   }
1035   return Ret;
1036 }
1037
1038 uint64_t ELFObjectWriter::GetSectionFileSize(const MCAsmLayout &Layout,
1039                                              const MCSectionData &SD) {
1040   if (IsELFMetaDataSection(SD))
1041     return DataSectionSize(SD);
1042   return Layout.getSectionFileSize(&SD);
1043 }
1044
1045 uint64_t ELFObjectWriter::GetSectionAddressSize(const MCAsmLayout &Layout,
1046                                                 const MCSectionData &SD) {
1047   if (IsELFMetaDataSection(SD))
1048     return DataSectionSize(SD);
1049   return Layout.getSectionAddressSize(&SD);
1050 }
1051
1052 void ELFObjectWriter::WriteDataSectionData(MCAssembler &Asm,
1053                                            const MCAsmLayout &Layout,
1054                                            const MCSectionELF &Section) {
1055   uint64_t FileOff = OS.tell();
1056   const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1057
1058   uint64_t Padding = OffsetToAlignment(FileOff, SD.getAlignment());
1059   WriteZeros(Padding);
1060   FileOff += Padding;
1061
1062   FileOff += GetSectionFileSize(Layout, SD);
1063
1064   if (IsELFMetaDataSection(SD)) {
1065     for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1066          ++i) {
1067       const MCFragment &F = *i;
1068       assert(F.getKind() == MCFragment::FT_Data);
1069       WriteBytes(cast<MCDataFragment>(F).getContents().str());
1070     }
1071   } else {
1072     Asm.writeSectionData(&SD, Layout);
1073   }
1074 }
1075
1076 void ELFObjectWriter::WriteSectionHeader(MCAssembler &Asm,
1077                                          const GroupMapTy &GroupMap,
1078                                          const MCAsmLayout &Layout,
1079                                       const SectionIndexMapTy &SectionIndexMap,
1080                                    const SectionOffsetMapTy &SectionOffsetMap) {
1081   const unsigned NumSections = Asm.size() + 1;
1082
1083   std::vector<const MCSectionELF*> Sections;
1084   Sections.resize(NumSections - 1);
1085
1086   for (SectionIndexMapTy::const_iterator i=
1087          SectionIndexMap.begin(), e = SectionIndexMap.end(); i != e; ++i) {
1088     const std::pair<const MCSectionELF*, uint32_t> &p = *i;
1089     Sections[p.second - 1] = p.first;
1090   }
1091
1092   // Null section first.
1093   uint64_t FirstSectionSize =
1094     NumSections >= ELF::SHN_LORESERVE ? NumSections : 0;
1095   uint32_t FirstSectionLink =
1096     ShstrtabIndex >= ELF::SHN_LORESERVE ? ShstrtabIndex : 0;
1097   WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, FirstSectionLink, 0, 0, 0);
1098
1099   for (unsigned i = 0; i < NumSections - 1; ++i) {
1100     const MCSectionELF &Section = *Sections[i];
1101     const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1102     uint32_t GroupSymbolIndex;
1103     if (Section.getType() != ELF::SHT_GROUP)
1104       GroupSymbolIndex = 0;
1105     else
1106       GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm,
1107                                                      GroupMap.lookup(&Section));
1108
1109     uint64_t Size = GetSectionAddressSize(Layout, SD);
1110
1111     WriteSection(Asm, SectionIndexMap, GroupSymbolIndex,
1112                  SectionOffsetMap.lookup(&Section), Size,
1113                  SD.getAlignment(), Section);
1114   }
1115 }
1116
1117 void ELFObjectWriter::ComputeSectionOrder(MCAssembler &Asm,
1118                                   std::vector<const MCSectionELF*> &Sections) {
1119   for (MCAssembler::iterator it = Asm.begin(),
1120          ie = Asm.end(); it != ie; ++it) {
1121     const MCSectionELF &Section =
1122       static_cast<const MCSectionELF &>(it->getSection());
1123     if (Section.getType() == ELF::SHT_GROUP)
1124       Sections.push_back(&Section);
1125   }
1126
1127   for (MCAssembler::iterator it = Asm.begin(),
1128          ie = Asm.end(); it != ie; ++it) {
1129     const MCSectionELF &Section =
1130       static_cast<const MCSectionELF &>(it->getSection());
1131     if (Section.getType() != ELF::SHT_GROUP &&
1132         Section.getType() != ELF::SHT_REL &&
1133         Section.getType() != ELF::SHT_RELA)
1134       Sections.push_back(&Section);
1135   }
1136
1137   for (MCAssembler::iterator it = Asm.begin(),
1138          ie = Asm.end(); it != ie; ++it) {
1139     const MCSectionELF &Section =
1140       static_cast<const MCSectionELF &>(it->getSection());
1141     if (Section.getType() == ELF::SHT_REL ||
1142         Section.getType() == ELF::SHT_RELA)
1143       Sections.push_back(&Section);
1144   }
1145 }
1146
1147 void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1148                                   const MCAsmLayout &Layout) {
1149   GroupMapTy GroupMap;
1150   RevGroupMapTy RevGroupMap;
1151   SectionIndexMapTy SectionIndexMap;
1152
1153   unsigned NumUserSections = Asm.size();
1154
1155   DenseMap<const MCSectionELF*, const MCSectionELF*> RelMap;
1156   CreateRelocationSections(Asm, const_cast<MCAsmLayout&>(Layout), RelMap);
1157
1158   const unsigned NumUserAndRelocSections = Asm.size();
1159   CreateIndexedSections(Asm, const_cast<MCAsmLayout&>(Layout), GroupMap,
1160                         RevGroupMap, SectionIndexMap, RelMap);
1161   const unsigned AllSections = Asm.size();
1162   const unsigned NumIndexedSections = AllSections - NumUserAndRelocSections;
1163
1164   unsigned NumRegularSections = NumUserSections + NumIndexedSections;
1165
1166   // Compute symbol table information.
1167   ComputeSymbolTable(Asm, SectionIndexMap, RevGroupMap, NumRegularSections);
1168
1169
1170   WriteRelocations(Asm, const_cast<MCAsmLayout&>(Layout), RelMap);
1171
1172   CreateMetadataSections(const_cast<MCAssembler&>(Asm),
1173                          const_cast<MCAsmLayout&>(Layout),
1174                          SectionIndexMap,
1175                          RelMap);
1176
1177   uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
1178   uint64_t HeaderSize = is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
1179                                     sizeof(ELF::Elf32_Ehdr);
1180   uint64_t FileOff = HeaderSize;
1181
1182   std::vector<const MCSectionELF*> Sections;
1183   ComputeSectionOrder(Asm, Sections);
1184   unsigned NumSections = Sections.size();
1185   SectionOffsetMapTy SectionOffsetMap;
1186   for (unsigned i = 0; i < NumRegularSections + 1; ++i) {
1187     const MCSectionELF &Section = *Sections[i];
1188     const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1189
1190     FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1191
1192     // Remember the offset into the file for this section.
1193     SectionOffsetMap[&Section] = FileOff;
1194
1195     // Get the size of the section in the output file (including padding).
1196     FileOff += GetSectionFileSize(Layout, SD);
1197   }
1198
1199   FileOff = RoundUpToAlignment(FileOff, NaturalAlignment);
1200
1201   const unsigned SectionHeaderOffset = FileOff - HeaderSize;
1202
1203   uint64_t SectionHeaderEntrySize = is64Bit() ?
1204     sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr);
1205   FileOff += (NumSections + 1) * SectionHeaderEntrySize;
1206
1207   for (unsigned i = NumRegularSections + 1; i < NumSections; ++i) {
1208     const MCSectionELF &Section = *Sections[i];
1209     const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1210
1211     FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1212
1213     // Remember the offset into the file for this section.
1214     SectionOffsetMap[&Section] = FileOff;
1215
1216     // Get the size of the section in the output file (including padding).
1217     FileOff += GetSectionFileSize(Layout, SD);
1218   }
1219
1220   // Write out the ELF header ...
1221   WriteHeader(SectionHeaderOffset, NumSections + 1);
1222
1223   // ... then the regular sections ...
1224   // + because of .shstrtab
1225   for (unsigned i = 0; i < NumRegularSections + 1; ++i)
1226     WriteDataSectionData(Asm, Layout, *Sections[i]);
1227
1228   FileOff = OS.tell();
1229   uint64_t Padding = OffsetToAlignment(FileOff, NaturalAlignment);
1230   WriteZeros(Padding);
1231
1232   // ... then the section header table ...
1233   WriteSectionHeader(Asm, GroupMap, Layout, SectionIndexMap,
1234                      SectionOffsetMap);
1235
1236   FileOff = OS.tell();
1237
1238   // ... and then the remaining sections ...
1239   for (unsigned i = NumRegularSections + 1; i < NumSections; ++i)
1240     WriteDataSectionData(Asm, Layout, *Sections[i]);
1241 }
1242
1243 bool
1244 ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
1245                                                       const MCSymbolData &DataA,
1246                                                       const MCFragment &FB,
1247                                                       bool InSet,
1248                                                       bool IsPCRel) const {
1249   if (DataA.getFlags() & ELF_STB_Weak)
1250     return false;
1251   return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
1252                                                  Asm, DataA, FB,InSet, IsPCRel);
1253 }
1254
1255 MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
1256                                             raw_ostream &OS,
1257                                             bool IsLittleEndian) {
1258   switch (MOTW->getEMachine()) {
1259     case ELF::EM_386:
1260     case ELF::EM_X86_64:
1261     case ELF::EM_ARM:
1262     case ELF::EM_PPC:
1263     case ELF::EM_PPC64:
1264       return new ELFObjectWriter(MOTW, OS, IsLittleEndian); break;
1265     case ELF::EM_MBLAZE:
1266       return new MBlazeELFObjectWriter(MOTW, OS, IsLittleEndian); break;
1267     case ELF::EM_MIPS:
1268       return new MipsELFObjectWriter(MOTW, OS, IsLittleEndian); break;
1269     default: llvm_unreachable("Unsupported architecture"); break;
1270   }
1271 }
1272
1273 unsigned ELFObjectWriter::GetRelocType(const MCValue &Target,
1274                                        const MCFixup &Fixup,
1275                                        bool IsPCRel,
1276                                        bool IsRelocWithSymbol,
1277                                        int64_t Addend) const {
1278   return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel,
1279                                           IsRelocWithSymbol, Addend);
1280 }
1281
1282 /// START OF SUBCLASSES for ELFObjectWriter
1283 //===- MBlazeELFObjectWriter -------------------------------------------===//
1284
1285 MBlazeELFObjectWriter::MBlazeELFObjectWriter(MCELFObjectTargetWriter *MOTW,
1286                                              raw_ostream &_OS,
1287                                              bool IsLittleEndian)
1288   : ELFObjectWriter(MOTW, _OS, IsLittleEndian) {
1289 }
1290
1291 MBlazeELFObjectWriter::~MBlazeELFObjectWriter() {
1292 }
1293
1294 unsigned MBlazeELFObjectWriter::GetRelocType(const MCValue &Target,
1295                                              const MCFixup &Fixup,
1296                                              bool IsPCRel,
1297                                              bool IsRelocWithSymbol,
1298                                              int64_t Addend) const {
1299   // determine the type of the relocation
1300   unsigned Type;
1301   if (IsPCRel) {
1302     switch ((unsigned)Fixup.getKind()) {
1303     default:
1304       llvm_unreachable("Unimplemented");
1305     case FK_PCRel_4:
1306       Type = ELF::R_MICROBLAZE_64_PCREL;
1307       break;
1308     case FK_PCRel_2:
1309       Type = ELF::R_MICROBLAZE_32_PCREL;
1310       break;
1311     }
1312   } else {
1313     switch ((unsigned)Fixup.getKind()) {
1314     default: llvm_unreachable("invalid fixup kind!");
1315     case FK_Data_4:
1316       Type = ((IsRelocWithSymbol || Addend !=0)
1317               ? ELF::R_MICROBLAZE_32
1318               : ELF::R_MICROBLAZE_64);
1319       break;
1320     case FK_Data_2:
1321       Type = ELF::R_MICROBLAZE_32;
1322       break;
1323     }
1324   }
1325   return Type;
1326 }
1327
1328 //===- MipsELFObjectWriter -------------------------------------------===//
1329
1330 MipsELFObjectWriter::MipsELFObjectWriter(MCELFObjectTargetWriter *MOTW,
1331                                          raw_ostream &_OS,
1332                                          bool IsLittleEndian)
1333   : ELFObjectWriter(MOTW, _OS, IsLittleEndian) {}
1334
1335 MipsELFObjectWriter::~MipsELFObjectWriter() {}
1336
1337 // FIXME: get the real EABI Version from the Triple.
1338 unsigned MipsELFObjectWriter::getEFlags() const {
1339   return ELF::EF_MIPS_NOREORDER | ELF::EF_MIPS_ARCH_32R2;
1340 }
1341
1342 const MCSymbol *MipsELFObjectWriter::ExplicitRelSym(const MCAssembler &Asm,
1343                                                     const MCValue &Target,
1344                                                     const MCFragment &F,
1345                                                     const MCFixup &Fixup,
1346                                                     bool IsPCRel) const {
1347   assert(Target.getSymA() && "SymA cannot be 0.");
1348   const MCSymbol &Sym = Target.getSymA()->getSymbol();
1349   
1350   if (Sym.getSection().getKind().isMergeableCString() ||
1351       Sym.getSection().getKind().isMergeableConst())
1352     return &Sym;
1353
1354   return NULL;
1355 }
1356
1357 unsigned MipsELFObjectWriter::GetRelocType(const MCValue &Target,
1358                                            const MCFixup &Fixup,
1359                                            bool IsPCRel,
1360                                            bool IsRelocWithSymbol,
1361                                            int64_t Addend) const {
1362   // determine the type of the relocation
1363   unsigned Type = (unsigned)ELF::R_MIPS_NONE;
1364   unsigned Kind = (unsigned)Fixup.getKind();
1365
1366   switch (Kind) {
1367   default:
1368     llvm_unreachable("invalid fixup kind!");
1369   case FK_Data_4:
1370     Type = ELF::R_MIPS_32;
1371     break;
1372   case FK_GPRel_4:
1373     Type = ELF::R_MIPS_GPREL32;
1374     break;
1375   case Mips::fixup_Mips_GPREL16:
1376     Type = ELF::R_MIPS_GPREL16;
1377     break;
1378   case Mips::fixup_Mips_26:
1379     Type = ELF::R_MIPS_26;
1380     break;
1381   case Mips::fixup_Mips_CALL16:
1382     Type = ELF::R_MIPS_CALL16;
1383     break;
1384   case Mips::fixup_Mips_GOT_Global:
1385   case Mips::fixup_Mips_GOT_Local:
1386     Type = ELF::R_MIPS_GOT16;
1387     break;
1388   case Mips::fixup_Mips_HI16:
1389     Type = ELF::R_MIPS_HI16;
1390     break;
1391   case Mips::fixup_Mips_LO16:
1392     Type = ELF::R_MIPS_LO16;
1393     break;
1394   case Mips::fixup_Mips_TLSGD:
1395     Type = ELF::R_MIPS_TLS_GD;
1396     break;
1397   case Mips::fixup_Mips_GOTTPREL:
1398     Type = ELF::R_MIPS_TLS_GOTTPREL;
1399     break;
1400   case Mips::fixup_Mips_TPREL_HI:
1401     Type = ELF::R_MIPS_TLS_TPREL_HI16;
1402     break;
1403   case Mips::fixup_Mips_TPREL_LO:
1404     Type = ELF::R_MIPS_TLS_TPREL_LO16;
1405     break;
1406   case Mips::fixup_Mips_TLSLDM:
1407     Type = ELF::R_MIPS_TLS_LDM;
1408     break;
1409   case Mips::fixup_Mips_DTPREL_HI:
1410     Type = ELF::R_MIPS_TLS_DTPREL_HI16;
1411     break;
1412   case Mips::fixup_Mips_DTPREL_LO:
1413     Type = ELF::R_MIPS_TLS_DTPREL_LO16;
1414     break;
1415   case Mips::fixup_Mips_Branch_PCRel:
1416   case Mips::fixup_Mips_PC16:
1417     Type = ELF::R_MIPS_PC16;
1418     break;
1419   }
1420
1421   return Type;
1422 }