blob: 9f9681ae3efc3a646fc2fcbcaf05689bc47291c6 [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
14#include "llvm/MC/ELFObjectWriter.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"
24#include "llvm/MC/MCObjectWriter.h"
25#include "llvm/MC/MCSectionELF.h"
26#include "llvm/MC/MCSymbol.h"
27#include "llvm/MC/MCValue.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/ErrorHandling.h"
30#include "llvm/Support/ELF.h"
31#include "llvm/Target/TargetAsmBackend.h"
32
33#include "../Target/X86/X86FixupKinds.h"
34
35#include <vector>
36using namespace llvm;
37
Rafael Espindolaad49cf52010-09-18 15:03:21 +000038static unsigned GetType(const MCSymbolData &SD) {
39 uint32_t Type = (SD.getFlags() & (0xf << ELF_STT_Shift)) >> ELF_STT_Shift;
40 assert(Type == ELF::STT_NOTYPE || Type == ELF::STT_OBJECT ||
41 Type == ELF::STT_FUNC || Type == ELF::STT_SECTION ||
42 Type == ELF::STT_FILE || Type == ELF::STT_COMMON ||
43 Type == ELF::STT_TLS);
44 return Type;
45}
46
Rafael Espindolae15eb4e2010-09-23 19:55:14 +000047static unsigned GetBinding(const MCSymbolData &SD) {
48 uint32_t Binding = (SD.getFlags() & (0xf << ELF_STB_Shift)) >> ELF_STB_Shift;
49 assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
50 Binding == ELF::STB_WEAK);
51 return Binding;
52}
53
54static void SetBinding(MCSymbolData &SD, unsigned Binding) {
55 assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
56 Binding == ELF::STB_WEAK);
57 uint32_t OtherFlags = SD.getFlags() & ~(0xf << ELF_STB_Shift);
58 SD.setFlags(OtherFlags | (Binding << ELF_STB_Shift));
59}
60
Rafael Espindolacebdc012010-10-04 19:46:28 +000061static bool isFixupKindX86PCRel(unsigned Kind) {
62 switch (Kind) {
63 default:
64 return false;
65 case X86::reloc_pcrel_1byte:
66 case X86::reloc_pcrel_4byte:
67 case X86::reloc_riprel_4byte:
68 case X86::reloc_riprel_4byte_movq_load:
69 return true;
70 }
71}
72
Rafael Espindola5c77c162010-10-05 15:48:37 +000073static bool RelocNeedsGOT(unsigned Type) {
74 switch (Type) {
75 default:
76 return false;
77 case ELF::R_X86_64_GOT32:
78 case ELF::R_X86_64_PLT32:
79 case ELF::R_X86_64_GOTPCREL:
80 return true;
81 }
82}
83
Matt Fleming3565a062010-08-16 18:57:57 +000084namespace {
85
86 class ELFObjectWriterImpl {
Chris Lattnerb188a372010-08-28 03:21:03 +000087 /*static bool isFixupKindX86RIPRel(unsigned Kind) {
Matt Fleming3565a062010-08-16 18:57:57 +000088 return Kind == X86::reloc_riprel_4byte ||
89 Kind == X86::reloc_riprel_4byte_movq_load;
Chris Lattnerb188a372010-08-28 03:21:03 +000090 }*/
Matt Fleming3565a062010-08-16 18:57:57 +000091
92
93 /// ELFSymbolData - Helper struct for containing some precomputed information
94 /// on symbols.
95 struct ELFSymbolData {
96 MCSymbolData *SymbolData;
97 uint64_t StringIndex;
98 uint32_t SectionIndex;
99
100 // Support lexicographic sorting.
101 bool operator<(const ELFSymbolData &RHS) const {
Rafael Espindolaad49cf52010-09-18 15:03:21 +0000102 if (GetType(*SymbolData) == ELF::STT_FILE)
103 return true;
104 if (GetType(*RHS.SymbolData) == ELF::STT_FILE)
105 return false;
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000106 return SymbolData->getSymbol().getName() <
107 RHS.SymbolData->getSymbol().getName();
Matt Fleming3565a062010-08-16 18:57:57 +0000108 }
109 };
110
111 /// @name Relocation Data
112 /// @{
113
114 struct ELFRelocationEntry {
115 // Make these big enough for both 32-bit and 64-bit
116 uint64_t r_offset;
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000117 int Index;
118 unsigned Type;
119 const MCSymbol *Symbol;
Matt Fleming3565a062010-08-16 18:57:57 +0000120 uint64_t r_addend;
121
122 // Support lexicographic sorting.
123 bool operator<(const ELFRelocationEntry &RE) const {
124 return RE.r_offset < r_offset;
125 }
126 };
127
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000128 SmallPtrSet<const MCSymbol *, 16> UsedInReloc;
129
Matt Fleming3565a062010-08-16 18:57:57 +0000130 llvm::DenseMap<const MCSectionData*,
131 std::vector<ELFRelocationEntry> > Relocations;
132 DenseMap<const MCSection*, uint64_t> SectionStringTableIndex;
133
134 /// @}
135 /// @name Symbol Table Data
136 /// @{
137
138 SmallString<256> StringTable;
139 std::vector<ELFSymbolData> LocalSymbolData;
140 std::vector<ELFSymbolData> ExternalSymbolData;
141 std::vector<ELFSymbolData> UndefinedSymbolData;
142
143 /// @}
144
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000145 int NumRegularSections;
146
Rafael Espindola5c77c162010-10-05 15:48:37 +0000147 bool NeedsGOT;
148
Matt Fleming3565a062010-08-16 18:57:57 +0000149 ELFObjectWriter *Writer;
150
151 raw_ostream &OS;
152
Matt Fleming3565a062010-08-16 18:57:57 +0000153 unsigned Is64Bit : 1;
154
155 bool HasRelocationAddend;
156
Roman Divacky5baf79e2010-09-09 17:57:50 +0000157 Triple::OSType OSType;
158
Matt Fleming3565a062010-08-16 18:57:57 +0000159 // This holds the symbol table index of the last local symbol.
160 unsigned LastLocalSymbolIndex;
161 // This holds the .strtab section index.
162 unsigned StringTableIndex;
163
164 unsigned ShstrtabIndex;
165
166 public:
167 ELFObjectWriterImpl(ELFObjectWriter *_Writer, bool _Is64Bit,
Roman Divacky5baf79e2010-09-09 17:57:50 +0000168 bool _HasRelAddend, Triple::OSType _OSType)
Rafael Espindola5c77c162010-10-05 15:48:37 +0000169 : NeedsGOT(false), Writer(_Writer), OS(Writer->getStream()),
Roman Divacky5baf79e2010-09-09 17:57:50 +0000170 Is64Bit(_Is64Bit), HasRelocationAddend(_HasRelAddend),
171 OSType(_OSType) {
Matt Fleming3565a062010-08-16 18:57:57 +0000172 }
173
174 void Write8(uint8_t Value) { Writer->Write8(Value); }
175 void Write16(uint16_t Value) { Writer->Write16(Value); }
176 void Write32(uint32_t Value) { Writer->Write32(Value); }
Chris Lattnerb188a372010-08-28 03:21:03 +0000177 //void Write64(uint64_t Value) { Writer->Write64(Value); }
Matt Fleming3565a062010-08-16 18:57:57 +0000178 void WriteZeros(unsigned N) { Writer->WriteZeros(N); }
Chris Lattnerb188a372010-08-28 03:21:03 +0000179 //void WriteBytes(StringRef Str, unsigned ZeroFillSize = 0) {
180 // Writer->WriteBytes(Str, ZeroFillSize);
181 //}
Matt Fleming3565a062010-08-16 18:57:57 +0000182
183 void WriteWord(uint64_t W) {
Chris Lattnerb188a372010-08-28 03:21:03 +0000184 if (Is64Bit)
Matt Fleming3565a062010-08-16 18:57:57 +0000185 Writer->Write64(W);
Chris Lattnerb188a372010-08-28 03:21:03 +0000186 else
Matt Fleming3565a062010-08-16 18:57:57 +0000187 Writer->Write32(W);
Matt Fleming3565a062010-08-16 18:57:57 +0000188 }
189
190 void String8(char *buf, uint8_t Value) {
191 buf[0] = Value;
192 }
193
194 void StringLE16(char *buf, uint16_t Value) {
195 buf[0] = char(Value >> 0);
196 buf[1] = char(Value >> 8);
197 }
198
199 void StringLE32(char *buf, uint32_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000200 StringLE16(buf, uint16_t(Value >> 0));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000201 StringLE16(buf + 2, uint16_t(Value >> 16));
Matt Fleming3565a062010-08-16 18:57:57 +0000202 }
203
204 void StringLE64(char *buf, uint64_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000205 StringLE32(buf, uint32_t(Value >> 0));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000206 StringLE32(buf + 4, uint32_t(Value >> 32));
Matt Fleming3565a062010-08-16 18:57:57 +0000207 }
208
209 void StringBE16(char *buf ,uint16_t Value) {
210 buf[0] = char(Value >> 8);
211 buf[1] = char(Value >> 0);
212 }
213
214 void StringBE32(char *buf, uint32_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000215 StringBE16(buf, uint16_t(Value >> 16));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000216 StringBE16(buf + 2, uint16_t(Value >> 0));
Matt Fleming3565a062010-08-16 18:57:57 +0000217 }
218
219 void StringBE64(char *buf, uint64_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000220 StringBE32(buf, uint32_t(Value >> 32));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000221 StringBE32(buf + 4, uint32_t(Value >> 0));
Matt Fleming3565a062010-08-16 18:57:57 +0000222 }
223
224 void String16(char *buf, uint16_t Value) {
225 if (Writer->isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000226 StringLE16(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000227 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000228 StringBE16(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000229 }
230
231 void String32(char *buf, uint32_t Value) {
232 if (Writer->isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000233 StringLE32(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000234 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000235 StringBE32(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000236 }
237
238 void String64(char *buf, uint64_t Value) {
239 if (Writer->isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000240 StringLE64(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000241 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000242 StringBE64(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000243 }
244
245 void WriteHeader(uint64_t SectionDataSize, unsigned NumberOfSections);
246
247 void WriteSymbolEntry(MCDataFragment *F, uint64_t name, uint8_t info,
248 uint64_t value, uint64_t size,
249 uint8_t other, uint16_t shndx);
250
251 void WriteSymbol(MCDataFragment *F, ELFSymbolData &MSD,
252 const MCAsmLayout &Layout);
253
254 void WriteSymbolTable(MCDataFragment *F, const MCAssembler &Asm,
Rafael Espindola71859c62010-09-16 19:46:31 +0000255 const MCAsmLayout &Layout,
256 unsigned NumRegularSections);
Matt Fleming3565a062010-08-16 18:57:57 +0000257
258 void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
259 const MCFragment *Fragment, const MCFixup &Fixup,
260 MCValue Target, uint64_t &FixedValue);
261
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000262 uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
263 const MCSymbol *S);
Matt Fleming3565a062010-08-16 18:57:57 +0000264
265 /// ComputeSymbolTable - Compute the symbol table data
266 ///
267 /// \param StringTable [out] - The string table data.
268 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
269 /// string table.
270 void ComputeSymbolTable(MCAssembler &Asm);
271
272 void WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
273 const MCSectionData &SD);
274
275 void WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout) {
276 for (MCAssembler::const_iterator it = Asm.begin(),
277 ie = Asm.end(); it != ie; ++it) {
278 WriteRelocation(Asm, Layout, *it);
279 }
280 }
281
282 void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout);
283
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000284 void ExecutePostLayoutBinding(MCAssembler &Asm) {
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000285 }
Matt Fleming3565a062010-08-16 18:57:57 +0000286
287 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
288 uint64_t Address, uint64_t Offset,
289 uint64_t Size, uint32_t Link, uint32_t Info,
290 uint64_t Alignment, uint64_t EntrySize);
291
292 void WriteRelocationsFragment(const MCAssembler &Asm, MCDataFragment *F,
293 const MCSectionData *SD);
294
Rafael Espindola70703872010-09-30 02:22:20 +0000295 bool IsFixupFullyResolved(const MCAssembler &Asm,
296 const MCValue Target,
297 bool IsPCRel,
298 const MCFragment *DF) const;
299
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000300 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000301 };
302
303}
304
305// Emit the ELF header.
306void ELFObjectWriterImpl::WriteHeader(uint64_t SectionDataSize,
307 unsigned NumberOfSections) {
308 // ELF Header
309 // ----------
310 //
311 // Note
312 // ----
313 // emitWord method behaves differently for ELF32 and ELF64, writing
314 // 4 bytes in the former and 8 in the latter.
315
316 Write8(0x7f); // e_ident[EI_MAG0]
317 Write8('E'); // e_ident[EI_MAG1]
318 Write8('L'); // e_ident[EI_MAG2]
319 Write8('F'); // e_ident[EI_MAG3]
320
321 Write8(Is64Bit ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
322
323 // e_ident[EI_DATA]
324 Write8(Writer->isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
325
326 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky5baf79e2010-09-09 17:57:50 +0000327 // e_ident[EI_OSABI]
328 switch (OSType) {
329 case Triple::FreeBSD: Write8(ELF::ELFOSABI_FREEBSD); break;
330 case Triple::Linux: Write8(ELF::ELFOSABI_LINUX); break;
331 default: Write8(ELF::ELFOSABI_NONE); break;
332 }
Matt Fleming3565a062010-08-16 18:57:57 +0000333 Write8(0); // e_ident[EI_ABIVERSION]
334
335 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
336
337 Write16(ELF::ET_REL); // e_type
338
339 // FIXME: Make this configurable
Benjamin Kramereb976772010-08-17 17:02:29 +0000340 Write16(Is64Bit ? ELF::EM_X86_64 : ELF::EM_386); // e_machine = target
Matt Fleming3565a062010-08-16 18:57:57 +0000341
342 Write32(ELF::EV_CURRENT); // e_version
343 WriteWord(0); // e_entry, no entry point in .o file
344 WriteWord(0); // e_phoff, no program header for .o
Benjamin Kramereb976772010-08-17 17:02:29 +0000345 WriteWord(SectionDataSize + (Is64Bit ? sizeof(ELF::Elf64_Ehdr) :
346 sizeof(ELF::Elf32_Ehdr))); // e_shoff = sec hdr table off in bytes
Matt Fleming3565a062010-08-16 18:57:57 +0000347
348 // FIXME: Make this configurable.
349 Write32(0); // e_flags = whatever the target wants
350
351 // e_ehsize = ELF header size
352 Write16(Is64Bit ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
353
354 Write16(0); // e_phentsize = prog header entry size
355 Write16(0); // e_phnum = # prog header entries = 0
356
357 // e_shentsize = Section header entry size
358 Write16(Is64Bit ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
359
360 // e_shnum = # of section header ents
361 Write16(NumberOfSections);
362
363 // e_shstrndx = Section # of '.shstrtab'
364 Write16(ShstrtabIndex);
365}
366
367void ELFObjectWriterImpl::WriteSymbolEntry(MCDataFragment *F, uint64_t name,
368 uint8_t info, uint64_t value,
369 uint64_t size, uint8_t other,
370 uint16_t shndx) {
371 if (Is64Bit) {
372 char buf[8];
373
374 String32(buf, name);
375 F->getContents() += StringRef(buf, 4); // st_name
376
377 String8(buf, info);
378 F->getContents() += StringRef(buf, 1); // st_info
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000379
Matt Fleming3565a062010-08-16 18:57:57 +0000380 String8(buf, other);
381 F->getContents() += StringRef(buf, 1); // st_other
382
383 String16(buf, shndx);
384 F->getContents() += StringRef(buf, 2); // st_shndx
385
386 String64(buf, value);
387 F->getContents() += StringRef(buf, 8); // st_value
388
389 String64(buf, size);
390 F->getContents() += StringRef(buf, 8); // st_size
391 } else {
392 char buf[4];
393
394 String32(buf, name);
395 F->getContents() += StringRef(buf, 4); // st_name
396
397 String32(buf, value);
398 F->getContents() += StringRef(buf, 4); // st_value
399
400 String32(buf, size);
401 F->getContents() += StringRef(buf, 4); // st_size
402
403 String8(buf, info);
404 F->getContents() += StringRef(buf, 1); // st_info
405
406 String8(buf, other);
407 F->getContents() += StringRef(buf, 1); // st_other
408
409 String16(buf, shndx);
410 F->getContents() += StringRef(buf, 2); // st_shndx
411 }
412}
413
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000414static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout) {
415 if (Data.isCommon() && Data.isExternal())
416 return Data.getCommonAlignment();
417
418 const MCSymbol &Symbol = Data.getSymbol();
419 if (!Symbol.isInSection())
420 return 0;
421
422 if (!Data.isCommon() && !(Data.getFlags() & ELF_STB_Weak))
423 if (MCFragment *FF = Data.getFragment())
424 return Layout.getSymbolAddress(&Data) -
425 Layout.getSectionAddress(FF->getParent());
426
427 return 0;
428}
429
Matt Fleming3565a062010-08-16 18:57:57 +0000430void ELFObjectWriterImpl::WriteSymbol(MCDataFragment *F, ELFSymbolData &MSD,
431 const MCAsmLayout &Layout) {
432 MCSymbolData &Data = *MSD.SymbolData;
Matt Fleming3565a062010-08-16 18:57:57 +0000433 uint8_t Info = (Data.getFlags() & 0xff);
434 uint8_t Other = ((Data.getFlags() & 0xf00) >> ELF_STV_Shift);
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000435 uint64_t Value = SymbolValue(Data, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000436 uint64_t Size = 0;
437 const MCExpr *ESize;
438
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000439 assert(!(Data.isCommon() && !Data.isExternal()));
440
Matt Fleming3565a062010-08-16 18:57:57 +0000441 ESize = Data.getSize();
442 if (Data.getSize()) {
443 MCValue Res;
444 if (ESize->getKind() == MCExpr::Binary) {
445 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr *>(ESize);
446
447 if (BE->EvaluateAsRelocatable(Res, &Layout)) {
Rafael Espindola62fed8b2010-10-05 21:02:45 +0000448 uint64_t AddressA = 0;
449 uint64_t AddressB = 0;
450 const MCSymbol &SymA = Res.getSymA()->getSymbol();
451 const MCSymbol &SymB = Res.getSymB()->getSymbol();
Matt Fleming3565a062010-08-16 18:57:57 +0000452
Rafael Espindola62fed8b2010-10-05 21:02:45 +0000453 if (SymA.isDefined()) {
454 MCSymbolData &A = Layout.getAssembler().getSymbolData(SymA);
455 AddressA = Layout.getSymbolAddress(&A);
456 }
457
458 if (SymB.isDefined()) {
459 MCSymbolData &B = Layout.getAssembler().getSymbolData(SymB);
460 AddressB = Layout.getSymbolAddress(&B);
461 }
462
463 Size = AddressA - AddressB;
Matt Fleming3565a062010-08-16 18:57:57 +0000464 }
465 } else if (ESize->getKind() == MCExpr::Constant) {
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000466 Size = static_cast<const MCConstantExpr *>(ESize)->getValue();
Matt Fleming3565a062010-08-16 18:57:57 +0000467 } else {
468 assert(0 && "Unsupported size expression");
469 }
470 }
471
472 // Write out the symbol table entry
473 WriteSymbolEntry(F, MSD.StringIndex, Info, Value,
474 Size, Other, MSD.SectionIndex);
475}
476
477void ELFObjectWriterImpl::WriteSymbolTable(MCDataFragment *F,
478 const MCAssembler &Asm,
Rafael Espindola71859c62010-09-16 19:46:31 +0000479 const MCAsmLayout &Layout,
480 unsigned NumRegularSections) {
Matt Fleming3565a062010-08-16 18:57:57 +0000481 // The string table must be emitted first because we need the index
482 // into the string table for all the symbol names.
483 assert(StringTable.size() && "Missing string table");
484
485 // FIXME: Make sure the start of the symbol table is aligned.
486
487 // The first entry is the undefined symbol entry.
488 unsigned EntrySize = Is64Bit ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000489 F->getContents().append(EntrySize, '\x00');
Matt Fleming3565a062010-08-16 18:57:57 +0000490
491 // Write the symbol table entries.
492 LastLocalSymbolIndex = LocalSymbolData.size() + 1;
493 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
494 ELFSymbolData &MSD = LocalSymbolData[i];
495 WriteSymbol(F, MSD, Layout);
496 }
497
Rafael Espindola71859c62010-09-16 19:46:31 +0000498 // Write out a symbol table entry for each regular section.
Eli Friedmana44fa242010-08-16 21:17:09 +0000499 unsigned Index = 1;
Rafael Espindola71859c62010-09-16 19:46:31 +0000500 for (MCAssembler::const_iterator it = Asm.begin();
501 Index <= NumRegularSections; ++it, ++Index) {
Eli Friedmana44fa242010-08-16 21:17:09 +0000502 const MCSectionELF &Section =
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000503 static_cast<const MCSectionELF&>(it->getSection());
Eli Friedmana44fa242010-08-16 21:17:09 +0000504 // Leave out relocations so we don't have indexes within
505 // the relocations messed up
Benjamin Kramer377a5722010-08-17 17:30:07 +0000506 if (Section.getType() == ELF::SHT_RELA || Section.getType() == ELF::SHT_REL)
Eli Friedmana44fa242010-08-16 21:17:09 +0000507 continue;
Matt Fleming3565a062010-08-16 18:57:57 +0000508 WriteSymbolEntry(F, 0, ELF::STT_SECTION, 0, 0, ELF::STV_DEFAULT, Index);
Eli Friedmana44fa242010-08-16 21:17:09 +0000509 LastLocalSymbolIndex++;
510 }
Matt Fleming3565a062010-08-16 18:57:57 +0000511
512 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
513 ELFSymbolData &MSD = ExternalSymbolData[i];
514 MCSymbolData &Data = *MSD.SymbolData;
515 assert((Data.getFlags() & ELF_STB_Global) &&
516 "External symbol requires STB_GLOBAL flag");
517 WriteSymbol(F, MSD, Layout);
Rafael Espindolae15eb4e2010-09-23 19:55:14 +0000518 if (GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming3565a062010-08-16 18:57:57 +0000519 LastLocalSymbolIndex++;
520 }
521
522 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
523 ELFSymbolData &MSD = UndefinedSymbolData[i];
524 MCSymbolData &Data = *MSD.SymbolData;
Matt Fleming3565a062010-08-16 18:57:57 +0000525 WriteSymbol(F, MSD, Layout);
Rafael Espindolae15eb4e2010-09-23 19:55:14 +0000526 if (GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming3565a062010-08-16 18:57:57 +0000527 LastLocalSymbolIndex++;
528 }
529}
530
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000531static bool ShouldRelocOnSymbol(const MCSymbolData &SD,
Rafael Espindola3729d002010-10-05 23:57:26 +0000532 const MCValue &Target,
533 const MCFragment &F) {
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000534 const MCSymbol &Symbol = SD.getSymbol();
535 if (Symbol.isUndefined())
536 return true;
Rafael Espindola73ffea42010-09-25 05:42:19 +0000537
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000538 const MCSectionELF &Section =
539 static_cast<const MCSectionELF&>(Symbol.getSection());
540
541 if (Section.getFlags() & MCSectionELF::SHF_MERGE)
542 return Target.getConstant() != 0;
543
544 if (SD.isExternal())
545 return true;
546
Rafael Espindola3729d002010-10-05 23:57:26 +0000547 const llvm::MCSymbolRefExpr& Ref = *Target.getSymA();
548 const MCSectionELF &Sec2 =
549 static_cast<const MCSectionELF&>(F.getParent()->getSection());
550
551 if (Ref.getKind() == MCSymbolRefExpr::VK_PLT &&
552 &Sec2 != &Section)
553 return true;
554
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000555 return false;
Rafael Espindola73ffea42010-09-25 05:42:19 +0000556}
557
Benjamin Kramere5b57342010-08-17 18:20:28 +0000558// FIXME: this is currently X86/X86_64 only
Matt Fleming3565a062010-08-16 18:57:57 +0000559void ELFObjectWriterImpl::RecordRelocation(const MCAssembler &Asm,
560 const MCAsmLayout &Layout,
561 const MCFragment *Fragment,
562 const MCFixup &Fixup,
563 MCValue Target,
564 uint64_t &FixedValue) {
Matt Fleming3565a062010-08-16 18:57:57 +0000565 int64_t Addend = 0;
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000566 int Index = 0;
Benjamin Kramer95c602a2010-08-27 10:38:39 +0000567 int64_t Value = Target.getConstant();
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000568 const MCSymbol *Symbol = 0;
Matt Fleming3565a062010-08-16 18:57:57 +0000569
Rafael Espindola00074892010-09-17 22:34:41 +0000570 bool IsPCRel = isFixupKindX86PCRel(Fixup.getKind());
Benjamin Kramer81cfb852010-08-17 19:45:05 +0000571 if (!Target.isAbsolute()) {
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000572 Symbol = &Target.getSymA()->getSymbol();
Matt Fleming3565a062010-08-16 18:57:57 +0000573 MCSymbolData &SD = Asm.getSymbolData(*Symbol);
Benjamin Kramer63d37b92010-08-26 17:23:02 +0000574 MCFragment *F = SD.getFragment();
Matt Fleming3565a062010-08-16 18:57:57 +0000575
Rafael Espindola9d8b7552010-10-03 00:46:57 +0000576 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
577 const MCSymbol &SymbolB = RefB->getSymbol();
578 MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
579 IsPCRel = true;
Rafael Espindola55fb1022010-10-04 15:59:01 +0000580 MCSectionData *Sec = Fragment->getParent();
581
582 // Offset of the symbol in the section
583 int64_t a = Layout.getSymbolAddress(&SDB) - Layout.getSectionAddress(Sec);
584
585 // Ofeset of the relocation in the section
586 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
587 Value += b - a;
Rafael Espindola9d8b7552010-10-03 00:46:57 +0000588 }
589
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000590 // Check that this case has already been fully resolved before we get
591 // here.
Rafael Espindola00074892010-09-17 22:34:41 +0000592 if (Symbol->isDefined() && !SD.isExternal() &&
593 IsPCRel &&
594 &Fragment->getParent()->getSection() == &Symbol->getSection()) {
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000595 llvm_unreachable("We don't need a relocation in this case.");
Rafael Espindola00074892010-09-17 22:34:41 +0000596 return;
597 }
598
Rafael Espindola3729d002010-10-05 23:57:26 +0000599 bool RelocOnSymbol = ShouldRelocOnSymbol(SD, Target, *Fragment);
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000600 if (!RelocOnSymbol) {
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000601 Index = F->getParent()->getOrdinal();
Rafael Espindolaa6489182010-09-24 21:19:03 +0000602
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000603 MCSectionData *FSD = F->getParent();
604 // Offset of the symbol in the section
605 Value += Layout.getSymbolAddress(&SD) - Layout.getSectionAddress(FSD);
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000606 } else {
607 UsedInReloc.insert(Symbol);
608 Index = -1;
609 }
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000610 Addend = Value;
611 // Compensate for the addend on i386.
612 if (Is64Bit)
613 Value = 0;
Matt Fleming3565a062010-08-16 18:57:57 +0000614 }
615
Benjamin Kramer95c602a2010-08-27 10:38:39 +0000616 FixedValue = Value;
617
Matt Fleming3565a062010-08-16 18:57:57 +0000618 // determine the type of the relocation
Rafael Espindola28f9ac82010-10-04 18:44:25 +0000619
620 MCSymbolRefExpr::VariantKind Modifier = Target.getSymA()->getKind();
Benjamin Kramer63d37b92010-08-26 17:23:02 +0000621 unsigned Type;
Benjamin Kramere5b57342010-08-17 18:20:28 +0000622 if (Is64Bit) {
623 if (IsPCRel) {
Rafael Espindola92bf6682010-10-04 19:04:13 +0000624 switch (Modifier) {
625 case MCSymbolRefExpr::VK_None:
626 Type = ELF::R_X86_64_PC32;
627 break;
628 case MCSymbolRefExpr::VK_PLT:
629 Type = ELF::R_X86_64_PLT32;
630 break;
Rafael Espindola607d1f62010-10-04 19:51:39 +0000631 case llvm::MCSymbolRefExpr::VK_GOTPCREL:
632 Type = ELF::R_X86_64_GOTPCREL;
633 break;
Rafael Espindola92bf6682010-10-04 19:04:13 +0000634 default:
635 llvm_unreachable("Unimplemented");
636 }
Benjamin Kramere5b57342010-08-17 18:20:28 +0000637 } else {
638 switch ((unsigned)Fixup.getKind()) {
639 default: llvm_unreachable("invalid fixup kind!");
640 case FK_Data_8: Type = ELF::R_X86_64_64; break;
Rafael Espindolaa8c02c32010-09-30 03:11:42 +0000641 case X86::reloc_signed_4byte:
Benjamin Kramere5b57342010-08-17 18:20:28 +0000642 case X86::reloc_pcrel_4byte:
Rafael Espindolaa8c02c32010-09-30 03:11:42 +0000643 assert(isInt<32>(Target.getConstant()));
Rafael Espindola28f9ac82010-10-04 18:44:25 +0000644 switch (Modifier) {
645 case MCSymbolRefExpr::VK_None:
646 Type = ELF::R_X86_64_32S;
647 break;
648 case MCSymbolRefExpr::VK_GOT:
649 Type = ELF::R_X86_64_GOT32;
650 break;
651 default:
652 llvm_unreachable("Unimplemented");
653 }
Rafael Espindolaa8c02c32010-09-30 03:11:42 +0000654 break;
Benjamin Kramere5b57342010-08-17 18:20:28 +0000655 case FK_Data_4:
Rafael Espindolaa8c02c32010-09-30 03:11:42 +0000656 Type = ELF::R_X86_64_32;
Benjamin Kramere5b57342010-08-17 18:20:28 +0000657 break;
658 case FK_Data_2: Type = ELF::R_X86_64_16; break;
659 case X86::reloc_pcrel_1byte:
660 case FK_Data_1: Type = ELF::R_X86_64_8; break;
661 }
662 }
Matt Fleming3565a062010-08-16 18:57:57 +0000663 } else {
Benjamin Kramere5b57342010-08-17 18:20:28 +0000664 if (IsPCRel) {
665 Type = ELF::R_386_PC32;
666 } else {
667 switch ((unsigned)Fixup.getKind()) {
668 default: llvm_unreachable("invalid fixup kind!");
Rafael Espindolaa8c02c32010-09-30 03:11:42 +0000669
670 // FIXME: Should we avoid selecting reloc_signed_4byte in 32 bit mode
671 // instead?
672 case X86::reloc_signed_4byte:
Benjamin Kramere5b57342010-08-17 18:20:28 +0000673 case X86::reloc_pcrel_4byte:
674 case FK_Data_4: Type = ELF::R_386_32; break;
675 case FK_Data_2: Type = ELF::R_386_16; break;
676 case X86::reloc_pcrel_1byte:
677 case FK_Data_1: Type = ELF::R_386_8; break;
678 }
Matt Fleming3565a062010-08-16 18:57:57 +0000679 }
680 }
681
Rafael Espindola5c77c162010-10-05 15:48:37 +0000682 if (RelocNeedsGOT(Type))
683 NeedsGOT = true;
684
Benjamin Kramere5b57342010-08-17 18:20:28 +0000685 ELFRelocationEntry ERE;
686
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000687 ERE.Index = Index;
688 ERE.Type = Type;
689 ERE.Symbol = Symbol;
Matt Fleming3565a062010-08-16 18:57:57 +0000690
Benjamin Kramer63d37b92010-08-26 17:23:02 +0000691 ERE.r_offset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Benjamin Kramere5b57342010-08-17 18:20:28 +0000692
Matt Fleming3565a062010-08-16 18:57:57 +0000693 if (HasRelocationAddend)
694 ERE.r_addend = Addend;
Benjamin Kramer172d7d62010-08-17 00:33:24 +0000695 else
696 ERE.r_addend = 0; // Silence compiler warning.
Matt Fleming3565a062010-08-16 18:57:57 +0000697
698 Relocations[Fragment->getParent()].push_back(ERE);
699}
700
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000701uint64_t
702ELFObjectWriterImpl::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
703 const MCSymbol *S) {
Benjamin Kramer7b83c262010-08-25 20:09:43 +0000704 MCSymbolData &SD = Asm.getSymbolData(*S);
Eli Friedmanf8020a32010-08-16 19:15:06 +0000705
Benjamin Kramer7b83c262010-08-25 20:09:43 +0000706 // Local symbol.
707 if (!SD.isExternal() && !S->isUndefined())
708 return SD.getIndex() + /* empty symbol */ 1;
709
710 // External or undefined symbol.
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000711 return SD.getIndex() + NumRegularSections + /* empty symbol */ 1;
Matt Fleming3565a062010-08-16 18:57:57 +0000712}
713
Rafael Espindola737cd212010-10-05 18:01:23 +0000714static bool isInSymtab(const MCAssembler &Asm, const MCSymbolData &Data,
715 bool Used) {
716 const MCSymbol &Symbol = Data.getSymbol();
717 if (!Asm.isSymbolLinkerVisible(Symbol) && !Symbol.isUndefined())
718 return false;
719
720 if (!Used && Symbol.isTemporary())
721 return false;
722
723 return true;
724}
725
726static bool isLocal(const MCSymbolData &Data) {
727 if (Data.isExternal())
728 return false;
729
730 const MCSymbol &Symbol = Data.getSymbol();
731 if (Symbol.isUndefined() && !Symbol.isVariable())
732 return false;
733
734 return true;
735}
736
Matt Fleming3565a062010-08-16 18:57:57 +0000737void ELFObjectWriterImpl::ComputeSymbolTable(MCAssembler &Asm) {
Rafael Espindola5c77c162010-10-05 15:48:37 +0000738 // FIXME: Is this the correct place to do this?
739 if (NeedsGOT) {
740 llvm::StringRef Name = "_GLOBAL_OFFSET_TABLE_";
741 MCSymbol *Sym = Asm.getContext().GetOrCreateSymbol(Name);
742 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
743 Data.setExternal(true);
744 }
745
Matt Fleming3565a062010-08-16 18:57:57 +0000746 // Build section lookup table.
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000747 NumRegularSections = Asm.size();
Rafael Espindolaf5c347d2010-10-05 21:20:07 +0000748 DenseMap<const MCSection*, uint32_t> SectionIndexMap;
Matt Fleming3565a062010-08-16 18:57:57 +0000749 unsigned Index = 1;
750 for (MCAssembler::iterator it = Asm.begin(),
751 ie = Asm.end(); it != ie; ++it, ++Index)
752 SectionIndexMap[&it->getSection()] = Index;
753
754 // Index 0 is always the empty string.
755 StringMap<uint64_t> StringIndexMap;
756 StringTable += '\x00';
757
758 // Add the data for local symbols.
759 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
760 ie = Asm.symbol_end(); it != ie; ++it) {
761 const MCSymbol &Symbol = it->getSymbol();
762
Rafael Espindola737cd212010-10-05 18:01:23 +0000763 if (!isInSymtab(Asm, *it, UsedInReloc.count(&Symbol)))
Matt Fleming3565a062010-08-16 18:57:57 +0000764 continue;
765
Rafael Espindola737cd212010-10-05 18:01:23 +0000766 if (!isLocal(*it))
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000767 continue;
768
Matt Fleming3565a062010-08-16 18:57:57 +0000769 uint64_t &Entry = StringIndexMap[Symbol.getName()];
770 if (!Entry) {
771 Entry = StringTable.size();
772 StringTable += Symbol.getName();
773 StringTable += '\x00';
774 }
775
776 ELFSymbolData MSD;
777 MSD.SymbolData = it;
778 MSD.StringIndex = Entry;
779
780 if (Symbol.isAbsolute()) {
781 MSD.SectionIndex = ELF::SHN_ABS;
782 LocalSymbolData.push_back(MSD);
783 } else {
Rafael Espindola737cd212010-10-05 18:01:23 +0000784 const MCSymbol *SymbolP = &Symbol;
785 if (Symbol.isVariable()) {
786 const MCExpr *Value = Symbol.getVariableValue();
787 assert (Value->getKind() == MCExpr::SymbolRef && "Unimplemented");
788 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value);
789 SymbolP = &Ref->getSymbol();
790 }
791 MSD.SectionIndex = SectionIndexMap.lookup(&SymbolP->getSection());
Matt Fleming3565a062010-08-16 18:57:57 +0000792 assert(MSD.SectionIndex && "Invalid section index!");
793 LocalSymbolData.push_back(MSD);
794 }
795 }
796
797 // Now add non-local symbols.
798 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
799 ie = Asm.symbol_end(); it != ie; ++it) {
800 const MCSymbol &Symbol = it->getSymbol();
801
Rafael Espindola737cd212010-10-05 18:01:23 +0000802 if (!isInSymtab(Asm, *it, UsedInReloc.count(&Symbol)))
Matt Fleming3565a062010-08-16 18:57:57 +0000803 continue;
804
Rafael Espindola737cd212010-10-05 18:01:23 +0000805 if (isLocal(*it))
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000806 continue;
807
Matt Fleming3565a062010-08-16 18:57:57 +0000808 uint64_t &Entry = StringIndexMap[Symbol.getName()];
809 if (!Entry) {
810 Entry = StringTable.size();
811 StringTable += Symbol.getName();
812 StringTable += '\x00';
813 }
814
815 ELFSymbolData MSD;
816 MSD.SymbolData = it;
817 MSD.StringIndex = Entry;
818
Rafael Espindola01f9ea32010-10-05 22:26:43 +0000819 // FIXME: There is duplicated code with the local case.
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000820 if (it->isCommon()) {
821 MSD.SectionIndex = ELF::SHN_COMMON;
822 ExternalSymbolData.push_back(MSD);
Rafael Espindola01f9ea32010-10-05 22:26:43 +0000823 } else if (Symbol.isVariable()) {
824 const MCExpr *Value = Symbol.getVariableValue();
825 assert (Value->getKind() == MCExpr::SymbolRef && "Unimplemented");
826 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value);
827 const MCSymbol &RefSymbol = Ref->getSymbol();
828 if (RefSymbol.isDefined()) {
829 MSD.SectionIndex = SectionIndexMap.lookup(&RefSymbol.getSection());
830 assert(MSD.SectionIndex && "Invalid section index!");
831 ExternalSymbolData.push_back(MSD);
832 }
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000833 } else if (Symbol.isUndefined()) {
Matt Fleming3565a062010-08-16 18:57:57 +0000834 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindolae15eb4e2010-09-23 19:55:14 +0000835 // FIXME: Undefined symbols are global, but this is the first place we
836 // are able to set it.
837 if (GetBinding(*it) == ELF::STB_LOCAL)
838 SetBinding(*it, ELF::STB_GLOBAL);
Matt Fleming3565a062010-08-16 18:57:57 +0000839 UndefinedSymbolData.push_back(MSD);
840 } else if (Symbol.isAbsolute()) {
841 MSD.SectionIndex = ELF::SHN_ABS;
842 ExternalSymbolData.push_back(MSD);
Matt Fleming3565a062010-08-16 18:57:57 +0000843 } else {
844 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
845 assert(MSD.SectionIndex && "Invalid section index!");
846 ExternalSymbolData.push_back(MSD);
847 }
848 }
849
850 // Symbols are required to be in lexicographic order.
851 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
852 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
853 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
854
855 // Set the symbol indices. Local symbols must come before all other
856 // symbols with non-local bindings.
857 Index = 0;
858 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
859 LocalSymbolData[i].SymbolData->setIndex(Index++);
860 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
861 ExternalSymbolData[i].SymbolData->setIndex(Index++);
862 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
863 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
864}
865
866void ELFObjectWriterImpl::WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
867 const MCSectionData &SD) {
868 if (!Relocations[&SD].empty()) {
869 MCContext &Ctx = Asm.getContext();
870 const MCSection *RelaSection;
871 const MCSectionELF &Section =
872 static_cast<const MCSectionELF&>(SD.getSection());
873
874 const StringRef SectionName = Section.getSectionName();
Benjamin Kramer377a5722010-08-17 17:30:07 +0000875 std::string RelaSectionName = HasRelocationAddend ? ".rela" : ".rel";
Matt Fleming3565a062010-08-16 18:57:57 +0000876 RelaSectionName += SectionName;
Benjamin Kramer299fbe32010-08-17 17:56:13 +0000877
878 unsigned EntrySize;
879 if (HasRelocationAddend)
880 EntrySize = Is64Bit ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
881 else
882 EntrySize = Is64Bit ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming3565a062010-08-16 18:57:57 +0000883
Benjamin Kramer377a5722010-08-17 17:30:07 +0000884 RelaSection = Ctx.getELFSection(RelaSectionName, HasRelocationAddend ?
885 ELF::SHT_RELA : ELF::SHT_REL, 0,
Matt Fleming3565a062010-08-16 18:57:57 +0000886 SectionKind::getReadOnly(),
887 false, EntrySize);
888
889 MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
Benjamin Kramera9eadca2010-09-06 16:11:52 +0000890 RelaSD.setAlignment(Is64Bit ? 8 : 4);
Matt Fleming3565a062010-08-16 18:57:57 +0000891
892 MCDataFragment *F = new MCDataFragment(&RelaSD);
893
894 WriteRelocationsFragment(Asm, F, &SD);
895
Rafael Espindola70703872010-09-30 02:22:20 +0000896 Asm.AddSectionToTheEnd(*Writer, RelaSD, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000897 }
898}
899
900void ELFObjectWriterImpl::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
901 uint64_t Flags, uint64_t Address,
902 uint64_t Offset, uint64_t Size,
903 uint32_t Link, uint32_t Info,
904 uint64_t Alignment,
905 uint64_t EntrySize) {
906 Write32(Name); // sh_name: index into string table
907 Write32(Type); // sh_type
908 WriteWord(Flags); // sh_flags
909 WriteWord(Address); // sh_addr
910 WriteWord(Offset); // sh_offset
911 WriteWord(Size); // sh_size
912 Write32(Link); // sh_link
913 Write32(Info); // sh_info
914 WriteWord(Alignment); // sh_addralign
915 WriteWord(EntrySize); // sh_entsize
916}
917
918void ELFObjectWriterImpl::WriteRelocationsFragment(const MCAssembler &Asm,
919 MCDataFragment *F,
920 const MCSectionData *SD) {
921 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
922 // sort by the r_offset just like gnu as does
923 array_pod_sort(Relocs.begin(), Relocs.end());
924
925 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
926 ELFRelocationEntry entry = Relocs[e - i - 1];
927
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000928 if (entry.Index < 0)
929 entry.Index = getSymbolIndexInSymbolTable(Asm, entry.Symbol);
930 else
931 entry.Index += LocalSymbolData.size() + 1;
Benjamin Kramer5e492e82010-09-09 18:01:29 +0000932 if (Is64Bit) {
933 char buf[8];
Matt Fleming3565a062010-08-16 18:57:57 +0000934
Benjamin Kramer5e492e82010-09-09 18:01:29 +0000935 String64(buf, entry.r_offset);
936 F->getContents() += StringRef(buf, 8);
937
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000938 struct ELF::Elf64_Rela ERE64;
939 ERE64.setSymbolAndType(entry.Index, entry.Type);
940 String64(buf, ERE64.r_info);
Benjamin Kramer5e492e82010-09-09 18:01:29 +0000941 F->getContents() += StringRef(buf, 8);
942
943 if (HasRelocationAddend) {
944 String64(buf, entry.r_addend);
945 F->getContents() += StringRef(buf, 8);
946 }
947 } else {
948 char buf[4];
949
950 String32(buf, entry.r_offset);
951 F->getContents() += StringRef(buf, 4);
952
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000953 struct ELF::Elf32_Rela ERE32;
954 ERE32.setSymbolAndType(entry.Index, entry.Type);
955 String32(buf, ERE32.r_info);
Benjamin Kramer5e492e82010-09-09 18:01:29 +0000956 F->getContents() += StringRef(buf, 4);
957
958 if (HasRelocationAddend) {
959 String32(buf, entry.r_addend);
960 F->getContents() += StringRef(buf, 4);
961 }
962 }
Matt Fleming3565a062010-08-16 18:57:57 +0000963 }
964}
965
966void ELFObjectWriterImpl::CreateMetadataSections(MCAssembler &Asm,
967 MCAsmLayout &Layout) {
968 MCContext &Ctx = Asm.getContext();
969 MCDataFragment *F;
970
Matt Fleming3565a062010-08-16 18:57:57 +0000971 const MCSection *SymtabSection;
972 unsigned EntrySize = Is64Bit ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
973
Rafael Espindola71859c62010-09-16 19:46:31 +0000974 unsigned NumRegularSections = Asm.size();
975
Rafael Espindola38738bf2010-09-22 19:04:41 +0000976 // We construct .shstrtab, .symtab and .strtab in this order to match gnu as.
Rafael Espindola71859c62010-09-16 19:46:31 +0000977 const MCSection *ShstrtabSection;
978 ShstrtabSection = Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
979 SectionKind::getReadOnly(), false);
980 MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
981 ShstrtabSD.setAlignment(1);
982 ShstrtabIndex = Asm.size();
983
Matt Fleming3565a062010-08-16 18:57:57 +0000984 SymtabSection = Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
985 SectionKind::getReadOnly(),
986 false, EntrySize);
Matt Fleming3565a062010-08-16 18:57:57 +0000987 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
Matt Fleming3565a062010-08-16 18:57:57 +0000988 SymtabSD.setAlignment(Is64Bit ? 8 : 4);
989
Matt Fleming3565a062010-08-16 18:57:57 +0000990 const MCSection *StrtabSection;
991 StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
992 SectionKind::getReadOnly(), false);
Matt Fleming3565a062010-08-16 18:57:57 +0000993 MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
994 StrtabSD.setAlignment(1);
Matt Fleming3565a062010-08-16 18:57:57 +0000995 StringTableIndex = Asm.size();
996
Rafael Espindolac3c413f2010-09-27 22:04:54 +0000997 WriteRelocations(Asm, Layout);
Rafael Espindola71859c62010-09-16 19:46:31 +0000998
999 // Symbol table
1000 F = new MCDataFragment(&SymtabSD);
1001 WriteSymbolTable(F, Asm, Layout, NumRegularSections);
Rafael Espindola70703872010-09-30 02:22:20 +00001002 Asm.AddSectionToTheEnd(*Writer, SymtabSD, Layout);
Rafael Espindola71859c62010-09-16 19:46:31 +00001003
Matt Fleming3565a062010-08-16 18:57:57 +00001004 F = new MCDataFragment(&StrtabSD);
1005 F->getContents().append(StringTable.begin(), StringTable.end());
Rafael Espindola70703872010-09-30 02:22:20 +00001006 Asm.AddSectionToTheEnd(*Writer, StrtabSD, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +00001007
Matt Fleming3565a062010-08-16 18:57:57 +00001008 F = new MCDataFragment(&ShstrtabSD);
1009
Matt Fleming3565a062010-08-16 18:57:57 +00001010 // Section header string table.
1011 //
1012 // The first entry of a string table holds a null character so skip
1013 // section 0.
1014 uint64_t Index = 1;
1015 F->getContents() += '\x00';
1016
1017 for (MCAssembler::const_iterator it = Asm.begin(),
1018 ie = Asm.end(); it != ie; ++it) {
Matt Fleming3565a062010-08-16 18:57:57 +00001019 const MCSectionELF &Section =
Benjamin Kramer368ae7e2010-08-17 00:00:46 +00001020 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola51efe7a2010-09-23 14:14:56 +00001021 // FIXME: We could merge suffixes like in .text and .rela.text.
Matt Fleming3565a062010-08-16 18:57:57 +00001022
1023 // Remember the index into the string table so we can write it
1024 // into the sh_name field of the section header table.
1025 SectionStringTableIndex[&it->getSection()] = Index;
1026
1027 Index += Section.getSectionName().size() + 1;
1028 F->getContents() += Section.getSectionName();
1029 F->getContents() += '\x00';
1030 }
1031
Rafael Espindola70703872010-09-30 02:22:20 +00001032 Asm.AddSectionToTheEnd(*Writer, ShstrtabSD, Layout);
1033}
1034
1035bool ELFObjectWriterImpl::IsFixupFullyResolved(const MCAssembler &Asm,
1036 const MCValue Target,
1037 bool IsPCRel,
1038 const MCFragment *DF) const {
1039 // If this is a PCrel relocation, find the section this fixup value is
1040 // relative to.
1041 const MCSection *BaseSection = 0;
1042 if (IsPCRel) {
1043 BaseSection = &DF->getParent()->getSection();
1044 assert(BaseSection);
1045 }
1046
1047 const MCSection *SectionA = 0;
1048 const MCSymbol *SymbolA = 0;
1049 if (const MCSymbolRefExpr *A = Target.getSymA()) {
1050 SymbolA = &A->getSymbol();
1051 SectionA = &SymbolA->getSection();
1052 }
1053
1054 const MCSection *SectionB = 0;
1055 if (const MCSymbolRefExpr *B = Target.getSymB()) {
1056 SectionB = &B->getSymbol().getSection();
1057 }
1058
1059 if (!BaseSection)
1060 return SectionA == SectionB;
1061
1062 const MCSymbolData &DataA = Asm.getSymbolData(*SymbolA);
1063 if (DataA.isExternal())
1064 return false;
1065
1066 return !SectionB && BaseSection == SectionA;
Matt Fleming3565a062010-08-16 18:57:57 +00001067}
1068
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001069void ELFObjectWriterImpl::WriteObject(MCAssembler &Asm,
Matt Fleming3565a062010-08-16 18:57:57 +00001070 const MCAsmLayout &Layout) {
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001071 // Compute symbol table information.
1072 ComputeSymbolTable(Asm);
1073
Matt Fleming3565a062010-08-16 18:57:57 +00001074 CreateMetadataSections(const_cast<MCAssembler&>(Asm),
1075 const_cast<MCAsmLayout&>(Layout));
1076
1077 // Add 1 for the null section.
1078 unsigned NumSections = Asm.size() + 1;
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001079 uint64_t NaturalAlignment = Is64Bit ? 8 : 4;
1080 uint64_t HeaderSize = Is64Bit ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr);
1081 uint64_t FileOff = HeaderSize;
Matt Fleming3565a062010-08-16 18:57:57 +00001082
1083 for (MCAssembler::const_iterator it = Asm.begin(),
1084 ie = Asm.end(); it != ie; ++it) {
1085 const MCSectionData &SD = *it;
Matt Fleming3565a062010-08-16 18:57:57 +00001086
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001087 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1088
Matt Fleming3565a062010-08-16 18:57:57 +00001089 // Get the size of the section in the output file (including padding).
1090 uint64_t Size = Layout.getSectionFileSize(&SD);
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001091
1092 FileOff += Size;
Matt Fleming3565a062010-08-16 18:57:57 +00001093 }
1094
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001095 FileOff = RoundUpToAlignment(FileOff, NaturalAlignment);
1096
Matt Fleming3565a062010-08-16 18:57:57 +00001097 // Write out the ELF header ...
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001098 WriteHeader(FileOff - HeaderSize, NumSections);
1099
1100 FileOff = HeaderSize;
Matt Fleming3565a062010-08-16 18:57:57 +00001101
1102 // ... then all of the sections ...
1103 DenseMap<const MCSection*, uint64_t> SectionOffsetMap;
1104
Benjamin Kramer44cbde82010-08-19 13:44:49 +00001105 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
1106
1107 unsigned Index = 1;
Matt Fleming3565a062010-08-16 18:57:57 +00001108 for (MCAssembler::const_iterator it = Asm.begin(),
1109 ie = Asm.end(); it != ie; ++it) {
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001110 const MCSectionData &SD = *it;
1111
1112 uint64_t Padding = OffsetToAlignment(FileOff, SD.getAlignment());
1113 WriteZeros(Padding);
1114 FileOff += Padding;
1115
Matt Fleming3565a062010-08-16 18:57:57 +00001116 // Remember the offset into the file for this section.
1117 SectionOffsetMap[&it->getSection()] = FileOff;
Benjamin Kramer44cbde82010-08-19 13:44:49 +00001118 SectionIndexMap[&it->getSection()] = Index++;
1119
Matt Fleming3565a062010-08-16 18:57:57 +00001120 FileOff += Layout.getSectionFileSize(&SD);
1121
1122 Asm.WriteSectionData(it, Layout, Writer);
1123 }
1124
Benjamin Kramera9eadca2010-09-06 16:11:52 +00001125 uint64_t Padding = OffsetToAlignment(FileOff, NaturalAlignment);
1126 WriteZeros(Padding);
1127 FileOff += Padding;
1128
Matt Fleming3565a062010-08-16 18:57:57 +00001129 // ... and then the section header table.
1130 // Should we align the section header table?
1131 //
1132 // Null section first.
1133 WriteSecHdrEntry(0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
1134
1135 for (MCAssembler::const_iterator it = Asm.begin(),
1136 ie = Asm.end(); it != ie; ++it) {
1137 const MCSectionData &SD = *it;
1138 const MCSectionELF &Section =
1139 static_cast<const MCSectionELF&>(SD.getSection());
1140
1141 uint64_t sh_link = 0;
1142 uint64_t sh_info = 0;
1143
1144 switch(Section.getType()) {
1145 case ELF::SHT_DYNAMIC:
1146 sh_link = SectionStringTableIndex[&it->getSection()];
1147 sh_info = 0;
1148 break;
1149
1150 case ELF::SHT_REL:
Eli Friedmanf8020a32010-08-16 19:15:06 +00001151 case ELF::SHT_RELA: {
Matt Fleming3565a062010-08-16 18:57:57 +00001152 const MCSection *SymtabSection;
1153 const MCSection *InfoSection;
Matt Fleming3565a062010-08-16 18:57:57 +00001154
1155 SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
1156 SectionKind::getReadOnly(),
Eli Friedmanf8020a32010-08-16 19:15:06 +00001157 false);
Benjamin Kramer44cbde82010-08-19 13:44:49 +00001158 sh_link = SectionIndexMap[SymtabSection];
Matt Fleming3565a062010-08-16 18:57:57 +00001159
Benjamin Kramer377a5722010-08-17 17:30:07 +00001160 // Remove ".rel" and ".rela" prefixes.
1161 unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
1162 StringRef SectionName = Section.getSectionName().substr(SecNameLen);
1163
Eli Friedmanf8020a32010-08-16 19:15:06 +00001164 InfoSection = Asm.getContext().getELFSection(SectionName,
Matt Fleming3565a062010-08-16 18:57:57 +00001165 ELF::SHT_PROGBITS, 0,
Eli Friedmanf8020a32010-08-16 19:15:06 +00001166 SectionKind::getReadOnly(),
1167 false);
Benjamin Kramer44cbde82010-08-19 13:44:49 +00001168 sh_info = SectionIndexMap[InfoSection];
Matt Fleming3565a062010-08-16 18:57:57 +00001169 break;
Eli Friedmanf8020a32010-08-16 19:15:06 +00001170 }
Matt Fleming3565a062010-08-16 18:57:57 +00001171
1172 case ELF::SHT_SYMTAB:
1173 case ELF::SHT_DYNSYM:
1174 sh_link = StringTableIndex;
1175 sh_info = LastLocalSymbolIndex;
1176 break;
1177
1178 case ELF::SHT_PROGBITS:
1179 case ELF::SHT_STRTAB:
1180 case ELF::SHT_NOBITS:
Benjamin Kramer19dc7fa2010-08-31 17:03:33 +00001181 case ELF::SHT_NULL:
Matt Fleming3565a062010-08-16 18:57:57 +00001182 // Nothing to do.
1183 break;
1184
1185 case ELF::SHT_HASH:
1186 case ELF::SHT_GROUP:
1187 case ELF::SHT_SYMTAB_SHNDX:
1188 default:
1189 assert(0 && "FIXME: sh_type value not supported!");
1190 break;
1191 }
1192
1193 WriteSecHdrEntry(SectionStringTableIndex[&it->getSection()],
1194 Section.getType(), Section.getFlags(),
Rafael Espindola71859c62010-09-16 19:46:31 +00001195 0,
Matt Fleming3565a062010-08-16 18:57:57 +00001196 SectionOffsetMap.lookup(&SD.getSection()),
1197 Layout.getSectionSize(&SD), sh_link,
1198 sh_info, SD.getAlignment(),
1199 Section.getEntrySize());
1200 }
1201}
1202
1203ELFObjectWriter::ELFObjectWriter(raw_ostream &OS,
1204 bool Is64Bit,
Roman Divacky5baf79e2010-09-09 17:57:50 +00001205 Triple::OSType OSType,
Matt Fleming3565a062010-08-16 18:57:57 +00001206 bool IsLittleEndian,
1207 bool HasRelocationAddend)
1208 : MCObjectWriter(OS, IsLittleEndian)
1209{
Roman Divacky5baf79e2010-09-09 17:57:50 +00001210 Impl = new ELFObjectWriterImpl(this, Is64Bit, HasRelocationAddend, OSType);
Matt Fleming3565a062010-08-16 18:57:57 +00001211}
1212
1213ELFObjectWriter::~ELFObjectWriter() {
1214 delete (ELFObjectWriterImpl*) Impl;
1215}
1216
1217void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm) {
1218 ((ELFObjectWriterImpl*) Impl)->ExecutePostLayoutBinding(Asm);
1219}
1220
1221void ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
1222 const MCAsmLayout &Layout,
1223 const MCFragment *Fragment,
1224 const MCFixup &Fixup, MCValue Target,
1225 uint64_t &FixedValue) {
1226 ((ELFObjectWriterImpl*) Impl)->RecordRelocation(Asm, Layout, Fragment, Fixup,
1227 Target, FixedValue);
1228}
1229
Rafael Espindola70703872010-09-30 02:22:20 +00001230bool ELFObjectWriter::IsFixupFullyResolved(const MCAssembler &Asm,
1231 const MCValue Target,
1232 bool IsPCRel,
1233 const MCFragment *DF) const {
1234 return ((ELFObjectWriterImpl*) Impl)->IsFixupFullyResolved(Asm, Target,
1235 IsPCRel, DF);
1236}
1237
Rafael Espindola8f413fa2010-10-05 15:11:03 +00001238void ELFObjectWriter::WriteObject(MCAssembler &Asm,
Matt Fleming3565a062010-08-16 18:57:57 +00001239 const MCAsmLayout &Layout) {
1240 ((ELFObjectWriterImpl*) Impl)->WriteObject(Asm, Layout);
1241}