blob: 1fc844cc4a2dd286057058e1bd858eecf84e0207 [file] [log] [blame]
Matt Fleming3565a062010-08-16 18:57:57 +00001//===- 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
Rafael Espindola8f413fa2010-10-05 15:11:03 +000014#include "llvm/ADT/SmallPtrSet.h"
Matt Fleming3565a062010-08-16 18:57:57 +000015#include "llvm/ADT/STLExtras.h"
16#include "llvm/ADT/StringMap.h"
17#include "llvm/ADT/Twine.h"
18#include "llvm/MC/MCAssembler.h"
19#include "llvm/MC/MCAsmLayout.h"
20#include "llvm/MC/MCContext.h"
21#include "llvm/MC/MCELFSymbolFlags.h"
22#include "llvm/MC/MCExpr.h"
23#include "llvm/MC/MCObjectWriter.h"
24#include "llvm/MC/MCSectionELF.h"
25#include "llvm/MC/MCSymbol.h"
26#include "llvm/MC/MCValue.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/ErrorHandling.h"
29#include "llvm/Support/ELF.h"
30#include "llvm/Target/TargetAsmBackend.h"
31
32#include "../Target/X86/X86FixupKinds.h"
Jason W Kim4a511f02010-11-22 18:41:13 +000033#include "../Target/ARM/ARMFixupKinds.h"
Matt Fleming3565a062010-08-16 18:57:57 +000034
35#include <vector>
36using namespace llvm;
37
Rafael Espindolaad49cf52010-09-18 15:03:21 +000038static 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);
44 return Type;
45}
46
Rafael Espindolae15eb4e2010-09-23 19:55:14 +000047static 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);
51 return Binding;
52}
53
54static 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));
59}
60
Rafael Espindola152c1062010-10-06 21:02:29 +000061static unsigned GetVisibility(MCSymbolData &SD) {
62 unsigned Visibility =
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);
66 return Visibility;
67}
68
Wesley Peck4b047132010-11-21 22:06:28 +000069
Rafael Espindolaa0a2f872010-10-28 14:22:44 +000070static bool RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
71 switch (Variant) {
Rafael Espindola5c77c162010-10-05 15:48:37 +000072 default:
73 return false;
Rafael Espindolaa0a2f872010-10-28 14:22:44 +000074 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:
Rafael Espindolaa264f722010-10-28 14:37:09 +000083 case MCSymbolRefExpr::VK_TLSLDM:
Rafael Espindola0cf15d62010-10-28 14:48:59 +000084 case MCSymbolRefExpr::VK_DTPOFF:
Rafael Espindolab4d17212010-10-28 15:02:40 +000085 case MCSymbolRefExpr::VK_TLSLD:
Rafael Espindola5c77c162010-10-05 15:48:37 +000086 return true;
87 }
88}
89
Matt Fleming3565a062010-08-16 18:57:57 +000090namespace {
Daniel Dunbar115a3dd2010-11-13 07:33:40 +000091 class ELFObjectWriter : public MCObjectWriter {
Jason W Kimd3443e92010-11-15 16:18:39 +000092 protected:
Chris Lattnerb188a372010-08-28 03:21:03 +000093 /*static bool isFixupKindX86RIPRel(unsigned Kind) {
Matt Fleming3565a062010-08-16 18:57:57 +000094 return Kind == X86::reloc_riprel_4byte ||
95 Kind == X86::reloc_riprel_4byte_movq_load;
Chris Lattnerb188a372010-08-28 03:21:03 +000096 }*/
Matt Fleming3565a062010-08-16 18:57:57 +000097
98
99 /// ELFSymbolData - Helper struct for containing some precomputed information
100 /// on symbols.
101 struct ELFSymbolData {
102 MCSymbolData *SymbolData;
103 uint64_t StringIndex;
104 uint32_t SectionIndex;
105
106 // Support lexicographic sorting.
107 bool operator<(const ELFSymbolData &RHS) const {
Rafael Espindolaad49cf52010-09-18 15:03:21 +0000108 if (GetType(*SymbolData) == ELF::STT_FILE)
109 return true;
110 if (GetType(*RHS.SymbolData) == ELF::STT_FILE)
111 return false;
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000112 return SymbolData->getSymbol().getName() <
113 RHS.SymbolData->getSymbol().getName();
Matt Fleming3565a062010-08-16 18:57:57 +0000114 }
115 };
116
117 /// @name Relocation Data
118 /// @{
119
120 struct ELFRelocationEntry {
121 // Make these big enough for both 32-bit and 64-bit
122 uint64_t r_offset;
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000123 int Index;
124 unsigned Type;
125 const MCSymbol *Symbol;
Matt Fleming3565a062010-08-16 18:57:57 +0000126 uint64_t r_addend;
Jason W Kim858e7502010-11-22 18:42:07 +0000127
Jason W Kim4a511f02010-11-22 18:41:13 +0000128 ELFRelocationEntry()
129 : r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0) {}
130
Jason W Kim10907422010-11-22 22:05:16 +0000131 ELFRelocationEntry(uint64_t RelocOffset, int Idx,
132 unsigned RelType, const MCSymbol *Sym,
Jason W Kim4a511f02010-11-22 18:41:13 +0000133 uint64_t Addend)
Jason W Kim10907422010-11-22 22:05:16 +0000134 : r_offset(RelocOffset), Index(Idx), Type(RelType),
135 Symbol(Sym), r_addend(Addend) {}
Matt Fleming3565a062010-08-16 18:57:57 +0000136
137 // Support lexicographic sorting.
138 bool operator<(const ELFRelocationEntry &RE) const {
139 return RE.r_offset < r_offset;
140 }
141 };
142
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000143 SmallPtrSet<const MCSymbol *, 16> UsedInReloc;
Rafael Espindola484291c2010-11-01 14:28:48 +0000144 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc;
Rafael Espindola88182132010-10-27 15:18:17 +0000145 DenseMap<const MCSymbol *, const MCSymbol *> Renames;
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000146
Matt Fleming3565a062010-08-16 18:57:57 +0000147 llvm::DenseMap<const MCSectionData*,
148 std::vector<ELFRelocationEntry> > Relocations;
149 DenseMap<const MCSection*, uint64_t> SectionStringTableIndex;
150
151 /// @}
152 /// @name Symbol Table Data
153 /// @{
154
155 SmallString<256> StringTable;
156 std::vector<ELFSymbolData> LocalSymbolData;
157 std::vector<ELFSymbolData> ExternalSymbolData;
158 std::vector<ELFSymbolData> UndefinedSymbolData;
159
160 /// @}
161
Rafael Espindola5c77c162010-10-05 15:48:37 +0000162 bool NeedsGOT;
163
Rafael Espindola7be2c332010-10-31 00:16:26 +0000164 bool NeedsSymtabShndx;
165
Matt Fleming3565a062010-08-16 18:57:57 +0000166 unsigned Is64Bit : 1;
167
168 bool HasRelocationAddend;
169
Roman Divacky5baf79e2010-09-09 17:57:50 +0000170 Triple::OSType OSType;
171
Wesley Peckeecb8582010-10-22 15:52:49 +0000172 uint16_t EMachine;
173
Matt Fleming3565a062010-08-16 18:57:57 +0000174 // This holds the symbol table index of the last local symbol.
175 unsigned LastLocalSymbolIndex;
176 // This holds the .strtab section index.
177 unsigned StringTableIndex;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000178 // This holds the .symtab section index.
179 unsigned SymbolTableIndex;
Matt Fleming3565a062010-08-16 18:57:57 +0000180
181 unsigned ShstrtabIndex;
182
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000183
184 const MCSymbol *SymbolToReloc(const MCAssembler &Asm,
185 const MCValue &Target,
186 const MCFragment &F) const;
187
Matt Fleming3565a062010-08-16 18:57:57 +0000188 public:
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000189 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),
Roman Divacky5baf79e2010-09-09 17:57:50 +0000194 Is64Bit(_Is64Bit), HasRelocationAddend(_HasRelAddend),
Wesley Peckeecb8582010-10-22 15:52:49 +0000195 OSType(_OSType), EMachine(_EMachine) {
Matt Fleming3565a062010-08-16 18:57:57 +0000196 }
Jason W Kimd3443e92010-11-15 16:18:39 +0000197
198 virtual ~ELFObjectWriter();
199
Matt Fleming3565a062010-08-16 18:57:57 +0000200 void WriteWord(uint64_t W) {
Chris Lattnerb188a372010-08-28 03:21:03 +0000201 if (Is64Bit)
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000202 Write64(W);
Chris Lattnerb188a372010-08-28 03:21:03 +0000203 else
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000204 Write32(W);
Matt Fleming3565a062010-08-16 18:57:57 +0000205 }
206
Matt Fleming3565a062010-08-16 18:57:57 +0000207 void StringLE16(char *buf, uint16_t Value) {
208 buf[0] = char(Value >> 0);
209 buf[1] = char(Value >> 8);
210 }
211
212 void StringLE32(char *buf, uint32_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000213 StringLE16(buf, uint16_t(Value >> 0));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000214 StringLE16(buf + 2, uint16_t(Value >> 16));
Matt Fleming3565a062010-08-16 18:57:57 +0000215 }
216
217 void StringLE64(char *buf, uint64_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000218 StringLE32(buf, uint32_t(Value >> 0));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000219 StringLE32(buf + 4, uint32_t(Value >> 32));
Matt Fleming3565a062010-08-16 18:57:57 +0000220 }
221
222 void StringBE16(char *buf ,uint16_t Value) {
223 buf[0] = char(Value >> 8);
224 buf[1] = char(Value >> 0);
225 }
226
227 void StringBE32(char *buf, uint32_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000228 StringBE16(buf, uint16_t(Value >> 16));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000229 StringBE16(buf + 2, uint16_t(Value >> 0));
Matt Fleming3565a062010-08-16 18:57:57 +0000230 }
231
232 void StringBE64(char *buf, uint64_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000233 StringBE32(buf, uint32_t(Value >> 32));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000234 StringBE32(buf + 4, uint32_t(Value >> 0));
Matt Fleming3565a062010-08-16 18:57:57 +0000235 }
236
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000237 void String8(MCDataFragment &F, uint8_t Value) {
238 char buf[1];
239 buf[0] = Value;
240 F.getContents() += StringRef(buf, 1);
241 }
242
243 void String16(MCDataFragment &F, uint16_t Value) {
244 char buf[2];
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000245 if (isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000246 StringLE16(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000247 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000248 StringBE16(buf, Value);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000249 F.getContents() += StringRef(buf, 2);
Matt Fleming3565a062010-08-16 18:57:57 +0000250 }
251
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000252 void String32(MCDataFragment &F, uint32_t Value) {
253 char buf[4];
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000254 if (isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000255 StringLE32(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000256 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000257 StringBE32(buf, Value);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000258 F.getContents() += StringRef(buf, 4);
Matt Fleming3565a062010-08-16 18:57:57 +0000259 }
260
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000261 void String64(MCDataFragment &F, uint64_t Value) {
262 char buf[8];
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000263 if (isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000264 StringLE64(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000265 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000266 StringBE64(buf, Value);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000267 F.getContents() += StringRef(buf, 8);
Matt Fleming3565a062010-08-16 18:57:57 +0000268 }
269
Jason W Kimd3443e92010-11-15 16:18:39 +0000270 virtual void WriteHeader(uint64_t SectionDataSize, unsigned NumberOfSections);
Matt Fleming3565a062010-08-16 18:57:57 +0000271
Jason W Kimd3443e92010-11-15 16:18:39 +0000272 virtual void WriteSymbolEntry(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000273 uint64_t name, uint8_t info,
Matt Fleming3565a062010-08-16 18:57:57 +0000274 uint64_t value, uint64_t size,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000275 uint8_t other, uint32_t shndx,
276 bool Reserved);
Matt Fleming3565a062010-08-16 18:57:57 +0000277
Jason W Kimd3443e92010-11-15 16:18:39 +0000278 virtual void WriteSymbol(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000279 ELFSymbolData &MSD,
Matt Fleming3565a062010-08-16 18:57:57 +0000280 const MCAsmLayout &Layout);
281
Rafael Espindolabab2a802010-11-10 21:51:05 +0000282 typedef DenseMap<const MCSectionELF*, uint32_t> SectionIndexMapTy;
Jason W Kimd3443e92010-11-15 16:18:39 +0000283 virtual void WriteSymbolTable(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000284 const MCAssembler &Asm,
Rafael Espindola71859c62010-09-16 19:46:31 +0000285 const MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000286 const SectionIndexMapTy &SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +0000287
Jason W Kimd3443e92010-11-15 16:18:39 +0000288 virtual void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
Matt Fleming3565a062010-08-16 18:57:57 +0000289 const MCFragment *Fragment, const MCFixup &Fixup,
Jason W Kimd3443e92010-11-15 16:18:39 +0000290 MCValue Target, uint64_t &FixedValue) {
291 assert(0 && "RecordRelocation is not specific enough");
Benjamin Kramer32858772010-11-15 19:20:50 +0000292 }
Matt Fleming3565a062010-08-16 18:57:57 +0000293
Jason W Kimd3443e92010-11-15 16:18:39 +0000294 virtual uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000295 const MCSymbol *S);
Matt Fleming3565a062010-08-16 18:57:57 +0000296
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000297 // 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;
301
Matt Fleming3565a062010-08-16 18:57:57 +0000302 /// ComputeSymbolTable - Compute the symbol table data
303 ///
304 /// \param StringTable [out] - The string table data.
305 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
306 /// string table.
Jason W Kimd3443e92010-11-15 16:18:39 +0000307 virtual void ComputeSymbolTable(MCAssembler &Asm,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000308 const SectionIndexMapTy &SectionIndexMap,
309 RevGroupMapTy RevGroupMap);
Rafael Espindolabab2a802010-11-10 21:51:05 +0000310
Jason W Kimd3443e92010-11-15 16:18:39 +0000311 virtual void ComputeIndexMap(MCAssembler &Asm,
Rafael Espindolabab2a802010-11-10 21:51:05 +0000312 SectionIndexMapTy &SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +0000313
Jason W Kimd3443e92010-11-15 16:18:39 +0000314 virtual void WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
Matt Fleming3565a062010-08-16 18:57:57 +0000315 const MCSectionData &SD);
316
Jason W Kimd3443e92010-11-15 16:18:39 +0000317 virtual void WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout) {
Matt Fleming3565a062010-08-16 18:57:57 +0000318 for (MCAssembler::const_iterator it = Asm.begin(),
319 ie = Asm.end(); it != ie; ++it) {
320 WriteRelocation(Asm, Layout, *it);
321 }
322 }
323
Jason W Kimd3443e92010-11-15 16:18:39 +0000324 virtual void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000325 const SectionIndexMapTy &SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +0000326
Jason W Kimd3443e92010-11-15 16:18:39 +0000327 virtual void CreateGroupSections(MCAssembler &Asm, MCAsmLayout &Layout,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000328 GroupMapTy &GroupMap, RevGroupMapTy &RevGroupMap);
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000329
Jason W Kimd3443e92010-11-15 16:18:39 +0000330 virtual void ExecutePostLayoutBinding(MCAssembler &Asm);
Matt Fleming3565a062010-08-16 18:57:57 +0000331
Jason W Kimd3443e92010-11-15 16:18:39 +0000332 virtual void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Matt Fleming3565a062010-08-16 18:57:57 +0000333 uint64_t Address, uint64_t Offset,
334 uint64_t Size, uint32_t Link, uint32_t Info,
335 uint64_t Alignment, uint64_t EntrySize);
336
Jason W Kimd3443e92010-11-15 16:18:39 +0000337 virtual void WriteRelocationsFragment(const MCAssembler &Asm, MCDataFragment *F,
Matt Fleming3565a062010-08-16 18:57:57 +0000338 const MCSectionData *SD);
339
Jason W Kimd3443e92010-11-15 16:18:39 +0000340 virtual bool IsFixupFullyResolved(const MCAssembler &Asm,
Rafael Espindola70703872010-09-30 02:22:20 +0000341 const MCValue Target,
342 bool IsPCRel,
343 const MCFragment *DF) const;
344
Jason W Kimd3443e92010-11-15 16:18:39 +0000345 virtual void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
346 virtual void WriteSection(MCAssembler &Asm,
Rafael Espindolac87a94a2010-11-10 23:36:59 +0000347 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000348 uint32_t GroupSymbolIndex,
Rafael Espindolac87a94a2010-11-10 23:36:59 +0000349 uint64_t Offset, uint64_t Size, uint64_t Alignment,
350 const MCSectionELF &Section);
Matt Fleming3565a062010-08-16 18:57:57 +0000351 };
352
Jason W Kimd3443e92010-11-15 16:18:39 +0000353 //===- X86ELFObjectWriter -------------------------------------------===//
354
355 class X86ELFObjectWriter : public ELFObjectWriter {
356 public:
357 X86ELFObjectWriter(raw_ostream &_OS, bool _Is64Bit, bool IsLittleEndian,
358 uint16_t _EMachine, bool _HasRelAddend,
359 Triple::OSType _OSType);
Wesley Peck4b047132010-11-21 22:06:28 +0000360
Jason W Kimd3443e92010-11-15 16:18:39 +0000361 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);
Jason W Kim4a511f02010-11-22 18:41:13 +0000367
Jason W Kim28ef0a52010-11-22 18:57:00 +0000368 private:
Jason W Kim4a511f02010-11-22 18:41:13 +0000369 static bool isFixupKindPCRel(unsigned Kind) {
370 switch (Kind) {
371 default:
372 return false;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +0000373 case FK_PCRel_1:
374 case FK_PCRel_2:
375 case FK_PCRel_4:
Jason W Kim4a511f02010-11-22 18:41:13 +0000376 case X86::reloc_riprel_4byte:
377 case X86::reloc_riprel_4byte_movq_load:
378 return true;
379 }
380 }
Jason W Kimd3443e92010-11-15 16:18:39 +0000381 };
382
383
384 //===- ARMELFObjectWriter -------------------------------------------===//
385
386 class ARMELFObjectWriter : public ELFObjectWriter {
387 public:
388 ARMELFObjectWriter(raw_ostream &_OS, bool _Is64Bit, bool IsLittleEndian,
389 uint16_t _EMachine, bool _HasRelAddend,
390 Triple::OSType _OSType);
Wesley Peck4b047132010-11-21 22:06:28 +0000391
Jason W Kimd3443e92010-11-15 16:18:39 +0000392 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);
Jason W Kim4a511f02010-11-22 18:41:13 +0000398
Jason W Kim85fed5e2010-12-01 02:40:06 +0000399 protected:
400 // Fixme: pull up to ELFObjectWriter
401 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
402 bool IsPCRel);
Jason W Kim28ef0a52010-11-22 18:57:00 +0000403 private:
Jason W Kim4a511f02010-11-22 18:41:13 +0000404 static bool isFixupKindPCRel(unsigned Kind) {
405 switch (Kind) {
406 default:
407 return false;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +0000408 case FK_PCRel_1:
409 case FK_PCRel_2:
410 case FK_PCRel_4:
Jim Grosbachdff84b02010-12-02 00:28:45 +0000411 case ARM::fixup_arm_ldst_pcrel_12:
Owen Anderson9d63d902010-12-01 19:18:46 +0000412 case ARM::fixup_arm_pcrel_10:
Jason W Kimccbe0002010-11-22 18:47:05 +0000413 case ARM::fixup_arm_branch:
Jason W Kim4a511f02010-11-22 18:41:13 +0000414 return true;
415 }
416 }
Jason W Kimd3443e92010-11-15 16:18:39 +0000417 };
Wesley Peck4b047132010-11-21 22:06:28 +0000418
419 //===- MBlazeELFObjectWriter -------------------------------------------===//
420
421 class MBlazeELFObjectWriter : public ELFObjectWriter {
422 public:
423 MBlazeELFObjectWriter(raw_ostream &_OS, bool _Is64Bit, bool IsLittleEndian,
424 uint16_t _EMachine, bool _HasRelAddend,
425 Triple::OSType _OSType);
426
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);
Jason W Kim4a511f02010-11-22 18:41:13 +0000433
Jason W Kim28ef0a52010-11-22 18:57:00 +0000434 private:
Jason W Kim4a511f02010-11-22 18:41:13 +0000435 static bool isFixupKindPCRel(unsigned Kind) {
436 switch (Kind) {
437 default:
438 return false;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +0000439 case FK_PCRel_1:
440 case FK_PCRel_2:
441 case FK_PCRel_4:
Jason W Kim4a511f02010-11-22 18:41:13 +0000442 return true;
443 }
444 }
Wesley Peck4b047132010-11-21 22:06:28 +0000445 };
Matt Fleming3565a062010-08-16 18:57:57 +0000446}
447
Jason W Kimd3443e92010-11-15 16:18:39 +0000448ELFObjectWriter::~ELFObjectWriter()
449{}
450
Matt Fleming3565a062010-08-16 18:57:57 +0000451// Emit the ELF header.
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000452void ELFObjectWriter::WriteHeader(uint64_t SectionDataSize,
453 unsigned NumberOfSections) {
Matt Fleming3565a062010-08-16 18:57:57 +0000454 // ELF Header
455 // ----------
456 //
457 // Note
458 // ----
459 // emitWord method behaves differently for ELF32 and ELF64, writing
460 // 4 bytes in the former and 8 in the latter.
461
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]
466
467 Write8(Is64Bit ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
468
469 // e_ident[EI_DATA]
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000470 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming3565a062010-08-16 18:57:57 +0000471
472 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky5baf79e2010-09-09 17:57:50 +0000473 // e_ident[EI_OSABI]
474 switch (OSType) {
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;
478 }
Matt Fleming3565a062010-08-16 18:57:57 +0000479 Write8(0); // e_ident[EI_ABIVERSION]
480
481 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
482
483 Write16(ELF::ET_REL); // e_type
484
Wesley Peckeecb8582010-10-22 15:52:49 +0000485 Write16(EMachine); // e_machine = target
Matt Fleming3565a062010-08-16 18:57:57 +0000486
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
Benjamin Kramereb976772010-08-17 17:02:29 +0000490 WriteWord(SectionDataSize + (Is64Bit ? sizeof(ELF::Elf64_Ehdr) :
491 sizeof(ELF::Elf32_Ehdr))); // e_shoff = sec hdr table off in bytes
Matt Fleming3565a062010-08-16 18:57:57 +0000492
493 // FIXME: Make this configurable.
494 Write32(0); // e_flags = whatever the target wants
495
496 // e_ehsize = ELF header size
497 Write16(Is64Bit ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
498
499 Write16(0); // e_phentsize = prog header entry size
500 Write16(0); // e_phnum = # prog header entries = 0
501
502 // e_shentsize = Section header entry size
503 Write16(Is64Bit ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
504
505 // e_shnum = # of section header ents
Rafael Espindola7be2c332010-10-31 00:16:26 +0000506 if (NumberOfSections >= ELF::SHN_LORESERVE)
507 Write16(0);
508 else
509 Write16(NumberOfSections);
Matt Fleming3565a062010-08-16 18:57:57 +0000510
511 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola7be2c332010-10-31 00:16:26 +0000512 if (NumberOfSections >= ELF::SHN_LORESERVE)
513 Write16(ELF::SHN_XINDEX);
514 else
515 Write16(ShstrtabIndex);
Matt Fleming3565a062010-08-16 18:57:57 +0000516}
517
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000518void ELFObjectWriter::WriteSymbolEntry(MCDataFragment *SymtabF,
519 MCDataFragment *ShndxF,
520 uint64_t name,
521 uint8_t info, uint64_t value,
522 uint64_t size, uint8_t other,
523 uint32_t shndx,
524 bool Reserved) {
Rafael Espindola7be2c332010-10-31 00:16:26 +0000525 if (ShndxF) {
Rafael Espindola7be2c332010-10-31 00:16:26 +0000526 if (shndx >= ELF::SHN_LORESERVE && !Reserved)
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000527 String32(*ShndxF, shndx);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000528 else
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000529 String32(*ShndxF, 0);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000530 }
531
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000532 uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ?
533 uint16_t(ELF::SHN_XINDEX) : shndx;
534
Matt Fleming3565a062010-08-16 18:57:57 +0000535 if (Is64Bit) {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000536 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
Matt Fleming3565a062010-08-16 18:57:57 +0000542 } else {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000543 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
Matt Fleming3565a062010-08-16 18:57:57 +0000549 }
550}
551
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000552static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout) {
553 if (Data.isCommon() && Data.isExternal())
554 return Data.getCommonAlignment();
555
556 const MCSymbol &Symbol = Data.getSymbol();
557 if (!Symbol.isInSection())
558 return 0;
559
Rafael Espindolaffd902b2010-12-06 02:57:26 +0000560 if (Data.getFragment())
561 return Layout.getSymbolOffset(&Data);
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000562
563 return 0;
564}
565
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000566void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm) {
Rafael Espindola88182132010-10-27 15:18:17 +0000567 // The presence of symbol versions causes undefined symbols and
568 // versions declared with @@@ to be renamed.
569
570 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
571 ie = Asm.symbol_end(); it != ie; ++it) {
572 const MCSymbol &Alias = it->getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000573 const MCSymbol &Symbol = Alias.AliasedSymbol();
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000574 MCSymbolData &SD = Asm.getSymbolData(Symbol);
575
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000576 // Not an alias.
577 if (&Symbol == &Alias)
578 continue;
579
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000580 StringRef AliasName = Alias.getName();
Rafael Espindola88182132010-10-27 15:18:17 +0000581 size_t Pos = AliasName.find('@');
582 if (Pos == StringRef::npos)
583 continue;
584
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000585 // Aliases defined with .symvar copy the binding from the symbol they alias.
586 // This is the first place we are able to copy this information.
587 it->setExternal(SD.isExternal());
588 SetBinding(*it, GetBinding(SD));
589
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000590 StringRef Rest = AliasName.substr(Pos);
Rafael Espindola88182132010-10-27 15:18:17 +0000591 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
592 continue;
593
Rafael Espindola83ff4d22010-10-27 17:56:18 +0000594 // FIXME: produce a better error message.
595 if (Symbol.isUndefined() && Rest.startswith("@@") &&
596 !Rest.startswith("@@@"))
597 report_fatal_error("A @@ version cannot be undefined");
598
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000599 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindola88182132010-10-27 15:18:17 +0000600 }
601}
602
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000603void ELFObjectWriter::WriteSymbol(MCDataFragment *SymtabF,
604 MCDataFragment *ShndxF,
605 ELFSymbolData &MSD,
606 const MCAsmLayout &Layout) {
Rafael Espindola152c1062010-10-06 21:02:29 +0000607 MCSymbolData &OrigData = *MSD.SymbolData;
Rafael Espindolade89b012010-10-15 18:25:33 +0000608 MCSymbolData &Data =
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000609 Layout.getAssembler().getSymbolData(OrigData.getSymbol().AliasedSymbol());
Rafael Espindola152c1062010-10-06 21:02:29 +0000610
Rafael Espindola7be2c332010-10-31 00:16:26 +0000611 bool IsReserved = Data.isCommon() || Data.getSymbol().isAbsolute() ||
612 Data.getSymbol().isVariable();
613
Rafael Espindola152c1062010-10-06 21:02:29 +0000614 uint8_t Binding = GetBinding(OrigData);
615 uint8_t Visibility = GetVisibility(OrigData);
616 uint8_t Type = GetType(Data);
617
618 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
619 uint8_t Other = Visibility;
620
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000621 uint64_t Value = SymbolValue(Data, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000622 uint64_t Size = 0;
623 const MCExpr *ESize;
624
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000625 assert(!(Data.isCommon() && !Data.isExternal()));
626
Matt Fleming3565a062010-08-16 18:57:57 +0000627 ESize = Data.getSize();
628 if (Data.getSize()) {
629 MCValue Res;
630 if (ESize->getKind() == MCExpr::Binary) {
631 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr *>(ESize);
632
633 if (BE->EvaluateAsRelocatable(Res, &Layout)) {
Benjamin Kramer24f12062010-10-17 07:38:40 +0000634 assert(!Res.getSymA() || !Res.getSymA()->getSymbol().isDefined());
635 assert(!Res.getSymB() || !Res.getSymB()->getSymbol().isDefined());
Rafael Espindolaf230df92010-10-16 18:23:53 +0000636 Size = Res.getConstant();
Matt Fleming3565a062010-08-16 18:57:57 +0000637 }
638 } else if (ESize->getKind() == MCExpr::Constant) {
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000639 Size = static_cast<const MCConstantExpr *>(ESize)->getValue();
Matt Fleming3565a062010-08-16 18:57:57 +0000640 } else {
641 assert(0 && "Unsupported size expression");
642 }
643 }
644
645 // Write out the symbol table entry
Rafael Espindola7be2c332010-10-31 00:16:26 +0000646 WriteSymbolEntry(SymtabF, ShndxF, MSD.StringIndex, Info, Value,
647 Size, Other, MSD.SectionIndex, IsReserved);
Matt Fleming3565a062010-08-16 18:57:57 +0000648}
649
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000650void ELFObjectWriter::WriteSymbolTable(MCDataFragment *SymtabF,
651 MCDataFragment *ShndxF,
652 const MCAssembler &Asm,
653 const MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000654 const SectionIndexMapTy &SectionIndexMap) {
Matt Fleming3565a062010-08-16 18:57:57 +0000655 // The string table must be emitted first because we need the index
656 // into the string table for all the symbol names.
657 assert(StringTable.size() && "Missing string table");
658
659 // FIXME: Make sure the start of the symbol table is aligned.
660
661 // The first entry is the undefined symbol entry.
Rafael Espindola7be2c332010-10-31 00:16:26 +0000662 WriteSymbolEntry(SymtabF, ShndxF, 0, 0, 0, 0, 0, 0, false);
Matt Fleming3565a062010-08-16 18:57:57 +0000663
664 // Write the symbol table entries.
665 LastLocalSymbolIndex = LocalSymbolData.size() + 1;
666 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
667 ELFSymbolData &MSD = LocalSymbolData[i];
Rafael Espindola7be2c332010-10-31 00:16:26 +0000668 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000669 }
670
Rafael Espindola71859c62010-09-16 19:46:31 +0000671 // Write out a symbol table entry for each regular section.
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000672 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e;
673 ++i) {
Eli Friedmana44fa242010-08-16 21:17:09 +0000674 const MCSectionELF &Section =
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000675 static_cast<const MCSectionELF&>(i->getSection());
676 if (Section.getType() == ELF::SHT_RELA ||
677 Section.getType() == ELF::SHT_REL ||
678 Section.getType() == ELF::SHT_STRTAB ||
679 Section.getType() == ELF::SHT_SYMTAB)
Eli Friedmana44fa242010-08-16 21:17:09 +0000680 continue;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000681 WriteSymbolEntry(SymtabF, ShndxF, 0, ELF::STT_SECTION, 0, 0,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000682 ELF::STV_DEFAULT, SectionIndexMap.lookup(&Section), false);
Eli Friedmana44fa242010-08-16 21:17:09 +0000683 LastLocalSymbolIndex++;
684 }
Matt Fleming3565a062010-08-16 18:57:57 +0000685
686 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
687 ELFSymbolData &MSD = ExternalSymbolData[i];
688 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola3223f192010-10-06 16:47:31 +0000689 assert(((Data.getFlags() & ELF_STB_Global) ||
690 (Data.getFlags() & ELF_STB_Weak)) &&
691 "External symbol requires STB_GLOBAL or STB_WEAK flag");
Rafael Espindola7be2c332010-10-31 00:16:26 +0000692 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Rafael Espindolae15eb4e2010-09-23 19:55:14 +0000693 if (GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming3565a062010-08-16 18:57:57 +0000694 LastLocalSymbolIndex++;
695 }
696
697 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
698 ELFSymbolData &MSD = UndefinedSymbolData[i];
699 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000700 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Rafael Espindolae15eb4e2010-09-23 19:55:14 +0000701 if (GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming3565a062010-08-16 18:57:57 +0000702 LastLocalSymbolIndex++;
703 }
704}
705
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000706const MCSymbol *ELFObjectWriter::SymbolToReloc(const MCAssembler &Asm,
707 const MCValue &Target,
708 const MCFragment &F) const {
709 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000710 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
711 const MCSymbol *Renamed = Renames.lookup(&Symbol);
712 const MCSymbolData &SD = Asm.getSymbolData(Symbol);
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000713
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000714 if (ASymbol.isUndefined()) {
715 if (Renamed)
716 return Renamed;
717 return &ASymbol;
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000718 }
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000719
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000720 if (SD.isExternal()) {
721 if (Renamed)
722 return Renamed;
723 return &Symbol;
724 }
Rafael Espindola73ffea42010-09-25 05:42:19 +0000725
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000726 const MCSectionELF &Section =
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000727 static_cast<const MCSectionELF&>(ASymbol.getSection());
Rafael Espindola25958732010-11-24 21:57:39 +0000728 const SectionKind secKind = Section.getKind();
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000729
Rafael Espindola25958732010-11-24 21:57:39 +0000730 if (secKind.isBSS())
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000731 return NULL;
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000732
Rafael Espindola25958732010-11-24 21:57:39 +0000733 if (secKind.isThreadLocal()) {
734 if (Renamed)
735 return Renamed;
736 return &Symbol;
737 }
738
Rafael Espindola8cecf252010-10-06 16:23:36 +0000739 MCSymbolRefExpr::VariantKind Kind = Target.getSymA()->getKind();
Rafael Espindola3729d002010-10-05 23:57:26 +0000740 const MCSectionELF &Sec2 =
741 static_cast<const MCSectionELF&>(F.getParent()->getSection());
742
Rafael Espindola8cecf252010-10-06 16:23:36 +0000743 if (&Sec2 != &Section &&
Rafael Espindolac97f80e2010-10-18 16:38:04 +0000744 (Kind == MCSymbolRefExpr::VK_PLT ||
745 Kind == MCSymbolRefExpr::VK_GOTPCREL ||
Rafael Espindola25958732010-11-24 21:57:39 +0000746 Kind == MCSymbolRefExpr::VK_GOTOFF)) {
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000747 if (Renamed)
748 return Renamed;
749 return &Symbol;
750 }
Rafael Espindola3729d002010-10-05 23:57:26 +0000751
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000752 if (Section.getFlags() & MCSectionELF::SHF_MERGE) {
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000753 if (Target.getConstant() == 0)
754 return NULL;
755 if (Renamed)
756 return Renamed;
757 return &Symbol;
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000758 }
Rafael Espindolac97f80e2010-10-18 16:38:04 +0000759
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000760 return NULL;
Rafael Espindola73ffea42010-09-25 05:42:19 +0000761}
762
Matt Fleming3565a062010-08-16 18:57:57 +0000763
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000764uint64_t
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000765ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
766 const MCSymbol *S) {
Benjamin Kramer7b83c262010-08-25 20:09:43 +0000767 MCSymbolData &SD = Asm.getSymbolData(*S);
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000768 return SD.getIndex();
Matt Fleming3565a062010-08-16 18:57:57 +0000769}
770
Rafael Espindola737cd212010-10-05 18:01:23 +0000771static bool isInSymtab(const MCAssembler &Asm, const MCSymbolData &Data,
Rafael Espindola88182132010-10-27 15:18:17 +0000772 bool Used, bool Renamed) {
Rafael Espindola484291c2010-11-01 14:28:48 +0000773 if (Data.getFlags() & ELF_Other_Weakref)
774 return false;
775
Rafael Espindolabd701182010-10-19 19:31:37 +0000776 if (Used)
777 return true;
778
Rafael Espindola88182132010-10-27 15:18:17 +0000779 if (Renamed)
780 return false;
781
Rafael Espindola737cd212010-10-05 18:01:23 +0000782 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindolaa6866962010-10-27 14:44:52 +0000783
Rafael Espindolad1798862010-10-29 23:09:31 +0000784 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
785 return true;
786
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000787 const MCSymbol &A = Symbol.AliasedSymbol();
Rafael Espindolad1798862010-10-29 23:09:31 +0000788 if (!A.isVariable() && A.isUndefined() && !Data.isCommon())
Rafael Espindolaa6866962010-10-27 14:44:52 +0000789 return false;
790
Rafael Espindola737cd212010-10-05 18:01:23 +0000791 if (!Asm.isSymbolLinkerVisible(Symbol) && !Symbol.isUndefined())
792 return false;
793
Rafael Espindolabd701182010-10-19 19:31:37 +0000794 if (Symbol.isTemporary())
Rafael Espindola737cd212010-10-05 18:01:23 +0000795 return false;
796
797 return true;
798}
799
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000800static bool isLocal(const MCSymbolData &Data, bool isSignature,
801 bool isUsedInReloc) {
Rafael Espindola737cd212010-10-05 18:01:23 +0000802 if (Data.isExternal())
803 return false;
804
805 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000806 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000807
808 if (RefSymbol.isUndefined() && !RefSymbol.isVariable()) {
809 if (isSignature && !isUsedInReloc)
810 return true;
811
Rafael Espindola737cd212010-10-05 18:01:23 +0000812 return false;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000813 }
Rafael Espindola737cd212010-10-05 18:01:23 +0000814
815 return true;
816}
817
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000818void ELFObjectWriter::ComputeIndexMap(MCAssembler &Asm,
819 SectionIndexMapTy &SectionIndexMap) {
Rafael Espindolabab2a802010-11-10 21:51:05 +0000820 unsigned Index = 1;
821 for (MCAssembler::iterator it = Asm.begin(),
822 ie = Asm.end(); it != ie; ++it) {
823 const MCSectionELF &Section =
824 static_cast<const MCSectionELF &>(it->getSection());
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000825 if (Section.getType() != ELF::SHT_GROUP)
826 continue;
827 SectionIndexMap[&Section] = Index++;
828 }
829
830 for (MCAssembler::iterator it = Asm.begin(),
831 ie = Asm.end(); it != ie; ++it) {
832 const MCSectionELF &Section =
833 static_cast<const MCSectionELF &>(it->getSection());
834 if (Section.getType() == ELF::SHT_GROUP)
835 continue;
Rafael Espindolabab2a802010-11-10 21:51:05 +0000836 SectionIndexMap[&Section] = Index++;
837 }
838}
839
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000840void ELFObjectWriter::ComputeSymbolTable(MCAssembler &Asm,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000841 const SectionIndexMapTy &SectionIndexMap,
842 RevGroupMapTy RevGroupMap) {
Rafael Espindola5c77c162010-10-05 15:48:37 +0000843 // FIXME: Is this the correct place to do this?
844 if (NeedsGOT) {
845 llvm::StringRef Name = "_GLOBAL_OFFSET_TABLE_";
846 MCSymbol *Sym = Asm.getContext().GetOrCreateSymbol(Name);
847 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
848 Data.setExternal(true);
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000849 SetBinding(Data, ELF::STB_GLOBAL);
Rafael Espindola5c77c162010-10-05 15:48:37 +0000850 }
851
Matt Fleming3565a062010-08-16 18:57:57 +0000852 // Build section lookup table.
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000853 int NumRegularSections = Asm.size();
Matt Fleming3565a062010-08-16 18:57:57 +0000854
855 // Index 0 is always the empty string.
856 StringMap<uint64_t> StringIndexMap;
857 StringTable += '\x00';
858
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000859 // Add the data for the symbols.
Matt Fleming3565a062010-08-16 18:57:57 +0000860 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
861 ie = Asm.symbol_end(); it != ie; ++it) {
862 const MCSymbol &Symbol = it->getSymbol();
863
Rafael Espindola484291c2010-11-01 14:28:48 +0000864 bool Used = UsedInReloc.count(&Symbol);
865 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000866 bool isSignature = RevGroupMap.count(&Symbol);
867
868 if (!isInSymtab(Asm, *it,
869 Used || WeakrefUsed || isSignature,
Rafael Espindola88182132010-10-27 15:18:17 +0000870 Renames.count(&Symbol)))
Matt Fleming3565a062010-08-16 18:57:57 +0000871 continue;
872
Matt Fleming3565a062010-08-16 18:57:57 +0000873 ELFSymbolData MSD;
874 MSD.SymbolData = it;
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000875 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
Matt Fleming3565a062010-08-16 18:57:57 +0000876
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000877 // Undefined symbols are global, but this is the first place we
878 // are able to set it.
879 bool Local = isLocal(*it, isSignature, Used);
880 if (!Local && GetBinding(*it) == ELF::STB_LOCAL) {
881 MCSymbolData &SD = Asm.getSymbolData(RefSymbol);
882 SetBinding(*it, ELF::STB_GLOBAL);
883 SetBinding(SD, ELF::STB_GLOBAL);
884 }
885
Rafael Espindola484291c2010-11-01 14:28:48 +0000886 if (RefSymbol.isUndefined() && !Used && WeakrefUsed)
887 SetBinding(*it, ELF::STB_WEAK);
888
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000889 if (it->isCommon()) {
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000890 assert(!Local);
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000891 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolabf052ac2010-10-27 16:04:30 +0000892 } else if (Symbol.isAbsolute() || RefSymbol.isVariable()) {
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000893 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola88182132010-10-27 15:18:17 +0000894 } else if (RefSymbol.isUndefined()) {
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000895 if (isSignature && !Used)
896 MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]);
897 else
898 MSD.SectionIndex = ELF::SHN_UNDEF;
Matt Fleming3565a062010-08-16 18:57:57 +0000899 } else {
Rafael Espindolabab2a802010-11-10 21:51:05 +0000900 const MCSectionELF &Section =
901 static_cast<const MCSectionELF&>(RefSymbol.getSection());
902 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000903 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
904 NeedsSymtabShndx = true;
Matt Fleming3565a062010-08-16 18:57:57 +0000905 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5df0b652010-10-15 15:39:06 +0000906 }
907
Rafael Espindola88182132010-10-27 15:18:17 +0000908 // The @@@ in symbol version is replaced with @ in undefined symbols and
909 // @@ in defined ones.
910 StringRef Name = Symbol.getName();
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000911 SmallString<32> Buf;
912
Rafael Espindola88182132010-10-27 15:18:17 +0000913 size_t Pos = Name.find("@@@");
Rafael Espindola88182132010-10-27 15:18:17 +0000914 if (Pos != StringRef::npos) {
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000915 Buf += Name.substr(0, Pos);
916 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
917 Buf += Name.substr(Pos + Skip);
918 Name = Buf;
Rafael Espindola88182132010-10-27 15:18:17 +0000919 }
920
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000921 uint64_t &Entry = StringIndexMap[Name];
Rafael Espindolaa6866962010-10-27 14:44:52 +0000922 if (!Entry) {
923 Entry = StringTable.size();
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000924 StringTable += Name;
Rafael Espindolaa6866962010-10-27 14:44:52 +0000925 StringTable += '\x00';
Matt Fleming3565a062010-08-16 18:57:57 +0000926 }
Rafael Espindolaa6866962010-10-27 14:44:52 +0000927 MSD.StringIndex = Entry;
928 if (MSD.SectionIndex == ELF::SHN_UNDEF)
929 UndefinedSymbolData.push_back(MSD);
930 else if (Local)
931 LocalSymbolData.push_back(MSD);
932 else
933 ExternalSymbolData.push_back(MSD);
Matt Fleming3565a062010-08-16 18:57:57 +0000934 }
935
936 // Symbols are required to be in lexicographic order.
937 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
938 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
939 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
940
941 // Set the symbol indices. Local symbols must come before all other
942 // symbols with non-local bindings.
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000943 unsigned Index = 1;
Matt Fleming3565a062010-08-16 18:57:57 +0000944 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
945 LocalSymbolData[i].SymbolData->setIndex(Index++);
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000946
947 Index += NumRegularSections;
948
Matt Fleming3565a062010-08-16 18:57:57 +0000949 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
950 ExternalSymbolData[i].SymbolData->setIndex(Index++);
951 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
952 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
953}
954
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000955void ELFObjectWriter::WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
956 const MCSectionData &SD) {
Matt Fleming3565a062010-08-16 18:57:57 +0000957 if (!Relocations[&SD].empty()) {
958 MCContext &Ctx = Asm.getContext();
Rafael Espindola4283f4b2010-11-10 19:05:07 +0000959 const MCSectionELF *RelaSection;
Matt Fleming3565a062010-08-16 18:57:57 +0000960 const MCSectionELF &Section =
961 static_cast<const MCSectionELF&>(SD.getSection());
962
963 const StringRef SectionName = Section.getSectionName();
Benjamin Kramer377a5722010-08-17 17:30:07 +0000964 std::string RelaSectionName = HasRelocationAddend ? ".rela" : ".rel";
Matt Fleming3565a062010-08-16 18:57:57 +0000965 RelaSectionName += SectionName;
Benjamin Kramer299fbe32010-08-17 17:56:13 +0000966
967 unsigned EntrySize;
968 if (HasRelocationAddend)
969 EntrySize = Is64Bit ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
970 else
971 EntrySize = Is64Bit ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming3565a062010-08-16 18:57:57 +0000972
Benjamin Kramer377a5722010-08-17 17:30:07 +0000973 RelaSection = Ctx.getELFSection(RelaSectionName, HasRelocationAddend ?
974 ELF::SHT_RELA : ELF::SHT_REL, 0,
Matt Fleming3565a062010-08-16 18:57:57 +0000975 SectionKind::getReadOnly(),
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000976 EntrySize, "");
Matt Fleming3565a062010-08-16 18:57:57 +0000977
978 MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
Benjamin Kramera9eadca2010-09-06 16:11:52 +0000979 RelaSD.setAlignment(Is64Bit ? 8 : 4);
Matt Fleming3565a062010-08-16 18:57:57 +0000980
981 MCDataFragment *F = new MCDataFragment(&RelaSD);
982
983 WriteRelocationsFragment(Asm, F, &SD);
Matt Fleming3565a062010-08-16 18:57:57 +0000984 }
985}
986
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000987void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
988 uint64_t Flags, uint64_t Address,
989 uint64_t Offset, uint64_t Size,
990 uint32_t Link, uint32_t Info,
991 uint64_t Alignment,
992 uint64_t EntrySize) {
Matt Fleming3565a062010-08-16 18:57:57 +0000993 Write32(Name); // sh_name: index into string table
994 Write32(Type); // sh_type
995 WriteWord(Flags); // sh_flags
996 WriteWord(Address); // sh_addr
997 WriteWord(Offset); // sh_offset
998 WriteWord(Size); // sh_size
999 Write32(Link); // sh_link
1000 Write32(Info); // sh_info
1001 WriteWord(Alignment); // sh_addralign
1002 WriteWord(EntrySize); // sh_entsize
1003}
1004
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001005void ELFObjectWriter::WriteRelocationsFragment(const MCAssembler &Asm,
1006 MCDataFragment *F,
1007 const MCSectionData *SD) {
Matt Fleming3565a062010-08-16 18:57:57 +00001008 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
1009 // sort by the r_offset just like gnu as does
1010 array_pod_sort(Relocs.begin(), Relocs.end());
1011
1012 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
1013 ELFRelocationEntry entry = Relocs[e - i - 1];
1014
Rafael Espindola12203cc2010-11-21 00:48:25 +00001015 if (!entry.Index)
1016 ;
1017 else if (entry.Index < 0)
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001018 entry.Index = getSymbolIndexInSymbolTable(Asm, entry.Symbol);
1019 else
Rafael Espindola12203cc2010-11-21 00:48:25 +00001020 entry.Index += LocalSymbolData.size();
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001021 if (Is64Bit) {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001022 String64(*F, entry.r_offset);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001023
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001024 struct ELF::Elf64_Rela ERE64;
1025 ERE64.setSymbolAndType(entry.Index, entry.Type);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001026 String64(*F, ERE64.r_info);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001027
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001028 if (HasRelocationAddend)
1029 String64(*F, entry.r_addend);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001030 } else {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001031 String32(*F, entry.r_offset);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001032
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001033 struct ELF::Elf32_Rela ERE32;
1034 ERE32.setSymbolAndType(entry.Index, entry.Type);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001035 String32(*F, ERE32.r_info);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001036
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001037 if (HasRelocationAddend)
1038 String32(*F, entry.r_addend);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001039 }
Matt Fleming3565a062010-08-16 18:57:57 +00001040 }
1041}
1042
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001043void ELFObjectWriter::CreateMetadataSections(MCAssembler &Asm,
1044 MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +00001045 const SectionIndexMapTy &SectionIndexMap) {
Matt Fleming3565a062010-08-16 18:57:57 +00001046 MCContext &Ctx = Asm.getContext();
1047 MCDataFragment *F;
1048
Matt Fleming3565a062010-08-16 18:57:57 +00001049 unsigned EntrySize = Is64Bit ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
1050
Rafael Espindola38738bf2010-09-22 19:04:41 +00001051 // We construct .shstrtab, .symtab and .strtab in this order to match gnu as.
Rafael Espindola4283f4b2010-11-10 19:05:07 +00001052 const MCSectionELF *ShstrtabSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +00001053 Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001054 SectionKind::getReadOnly());
Rafael Espindola71859c62010-09-16 19:46:31 +00001055 MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
1056 ShstrtabSD.setAlignment(1);
1057 ShstrtabIndex = Asm.size();
1058
Rafael Espindola4283f4b2010-11-10 19:05:07 +00001059 const MCSectionELF *SymtabSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +00001060 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
1061 SectionKind::getReadOnly(),
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001062 EntrySize, "");
Matt Fleming3565a062010-08-16 18:57:57 +00001063 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
Matt Fleming3565a062010-08-16 18:57:57 +00001064 SymtabSD.setAlignment(Is64Bit ? 8 : 4);
Rafael Espindola7be2c332010-10-31 00:16:26 +00001065 SymbolTableIndex = Asm.size();
1066
1067 MCSectionData *SymtabShndxSD = NULL;
1068
1069 if (NeedsSymtabShndx) {
Rafael Espindola4283f4b2010-11-10 19:05:07 +00001070 const MCSectionELF *SymtabShndxSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +00001071 Ctx.getELFSection(".symtab_shndx", ELF::SHT_SYMTAB_SHNDX, 0,
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001072 SectionKind::getReadOnly(), 4, "");
Rafael Espindola7be2c332010-10-31 00:16:26 +00001073 SymtabShndxSD = &Asm.getOrCreateSectionData(*SymtabShndxSection);
1074 SymtabShndxSD->setAlignment(4);
1075 }
Matt Fleming3565a062010-08-16 18:57:57 +00001076
Matt Fleming3565a062010-08-16 18:57:57 +00001077 const MCSection *StrtabSection;
1078 StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001079 SectionKind::getReadOnly());
Matt Fleming3565a062010-08-16 18:57:57 +00001080 MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
1081 StrtabSD.setAlignment(1);
Matt Fleming3565a062010-08-16 18:57:57 +00001082 StringTableIndex = Asm.size();
1083
Rafael Espindolac3c413f2010-09-27 22:04:54 +00001084 WriteRelocations(Asm, Layout);
Rafael Espindola71859c62010-09-16 19:46:31 +00001085
1086 // Symbol table
1087 F = new MCDataFragment(&SymtabSD);
Rafael Espindola7be2c332010-10-31 00:16:26 +00001088 MCDataFragment *ShndxF = NULL;
1089 if (NeedsSymtabShndx) {
1090 ShndxF = new MCDataFragment(SymtabShndxSD);
Rafael Espindola7be2c332010-10-31 00:16:26 +00001091 }
Rafael Espindola4beee3d2010-11-10 22:16:43 +00001092 WriteSymbolTable(F, ShndxF, Asm, Layout, SectionIndexMap);
Rafael Espindola71859c62010-09-16 19:46:31 +00001093
Matt Fleming3565a062010-08-16 18:57:57 +00001094 F = new MCDataFragment(&StrtabSD);
1095 F->getContents().append(StringTable.begin(), StringTable.end());
Matt Fleming3565a062010-08-16 18:57:57 +00001096
Matt Fleming3565a062010-08-16 18:57:57 +00001097 F = new MCDataFragment(&ShstrtabSD);
1098
Matt Fleming3565a062010-08-16 18:57:57 +00001099 // Section header string table.
1100 //
1101 // The first entry of a string table holds a null character so skip
1102 // section 0.
1103 uint64_t Index = 1;
1104 F->getContents() += '\x00';
1105
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001106 StringMap<uint64_t> SecStringMap;
Matt Fleming3565a062010-08-16 18:57:57 +00001107 for (MCAssembler::const_iterator it = Asm.begin(),
1108 ie = Asm.end(); it != ie; ++it) {
Matt Fleming3565a062010-08-16 18:57:57 +00001109 const MCSectionELF &Section =
Benjamin Kramer368ae7e2010-08-17 00:00:46 +00001110 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola51efe7a2010-09-23 14:14:56 +00001111 // FIXME: We could merge suffixes like in .text and .rela.text.
Matt Fleming3565a062010-08-16 18:57:57 +00001112
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001113 StringRef Name = Section.getSectionName();
1114 if (SecStringMap.count(Name)) {
1115 SectionStringTableIndex[&Section] = SecStringMap[Name];
1116 continue;
1117 }
Matt Fleming3565a062010-08-16 18:57:57 +00001118 // Remember the index into the string table so we can write it
1119 // into the sh_name field of the section header table.
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001120 SectionStringTableIndex[&Section] = Index;
1121 SecStringMap[Name] = Index;
Matt Fleming3565a062010-08-16 18:57:57 +00001122
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001123 Index += Name.size() + 1;
1124 F->getContents() += Name;
Matt Fleming3565a062010-08-16 18:57:57 +00001125 F->getContents() += '\x00';
1126 }
Rafael Espindola70703872010-09-30 02:22:20 +00001127}
1128
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001129bool ELFObjectWriter::IsFixupFullyResolved(const MCAssembler &Asm,
1130 const MCValue Target,
1131 bool IsPCRel,
1132 const MCFragment *DF) const {
Rafael Espindola70703872010-09-30 02:22:20 +00001133 // If this is a PCrel relocation, find the section this fixup value is
1134 // relative to.
1135 const MCSection *BaseSection = 0;
1136 if (IsPCRel) {
1137 BaseSection = &DF->getParent()->getSection();
1138 assert(BaseSection);
1139 }
1140
1141 const MCSection *SectionA = 0;
1142 const MCSymbol *SymbolA = 0;
1143 if (const MCSymbolRefExpr *A = Target.getSymA()) {
Rafael Espindola2c920852010-11-16 04:11:46 +00001144 SymbolA = &A->getSymbol();
1145 SectionA = &SymbolA->AliasedSymbol().getSection();
Rafael Espindola70703872010-09-30 02:22:20 +00001146 }
1147
1148 const MCSection *SectionB = 0;
Rafael Espindola12203cc2010-11-21 00:48:25 +00001149 const MCSymbol *SymbolB = 0;
Rafael Espindola70703872010-09-30 02:22:20 +00001150 if (const MCSymbolRefExpr *B = Target.getSymB()) {
Rafael Espindola12203cc2010-11-21 00:48:25 +00001151 SymbolB = &B->getSymbol();
1152 SectionB = &SymbolB->AliasedSymbol().getSection();
Rafael Espindola70703872010-09-30 02:22:20 +00001153 }
1154
1155 if (!BaseSection)
1156 return SectionA == SectionB;
1157
Rafael Espindola12203cc2010-11-21 00:48:25 +00001158 if (SymbolB)
1159 return false;
1160
1161 // Absolute address but PCrel instruction, so we need a relocation.
1162 if (!SymbolA)
1163 return false;
1164
Rafael Espindola2c920852010-11-16 04:11:46 +00001165 // FIXME: This is in here just to match gnu as output. If the two ends
1166 // are in the same section, there is nothing that the linker can do to
1167 // break it.
Rafael Espindola70703872010-09-30 02:22:20 +00001168 const MCSymbolData &DataA = Asm.getSymbolData(*SymbolA);
1169 if (DataA.isExternal())
1170 return false;
1171
Rafael Espindola12203cc2010-11-21 00:48:25 +00001172 return BaseSection == SectionA;
Matt Fleming3565a062010-08-16 18:57:57 +00001173}
1174
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001175void ELFObjectWriter::CreateGroupSections(MCAssembler &Asm,
1176 MCAsmLayout &Layout,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001177 GroupMapTy &GroupMap,
1178 RevGroupMapTy &RevGroupMap) {
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001179 // Build the groups
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001180 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
1181 it != ie; ++it) {
1182 const MCSectionELF &Section =
1183 static_cast<const MCSectionELF&>(it->getSection());
1184 if (!(Section.getFlags() & MCSectionELF::SHF_GROUP))
1185 continue;
1186
1187 const MCSymbol *SignatureSymbol = Section.getGroup();
1188 Asm.getOrCreateSymbolData(*SignatureSymbol);
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001189 const MCSectionELF *&Group = RevGroupMap[SignatureSymbol];
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001190 if (!Group) {
1191 Group = Asm.getContext().CreateELFGroupSection();
1192 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1193 Data.setAlignment(4);
1194 MCDataFragment *F = new MCDataFragment(&Data);
1195 String32(*F, ELF::GRP_COMDAT);
1196 }
1197 GroupMap[Group] = SignatureSymbol;
1198 }
1199
1200 // Add sections to the groups
1201 unsigned Index = 1;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001202 unsigned NumGroups = RevGroupMap.size();
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001203 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
1204 it != ie; ++it, ++Index) {
1205 const MCSectionELF &Section =
1206 static_cast<const MCSectionELF&>(it->getSection());
1207 if (!(Section.getFlags() & MCSectionELF::SHF_GROUP))
1208 continue;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001209 const MCSectionELF *Group = RevGroupMap[Section.getGroup()];
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001210 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1211 // FIXME: we could use the previous fragment
1212 MCDataFragment *F = new MCDataFragment(&Data);
1213 String32(*F, NumGroups + Index);
1214 }
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001215}
1216
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001217void ELFObjectWriter::WriteSection(MCAssembler &Asm,
1218 const SectionIndexMapTy &SectionIndexMap,
1219 uint32_t GroupSymbolIndex,
1220 uint64_t Offset, uint64_t Size,
1221 uint64_t Alignment,
1222 const MCSectionELF &Section) {
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001223 uint64_t sh_link = 0;
1224 uint64_t sh_info = 0;
1225
1226 switch(Section.getType()) {
1227 case ELF::SHT_DYNAMIC:
1228 sh_link = SectionStringTableIndex[&Section];
1229 sh_info = 0;
1230 break;
1231
1232 case ELF::SHT_REL:
1233 case ELF::SHT_RELA: {
1234 const MCSectionELF *SymtabSection;
1235 const MCSectionELF *InfoSection;
1236 SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB,
1237 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001238 SectionKind::getReadOnly());
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001239 sh_link = SectionIndexMap.lookup(SymtabSection);
1240 assert(sh_link && ".symtab not found");
1241
1242 // Remove ".rel" and ".rela" prefixes.
1243 unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
1244 StringRef SectionName = Section.getSectionName().substr(SecNameLen);
1245
1246 InfoSection = Asm.getContext().getELFSection(SectionName,
1247 ELF::SHT_PROGBITS, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001248 SectionKind::getReadOnly());
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001249 sh_info = SectionIndexMap.lookup(InfoSection);
1250 break;
1251 }
1252
1253 case ELF::SHT_SYMTAB:
1254 case ELF::SHT_DYNSYM:
1255 sh_link = StringTableIndex;
1256 sh_info = LastLocalSymbolIndex;
1257 break;
1258
1259 case ELF::SHT_SYMTAB_SHNDX:
1260 sh_link = SymbolTableIndex;
1261 break;
1262
1263 case ELF::SHT_PROGBITS:
1264 case ELF::SHT_STRTAB:
1265 case ELF::SHT_NOBITS:
1266 case ELF::SHT_NULL:
1267 case ELF::SHT_ARM_ATTRIBUTES:
1268 // Nothing to do.
1269 break;
1270
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001271 case ELF::SHT_GROUP: {
1272 sh_link = SymbolTableIndex;
1273 sh_info = GroupSymbolIndex;
1274 break;
1275 }
1276
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001277 default:
1278 assert(0 && "FIXME: sh_type value not supported!");
1279 break;
1280 }
1281
1282 WriteSecHdrEntry(SectionStringTableIndex[&Section], Section.getType(),
1283 Section.getFlags(), 0, Offset, Size, sh_link, sh_info,
1284 Alignment, Section.getEntrySize());
1285}
1286
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001287static bool IsELFMetaDataSection(const MCSectionData &SD) {
1288 return SD.getAddress() == ~UINT64_C(0) &&
1289 !SD.getSection().isVirtualSection();
1290}
1291
1292static uint64_t DataSectionSize(const MCSectionData &SD) {
1293 uint64_t Ret = 0;
1294 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1295 ++i) {
1296 const MCFragment &F = *i;
1297 assert(F.getKind() == MCFragment::FT_Data);
1298 Ret += cast<MCDataFragment>(F).getContents().size();
1299 }
1300 return Ret;
1301}
1302
1303static uint64_t GetSectionFileSize(const MCAsmLayout &Layout,
1304 const MCSectionData &SD) {
1305 if (IsELFMetaDataSection(SD))
1306 return DataSectionSize(SD);
1307 return Layout.getSectionFileSize(&SD);
1308}
1309
1310static uint64_t GetSectionSize(const MCAsmLayout &Layout,
1311 const MCSectionData &SD) {
1312 if (IsELFMetaDataSection(SD))
1313 return DataSectionSize(SD);
1314 return Layout.getSectionSize(&SD);
1315}
1316
1317static void WriteDataSectionData(ELFObjectWriter *W, const MCSectionData &SD) {
1318 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1319 ++i) {
1320 const MCFragment &F = *i;
1321 assert(F.getKind() == MCFragment::FT_Data);
1322 W->WriteBytes(cast<MCDataFragment>(F).getContents().str());
1323 }
1324}
1325
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001326void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1327 const MCAsmLayout &Layout) {
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001328 GroupMapTy GroupMap;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001329 RevGroupMapTy RevGroupMap;
1330 CreateGroupSections(Asm, const_cast<MCAsmLayout&>(Layout), GroupMap,
1331 RevGroupMap);
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001332
Rafael Espindolabab2a802010-11-10 21:51:05 +00001333 SectionIndexMapTy SectionIndexMap;
1334
1335 ComputeIndexMap(Asm, SectionIndexMap);
1336
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001337 // Compute symbol table information.
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001338 ComputeSymbolTable(Asm, SectionIndexMap, RevGroupMap);
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001339
Matt Fleming3565a062010-08-16 18:57:57 +00001340 CreateMetadataSections(const_cast<MCAssembler&>(Asm),
Rafael Espindola4beee3d2010-11-10 22:16:43 +00001341 const_cast<MCAsmLayout&>(Layout),
1342 SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +00001343
Rafael Espindola1d739a02010-11-10 22:34:07 +00001344 // Update to include the metadata sections.
1345 ComputeIndexMap(Asm, SectionIndexMap);
1346
Matt Fleming3565a062010-08-16 18:57:57 +00001347 // Add 1 for the null section.
1348 unsigned NumSections = Asm.size() + 1;
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001349 uint64_t NaturalAlignment = Is64Bit ? 8 : 4;
1350 uint64_t HeaderSize = Is64Bit ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr);
1351 uint64_t FileOff = HeaderSize;
Matt Fleming3565a062010-08-16 18:57:57 +00001352
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001353 std::vector<const MCSectionELF*> Sections;
1354 Sections.resize(NumSections);
1355
1356 for (SectionIndexMapTy::const_iterator i=
1357 SectionIndexMap.begin(), e = SectionIndexMap.end(); i != e; ++i) {
1358 const std::pair<const MCSectionELF*, uint32_t> &p = *i;
1359 Sections[p.second] = p.first;
1360 }
1361
1362 for (unsigned i = 1; i < NumSections; ++i) {
1363 const MCSectionELF &Section = *Sections[i];
1364 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
Matt Fleming3565a062010-08-16 18:57:57 +00001365
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001366 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1367
Matt Fleming3565a062010-08-16 18:57:57 +00001368 // Get the size of the section in the output file (including padding).
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001369 FileOff += GetSectionFileSize(Layout, SD);
Matt Fleming3565a062010-08-16 18:57:57 +00001370 }
1371
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001372 FileOff = RoundUpToAlignment(FileOff, NaturalAlignment);
1373
Matt Fleming3565a062010-08-16 18:57:57 +00001374 // Write out the ELF header ...
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001375 WriteHeader(FileOff - HeaderSize, NumSections);
1376
1377 FileOff = HeaderSize;
Matt Fleming3565a062010-08-16 18:57:57 +00001378
1379 // ... then all of the sections ...
1380 DenseMap<const MCSection*, uint64_t> SectionOffsetMap;
1381
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001382 for (unsigned i = 1; i < NumSections; ++i) {
1383 const MCSectionELF &Section = *Sections[i];
1384 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001385
1386 uint64_t Padding = OffsetToAlignment(FileOff, SD.getAlignment());
1387 WriteZeros(Padding);
1388 FileOff += Padding;
1389
Matt Fleming3565a062010-08-16 18:57:57 +00001390 // Remember the offset into the file for this section.
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001391 SectionOffsetMap[&Section] = FileOff;
Benjamin Kramer44cbde82010-08-19 13:44:49 +00001392
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001393 FileOff += GetSectionFileSize(Layout, SD);
Matt Fleming3565a062010-08-16 18:57:57 +00001394
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001395 if (IsELFMetaDataSection(SD))
1396 WriteDataSectionData(this, SD);
1397 else
1398 Asm.WriteSectionData(&SD, Layout, this);
Matt Fleming3565a062010-08-16 18:57:57 +00001399 }
1400
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001401 uint64_t Padding = OffsetToAlignment(FileOff, NaturalAlignment);
1402 WriteZeros(Padding);
1403 FileOff += Padding;
1404
Matt Fleming3565a062010-08-16 18:57:57 +00001405 // ... and then the section header table.
1406 // Should we align the section header table?
1407 //
1408 // Null section first.
Rafael Espindola7be2c332010-10-31 00:16:26 +00001409 uint64_t FirstSectionSize =
1410 NumSections >= ELF::SHN_LORESERVE ? NumSections : 0;
1411 uint32_t FirstSectionLink =
1412 ShstrtabIndex >= ELF::SHN_LORESERVE ? ShstrtabIndex : 0;
1413 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, FirstSectionLink, 0, 0, 0);
Matt Fleming3565a062010-08-16 18:57:57 +00001414
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001415 for (unsigned i = 1; i < NumSections; ++i) {
1416 const MCSectionELF &Section = *Sections[i];
1417 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1418 uint32_t GroupSymbolIndex;
1419 if (Section.getType() != ELF::SHT_GROUP)
1420 GroupSymbolIndex = 0;
1421 else
1422 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm, GroupMap[&Section]);
Matt Fleming3565a062010-08-16 18:57:57 +00001423
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001424 uint64_t Size = GetSectionSize(Layout, SD);
1425
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001426 WriteSection(Asm, SectionIndexMap, GroupSymbolIndex,
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001427 SectionOffsetMap[&Section], Size,
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001428 SD.getAlignment(), Section);
Matt Fleming3565a062010-08-16 18:57:57 +00001429 }
1430}
1431
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001432MCObjectWriter *llvm::createELFObjectWriter(raw_ostream &OS,
1433 bool Is64Bit,
1434 Triple::OSType OSType,
1435 uint16_t EMachine,
1436 bool IsLittleEndian,
1437 bool HasRelocationAddend) {
Jason W Kimd3443e92010-11-15 16:18:39 +00001438 switch (EMachine) {
1439 case ELF::EM_386:
1440 case ELF::EM_X86_64:
1441 return new X86ELFObjectWriter(OS, Is64Bit, IsLittleEndian, EMachine,
1442 HasRelocationAddend, OSType); break;
1443 case ELF::EM_ARM:
1444 return new ARMELFObjectWriter(OS, Is64Bit, IsLittleEndian, EMachine,
1445 HasRelocationAddend, OSType); break;
Wesley Peck4b047132010-11-21 22:06:28 +00001446 case ELF::EM_MBLAZE:
1447 return new MBlazeELFObjectWriter(OS, Is64Bit, IsLittleEndian, EMachine,
1448 HasRelocationAddend, OSType); break;
Benjamin Kramer32858772010-11-15 19:20:50 +00001449 default: llvm_unreachable("Unsupported architecture"); break;
Jason W Kimd3443e92010-11-15 16:18:39 +00001450 }
1451}
1452
1453
1454/// START OF SUBCLASSES for ELFObjectWriter
1455//===- ARMELFObjectWriter -------------------------------------------===//
1456
1457ARMELFObjectWriter::ARMELFObjectWriter(raw_ostream &_OS, bool _Is64Bit,
1458 bool _IsLittleEndian,
1459 uint16_t _EMachine, bool _HasRelocationAddend,
1460 Triple::OSType _OSType)
1461 : ELFObjectWriter(_OS, _Is64Bit, _IsLittleEndian, _EMachine,
1462 _HasRelocationAddend, _OSType)
1463{}
1464
1465ARMELFObjectWriter::~ARMELFObjectWriter()
1466{}
1467
Jason W Kim85fed5e2010-12-01 02:40:06 +00001468unsigned ARMELFObjectWriter::GetRelocType(const MCValue &Target,
1469 const MCFixup &Fixup,
1470 bool IsPCRel) {
1471 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1472 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
1473
1474 if (IsPCRel) {
1475 switch (Modifier) {
1476 default: assert(0 && "Unimplemented Modifier");
1477 case MCSymbolRefExpr::VK_None: break;
1478 }
1479 switch ((unsigned)Fixup.getKind()) {
1480 default: assert(0 && "Unimplemented");
1481 case ARM::fixup_arm_branch: return ELF::R_ARM_CALL; break;
1482 }
1483 } else {
1484 switch ((unsigned)Fixup.getKind()) {
1485 default: llvm_unreachable("invalid fixup kind!");
Jim Grosbachdff84b02010-12-02 00:28:45 +00001486 case ARM::fixup_arm_ldst_pcrel_12:
Owen Anderson9d63d902010-12-01 19:18:46 +00001487 case ARM::fixup_arm_pcrel_10:
Jim Grosbachdff84b02010-12-02 00:28:45 +00001488 case ARM::fixup_arm_adr_pcrel_12:
Jason W Kim85fed5e2010-12-01 02:40:06 +00001489 assert(0 && "Unimplemented"); break;
1490 case ARM::fixup_arm_branch:
1491 return ELF::R_ARM_CALL; break;
1492 case ARM::fixup_arm_movt_hi16:
1493 return ELF::R_ARM_MOVT_ABS; break;
1494 case ARM::fixup_arm_movw_lo16:
1495 return ELF::R_ARM_MOVW_ABS_NC; break;
1496 }
1497 }
1498
1499 if (RelocNeedsGOT(Modifier))
1500 NeedsGOT = true;
1501 return -1;
1502}
1503
Jason W Kimd3443e92010-11-15 16:18:39 +00001504void ARMELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
1505 const MCAsmLayout &Layout,
1506 const MCFragment *Fragment,
1507 const MCFixup &Fixup,
1508 MCValue Target,
1509 uint64_t &FixedValue) {
Jason W Kim85fed5e2010-12-01 02:40:06 +00001510 int64_t Addend = 0;
1511 int Index = 0;
1512 int64_t Value = Target.getConstant();
1513 const MCSymbol *RelocSymbol = NULL;
1514
1515 bool IsPCRel = isFixupKindPCRel(Fixup.getKind());
1516 if (!Target.isAbsolute()) {
1517 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
1518 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
1519 RelocSymbol = SymbolToReloc(Asm, Target, *Fragment);
1520
1521 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
1522 const MCSymbol &SymbolB = RefB->getSymbol();
1523 MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
1524 IsPCRel = true;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001525
1526 // Offset of the symbol in the section
Rafael Espindolaffd902b2010-12-06 02:57:26 +00001527 int64_t a = Layout.getSymbolOffset(&SDB);
Jason W Kim85fed5e2010-12-01 02:40:06 +00001528
1529 // Ofeset of the relocation in the section
1530 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
1531 Value += b - a;
1532 }
1533
1534 if (!RelocSymbol) {
1535 MCSymbolData &SD = Asm.getSymbolData(ASymbol);
1536 MCFragment *F = SD.getFragment();
1537
1538 Index = F->getParent()->getOrdinal() + 1;
1539
Jason W Kim85fed5e2010-12-01 02:40:06 +00001540 // Offset of the symbol in the section
Rafael Espindolaffd902b2010-12-06 02:57:26 +00001541 Value += Layout.getSymbolOffset(&SD);
Jason W Kim85fed5e2010-12-01 02:40:06 +00001542 } else {
1543 if (Asm.getSymbolData(Symbol).getFlags() & ELF_Other_Weakref)
1544 WeakrefUsedInReloc.insert(RelocSymbol);
1545 else
1546 UsedInReloc.insert(RelocSymbol);
1547 Index = -1;
1548 }
1549 Addend = Value;
1550 // Compensate for the addend on i386.
1551 if (Is64Bit)
1552 Value = 0;
1553 }
1554
1555 FixedValue = Value;
1556
1557 // determine the type of the relocation
1558 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
1559
1560 uint64_t RelocOffset = Layout.getFragmentOffset(Fragment) +
1561 Fixup.getOffset();
1562
1563 if (!HasRelocationAddend) Addend = 0;
1564 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
1565 Relocations[Fragment->getParent()].push_back(ERE);
Jason W Kimd3443e92010-11-15 16:18:39 +00001566}
1567
Wesley Peck4b047132010-11-21 22:06:28 +00001568//===- MBlazeELFObjectWriter -------------------------------------------===//
Jason W Kimd3443e92010-11-15 16:18:39 +00001569
Wesley Peck4b047132010-11-21 22:06:28 +00001570MBlazeELFObjectWriter::MBlazeELFObjectWriter(raw_ostream &_OS, bool _Is64Bit,
1571 bool _IsLittleEndian,
1572 uint16_t _EMachine,
1573 bool _HasRelocationAddend,
1574 Triple::OSType _OSType)
1575 : ELFObjectWriter(_OS, _Is64Bit, _IsLittleEndian, _EMachine,
1576 _HasRelocationAddend, _OSType) {
1577}
1578
1579MBlazeELFObjectWriter::~MBlazeELFObjectWriter() {
1580}
1581
1582void MBlazeELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
1583 const MCAsmLayout &Layout,
1584 const MCFragment *Fragment,
1585 const MCFixup &Fixup,
1586 MCValue Target,
1587 uint64_t &FixedValue) {
1588 int64_t Addend = 0;
1589 int Index = 0;
1590 int64_t Value = Target.getConstant();
1591 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
1592 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
1593 const MCSymbol *RelocSymbol = SymbolToReloc(Asm, Target, *Fragment);
1594
Jason W Kim4a511f02010-11-22 18:41:13 +00001595 bool IsPCRel = isFixupKindPCRel(Fixup.getKind());
Wesley Peck4b047132010-11-21 22:06:28 +00001596 if (!Target.isAbsolute()) {
1597 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
1598 const MCSymbol &SymbolB = RefB->getSymbol();
1599 MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
1600 IsPCRel = true;
Wesley Peck4b047132010-11-21 22:06:28 +00001601
1602 // Offset of the symbol in the section
Rafael Espindolaffd902b2010-12-06 02:57:26 +00001603 int64_t a = Layout.getSymbolOffset(&SDB);
Wesley Peck4b047132010-11-21 22:06:28 +00001604
1605 // Ofeset of the relocation in the section
1606 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
1607 Value += b - a;
1608 }
1609
1610 if (!RelocSymbol) {
1611 MCSymbolData &SD = Asm.getSymbolData(ASymbol);
1612 MCFragment *F = SD.getFragment();
1613
1614 Index = F->getParent()->getOrdinal();
1615
Wesley Peck4b047132010-11-21 22:06:28 +00001616 // Offset of the symbol in the section
Rafael Espindolaffd902b2010-12-06 02:57:26 +00001617 Value += Layout.getSymbolOffset(&SD);
Wesley Peck4b047132010-11-21 22:06:28 +00001618 } else {
1619 if (Asm.getSymbolData(Symbol).getFlags() & ELF_Other_Weakref)
1620 WeakrefUsedInReloc.insert(RelocSymbol);
1621 else
1622 UsedInReloc.insert(RelocSymbol);
1623 Index = -1;
1624 }
1625 Addend = Value;
1626 }
1627
1628 FixedValue = Value;
1629
1630 // determine the type of the relocation
1631 unsigned Type;
1632 if (IsPCRel) {
1633 switch ((unsigned)Fixup.getKind()) {
1634 default:
1635 llvm_unreachable("Unimplemented");
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001636 case FK_PCRel_4:
Wesley Peck4b047132010-11-21 22:06:28 +00001637 Type = ELF::R_MICROBLAZE_64_PCREL;
1638 break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001639 case FK_PCRel_2:
Wesley Peck4b047132010-11-21 22:06:28 +00001640 Type = ELF::R_MICROBLAZE_32_PCREL;
1641 break;
1642 }
1643 } else {
1644 switch ((unsigned)Fixup.getKind()) {
1645 default: llvm_unreachable("invalid fixup kind!");
1646 case FK_Data_4:
1647 Type = (RelocSymbol || Addend !=0) ? ELF::R_MICROBLAZE_32
1648 : ELF::R_MICROBLAZE_64;
1649 break;
1650 case FK_Data_2:
1651 Type = ELF::R_MICROBLAZE_32;
1652 break;
1653 }
1654 }
1655
1656 MCSymbolRefExpr::VariantKind Modifier = Target.getSymA()->getKind();
1657 if (RelocNeedsGOT(Modifier))
1658 NeedsGOT = true;
1659
Jason W Kim858e7502010-11-22 18:42:07 +00001660 uint64_t RelocOffset = Layout.getFragmentOffset(Fragment) +
Jason W Kim4a511f02010-11-22 18:41:13 +00001661 Fixup.getOffset();
Wesley Peck4b047132010-11-21 22:06:28 +00001662
Jason W Kim10907422010-11-22 22:05:16 +00001663 if (!HasRelocationAddend) Addend = 0;
Jason W Kim4a511f02010-11-22 18:41:13 +00001664 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
Wesley Peck4b047132010-11-21 22:06:28 +00001665 Relocations[Fragment->getParent()].push_back(ERE);
1666}
Jason W Kimd3443e92010-11-15 16:18:39 +00001667
1668//===- X86ELFObjectWriter -------------------------------------------===//
1669
1670
1671X86ELFObjectWriter::X86ELFObjectWriter(raw_ostream &_OS, bool _Is64Bit,
1672 bool _IsLittleEndian,
1673 uint16_t _EMachine, bool _HasRelocationAddend,
1674 Triple::OSType _OSType)
1675 : ELFObjectWriter(_OS, _Is64Bit, _IsLittleEndian, _EMachine,
1676 _HasRelocationAddend, _OSType)
1677{}
1678
1679X86ELFObjectWriter::~X86ELFObjectWriter()
1680{}
1681
1682void X86ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
1683 const MCAsmLayout &Layout,
1684 const MCFragment *Fragment,
1685 const MCFixup &Fixup,
1686 MCValue Target,
1687 uint64_t &FixedValue) {
1688 int64_t Addend = 0;
1689 int Index = 0;
1690 int64_t Value = Target.getConstant();
Rafael Espindola12203cc2010-11-21 00:48:25 +00001691 const MCSymbol *RelocSymbol = NULL;
Jason W Kimd3443e92010-11-15 16:18:39 +00001692
Jason W Kim4a511f02010-11-22 18:41:13 +00001693 bool IsPCRel = isFixupKindPCRel(Fixup.getKind());
Jason W Kimd3443e92010-11-15 16:18:39 +00001694 if (!Target.isAbsolute()) {
Rafael Espindola12203cc2010-11-21 00:48:25 +00001695 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
1696 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
1697 RelocSymbol = SymbolToReloc(Asm, Target, *Fragment);
1698
Jason W Kimd3443e92010-11-15 16:18:39 +00001699 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
1700 const MCSymbol &SymbolB = RefB->getSymbol();
1701 MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
1702 IsPCRel = true;
Jason W Kimd3443e92010-11-15 16:18:39 +00001703
1704 // Offset of the symbol in the section
Rafael Espindolaffd902b2010-12-06 02:57:26 +00001705 int64_t a = Layout.getSymbolOffset(&SDB);
Jason W Kimd3443e92010-11-15 16:18:39 +00001706
1707 // Ofeset of the relocation in the section
1708 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
1709 Value += b - a;
1710 }
1711
1712 if (!RelocSymbol) {
Rafael Espindola94ed5fc2010-11-15 16:33:49 +00001713 MCSymbolData &SD = Asm.getSymbolData(ASymbol);
Jason W Kimd3443e92010-11-15 16:18:39 +00001714 MCFragment *F = SD.getFragment();
1715
Rafael Espindola12203cc2010-11-21 00:48:25 +00001716 Index = F->getParent()->getOrdinal() + 1;
Jason W Kimd3443e92010-11-15 16:18:39 +00001717
Jason W Kimd3443e92010-11-15 16:18:39 +00001718 // Offset of the symbol in the section
Rafael Espindolaffd902b2010-12-06 02:57:26 +00001719 Value += Layout.getSymbolOffset(&SD);
Jason W Kimd3443e92010-11-15 16:18:39 +00001720 } else {
1721 if (Asm.getSymbolData(Symbol).getFlags() & ELF_Other_Weakref)
1722 WeakrefUsedInReloc.insert(RelocSymbol);
1723 else
1724 UsedInReloc.insert(RelocSymbol);
1725 Index = -1;
1726 }
1727 Addend = Value;
1728 // Compensate for the addend on i386.
1729 if (Is64Bit)
1730 Value = 0;
1731 }
1732
1733 FixedValue = Value;
1734
1735 // determine the type of the relocation
1736
Rafael Espindola12203cc2010-11-21 00:48:25 +00001737 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1738 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
Jason W Kimd3443e92010-11-15 16:18:39 +00001739 unsigned Type;
1740 if (Is64Bit) {
1741 if (IsPCRel) {
1742 switch (Modifier) {
1743 default:
1744 llvm_unreachable("Unimplemented");
1745 case MCSymbolRefExpr::VK_None:
1746 Type = ELF::R_X86_64_PC32;
1747 break;
1748 case MCSymbolRefExpr::VK_PLT:
1749 Type = ELF::R_X86_64_PLT32;
1750 break;
1751 case MCSymbolRefExpr::VK_GOTPCREL:
1752 Type = ELF::R_X86_64_GOTPCREL;
1753 break;
1754 case MCSymbolRefExpr::VK_GOTTPOFF:
1755 Type = ELF::R_X86_64_GOTTPOFF;
1756 break;
1757 case MCSymbolRefExpr::VK_TLSGD:
1758 Type = ELF::R_X86_64_TLSGD;
1759 break;
1760 case MCSymbolRefExpr::VK_TLSLD:
1761 Type = ELF::R_X86_64_TLSLD;
1762 break;
1763 }
1764 } else {
1765 switch ((unsigned)Fixup.getKind()) {
1766 default: llvm_unreachable("invalid fixup kind!");
1767 case FK_Data_8: Type = ELF::R_X86_64_64; break;
1768 case X86::reloc_signed_4byte:
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001769 case FK_PCRel_4:
Jason W Kimd3443e92010-11-15 16:18:39 +00001770 assert(isInt<32>(Target.getConstant()));
1771 switch (Modifier) {
1772 default:
1773 llvm_unreachable("Unimplemented");
1774 case MCSymbolRefExpr::VK_None:
1775 Type = ELF::R_X86_64_32S;
1776 break;
1777 case MCSymbolRefExpr::VK_GOT:
1778 Type = ELF::R_X86_64_GOT32;
1779 break;
1780 case MCSymbolRefExpr::VK_GOTPCREL:
1781 Type = ELF::R_X86_64_GOTPCREL;
1782 break;
1783 case MCSymbolRefExpr::VK_TPOFF:
1784 Type = ELF::R_X86_64_TPOFF32;
1785 break;
1786 case MCSymbolRefExpr::VK_DTPOFF:
1787 Type = ELF::R_X86_64_DTPOFF32;
1788 break;
1789 }
1790 break;
1791 case FK_Data_4:
1792 Type = ELF::R_X86_64_32;
1793 break;
1794 case FK_Data_2: Type = ELF::R_X86_64_16; break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001795 case FK_PCRel_1:
Jason W Kimd3443e92010-11-15 16:18:39 +00001796 case FK_Data_1: Type = ELF::R_X86_64_8; break;
1797 }
1798 }
1799 } else {
1800 if (IsPCRel) {
1801 switch (Modifier) {
1802 default:
1803 llvm_unreachable("Unimplemented");
1804 case MCSymbolRefExpr::VK_None:
1805 Type = ELF::R_386_PC32;
1806 break;
1807 case MCSymbolRefExpr::VK_PLT:
1808 Type = ELF::R_386_PLT32;
1809 break;
1810 }
1811 } else {
1812 switch ((unsigned)Fixup.getKind()) {
1813 default: llvm_unreachable("invalid fixup kind!");
1814
1815 case X86::reloc_global_offset_table:
1816 Type = ELF::R_386_GOTPC;
1817 break;
1818
1819 // FIXME: Should we avoid selecting reloc_signed_4byte in 32 bit mode
1820 // instead?
1821 case X86::reloc_signed_4byte:
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001822 case FK_PCRel_4:
Jason W Kimd3443e92010-11-15 16:18:39 +00001823 case FK_Data_4:
1824 switch (Modifier) {
1825 default:
1826 llvm_unreachable("Unimplemented");
1827 case MCSymbolRefExpr::VK_None:
1828 Type = ELF::R_386_32;
1829 break;
1830 case MCSymbolRefExpr::VK_GOT:
1831 Type = ELF::R_386_GOT32;
1832 break;
1833 case MCSymbolRefExpr::VK_GOTOFF:
1834 Type = ELF::R_386_GOTOFF;
1835 break;
1836 case MCSymbolRefExpr::VK_TLSGD:
1837 Type = ELF::R_386_TLS_GD;
1838 break;
1839 case MCSymbolRefExpr::VK_TPOFF:
1840 Type = ELF::R_386_TLS_LE_32;
1841 break;
1842 case MCSymbolRefExpr::VK_INDNTPOFF:
1843 Type = ELF::R_386_TLS_IE;
1844 break;
1845 case MCSymbolRefExpr::VK_NTPOFF:
1846 Type = ELF::R_386_TLS_LE;
1847 break;
1848 case MCSymbolRefExpr::VK_GOTNTPOFF:
1849 Type = ELF::R_386_TLS_GOTIE;
1850 break;
1851 case MCSymbolRefExpr::VK_TLSLDM:
1852 Type = ELF::R_386_TLS_LDM;
1853 break;
1854 case MCSymbolRefExpr::VK_DTPOFF:
1855 Type = ELF::R_386_TLS_LDO_32;
1856 break;
1857 }
1858 break;
1859 case FK_Data_2: Type = ELF::R_386_16; break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001860 case FK_PCRel_1:
Jason W Kimd3443e92010-11-15 16:18:39 +00001861 case FK_Data_1: Type = ELF::R_386_8; break;
1862 }
1863 }
1864 }
1865
1866 if (RelocNeedsGOT(Modifier))
1867 NeedsGOT = true;
1868
Jason W Kimd3443e92010-11-15 16:18:39 +00001869
Jason W Kim858e7502010-11-22 18:42:07 +00001870 uint64_t RelocOffset = Layout.getFragmentOffset(Fragment) +
Jason W Kim4a511f02010-11-22 18:41:13 +00001871 Fixup.getOffset();
Jason W Kimd3443e92010-11-15 16:18:39 +00001872
Jason W Kim10907422010-11-22 22:05:16 +00001873 if (!HasRelocationAddend) Addend = 0;
Jason W Kim4a511f02010-11-22 18:41:13 +00001874 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
Jason W Kimd3443e92010-11-15 16:18:39 +00001875 Relocations[Fragment->getParent()].push_back(ERE);
Matt Fleming3565a062010-08-16 18:57:57 +00001876}