1 //===- lib/MC/ELFObjectWriter.cpp - ELF File Writer -------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements ELF object file writer information.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/ADT/SmallPtrSet.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"
32 #include "../Target/X86/X86FixupKinds.h"
33 #include "../Target/ARM/ARMFixupKinds.h"
38 static unsigned GetType(const MCSymbolData &SD) {
39 uint32_t Type = (SD.getFlags() & (0xf << ELF_STT_Shift)) >> ELF_STT_Shift;
40 assert(Type == ELF::STT_NOTYPE || Type == ELF::STT_OBJECT ||
41 Type == ELF::STT_FUNC || Type == ELF::STT_SECTION ||
42 Type == ELF::STT_FILE || Type == ELF::STT_COMMON ||
43 Type == ELF::STT_TLS);
47 static unsigned GetBinding(const MCSymbolData &SD) {
48 uint32_t Binding = (SD.getFlags() & (0xf << ELF_STB_Shift)) >> ELF_STB_Shift;
49 assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
50 Binding == ELF::STB_WEAK);
54 static void SetBinding(MCSymbolData &SD, unsigned Binding) {
55 assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
56 Binding == ELF::STB_WEAK);
57 uint32_t OtherFlags = SD.getFlags() & ~(0xf << ELF_STB_Shift);
58 SD.setFlags(OtherFlags | (Binding << ELF_STB_Shift));
61 static unsigned GetVisibility(MCSymbolData &SD) {
63 (SD.getFlags() & (0xf << ELF_STV_Shift)) >> ELF_STV_Shift;
64 assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL ||
65 Visibility == ELF::STV_HIDDEN || Visibility == ELF::STV_PROTECTED);
70 static bool RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
74 case MCSymbolRefExpr::VK_GOT:
75 case MCSymbolRefExpr::VK_PLT:
76 case MCSymbolRefExpr::VK_GOTPCREL:
77 case MCSymbolRefExpr::VK_TPOFF:
78 case MCSymbolRefExpr::VK_TLSGD:
79 case MCSymbolRefExpr::VK_GOTTPOFF:
80 case MCSymbolRefExpr::VK_INDNTPOFF:
81 case MCSymbolRefExpr::VK_NTPOFF:
82 case MCSymbolRefExpr::VK_GOTNTPOFF:
83 case MCSymbolRefExpr::VK_TLSLDM:
84 case MCSymbolRefExpr::VK_DTPOFF:
85 case MCSymbolRefExpr::VK_TLSLD:
91 class ELFObjectWriter : public MCObjectWriter {
93 /*static bool isFixupKindX86RIPRel(unsigned Kind) {
94 return Kind == X86::reloc_riprel_4byte ||
95 Kind == X86::reloc_riprel_4byte_movq_load;
99 /// ELFSymbolData - Helper struct for containing some precomputed information
101 struct ELFSymbolData {
102 MCSymbolData *SymbolData;
103 uint64_t StringIndex;
104 uint32_t SectionIndex;
106 // Support lexicographic sorting.
107 bool operator<(const ELFSymbolData &RHS) const {
108 if (GetType(*SymbolData) == ELF::STT_FILE)
110 if (GetType(*RHS.SymbolData) == ELF::STT_FILE)
112 return SymbolData->getSymbol().getName() <
113 RHS.SymbolData->getSymbol().getName();
117 /// @name Relocation Data
120 struct ELFRelocationEntry {
121 // Make these big enough for both 32-bit and 64-bit
125 const MCSymbol *Symbol;
129 : r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0) {}
131 ELFRelocationEntry(uint64_t RelocOffset, int Idx,
132 unsigned RelType, const MCSymbol *Sym,
134 : r_offset(RelocOffset), Index(Idx), Type(RelType),
135 Symbol(Sym), r_addend(Addend) {}
137 // Support lexicographic sorting.
138 bool operator<(const ELFRelocationEntry &RE) const {
139 return RE.r_offset < r_offset;
143 SmallPtrSet<const MCSymbol *, 16> UsedInReloc;
144 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc;
145 DenseMap<const MCSymbol *, const MCSymbol *> Renames;
147 llvm::DenseMap<const MCSectionData*,
148 std::vector<ELFRelocationEntry> > Relocations;
149 DenseMap<const MCSection*, uint64_t> SectionStringTableIndex;
152 /// @name Symbol Table Data
155 SmallString<256> StringTable;
156 std::vector<ELFSymbolData> LocalSymbolData;
157 std::vector<ELFSymbolData> ExternalSymbolData;
158 std::vector<ELFSymbolData> UndefinedSymbolData;
164 bool NeedsSymtabShndx;
166 unsigned Is64Bit : 1;
168 bool HasRelocationAddend;
170 Triple::OSType OSType;
174 // This holds the symbol table index of the last local symbol.
175 unsigned LastLocalSymbolIndex;
176 // This holds the .strtab section index.
177 unsigned StringTableIndex;
178 // This holds the .symtab section index.
179 unsigned SymbolTableIndex;
181 unsigned ShstrtabIndex;
184 const MCSymbol *SymbolToReloc(const MCAssembler &Asm,
185 const MCValue &Target,
186 const MCFragment &F) const;
189 ELFObjectWriter(raw_ostream &_OS, bool _Is64Bit, bool IsLittleEndian,
190 uint16_t _EMachine, bool _HasRelAddend,
191 Triple::OSType _OSType)
192 : MCObjectWriter(_OS, IsLittleEndian),
193 NeedsGOT(false), NeedsSymtabShndx(false),
194 Is64Bit(_Is64Bit), HasRelocationAddend(_HasRelAddend),
195 OSType(_OSType), EMachine(_EMachine) {
198 virtual ~ELFObjectWriter();
200 void WriteWord(uint64_t W) {
207 void StringLE16(char *buf, uint16_t Value) {
208 buf[0] = char(Value >> 0);
209 buf[1] = char(Value >> 8);
212 void StringLE32(char *buf, uint32_t Value) {
213 StringLE16(buf, uint16_t(Value >> 0));
214 StringLE16(buf + 2, uint16_t(Value >> 16));
217 void StringLE64(char *buf, uint64_t Value) {
218 StringLE32(buf, uint32_t(Value >> 0));
219 StringLE32(buf + 4, uint32_t(Value >> 32));
222 void StringBE16(char *buf ,uint16_t Value) {
223 buf[0] = char(Value >> 8);
224 buf[1] = char(Value >> 0);
227 void StringBE32(char *buf, uint32_t Value) {
228 StringBE16(buf, uint16_t(Value >> 16));
229 StringBE16(buf + 2, uint16_t(Value >> 0));
232 void StringBE64(char *buf, uint64_t Value) {
233 StringBE32(buf, uint32_t(Value >> 32));
234 StringBE32(buf + 4, uint32_t(Value >> 0));
237 void String8(MCDataFragment &F, uint8_t Value) {
240 F.getContents() += StringRef(buf, 1);
243 void String16(MCDataFragment &F, uint16_t Value) {
245 if (isLittleEndian())
246 StringLE16(buf, Value);
248 StringBE16(buf, Value);
249 F.getContents() += StringRef(buf, 2);
252 void String32(MCDataFragment &F, uint32_t Value) {
254 if (isLittleEndian())
255 StringLE32(buf, Value);
257 StringBE32(buf, Value);
258 F.getContents() += StringRef(buf, 4);
261 void String64(MCDataFragment &F, uint64_t Value) {
263 if (isLittleEndian())
264 StringLE64(buf, Value);
266 StringBE64(buf, Value);
267 F.getContents() += StringRef(buf, 8);
270 virtual void WriteHeader(uint64_t SectionDataSize, unsigned NumberOfSections);
272 virtual void WriteSymbolEntry(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
273 uint64_t name, uint8_t info,
274 uint64_t value, uint64_t size,
275 uint8_t other, uint32_t shndx,
278 virtual void WriteSymbol(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
280 const MCAsmLayout &Layout);
282 typedef DenseMap<const MCSectionELF*, uint32_t> SectionIndexMapTy;
283 virtual void WriteSymbolTable(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
284 const MCAssembler &Asm,
285 const MCAsmLayout &Layout,
286 const SectionIndexMapTy &SectionIndexMap);
288 virtual void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
289 const MCFragment *Fragment, const MCFixup &Fixup,
290 MCValue Target, uint64_t &FixedValue) {
291 assert(0 && "RecordRelocation is not specific enough");
294 virtual uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
297 // Map from a group section to the signature symbol
298 typedef DenseMap<const MCSectionELF*, const MCSymbol*> GroupMapTy;
299 // Map from a signature symbol to the group section
300 typedef DenseMap<const MCSymbol*, const MCSectionELF*> RevGroupMapTy;
302 /// ComputeSymbolTable - Compute the symbol table data
304 /// \param StringTable [out] - The string table data.
305 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
307 virtual void ComputeSymbolTable(MCAssembler &Asm,
308 const SectionIndexMapTy &SectionIndexMap,
309 RevGroupMapTy RevGroupMap);
311 virtual void ComputeIndexMap(MCAssembler &Asm,
312 SectionIndexMapTy &SectionIndexMap);
314 virtual void WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
315 const MCSectionData &SD);
317 virtual void WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout) {
318 for (MCAssembler::const_iterator it = Asm.begin(),
319 ie = Asm.end(); it != ie; ++it) {
320 WriteRelocation(Asm, Layout, *it);
324 virtual void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout,
325 const SectionIndexMapTy &SectionIndexMap);
327 virtual void CreateGroupSections(MCAssembler &Asm, MCAsmLayout &Layout,
328 GroupMapTy &GroupMap, RevGroupMapTy &RevGroupMap);
330 virtual void ExecutePostLayoutBinding(MCAssembler &Asm);
332 virtual void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
333 uint64_t Address, uint64_t Offset,
334 uint64_t Size, uint32_t Link, uint32_t Info,
335 uint64_t Alignment, uint64_t EntrySize);
337 virtual void WriteRelocationsFragment(const MCAssembler &Asm, MCDataFragment *F,
338 const MCSectionData *SD);
340 virtual bool IsFixupFullyResolved(const MCAssembler &Asm,
341 const MCValue Target,
343 const MCFragment *DF) const;
345 virtual void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
346 virtual void WriteSection(MCAssembler &Asm,
347 const SectionIndexMapTy &SectionIndexMap,
348 uint32_t GroupSymbolIndex,
349 uint64_t Offset, uint64_t Size, uint64_t Alignment,
350 const MCSectionELF &Section);
353 //===- X86ELFObjectWriter -------------------------------------------===//
355 class X86ELFObjectWriter : public ELFObjectWriter {
357 X86ELFObjectWriter(raw_ostream &_OS, bool _Is64Bit, bool IsLittleEndian,
358 uint16_t _EMachine, bool _HasRelAddend,
359 Triple::OSType _OSType);
361 virtual ~X86ELFObjectWriter();
362 virtual void RecordRelocation(const MCAssembler &Asm,
363 const MCAsmLayout &Layout,
364 const MCFragment *Fragment,
365 const MCFixup &Fixup, MCValue Target,
366 uint64_t &FixedValue);
369 static bool isFixupKindPCRel(unsigned Kind) {
376 case X86::reloc_riprel_4byte:
377 case X86::reloc_riprel_4byte_movq_load:
384 //===- ARMELFObjectWriter -------------------------------------------===//
386 class ARMELFObjectWriter : public ELFObjectWriter {
388 ARMELFObjectWriter(raw_ostream &_OS, bool _Is64Bit, bool IsLittleEndian,
389 uint16_t _EMachine, bool _HasRelAddend,
390 Triple::OSType _OSType);
392 virtual ~ARMELFObjectWriter();
393 virtual void RecordRelocation(const MCAssembler &Asm,
394 const MCAsmLayout &Layout,
395 const MCFragment *Fragment,
396 const MCFixup &Fixup, MCValue Target,
397 uint64_t &FixedValue);
400 // Fixme: pull up to ELFObjectWriter
401 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
404 static bool isFixupKindPCRel(unsigned Kind) {
411 case ARM::fixup_arm_ldst_pcrel_12:
412 case ARM::fixup_arm_pcrel_10:
413 case ARM::fixup_arm_branch:
419 //===- MBlazeELFObjectWriter -------------------------------------------===//
421 class MBlazeELFObjectWriter : public ELFObjectWriter {
423 MBlazeELFObjectWriter(raw_ostream &_OS, bool _Is64Bit, bool IsLittleEndian,
424 uint16_t _EMachine, bool _HasRelAddend,
425 Triple::OSType _OSType);
427 virtual ~MBlazeELFObjectWriter();
428 virtual void RecordRelocation(const MCAssembler &Asm,
429 const MCAsmLayout &Layout,
430 const MCFragment *Fragment,
431 const MCFixup &Fixup, MCValue Target,
432 uint64_t &FixedValue);
435 static bool isFixupKindPCRel(unsigned Kind) {
448 ELFObjectWriter::~ELFObjectWriter()
451 // Emit the ELF header.
452 void ELFObjectWriter::WriteHeader(uint64_t SectionDataSize,
453 unsigned NumberOfSections) {
459 // emitWord method behaves differently for ELF32 and ELF64, writing
460 // 4 bytes in the former and 8 in the latter.
462 Write8(0x7f); // e_ident[EI_MAG0]
463 Write8('E'); // e_ident[EI_MAG1]
464 Write8('L'); // e_ident[EI_MAG2]
465 Write8('F'); // e_ident[EI_MAG3]
467 Write8(Is64Bit ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
470 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
472 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
475 case Triple::FreeBSD: Write8(ELF::ELFOSABI_FREEBSD); break;
476 case Triple::Linux: Write8(ELF::ELFOSABI_LINUX); break;
477 default: Write8(ELF::ELFOSABI_NONE); break;
479 Write8(0); // e_ident[EI_ABIVERSION]
481 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
483 Write16(ELF::ET_REL); // e_type
485 Write16(EMachine); // e_machine = target
487 Write32(ELF::EV_CURRENT); // e_version
488 WriteWord(0); // e_entry, no entry point in .o file
489 WriteWord(0); // e_phoff, no program header for .o
490 WriteWord(SectionDataSize + (Is64Bit ? sizeof(ELF::Elf64_Ehdr) :
491 sizeof(ELF::Elf32_Ehdr))); // e_shoff = sec hdr table off in bytes
493 // FIXME: Make this configurable.
494 Write32(0); // e_flags = whatever the target wants
496 // e_ehsize = ELF header size
497 Write16(Is64Bit ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
499 Write16(0); // e_phentsize = prog header entry size
500 Write16(0); // e_phnum = # prog header entries = 0
502 // e_shentsize = Section header entry size
503 Write16(Is64Bit ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
505 // e_shnum = # of section header ents
506 if (NumberOfSections >= ELF::SHN_LORESERVE)
509 Write16(NumberOfSections);
511 // e_shstrndx = Section # of '.shstrtab'
512 if (NumberOfSections >= ELF::SHN_LORESERVE)
513 Write16(ELF::SHN_XINDEX);
515 Write16(ShstrtabIndex);
518 void ELFObjectWriter::WriteSymbolEntry(MCDataFragment *SymtabF,
519 MCDataFragment *ShndxF,
521 uint8_t info, uint64_t value,
522 uint64_t size, uint8_t other,
526 if (shndx >= ELF::SHN_LORESERVE && !Reserved)
527 String32(*ShndxF, shndx);
529 String32(*ShndxF, 0);
532 uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ?
533 uint16_t(ELF::SHN_XINDEX) : shndx;
536 String32(*SymtabF, name); // st_name
537 String8(*SymtabF, info); // st_info
538 String8(*SymtabF, other); // st_other
539 String16(*SymtabF, Index); // st_shndx
540 String64(*SymtabF, value); // st_value
541 String64(*SymtabF, size); // st_size
543 String32(*SymtabF, name); // st_name
544 String32(*SymtabF, value); // st_value
545 String32(*SymtabF, size); // st_size
546 String8(*SymtabF, info); // st_info
547 String8(*SymtabF, other); // st_other
548 String16(*SymtabF, Index); // st_shndx
552 static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout) {
553 if (Data.isCommon() && Data.isExternal())
554 return Data.getCommonAlignment();
556 const MCSymbol &Symbol = Data.getSymbol();
557 if (!Symbol.isInSection())
560 if (MCFragment *FF = Data.getFragment())
561 return Layout.getSymbolAddress(&Data) -
562 Layout.getSectionAddress(FF->getParent());
567 void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm) {
568 // The presence of symbol versions causes undefined symbols and
569 // versions declared with @@@ to be renamed.
571 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
572 ie = Asm.symbol_end(); it != ie; ++it) {
573 const MCSymbol &Alias = it->getSymbol();
574 const MCSymbol &Symbol = Alias.AliasedSymbol();
575 MCSymbolData &SD = Asm.getSymbolData(Symbol);
578 if (&Symbol == &Alias)
581 StringRef AliasName = Alias.getName();
582 size_t Pos = AliasName.find('@');
583 if (Pos == StringRef::npos)
586 // Aliases defined with .symvar copy the binding from the symbol they alias.
587 // This is the first place we are able to copy this information.
588 it->setExternal(SD.isExternal());
589 SetBinding(*it, GetBinding(SD));
591 StringRef Rest = AliasName.substr(Pos);
592 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
595 // FIXME: produce a better error message.
596 if (Symbol.isUndefined() && Rest.startswith("@@") &&
597 !Rest.startswith("@@@"))
598 report_fatal_error("A @@ version cannot be undefined");
600 Renames.insert(std::make_pair(&Symbol, &Alias));
604 void ELFObjectWriter::WriteSymbol(MCDataFragment *SymtabF,
605 MCDataFragment *ShndxF,
607 const MCAsmLayout &Layout) {
608 MCSymbolData &OrigData = *MSD.SymbolData;
610 Layout.getAssembler().getSymbolData(OrigData.getSymbol().AliasedSymbol());
612 bool IsReserved = Data.isCommon() || Data.getSymbol().isAbsolute() ||
613 Data.getSymbol().isVariable();
615 uint8_t Binding = GetBinding(OrigData);
616 uint8_t Visibility = GetVisibility(OrigData);
617 uint8_t Type = GetType(Data);
619 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
620 uint8_t Other = Visibility;
622 uint64_t Value = SymbolValue(Data, Layout);
626 assert(!(Data.isCommon() && !Data.isExternal()));
628 ESize = Data.getSize();
629 if (Data.getSize()) {
631 if (ESize->getKind() == MCExpr::Binary) {
632 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr *>(ESize);
634 if (BE->EvaluateAsRelocatable(Res, &Layout)) {
635 assert(!Res.getSymA() || !Res.getSymA()->getSymbol().isDefined());
636 assert(!Res.getSymB() || !Res.getSymB()->getSymbol().isDefined());
637 Size = Res.getConstant();
639 } else if (ESize->getKind() == MCExpr::Constant) {
640 Size = static_cast<const MCConstantExpr *>(ESize)->getValue();
642 assert(0 && "Unsupported size expression");
646 // Write out the symbol table entry
647 WriteSymbolEntry(SymtabF, ShndxF, MSD.StringIndex, Info, Value,
648 Size, Other, MSD.SectionIndex, IsReserved);
651 void ELFObjectWriter::WriteSymbolTable(MCDataFragment *SymtabF,
652 MCDataFragment *ShndxF,
653 const MCAssembler &Asm,
654 const MCAsmLayout &Layout,
655 const SectionIndexMapTy &SectionIndexMap) {
656 // The string table must be emitted first because we need the index
657 // into the string table for all the symbol names.
658 assert(StringTable.size() && "Missing string table");
660 // FIXME: Make sure the start of the symbol table is aligned.
662 // The first entry is the undefined symbol entry.
663 WriteSymbolEntry(SymtabF, ShndxF, 0, 0, 0, 0, 0, 0, false);
665 // Write the symbol table entries.
666 LastLocalSymbolIndex = LocalSymbolData.size() + 1;
667 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
668 ELFSymbolData &MSD = LocalSymbolData[i];
669 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
672 // Write out a symbol table entry for each regular section.
673 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e;
675 const MCSectionELF &Section =
676 static_cast<const MCSectionELF&>(i->getSection());
677 if (Section.getType() == ELF::SHT_RELA ||
678 Section.getType() == ELF::SHT_REL ||
679 Section.getType() == ELF::SHT_STRTAB ||
680 Section.getType() == ELF::SHT_SYMTAB)
682 WriteSymbolEntry(SymtabF, ShndxF, 0, ELF::STT_SECTION, 0, 0,
683 ELF::STV_DEFAULT, SectionIndexMap.lookup(&Section), false);
684 LastLocalSymbolIndex++;
687 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
688 ELFSymbolData &MSD = ExternalSymbolData[i];
689 MCSymbolData &Data = *MSD.SymbolData;
690 assert(((Data.getFlags() & ELF_STB_Global) ||
691 (Data.getFlags() & ELF_STB_Weak)) &&
692 "External symbol requires STB_GLOBAL or STB_WEAK flag");
693 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
694 if (GetBinding(Data) == ELF::STB_LOCAL)
695 LastLocalSymbolIndex++;
698 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
699 ELFSymbolData &MSD = UndefinedSymbolData[i];
700 MCSymbolData &Data = *MSD.SymbolData;
701 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
702 if (GetBinding(Data) == ELF::STB_LOCAL)
703 LastLocalSymbolIndex++;
707 const MCSymbol *ELFObjectWriter::SymbolToReloc(const MCAssembler &Asm,
708 const MCValue &Target,
709 const MCFragment &F) const {
710 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
711 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
712 const MCSymbol *Renamed = Renames.lookup(&Symbol);
713 const MCSymbolData &SD = Asm.getSymbolData(Symbol);
715 if (ASymbol.isUndefined()) {
721 if (SD.isExternal()) {
727 const MCSectionELF &Section =
728 static_cast<const MCSectionELF&>(ASymbol.getSection());
729 const SectionKind secKind = Section.getKind();
734 if (secKind.isThreadLocal()) {
740 MCSymbolRefExpr::VariantKind Kind = Target.getSymA()->getKind();
741 const MCSectionELF &Sec2 =
742 static_cast<const MCSectionELF&>(F.getParent()->getSection());
744 if (&Sec2 != &Section &&
745 (Kind == MCSymbolRefExpr::VK_PLT ||
746 Kind == MCSymbolRefExpr::VK_GOTPCREL ||
747 Kind == MCSymbolRefExpr::VK_GOTOFF)) {
753 if (Section.getFlags() & MCSectionELF::SHF_MERGE) {
754 if (Target.getConstant() == 0)
766 ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
768 MCSymbolData &SD = Asm.getSymbolData(*S);
769 return SD.getIndex();
772 static bool isInSymtab(const MCAssembler &Asm, const MCSymbolData &Data,
773 bool Used, bool Renamed) {
774 if (Data.getFlags() & ELF_Other_Weakref)
783 const MCSymbol &Symbol = Data.getSymbol();
785 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
788 const MCSymbol &A = Symbol.AliasedSymbol();
789 if (!A.isVariable() && A.isUndefined() && !Data.isCommon())
792 if (!Asm.isSymbolLinkerVisible(Symbol) && !Symbol.isUndefined())
795 if (Symbol.isTemporary())
801 static bool isLocal(const MCSymbolData &Data, bool isSignature,
802 bool isUsedInReloc) {
803 if (Data.isExternal())
806 const MCSymbol &Symbol = Data.getSymbol();
807 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
809 if (RefSymbol.isUndefined() && !RefSymbol.isVariable()) {
810 if (isSignature && !isUsedInReloc)
819 void ELFObjectWriter::ComputeIndexMap(MCAssembler &Asm,
820 SectionIndexMapTy &SectionIndexMap) {
822 for (MCAssembler::iterator it = Asm.begin(),
823 ie = Asm.end(); it != ie; ++it) {
824 const MCSectionELF &Section =
825 static_cast<const MCSectionELF &>(it->getSection());
826 if (Section.getType() != ELF::SHT_GROUP)
828 SectionIndexMap[&Section] = Index++;
831 for (MCAssembler::iterator it = Asm.begin(),
832 ie = Asm.end(); it != ie; ++it) {
833 const MCSectionELF &Section =
834 static_cast<const MCSectionELF &>(it->getSection());
835 if (Section.getType() == ELF::SHT_GROUP)
837 SectionIndexMap[&Section] = Index++;
841 void ELFObjectWriter::ComputeSymbolTable(MCAssembler &Asm,
842 const SectionIndexMapTy &SectionIndexMap,
843 RevGroupMapTy RevGroupMap) {
844 // FIXME: Is this the correct place to do this?
846 llvm::StringRef Name = "_GLOBAL_OFFSET_TABLE_";
847 MCSymbol *Sym = Asm.getContext().GetOrCreateSymbol(Name);
848 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
849 Data.setExternal(true);
850 SetBinding(Data, ELF::STB_GLOBAL);
853 // Build section lookup table.
854 int NumRegularSections = Asm.size();
856 // Index 0 is always the empty string.
857 StringMap<uint64_t> StringIndexMap;
858 StringTable += '\x00';
860 // Add the data for the symbols.
861 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
862 ie = Asm.symbol_end(); it != ie; ++it) {
863 const MCSymbol &Symbol = it->getSymbol();
865 bool Used = UsedInReloc.count(&Symbol);
866 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
867 bool isSignature = RevGroupMap.count(&Symbol);
869 if (!isInSymtab(Asm, *it,
870 Used || WeakrefUsed || isSignature,
871 Renames.count(&Symbol)))
876 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
878 // Undefined symbols are global, but this is the first place we
879 // are able to set it.
880 bool Local = isLocal(*it, isSignature, Used);
881 if (!Local && GetBinding(*it) == ELF::STB_LOCAL) {
882 MCSymbolData &SD = Asm.getSymbolData(RefSymbol);
883 SetBinding(*it, ELF::STB_GLOBAL);
884 SetBinding(SD, ELF::STB_GLOBAL);
887 if (RefSymbol.isUndefined() && !Used && WeakrefUsed)
888 SetBinding(*it, ELF::STB_WEAK);
890 if (it->isCommon()) {
892 MSD.SectionIndex = ELF::SHN_COMMON;
893 } else if (Symbol.isAbsolute() || RefSymbol.isVariable()) {
894 MSD.SectionIndex = ELF::SHN_ABS;
895 } else if (RefSymbol.isUndefined()) {
896 if (isSignature && !Used)
897 MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]);
899 MSD.SectionIndex = ELF::SHN_UNDEF;
901 const MCSectionELF &Section =
902 static_cast<const MCSectionELF&>(RefSymbol.getSection());
903 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
904 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
905 NeedsSymtabShndx = true;
906 assert(MSD.SectionIndex && "Invalid section index!");
909 // The @@@ in symbol version is replaced with @ in undefined symbols and
910 // @@ in defined ones.
911 StringRef Name = Symbol.getName();
914 size_t Pos = Name.find("@@@");
915 if (Pos != StringRef::npos) {
916 Buf += Name.substr(0, Pos);
917 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
918 Buf += Name.substr(Pos + Skip);
922 uint64_t &Entry = StringIndexMap[Name];
924 Entry = StringTable.size();
926 StringTable += '\x00';
928 MSD.StringIndex = Entry;
929 if (MSD.SectionIndex == ELF::SHN_UNDEF)
930 UndefinedSymbolData.push_back(MSD);
932 LocalSymbolData.push_back(MSD);
934 ExternalSymbolData.push_back(MSD);
937 // Symbols are required to be in lexicographic order.
938 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
939 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
940 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
942 // Set the symbol indices. Local symbols must come before all other
943 // symbols with non-local bindings.
945 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
946 LocalSymbolData[i].SymbolData->setIndex(Index++);
948 Index += NumRegularSections;
950 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
951 ExternalSymbolData[i].SymbolData->setIndex(Index++);
952 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
953 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
956 void ELFObjectWriter::WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
957 const MCSectionData &SD) {
958 if (!Relocations[&SD].empty()) {
959 MCContext &Ctx = Asm.getContext();
960 const MCSectionELF *RelaSection;
961 const MCSectionELF &Section =
962 static_cast<const MCSectionELF&>(SD.getSection());
964 const StringRef SectionName = Section.getSectionName();
965 std::string RelaSectionName = HasRelocationAddend ? ".rela" : ".rel";
966 RelaSectionName += SectionName;
969 if (HasRelocationAddend)
970 EntrySize = Is64Bit ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
972 EntrySize = Is64Bit ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
974 RelaSection = Ctx.getELFSection(RelaSectionName, HasRelocationAddend ?
975 ELF::SHT_RELA : ELF::SHT_REL, 0,
976 SectionKind::getReadOnly(),
979 MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
980 RelaSD.setAlignment(Is64Bit ? 8 : 4);
982 MCDataFragment *F = new MCDataFragment(&RelaSD);
984 WriteRelocationsFragment(Asm, F, &SD);
986 Asm.AddSectionToTheEnd(*this, RelaSD, Layout);
990 void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
991 uint64_t Flags, uint64_t Address,
992 uint64_t Offset, uint64_t Size,
993 uint32_t Link, uint32_t Info,
995 uint64_t EntrySize) {
996 Write32(Name); // sh_name: index into string table
997 Write32(Type); // sh_type
998 WriteWord(Flags); // sh_flags
999 WriteWord(Address); // sh_addr
1000 WriteWord(Offset); // sh_offset
1001 WriteWord(Size); // sh_size
1002 Write32(Link); // sh_link
1003 Write32(Info); // sh_info
1004 WriteWord(Alignment); // sh_addralign
1005 WriteWord(EntrySize); // sh_entsize
1008 void ELFObjectWriter::WriteRelocationsFragment(const MCAssembler &Asm,
1010 const MCSectionData *SD) {
1011 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
1012 // sort by the r_offset just like gnu as does
1013 array_pod_sort(Relocs.begin(), Relocs.end());
1015 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
1016 ELFRelocationEntry entry = Relocs[e - i - 1];
1020 else if (entry.Index < 0)
1021 entry.Index = getSymbolIndexInSymbolTable(Asm, entry.Symbol);
1023 entry.Index += LocalSymbolData.size();
1025 String64(*F, entry.r_offset);
1027 struct ELF::Elf64_Rela ERE64;
1028 ERE64.setSymbolAndType(entry.Index, entry.Type);
1029 String64(*F, ERE64.r_info);
1031 if (HasRelocationAddend)
1032 String64(*F, entry.r_addend);
1034 String32(*F, entry.r_offset);
1036 struct ELF::Elf32_Rela ERE32;
1037 ERE32.setSymbolAndType(entry.Index, entry.Type);
1038 String32(*F, ERE32.r_info);
1040 if (HasRelocationAddend)
1041 String32(*F, entry.r_addend);
1046 void ELFObjectWriter::CreateMetadataSections(MCAssembler &Asm,
1047 MCAsmLayout &Layout,
1048 const SectionIndexMapTy &SectionIndexMap) {
1049 MCContext &Ctx = Asm.getContext();
1052 unsigned EntrySize = Is64Bit ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
1054 // We construct .shstrtab, .symtab and .strtab in this order to match gnu as.
1055 const MCSectionELF *ShstrtabSection =
1056 Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
1057 SectionKind::getReadOnly());
1058 MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
1059 ShstrtabSD.setAlignment(1);
1060 ShstrtabIndex = Asm.size();
1062 const MCSectionELF *SymtabSection =
1063 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
1064 SectionKind::getReadOnly(),
1066 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
1067 SymtabSD.setAlignment(Is64Bit ? 8 : 4);
1068 SymbolTableIndex = Asm.size();
1070 MCSectionData *SymtabShndxSD = NULL;
1072 if (NeedsSymtabShndx) {
1073 const MCSectionELF *SymtabShndxSection =
1074 Ctx.getELFSection(".symtab_shndx", ELF::SHT_SYMTAB_SHNDX, 0,
1075 SectionKind::getReadOnly(), 4, "");
1076 SymtabShndxSD = &Asm.getOrCreateSectionData(*SymtabShndxSection);
1077 SymtabShndxSD->setAlignment(4);
1080 const MCSection *StrtabSection;
1081 StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
1082 SectionKind::getReadOnly());
1083 MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
1084 StrtabSD.setAlignment(1);
1085 StringTableIndex = Asm.size();
1087 WriteRelocations(Asm, Layout);
1090 F = new MCDataFragment(&SymtabSD);
1091 MCDataFragment *ShndxF = NULL;
1092 if (NeedsSymtabShndx) {
1093 ShndxF = new MCDataFragment(SymtabShndxSD);
1094 Asm.AddSectionToTheEnd(*this, *SymtabShndxSD, Layout);
1096 WriteSymbolTable(F, ShndxF, Asm, Layout, SectionIndexMap);
1097 Asm.AddSectionToTheEnd(*this, SymtabSD, Layout);
1099 F = new MCDataFragment(&StrtabSD);
1100 F->getContents().append(StringTable.begin(), StringTable.end());
1101 Asm.AddSectionToTheEnd(*this, StrtabSD, Layout);
1103 F = new MCDataFragment(&ShstrtabSD);
1105 // Section header string table.
1107 // The first entry of a string table holds a null character so skip
1110 F->getContents() += '\x00';
1112 StringMap<uint64_t> SecStringMap;
1113 for (MCAssembler::const_iterator it = Asm.begin(),
1114 ie = Asm.end(); it != ie; ++it) {
1115 const MCSectionELF &Section =
1116 static_cast<const MCSectionELF&>(it->getSection());
1117 // FIXME: We could merge suffixes like in .text and .rela.text.
1119 StringRef Name = Section.getSectionName();
1120 if (SecStringMap.count(Name)) {
1121 SectionStringTableIndex[&Section] = SecStringMap[Name];
1124 // Remember the index into the string table so we can write it
1125 // into the sh_name field of the section header table.
1126 SectionStringTableIndex[&Section] = Index;
1127 SecStringMap[Name] = Index;
1129 Index += Name.size() + 1;
1130 F->getContents() += Name;
1131 F->getContents() += '\x00';
1134 Asm.AddSectionToTheEnd(*this, ShstrtabSD, Layout);
1137 bool ELFObjectWriter::IsFixupFullyResolved(const MCAssembler &Asm,
1138 const MCValue Target,
1140 const MCFragment *DF) const {
1141 // If this is a PCrel relocation, find the section this fixup value is
1143 const MCSection *BaseSection = 0;
1145 BaseSection = &DF->getParent()->getSection();
1146 assert(BaseSection);
1149 const MCSection *SectionA = 0;
1150 const MCSymbol *SymbolA = 0;
1151 if (const MCSymbolRefExpr *A = Target.getSymA()) {
1152 SymbolA = &A->getSymbol();
1153 SectionA = &SymbolA->AliasedSymbol().getSection();
1156 const MCSection *SectionB = 0;
1157 const MCSymbol *SymbolB = 0;
1158 if (const MCSymbolRefExpr *B = Target.getSymB()) {
1159 SymbolB = &B->getSymbol();
1160 SectionB = &SymbolB->AliasedSymbol().getSection();
1164 return SectionA == SectionB;
1169 // Absolute address but PCrel instruction, so we need a relocation.
1173 // FIXME: This is in here just to match gnu as output. If the two ends
1174 // are in the same section, there is nothing that the linker can do to
1176 const MCSymbolData &DataA = Asm.getSymbolData(*SymbolA);
1177 if (DataA.isExternal())
1180 return BaseSection == SectionA;
1183 void ELFObjectWriter::CreateGroupSections(MCAssembler &Asm,
1184 MCAsmLayout &Layout,
1185 GroupMapTy &GroupMap,
1186 RevGroupMapTy &RevGroupMap) {
1188 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
1190 const MCSectionELF &Section =
1191 static_cast<const MCSectionELF&>(it->getSection());
1192 if (!(Section.getFlags() & MCSectionELF::SHF_GROUP))
1195 const MCSymbol *SignatureSymbol = Section.getGroup();
1196 Asm.getOrCreateSymbolData(*SignatureSymbol);
1197 const MCSectionELF *&Group = RevGroupMap[SignatureSymbol];
1199 Group = Asm.getContext().CreateELFGroupSection();
1200 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1201 Data.setAlignment(4);
1202 MCDataFragment *F = new MCDataFragment(&Data);
1203 String32(*F, ELF::GRP_COMDAT);
1205 GroupMap[Group] = SignatureSymbol;
1208 // Add sections to the groups
1210 unsigned NumGroups = RevGroupMap.size();
1211 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
1212 it != ie; ++it, ++Index) {
1213 const MCSectionELF &Section =
1214 static_cast<const MCSectionELF&>(it->getSection());
1215 if (!(Section.getFlags() & MCSectionELF::SHF_GROUP))
1217 const MCSectionELF *Group = RevGroupMap[Section.getGroup()];
1218 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1219 // FIXME: we could use the previous fragment
1220 MCDataFragment *F = new MCDataFragment(&Data);
1221 String32(*F, NumGroups + Index);
1224 for (RevGroupMapTy::const_iterator i = RevGroupMap.begin(),
1225 e = RevGroupMap.end(); i != e; ++i) {
1226 const MCSectionELF *Group = i->second;
1227 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1228 Asm.AddSectionToTheEnd(*this, Data, Layout);
1232 void ELFObjectWriter::WriteSection(MCAssembler &Asm,
1233 const SectionIndexMapTy &SectionIndexMap,
1234 uint32_t GroupSymbolIndex,
1235 uint64_t Offset, uint64_t Size,
1237 const MCSectionELF &Section) {
1238 uint64_t sh_link = 0;
1239 uint64_t sh_info = 0;
1241 switch(Section.getType()) {
1242 case ELF::SHT_DYNAMIC:
1243 sh_link = SectionStringTableIndex[&Section];
1248 case ELF::SHT_RELA: {
1249 const MCSectionELF *SymtabSection;
1250 const MCSectionELF *InfoSection;
1251 SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB,
1253 SectionKind::getReadOnly());
1254 sh_link = SectionIndexMap.lookup(SymtabSection);
1255 assert(sh_link && ".symtab not found");
1257 // Remove ".rel" and ".rela" prefixes.
1258 unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
1259 StringRef SectionName = Section.getSectionName().substr(SecNameLen);
1261 InfoSection = Asm.getContext().getELFSection(SectionName,
1262 ELF::SHT_PROGBITS, 0,
1263 SectionKind::getReadOnly());
1264 sh_info = SectionIndexMap.lookup(InfoSection);
1268 case ELF::SHT_SYMTAB:
1269 case ELF::SHT_DYNSYM:
1270 sh_link = StringTableIndex;
1271 sh_info = LastLocalSymbolIndex;
1274 case ELF::SHT_SYMTAB_SHNDX:
1275 sh_link = SymbolTableIndex;
1278 case ELF::SHT_PROGBITS:
1279 case ELF::SHT_STRTAB:
1280 case ELF::SHT_NOBITS:
1282 case ELF::SHT_ARM_ATTRIBUTES:
1286 case ELF::SHT_GROUP: {
1287 sh_link = SymbolTableIndex;
1288 sh_info = GroupSymbolIndex;
1293 assert(0 && "FIXME: sh_type value not supported!");
1297 WriteSecHdrEntry(SectionStringTableIndex[&Section], Section.getType(),
1298 Section.getFlags(), 0, Offset, Size, sh_link, sh_info,
1299 Alignment, Section.getEntrySize());
1302 void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1303 const MCAsmLayout &Layout) {
1304 GroupMapTy GroupMap;
1305 RevGroupMapTy RevGroupMap;
1306 CreateGroupSections(Asm, const_cast<MCAsmLayout&>(Layout), GroupMap,
1309 SectionIndexMapTy SectionIndexMap;
1311 ComputeIndexMap(Asm, SectionIndexMap);
1313 // Compute symbol table information.
1314 ComputeSymbolTable(Asm, SectionIndexMap, RevGroupMap);
1316 CreateMetadataSections(const_cast<MCAssembler&>(Asm),
1317 const_cast<MCAsmLayout&>(Layout),
1320 // Update to include the metadata sections.
1321 ComputeIndexMap(Asm, SectionIndexMap);
1323 // Add 1 for the null section.
1324 unsigned NumSections = Asm.size() + 1;
1325 uint64_t NaturalAlignment = Is64Bit ? 8 : 4;
1326 uint64_t HeaderSize = Is64Bit ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr);
1327 uint64_t FileOff = HeaderSize;
1329 std::vector<const MCSectionELF*> Sections;
1330 Sections.resize(NumSections);
1332 for (SectionIndexMapTy::const_iterator i=
1333 SectionIndexMap.begin(), e = SectionIndexMap.end(); i != e; ++i) {
1334 const std::pair<const MCSectionELF*, uint32_t> &p = *i;
1335 Sections[p.second] = p.first;
1338 for (unsigned i = 1; i < NumSections; ++i) {
1339 const MCSectionELF &Section = *Sections[i];
1340 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1342 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1344 // Get the size of the section in the output file (including padding).
1345 uint64_t Size = Layout.getSectionFileSize(&SD);
1350 FileOff = RoundUpToAlignment(FileOff, NaturalAlignment);
1352 // Write out the ELF header ...
1353 WriteHeader(FileOff - HeaderSize, NumSections);
1355 FileOff = HeaderSize;
1357 // ... then all of the sections ...
1358 DenseMap<const MCSection*, uint64_t> SectionOffsetMap;
1360 for (unsigned i = 1; i < NumSections; ++i) {
1361 const MCSectionELF &Section = *Sections[i];
1362 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1364 uint64_t Padding = OffsetToAlignment(FileOff, SD.getAlignment());
1365 WriteZeros(Padding);
1368 // Remember the offset into the file for this section.
1369 SectionOffsetMap[&Section] = FileOff;
1371 FileOff += Layout.getSectionFileSize(&SD);
1373 Asm.WriteSectionData(&SD, Layout, this);
1376 uint64_t Padding = OffsetToAlignment(FileOff, NaturalAlignment);
1377 WriteZeros(Padding);
1380 // ... and then the section header table.
1381 // Should we align the section header table?
1383 // Null section first.
1384 uint64_t FirstSectionSize =
1385 NumSections >= ELF::SHN_LORESERVE ? NumSections : 0;
1386 uint32_t FirstSectionLink =
1387 ShstrtabIndex >= ELF::SHN_LORESERVE ? ShstrtabIndex : 0;
1388 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, FirstSectionLink, 0, 0, 0);
1390 for (unsigned i = 1; i < NumSections; ++i) {
1391 const MCSectionELF &Section = *Sections[i];
1392 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1393 uint32_t GroupSymbolIndex;
1394 if (Section.getType() != ELF::SHT_GROUP)
1395 GroupSymbolIndex = 0;
1397 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm, GroupMap[&Section]);
1399 WriteSection(Asm, SectionIndexMap, GroupSymbolIndex,
1400 SectionOffsetMap[&Section], Layout.getSectionSize(&SD),
1401 SD.getAlignment(), Section);
1405 MCObjectWriter *llvm::createELFObjectWriter(raw_ostream &OS,
1407 Triple::OSType OSType,
1409 bool IsLittleEndian,
1410 bool HasRelocationAddend) {
1413 case ELF::EM_X86_64:
1414 return new X86ELFObjectWriter(OS, Is64Bit, IsLittleEndian, EMachine,
1415 HasRelocationAddend, OSType); break;
1417 return new ARMELFObjectWriter(OS, Is64Bit, IsLittleEndian, EMachine,
1418 HasRelocationAddend, OSType); break;
1419 case ELF::EM_MBLAZE:
1420 return new MBlazeELFObjectWriter(OS, Is64Bit, IsLittleEndian, EMachine,
1421 HasRelocationAddend, OSType); break;
1422 default: llvm_unreachable("Unsupported architecture"); break;
1427 /// START OF SUBCLASSES for ELFObjectWriter
1428 //===- ARMELFObjectWriter -------------------------------------------===//
1430 ARMELFObjectWriter::ARMELFObjectWriter(raw_ostream &_OS, bool _Is64Bit,
1431 bool _IsLittleEndian,
1432 uint16_t _EMachine, bool _HasRelocationAddend,
1433 Triple::OSType _OSType)
1434 : ELFObjectWriter(_OS, _Is64Bit, _IsLittleEndian, _EMachine,
1435 _HasRelocationAddend, _OSType)
1438 ARMELFObjectWriter::~ARMELFObjectWriter()
1441 unsigned ARMELFObjectWriter::GetRelocType(const MCValue &Target,
1442 const MCFixup &Fixup,
1444 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1445 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
1449 default: assert(0 && "Unimplemented Modifier");
1450 case MCSymbolRefExpr::VK_None: break;
1452 switch ((unsigned)Fixup.getKind()) {
1453 default: assert(0 && "Unimplemented");
1454 case ARM::fixup_arm_branch: return ELF::R_ARM_CALL; break;
1457 switch ((unsigned)Fixup.getKind()) {
1458 default: llvm_unreachable("invalid fixup kind!");
1459 case ARM::fixup_arm_ldst_pcrel_12:
1460 case ARM::fixup_arm_pcrel_10:
1461 case ARM::fixup_arm_adr_pcrel_12:
1462 assert(0 && "Unimplemented"); break;
1463 case ARM::fixup_arm_branch:
1464 return ELF::R_ARM_CALL; break;
1465 case ARM::fixup_arm_movt_hi16:
1466 return ELF::R_ARM_MOVT_ABS; break;
1467 case ARM::fixup_arm_movw_lo16:
1468 return ELF::R_ARM_MOVW_ABS_NC; break;
1472 if (RelocNeedsGOT(Modifier))
1477 void ARMELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
1478 const MCAsmLayout &Layout,
1479 const MCFragment *Fragment,
1480 const MCFixup &Fixup,
1482 uint64_t &FixedValue) {
1485 int64_t Value = Target.getConstant();
1486 const MCSymbol *RelocSymbol = NULL;
1488 bool IsPCRel = isFixupKindPCRel(Fixup.getKind());
1489 if (!Target.isAbsolute()) {
1490 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
1491 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
1492 RelocSymbol = SymbolToReloc(Asm, Target, *Fragment);
1494 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
1495 const MCSymbol &SymbolB = RefB->getSymbol();
1496 MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
1498 MCSectionData *Sec = Fragment->getParent();
1500 // Offset of the symbol in the section
1501 int64_t a = Layout.getSymbolAddress(&SDB) - Layout.getSectionAddress(Sec);
1503 // Ofeset of the relocation in the section
1504 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
1509 MCSymbolData &SD = Asm.getSymbolData(ASymbol);
1510 MCFragment *F = SD.getFragment();
1512 Index = F->getParent()->getOrdinal() + 1;
1514 MCSectionData *FSD = F->getParent();
1515 // Offset of the symbol in the section
1516 Value += Layout.getSymbolAddress(&SD) - Layout.getSectionAddress(FSD);
1518 if (Asm.getSymbolData(Symbol).getFlags() & ELF_Other_Weakref)
1519 WeakrefUsedInReloc.insert(RelocSymbol);
1521 UsedInReloc.insert(RelocSymbol);
1525 // Compensate for the addend on i386.
1532 // determine the type of the relocation
1533 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
1535 uint64_t RelocOffset = Layout.getFragmentOffset(Fragment) +
1538 if (!HasRelocationAddend) Addend = 0;
1539 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
1540 Relocations[Fragment->getParent()].push_back(ERE);
1543 //===- MBlazeELFObjectWriter -------------------------------------------===//
1545 MBlazeELFObjectWriter::MBlazeELFObjectWriter(raw_ostream &_OS, bool _Is64Bit,
1546 bool _IsLittleEndian,
1548 bool _HasRelocationAddend,
1549 Triple::OSType _OSType)
1550 : ELFObjectWriter(_OS, _Is64Bit, _IsLittleEndian, _EMachine,
1551 _HasRelocationAddend, _OSType) {
1554 MBlazeELFObjectWriter::~MBlazeELFObjectWriter() {
1557 void MBlazeELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
1558 const MCAsmLayout &Layout,
1559 const MCFragment *Fragment,
1560 const MCFixup &Fixup,
1562 uint64_t &FixedValue) {
1565 int64_t Value = Target.getConstant();
1566 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
1567 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
1568 const MCSymbol *RelocSymbol = SymbolToReloc(Asm, Target, *Fragment);
1570 bool IsPCRel = isFixupKindPCRel(Fixup.getKind());
1571 if (!Target.isAbsolute()) {
1572 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
1573 const MCSymbol &SymbolB = RefB->getSymbol();
1574 MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
1576 MCSectionData *Sec = Fragment->getParent();
1578 // Offset of the symbol in the section
1579 int64_t a = Layout.getSymbolAddress(&SDB) - Layout.getSectionAddress(Sec);
1581 // Ofeset of the relocation in the section
1582 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
1587 MCSymbolData &SD = Asm.getSymbolData(ASymbol);
1588 MCFragment *F = SD.getFragment();
1590 Index = F->getParent()->getOrdinal();
1592 MCSectionData *FSD = F->getParent();
1593 // Offset of the symbol in the section
1594 Value += Layout.getSymbolAddress(&SD) - Layout.getSectionAddress(FSD);
1596 if (Asm.getSymbolData(Symbol).getFlags() & ELF_Other_Weakref)
1597 WeakrefUsedInReloc.insert(RelocSymbol);
1599 UsedInReloc.insert(RelocSymbol);
1607 // determine the type of the relocation
1610 switch ((unsigned)Fixup.getKind()) {
1612 llvm_unreachable("Unimplemented");
1614 Type = ELF::R_MICROBLAZE_64_PCREL;
1617 Type = ELF::R_MICROBLAZE_32_PCREL;
1621 switch ((unsigned)Fixup.getKind()) {
1622 default: llvm_unreachable("invalid fixup kind!");
1624 Type = (RelocSymbol || Addend !=0) ? ELF::R_MICROBLAZE_32
1625 : ELF::R_MICROBLAZE_64;
1628 Type = ELF::R_MICROBLAZE_32;
1633 MCSymbolRefExpr::VariantKind Modifier = Target.getSymA()->getKind();
1634 if (RelocNeedsGOT(Modifier))
1637 uint64_t RelocOffset = Layout.getFragmentOffset(Fragment) +
1640 if (!HasRelocationAddend) Addend = 0;
1641 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
1642 Relocations[Fragment->getParent()].push_back(ERE);
1645 //===- X86ELFObjectWriter -------------------------------------------===//
1648 X86ELFObjectWriter::X86ELFObjectWriter(raw_ostream &_OS, bool _Is64Bit,
1649 bool _IsLittleEndian,
1650 uint16_t _EMachine, bool _HasRelocationAddend,
1651 Triple::OSType _OSType)
1652 : ELFObjectWriter(_OS, _Is64Bit, _IsLittleEndian, _EMachine,
1653 _HasRelocationAddend, _OSType)
1656 X86ELFObjectWriter::~X86ELFObjectWriter()
1659 void X86ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
1660 const MCAsmLayout &Layout,
1661 const MCFragment *Fragment,
1662 const MCFixup &Fixup,
1664 uint64_t &FixedValue) {
1667 int64_t Value = Target.getConstant();
1668 const MCSymbol *RelocSymbol = NULL;
1670 bool IsPCRel = isFixupKindPCRel(Fixup.getKind());
1671 if (!Target.isAbsolute()) {
1672 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
1673 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
1674 RelocSymbol = SymbolToReloc(Asm, Target, *Fragment);
1676 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
1677 const MCSymbol &SymbolB = RefB->getSymbol();
1678 MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
1680 MCSectionData *Sec = Fragment->getParent();
1682 // Offset of the symbol in the section
1683 int64_t a = Layout.getSymbolAddress(&SDB) - Layout.getSectionAddress(Sec);
1685 // Ofeset of the relocation in the section
1686 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
1691 MCSymbolData &SD = Asm.getSymbolData(ASymbol);
1692 MCFragment *F = SD.getFragment();
1694 Index = F->getParent()->getOrdinal() + 1;
1696 MCSectionData *FSD = F->getParent();
1697 // Offset of the symbol in the section
1698 Value += Layout.getSymbolAddress(&SD) - Layout.getSectionAddress(FSD);
1700 if (Asm.getSymbolData(Symbol).getFlags() & ELF_Other_Weakref)
1701 WeakrefUsedInReloc.insert(RelocSymbol);
1703 UsedInReloc.insert(RelocSymbol);
1707 // Compensate for the addend on i386.
1714 // determine the type of the relocation
1716 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1717 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
1723 llvm_unreachable("Unimplemented");
1724 case MCSymbolRefExpr::VK_None:
1725 Type = ELF::R_X86_64_PC32;
1727 case MCSymbolRefExpr::VK_PLT:
1728 Type = ELF::R_X86_64_PLT32;
1730 case MCSymbolRefExpr::VK_GOTPCREL:
1731 Type = ELF::R_X86_64_GOTPCREL;
1733 case MCSymbolRefExpr::VK_GOTTPOFF:
1734 Type = ELF::R_X86_64_GOTTPOFF;
1736 case MCSymbolRefExpr::VK_TLSGD:
1737 Type = ELF::R_X86_64_TLSGD;
1739 case MCSymbolRefExpr::VK_TLSLD:
1740 Type = ELF::R_X86_64_TLSLD;
1744 switch ((unsigned)Fixup.getKind()) {
1745 default: llvm_unreachable("invalid fixup kind!");
1746 case FK_Data_8: Type = ELF::R_X86_64_64; break;
1747 case X86::reloc_signed_4byte:
1749 assert(isInt<32>(Target.getConstant()));
1752 llvm_unreachable("Unimplemented");
1753 case MCSymbolRefExpr::VK_None:
1754 Type = ELF::R_X86_64_32S;
1756 case MCSymbolRefExpr::VK_GOT:
1757 Type = ELF::R_X86_64_GOT32;
1759 case MCSymbolRefExpr::VK_GOTPCREL:
1760 Type = ELF::R_X86_64_GOTPCREL;
1762 case MCSymbolRefExpr::VK_TPOFF:
1763 Type = ELF::R_X86_64_TPOFF32;
1765 case MCSymbolRefExpr::VK_DTPOFF:
1766 Type = ELF::R_X86_64_DTPOFF32;
1771 Type = ELF::R_X86_64_32;
1773 case FK_Data_2: Type = ELF::R_X86_64_16; break;
1775 case FK_Data_1: Type = ELF::R_X86_64_8; break;
1782 llvm_unreachable("Unimplemented");
1783 case MCSymbolRefExpr::VK_None:
1784 Type = ELF::R_386_PC32;
1786 case MCSymbolRefExpr::VK_PLT:
1787 Type = ELF::R_386_PLT32;
1791 switch ((unsigned)Fixup.getKind()) {
1792 default: llvm_unreachable("invalid fixup kind!");
1794 case X86::reloc_global_offset_table:
1795 Type = ELF::R_386_GOTPC;
1798 // FIXME: Should we avoid selecting reloc_signed_4byte in 32 bit mode
1800 case X86::reloc_signed_4byte:
1805 llvm_unreachable("Unimplemented");
1806 case MCSymbolRefExpr::VK_None:
1807 Type = ELF::R_386_32;
1809 case MCSymbolRefExpr::VK_GOT:
1810 Type = ELF::R_386_GOT32;
1812 case MCSymbolRefExpr::VK_GOTOFF:
1813 Type = ELF::R_386_GOTOFF;
1815 case MCSymbolRefExpr::VK_TLSGD:
1816 Type = ELF::R_386_TLS_GD;
1818 case MCSymbolRefExpr::VK_TPOFF:
1819 Type = ELF::R_386_TLS_LE_32;
1821 case MCSymbolRefExpr::VK_INDNTPOFF:
1822 Type = ELF::R_386_TLS_IE;
1824 case MCSymbolRefExpr::VK_NTPOFF:
1825 Type = ELF::R_386_TLS_LE;
1827 case MCSymbolRefExpr::VK_GOTNTPOFF:
1828 Type = ELF::R_386_TLS_GOTIE;
1830 case MCSymbolRefExpr::VK_TLSLDM:
1831 Type = ELF::R_386_TLS_LDM;
1833 case MCSymbolRefExpr::VK_DTPOFF:
1834 Type = ELF::R_386_TLS_LDO_32;
1838 case FK_Data_2: Type = ELF::R_386_16; break;
1840 case FK_Data_1: Type = ELF::R_386_8; break;
1845 if (RelocNeedsGOT(Modifier))
1849 uint64_t RelocOffset = Layout.getFragmentOffset(Fragment) +
1852 if (!HasRelocationAddend) Addend = 0;
1853 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
1854 Relocations[Fragment->getParent()].push_back(ERE);