blob: bb523cefedcc6781cdcb3dc06978ef3a53a697ee [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"
33
34#include "../Target/X86/X86FixupKinds.h"
Jason W Kim4a511f02010-11-22 18:41:13 +000035#include "../Target/ARM/ARMFixupKinds.h"
Matt Fleming3565a062010-08-16 18:57:57 +000036
37#include <vector>
38using namespace llvm;
39
Rafael Espindolaad49cf52010-09-18 15:03:21 +000040static unsigned GetType(const MCSymbolData &SD) {
41 uint32_t Type = (SD.getFlags() & (0xf << ELF_STT_Shift)) >> ELF_STT_Shift;
42 assert(Type == ELF::STT_NOTYPE || Type == ELF::STT_OBJECT ||
43 Type == ELF::STT_FUNC || Type == ELF::STT_SECTION ||
44 Type == ELF::STT_FILE || Type == ELF::STT_COMMON ||
45 Type == ELF::STT_TLS);
46 return Type;
47}
48
Rafael Espindolae15eb4e2010-09-23 19:55:14 +000049static unsigned GetBinding(const MCSymbolData &SD) {
50 uint32_t Binding = (SD.getFlags() & (0xf << ELF_STB_Shift)) >> ELF_STB_Shift;
51 assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
52 Binding == ELF::STB_WEAK);
53 return Binding;
54}
55
56static void SetBinding(MCSymbolData &SD, unsigned Binding) {
57 assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
58 Binding == ELF::STB_WEAK);
59 uint32_t OtherFlags = SD.getFlags() & ~(0xf << ELF_STB_Shift);
60 SD.setFlags(OtherFlags | (Binding << ELF_STB_Shift));
61}
62
Rafael Espindola152c1062010-10-06 21:02:29 +000063static unsigned GetVisibility(MCSymbolData &SD) {
64 unsigned Visibility =
65 (SD.getFlags() & (0xf << ELF_STV_Shift)) >> ELF_STV_Shift;
66 assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL ||
67 Visibility == ELF::STV_HIDDEN || Visibility == ELF::STV_PROTECTED);
68 return Visibility;
69}
70
Wesley Peck4b047132010-11-21 22:06:28 +000071
Rafael Espindolaa0a2f872010-10-28 14:22:44 +000072static bool RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
73 switch (Variant) {
Rafael Espindola5c77c162010-10-05 15:48:37 +000074 default:
75 return false;
Rafael Espindolaa0a2f872010-10-28 14:22:44 +000076 case MCSymbolRefExpr::VK_GOT:
77 case MCSymbolRefExpr::VK_PLT:
78 case MCSymbolRefExpr::VK_GOTPCREL:
79 case MCSymbolRefExpr::VK_TPOFF:
80 case MCSymbolRefExpr::VK_TLSGD:
81 case MCSymbolRefExpr::VK_GOTTPOFF:
82 case MCSymbolRefExpr::VK_INDNTPOFF:
83 case MCSymbolRefExpr::VK_NTPOFF:
84 case MCSymbolRefExpr::VK_GOTNTPOFF:
Rafael Espindolaa264f722010-10-28 14:37:09 +000085 case MCSymbolRefExpr::VK_TLSLDM:
Rafael Espindola0cf15d62010-10-28 14:48:59 +000086 case MCSymbolRefExpr::VK_DTPOFF:
Rafael Espindolab4d17212010-10-28 15:02:40 +000087 case MCSymbolRefExpr::VK_TLSLD:
Rafael Espindola5c77c162010-10-05 15:48:37 +000088 return true;
89 }
90}
91
Rafael Espindola127a6a42010-12-17 07:28:17 +000092static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
93 const MCFixupKindInfo &FKI =
94 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
95
96 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
97}
98
Matt Fleming3565a062010-08-16 18:57:57 +000099namespace {
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000100 class ELFObjectWriter : public MCObjectWriter {
Jason W Kimd3443e92010-11-15 16:18:39 +0000101 protected:
Chris Lattnerb188a372010-08-28 03:21:03 +0000102 /*static bool isFixupKindX86RIPRel(unsigned Kind) {
Matt Fleming3565a062010-08-16 18:57:57 +0000103 return Kind == X86::reloc_riprel_4byte ||
104 Kind == X86::reloc_riprel_4byte_movq_load;
Chris Lattnerb188a372010-08-28 03:21:03 +0000105 }*/
Matt Fleming3565a062010-08-16 18:57:57 +0000106
107
108 /// ELFSymbolData - Helper struct for containing some precomputed information
109 /// on symbols.
110 struct ELFSymbolData {
111 MCSymbolData *SymbolData;
112 uint64_t StringIndex;
113 uint32_t SectionIndex;
114
115 // Support lexicographic sorting.
116 bool operator<(const ELFSymbolData &RHS) const {
Rafael Espindolaad49cf52010-09-18 15:03:21 +0000117 if (GetType(*SymbolData) == ELF::STT_FILE)
118 return true;
119 if (GetType(*RHS.SymbolData) == ELF::STT_FILE)
120 return false;
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000121 return SymbolData->getSymbol().getName() <
122 RHS.SymbolData->getSymbol().getName();
Matt Fleming3565a062010-08-16 18:57:57 +0000123 }
124 };
125
126 /// @name Relocation Data
127 /// @{
128
129 struct ELFRelocationEntry {
130 // Make these big enough for both 32-bit and 64-bit
131 uint64_t r_offset;
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000132 int Index;
133 unsigned Type;
134 const MCSymbol *Symbol;
Matt Fleming3565a062010-08-16 18:57:57 +0000135 uint64_t r_addend;
Jason W Kim858e7502010-11-22 18:42:07 +0000136
Jason W Kim4a511f02010-11-22 18:41:13 +0000137 ELFRelocationEntry()
138 : r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0) {}
139
Jason W Kim10907422010-11-22 22:05:16 +0000140 ELFRelocationEntry(uint64_t RelocOffset, int Idx,
141 unsigned RelType, const MCSymbol *Sym,
Jason W Kim4a511f02010-11-22 18:41:13 +0000142 uint64_t Addend)
Jason W Kim10907422010-11-22 22:05:16 +0000143 : r_offset(RelocOffset), Index(Idx), Type(RelType),
144 Symbol(Sym), r_addend(Addend) {}
Matt Fleming3565a062010-08-16 18:57:57 +0000145
146 // Support lexicographic sorting.
147 bool operator<(const ELFRelocationEntry &RE) const {
148 return RE.r_offset < r_offset;
149 }
150 };
151
Rafael Espindola31f35782010-12-17 18:01:31 +0000152 /// The target specific ELF writer instance.
153 llvm::OwningPtr<MCELFObjectTargetWriter> TargetObjectWriter;
154
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000155 SmallPtrSet<const MCSymbol *, 16> UsedInReloc;
Rafael Espindola484291c2010-11-01 14:28:48 +0000156 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc;
Rafael Espindola88182132010-10-27 15:18:17 +0000157 DenseMap<const MCSymbol *, const MCSymbol *> Renames;
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000158
Matt Fleming3565a062010-08-16 18:57:57 +0000159 llvm::DenseMap<const MCSectionData*,
160 std::vector<ELFRelocationEntry> > Relocations;
161 DenseMap<const MCSection*, uint64_t> SectionStringTableIndex;
162
163 /// @}
164 /// @name Symbol Table Data
165 /// @{
166
167 SmallString<256> StringTable;
168 std::vector<ELFSymbolData> LocalSymbolData;
169 std::vector<ELFSymbolData> ExternalSymbolData;
170 std::vector<ELFSymbolData> UndefinedSymbolData;
171
172 /// @}
173
Rafael Espindola5c77c162010-10-05 15:48:37 +0000174 bool NeedsGOT;
175
Rafael Espindola7be2c332010-10-31 00:16:26 +0000176 bool NeedsSymtabShndx;
177
Matt Fleming3565a062010-08-16 18:57:57 +0000178 // This holds the symbol table index of the last local symbol.
179 unsigned LastLocalSymbolIndex;
180 // This holds the .strtab section index.
181 unsigned StringTableIndex;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000182 // This holds the .symtab section index.
183 unsigned SymbolTableIndex;
Matt Fleming3565a062010-08-16 18:57:57 +0000184
185 unsigned ShstrtabIndex;
186
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000187
188 const MCSymbol *SymbolToReloc(const MCAssembler &Asm,
189 const MCValue &Target,
190 const MCFragment &F) const;
191
Rafael Espindolabff66a82010-12-18 03:27:34 +0000192 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
193 bool hasRelocationAddend() const {
194 return TargetObjectWriter->hasRelocationAddend();
195 }
196
Matt Fleming3565a062010-08-16 18:57:57 +0000197 public:
Rafael Espindola31f35782010-12-17 18:01:31 +0000198 ELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +0000199 raw_ostream &_OS, bool IsLittleEndian)
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000200 : MCObjectWriter(_OS, IsLittleEndian),
Rafael Espindola31f35782010-12-17 18:01:31 +0000201 TargetObjectWriter(MOTW),
Rafael Espindolabff66a82010-12-18 03:27:34 +0000202 NeedsGOT(false), NeedsSymtabShndx(false){
Matt Fleming3565a062010-08-16 18:57:57 +0000203 }
Jason W Kimd3443e92010-11-15 16:18:39 +0000204
205 virtual ~ELFObjectWriter();
206
Matt Fleming3565a062010-08-16 18:57:57 +0000207 void WriteWord(uint64_t W) {
Rafael Espindolabff66a82010-12-18 03:27:34 +0000208 if (is64Bit())
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000209 Write64(W);
Chris Lattnerb188a372010-08-28 03:21:03 +0000210 else
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000211 Write32(W);
Matt Fleming3565a062010-08-16 18:57:57 +0000212 }
213
Matt Fleming3565a062010-08-16 18:57:57 +0000214 void StringLE16(char *buf, uint16_t Value) {
215 buf[0] = char(Value >> 0);
216 buf[1] = char(Value >> 8);
217 }
218
219 void StringLE32(char *buf, uint32_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000220 StringLE16(buf, uint16_t(Value >> 0));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000221 StringLE16(buf + 2, uint16_t(Value >> 16));
Matt Fleming3565a062010-08-16 18:57:57 +0000222 }
223
224 void StringLE64(char *buf, uint64_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000225 StringLE32(buf, uint32_t(Value >> 0));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000226 StringLE32(buf + 4, uint32_t(Value >> 32));
Matt Fleming3565a062010-08-16 18:57:57 +0000227 }
228
229 void StringBE16(char *buf ,uint16_t Value) {
230 buf[0] = char(Value >> 8);
231 buf[1] = char(Value >> 0);
232 }
233
234 void StringBE32(char *buf, uint32_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000235 StringBE16(buf, uint16_t(Value >> 16));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000236 StringBE16(buf + 2, uint16_t(Value >> 0));
Matt Fleming3565a062010-08-16 18:57:57 +0000237 }
238
239 void StringBE64(char *buf, uint64_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000240 StringBE32(buf, uint32_t(Value >> 32));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000241 StringBE32(buf + 4, uint32_t(Value >> 0));
Matt Fleming3565a062010-08-16 18:57:57 +0000242 }
243
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000244 void String8(MCDataFragment &F, uint8_t Value) {
245 char buf[1];
246 buf[0] = Value;
247 F.getContents() += StringRef(buf, 1);
248 }
249
250 void String16(MCDataFragment &F, uint16_t Value) {
251 char buf[2];
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000252 if (isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000253 StringLE16(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000254 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000255 StringBE16(buf, Value);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000256 F.getContents() += StringRef(buf, 2);
Matt Fleming3565a062010-08-16 18:57:57 +0000257 }
258
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000259 void String32(MCDataFragment &F, uint32_t Value) {
260 char buf[4];
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000261 if (isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000262 StringLE32(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000263 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000264 StringBE32(buf, Value);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000265 F.getContents() += StringRef(buf, 4);
Matt Fleming3565a062010-08-16 18:57:57 +0000266 }
267
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000268 void String64(MCDataFragment &F, uint64_t Value) {
269 char buf[8];
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000270 if (isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000271 StringLE64(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000272 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000273 StringBE64(buf, Value);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000274 F.getContents() += StringRef(buf, 8);
Matt Fleming3565a062010-08-16 18:57:57 +0000275 }
276
Jason W Kimd3443e92010-11-15 16:18:39 +0000277 virtual void WriteHeader(uint64_t SectionDataSize, unsigned NumberOfSections);
Matt Fleming3565a062010-08-16 18:57:57 +0000278
Jason W Kimd3443e92010-11-15 16:18:39 +0000279 virtual void WriteSymbolEntry(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000280 uint64_t name, uint8_t info,
Matt Fleming3565a062010-08-16 18:57:57 +0000281 uint64_t value, uint64_t size,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000282 uint8_t other, uint32_t shndx,
283 bool Reserved);
Matt Fleming3565a062010-08-16 18:57:57 +0000284
Jason W Kimd3443e92010-11-15 16:18:39 +0000285 virtual void WriteSymbol(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000286 ELFSymbolData &MSD,
Matt Fleming3565a062010-08-16 18:57:57 +0000287 const MCAsmLayout &Layout);
288
Rafael Espindolabab2a802010-11-10 21:51:05 +0000289 typedef DenseMap<const MCSectionELF*, uint32_t> SectionIndexMapTy;
Jason W Kimd3443e92010-11-15 16:18:39 +0000290 virtual void WriteSymbolTable(MCDataFragment *SymtabF, MCDataFragment *ShndxF,
Rafael Espindola7be2c332010-10-31 00:16:26 +0000291 const MCAssembler &Asm,
Rafael Espindola71859c62010-09-16 19:46:31 +0000292 const MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000293 const SectionIndexMapTy &SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +0000294
Jason W Kimd3443e92010-11-15 16:18:39 +0000295 virtual void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
Jason W Kim56a39902010-12-06 21:57:34 +0000296 const MCFragment *Fragment, const MCFixup &Fixup,
297 MCValue Target, uint64_t &FixedValue);
Matt Fleming3565a062010-08-16 18:57:57 +0000298
Jason W Kimd3443e92010-11-15 16:18:39 +0000299 virtual uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000300 const MCSymbol *S);
Matt Fleming3565a062010-08-16 18:57:57 +0000301
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000302 // Map from a group section to the signature symbol
303 typedef DenseMap<const MCSectionELF*, const MCSymbol*> GroupMapTy;
304 // Map from a signature symbol to the group section
305 typedef DenseMap<const MCSymbol*, const MCSectionELF*> RevGroupMapTy;
306
Matt Fleming3565a062010-08-16 18:57:57 +0000307 /// ComputeSymbolTable - Compute the symbol table data
308 ///
309 /// \param StringTable [out] - The string table data.
310 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
311 /// string table.
Jason W Kimd3443e92010-11-15 16:18:39 +0000312 virtual void ComputeSymbolTable(MCAssembler &Asm,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000313 const SectionIndexMapTy &SectionIndexMap,
314 RevGroupMapTy RevGroupMap);
Rafael Espindolabab2a802010-11-10 21:51:05 +0000315
Jason W Kimd3443e92010-11-15 16:18:39 +0000316 virtual void ComputeIndexMap(MCAssembler &Asm,
Rafael Espindolabab2a802010-11-10 21:51:05 +0000317 SectionIndexMapTy &SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +0000318
Jason W Kimd3443e92010-11-15 16:18:39 +0000319 virtual void WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
Matt Fleming3565a062010-08-16 18:57:57 +0000320 const MCSectionData &SD);
321
Jason W Kimd3443e92010-11-15 16:18:39 +0000322 virtual void WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout) {
Matt Fleming3565a062010-08-16 18:57:57 +0000323 for (MCAssembler::const_iterator it = Asm.begin(),
324 ie = Asm.end(); it != ie; ++it) {
325 WriteRelocation(Asm, Layout, *it);
326 }
327 }
328
Jason W Kimd3443e92010-11-15 16:18:39 +0000329 virtual void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000330 const SectionIndexMapTy &SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +0000331
Jason W Kimd3443e92010-11-15 16:18:39 +0000332 virtual void CreateGroupSections(MCAssembler &Asm, MCAsmLayout &Layout,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000333 GroupMapTy &GroupMap, RevGroupMapTy &RevGroupMap);
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000334
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000335 virtual void ExecutePostLayoutBinding(MCAssembler &Asm,
336 const MCAsmLayout &Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000337
Jason W Kimd3443e92010-11-15 16:18:39 +0000338 virtual void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Matt Fleming3565a062010-08-16 18:57:57 +0000339 uint64_t Address, uint64_t Offset,
340 uint64_t Size, uint32_t Link, uint32_t Info,
341 uint64_t Alignment, uint64_t EntrySize);
342
Daniel Dunbar1f3662a2010-12-17 04:54:54 +0000343 virtual void WriteRelocationsFragment(const MCAssembler &Asm,
344 MCDataFragment *F,
345 const MCSectionData *SD);
346
Jason W Kimd3443e92010-11-15 16:18:39 +0000347 virtual bool IsFixupFullyResolved(const MCAssembler &Asm,
Rafael Espindola70703872010-09-30 02:22:20 +0000348 const MCValue Target,
349 bool IsPCRel,
350 const MCFragment *DF) const;
351
Jason W Kimd3443e92010-11-15 16:18:39 +0000352 virtual void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
353 virtual void WriteSection(MCAssembler &Asm,
Rafael Espindolac87a94a2010-11-10 23:36:59 +0000354 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000355 uint32_t GroupSymbolIndex,
Rafael Espindolac87a94a2010-11-10 23:36:59 +0000356 uint64_t Offset, uint64_t Size, uint64_t Alignment,
357 const MCSectionELF &Section);
Jason W Kim56a39902010-12-06 21:57:34 +0000358
359 protected:
360 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
361 bool IsPCRel, bool IsRelocWithSymbol,
362 int64_t Addend) = 0;
Matt Fleming3565a062010-08-16 18:57:57 +0000363 };
364
Jason W Kimd3443e92010-11-15 16:18:39 +0000365 //===- X86ELFObjectWriter -------------------------------------------===//
366
367 class X86ELFObjectWriter : public ELFObjectWriter {
368 public:
Rafael Espindola31f35782010-12-17 18:01:31 +0000369 X86ELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +0000370 raw_ostream &_OS,
371 bool IsLittleEndian);
Wesley Peck4b047132010-11-21 22:06:28 +0000372
Jason W Kimd3443e92010-11-15 16:18:39 +0000373 virtual ~X86ELFObjectWriter();
Jason W Kim56a39902010-12-06 21:57:34 +0000374 protected:
375 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
376 bool IsPCRel, bool IsRelocWithSymbol,
377 int64_t Addend);
Jason W Kimd3443e92010-11-15 16:18:39 +0000378 };
379
380
381 //===- ARMELFObjectWriter -------------------------------------------===//
382
383 class ARMELFObjectWriter : public ELFObjectWriter {
384 public:
Rafael Espindola31f35782010-12-17 18:01:31 +0000385 ARMELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +0000386 raw_ostream &_OS,
387 bool IsLittleEndian);
Wesley Peck4b047132010-11-21 22:06:28 +0000388
Jason W Kimd3443e92010-11-15 16:18:39 +0000389 virtual ~ARMELFObjectWriter();
Jason W Kim85fed5e2010-12-01 02:40:06 +0000390 protected:
Jason W Kim56a39902010-12-06 21:57:34 +0000391 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
392 bool IsPCRel, bool IsRelocWithSymbol,
393 int64_t Addend);
Jason W Kimd3443e92010-11-15 16:18:39 +0000394 };
Wesley Peck4b047132010-11-21 22:06:28 +0000395
396 //===- MBlazeELFObjectWriter -------------------------------------------===//
397
398 class MBlazeELFObjectWriter : public ELFObjectWriter {
399 public:
Rafael Espindola31f35782010-12-17 18:01:31 +0000400 MBlazeELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +0000401 raw_ostream &_OS,
402 bool IsLittleEndian);
Wesley Peck4b047132010-11-21 22:06:28 +0000403
404 virtual ~MBlazeELFObjectWriter();
Jason W Kim56a39902010-12-06 21:57:34 +0000405 protected:
406 virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
407 bool IsPCRel, bool IsRelocWithSymbol,
408 int64_t Addend);
Wesley Peck4b047132010-11-21 22:06:28 +0000409 };
Matt Fleming3565a062010-08-16 18:57:57 +0000410}
411
Jason W Kimd3443e92010-11-15 16:18:39 +0000412ELFObjectWriter::~ELFObjectWriter()
413{}
414
Matt Fleming3565a062010-08-16 18:57:57 +0000415// Emit the ELF header.
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000416void ELFObjectWriter::WriteHeader(uint64_t SectionDataSize,
417 unsigned NumberOfSections) {
Matt Fleming3565a062010-08-16 18:57:57 +0000418 // ELF Header
419 // ----------
420 //
421 // Note
422 // ----
423 // emitWord method behaves differently for ELF32 and ELF64, writing
424 // 4 bytes in the former and 8 in the latter.
425
426 Write8(0x7f); // e_ident[EI_MAG0]
427 Write8('E'); // e_ident[EI_MAG1]
428 Write8('L'); // e_ident[EI_MAG2]
429 Write8('F'); // e_ident[EI_MAG3]
430
Rafael Espindolabff66a82010-12-18 03:27:34 +0000431 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming3565a062010-08-16 18:57:57 +0000432
433 // e_ident[EI_DATA]
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000434 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming3565a062010-08-16 18:57:57 +0000435
436 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky5baf79e2010-09-09 17:57:50 +0000437 // e_ident[EI_OSABI]
Rafael Espindolabff66a82010-12-18 03:27:34 +0000438 switch (TargetObjectWriter->getOSType()) {
Roman Divacky5baf79e2010-09-09 17:57:50 +0000439 case Triple::FreeBSD: Write8(ELF::ELFOSABI_FREEBSD); break;
440 case Triple::Linux: Write8(ELF::ELFOSABI_LINUX); break;
441 default: Write8(ELF::ELFOSABI_NONE); break;
442 }
Matt Fleming3565a062010-08-16 18:57:57 +0000443 Write8(0); // e_ident[EI_ABIVERSION]
444
445 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
446
447 Write16(ELF::ET_REL); // e_type
448
Rafael Espindolabff66a82010-12-18 03:27:34 +0000449 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming3565a062010-08-16 18:57:57 +0000450
451 Write32(ELF::EV_CURRENT); // e_version
452 WriteWord(0); // e_entry, no entry point in .o file
453 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindolabff66a82010-12-18 03:27:34 +0000454 WriteWord(SectionDataSize + (is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
Benjamin Kramereb976772010-08-17 17:02:29 +0000455 sizeof(ELF::Elf32_Ehdr))); // e_shoff = sec hdr table off in bytes
Matt Fleming3565a062010-08-16 18:57:57 +0000456
457 // FIXME: Make this configurable.
458 Write32(0); // e_flags = whatever the target wants
459
460 // e_ehsize = ELF header size
Rafael Espindolabff66a82010-12-18 03:27:34 +0000461 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming3565a062010-08-16 18:57:57 +0000462
463 Write16(0); // e_phentsize = prog header entry size
464 Write16(0); // e_phnum = # prog header entries = 0
465
466 // e_shentsize = Section header entry size
Rafael Espindolabff66a82010-12-18 03:27:34 +0000467 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming3565a062010-08-16 18:57:57 +0000468
469 // e_shnum = # of section header ents
Rafael Espindola7be2c332010-10-31 00:16:26 +0000470 if (NumberOfSections >= ELF::SHN_LORESERVE)
471 Write16(0);
472 else
473 Write16(NumberOfSections);
Matt Fleming3565a062010-08-16 18:57:57 +0000474
475 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola7be2c332010-10-31 00:16:26 +0000476 if (NumberOfSections >= ELF::SHN_LORESERVE)
477 Write16(ELF::SHN_XINDEX);
478 else
479 Write16(ShstrtabIndex);
Matt Fleming3565a062010-08-16 18:57:57 +0000480}
481
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000482void ELFObjectWriter::WriteSymbolEntry(MCDataFragment *SymtabF,
483 MCDataFragment *ShndxF,
484 uint64_t name,
485 uint8_t info, uint64_t value,
486 uint64_t size, uint8_t other,
487 uint32_t shndx,
488 bool Reserved) {
Rafael Espindola7be2c332010-10-31 00:16:26 +0000489 if (ShndxF) {
Rafael Espindola7be2c332010-10-31 00:16:26 +0000490 if (shndx >= ELF::SHN_LORESERVE && !Reserved)
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000491 String32(*ShndxF, shndx);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000492 else
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000493 String32(*ShndxF, 0);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000494 }
495
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000496 uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ?
497 uint16_t(ELF::SHN_XINDEX) : shndx;
498
Rafael Espindolabff66a82010-12-18 03:27:34 +0000499 if (is64Bit()) {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000500 String32(*SymtabF, name); // st_name
501 String8(*SymtabF, info); // st_info
502 String8(*SymtabF, other); // st_other
503 String16(*SymtabF, Index); // st_shndx
504 String64(*SymtabF, value); // st_value
505 String64(*SymtabF, size); // st_size
Matt Fleming3565a062010-08-16 18:57:57 +0000506 } else {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000507 String32(*SymtabF, name); // st_name
508 String32(*SymtabF, value); // st_value
509 String32(*SymtabF, size); // st_size
510 String8(*SymtabF, info); // st_info
511 String8(*SymtabF, other); // st_other
512 String16(*SymtabF, Index); // st_shndx
Matt Fleming3565a062010-08-16 18:57:57 +0000513 }
514}
515
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000516static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout) {
517 if (Data.isCommon() && Data.isExternal())
518 return Data.getCommonAlignment();
519
520 const MCSymbol &Symbol = Data.getSymbol();
Roman Divackyd1491862010-12-20 21:14:39 +0000521
522 if (Symbol.isAbsolute() && Symbol.isVariable()) {
523 if (const MCExpr *Value = Symbol.getVariableValue()) {
524 int64_t IntValue;
525 if (Value->EvaluateAsAbsolute(IntValue, Layout))
526 return (uint64_t)IntValue;
527 }
528 }
529
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000530 if (!Symbol.isInSection())
531 return 0;
532
Rafael Espindolaffd902b2010-12-06 02:57:26 +0000533 if (Data.getFragment())
534 return Layout.getSymbolOffset(&Data);
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000535
536 return 0;
537}
538
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000539void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
540 const MCAsmLayout &Layout) {
Rafael Espindola88182132010-10-27 15:18:17 +0000541 // The presence of symbol versions causes undefined symbols and
542 // versions declared with @@@ to be renamed.
543
544 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
545 ie = Asm.symbol_end(); it != ie; ++it) {
546 const MCSymbol &Alias = it->getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000547 const MCSymbol &Symbol = Alias.AliasedSymbol();
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000548 MCSymbolData &SD = Asm.getSymbolData(Symbol);
549
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000550 // Not an alias.
551 if (&Symbol == &Alias)
552 continue;
553
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000554 StringRef AliasName = Alias.getName();
Rafael Espindola88182132010-10-27 15:18:17 +0000555 size_t Pos = AliasName.find('@');
556 if (Pos == StringRef::npos)
557 continue;
558
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000559 // Aliases defined with .symvar copy the binding from the symbol they alias.
560 // This is the first place we are able to copy this information.
561 it->setExternal(SD.isExternal());
562 SetBinding(*it, GetBinding(SD));
563
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000564 StringRef Rest = AliasName.substr(Pos);
Rafael Espindola88182132010-10-27 15:18:17 +0000565 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
566 continue;
567
Rafael Espindola83ff4d22010-10-27 17:56:18 +0000568 // FIXME: produce a better error message.
569 if (Symbol.isUndefined() && Rest.startswith("@@") &&
570 !Rest.startswith("@@@"))
571 report_fatal_error("A @@ version cannot be undefined");
572
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000573 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindola88182132010-10-27 15:18:17 +0000574 }
575}
576
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000577void ELFObjectWriter::WriteSymbol(MCDataFragment *SymtabF,
578 MCDataFragment *ShndxF,
579 ELFSymbolData &MSD,
580 const MCAsmLayout &Layout) {
Rafael Espindola152c1062010-10-06 21:02:29 +0000581 MCSymbolData &OrigData = *MSD.SymbolData;
Rafael Espindolade89b012010-10-15 18:25:33 +0000582 MCSymbolData &Data =
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000583 Layout.getAssembler().getSymbolData(OrigData.getSymbol().AliasedSymbol());
Rafael Espindola152c1062010-10-06 21:02:29 +0000584
Rafael Espindola7be2c332010-10-31 00:16:26 +0000585 bool IsReserved = Data.isCommon() || Data.getSymbol().isAbsolute() ||
586 Data.getSymbol().isVariable();
587
Rafael Espindola152c1062010-10-06 21:02:29 +0000588 uint8_t Binding = GetBinding(OrigData);
589 uint8_t Visibility = GetVisibility(OrigData);
590 uint8_t Type = GetType(Data);
591
592 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
593 uint8_t Other = Visibility;
594
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000595 uint64_t Value = SymbolValue(Data, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000596 uint64_t Size = 0;
597 const MCExpr *ESize;
598
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000599 assert(!(Data.isCommon() && !Data.isExternal()));
600
Matt Fleming3565a062010-08-16 18:57:57 +0000601 ESize = Data.getSize();
602 if (Data.getSize()) {
603 MCValue Res;
604 if (ESize->getKind() == MCExpr::Binary) {
605 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr *>(ESize);
606
607 if (BE->EvaluateAsRelocatable(Res, &Layout)) {
Benjamin Kramer24f12062010-10-17 07:38:40 +0000608 assert(!Res.getSymA() || !Res.getSymA()->getSymbol().isDefined());
609 assert(!Res.getSymB() || !Res.getSymB()->getSymbol().isDefined());
Rafael Espindolaf230df92010-10-16 18:23:53 +0000610 Size = Res.getConstant();
Matt Fleming3565a062010-08-16 18:57:57 +0000611 }
612 } else if (ESize->getKind() == MCExpr::Constant) {
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000613 Size = static_cast<const MCConstantExpr *>(ESize)->getValue();
Matt Fleming3565a062010-08-16 18:57:57 +0000614 } else {
615 assert(0 && "Unsupported size expression");
616 }
617 }
618
619 // Write out the symbol table entry
Rafael Espindola7be2c332010-10-31 00:16:26 +0000620 WriteSymbolEntry(SymtabF, ShndxF, MSD.StringIndex, Info, Value,
621 Size, Other, MSD.SectionIndex, IsReserved);
Matt Fleming3565a062010-08-16 18:57:57 +0000622}
623
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000624void ELFObjectWriter::WriteSymbolTable(MCDataFragment *SymtabF,
625 MCDataFragment *ShndxF,
626 const MCAssembler &Asm,
627 const MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000628 const SectionIndexMapTy &SectionIndexMap) {
Matt Fleming3565a062010-08-16 18:57:57 +0000629 // The string table must be emitted first because we need the index
630 // into the string table for all the symbol names.
631 assert(StringTable.size() && "Missing string table");
632
633 // FIXME: Make sure the start of the symbol table is aligned.
634
635 // The first entry is the undefined symbol entry.
Rafael Espindola7be2c332010-10-31 00:16:26 +0000636 WriteSymbolEntry(SymtabF, ShndxF, 0, 0, 0, 0, 0, 0, false);
Matt Fleming3565a062010-08-16 18:57:57 +0000637
638 // Write the symbol table entries.
639 LastLocalSymbolIndex = LocalSymbolData.size() + 1;
640 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
641 ELFSymbolData &MSD = LocalSymbolData[i];
Rafael Espindola7be2c332010-10-31 00:16:26 +0000642 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000643 }
644
Rafael Espindola71859c62010-09-16 19:46:31 +0000645 // Write out a symbol table entry for each regular section.
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000646 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e;
647 ++i) {
Eli Friedmana44fa242010-08-16 21:17:09 +0000648 const MCSectionELF &Section =
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000649 static_cast<const MCSectionELF&>(i->getSection());
650 if (Section.getType() == ELF::SHT_RELA ||
651 Section.getType() == ELF::SHT_REL ||
652 Section.getType() == ELF::SHT_STRTAB ||
653 Section.getType() == ELF::SHT_SYMTAB)
Eli Friedmana44fa242010-08-16 21:17:09 +0000654 continue;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000655 WriteSymbolEntry(SymtabF, ShndxF, 0, ELF::STT_SECTION, 0, 0,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000656 ELF::STV_DEFAULT, SectionIndexMap.lookup(&Section), false);
Eli Friedmana44fa242010-08-16 21:17:09 +0000657 LastLocalSymbolIndex++;
658 }
Matt Fleming3565a062010-08-16 18:57:57 +0000659
660 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
661 ELFSymbolData &MSD = ExternalSymbolData[i];
662 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola3223f192010-10-06 16:47:31 +0000663 assert(((Data.getFlags() & ELF_STB_Global) ||
664 (Data.getFlags() & ELF_STB_Weak)) &&
665 "External symbol requires STB_GLOBAL or STB_WEAK flag");
Rafael Espindola7be2c332010-10-31 00:16:26 +0000666 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Rafael Espindolae15eb4e2010-09-23 19:55:14 +0000667 if (GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming3565a062010-08-16 18:57:57 +0000668 LastLocalSymbolIndex++;
669 }
670
671 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
672 ELFSymbolData &MSD = UndefinedSymbolData[i];
673 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000674 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Rafael Espindolae15eb4e2010-09-23 19:55:14 +0000675 if (GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming3565a062010-08-16 18:57:57 +0000676 LastLocalSymbolIndex++;
677 }
678}
679
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000680const MCSymbol *ELFObjectWriter::SymbolToReloc(const MCAssembler &Asm,
681 const MCValue &Target,
682 const MCFragment &F) const {
683 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000684 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
685 const MCSymbol *Renamed = Renames.lookup(&Symbol);
686 const MCSymbolData &SD = Asm.getSymbolData(Symbol);
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000687
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000688 if (ASymbol.isUndefined()) {
689 if (Renamed)
690 return Renamed;
691 return &ASymbol;
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000692 }
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000693
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000694 if (SD.isExternal()) {
695 if (Renamed)
696 return Renamed;
697 return &Symbol;
698 }
Rafael Espindola73ffea42010-09-25 05:42:19 +0000699
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000700 const MCSectionELF &Section =
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000701 static_cast<const MCSectionELF&>(ASymbol.getSection());
Rafael Espindola25958732010-11-24 21:57:39 +0000702 const SectionKind secKind = Section.getKind();
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000703
Rafael Espindola25958732010-11-24 21:57:39 +0000704 if (secKind.isBSS())
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000705 return NULL;
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000706
Rafael Espindola25958732010-11-24 21:57:39 +0000707 if (secKind.isThreadLocal()) {
708 if (Renamed)
709 return Renamed;
710 return &Symbol;
711 }
712
Rafael Espindola8cecf252010-10-06 16:23:36 +0000713 MCSymbolRefExpr::VariantKind Kind = Target.getSymA()->getKind();
Rafael Espindola3729d002010-10-05 23:57:26 +0000714 const MCSectionELF &Sec2 =
715 static_cast<const MCSectionELF&>(F.getParent()->getSection());
716
Rafael Espindola8cecf252010-10-06 16:23:36 +0000717 if (&Sec2 != &Section &&
Rafael Espindolac97f80e2010-10-18 16:38:04 +0000718 (Kind == MCSymbolRefExpr::VK_PLT ||
719 Kind == MCSymbolRefExpr::VK_GOTPCREL ||
Rafael Espindola25958732010-11-24 21:57:39 +0000720 Kind == MCSymbolRefExpr::VK_GOTOFF)) {
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000721 if (Renamed)
722 return Renamed;
723 return &Symbol;
724 }
Rafael Espindola3729d002010-10-05 23:57:26 +0000725
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000726 if (Section.getFlags() & MCSectionELF::SHF_MERGE) {
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000727 if (Target.getConstant() == 0)
728 return NULL;
729 if (Renamed)
730 return Renamed;
731 return &Symbol;
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000732 }
Rafael Espindolac97f80e2010-10-18 16:38:04 +0000733
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000734 return NULL;
Rafael Espindola73ffea42010-09-25 05:42:19 +0000735}
736
Matt Fleming3565a062010-08-16 18:57:57 +0000737
Jason W Kim56a39902010-12-06 21:57:34 +0000738void ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
739 const MCAsmLayout &Layout,
740 const MCFragment *Fragment,
741 const MCFixup &Fixup,
742 MCValue Target,
743 uint64_t &FixedValue) {
744 int64_t Addend = 0;
745 int Index = 0;
746 int64_t Value = Target.getConstant();
747 const MCSymbol *RelocSymbol = NULL;
748
Rafael Espindola127a6a42010-12-17 07:28:17 +0000749 bool IsPCRel = isFixupKindPCRel(Asm, Fixup.getKind());
Jason W Kim56a39902010-12-06 21:57:34 +0000750 if (!Target.isAbsolute()) {
751 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
752 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
753 RelocSymbol = SymbolToReloc(Asm, Target, *Fragment);
754
755 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
756 const MCSymbol &SymbolB = RefB->getSymbol();
757 MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
758 IsPCRel = true;
759
760 // Offset of the symbol in the section
761 int64_t a = Layout.getSymbolOffset(&SDB);
762
763 // Ofeset of the relocation in the section
764 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
765 Value += b - a;
766 }
767
768 if (!RelocSymbol) {
769 MCSymbolData &SD = Asm.getSymbolData(ASymbol);
770 MCFragment *F = SD.getFragment();
771
772 Index = F->getParent()->getOrdinal() + 1;
773
774 // Offset of the symbol in the section
775 Value += Layout.getSymbolOffset(&SD);
776 } else {
777 if (Asm.getSymbolData(Symbol).getFlags() & ELF_Other_Weakref)
778 WeakrefUsedInReloc.insert(RelocSymbol);
779 else
780 UsedInReloc.insert(RelocSymbol);
781 Index = -1;
782 }
783 Addend = Value;
784 // Compensate for the addend on i386.
Rafael Espindolabff66a82010-12-18 03:27:34 +0000785 if (is64Bit())
Jason W Kim56a39902010-12-06 21:57:34 +0000786 Value = 0;
787 }
788
789 FixedValue = Value;
790 unsigned Type = GetRelocType(Target, Fixup, IsPCRel,
791 (RelocSymbol != 0), Addend);
792
793 uint64_t RelocOffset = Layout.getFragmentOffset(Fragment) +
794 Fixup.getOffset();
795
Rafael Espindolabff66a82010-12-18 03:27:34 +0000796 if (!hasRelocationAddend())
797 Addend = 0;
Jason W Kim56a39902010-12-06 21:57:34 +0000798 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
799 Relocations[Fragment->getParent()].push_back(ERE);
800}
801
802
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000803uint64_t
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000804ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
805 const MCSymbol *S) {
Benjamin Kramer7b83c262010-08-25 20:09:43 +0000806 MCSymbolData &SD = Asm.getSymbolData(*S);
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000807 return SD.getIndex();
Matt Fleming3565a062010-08-16 18:57:57 +0000808}
809
Rafael Espindola737cd212010-10-05 18:01:23 +0000810static bool isInSymtab(const MCAssembler &Asm, const MCSymbolData &Data,
Rafael Espindola88182132010-10-27 15:18:17 +0000811 bool Used, bool Renamed) {
Rafael Espindola484291c2010-11-01 14:28:48 +0000812 if (Data.getFlags() & ELF_Other_Weakref)
813 return false;
814
Rafael Espindolabd701182010-10-19 19:31:37 +0000815 if (Used)
816 return true;
817
Rafael Espindola88182132010-10-27 15:18:17 +0000818 if (Renamed)
819 return false;
820
Rafael Espindola737cd212010-10-05 18:01:23 +0000821 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindolaa6866962010-10-27 14:44:52 +0000822
Rafael Espindolad1798862010-10-29 23:09:31 +0000823 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
824 return true;
825
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000826 const MCSymbol &A = Symbol.AliasedSymbol();
Rafael Espindolad1798862010-10-29 23:09:31 +0000827 if (!A.isVariable() && A.isUndefined() && !Data.isCommon())
Rafael Espindolaa6866962010-10-27 14:44:52 +0000828 return false;
829
Rafael Espindola737cd212010-10-05 18:01:23 +0000830 if (!Asm.isSymbolLinkerVisible(Symbol) && !Symbol.isUndefined())
831 return false;
832
Rafael Espindolabd701182010-10-19 19:31:37 +0000833 if (Symbol.isTemporary())
Rafael Espindola737cd212010-10-05 18:01:23 +0000834 return false;
835
836 return true;
837}
838
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000839static bool isLocal(const MCSymbolData &Data, bool isSignature,
840 bool isUsedInReloc) {
Rafael Espindola737cd212010-10-05 18:01:23 +0000841 if (Data.isExternal())
842 return false;
843
844 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000845 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000846
847 if (RefSymbol.isUndefined() && !RefSymbol.isVariable()) {
848 if (isSignature && !isUsedInReloc)
849 return true;
850
Rafael Espindola737cd212010-10-05 18:01:23 +0000851 return false;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000852 }
Rafael Espindola737cd212010-10-05 18:01:23 +0000853
854 return true;
855}
856
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000857void ELFObjectWriter::ComputeIndexMap(MCAssembler &Asm,
858 SectionIndexMapTy &SectionIndexMap) {
Rafael Espindolabab2a802010-11-10 21:51:05 +0000859 unsigned Index = 1;
860 for (MCAssembler::iterator it = Asm.begin(),
861 ie = Asm.end(); it != ie; ++it) {
862 const MCSectionELF &Section =
863 static_cast<const MCSectionELF &>(it->getSection());
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000864 if (Section.getType() != ELF::SHT_GROUP)
865 continue;
866 SectionIndexMap[&Section] = Index++;
867 }
868
869 for (MCAssembler::iterator it = Asm.begin(),
870 ie = Asm.end(); it != ie; ++it) {
871 const MCSectionELF &Section =
872 static_cast<const MCSectionELF &>(it->getSection());
873 if (Section.getType() == ELF::SHT_GROUP)
874 continue;
Rafael Espindolabab2a802010-11-10 21:51:05 +0000875 SectionIndexMap[&Section] = Index++;
876 }
877}
878
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000879void ELFObjectWriter::ComputeSymbolTable(MCAssembler &Asm,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000880 const SectionIndexMapTy &SectionIndexMap,
881 RevGroupMapTy RevGroupMap) {
Rafael Espindola5c77c162010-10-05 15:48:37 +0000882 // FIXME: Is this the correct place to do this?
883 if (NeedsGOT) {
884 llvm::StringRef Name = "_GLOBAL_OFFSET_TABLE_";
885 MCSymbol *Sym = Asm.getContext().GetOrCreateSymbol(Name);
886 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
887 Data.setExternal(true);
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000888 SetBinding(Data, ELF::STB_GLOBAL);
Rafael Espindola5c77c162010-10-05 15:48:37 +0000889 }
890
Matt Fleming3565a062010-08-16 18:57:57 +0000891 // Build section lookup table.
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000892 int NumRegularSections = Asm.size();
Matt Fleming3565a062010-08-16 18:57:57 +0000893
894 // Index 0 is always the empty string.
895 StringMap<uint64_t> StringIndexMap;
896 StringTable += '\x00';
897
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000898 // Add the data for the symbols.
Matt Fleming3565a062010-08-16 18:57:57 +0000899 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
900 ie = Asm.symbol_end(); it != ie; ++it) {
901 const MCSymbol &Symbol = it->getSymbol();
902
Rafael Espindola484291c2010-11-01 14:28:48 +0000903 bool Used = UsedInReloc.count(&Symbol);
904 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000905 bool isSignature = RevGroupMap.count(&Symbol);
906
907 if (!isInSymtab(Asm, *it,
908 Used || WeakrefUsed || isSignature,
Rafael Espindola88182132010-10-27 15:18:17 +0000909 Renames.count(&Symbol)))
Matt Fleming3565a062010-08-16 18:57:57 +0000910 continue;
911
Matt Fleming3565a062010-08-16 18:57:57 +0000912 ELFSymbolData MSD;
913 MSD.SymbolData = it;
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000914 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
Matt Fleming3565a062010-08-16 18:57:57 +0000915
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000916 // Undefined symbols are global, but this is the first place we
917 // are able to set it.
918 bool Local = isLocal(*it, isSignature, Used);
919 if (!Local && GetBinding(*it) == ELF::STB_LOCAL) {
920 MCSymbolData &SD = Asm.getSymbolData(RefSymbol);
921 SetBinding(*it, ELF::STB_GLOBAL);
922 SetBinding(SD, ELF::STB_GLOBAL);
923 }
924
Rafael Espindola484291c2010-11-01 14:28:48 +0000925 if (RefSymbol.isUndefined() && !Used && WeakrefUsed)
926 SetBinding(*it, ELF::STB_WEAK);
927
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000928 if (it->isCommon()) {
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000929 assert(!Local);
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000930 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolabf052ac2010-10-27 16:04:30 +0000931 } else if (Symbol.isAbsolute() || RefSymbol.isVariable()) {
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000932 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola88182132010-10-27 15:18:17 +0000933 } else if (RefSymbol.isUndefined()) {
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000934 if (isSignature && !Used)
935 MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]);
936 else
937 MSD.SectionIndex = ELF::SHN_UNDEF;
Matt Fleming3565a062010-08-16 18:57:57 +0000938 } else {
Rafael Espindolabab2a802010-11-10 21:51:05 +0000939 const MCSectionELF &Section =
940 static_cast<const MCSectionELF&>(RefSymbol.getSection());
941 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000942 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
943 NeedsSymtabShndx = true;
Matt Fleming3565a062010-08-16 18:57:57 +0000944 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5df0b652010-10-15 15:39:06 +0000945 }
946
Rafael Espindola88182132010-10-27 15:18:17 +0000947 // The @@@ in symbol version is replaced with @ in undefined symbols and
948 // @@ in defined ones.
949 StringRef Name = Symbol.getName();
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000950 SmallString<32> Buf;
951
Rafael Espindola88182132010-10-27 15:18:17 +0000952 size_t Pos = Name.find("@@@");
Rafael Espindola88182132010-10-27 15:18:17 +0000953 if (Pos != StringRef::npos) {
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000954 Buf += Name.substr(0, Pos);
955 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
956 Buf += Name.substr(Pos + Skip);
957 Name = Buf;
Rafael Espindola88182132010-10-27 15:18:17 +0000958 }
959
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000960 uint64_t &Entry = StringIndexMap[Name];
Rafael Espindolaa6866962010-10-27 14:44:52 +0000961 if (!Entry) {
962 Entry = StringTable.size();
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000963 StringTable += Name;
Rafael Espindolaa6866962010-10-27 14:44:52 +0000964 StringTable += '\x00';
Matt Fleming3565a062010-08-16 18:57:57 +0000965 }
Rafael Espindolaa6866962010-10-27 14:44:52 +0000966 MSD.StringIndex = Entry;
967 if (MSD.SectionIndex == ELF::SHN_UNDEF)
968 UndefinedSymbolData.push_back(MSD);
969 else if (Local)
970 LocalSymbolData.push_back(MSD);
971 else
972 ExternalSymbolData.push_back(MSD);
Matt Fleming3565a062010-08-16 18:57:57 +0000973 }
974
975 // Symbols are required to be in lexicographic order.
976 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
977 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
978 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
979
980 // Set the symbol indices. Local symbols must come before all other
981 // symbols with non-local bindings.
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000982 unsigned Index = 1;
Matt Fleming3565a062010-08-16 18:57:57 +0000983 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
984 LocalSymbolData[i].SymbolData->setIndex(Index++);
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000985
986 Index += NumRegularSections;
987
Matt Fleming3565a062010-08-16 18:57:57 +0000988 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
989 ExternalSymbolData[i].SymbolData->setIndex(Index++);
990 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
991 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
992}
993
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000994void ELFObjectWriter::WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
995 const MCSectionData &SD) {
Matt Fleming3565a062010-08-16 18:57:57 +0000996 if (!Relocations[&SD].empty()) {
997 MCContext &Ctx = Asm.getContext();
Rafael Espindola4283f4b2010-11-10 19:05:07 +0000998 const MCSectionELF *RelaSection;
Matt Fleming3565a062010-08-16 18:57:57 +0000999 const MCSectionELF &Section =
1000 static_cast<const MCSectionELF&>(SD.getSection());
1001
1002 const StringRef SectionName = Section.getSectionName();
Rafael Espindolabff66a82010-12-18 03:27:34 +00001003 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
Matt Fleming3565a062010-08-16 18:57:57 +00001004 RelaSectionName += SectionName;
Benjamin Kramer299fbe32010-08-17 17:56:13 +00001005
1006 unsigned EntrySize;
Rafael Espindolabff66a82010-12-18 03:27:34 +00001007 if (hasRelocationAddend())
1008 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
Benjamin Kramer299fbe32010-08-17 17:56:13 +00001009 else
Rafael Espindolabff66a82010-12-18 03:27:34 +00001010 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming3565a062010-08-16 18:57:57 +00001011
Rafael Espindolabff66a82010-12-18 03:27:34 +00001012 RelaSection = Ctx.getELFSection(RelaSectionName, hasRelocationAddend() ?
Benjamin Kramer377a5722010-08-17 17:30:07 +00001013 ELF::SHT_RELA : ELF::SHT_REL, 0,
Matt Fleming3565a062010-08-16 18:57:57 +00001014 SectionKind::getReadOnly(),
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001015 EntrySize, "");
Matt Fleming3565a062010-08-16 18:57:57 +00001016
1017 MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
Rafael Espindolabff66a82010-12-18 03:27:34 +00001018 RelaSD.setAlignment(is64Bit() ? 8 : 4);
Matt Fleming3565a062010-08-16 18:57:57 +00001019
1020 MCDataFragment *F = new MCDataFragment(&RelaSD);
1021
1022 WriteRelocationsFragment(Asm, F, &SD);
Matt Fleming3565a062010-08-16 18:57:57 +00001023 }
1024}
1025
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001026void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1027 uint64_t Flags, uint64_t Address,
1028 uint64_t Offset, uint64_t Size,
1029 uint32_t Link, uint32_t Info,
1030 uint64_t Alignment,
1031 uint64_t EntrySize) {
Matt Fleming3565a062010-08-16 18:57:57 +00001032 Write32(Name); // sh_name: index into string table
1033 Write32(Type); // sh_type
1034 WriteWord(Flags); // sh_flags
1035 WriteWord(Address); // sh_addr
1036 WriteWord(Offset); // sh_offset
1037 WriteWord(Size); // sh_size
1038 Write32(Link); // sh_link
1039 Write32(Info); // sh_info
1040 WriteWord(Alignment); // sh_addralign
1041 WriteWord(EntrySize); // sh_entsize
1042}
1043
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001044void ELFObjectWriter::WriteRelocationsFragment(const MCAssembler &Asm,
1045 MCDataFragment *F,
1046 const MCSectionData *SD) {
Matt Fleming3565a062010-08-16 18:57:57 +00001047 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
1048 // sort by the r_offset just like gnu as does
1049 array_pod_sort(Relocs.begin(), Relocs.end());
1050
1051 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
1052 ELFRelocationEntry entry = Relocs[e - i - 1];
1053
Rafael Espindola12203cc2010-11-21 00:48:25 +00001054 if (!entry.Index)
1055 ;
1056 else if (entry.Index < 0)
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001057 entry.Index = getSymbolIndexInSymbolTable(Asm, entry.Symbol);
1058 else
Rafael Espindola12203cc2010-11-21 00:48:25 +00001059 entry.Index += LocalSymbolData.size();
Rafael Espindolabff66a82010-12-18 03:27:34 +00001060 if (is64Bit()) {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001061 String64(*F, entry.r_offset);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001062
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001063 struct ELF::Elf64_Rela ERE64;
1064 ERE64.setSymbolAndType(entry.Index, entry.Type);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001065 String64(*F, ERE64.r_info);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001066
Rafael Espindolabff66a82010-12-18 03:27:34 +00001067 if (hasRelocationAddend())
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001068 String64(*F, entry.r_addend);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001069 } else {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001070 String32(*F, entry.r_offset);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001071
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001072 struct ELF::Elf32_Rela ERE32;
1073 ERE32.setSymbolAndType(entry.Index, entry.Type);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001074 String32(*F, ERE32.r_info);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001075
Rafael Espindolabff66a82010-12-18 03:27:34 +00001076 if (hasRelocationAddend())
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +00001077 String32(*F, entry.r_addend);
Benjamin Kramer5e492e82010-09-09 18:01:29 +00001078 }
Matt Fleming3565a062010-08-16 18:57:57 +00001079 }
1080}
1081
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001082void ELFObjectWriter::CreateMetadataSections(MCAssembler &Asm,
1083 MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +00001084 const SectionIndexMapTy &SectionIndexMap) {
Matt Fleming3565a062010-08-16 18:57:57 +00001085 MCContext &Ctx = Asm.getContext();
1086 MCDataFragment *F;
1087
Rafael Espindolabff66a82010-12-18 03:27:34 +00001088 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
Matt Fleming3565a062010-08-16 18:57:57 +00001089
Rafael Espindola38738bf2010-09-22 19:04:41 +00001090 // We construct .shstrtab, .symtab and .strtab in this order to match gnu as.
Rafael Espindola4283f4b2010-11-10 19:05:07 +00001091 const MCSectionELF *ShstrtabSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +00001092 Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001093 SectionKind::getReadOnly());
Rafael Espindola71859c62010-09-16 19:46:31 +00001094 MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
1095 ShstrtabSD.setAlignment(1);
1096 ShstrtabIndex = Asm.size();
1097
Rafael Espindola4283f4b2010-11-10 19:05:07 +00001098 const MCSectionELF *SymtabSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +00001099 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
1100 SectionKind::getReadOnly(),
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001101 EntrySize, "");
Matt Fleming3565a062010-08-16 18:57:57 +00001102 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
Rafael Espindolabff66a82010-12-18 03:27:34 +00001103 SymtabSD.setAlignment(is64Bit() ? 8 : 4);
Rafael Espindola7be2c332010-10-31 00:16:26 +00001104 SymbolTableIndex = Asm.size();
1105
1106 MCSectionData *SymtabShndxSD = NULL;
1107
1108 if (NeedsSymtabShndx) {
Rafael Espindola4283f4b2010-11-10 19:05:07 +00001109 const MCSectionELF *SymtabShndxSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +00001110 Ctx.getELFSection(".symtab_shndx", ELF::SHT_SYMTAB_SHNDX, 0,
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001111 SectionKind::getReadOnly(), 4, "");
Rafael Espindola7be2c332010-10-31 00:16:26 +00001112 SymtabShndxSD = &Asm.getOrCreateSectionData(*SymtabShndxSection);
1113 SymtabShndxSD->setAlignment(4);
1114 }
Matt Fleming3565a062010-08-16 18:57:57 +00001115
Matt Fleming3565a062010-08-16 18:57:57 +00001116 const MCSection *StrtabSection;
1117 StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001118 SectionKind::getReadOnly());
Matt Fleming3565a062010-08-16 18:57:57 +00001119 MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
1120 StrtabSD.setAlignment(1);
Matt Fleming3565a062010-08-16 18:57:57 +00001121 StringTableIndex = Asm.size();
1122
Rafael Espindolac3c413f2010-09-27 22:04:54 +00001123 WriteRelocations(Asm, Layout);
Rafael Espindola71859c62010-09-16 19:46:31 +00001124
1125 // Symbol table
1126 F = new MCDataFragment(&SymtabSD);
Rafael Espindola7be2c332010-10-31 00:16:26 +00001127 MCDataFragment *ShndxF = NULL;
1128 if (NeedsSymtabShndx) {
1129 ShndxF = new MCDataFragment(SymtabShndxSD);
Rafael Espindola7be2c332010-10-31 00:16:26 +00001130 }
Rafael Espindola4beee3d2010-11-10 22:16:43 +00001131 WriteSymbolTable(F, ShndxF, Asm, Layout, SectionIndexMap);
Rafael Espindola71859c62010-09-16 19:46:31 +00001132
Matt Fleming3565a062010-08-16 18:57:57 +00001133 F = new MCDataFragment(&StrtabSD);
1134 F->getContents().append(StringTable.begin(), StringTable.end());
Matt Fleming3565a062010-08-16 18:57:57 +00001135
Matt Fleming3565a062010-08-16 18:57:57 +00001136 F = new MCDataFragment(&ShstrtabSD);
1137
Matt Fleming3565a062010-08-16 18:57:57 +00001138 // Section header string table.
1139 //
1140 // The first entry of a string table holds a null character so skip
1141 // section 0.
1142 uint64_t Index = 1;
1143 F->getContents() += '\x00';
1144
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001145 StringMap<uint64_t> SecStringMap;
Matt Fleming3565a062010-08-16 18:57:57 +00001146 for (MCAssembler::const_iterator it = Asm.begin(),
1147 ie = Asm.end(); it != ie; ++it) {
Matt Fleming3565a062010-08-16 18:57:57 +00001148 const MCSectionELF &Section =
Benjamin Kramer368ae7e2010-08-17 00:00:46 +00001149 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola51efe7a2010-09-23 14:14:56 +00001150 // FIXME: We could merge suffixes like in .text and .rela.text.
Matt Fleming3565a062010-08-16 18:57:57 +00001151
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001152 StringRef Name = Section.getSectionName();
1153 if (SecStringMap.count(Name)) {
1154 SectionStringTableIndex[&Section] = SecStringMap[Name];
1155 continue;
1156 }
Matt Fleming3565a062010-08-16 18:57:57 +00001157 // Remember the index into the string table so we can write it
1158 // into the sh_name field of the section header table.
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001159 SectionStringTableIndex[&Section] = Index;
1160 SecStringMap[Name] = Index;
Matt Fleming3565a062010-08-16 18:57:57 +00001161
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001162 Index += Name.size() + 1;
1163 F->getContents() += Name;
Matt Fleming3565a062010-08-16 18:57:57 +00001164 F->getContents() += '\x00';
1165 }
Rafael Espindola70703872010-09-30 02:22:20 +00001166}
1167
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001168bool ELFObjectWriter::IsFixupFullyResolved(const MCAssembler &Asm,
1169 const MCValue Target,
1170 bool IsPCRel,
1171 const MCFragment *DF) const {
Rafael Espindola70703872010-09-30 02:22:20 +00001172 // If this is a PCrel relocation, find the section this fixup value is
1173 // relative to.
1174 const MCSection *BaseSection = 0;
1175 if (IsPCRel) {
1176 BaseSection = &DF->getParent()->getSection();
1177 assert(BaseSection);
1178 }
1179
1180 const MCSection *SectionA = 0;
1181 const MCSymbol *SymbolA = 0;
1182 if (const MCSymbolRefExpr *A = Target.getSymA()) {
Rafael Espindola2c920852010-11-16 04:11:46 +00001183 SymbolA = &A->getSymbol();
1184 SectionA = &SymbolA->AliasedSymbol().getSection();
Rafael Espindola70703872010-09-30 02:22:20 +00001185 }
1186
1187 const MCSection *SectionB = 0;
Rafael Espindola12203cc2010-11-21 00:48:25 +00001188 const MCSymbol *SymbolB = 0;
Rafael Espindola70703872010-09-30 02:22:20 +00001189 if (const MCSymbolRefExpr *B = Target.getSymB()) {
Rafael Espindola12203cc2010-11-21 00:48:25 +00001190 SymbolB = &B->getSymbol();
1191 SectionB = &SymbolB->AliasedSymbol().getSection();
Rafael Espindola70703872010-09-30 02:22:20 +00001192 }
1193
1194 if (!BaseSection)
1195 return SectionA == SectionB;
1196
Rafael Espindola12203cc2010-11-21 00:48:25 +00001197 if (SymbolB)
1198 return false;
1199
1200 // Absolute address but PCrel instruction, so we need a relocation.
1201 if (!SymbolA)
1202 return false;
1203
Rafael Espindola2c920852010-11-16 04:11:46 +00001204 // FIXME: This is in here just to match gnu as output. If the two ends
1205 // are in the same section, there is nothing that the linker can do to
1206 // break it.
Rafael Espindola70703872010-09-30 02:22:20 +00001207 const MCSymbolData &DataA = Asm.getSymbolData(*SymbolA);
1208 if (DataA.isExternal())
1209 return false;
1210
Rafael Espindola12203cc2010-11-21 00:48:25 +00001211 return BaseSection == SectionA;
Matt Fleming3565a062010-08-16 18:57:57 +00001212}
1213
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001214void ELFObjectWriter::CreateGroupSections(MCAssembler &Asm,
1215 MCAsmLayout &Layout,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001216 GroupMapTy &GroupMap,
1217 RevGroupMapTy &RevGroupMap) {
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001218 // Build the groups
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001219 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
1220 it != ie; ++it) {
1221 const MCSectionELF &Section =
1222 static_cast<const MCSectionELF&>(it->getSection());
1223 if (!(Section.getFlags() & MCSectionELF::SHF_GROUP))
1224 continue;
1225
1226 const MCSymbol *SignatureSymbol = Section.getGroup();
1227 Asm.getOrCreateSymbolData(*SignatureSymbol);
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001228 const MCSectionELF *&Group = RevGroupMap[SignatureSymbol];
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001229 if (!Group) {
1230 Group = Asm.getContext().CreateELFGroupSection();
1231 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1232 Data.setAlignment(4);
1233 MCDataFragment *F = new MCDataFragment(&Data);
1234 String32(*F, ELF::GRP_COMDAT);
1235 }
1236 GroupMap[Group] = SignatureSymbol;
1237 }
1238
1239 // Add sections to the groups
1240 unsigned Index = 1;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001241 unsigned NumGroups = RevGroupMap.size();
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001242 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
1243 it != ie; ++it, ++Index) {
1244 const MCSectionELF &Section =
1245 static_cast<const MCSectionELF&>(it->getSection());
1246 if (!(Section.getFlags() & MCSectionELF::SHF_GROUP))
1247 continue;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001248 const MCSectionELF *Group = RevGroupMap[Section.getGroup()];
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001249 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1250 // FIXME: we could use the previous fragment
1251 MCDataFragment *F = new MCDataFragment(&Data);
1252 String32(*F, NumGroups + Index);
1253 }
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001254}
1255
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001256void ELFObjectWriter::WriteSection(MCAssembler &Asm,
1257 const SectionIndexMapTy &SectionIndexMap,
1258 uint32_t GroupSymbolIndex,
1259 uint64_t Offset, uint64_t Size,
1260 uint64_t Alignment,
1261 const MCSectionELF &Section) {
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001262 uint64_t sh_link = 0;
1263 uint64_t sh_info = 0;
1264
1265 switch(Section.getType()) {
1266 case ELF::SHT_DYNAMIC:
1267 sh_link = SectionStringTableIndex[&Section];
1268 sh_info = 0;
1269 break;
1270
1271 case ELF::SHT_REL:
1272 case ELF::SHT_RELA: {
1273 const MCSectionELF *SymtabSection;
1274 const MCSectionELF *InfoSection;
1275 SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB,
1276 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001277 SectionKind::getReadOnly());
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001278 sh_link = SectionIndexMap.lookup(SymtabSection);
1279 assert(sh_link && ".symtab not found");
1280
1281 // Remove ".rel" and ".rela" prefixes.
1282 unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
1283 StringRef SectionName = Section.getSectionName().substr(SecNameLen);
1284
1285 InfoSection = Asm.getContext().getELFSection(SectionName,
1286 ELF::SHT_PROGBITS, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +00001287 SectionKind::getReadOnly());
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001288 sh_info = SectionIndexMap.lookup(InfoSection);
1289 break;
1290 }
1291
1292 case ELF::SHT_SYMTAB:
1293 case ELF::SHT_DYNSYM:
1294 sh_link = StringTableIndex;
1295 sh_info = LastLocalSymbolIndex;
1296 break;
1297
1298 case ELF::SHT_SYMTAB_SHNDX:
1299 sh_link = SymbolTableIndex;
1300 break;
1301
1302 case ELF::SHT_PROGBITS:
1303 case ELF::SHT_STRTAB:
1304 case ELF::SHT_NOBITS:
1305 case ELF::SHT_NULL:
1306 case ELF::SHT_ARM_ATTRIBUTES:
1307 // Nothing to do.
1308 break;
1309
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001310 case ELF::SHT_GROUP: {
1311 sh_link = SymbolTableIndex;
1312 sh_info = GroupSymbolIndex;
1313 break;
1314 }
1315
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001316 default:
1317 assert(0 && "FIXME: sh_type value not supported!");
1318 break;
1319 }
1320
1321 WriteSecHdrEntry(SectionStringTableIndex[&Section], Section.getType(),
1322 Section.getFlags(), 0, Offset, Size, sh_link, sh_info,
1323 Alignment, Section.getEntrySize());
1324}
1325
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001326static bool IsELFMetaDataSection(const MCSectionData &SD) {
Rafael Espindolaf8803fe2010-12-06 03:48:09 +00001327 return SD.getOrdinal() == ~UINT32_C(0) &&
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001328 !SD.getSection().isVirtualSection();
1329}
1330
1331static uint64_t DataSectionSize(const MCSectionData &SD) {
1332 uint64_t Ret = 0;
1333 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1334 ++i) {
1335 const MCFragment &F = *i;
1336 assert(F.getKind() == MCFragment::FT_Data);
1337 Ret += cast<MCDataFragment>(F).getContents().size();
1338 }
1339 return Ret;
1340}
1341
1342static uint64_t GetSectionFileSize(const MCAsmLayout &Layout,
1343 const MCSectionData &SD) {
1344 if (IsELFMetaDataSection(SD))
1345 return DataSectionSize(SD);
1346 return Layout.getSectionFileSize(&SD);
1347}
1348
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001349static uint64_t GetSectionAddressSize(const MCAsmLayout &Layout,
1350 const MCSectionData &SD) {
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001351 if (IsELFMetaDataSection(SD))
1352 return DataSectionSize(SD);
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001353 return Layout.getSectionAddressSize(&SD);
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001354}
1355
1356static void WriteDataSectionData(ELFObjectWriter *W, const MCSectionData &SD) {
1357 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1358 ++i) {
1359 const MCFragment &F = *i;
1360 assert(F.getKind() == MCFragment::FT_Data);
1361 W->WriteBytes(cast<MCDataFragment>(F).getContents().str());
1362 }
1363}
1364
Daniel Dunbar115a3dd2010-11-13 07:33:40 +00001365void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1366 const MCAsmLayout &Layout) {
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001367 GroupMapTy GroupMap;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001368 RevGroupMapTy RevGroupMap;
1369 CreateGroupSections(Asm, const_cast<MCAsmLayout&>(Layout), GroupMap,
1370 RevGroupMap);
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001371
Rafael Espindolabab2a802010-11-10 21:51:05 +00001372 SectionIndexMapTy SectionIndexMap;
1373
1374 ComputeIndexMap(Asm, SectionIndexMap);
1375
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001376 // Compute symbol table information.
Rafael Espindola1f4f9e32010-11-14 04:17:37 +00001377 ComputeSymbolTable(Asm, SectionIndexMap, RevGroupMap);
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001378
Matt Fleming3565a062010-08-16 18:57:57 +00001379 CreateMetadataSections(const_cast<MCAssembler&>(Asm),
Rafael Espindola4beee3d2010-11-10 22:16:43 +00001380 const_cast<MCAsmLayout&>(Layout),
1381 SectionIndexMap);
Matt Fleming3565a062010-08-16 18:57:57 +00001382
Rafael Espindola1d739a02010-11-10 22:34:07 +00001383 // Update to include the metadata sections.
1384 ComputeIndexMap(Asm, SectionIndexMap);
1385
Matt Fleming3565a062010-08-16 18:57:57 +00001386 // Add 1 for the null section.
1387 unsigned NumSections = Asm.size() + 1;
Rafael Espindolabff66a82010-12-18 03:27:34 +00001388 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
1389 uint64_t HeaderSize = is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
1390 sizeof(ELF::Elf32_Ehdr);
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001391 uint64_t FileOff = HeaderSize;
Matt Fleming3565a062010-08-16 18:57:57 +00001392
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001393 std::vector<const MCSectionELF*> Sections;
1394 Sections.resize(NumSections);
1395
1396 for (SectionIndexMapTy::const_iterator i=
1397 SectionIndexMap.begin(), e = SectionIndexMap.end(); i != e; ++i) {
1398 const std::pair<const MCSectionELF*, uint32_t> &p = *i;
1399 Sections[p.second] = p.first;
1400 }
1401
1402 for (unsigned i = 1; i < NumSections; ++i) {
1403 const MCSectionELF &Section = *Sections[i];
1404 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
Matt Fleming3565a062010-08-16 18:57:57 +00001405
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001406 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1407
Matt Fleming3565a062010-08-16 18:57:57 +00001408 // Get the size of the section in the output file (including padding).
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001409 FileOff += GetSectionFileSize(Layout, SD);
Matt Fleming3565a062010-08-16 18:57:57 +00001410 }
1411
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001412 FileOff = RoundUpToAlignment(FileOff, NaturalAlignment);
1413
Matt Fleming3565a062010-08-16 18:57:57 +00001414 // Write out the ELF header ...
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001415 WriteHeader(FileOff - HeaderSize, NumSections);
1416
1417 FileOff = HeaderSize;
Matt Fleming3565a062010-08-16 18:57:57 +00001418
1419 // ... then all of the sections ...
1420 DenseMap<const MCSection*, uint64_t> SectionOffsetMap;
1421
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001422 for (unsigned i = 1; i < NumSections; ++i) {
1423 const MCSectionELF &Section = *Sections[i];
1424 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001425
1426 uint64_t Padding = OffsetToAlignment(FileOff, SD.getAlignment());
1427 WriteZeros(Padding);
1428 FileOff += Padding;
1429
Matt Fleming3565a062010-08-16 18:57:57 +00001430 // Remember the offset into the file for this section.
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001431 SectionOffsetMap[&Section] = FileOff;
Benjamin Kramer44cbde82010-08-19 13:44:49 +00001432
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001433 FileOff += GetSectionFileSize(Layout, SD);
Matt Fleming3565a062010-08-16 18:57:57 +00001434
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001435 if (IsELFMetaDataSection(SD))
1436 WriteDataSectionData(this, SD);
1437 else
Daniel Dunbar5d2477c2010-12-17 02:45:59 +00001438 Asm.WriteSectionData(&SD, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +00001439 }
1440
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001441 uint64_t Padding = OffsetToAlignment(FileOff, NaturalAlignment);
1442 WriteZeros(Padding);
1443 FileOff += Padding;
1444
Matt Fleming3565a062010-08-16 18:57:57 +00001445 // ... and then the section header table.
1446 // Should we align the section header table?
1447 //
1448 // Null section first.
Rafael Espindola7be2c332010-10-31 00:16:26 +00001449 uint64_t FirstSectionSize =
1450 NumSections >= ELF::SHN_LORESERVE ? NumSections : 0;
1451 uint32_t FirstSectionLink =
1452 ShstrtabIndex >= ELF::SHN_LORESERVE ? ShstrtabIndex : 0;
1453 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, FirstSectionLink, 0, 0, 0);
Matt Fleming3565a062010-08-16 18:57:57 +00001454
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001455 for (unsigned i = 1; i < NumSections; ++i) {
1456 const MCSectionELF &Section = *Sections[i];
1457 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1458 uint32_t GroupSymbolIndex;
1459 if (Section.getType() != ELF::SHT_GROUP)
1460 GroupSymbolIndex = 0;
1461 else
1462 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm, GroupMap[&Section]);
Matt Fleming3565a062010-08-16 18:57:57 +00001463
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001464 uint64_t Size = GetSectionAddressSize(Layout, SD);
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001465
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001466 WriteSection(Asm, SectionIndexMap, GroupSymbolIndex,
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001467 SectionOffsetMap[&Section], Size,
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001468 SD.getAlignment(), Section);
Matt Fleming3565a062010-08-16 18:57:57 +00001469 }
1470}
1471
Rafael Espindola6024c972010-12-17 17:45:22 +00001472MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
1473 raw_ostream &OS,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001474 bool IsLittleEndian) {
1475 switch (MOTW->getEMachine()) {
Jason W Kimd3443e92010-11-15 16:18:39 +00001476 case ELF::EM_386:
1477 case ELF::EM_X86_64:
Rafael Espindolabff66a82010-12-18 03:27:34 +00001478 return new X86ELFObjectWriter(MOTW, OS, IsLittleEndian); break;
Jason W Kimd3443e92010-11-15 16:18:39 +00001479 case ELF::EM_ARM:
Rafael Espindolabff66a82010-12-18 03:27:34 +00001480 return new ARMELFObjectWriter(MOTW, OS, IsLittleEndian); break;
Wesley Peck4b047132010-11-21 22:06:28 +00001481 case ELF::EM_MBLAZE:
Rafael Espindolabff66a82010-12-18 03:27:34 +00001482 return new MBlazeELFObjectWriter(MOTW, OS, IsLittleEndian); break;
Benjamin Kramer32858772010-11-15 19:20:50 +00001483 default: llvm_unreachable("Unsupported architecture"); break;
Jason W Kimd3443e92010-11-15 16:18:39 +00001484 }
1485}
1486
1487
1488/// START OF SUBCLASSES for ELFObjectWriter
1489//===- ARMELFObjectWriter -------------------------------------------===//
1490
Rafael Espindola31f35782010-12-17 18:01:31 +00001491ARMELFObjectWriter::ARMELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001492 raw_ostream &_OS,
1493 bool IsLittleEndian)
1494 : ELFObjectWriter(MOTW, _OS, IsLittleEndian)
Jason W Kimd3443e92010-11-15 16:18:39 +00001495{}
1496
1497ARMELFObjectWriter::~ARMELFObjectWriter()
1498{}
1499
Jason W Kim85fed5e2010-12-01 02:40:06 +00001500unsigned ARMELFObjectWriter::GetRelocType(const MCValue &Target,
1501 const MCFixup &Fixup,
Jason W Kim56a39902010-12-06 21:57:34 +00001502 bool IsPCRel,
1503 bool IsRelocWithSymbol,
1504 int64_t Addend) {
Jason W Kim85fed5e2010-12-01 02:40:06 +00001505 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1506 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
1507
Jason W Kima0871e72010-12-08 23:14:44 +00001508 unsigned Type = 0;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001509 if (IsPCRel) {
Jason W Kim85fed5e2010-12-01 02:40:06 +00001510 switch ((unsigned)Fixup.getKind()) {
1511 default: assert(0 && "Unimplemented");
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001512 case FK_Data_4:
1513 switch (Modifier) {
1514 default: llvm_unreachable("Unsupported Modifier");
1515 case MCSymbolRefExpr::VK_None:
1516 Type = ELF::R_ARM_BASE_PREL; break;
1517 case MCSymbolRefExpr::VK_ARM_TLSGD:
1518 assert(0 && "unimplemented"); break;
1519 case MCSymbolRefExpr::VK_ARM_GOTTPOFF:
1520 Type = ELF::R_ARM_TLS_IE32;
1521 } break;
1522 case ARM::fixup_arm_branch:
1523 switch (Modifier) {
1524 case MCSymbolRefExpr::VK_ARM_PLT:
1525 Type = ELF::R_ARM_PLT32; break;
1526 default:
1527 Type = ELF::R_ARM_CALL; break;
1528 } break;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001529 }
1530 } else {
1531 switch ((unsigned)Fixup.getKind()) {
1532 default: llvm_unreachable("invalid fixup kind!");
Jason W Kima0871e72010-12-08 23:14:44 +00001533 case FK_Data_4:
1534 switch (Modifier) {
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001535 default: llvm_unreachable("Unsupported Modifier"); break;
1536 case MCSymbolRefExpr::VK_ARM_GOT:
1537 Type = ELF::R_ARM_GOT_BREL; break;
1538 case MCSymbolRefExpr::VK_ARM_TLSGD:
1539 Type = ELF::R_ARM_TLS_GD32; break;
Jason W Kimf13743b2010-12-16 03:12:17 +00001540 case MCSymbolRefExpr::VK_ARM_TPOFF:
1541 Type = ELF::R_ARM_TLS_LE32; break;
Jason W Kima0871e72010-12-08 23:14:44 +00001542 case MCSymbolRefExpr::VK_ARM_GOTTPOFF:
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001543 Type = ELF::R_ARM_TLS_IE32; break;
Jason W Kimf13743b2010-12-16 03:12:17 +00001544 case MCSymbolRefExpr::VK_None:
1545 Type = ELF::R_ARM_ABS32; break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001546 case MCSymbolRefExpr::VK_ARM_GOTOFF:
1547 Type = ELF::R_ARM_GOTOFF32; break;
Jason W Kima0871e72010-12-08 23:14:44 +00001548 } break;
Jim Grosbachdff84b02010-12-02 00:28:45 +00001549 case ARM::fixup_arm_ldst_pcrel_12:
Owen Anderson9d63d902010-12-01 19:18:46 +00001550 case ARM::fixup_arm_pcrel_10:
Jim Grosbachdff84b02010-12-02 00:28:45 +00001551 case ARM::fixup_arm_adr_pcrel_12:
Jim Grosbach662a8162010-12-06 23:57:07 +00001552 case ARM::fixup_arm_thumb_bl:
Jim Grosbachb492a7c2010-12-09 19:50:12 +00001553 case ARM::fixup_arm_thumb_cb:
Bill Wendlingb8958b02010-12-08 01:57:09 +00001554 case ARM::fixup_arm_thumb_cp:
Jim Grosbache2467172010-12-10 18:21:33 +00001555 case ARM::fixup_arm_thumb_br:
Jason W Kim85fed5e2010-12-01 02:40:06 +00001556 assert(0 && "Unimplemented"); break;
1557 case ARM::fixup_arm_branch:
Jason W Kimf13743b2010-12-16 03:12:17 +00001558 // FIXME: Differentiate between R_ARM_CALL and
1559 // R_ARM_JUMP24 (latter used for conditional jumps)
Jason W Kima0871e72010-12-08 23:14:44 +00001560 Type = ELF::R_ARM_CALL; break;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001561 case ARM::fixup_arm_movt_hi16:
Jason W Kima0871e72010-12-08 23:14:44 +00001562 Type = ELF::R_ARM_MOVT_ABS; break;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001563 case ARM::fixup_arm_movw_lo16:
Jason W Kima0871e72010-12-08 23:14:44 +00001564 Type = ELF::R_ARM_MOVW_ABS_NC; break;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001565 }
1566 }
1567
1568 if (RelocNeedsGOT(Modifier))
1569 NeedsGOT = true;
Jason W Kima0871e72010-12-08 23:14:44 +00001570
1571 return Type;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001572}
1573
Wesley Peck4b047132010-11-21 22:06:28 +00001574//===- MBlazeELFObjectWriter -------------------------------------------===//
Jason W Kimd3443e92010-11-15 16:18:39 +00001575
Rafael Espindola31f35782010-12-17 18:01:31 +00001576MBlazeELFObjectWriter::MBlazeELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001577 raw_ostream &_OS,
1578 bool IsLittleEndian)
1579 : ELFObjectWriter(MOTW, _OS, IsLittleEndian) {
Wesley Peck4b047132010-11-21 22:06:28 +00001580}
1581
1582MBlazeELFObjectWriter::~MBlazeELFObjectWriter() {
1583}
1584
Jason W Kim56a39902010-12-06 21:57:34 +00001585unsigned MBlazeELFObjectWriter::GetRelocType(const MCValue &Target,
Wesley Peck4b047132010-11-21 22:06:28 +00001586 const MCFixup &Fixup,
Jason W Kim56a39902010-12-06 21:57:34 +00001587 bool IsPCRel,
1588 bool IsRelocWithSymbol,
1589 int64_t Addend) {
Wesley Peck4b047132010-11-21 22:06:28 +00001590 // determine the type of the relocation
1591 unsigned Type;
1592 if (IsPCRel) {
1593 switch ((unsigned)Fixup.getKind()) {
1594 default:
1595 llvm_unreachable("Unimplemented");
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001596 case FK_PCRel_4:
Wesley Peck4b047132010-11-21 22:06:28 +00001597 Type = ELF::R_MICROBLAZE_64_PCREL;
1598 break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001599 case FK_PCRel_2:
Wesley Peck4b047132010-11-21 22:06:28 +00001600 Type = ELF::R_MICROBLAZE_32_PCREL;
1601 break;
1602 }
1603 } else {
1604 switch ((unsigned)Fixup.getKind()) {
1605 default: llvm_unreachable("invalid fixup kind!");
1606 case FK_Data_4:
Jason W Kim56a39902010-12-06 21:57:34 +00001607 Type = ((IsRelocWithSymbol || Addend !=0)
1608 ? ELF::R_MICROBLAZE_32
1609 : ELF::R_MICROBLAZE_64);
Wesley Peck4b047132010-11-21 22:06:28 +00001610 break;
1611 case FK_Data_2:
1612 Type = ELF::R_MICROBLAZE_32;
1613 break;
1614 }
1615 }
Jason W Kim56a39902010-12-06 21:57:34 +00001616 return Type;
Wesley Peck4b047132010-11-21 22:06:28 +00001617}
Jason W Kimd3443e92010-11-15 16:18:39 +00001618
1619//===- X86ELFObjectWriter -------------------------------------------===//
1620
1621
Rafael Espindola31f35782010-12-17 18:01:31 +00001622X86ELFObjectWriter::X86ELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001623 raw_ostream &_OS,
1624 bool IsLittleEndian)
1625 : ELFObjectWriter(MOTW, _OS, IsLittleEndian)
Jason W Kimd3443e92010-11-15 16:18:39 +00001626{}
1627
1628X86ELFObjectWriter::~X86ELFObjectWriter()
1629{}
1630
Jason W Kim56a39902010-12-06 21:57:34 +00001631unsigned X86ELFObjectWriter::GetRelocType(const MCValue &Target,
1632 const MCFixup &Fixup,
1633 bool IsPCRel,
1634 bool IsRelocWithSymbol,
1635 int64_t Addend) {
Jason W Kimd3443e92010-11-15 16:18:39 +00001636 // determine the type of the relocation
1637
Rafael Espindola12203cc2010-11-21 00:48:25 +00001638 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1639 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
Jason W Kimd3443e92010-11-15 16:18:39 +00001640 unsigned Type;
Rafael Espindolabff66a82010-12-18 03:27:34 +00001641 if (is64Bit()) {
Jason W Kimd3443e92010-11-15 16:18:39 +00001642 if (IsPCRel) {
1643 switch (Modifier) {
1644 default:
1645 llvm_unreachable("Unimplemented");
1646 case MCSymbolRefExpr::VK_None:
1647 Type = ELF::R_X86_64_PC32;
1648 break;
1649 case MCSymbolRefExpr::VK_PLT:
1650 Type = ELF::R_X86_64_PLT32;
1651 break;
1652 case MCSymbolRefExpr::VK_GOTPCREL:
1653 Type = ELF::R_X86_64_GOTPCREL;
1654 break;
1655 case MCSymbolRefExpr::VK_GOTTPOFF:
1656 Type = ELF::R_X86_64_GOTTPOFF;
1657 break;
1658 case MCSymbolRefExpr::VK_TLSGD:
1659 Type = ELF::R_X86_64_TLSGD;
1660 break;
1661 case MCSymbolRefExpr::VK_TLSLD:
1662 Type = ELF::R_X86_64_TLSLD;
1663 break;
1664 }
1665 } else {
1666 switch ((unsigned)Fixup.getKind()) {
1667 default: llvm_unreachable("invalid fixup kind!");
1668 case FK_Data_8: Type = ELF::R_X86_64_64; break;
1669 case X86::reloc_signed_4byte:
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001670 case FK_PCRel_4:
Jason W Kimd3443e92010-11-15 16:18:39 +00001671 assert(isInt<32>(Target.getConstant()));
1672 switch (Modifier) {
1673 default:
1674 llvm_unreachable("Unimplemented");
1675 case MCSymbolRefExpr::VK_None:
1676 Type = ELF::R_X86_64_32S;
1677 break;
1678 case MCSymbolRefExpr::VK_GOT:
1679 Type = ELF::R_X86_64_GOT32;
1680 break;
1681 case MCSymbolRefExpr::VK_GOTPCREL:
1682 Type = ELF::R_X86_64_GOTPCREL;
1683 break;
1684 case MCSymbolRefExpr::VK_TPOFF:
1685 Type = ELF::R_X86_64_TPOFF32;
1686 break;
1687 case MCSymbolRefExpr::VK_DTPOFF:
1688 Type = ELF::R_X86_64_DTPOFF32;
1689 break;
1690 }
1691 break;
1692 case FK_Data_4:
1693 Type = ELF::R_X86_64_32;
1694 break;
1695 case FK_Data_2: Type = ELF::R_X86_64_16; break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001696 case FK_PCRel_1:
Jason W Kimd3443e92010-11-15 16:18:39 +00001697 case FK_Data_1: Type = ELF::R_X86_64_8; break;
1698 }
1699 }
1700 } else {
1701 if (IsPCRel) {
1702 switch (Modifier) {
1703 default:
1704 llvm_unreachable("Unimplemented");
1705 case MCSymbolRefExpr::VK_None:
1706 Type = ELF::R_386_PC32;
1707 break;
1708 case MCSymbolRefExpr::VK_PLT:
1709 Type = ELF::R_386_PLT32;
1710 break;
1711 }
1712 } else {
1713 switch ((unsigned)Fixup.getKind()) {
1714 default: llvm_unreachable("invalid fixup kind!");
1715
1716 case X86::reloc_global_offset_table:
1717 Type = ELF::R_386_GOTPC;
1718 break;
1719
1720 // FIXME: Should we avoid selecting reloc_signed_4byte in 32 bit mode
1721 // instead?
1722 case X86::reloc_signed_4byte:
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001723 case FK_PCRel_4:
Jason W Kimd3443e92010-11-15 16:18:39 +00001724 case FK_Data_4:
1725 switch (Modifier) {
1726 default:
1727 llvm_unreachable("Unimplemented");
1728 case MCSymbolRefExpr::VK_None:
1729 Type = ELF::R_386_32;
1730 break;
1731 case MCSymbolRefExpr::VK_GOT:
1732 Type = ELF::R_386_GOT32;
1733 break;
1734 case MCSymbolRefExpr::VK_GOTOFF:
1735 Type = ELF::R_386_GOTOFF;
1736 break;
1737 case MCSymbolRefExpr::VK_TLSGD:
1738 Type = ELF::R_386_TLS_GD;
1739 break;
1740 case MCSymbolRefExpr::VK_TPOFF:
1741 Type = ELF::R_386_TLS_LE_32;
1742 break;
1743 case MCSymbolRefExpr::VK_INDNTPOFF:
1744 Type = ELF::R_386_TLS_IE;
1745 break;
1746 case MCSymbolRefExpr::VK_NTPOFF:
1747 Type = ELF::R_386_TLS_LE;
1748 break;
1749 case MCSymbolRefExpr::VK_GOTNTPOFF:
1750 Type = ELF::R_386_TLS_GOTIE;
1751 break;
1752 case MCSymbolRefExpr::VK_TLSLDM:
1753 Type = ELF::R_386_TLS_LDM;
1754 break;
1755 case MCSymbolRefExpr::VK_DTPOFF:
1756 Type = ELF::R_386_TLS_LDO_32;
1757 break;
1758 }
1759 break;
1760 case FK_Data_2: Type = ELF::R_386_16; break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001761 case FK_PCRel_1:
Jason W Kimd3443e92010-11-15 16:18:39 +00001762 case FK_Data_1: Type = ELF::R_386_8; break;
1763 }
1764 }
1765 }
1766
1767 if (RelocNeedsGOT(Modifier))
1768 NeedsGOT = true;
1769
Jason W Kim56a39902010-12-06 21:57:34 +00001770 return Type;
Matt Fleming3565a062010-08-16 18:57:57 +00001771}