blob: ea1629d305657147dca5083900457dc0485ce1ea [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 Espindola31f35782010-12-17 18:01:31 +000014#include "llvm/ADT/OwningPtr.h"
Rafael Espindola8f413fa2010-10-05 15:11:03 +000015#include "llvm/ADT/SmallPtrSet.h"
Matt Fleming3565a062010-08-16 18:57:57 +000016#include "llvm/ADT/STLExtras.h"
17#include "llvm/ADT/StringMap.h"
18#include "llvm/ADT/Twine.h"
19#include "llvm/MC/MCAssembler.h"
20#include "llvm/MC/MCAsmLayout.h"
21#include "llvm/MC/MCContext.h"
22#include "llvm/MC/MCELFSymbolFlags.h"
23#include "llvm/MC/MCExpr.h"
Rafael Espindola285b3e52010-12-17 16:59:53 +000024#include "llvm/MC/MCELFObjectWriter.h"
Matt Fleming3565a062010-08-16 18:57:57 +000025#include "llvm/MC/MCObjectWriter.h"
26#include "llvm/MC/MCSectionELF.h"
27#include "llvm/MC/MCSymbol.h"
28#include "llvm/MC/MCValue.h"
29#include "llvm/Support/Debug.h"
30#include "llvm/Support/ErrorHandling.h"
31#include "llvm/Support/ELF.h"
32#include "llvm/Target/TargetAsmBackend.h"
Jason W Kim953a2a32011-02-07 01:11:15 +000033#include "llvm/ADT/StringSwitch.h"
Matt Fleming3565a062010-08-16 18:57:57 +000034
35#include "../Target/X86/X86FixupKinds.h"
Jason W Kim4a511f02010-11-22 18:41:13 +000036#include "../Target/ARM/ARMFixupKinds.h"
Matt Fleming3565a062010-08-16 18:57:57 +000037
38#include <vector>
39using namespace llvm;
40
Rafael Espindolaad49cf52010-09-18 15:03:21 +000041static unsigned GetType(const MCSymbolData &SD) {
42 uint32_t Type = (SD.getFlags() & (0xf << ELF_STT_Shift)) >> ELF_STT_Shift;
43 assert(Type == ELF::STT_NOTYPE || Type == ELF::STT_OBJECT ||
44 Type == ELF::STT_FUNC || Type == ELF::STT_SECTION ||
45 Type == ELF::STT_FILE || Type == ELF::STT_COMMON ||
46 Type == ELF::STT_TLS);
47 return Type;
48}
49
Rafael Espindolae15eb4e2010-09-23 19:55:14 +000050static unsigned GetBinding(const MCSymbolData &SD) {
51 uint32_t Binding = (SD.getFlags() & (0xf << ELF_STB_Shift)) >> ELF_STB_Shift;
52 assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
53 Binding == ELF::STB_WEAK);
54 return Binding;
55}
56
57static void SetBinding(MCSymbolData &SD, unsigned Binding) {
58 assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
59 Binding == ELF::STB_WEAK);
60 uint32_t OtherFlags = SD.getFlags() & ~(0xf << ELF_STB_Shift);
61 SD.setFlags(OtherFlags | (Binding << ELF_STB_Shift));
62}
63
Rafael Espindola152c1062010-10-06 21:02:29 +000064static unsigned GetVisibility(MCSymbolData &SD) {
65 unsigned Visibility =
66 (SD.getFlags() & (0xf << ELF_STV_Shift)) >> ELF_STV_Shift;
67 assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL ||
68 Visibility == ELF::STV_HIDDEN || Visibility == ELF::STV_PROTECTED);
69 return Visibility;
70}
71
Wesley Peck4b047132010-11-21 22:06:28 +000072
Rafael Espindolaa0a2f872010-10-28 14:22:44 +000073static bool RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
74 switch (Variant) {
Rafael Espindola5c77c162010-10-05 15:48:37 +000075 default:
76 return false;
Rafael Espindolaa0a2f872010-10-28 14:22:44 +000077 case MCSymbolRefExpr::VK_GOT:
78 case MCSymbolRefExpr::VK_PLT:
79 case MCSymbolRefExpr::VK_GOTPCREL:
80 case MCSymbolRefExpr::VK_TPOFF:
81 case MCSymbolRefExpr::VK_TLSGD:
82 case MCSymbolRefExpr::VK_GOTTPOFF:
83 case MCSymbolRefExpr::VK_INDNTPOFF:
84 case MCSymbolRefExpr::VK_NTPOFF:
85 case MCSymbolRefExpr::VK_GOTNTPOFF:
Rafael Espindolaa264f722010-10-28 14:37:09 +000086 case MCSymbolRefExpr::VK_TLSLDM:
Rafael Espindola0cf15d62010-10-28 14:48:59 +000087 case MCSymbolRefExpr::VK_DTPOFF:
Rafael Espindolab4d17212010-10-28 15:02:40 +000088 case MCSymbolRefExpr::VK_TLSLD:
Rafael Espindola5c77c162010-10-05 15:48:37 +000089 return true;
90 }
91}
92
Rafael Espindola127a6a42010-12-17 07:28:17 +000093static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
94 const MCFixupKindInfo &FKI =
95 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
96
97 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
98}
99
Matt Fleming3565a062010-08-16 18:57:57 +0000100namespace {
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000101 class ELFObjectWriter : public MCObjectWriter {
Jason W Kimd3443e92010-11-15 16:18:39 +0000102 protected:
Chris Lattnerb188a372010-08-28 03:21:03 +0000103 /*static bool isFixupKindX86RIPRel(unsigned Kind) {
Matt Fleming3565a062010-08-16 18:57:57 +0000104 return Kind == X86::reloc_riprel_4byte ||
105 Kind == X86::reloc_riprel_4byte_movq_load;
Chris Lattnerb188a372010-08-28 03:21:03 +0000106 }*/
Matt Fleming3565a062010-08-16 18:57:57 +0000107
108
109 /// ELFSymbolData - Helper struct for containing some precomputed information
110 /// on symbols.
111 struct ELFSymbolData {
112 MCSymbolData *SymbolData;
113 uint64_t StringIndex;
114 uint32_t SectionIndex;
115
116 // Support lexicographic sorting.
117 bool operator<(const ELFSymbolData &RHS) const {
Rafael Espindolaad49cf52010-09-18 15:03:21 +0000118 if (GetType(*SymbolData) == ELF::STT_FILE)
119 return true;
120 if (GetType(*RHS.SymbolData) == ELF::STT_FILE)
121 return false;
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000122 return SymbolData->getSymbol().getName() <
123 RHS.SymbolData->getSymbol().getName();
Matt Fleming3565a062010-08-16 18:57:57 +0000124 }
125 };
126
127 /// @name Relocation Data
128 /// @{
129
130 struct ELFRelocationEntry {
131 // Make these big enough for both 32-bit and 64-bit
132 uint64_t r_offset;
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000133 int Index;
134 unsigned Type;
135 const MCSymbol *Symbol;
Matt Fleming3565a062010-08-16 18:57:57 +0000136 uint64_t r_addend;
Jason W Kim858e7502010-11-22 18:42:07 +0000137
Jason W Kim4a511f02010-11-22 18:41:13 +0000138 ELFRelocationEntry()
139 : r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0) {}
140
Jason W Kim10907422010-11-22 22:05:16 +0000141 ELFRelocationEntry(uint64_t RelocOffset, int Idx,
142 unsigned RelType, const MCSymbol *Sym,
Jason W Kim4a511f02010-11-22 18:41:13 +0000143 uint64_t Addend)
Jason W Kim10907422010-11-22 22:05:16 +0000144 : r_offset(RelocOffset), Index(Idx), Type(RelType),
145 Symbol(Sym), r_addend(Addend) {}
Matt Fleming3565a062010-08-16 18:57:57 +0000146
147 // Support lexicographic sorting.
148 bool operator<(const ELFRelocationEntry &RE) const {
149 return RE.r_offset < r_offset;
150 }
151 };
152
Rafael Espindola31f35782010-12-17 18:01:31 +0000153 /// The target specific ELF writer instance.
154 llvm::OwningPtr<MCELFObjectTargetWriter> TargetObjectWriter;
155
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000156 SmallPtrSet<const MCSymbol *, 16> UsedInReloc;
Rafael Espindola484291c2010-11-01 14:28:48 +0000157 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc;
Rafael Espindola88182132010-10-27 15:18:17 +0000158 DenseMap<const MCSymbol *, const MCSymbol *> Renames;
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000159
Matt Fleming3565a062010-08-16 18:57:57 +0000160 llvm::DenseMap<const MCSectionData*,
161 std::vector<ELFRelocationEntry> > Relocations;
162 DenseMap<const MCSection*, uint64_t> SectionStringTableIndex;
163
164 /// @}
165 /// @name Symbol Table Data
166 /// @{
167
168 SmallString<256> StringTable;
169 std::vector<ELFSymbolData> LocalSymbolData;
170 std::vector<ELFSymbolData> ExternalSymbolData;
171 std::vector<ELFSymbolData> UndefinedSymbolData;
172
173 /// @}
174
Rafael Espindola5c77c162010-10-05 15:48:37 +0000175 bool NeedsGOT;
176
Rafael Espindola7be2c332010-10-31 00:16:26 +0000177 bool NeedsSymtabShndx;
178
Matt Fleming3565a062010-08-16 18:57:57 +0000179 // This holds the symbol table index of the last local symbol.
180 unsigned LastLocalSymbolIndex;
181 // This holds the .strtab section index.
182 unsigned StringTableIndex;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000183 // This holds the .symtab section index.
184 unsigned SymbolTableIndex;
Matt Fleming3565a062010-08-16 18:57:57 +0000185
186 unsigned ShstrtabIndex;
187
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000188
189 const MCSymbol *SymbolToReloc(const MCAssembler &Asm,
190 const MCValue &Target,
191 const MCFragment &F) const;
192
Jason W Kim953a2a32011-02-07 01:11:15 +0000193 // For arch-specific emission of explicit reloc symbol
194 virtual const MCSymbol *ExplicitRelSym(const MCAssembler &Asm,
195 const MCValue &Target,
196 const MCFragment &F,
197 bool IsBSS) const {
198 return NULL;
199 }
200
Rafael Espindolabff66a82010-12-18 03:27:34 +0000201 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
202 bool hasRelocationAddend() const {
203 return TargetObjectWriter->hasRelocationAddend();
204 }
205
Matt Fleming3565a062010-08-16 18:57:57 +0000206 public:
Rafael Espindola31f35782010-12-17 18:01:31 +0000207 ELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +0000208 raw_ostream &_OS, bool IsLittleEndian)
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000209 : MCObjectWriter(_OS, IsLittleEndian),
Rafael Espindola31f35782010-12-17 18:01:31 +0000210 TargetObjectWriter(MOTW),
Rafael Espindolabff66a82010-12-18 03:27:34 +0000211 NeedsGOT(false), NeedsSymtabShndx(false){
Matt Fleming3565a062010-08-16 18:57:57 +0000212 }
Jason W Kimd3443e92010-11-15 16:18:39 +0000213
214 virtual ~ELFObjectWriter();
215
Matt Fleming3565a062010-08-16 18:57:57 +0000216 void WriteWord(uint64_t W) {
Rafael Espindolabff66a82010-12-18 03:27:34 +0000217 if (is64Bit())
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000218 Write64(W);
Chris Lattnerb188a372010-08-28 03:21:03 +0000219 else
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000220 Write32(W);
Matt Fleming3565a062010-08-16 18:57:57 +0000221 }
222
Matt Fleming3565a062010-08-16 18:57:57 +0000223 void StringLE16(char *buf, uint16_t Value) {
224 buf[0] = char(Value >> 0);
225 buf[1] = char(Value >> 8);
226 }
227
228 void StringLE32(char *buf, uint32_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000229 StringLE16(buf, uint16_t(Value >> 0));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000230 StringLE16(buf + 2, uint16_t(Value >> 16));
Matt Fleming3565a062010-08-16 18:57:57 +0000231 }
232
233 void StringLE64(char *buf, uint64_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000234 StringLE32(buf, uint32_t(Value >> 0));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000235 StringLE32(buf + 4, uint32_t(Value >> 32));
Matt Fleming3565a062010-08-16 18:57:57 +0000236 }
237
238 void StringBE16(char *buf ,uint16_t Value) {
239 buf[0] = char(Value >> 8);
240 buf[1] = char(Value >> 0);
241 }
242
243 void StringBE32(char *buf, uint32_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000244 StringBE16(buf, uint16_t(Value >> 16));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000245 StringBE16(buf + 2, uint16_t(Value >> 0));
Matt Fleming3565a062010-08-16 18:57:57 +0000246 }
247
248 void StringBE64(char *buf, uint64_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000249 StringBE32(buf, uint32_t(Value >> 32));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000250 StringBE32(buf + 4, uint32_t(Value >> 0));
Matt Fleming3565a062010-08-16 18:57:57 +0000251 }
252
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000253 void String8(MCDataFragment &F, uint8_t Value) {
254 char buf[1];
255 buf[0] = Value;
256 F.getContents() += StringRef(buf, 1);
257 }
258
259 void String16(MCDataFragment &F, uint16_t Value) {
260 char buf[2];
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000261 if (isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000262 StringLE16(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000263 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000264 StringBE16(buf, Value);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000265 F.getContents() += StringRef(buf, 2);
Matt Fleming3565a062010-08-16 18:57:57 +0000266 }
267
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000268 void String32(MCDataFragment &F, uint32_t Value) {
269 char buf[4];
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000270 if (isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000271 StringLE32(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000272 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000273 StringBE32(buf, Value);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000274 F.getContents() += StringRef(buf, 4);
Matt Fleming3565a062010-08-16 18:57:57 +0000275 }
276
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000277 void String64(MCDataFragment &F, uint64_t Value) {
278 char buf[8];
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000279 if (isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000280 StringLE64(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000281 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000282 StringBE64(buf, Value);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000283 F.getContents() += StringRef(buf, 8);
Matt Fleming3565a062010-08-16 18:57:57 +0000284 }
285
Jason W Kimd3443e92010-11-15 16:18:39 +0000286 virtual void WriteHeader(uint64_t SectionDataSize, unsigned NumberOfSections);
Matt Fleming3565a062010-08-16 18:57:57 +0000287
Jason W Kim2d7a53a2011-02-04 21:41:11 +0000288 /// Default e_flags = 0
289 virtual void WriteEFlags() { Write32(0); }
290
Jason W Kimd3443e92010-11-15 16:18:39 +0000291 virtual void WriteSymbolEntry(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000292 uint64_t name, uint8_t info,
Matt Fleming3565a062010-08-16 18:57:57 +0000293 uint64_t value, uint64_t size,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000294 uint8_t other, uint32_t shndx,
295 bool Reserved);
Matt Fleming3565a062010-08-16 18:57:57 +0000296
Jason W Kimd3443e92010-11-15 16:18:39 +0000297 virtual void WriteSymbol(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000298 ELFSymbolData &MSD,
Matt Fleming3565a062010-08-16 18:57:57 +0000299 const MCAsmLayout &Layout);
300
Rafael Espindolabab2a802010-11-10 21:51:05 +0000301 typedef DenseMap<const MCSectionELF*, uint32_t> SectionIndexMapTy;
Jason W Kimd3443e92010-11-15 16:18:39 +0000302 virtual void WriteSymbolTable(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000303 const MCAssembler &Asm,
Rafael Espindola71859c62010-09-16 19:46:31 +0000304 const MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000305 const SectionIndexMapTy &SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +0000306
Jason W Kimd3443e92010-11-15 16:18:39 +0000307 virtual void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
Jason W Kim56a39902010-12-06 21:57:34 +0000308 const MCFragment *Fragment, const MCFixup &Fixup,
309 MCValue Target, uint64_t &FixedValue);
Matt Fleming3565a062010-08-16 18:57:57 +0000310
Jason W Kimd3443e92010-11-15 16:18:39 +0000311 virtual uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000312 const MCSymbol *S);
Matt Fleming3565a062010-08-16 18:57:57 +0000313
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000314 // Map from a group section to the signature symbol
315 typedef DenseMap<const MCSectionELF*, const MCSymbol*> GroupMapTy;
316 // Map from a signature symbol to the group section
317 typedef DenseMap<const MCSymbol*, const MCSectionELF*> RevGroupMapTy;
318
Matt Fleming3565a062010-08-16 18:57:57 +0000319 /// ComputeSymbolTable - Compute the symbol table data
320 ///
321 /// \param StringTable [out] - The string table data.
322 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
323 /// string table.
Jason W Kimd3443e92010-11-15 16:18:39 +0000324 virtual void ComputeSymbolTable(MCAssembler &Asm,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000325 const SectionIndexMapTy &SectionIndexMap,
326 RevGroupMapTy RevGroupMap);
Rafael Espindolabab2a802010-11-10 21:51:05 +0000327
Jason W Kimd3443e92010-11-15 16:18:39 +0000328 virtual void ComputeIndexMap(MCAssembler &Asm,
Rafael Espindolabab2a802010-11-10 21:51:05 +0000329 SectionIndexMapTy &SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +0000330
Jason W Kimd3443e92010-11-15 16:18:39 +0000331 virtual void WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
Matt Fleming3565a062010-08-16 18:57:57 +0000332 const MCSectionData &SD);
333
Jason W Kimd3443e92010-11-15 16:18:39 +0000334 virtual void WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout) {
Matt Fleming3565a062010-08-16 18:57:57 +0000335 for (MCAssembler::const_iterator it = Asm.begin(),
336 ie = Asm.end(); it != ie; ++it) {
337 WriteRelocation(Asm, Layout, *it);
338 }
339 }
340
Jason W Kimd3443e92010-11-15 16:18:39 +0000341 virtual void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000342 const SectionIndexMapTy &SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +0000343
Rafael Espindola96aa78c2011-01-23 17:55:27 +0000344 // Create the sections that show up in the symbol table. Currently
345 // those are the .note.GNU-stack section and the group sections.
346 virtual void CreateIndexedSections(MCAssembler &Asm, MCAsmLayout &Layout,
347 GroupMapTy &GroupMap,
348 RevGroupMapTy &RevGroupMap);
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000349
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000350 virtual void ExecutePostLayoutBinding(MCAssembler &Asm,
351 const MCAsmLayout &Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000352
Jason W Kimd3443e92010-11-15 16:18:39 +0000353 virtual void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Matt Fleming3565a062010-08-16 18:57:57 +0000354 uint64_t Address, uint64_t Offset,
355 uint64_t Size, uint32_t Link, uint32_t Info,
356 uint64_t Alignment, uint64_t EntrySize);
357
Daniel Dunbar1f3662a2010-12-17 04:54:54 +0000358 virtual void WriteRelocationsFragment(const MCAssembler &Asm,
359 MCDataFragment *F,
360 const MCSectionData *SD);
361
Jason W Kimd3443e92010-11-15 16:18:39 +0000362 virtual void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
363 virtual void WriteSection(MCAssembler &Asm,
Rafael Espindolac87a94a2010-11-10 23:36:59 +0000364 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000365 uint32_t GroupSymbolIndex,
Rafael Espindolac87a94a2010-11-10 23:36:59 +0000366 uint64_t Offset, uint64_t Size, uint64_t Alignment,
367 const MCSectionELF &Section);
Jason W Kim56a39902010-12-06 21:57:34 +0000368
369 protected:
370 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
371 bool IsPCRel, bool IsRelocWithSymbol,
372 int64_t Addend) = 0;
Matt Fleming3565a062010-08-16 18:57:57 +0000373 };
374
Jason W Kimd3443e92010-11-15 16:18:39 +0000375 //===- X86ELFObjectWriter -------------------------------------------===//
376
377 class X86ELFObjectWriter : public ELFObjectWriter {
378 public:
Rafael Espindola31f35782010-12-17 18:01:31 +0000379 X86ELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +0000380 raw_ostream &_OS,
381 bool IsLittleEndian);
Wesley Peck4b047132010-11-21 22:06:28 +0000382
Jason W Kimd3443e92010-11-15 16:18:39 +0000383 virtual ~X86ELFObjectWriter();
Jason W Kim56a39902010-12-06 21:57:34 +0000384 protected:
385 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
386 bool IsPCRel, bool IsRelocWithSymbol,
387 int64_t Addend);
Jason W Kimd3443e92010-11-15 16:18:39 +0000388 };
389
390
391 //===- ARMELFObjectWriter -------------------------------------------===//
392
393 class ARMELFObjectWriter : public ELFObjectWriter {
394 public:
Jason W Kim2d7a53a2011-02-04 21:41:11 +0000395 // FIXME: MCAssembler can't yet return the Subtarget,
396 enum { DefaultEABIVersion = 0x05000000U };
397
Rafael Espindola31f35782010-12-17 18:01:31 +0000398 ARMELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +0000399 raw_ostream &_OS,
400 bool IsLittleEndian);
Wesley Peck4b047132010-11-21 22:06:28 +0000401
Jason W Kimd3443e92010-11-15 16:18:39 +0000402 virtual ~ARMELFObjectWriter();
Jason W Kim2d7a53a2011-02-04 21:41:11 +0000403
404 virtual void WriteEFlags();
Jason W Kim85fed5e2010-12-01 02:40:06 +0000405 protected:
Jason W Kim953a2a32011-02-07 01:11:15 +0000406 virtual const MCSymbol *ExplicitRelSym(const MCAssembler &Asm,
407 const MCValue &Target,
408 const MCFragment &F,
409 bool IsBSS) const;
410
Jason W Kim56a39902010-12-06 21:57:34 +0000411 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
412 bool IsPCRel, bool IsRelocWithSymbol,
413 int64_t Addend);
Jason W Kimd3443e92010-11-15 16:18:39 +0000414 };
Wesley Peck4b047132010-11-21 22:06:28 +0000415
416 //===- MBlazeELFObjectWriter -------------------------------------------===//
417
418 class MBlazeELFObjectWriter : public ELFObjectWriter {
419 public:
Rafael Espindola31f35782010-12-17 18:01:31 +0000420 MBlazeELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +0000421 raw_ostream &_OS,
422 bool IsLittleEndian);
Wesley Peck4b047132010-11-21 22:06:28 +0000423
424 virtual ~MBlazeELFObjectWriter();
Jason W Kim56a39902010-12-06 21:57:34 +0000425 protected:
426 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
427 bool IsPCRel, bool IsRelocWithSymbol,
428 int64_t Addend);
Wesley Peck4b047132010-11-21 22:06:28 +0000429 };
Matt Fleming3565a062010-08-16 18:57:57 +0000430}
431
Jason W Kimd3443e92010-11-15 16:18:39 +0000432ELFObjectWriter::~ELFObjectWriter()
433{}
434
Matt Fleming3565a062010-08-16 18:57:57 +0000435// Emit the ELF header.
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000436void ELFObjectWriter::WriteHeader(uint64_t SectionDataSize,
437 unsigned NumberOfSections) {
Matt Fleming3565a062010-08-16 18:57:57 +0000438 // ELF Header
439 // ----------
440 //
441 // Note
442 // ----
443 // emitWord method behaves differently for ELF32 and ELF64, writing
444 // 4 bytes in the former and 8 in the latter.
445
446 Write8(0x7f); // e_ident[EI_MAG0]
447 Write8('E'); // e_ident[EI_MAG1]
448 Write8('L'); // e_ident[EI_MAG2]
449 Write8('F'); // e_ident[EI_MAG3]
450
Rafael Espindolabff66a82010-12-18 03:27:34 +0000451 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming3565a062010-08-16 18:57:57 +0000452
453 // e_ident[EI_DATA]
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000454 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming3565a062010-08-16 18:57:57 +0000455
456 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky5baf79e2010-09-09 17:57:50 +0000457 // e_ident[EI_OSABI]
Rafael Espindolabff66a82010-12-18 03:27:34 +0000458 switch (TargetObjectWriter->getOSType()) {
Roman Divacky5baf79e2010-09-09 17:57:50 +0000459 case Triple::FreeBSD: Write8(ELF::ELFOSABI_FREEBSD); break;
460 case Triple::Linux: Write8(ELF::ELFOSABI_LINUX); break;
461 default: Write8(ELF::ELFOSABI_NONE); break;
462 }
Matt Fleming3565a062010-08-16 18:57:57 +0000463 Write8(0); // e_ident[EI_ABIVERSION]
464
465 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
466
467 Write16(ELF::ET_REL); // e_type
468
Rafael Espindolabff66a82010-12-18 03:27:34 +0000469 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming3565a062010-08-16 18:57:57 +0000470
471 Write32(ELF::EV_CURRENT); // e_version
472 WriteWord(0); // e_entry, no entry point in .o file
473 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindolabff66a82010-12-18 03:27:34 +0000474 WriteWord(SectionDataSize + (is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
Benjamin Kramereb976772010-08-17 17:02:29 +0000475 sizeof(ELF::Elf32_Ehdr))); // e_shoff = sec hdr table off in bytes
Matt Fleming3565a062010-08-16 18:57:57 +0000476
Jason W Kim2d7a53a2011-02-04 21:41:11 +0000477 // e_flags = whatever the target wants
478 WriteEFlags();
Matt Fleming3565a062010-08-16 18:57:57 +0000479
480 // e_ehsize = ELF header size
Rafael Espindolabff66a82010-12-18 03:27:34 +0000481 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming3565a062010-08-16 18:57:57 +0000482
483 Write16(0); // e_phentsize = prog header entry size
484 Write16(0); // e_phnum = # prog header entries = 0
485
486 // e_shentsize = Section header entry size
Rafael Espindolabff66a82010-12-18 03:27:34 +0000487 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming3565a062010-08-16 18:57:57 +0000488
489 // e_shnum = # of section header ents
Rafael Espindola7be2c332010-10-31 00:16:26 +0000490 if (NumberOfSections >= ELF::SHN_LORESERVE)
491 Write16(0);
492 else
493 Write16(NumberOfSections);
Matt Fleming3565a062010-08-16 18:57:57 +0000494
495 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola7be2c332010-10-31 00:16:26 +0000496 if (NumberOfSections >= ELF::SHN_LORESERVE)
497 Write16(ELF::SHN_XINDEX);
498 else
499 Write16(ShstrtabIndex);
Matt Fleming3565a062010-08-16 18:57:57 +0000500}
501
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000502void ELFObjectWriter::WriteSymbolEntry(MCDataFragment *SymtabF,
503 MCDataFragment *ShndxF,
504 uint64_t name,
505 uint8_t info, uint64_t value,
506 uint64_t size, uint8_t other,
507 uint32_t shndx,
508 bool Reserved) {
Rafael Espindola7be2c332010-10-31 00:16:26 +0000509 if (ShndxF) {
Rafael Espindola7be2c332010-10-31 00:16:26 +0000510 if (shndx >= ELF::SHN_LORESERVE && !Reserved)
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000511 String32(*ShndxF, shndx);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000512 else
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000513 String32(*ShndxF, 0);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000514 }
515
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000516 uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ?
517 uint16_t(ELF::SHN_XINDEX) : shndx;
518
Rafael Espindolabff66a82010-12-18 03:27:34 +0000519 if (is64Bit()) {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000520 String32(*SymtabF, name); // st_name
521 String8(*SymtabF, info); // st_info
522 String8(*SymtabF, other); // st_other
523 String16(*SymtabF, Index); // st_shndx
524 String64(*SymtabF, value); // st_value
525 String64(*SymtabF, size); // st_size
Matt Fleming3565a062010-08-16 18:57:57 +0000526 } else {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000527 String32(*SymtabF, name); // st_name
528 String32(*SymtabF, value); // st_value
529 String32(*SymtabF, size); // st_size
530 String8(*SymtabF, info); // st_info
531 String8(*SymtabF, other); // st_other
532 String16(*SymtabF, Index); // st_shndx
Matt Fleming3565a062010-08-16 18:57:57 +0000533 }
534}
535
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000536static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout) {
537 if (Data.isCommon() && Data.isExternal())
538 return Data.getCommonAlignment();
539
540 const MCSymbol &Symbol = Data.getSymbol();
Roman Divackyd1491862010-12-20 21:14:39 +0000541
542 if (Symbol.isAbsolute() && Symbol.isVariable()) {
543 if (const MCExpr *Value = Symbol.getVariableValue()) {
544 int64_t IntValue;
545 if (Value->EvaluateAsAbsolute(IntValue, Layout))
546 return (uint64_t)IntValue;
547 }
548 }
549
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000550 if (!Symbol.isInSection())
551 return 0;
552
Rafael Espindolaffd902b2010-12-06 02:57:26 +0000553 if (Data.getFragment())
554 return Layout.getSymbolOffset(&Data);
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000555
556 return 0;
557}
558
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000559void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
560 const MCAsmLayout &Layout) {
Rafael Espindola88182132010-10-27 15:18:17 +0000561 // The presence of symbol versions causes undefined symbols and
562 // versions declared with @@@ to be renamed.
563
564 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
565 ie = Asm.symbol_end(); it != ie; ++it) {
566 const MCSymbol &Alias = it->getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000567 const MCSymbol &Symbol = Alias.AliasedSymbol();
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000568 MCSymbolData &SD = Asm.getSymbolData(Symbol);
569
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000570 // Not an alias.
571 if (&Symbol == &Alias)
572 continue;
573
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000574 StringRef AliasName = Alias.getName();
Rafael Espindola88182132010-10-27 15:18:17 +0000575 size_t Pos = AliasName.find('@');
576 if (Pos == StringRef::npos)
577 continue;
578
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000579 // Aliases defined with .symvar copy the binding from the symbol they alias.
580 // This is the first place we are able to copy this information.
581 it->setExternal(SD.isExternal());
582 SetBinding(*it, GetBinding(SD));
583
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000584 StringRef Rest = AliasName.substr(Pos);
Rafael Espindola88182132010-10-27 15:18:17 +0000585 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
586 continue;
587
Rafael Espindola83ff4d22010-10-27 17:56:18 +0000588 // FIXME: produce a better error message.
589 if (Symbol.isUndefined() && Rest.startswith("@@") &&
590 !Rest.startswith("@@@"))
591 report_fatal_error("A @@ version cannot be undefined");
592
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000593 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindola88182132010-10-27 15:18:17 +0000594 }
595}
596
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000597void ELFObjectWriter::WriteSymbol(MCDataFragment *SymtabF,
598 MCDataFragment *ShndxF,
599 ELFSymbolData &MSD,
600 const MCAsmLayout &Layout) {
Rafael Espindola152c1062010-10-06 21:02:29 +0000601 MCSymbolData &OrigData = *MSD.SymbolData;
Rafael Espindolade89b012010-10-15 18:25:33 +0000602 MCSymbolData &Data =
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000603 Layout.getAssembler().getSymbolData(OrigData.getSymbol().AliasedSymbol());
Rafael Espindola152c1062010-10-06 21:02:29 +0000604
Rafael Espindola7be2c332010-10-31 00:16:26 +0000605 bool IsReserved = Data.isCommon() || Data.getSymbol().isAbsolute() ||
606 Data.getSymbol().isVariable();
607
Rafael Espindola152c1062010-10-06 21:02:29 +0000608 uint8_t Binding = GetBinding(OrigData);
609 uint8_t Visibility = GetVisibility(OrigData);
610 uint8_t Type = GetType(Data);
611
612 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
613 uint8_t Other = Visibility;
614
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000615 uint64_t Value = SymbolValue(Data, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000616 uint64_t Size = 0;
Matt Fleming3565a062010-08-16 18:57:57 +0000617
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000618 assert(!(Data.isCommon() && !Data.isExternal()));
619
Rafael Espindolaf0121242010-12-22 16:03:00 +0000620 const MCExpr *ESize = Data.getSize();
621 if (ESize) {
622 int64_t Res;
623 if (!ESize->EvaluateAsAbsolute(Res, Layout))
624 report_fatal_error("Size expression must be absolute.");
625 Size = Res;
Matt Fleming3565a062010-08-16 18:57:57 +0000626 }
627
628 // Write out the symbol table entry
Rafael Espindola7be2c332010-10-31 00:16:26 +0000629 WriteSymbolEntry(SymtabF, ShndxF, MSD.StringIndex, Info, Value,
630 Size, Other, MSD.SectionIndex, IsReserved);
Matt Fleming3565a062010-08-16 18:57:57 +0000631}
632
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000633void ELFObjectWriter::WriteSymbolTable(MCDataFragment *SymtabF,
634 MCDataFragment *ShndxF,
635 const MCAssembler &Asm,
636 const MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000637 const SectionIndexMapTy &SectionIndexMap) {
Matt Fleming3565a062010-08-16 18:57:57 +0000638 // The string table must be emitted first because we need the index
639 // into the string table for all the symbol names.
640 assert(StringTable.size() && "Missing string table");
641
642 // FIXME: Make sure the start of the symbol table is aligned.
643
644 // The first entry is the undefined symbol entry.
Rafael Espindola7be2c332010-10-31 00:16:26 +0000645 WriteSymbolEntry(SymtabF, ShndxF, 0, 0, 0, 0, 0, 0, false);
Matt Fleming3565a062010-08-16 18:57:57 +0000646
647 // Write the symbol table entries.
648 LastLocalSymbolIndex = LocalSymbolData.size() + 1;
649 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
650 ELFSymbolData &MSD = LocalSymbolData[i];
Rafael Espindola7be2c332010-10-31 00:16:26 +0000651 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000652 }
653
Rafael Espindola71859c62010-09-16 19:46:31 +0000654 // Write out a symbol table entry for each regular section.
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000655 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e;
656 ++i) {
Eli Friedmana44fa242010-08-16 21:17:09 +0000657 const MCSectionELF &Section =
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000658 static_cast<const MCSectionELF&>(i->getSection());
659 if (Section.getType() == ELF::SHT_RELA ||
660 Section.getType() == ELF::SHT_REL ||
661 Section.getType() == ELF::SHT_STRTAB ||
662 Section.getType() == ELF::SHT_SYMTAB)
Eli Friedmana44fa242010-08-16 21:17:09 +0000663 continue;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000664 WriteSymbolEntry(SymtabF, ShndxF, 0, ELF::STT_SECTION, 0, 0,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000665 ELF::STV_DEFAULT, SectionIndexMap.lookup(&Section), false);
Eli Friedmana44fa242010-08-16 21:17:09 +0000666 LastLocalSymbolIndex++;
667 }
Matt Fleming3565a062010-08-16 18:57:57 +0000668
669 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
670 ELFSymbolData &MSD = ExternalSymbolData[i];
671 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola3223f192010-10-06 16:47:31 +0000672 assert(((Data.getFlags() & ELF_STB_Global) ||
673 (Data.getFlags() & ELF_STB_Weak)) &&
674 "External symbol requires STB_GLOBAL or STB_WEAK flag");
Rafael Espindola7be2c332010-10-31 00:16:26 +0000675 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Rafael Espindolae15eb4e2010-09-23 19:55:14 +0000676 if (GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming3565a062010-08-16 18:57:57 +0000677 LastLocalSymbolIndex++;
678 }
679
680 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
681 ELFSymbolData &MSD = UndefinedSymbolData[i];
682 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000683 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Rafael Espindolae15eb4e2010-09-23 19:55:14 +0000684 if (GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming3565a062010-08-16 18:57:57 +0000685 LastLocalSymbolIndex++;
686 }
687}
688
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000689const MCSymbol *ELFObjectWriter::SymbolToReloc(const MCAssembler &Asm,
690 const MCValue &Target,
691 const MCFragment &F) const {
692 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000693 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
694 const MCSymbol *Renamed = Renames.lookup(&Symbol);
695 const MCSymbolData &SD = Asm.getSymbolData(Symbol);
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000696
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000697 if (ASymbol.isUndefined()) {
698 if (Renamed)
699 return Renamed;
700 return &ASymbol;
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000701 }
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000702
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000703 if (SD.isExternal()) {
704 if (Renamed)
705 return Renamed;
706 return &Symbol;
707 }
Rafael Espindola73ffea42010-09-25 05:42:19 +0000708
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000709 const MCSectionELF &Section =
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000710 static_cast<const MCSectionELF&>(ASymbol.getSection());
Rafael Espindola25958732010-11-24 21:57:39 +0000711 const SectionKind secKind = Section.getKind();
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000712
Rafael Espindola25958732010-11-24 21:57:39 +0000713 if (secKind.isBSS())
Jason W Kim953a2a32011-02-07 01:11:15 +0000714 return ExplicitRelSym(Asm, Target, F, true);
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000715
Rafael Espindola25958732010-11-24 21:57:39 +0000716 if (secKind.isThreadLocal()) {
717 if (Renamed)
718 return Renamed;
719 return &Symbol;
720 }
721
Rafael Espindola8cecf252010-10-06 16:23:36 +0000722 MCSymbolRefExpr::VariantKind Kind = Target.getSymA()->getKind();
Rafael Espindola3729d002010-10-05 23:57:26 +0000723 const MCSectionELF &Sec2 =
724 static_cast<const MCSectionELF&>(F.getParent()->getSection());
725
Rafael Espindola8cecf252010-10-06 16:23:36 +0000726 if (&Sec2 != &Section &&
Rafael Espindolac97f80e2010-10-18 16:38:04 +0000727 (Kind == MCSymbolRefExpr::VK_PLT ||
728 Kind == MCSymbolRefExpr::VK_GOTPCREL ||
Rafael Espindola25958732010-11-24 21:57:39 +0000729 Kind == MCSymbolRefExpr::VK_GOTOFF)) {
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000730 if (Renamed)
731 return Renamed;
732 return &Symbol;
733 }
Rafael Espindola3729d002010-10-05 23:57:26 +0000734
Rafael Espindola1c130262011-01-23 04:43:11 +0000735 if (Section.getFlags() & ELF::SHF_MERGE) {
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000736 if (Target.getConstant() == 0)
737 return NULL;
738 if (Renamed)
739 return Renamed;
740 return &Symbol;
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000741 }
Rafael Espindolac97f80e2010-10-18 16:38:04 +0000742
Jason W Kim953a2a32011-02-07 01:11:15 +0000743 return ExplicitRelSym(Asm, Target, F, false);
Rafael Espindola73ffea42010-09-25 05:42:19 +0000744}
745
Matt Fleming3565a062010-08-16 18:57:57 +0000746
Jason W Kim56a39902010-12-06 21:57:34 +0000747void ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
748 const MCAsmLayout &Layout,
749 const MCFragment *Fragment,
750 const MCFixup &Fixup,
751 MCValue Target,
752 uint64_t &FixedValue) {
753 int64_t Addend = 0;
754 int Index = 0;
755 int64_t Value = Target.getConstant();
756 const MCSymbol *RelocSymbol = NULL;
757
Rafael Espindola127a6a42010-12-17 07:28:17 +0000758 bool IsPCRel = isFixupKindPCRel(Asm, Fixup.getKind());
Jason W Kim56a39902010-12-06 21:57:34 +0000759 if (!Target.isAbsolute()) {
760 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
761 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
762 RelocSymbol = SymbolToReloc(Asm, Target, *Fragment);
763
764 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
765 const MCSymbol &SymbolB = RefB->getSymbol();
766 MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
767 IsPCRel = true;
768
769 // Offset of the symbol in the section
770 int64_t a = Layout.getSymbolOffset(&SDB);
771
772 // Ofeset of the relocation in the section
773 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
774 Value += b - a;
775 }
776
777 if (!RelocSymbol) {
778 MCSymbolData &SD = Asm.getSymbolData(ASymbol);
779 MCFragment *F = SD.getFragment();
780
781 Index = F->getParent()->getOrdinal() + 1;
782
783 // Offset of the symbol in the section
784 Value += Layout.getSymbolOffset(&SD);
785 } else {
786 if (Asm.getSymbolData(Symbol).getFlags() & ELF_Other_Weakref)
787 WeakrefUsedInReloc.insert(RelocSymbol);
788 else
789 UsedInReloc.insert(RelocSymbol);
790 Index = -1;
791 }
792 Addend = Value;
793 // Compensate for the addend on i386.
Rafael Espindolabff66a82010-12-18 03:27:34 +0000794 if (is64Bit())
Jason W Kim56a39902010-12-06 21:57:34 +0000795 Value = 0;
796 }
797
798 FixedValue = Value;
799 unsigned Type = GetRelocType(Target, Fixup, IsPCRel,
800 (RelocSymbol != 0), Addend);
801
802 uint64_t RelocOffset = Layout.getFragmentOffset(Fragment) +
803 Fixup.getOffset();
804
Rafael Espindolabff66a82010-12-18 03:27:34 +0000805 if (!hasRelocationAddend())
806 Addend = 0;
Jason W Kim56a39902010-12-06 21:57:34 +0000807 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
808 Relocations[Fragment->getParent()].push_back(ERE);
809}
810
811
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000812uint64_t
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000813ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
814 const MCSymbol *S) {
Benjamin Kramer7b83c262010-08-25 20:09:43 +0000815 MCSymbolData &SD = Asm.getSymbolData(*S);
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000816 return SD.getIndex();
Matt Fleming3565a062010-08-16 18:57:57 +0000817}
818
Rafael Espindola737cd212010-10-05 18:01:23 +0000819static bool isInSymtab(const MCAssembler &Asm, const MCSymbolData &Data,
Rafael Espindola88182132010-10-27 15:18:17 +0000820 bool Used, bool Renamed) {
Rafael Espindola484291c2010-11-01 14:28:48 +0000821 if (Data.getFlags() & ELF_Other_Weakref)
822 return false;
823
Rafael Espindolabd701182010-10-19 19:31:37 +0000824 if (Used)
825 return true;
826
Rafael Espindola88182132010-10-27 15:18:17 +0000827 if (Renamed)
828 return false;
829
Rafael Espindola737cd212010-10-05 18:01:23 +0000830 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindolaa6866962010-10-27 14:44:52 +0000831
Rafael Espindolad1798862010-10-29 23:09:31 +0000832 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
833 return true;
834
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000835 const MCSymbol &A = Symbol.AliasedSymbol();
Rafael Espindola21451e52011-02-23 20:22:07 +0000836 if (Symbol.isVariable() && !A.isVariable() && A.isUndefined())
837 return false;
838
839 bool IsGlobal = GetBinding(Data) == ELF::STB_GLOBAL;
840 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
Rafael Espindolaa6866962010-10-27 14:44:52 +0000841 return false;
842
Rafael Espindola737cd212010-10-05 18:01:23 +0000843 if (!Asm.isSymbolLinkerVisible(Symbol) && !Symbol.isUndefined())
844 return false;
845
Rafael Espindolabd701182010-10-19 19:31:37 +0000846 if (Symbol.isTemporary())
Rafael Espindola737cd212010-10-05 18:01:23 +0000847 return false;
848
849 return true;
850}
851
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000852static bool isLocal(const MCSymbolData &Data, bool isSignature,
853 bool isUsedInReloc) {
Rafael Espindola737cd212010-10-05 18:01:23 +0000854 if (Data.isExternal())
855 return false;
856
857 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000858 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000859
860 if (RefSymbol.isUndefined() && !RefSymbol.isVariable()) {
861 if (isSignature && !isUsedInReloc)
862 return true;
863
Rafael Espindola737cd212010-10-05 18:01:23 +0000864 return false;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000865 }
Rafael Espindola737cd212010-10-05 18:01:23 +0000866
867 return true;
868}
869
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000870void ELFObjectWriter::ComputeIndexMap(MCAssembler &Asm,
871 SectionIndexMapTy &SectionIndexMap) {
Rafael Espindolabab2a802010-11-10 21:51:05 +0000872 unsigned Index = 1;
873 for (MCAssembler::iterator it = Asm.begin(),
874 ie = Asm.end(); it != ie; ++it) {
875 const MCSectionELF &Section =
876 static_cast<const MCSectionELF &>(it->getSection());
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000877 if (Section.getType() != ELF::SHT_GROUP)
878 continue;
879 SectionIndexMap[&Section] = Index++;
880 }
881
882 for (MCAssembler::iterator it = Asm.begin(),
883 ie = Asm.end(); it != ie; ++it) {
884 const MCSectionELF &Section =
885 static_cast<const MCSectionELF &>(it->getSection());
886 if (Section.getType() == ELF::SHT_GROUP)
887 continue;
Rafael Espindolabab2a802010-11-10 21:51:05 +0000888 SectionIndexMap[&Section] = Index++;
889 }
890}
891
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000892void ELFObjectWriter::ComputeSymbolTable(MCAssembler &Asm,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000893 const SectionIndexMapTy &SectionIndexMap,
894 RevGroupMapTy RevGroupMap) {
Rafael Espindola5c77c162010-10-05 15:48:37 +0000895 // FIXME: Is this the correct place to do this?
896 if (NeedsGOT) {
897 llvm::StringRef Name = "_GLOBAL_OFFSET_TABLE_";
898 MCSymbol *Sym = Asm.getContext().GetOrCreateSymbol(Name);
899 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
900 Data.setExternal(true);
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000901 SetBinding(Data, ELF::STB_GLOBAL);
Rafael Espindola5c77c162010-10-05 15:48:37 +0000902 }
903
Matt Fleming3565a062010-08-16 18:57:57 +0000904 // Build section lookup table.
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000905 int NumRegularSections = Asm.size();
Matt Fleming3565a062010-08-16 18:57:57 +0000906
907 // Index 0 is always the empty string.
908 StringMap<uint64_t> StringIndexMap;
909 StringTable += '\x00';
910
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000911 // Add the data for the symbols.
Matt Fleming3565a062010-08-16 18:57:57 +0000912 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
913 ie = Asm.symbol_end(); it != ie; ++it) {
914 const MCSymbol &Symbol = it->getSymbol();
915
Rafael Espindola484291c2010-11-01 14:28:48 +0000916 bool Used = UsedInReloc.count(&Symbol);
917 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000918 bool isSignature = RevGroupMap.count(&Symbol);
919
920 if (!isInSymtab(Asm, *it,
921 Used || WeakrefUsed || isSignature,
Rafael Espindola88182132010-10-27 15:18:17 +0000922 Renames.count(&Symbol)))
Matt Fleming3565a062010-08-16 18:57:57 +0000923 continue;
924
Matt Fleming3565a062010-08-16 18:57:57 +0000925 ELFSymbolData MSD;
926 MSD.SymbolData = it;
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000927 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
Matt Fleming3565a062010-08-16 18:57:57 +0000928
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000929 // Undefined symbols are global, but this is the first place we
930 // are able to set it.
931 bool Local = isLocal(*it, isSignature, Used);
932 if (!Local && GetBinding(*it) == ELF::STB_LOCAL) {
933 MCSymbolData &SD = Asm.getSymbolData(RefSymbol);
934 SetBinding(*it, ELF::STB_GLOBAL);
935 SetBinding(SD, ELF::STB_GLOBAL);
936 }
937
Rafael Espindola484291c2010-11-01 14:28:48 +0000938 if (RefSymbol.isUndefined() && !Used && WeakrefUsed)
939 SetBinding(*it, ELF::STB_WEAK);
940
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000941 if (it->isCommon()) {
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000942 assert(!Local);
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000943 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolabf052ac2010-10-27 16:04:30 +0000944 } else if (Symbol.isAbsolute() || RefSymbol.isVariable()) {
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000945 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola88182132010-10-27 15:18:17 +0000946 } else if (RefSymbol.isUndefined()) {
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000947 if (isSignature && !Used)
948 MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]);
949 else
950 MSD.SectionIndex = ELF::SHN_UNDEF;
Matt Fleming3565a062010-08-16 18:57:57 +0000951 } else {
Rafael Espindolabab2a802010-11-10 21:51:05 +0000952 const MCSectionELF &Section =
953 static_cast<const MCSectionELF&>(RefSymbol.getSection());
954 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000955 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
956 NeedsSymtabShndx = true;
Matt Fleming3565a062010-08-16 18:57:57 +0000957 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5df0b652010-10-15 15:39:06 +0000958 }
959
Rafael Espindola88182132010-10-27 15:18:17 +0000960 // The @@@ in symbol version is replaced with @ in undefined symbols and
961 // @@ in defined ones.
962 StringRef Name = Symbol.getName();
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000963 SmallString<32> Buf;
964
Rafael Espindola88182132010-10-27 15:18:17 +0000965 size_t Pos = Name.find("@@@");
Rafael Espindola88182132010-10-27 15:18:17 +0000966 if (Pos != StringRef::npos) {
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000967 Buf += Name.substr(0, Pos);
968 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
969 Buf += Name.substr(Pos + Skip);
970 Name = Buf;
Rafael Espindola88182132010-10-27 15:18:17 +0000971 }
972
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000973 uint64_t &Entry = StringIndexMap[Name];
Rafael Espindolaa6866962010-10-27 14:44:52 +0000974 if (!Entry) {
975 Entry = StringTable.size();
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000976 StringTable += Name;
Rafael Espindolaa6866962010-10-27 14:44:52 +0000977 StringTable += '\x00';
Matt Fleming3565a062010-08-16 18:57:57 +0000978 }
Rafael Espindolaa6866962010-10-27 14:44:52 +0000979 MSD.StringIndex = Entry;
980 if (MSD.SectionIndex == ELF::SHN_UNDEF)
981 UndefinedSymbolData.push_back(MSD);
982 else if (Local)
983 LocalSymbolData.push_back(MSD);
984 else
985 ExternalSymbolData.push_back(MSD);
Matt Fleming3565a062010-08-16 18:57:57 +0000986 }
987
988 // Symbols are required to be in lexicographic order.
989 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
990 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
991 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
992
993 // Set the symbol indices. Local symbols must come before all other
994 // symbols with non-local bindings.
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000995 unsigned Index = 1;
Matt Fleming3565a062010-08-16 18:57:57 +0000996 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
997 LocalSymbolData[i].SymbolData->setIndex(Index++);
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000998
999 Index += NumRegularSections;
1000
Matt Fleming3565a062010-08-16 18:57:57 +00001001 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
1002 ExternalSymbolData[i].SymbolData->setIndex(Index++);
1003 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
1004 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
1005}
1006
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001007void ELFObjectWriter::WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
1008 const MCSectionData &SD) {
Matt Fleming3565a062010-08-16 18:57:57 +00001009 if (!Relocations[&SD].empty()) {
1010 MCContext &Ctx = Asm.getContext();
Rafael Espindola4283f4b2010-11-10 19:05:07 +00001011 const MCSectionELF *RelaSection;
Matt Fleming3565a062010-08-16 18:57:57 +00001012 const MCSectionELF &Section =
1013 static_cast<const MCSectionELF&>(SD.getSection());
1014
1015 const StringRef SectionName = Section.getSectionName();
Rafael Espindolabff66a82010-12-18 03:27:34 +00001016 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
Matt Fleming3565a062010-08-16 18:57:57 +00001017 RelaSectionName += SectionName;
Benjamin Kramer299fbe32010-08-17 17:56:13 +00001018
1019 unsigned EntrySize;
Rafael Espindolabff66a82010-12-18 03:27:34 +00001020 if (hasRelocationAddend())
1021 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
Benjamin Kramer299fbe32010-08-17 17:56:13 +00001022 else
Rafael Espindolabff66a82010-12-18 03:27:34 +00001023 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming3565a062010-08-16 18:57:57 +00001024
Rafael Espindolabff66a82010-12-18 03:27:34 +00001025 RelaSection = Ctx.getELFSection(RelaSectionName, hasRelocationAddend() ?
Benjamin Kramer377a5722010-08-17 17:30:07 +00001026 ELF::SHT_RELA : ELF::SHT_REL, 0,
Matt Fleming3565a062010-08-16 18:57:57 +00001027 SectionKind::getReadOnly(),
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001028 EntrySize, "");
Matt Fleming3565a062010-08-16 18:57:57 +00001029
1030 MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
Rafael Espindolabff66a82010-12-18 03:27:34 +00001031 RelaSD.setAlignment(is64Bit() ? 8 : 4);
Matt Fleming3565a062010-08-16 18:57:57 +00001032
1033 MCDataFragment *F = new MCDataFragment(&RelaSD);
1034
1035 WriteRelocationsFragment(Asm, F, &SD);
Matt Fleming3565a062010-08-16 18:57:57 +00001036 }
1037}
1038
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001039void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1040 uint64_t Flags, uint64_t Address,
1041 uint64_t Offset, uint64_t Size,
1042 uint32_t Link, uint32_t Info,
1043 uint64_t Alignment,
1044 uint64_t EntrySize) {
Matt Fleming3565a062010-08-16 18:57:57 +00001045 Write32(Name); // sh_name: index into string table
1046 Write32(Type); // sh_type
1047 WriteWord(Flags); // sh_flags
1048 WriteWord(Address); // sh_addr
1049 WriteWord(Offset); // sh_offset
1050 WriteWord(Size); // sh_size
1051 Write32(Link); // sh_link
1052 Write32(Info); // sh_info
1053 WriteWord(Alignment); // sh_addralign
1054 WriteWord(EntrySize); // sh_entsize
1055}
1056
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001057void ELFObjectWriter::WriteRelocationsFragment(const MCAssembler &Asm,
1058 MCDataFragment *F,
1059 const MCSectionData *SD) {
Matt Fleming3565a062010-08-16 18:57:57 +00001060 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
1061 // sort by the r_offset just like gnu as does
1062 array_pod_sort(Relocs.begin(), Relocs.end());
1063
1064 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
1065 ELFRelocationEntry entry = Relocs[e - i - 1];
1066
Rafael Espindola12203cc2010-11-21 00:48:25 +00001067 if (!entry.Index)
1068 ;
1069 else if (entry.Index < 0)
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001070 entry.Index = getSymbolIndexInSymbolTable(Asm, entry.Symbol);
1071 else
Rafael Espindola12203cc2010-11-21 00:48:25 +00001072 entry.Index += LocalSymbolData.size();
Rafael Espindolabff66a82010-12-18 03:27:34 +00001073 if (is64Bit()) {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001074 String64(*F, entry.r_offset);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001075
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001076 struct ELF::Elf64_Rela ERE64;
1077 ERE64.setSymbolAndType(entry.Index, entry.Type);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001078 String64(*F, ERE64.r_info);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001079
Rafael Espindolabff66a82010-12-18 03:27:34 +00001080 if (hasRelocationAddend())
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001081 String64(*F, entry.r_addend);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001082 } else {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001083 String32(*F, entry.r_offset);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001084
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001085 struct ELF::Elf32_Rela ERE32;
1086 ERE32.setSymbolAndType(entry.Index, entry.Type);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001087 String32(*F, ERE32.r_info);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001088
Rafael Espindolabff66a82010-12-18 03:27:34 +00001089 if (hasRelocationAddend())
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001090 String32(*F, entry.r_addend);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001091 }
Matt Fleming3565a062010-08-16 18:57:57 +00001092 }
1093}
1094
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001095void ELFObjectWriter::CreateMetadataSections(MCAssembler &Asm,
1096 MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +00001097 const SectionIndexMapTy &SectionIndexMap) {
Matt Fleming3565a062010-08-16 18:57:57 +00001098 MCContext &Ctx = Asm.getContext();
1099 MCDataFragment *F;
1100
Rafael Espindolabff66a82010-12-18 03:27:34 +00001101 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
Matt Fleming3565a062010-08-16 18:57:57 +00001102
Rafael Espindola38738bf2010-09-22 19:04:41 +00001103 // We construct .shstrtab, .symtab and .strtab in this order to match gnu as.
Rafael Espindola4283f4b2010-11-10 19:05:07 +00001104 const MCSectionELF *ShstrtabSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +00001105 Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001106 SectionKind::getReadOnly());
Rafael Espindola71859c62010-09-16 19:46:31 +00001107 MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
1108 ShstrtabSD.setAlignment(1);
1109 ShstrtabIndex = Asm.size();
1110
Rafael Espindola4283f4b2010-11-10 19:05:07 +00001111 const MCSectionELF *SymtabSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +00001112 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
1113 SectionKind::getReadOnly(),
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001114 EntrySize, "");
Matt Fleming3565a062010-08-16 18:57:57 +00001115 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
Rafael Espindolabff66a82010-12-18 03:27:34 +00001116 SymtabSD.setAlignment(is64Bit() ? 8 : 4);
Rafael Espindola7be2c332010-10-31 00:16:26 +00001117 SymbolTableIndex = Asm.size();
1118
1119 MCSectionData *SymtabShndxSD = NULL;
1120
1121 if (NeedsSymtabShndx) {
Rafael Espindola4283f4b2010-11-10 19:05:07 +00001122 const MCSectionELF *SymtabShndxSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +00001123 Ctx.getELFSection(".symtab_shndx", ELF::SHT_SYMTAB_SHNDX, 0,
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001124 SectionKind::getReadOnly(), 4, "");
Rafael Espindola7be2c332010-10-31 00:16:26 +00001125 SymtabShndxSD = &Asm.getOrCreateSectionData(*SymtabShndxSection);
1126 SymtabShndxSD->setAlignment(4);
1127 }
Matt Fleming3565a062010-08-16 18:57:57 +00001128
Matt Fleming3565a062010-08-16 18:57:57 +00001129 const MCSection *StrtabSection;
1130 StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001131 SectionKind::getReadOnly());
Matt Fleming3565a062010-08-16 18:57:57 +00001132 MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
1133 StrtabSD.setAlignment(1);
Matt Fleming3565a062010-08-16 18:57:57 +00001134 StringTableIndex = Asm.size();
1135
Rafael Espindolac3c413f2010-09-27 22:04:54 +00001136 WriteRelocations(Asm, Layout);
Rafael Espindola71859c62010-09-16 19:46:31 +00001137
1138 // Symbol table
1139 F = new MCDataFragment(&SymtabSD);
Rafael Espindola7be2c332010-10-31 00:16:26 +00001140 MCDataFragment *ShndxF = NULL;
1141 if (NeedsSymtabShndx) {
1142 ShndxF = new MCDataFragment(SymtabShndxSD);
Rafael Espindola7be2c332010-10-31 00:16:26 +00001143 }
Rafael Espindola4beee3d2010-11-10 22:16:43 +00001144 WriteSymbolTable(F, ShndxF, Asm, Layout, SectionIndexMap);
Rafael Espindola71859c62010-09-16 19:46:31 +00001145
Matt Fleming3565a062010-08-16 18:57:57 +00001146 F = new MCDataFragment(&StrtabSD);
1147 F->getContents().append(StringTable.begin(), StringTable.end());
Matt Fleming3565a062010-08-16 18:57:57 +00001148
Matt Fleming3565a062010-08-16 18:57:57 +00001149 F = new MCDataFragment(&ShstrtabSD);
1150
Matt Fleming3565a062010-08-16 18:57:57 +00001151 // Section header string table.
1152 //
1153 // The first entry of a string table holds a null character so skip
1154 // section 0.
1155 uint64_t Index = 1;
1156 F->getContents() += '\x00';
1157
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001158 StringMap<uint64_t> SecStringMap;
Matt Fleming3565a062010-08-16 18:57:57 +00001159 for (MCAssembler::const_iterator it = Asm.begin(),
1160 ie = Asm.end(); it != ie; ++it) {
Matt Fleming3565a062010-08-16 18:57:57 +00001161 const MCSectionELF &Section =
Benjamin Kramer368ae7e2010-08-17 00:00:46 +00001162 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola51efe7a2010-09-23 14:14:56 +00001163 // FIXME: We could merge suffixes like in .text and .rela.text.
Matt Fleming3565a062010-08-16 18:57:57 +00001164
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001165 StringRef Name = Section.getSectionName();
1166 if (SecStringMap.count(Name)) {
1167 SectionStringTableIndex[&Section] = SecStringMap[Name];
1168 continue;
1169 }
Matt Fleming3565a062010-08-16 18:57:57 +00001170 // Remember the index into the string table so we can write it
1171 // into the sh_name field of the section header table.
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001172 SectionStringTableIndex[&Section] = Index;
1173 SecStringMap[Name] = Index;
Matt Fleming3565a062010-08-16 18:57:57 +00001174
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001175 Index += Name.size() + 1;
1176 F->getContents() += Name;
Matt Fleming3565a062010-08-16 18:57:57 +00001177 F->getContents() += '\x00';
1178 }
Rafael Espindola70703872010-09-30 02:22:20 +00001179}
1180
Rafael Espindola96aa78c2011-01-23 17:55:27 +00001181void ELFObjectWriter::CreateIndexedSections(MCAssembler &Asm,
1182 MCAsmLayout &Layout,
1183 GroupMapTy &GroupMap,
1184 RevGroupMapTy &RevGroupMap) {
1185 // Create the .note.GNU-stack section if needed.
1186 MCContext &Ctx = Asm.getContext();
1187 if (Asm.getNoExecStack()) {
1188 const MCSectionELF *GnuStackSection =
1189 Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS, 0,
1190 SectionKind::getReadOnly());
1191 Asm.getOrCreateSectionData(*GnuStackSection);
1192 }
1193
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001194 // Build the groups
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001195 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
1196 it != ie; ++it) {
1197 const MCSectionELF &Section =
1198 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola1c130262011-01-23 04:43:11 +00001199 if (!(Section.getFlags() & ELF::SHF_GROUP))
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001200 continue;
1201
1202 const MCSymbol *SignatureSymbol = Section.getGroup();
1203 Asm.getOrCreateSymbolData(*SignatureSymbol);
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001204 const MCSectionELF *&Group = RevGroupMap[SignatureSymbol];
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001205 if (!Group) {
Rafael Espindola96aa78c2011-01-23 17:55:27 +00001206 Group = Ctx.CreateELFGroupSection();
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001207 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1208 Data.setAlignment(4);
1209 MCDataFragment *F = new MCDataFragment(&Data);
1210 String32(*F, ELF::GRP_COMDAT);
1211 }
1212 GroupMap[Group] = SignatureSymbol;
1213 }
1214
1215 // Add sections to the groups
1216 unsigned Index = 1;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001217 unsigned NumGroups = RevGroupMap.size();
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001218 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
1219 it != ie; ++it, ++Index) {
1220 const MCSectionELF &Section =
1221 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola1c130262011-01-23 04:43:11 +00001222 if (!(Section.getFlags() & ELF::SHF_GROUP))
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001223 continue;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001224 const MCSectionELF *Group = RevGroupMap[Section.getGroup()];
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001225 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1226 // FIXME: we could use the previous fragment
1227 MCDataFragment *F = new MCDataFragment(&Data);
1228 String32(*F, NumGroups + Index);
1229 }
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001230}
1231
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001232void ELFObjectWriter::WriteSection(MCAssembler &Asm,
1233 const SectionIndexMapTy &SectionIndexMap,
1234 uint32_t GroupSymbolIndex,
1235 uint64_t Offset, uint64_t Size,
1236 uint64_t Alignment,
1237 const MCSectionELF &Section) {
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001238 uint64_t sh_link = 0;
1239 uint64_t sh_info = 0;
1240
1241 switch(Section.getType()) {
1242 case ELF::SHT_DYNAMIC:
1243 sh_link = SectionStringTableIndex[&Section];
1244 sh_info = 0;
1245 break;
1246
1247 case ELF::SHT_REL:
1248 case ELF::SHT_RELA: {
1249 const MCSectionELF *SymtabSection;
1250 const MCSectionELF *InfoSection;
1251 SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB,
1252 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001253 SectionKind::getReadOnly());
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001254 sh_link = SectionIndexMap.lookup(SymtabSection);
1255 assert(sh_link && ".symtab not found");
1256
1257 // Remove ".rel" and ".rela" prefixes.
1258 unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
1259 StringRef SectionName = Section.getSectionName().substr(SecNameLen);
1260
1261 InfoSection = Asm.getContext().getELFSection(SectionName,
1262 ELF::SHT_PROGBITS, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001263 SectionKind::getReadOnly());
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001264 sh_info = SectionIndexMap.lookup(InfoSection);
1265 break;
1266 }
1267
1268 case ELF::SHT_SYMTAB:
1269 case ELF::SHT_DYNSYM:
1270 sh_link = StringTableIndex;
1271 sh_info = LastLocalSymbolIndex;
1272 break;
1273
1274 case ELF::SHT_SYMTAB_SHNDX:
1275 sh_link = SymbolTableIndex;
1276 break;
1277
1278 case ELF::SHT_PROGBITS:
1279 case ELF::SHT_STRTAB:
1280 case ELF::SHT_NOBITS:
Rafael Espindola98976612010-12-26 21:30:59 +00001281 case ELF::SHT_NOTE:
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001282 case ELF::SHT_NULL:
1283 case ELF::SHT_ARM_ATTRIBUTES:
Jason W Kim86a97f22011-01-12 00:19:25 +00001284 case ELF::SHT_INIT_ARRAY:
1285 case ELF::SHT_FINI_ARRAY:
1286 case ELF::SHT_PREINIT_ARRAY:
Rafael Espindola0cf5e3d2011-01-23 05:43:40 +00001287 case ELF::SHT_X86_64_UNWIND:
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001288 // Nothing to do.
1289 break;
1290
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001291 case ELF::SHT_GROUP: {
1292 sh_link = SymbolTableIndex;
1293 sh_info = GroupSymbolIndex;
1294 break;
1295 }
1296
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001297 default:
1298 assert(0 && "FIXME: sh_type value not supported!");
1299 break;
1300 }
1301
1302 WriteSecHdrEntry(SectionStringTableIndex[&Section], Section.getType(),
1303 Section.getFlags(), 0, Offset, Size, sh_link, sh_info,
1304 Alignment, Section.getEntrySize());
1305}
1306
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001307static bool IsELFMetaDataSection(const MCSectionData &SD) {
Rafael Espindolaf8803fe2010-12-06 03:48:09 +00001308 return SD.getOrdinal() == ~UINT32_C(0) &&
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001309 !SD.getSection().isVirtualSection();
1310}
1311
1312static uint64_t DataSectionSize(const MCSectionData &SD) {
1313 uint64_t Ret = 0;
1314 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1315 ++i) {
1316 const MCFragment &F = *i;
1317 assert(F.getKind() == MCFragment::FT_Data);
1318 Ret += cast<MCDataFragment>(F).getContents().size();
1319 }
1320 return Ret;
1321}
1322
1323static uint64_t GetSectionFileSize(const MCAsmLayout &Layout,
1324 const MCSectionData &SD) {
1325 if (IsELFMetaDataSection(SD))
1326 return DataSectionSize(SD);
1327 return Layout.getSectionFileSize(&SD);
1328}
1329
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001330static uint64_t GetSectionAddressSize(const MCAsmLayout &Layout,
1331 const MCSectionData &SD) {
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001332 if (IsELFMetaDataSection(SD))
1333 return DataSectionSize(SD);
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001334 return Layout.getSectionAddressSize(&SD);
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001335}
1336
1337static void WriteDataSectionData(ELFObjectWriter *W, const MCSectionData &SD) {
1338 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1339 ++i) {
1340 const MCFragment &F = *i;
1341 assert(F.getKind() == MCFragment::FT_Data);
1342 W->WriteBytes(cast<MCDataFragment>(F).getContents().str());
1343 }
1344}
1345
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001346void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1347 const MCAsmLayout &Layout) {
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001348 GroupMapTy GroupMap;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001349 RevGroupMapTy RevGroupMap;
Rafael Espindola96aa78c2011-01-23 17:55:27 +00001350 CreateIndexedSections(Asm, const_cast<MCAsmLayout&>(Layout), GroupMap,
1351 RevGroupMap);
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001352
Rafael Espindolabab2a802010-11-10 21:51:05 +00001353 SectionIndexMapTy SectionIndexMap;
1354
1355 ComputeIndexMap(Asm, SectionIndexMap);
1356
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001357 // Compute symbol table information.
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001358 ComputeSymbolTable(Asm, SectionIndexMap, RevGroupMap);
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001359
Matt Fleming3565a062010-08-16 18:57:57 +00001360 CreateMetadataSections(const_cast<MCAssembler&>(Asm),
Rafael Espindola4beee3d2010-11-10 22:16:43 +00001361 const_cast<MCAsmLayout&>(Layout),
1362 SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +00001363
Rafael Espindola1d739a02010-11-10 22:34:07 +00001364 // Update to include the metadata sections.
1365 ComputeIndexMap(Asm, SectionIndexMap);
1366
Matt Fleming3565a062010-08-16 18:57:57 +00001367 // Add 1 for the null section.
1368 unsigned NumSections = Asm.size() + 1;
Rafael Espindolabff66a82010-12-18 03:27:34 +00001369 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
1370 uint64_t HeaderSize = is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
1371 sizeof(ELF::Elf32_Ehdr);
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001372 uint64_t FileOff = HeaderSize;
Matt Fleming3565a062010-08-16 18:57:57 +00001373
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001374 std::vector<const MCSectionELF*> Sections;
1375 Sections.resize(NumSections);
1376
1377 for (SectionIndexMapTy::const_iterator i=
1378 SectionIndexMap.begin(), e = SectionIndexMap.end(); i != e; ++i) {
1379 const std::pair<const MCSectionELF*, uint32_t> &p = *i;
1380 Sections[p.second] = p.first;
1381 }
1382
1383 for (unsigned i = 1; i < NumSections; ++i) {
1384 const MCSectionELF &Section = *Sections[i];
1385 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
Matt Fleming3565a062010-08-16 18:57:57 +00001386
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001387 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1388
Matt Fleming3565a062010-08-16 18:57:57 +00001389 // Get the size of the section in the output file (including padding).
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001390 FileOff += GetSectionFileSize(Layout, SD);
Matt Fleming3565a062010-08-16 18:57:57 +00001391 }
1392
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001393 FileOff = RoundUpToAlignment(FileOff, NaturalAlignment);
1394
Matt Fleming3565a062010-08-16 18:57:57 +00001395 // Write out the ELF header ...
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001396 WriteHeader(FileOff - HeaderSize, NumSections);
1397
1398 FileOff = HeaderSize;
Matt Fleming3565a062010-08-16 18:57:57 +00001399
1400 // ... then all of the sections ...
1401 DenseMap<const MCSection*, uint64_t> SectionOffsetMap;
1402
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001403 for (unsigned i = 1; i < NumSections; ++i) {
1404 const MCSectionELF &Section = *Sections[i];
1405 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001406
1407 uint64_t Padding = OffsetToAlignment(FileOff, SD.getAlignment());
1408 WriteZeros(Padding);
1409 FileOff += Padding;
1410
Matt Fleming3565a062010-08-16 18:57:57 +00001411 // Remember the offset into the file for this section.
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001412 SectionOffsetMap[&Section] = FileOff;
Benjamin Kramer44cbde82010-08-19 13:44:49 +00001413
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001414 FileOff += GetSectionFileSize(Layout, SD);
Matt Fleming3565a062010-08-16 18:57:57 +00001415
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001416 if (IsELFMetaDataSection(SD))
1417 WriteDataSectionData(this, SD);
1418 else
Daniel Dunbar5d2477c2010-12-17 02:45:59 +00001419 Asm.WriteSectionData(&SD, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +00001420 }
1421
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001422 uint64_t Padding = OffsetToAlignment(FileOff, NaturalAlignment);
1423 WriteZeros(Padding);
1424 FileOff += Padding;
1425
Matt Fleming3565a062010-08-16 18:57:57 +00001426 // ... and then the section header table.
1427 // Should we align the section header table?
1428 //
1429 // Null section first.
Rafael Espindola7be2c332010-10-31 00:16:26 +00001430 uint64_t FirstSectionSize =
1431 NumSections >= ELF::SHN_LORESERVE ? NumSections : 0;
1432 uint32_t FirstSectionLink =
1433 ShstrtabIndex >= ELF::SHN_LORESERVE ? ShstrtabIndex : 0;
1434 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, FirstSectionLink, 0, 0, 0);
Matt Fleming3565a062010-08-16 18:57:57 +00001435
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001436 for (unsigned i = 1; i < NumSections; ++i) {
1437 const MCSectionELF &Section = *Sections[i];
1438 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1439 uint32_t GroupSymbolIndex;
1440 if (Section.getType() != ELF::SHT_GROUP)
1441 GroupSymbolIndex = 0;
1442 else
1443 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm, GroupMap[&Section]);
Matt Fleming3565a062010-08-16 18:57:57 +00001444
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001445 uint64_t Size = GetSectionAddressSize(Layout, SD);
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001446
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001447 WriteSection(Asm, SectionIndexMap, GroupSymbolIndex,
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001448 SectionOffsetMap[&Section], Size,
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001449 SD.getAlignment(), Section);
Matt Fleming3565a062010-08-16 18:57:57 +00001450 }
1451}
1452
Rafael Espindola6024c972010-12-17 17:45:22 +00001453MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
1454 raw_ostream &OS,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001455 bool IsLittleEndian) {
1456 switch (MOTW->getEMachine()) {
Jason W Kimd3443e92010-11-15 16:18:39 +00001457 case ELF::EM_386:
1458 case ELF::EM_X86_64:
Rafael Espindolabff66a82010-12-18 03:27:34 +00001459 return new X86ELFObjectWriter(MOTW, OS, IsLittleEndian); break;
Jason W Kimd3443e92010-11-15 16:18:39 +00001460 case ELF::EM_ARM:
Rafael Espindolabff66a82010-12-18 03:27:34 +00001461 return new ARMELFObjectWriter(MOTW, OS, IsLittleEndian); break;
Wesley Peck4b047132010-11-21 22:06:28 +00001462 case ELF::EM_MBLAZE:
Rafael Espindolabff66a82010-12-18 03:27:34 +00001463 return new MBlazeELFObjectWriter(MOTW, OS, IsLittleEndian); break;
Benjamin Kramer32858772010-11-15 19:20:50 +00001464 default: llvm_unreachable("Unsupported architecture"); break;
Jason W Kimd3443e92010-11-15 16:18:39 +00001465 }
1466}
1467
1468
1469/// START OF SUBCLASSES for ELFObjectWriter
1470//===- ARMELFObjectWriter -------------------------------------------===//
1471
Rafael Espindola31f35782010-12-17 18:01:31 +00001472ARMELFObjectWriter::ARMELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001473 raw_ostream &_OS,
1474 bool IsLittleEndian)
1475 : ELFObjectWriter(MOTW, _OS, IsLittleEndian)
Jason W Kimd3443e92010-11-15 16:18:39 +00001476{}
1477
1478ARMELFObjectWriter::~ARMELFObjectWriter()
1479{}
1480
Jason W Kim2d7a53a2011-02-04 21:41:11 +00001481// FIXME: get the real EABI Version from the Triple.
1482void ARMELFObjectWriter::WriteEFlags() {
1483 Write32(ELF::EF_ARM_EABIMASK & DefaultEABIVersion);
1484}
1485
Jason W Kim953a2a32011-02-07 01:11:15 +00001486// In ARM, _MergedGlobals and other most symbols get emitted directly.
1487// I.e. not as an offset to a section symbol.
1488// This code is a first-cut approximation of what ARM/gcc does.
1489
1490const MCSymbol *ARMELFObjectWriter::ExplicitRelSym(const MCAssembler &Asm,
1491 const MCValue &Target,
1492 const MCFragment &F,
1493 bool IsBSS) const {
1494 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
1495 bool EmitThisSym = false;
1496
1497 if (IsBSS) {
1498 EmitThisSym = StringSwitch<bool>(Symbol.getName())
1499 .Case("_MergedGlobals", true)
1500 .Default(false);
1501 } else {
1502 EmitThisSym = StringSwitch<bool>(Symbol.getName())
1503 .Case("_MergedGlobals", true)
1504 .StartsWith(".L.str", true)
1505 .Default(false);
1506 }
1507 if (EmitThisSym)
1508 return &Symbol;
1509 if (! Symbol.isTemporary())
1510 return &Symbol;
1511 return NULL;
1512}
1513
Jason W Kim85fed5e2010-12-01 02:40:06 +00001514unsigned ARMELFObjectWriter::GetRelocType(const MCValue &Target,
1515 const MCFixup &Fixup,
Jason W Kim56a39902010-12-06 21:57:34 +00001516 bool IsPCRel,
1517 bool IsRelocWithSymbol,
1518 int64_t Addend) {
Jason W Kim85fed5e2010-12-01 02:40:06 +00001519 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1520 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
1521
Jason W Kima0871e72010-12-08 23:14:44 +00001522 unsigned Type = 0;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001523 if (IsPCRel) {
Jason W Kim85fed5e2010-12-01 02:40:06 +00001524 switch ((unsigned)Fixup.getKind()) {
1525 default: assert(0 && "Unimplemented");
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001526 case FK_Data_4:
1527 switch (Modifier) {
1528 default: llvm_unreachable("Unsupported Modifier");
1529 case MCSymbolRefExpr::VK_None:
Jason W Kim1d866172011-01-13 00:07:51 +00001530 Type = ELF::R_ARM_BASE_PREL;
1531 break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001532 case MCSymbolRefExpr::VK_ARM_TLSGD:
Jason W Kim1d866172011-01-13 00:07:51 +00001533 assert(0 && "unimplemented");
1534 break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001535 case MCSymbolRefExpr::VK_ARM_GOTTPOFF:
1536 Type = ELF::R_ARM_TLS_IE32;
Jason W Kim1d866172011-01-13 00:07:51 +00001537 break;
1538 }
1539 break;
Jason W Kim685c3502011-02-04 19:47:15 +00001540 case ARM::fixup_arm_uncondbranch:
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001541 switch (Modifier) {
1542 case MCSymbolRefExpr::VK_ARM_PLT:
Jason W Kim1d866172011-01-13 00:07:51 +00001543 Type = ELF::R_ARM_PLT32;
1544 break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001545 default:
Jason W Kim1d866172011-01-13 00:07:51 +00001546 Type = ELF::R_ARM_CALL;
1547 break;
1548 }
1549 break;
Jason W Kim685c3502011-02-04 19:47:15 +00001550 case ARM::fixup_arm_condbranch:
1551 Type = ELF::R_ARM_JUMP24;
1552 break;
Jason W Kim86a97f22011-01-12 00:19:25 +00001553 case ARM::fixup_arm_movt_hi16:
1554 case ARM::fixup_arm_movt_hi16_pcrel:
Jason W Kim1d866172011-01-13 00:07:51 +00001555 Type = ELF::R_ARM_MOVT_PREL;
1556 break;
Jason W Kim86a97f22011-01-12 00:19:25 +00001557 case ARM::fixup_arm_movw_lo16:
1558 case ARM::fixup_arm_movw_lo16_pcrel:
Jason W Kim1d866172011-01-13 00:07:51 +00001559 Type = ELF::R_ARM_MOVW_PREL_NC;
1560 break;
Evan Chengf3eb3bb2011-01-14 02:38:49 +00001561 case ARM::fixup_t2_movt_hi16:
1562 case ARM::fixup_t2_movt_hi16_pcrel:
1563 Type = ELF::R_ARM_THM_MOVT_PREL;
1564 break;
1565 case ARM::fixup_t2_movw_lo16:
1566 case ARM::fixup_t2_movw_lo16_pcrel:
1567 Type = ELF::R_ARM_THM_MOVW_PREL_NC;
1568 break;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001569 }
1570 } else {
1571 switch ((unsigned)Fixup.getKind()) {
1572 default: llvm_unreachable("invalid fixup kind!");
Jason W Kima0871e72010-12-08 23:14:44 +00001573 case FK_Data_4:
1574 switch (Modifier) {
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001575 default: llvm_unreachable("Unsupported Modifier"); break;
1576 case MCSymbolRefExpr::VK_ARM_GOT:
Jason W Kim1d866172011-01-13 00:07:51 +00001577 Type = ELF::R_ARM_GOT_BREL;
1578 break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001579 case MCSymbolRefExpr::VK_ARM_TLSGD:
Jason W Kim1d866172011-01-13 00:07:51 +00001580 Type = ELF::R_ARM_TLS_GD32;
1581 break;
Jason W Kimf13743b2010-12-16 03:12:17 +00001582 case MCSymbolRefExpr::VK_ARM_TPOFF:
Jason W Kim1d866172011-01-13 00:07:51 +00001583 Type = ELF::R_ARM_TLS_LE32;
1584 break;
Jason W Kima0871e72010-12-08 23:14:44 +00001585 case MCSymbolRefExpr::VK_ARM_GOTTPOFF:
Jason W Kim1d866172011-01-13 00:07:51 +00001586 Type = ELF::R_ARM_TLS_IE32;
1587 break;
Jason W Kimf13743b2010-12-16 03:12:17 +00001588 case MCSymbolRefExpr::VK_None:
Jason W Kim1d866172011-01-13 00:07:51 +00001589 Type = ELF::R_ARM_ABS32;
1590 break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001591 case MCSymbolRefExpr::VK_ARM_GOTOFF:
Jason W Kim1d866172011-01-13 00:07:51 +00001592 Type = ELF::R_ARM_GOTOFF32;
1593 break;
1594 }
1595 break;
Jim Grosbachdff84b02010-12-02 00:28:45 +00001596 case ARM::fixup_arm_ldst_pcrel_12:
Owen Anderson9d63d902010-12-01 19:18:46 +00001597 case ARM::fixup_arm_pcrel_10:
Jim Grosbachdff84b02010-12-02 00:28:45 +00001598 case ARM::fixup_arm_adr_pcrel_12:
Jim Grosbach662a8162010-12-06 23:57:07 +00001599 case ARM::fixup_arm_thumb_bl:
Jim Grosbachb492a7c2010-12-09 19:50:12 +00001600 case ARM::fixup_arm_thumb_cb:
Bill Wendlingb8958b02010-12-08 01:57:09 +00001601 case ARM::fixup_arm_thumb_cp:
Jim Grosbache2467172010-12-10 18:21:33 +00001602 case ARM::fixup_arm_thumb_br:
Jason W Kim1d866172011-01-13 00:07:51 +00001603 assert(0 && "Unimplemented");
1604 break;
Jason W Kim685c3502011-02-04 19:47:15 +00001605 case ARM::fixup_arm_uncondbranch:
Jason W Kim1d866172011-01-13 00:07:51 +00001606 Type = ELF::R_ARM_CALL;
1607 break;
Jason W Kim685c3502011-02-04 19:47:15 +00001608 case ARM::fixup_arm_condbranch:
1609 Type = ELF::R_ARM_JUMP24;
1610 break;
Jason W Kim1d866172011-01-13 00:07:51 +00001611 case ARM::fixup_arm_movt_hi16:
1612 Type = ELF::R_ARM_MOVT_ABS;
1613 break;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001614 case ARM::fixup_arm_movw_lo16:
Jason W Kim1d866172011-01-13 00:07:51 +00001615 Type = ELF::R_ARM_MOVW_ABS_NC;
1616 break;
Evan Chengf3eb3bb2011-01-14 02:38:49 +00001617 case ARM::fixup_t2_movt_hi16:
1618 Type = ELF::R_ARM_THM_MOVT_ABS;
1619 break;
1620 case ARM::fixup_t2_movw_lo16:
1621 Type = ELF::R_ARM_THM_MOVW_ABS_NC;
1622 break;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001623 }
1624 }
1625
1626 if (RelocNeedsGOT(Modifier))
1627 NeedsGOT = true;
Jason W Kim953a2a32011-02-07 01:11:15 +00001628
Jason W Kima0871e72010-12-08 23:14:44 +00001629 return Type;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001630}
1631
Wesley Peck4b047132010-11-21 22:06:28 +00001632//===- MBlazeELFObjectWriter -------------------------------------------===//
Jason W Kimd3443e92010-11-15 16:18:39 +00001633
Rafael Espindola31f35782010-12-17 18:01:31 +00001634MBlazeELFObjectWriter::MBlazeELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001635 raw_ostream &_OS,
1636 bool IsLittleEndian)
1637 : ELFObjectWriter(MOTW, _OS, IsLittleEndian) {
Wesley Peck4b047132010-11-21 22:06:28 +00001638}
1639
1640MBlazeELFObjectWriter::~MBlazeELFObjectWriter() {
1641}
1642
Jason W Kim56a39902010-12-06 21:57:34 +00001643unsigned MBlazeELFObjectWriter::GetRelocType(const MCValue &Target,
Wesley Peck4b047132010-11-21 22:06:28 +00001644 const MCFixup &Fixup,
Jason W Kim56a39902010-12-06 21:57:34 +00001645 bool IsPCRel,
1646 bool IsRelocWithSymbol,
1647 int64_t Addend) {
Wesley Peck4b047132010-11-21 22:06:28 +00001648 // determine the type of the relocation
1649 unsigned Type;
1650 if (IsPCRel) {
1651 switch ((unsigned)Fixup.getKind()) {
1652 default:
1653 llvm_unreachable("Unimplemented");
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001654 case FK_PCRel_4:
Wesley Peck4b047132010-11-21 22:06:28 +00001655 Type = ELF::R_MICROBLAZE_64_PCREL;
1656 break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001657 case FK_PCRel_2:
Wesley Peck4b047132010-11-21 22:06:28 +00001658 Type = ELF::R_MICROBLAZE_32_PCREL;
1659 break;
1660 }
1661 } else {
1662 switch ((unsigned)Fixup.getKind()) {
1663 default: llvm_unreachable("invalid fixup kind!");
1664 case FK_Data_4:
Jason W Kim56a39902010-12-06 21:57:34 +00001665 Type = ((IsRelocWithSymbol || Addend !=0)
1666 ? ELF::R_MICROBLAZE_32
1667 : ELF::R_MICROBLAZE_64);
Wesley Peck4b047132010-11-21 22:06:28 +00001668 break;
1669 case FK_Data_2:
1670 Type = ELF::R_MICROBLAZE_32;
1671 break;
1672 }
1673 }
Jason W Kim56a39902010-12-06 21:57:34 +00001674 return Type;
Wesley Peck4b047132010-11-21 22:06:28 +00001675}
Jason W Kimd3443e92010-11-15 16:18:39 +00001676
1677//===- X86ELFObjectWriter -------------------------------------------===//
1678
1679
Rafael Espindola31f35782010-12-17 18:01:31 +00001680X86ELFObjectWriter::X86ELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001681 raw_ostream &_OS,
1682 bool IsLittleEndian)
1683 : ELFObjectWriter(MOTW, _OS, IsLittleEndian)
Jason W Kimd3443e92010-11-15 16:18:39 +00001684{}
1685
1686X86ELFObjectWriter::~X86ELFObjectWriter()
1687{}
1688
Jason W Kim56a39902010-12-06 21:57:34 +00001689unsigned X86ELFObjectWriter::GetRelocType(const MCValue &Target,
1690 const MCFixup &Fixup,
1691 bool IsPCRel,
1692 bool IsRelocWithSymbol,
1693 int64_t Addend) {
Jason W Kimd3443e92010-11-15 16:18:39 +00001694 // determine the type of the relocation
1695
Rafael Espindola12203cc2010-11-21 00:48:25 +00001696 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1697 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
Jason W Kimd3443e92010-11-15 16:18:39 +00001698 unsigned Type;
Rafael Espindolabff66a82010-12-18 03:27:34 +00001699 if (is64Bit()) {
Jason W Kimd3443e92010-11-15 16:18:39 +00001700 if (IsPCRel) {
Rafael Espindola3a83c402010-12-27 00:36:05 +00001701 switch ((unsigned)Fixup.getKind()) {
1702 default: llvm_unreachable("invalid fixup kind!");
1703 case FK_PCRel_8:
1704 assert(Modifier == MCSymbolRefExpr::VK_None);
1705 Type = ELF::R_X86_64_PC64;
Jason W Kimd3443e92010-11-15 16:18:39 +00001706 break;
Rafael Espindola7a549972011-01-01 19:05:35 +00001707 case X86::reloc_signed_4byte:
Rafael Espindolac3a561c2010-12-27 02:03:24 +00001708 case X86::reloc_riprel_4byte_movq_load:
Rafael Espindola3a83c402010-12-27 00:36:05 +00001709 case FK_Data_4: // FIXME?
1710 case X86::reloc_riprel_4byte:
1711 case FK_PCRel_4:
1712 switch (Modifier) {
1713 default:
1714 llvm_unreachable("Unimplemented");
1715 case MCSymbolRefExpr::VK_None:
1716 Type = ELF::R_X86_64_PC32;
1717 break;
1718 case MCSymbolRefExpr::VK_PLT:
1719 Type = ELF::R_X86_64_PLT32;
1720 break;
1721 case MCSymbolRefExpr::VK_GOTPCREL:
1722 Type = ELF::R_X86_64_GOTPCREL;
1723 break;
1724 case MCSymbolRefExpr::VK_GOTTPOFF:
1725 Type = ELF::R_X86_64_GOTTPOFF;
Jason W Kimd3443e92010-11-15 16:18:39 +00001726 break;
Rafael Espindola3a83c402010-12-27 00:36:05 +00001727 case MCSymbolRefExpr::VK_TLSGD:
1728 Type = ELF::R_X86_64_TLSGD;
1729 break;
1730 case MCSymbolRefExpr::VK_TLSLD:
1731 Type = ELF::R_X86_64_TLSLD;
1732 break;
1733 }
Jason W Kimd3443e92010-11-15 16:18:39 +00001734 break;
Rafael Espindola3a83c402010-12-27 00:36:05 +00001735 case FK_PCRel_2:
1736 assert(Modifier == MCSymbolRefExpr::VK_None);
1737 Type = ELF::R_X86_64_PC16;
Jason W Kimd3443e92010-11-15 16:18:39 +00001738 break;
Joerg Sonnenbergerd45e8bf2011-02-21 23:25:41 +00001739 case FK_PCRel_1:
1740 assert(Modifier == MCSymbolRefExpr::VK_None);
1741 Type = ELF::R_X86_64_PC8;
1742 break;
Jason W Kimd3443e92010-11-15 16:18:39 +00001743 }
1744 } else {
1745 switch ((unsigned)Fixup.getKind()) {
1746 default: llvm_unreachable("invalid fixup kind!");
1747 case FK_Data_8: Type = ELF::R_X86_64_64; break;
1748 case X86::reloc_signed_4byte:
Jason W Kimd3443e92010-11-15 16:18:39 +00001749 assert(isInt<32>(Target.getConstant()));
1750 switch (Modifier) {
1751 default:
1752 llvm_unreachable("Unimplemented");
1753 case MCSymbolRefExpr::VK_None:
1754 Type = ELF::R_X86_64_32S;
1755 break;
1756 case MCSymbolRefExpr::VK_GOT:
1757 Type = ELF::R_X86_64_GOT32;
1758 break;
1759 case MCSymbolRefExpr::VK_GOTPCREL:
1760 Type = ELF::R_X86_64_GOTPCREL;
1761 break;
1762 case MCSymbolRefExpr::VK_TPOFF:
1763 Type = ELF::R_X86_64_TPOFF32;
1764 break;
1765 case MCSymbolRefExpr::VK_DTPOFF:
1766 Type = ELF::R_X86_64_DTPOFF32;
1767 break;
1768 }
1769 break;
1770 case FK_Data_4:
1771 Type = ELF::R_X86_64_32;
1772 break;
1773 case FK_Data_2: Type = ELF::R_X86_64_16; break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001774 case FK_PCRel_1:
Jason W Kimd3443e92010-11-15 16:18:39 +00001775 case FK_Data_1: Type = ELF::R_X86_64_8; break;
1776 }
1777 }
1778 } else {
1779 if (IsPCRel) {
1780 switch (Modifier) {
1781 default:
1782 llvm_unreachable("Unimplemented");
1783 case MCSymbolRefExpr::VK_None:
1784 Type = ELF::R_386_PC32;
1785 break;
1786 case MCSymbolRefExpr::VK_PLT:
1787 Type = ELF::R_386_PLT32;
1788 break;
1789 }
1790 } else {
1791 switch ((unsigned)Fixup.getKind()) {
1792 default: llvm_unreachable("invalid fixup kind!");
1793
1794 case X86::reloc_global_offset_table:
1795 Type = ELF::R_386_GOTPC;
1796 break;
1797
1798 // FIXME: Should we avoid selecting reloc_signed_4byte in 32 bit mode
1799 // instead?
1800 case X86::reloc_signed_4byte:
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001801 case FK_PCRel_4:
Jason W Kimd3443e92010-11-15 16:18:39 +00001802 case FK_Data_4:
1803 switch (Modifier) {
1804 default:
1805 llvm_unreachable("Unimplemented");
1806 case MCSymbolRefExpr::VK_None:
1807 Type = ELF::R_386_32;
1808 break;
1809 case MCSymbolRefExpr::VK_GOT:
1810 Type = ELF::R_386_GOT32;
1811 break;
1812 case MCSymbolRefExpr::VK_GOTOFF:
1813 Type = ELF::R_386_GOTOFF;
1814 break;
1815 case MCSymbolRefExpr::VK_TLSGD:
1816 Type = ELF::R_386_TLS_GD;
1817 break;
1818 case MCSymbolRefExpr::VK_TPOFF:
1819 Type = ELF::R_386_TLS_LE_32;
1820 break;
1821 case MCSymbolRefExpr::VK_INDNTPOFF:
1822 Type = ELF::R_386_TLS_IE;
1823 break;
1824 case MCSymbolRefExpr::VK_NTPOFF:
1825 Type = ELF::R_386_TLS_LE;
1826 break;
1827 case MCSymbolRefExpr::VK_GOTNTPOFF:
1828 Type = ELF::R_386_TLS_GOTIE;
1829 break;
1830 case MCSymbolRefExpr::VK_TLSLDM:
1831 Type = ELF::R_386_TLS_LDM;
1832 break;
1833 case MCSymbolRefExpr::VK_DTPOFF:
1834 Type = ELF::R_386_TLS_LDO_32;
1835 break;
1836 }
1837 break;
1838 case FK_Data_2: Type = ELF::R_386_16; break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001839 case FK_PCRel_1:
Jason W Kimd3443e92010-11-15 16:18:39 +00001840 case FK_Data_1: Type = ELF::R_386_8; break;
1841 }
1842 }
1843 }
1844
1845 if (RelocNeedsGOT(Modifier))
1846 NeedsGOT = true;
1847
Jason W Kim56a39902010-12-06 21:57:34 +00001848 return Type;
Matt Fleming3565a062010-08-16 18:57:57 +00001849}