blob: 3b07a53f06fb58065d8a0c10ce1f4381d1ffd100 [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"
15#include "llvm/ADT/STLExtras.h"
16#include "llvm/ADT/StringMap.h"
17#include "llvm/ADT/Twine.h"
18#include "llvm/MC/MCAssembler.h"
19#include "llvm/MC/MCAsmLayout.h"
20#include "llvm/MC/MCContext.h"
21#include "llvm/MC/MCELFSymbolFlags.h"
22#include "llvm/MC/MCExpr.h"
23#include "llvm/MC/MCObjectWriter.h"
24#include "llvm/MC/MCSectionELF.h"
25#include "llvm/MC/MCSymbol.h"
26#include "llvm/MC/MCValue.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/ErrorHandling.h"
29#include "llvm/Support/ELF.h"
30#include "llvm/Target/TargetAsmBackend.h"
31
32#include "../Target/X86/X86FixupKinds.h"
33
34#include <vector>
35using namespace llvm;
36
37namespace {
38
39 class ELFObjectWriterImpl {
40 static bool isFixupKindX86PCRel(unsigned Kind) {
41 switch (Kind) {
42 default:
43 return false;
44 case X86::reloc_pcrel_1byte:
45 case X86::reloc_pcrel_4byte:
46 case X86::reloc_riprel_4byte:
47 case X86::reloc_riprel_4byte_movq_load:
48 return true;
49 }
50 }
51
52 static bool isFixupKindX86RIPRel(unsigned Kind) {
53 return Kind == X86::reloc_riprel_4byte ||
54 Kind == X86::reloc_riprel_4byte_movq_load;
55 }
56
57
58 /// ELFSymbolData - Helper struct for containing some precomputed information
59 /// on symbols.
60 struct ELFSymbolData {
61 MCSymbolData *SymbolData;
62 uint64_t StringIndex;
63 uint32_t SectionIndex;
64
65 // Support lexicographic sorting.
66 bool operator<(const ELFSymbolData &RHS) const {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +000067 return SymbolData->getSymbol().getName() <
68 RHS.SymbolData->getSymbol().getName();
Matt Fleming3565a062010-08-16 18:57:57 +000069 }
70 };
71
72 /// @name Relocation Data
73 /// @{
74
75 struct ELFRelocationEntry {
76 // Make these big enough for both 32-bit and 64-bit
77 uint64_t r_offset;
78 uint64_t r_info;
79 uint64_t r_addend;
80
81 // Support lexicographic sorting.
82 bool operator<(const ELFRelocationEntry &RE) const {
83 return RE.r_offset < r_offset;
84 }
85 };
86
87 llvm::DenseMap<const MCSectionData*,
88 std::vector<ELFRelocationEntry> > Relocations;
89 DenseMap<const MCSection*, uint64_t> SectionStringTableIndex;
90
91 /// @}
92 /// @name Symbol Table Data
93 /// @{
94
95 SmallString<256> StringTable;
96 std::vector<ELFSymbolData> LocalSymbolData;
97 std::vector<ELFSymbolData> ExternalSymbolData;
98 std::vector<ELFSymbolData> UndefinedSymbolData;
99
100 /// @}
101
102 ELFObjectWriter *Writer;
103
104 raw_ostream &OS;
105
106 // This holds the current offset into the object file.
107 size_t FileOff;
108
109 unsigned Is64Bit : 1;
110
111 bool HasRelocationAddend;
112
113 // This holds the symbol table index of the last local symbol.
114 unsigned LastLocalSymbolIndex;
115 // This holds the .strtab section index.
116 unsigned StringTableIndex;
117
118 unsigned ShstrtabIndex;
119
120 public:
121 ELFObjectWriterImpl(ELFObjectWriter *_Writer, bool _Is64Bit,
122 bool _HasRelAddend)
123 : Writer(_Writer), OS(Writer->getStream()), FileOff(0),
124 Is64Bit(_Is64Bit), HasRelocationAddend(_HasRelAddend) {
125 }
126
127 void Write8(uint8_t Value) { Writer->Write8(Value); }
128 void Write16(uint16_t Value) { Writer->Write16(Value); }
129 void Write32(uint32_t Value) { Writer->Write32(Value); }
130 void Write64(uint64_t Value) { Writer->Write64(Value); }
131 void WriteZeros(unsigned N) { Writer->WriteZeros(N); }
132 void WriteBytes(StringRef Str, unsigned ZeroFillSize = 0) {
133 Writer->WriteBytes(Str, ZeroFillSize);
134 }
135
136 void WriteWord(uint64_t W) {
137 if (Is64Bit) {
138 Writer->Write64(W);
139 } else {
140 Writer->Write32(W);
141 }
142 }
143
144 void String8(char *buf, uint8_t Value) {
145 buf[0] = Value;
146 }
147
148 void StringLE16(char *buf, uint16_t Value) {
149 buf[0] = char(Value >> 0);
150 buf[1] = char(Value >> 8);
151 }
152
153 void StringLE32(char *buf, uint32_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000154 StringLE16(buf, uint16_t(Value >> 0));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000155 StringLE16(buf + 2, uint16_t(Value >> 16));
Matt Fleming3565a062010-08-16 18:57:57 +0000156 }
157
158 void StringLE64(char *buf, uint64_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000159 StringLE32(buf, uint32_t(Value >> 0));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000160 StringLE32(buf + 4, uint32_t(Value >> 32));
Matt Fleming3565a062010-08-16 18:57:57 +0000161 }
162
163 void StringBE16(char *buf ,uint16_t Value) {
164 buf[0] = char(Value >> 8);
165 buf[1] = char(Value >> 0);
166 }
167
168 void StringBE32(char *buf, uint32_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000169 StringBE16(buf, uint16_t(Value >> 16));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000170 StringBE16(buf + 2, uint16_t(Value >> 0));
Matt Fleming3565a062010-08-16 18:57:57 +0000171 }
172
173 void StringBE64(char *buf, uint64_t Value) {
Benjamin Kramer36c6dc22010-08-23 21:23:52 +0000174 StringBE32(buf, uint32_t(Value >> 32));
Benjamin Kramerc522f6e2010-08-23 21:32:00 +0000175 StringBE32(buf + 4, uint32_t(Value >> 0));
Matt Fleming3565a062010-08-16 18:57:57 +0000176 }
177
178 void String16(char *buf, uint16_t Value) {
179 if (Writer->isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000180 StringLE16(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000181 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000182 StringBE16(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000183 }
184
185 void String32(char *buf, uint32_t Value) {
186 if (Writer->isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000187 StringLE32(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000188 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000189 StringBE32(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000190 }
191
192 void String64(char *buf, uint64_t Value) {
193 if (Writer->isLittleEndian())
Eli Friedmanf8020a32010-08-16 19:15:06 +0000194 StringLE64(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000195 else
Eli Friedmanf8020a32010-08-16 19:15:06 +0000196 StringBE64(buf, Value);
Matt Fleming3565a062010-08-16 18:57:57 +0000197 }
198
199 void WriteHeader(uint64_t SectionDataSize, unsigned NumberOfSections);
200
201 void WriteSymbolEntry(MCDataFragment *F, uint64_t name, uint8_t info,
202 uint64_t value, uint64_t size,
203 uint8_t other, uint16_t shndx);
204
205 void WriteSymbol(MCDataFragment *F, ELFSymbolData &MSD,
206 const MCAsmLayout &Layout);
207
208 void WriteSymbolTable(MCDataFragment *F, const MCAssembler &Asm,
209 const MCAsmLayout &Layout);
210
211 void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
212 const MCFragment *Fragment, const MCFixup &Fixup,
213 MCValue Target, uint64_t &FixedValue);
214
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000215 uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
216 const MCSymbol *S);
Matt Fleming3565a062010-08-16 18:57:57 +0000217
218 /// ComputeSymbolTable - Compute the symbol table data
219 ///
220 /// \param StringTable [out] - The string table data.
221 /// \param StringIndexMap [out] - Map from symbol names to offsets in the
222 /// string table.
223 void ComputeSymbolTable(MCAssembler &Asm);
224
225 void WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
226 const MCSectionData &SD);
227
228 void WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout) {
229 for (MCAssembler::const_iterator it = Asm.begin(),
230 ie = Asm.end(); it != ie; ++it) {
231 WriteRelocation(Asm, Layout, *it);
232 }
233 }
234
235 void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout);
236
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000237 void ExecutePostLayoutBinding(MCAssembler &Asm) {
238 // Compute symbol table information.
239 ComputeSymbolTable(Asm);
240 }
Matt Fleming3565a062010-08-16 18:57:57 +0000241
242 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
243 uint64_t Address, uint64_t Offset,
244 uint64_t Size, uint32_t Link, uint32_t Info,
245 uint64_t Alignment, uint64_t EntrySize);
246
247 void WriteRelocationsFragment(const MCAssembler &Asm, MCDataFragment *F,
248 const MCSectionData *SD);
249
250 void WriteObject(const MCAssembler &Asm, const MCAsmLayout &Layout);
251 };
252
253}
254
255// Emit the ELF header.
256void ELFObjectWriterImpl::WriteHeader(uint64_t SectionDataSize,
257 unsigned NumberOfSections) {
258 // ELF Header
259 // ----------
260 //
261 // Note
262 // ----
263 // emitWord method behaves differently for ELF32 and ELF64, writing
264 // 4 bytes in the former and 8 in the latter.
265
266 Write8(0x7f); // e_ident[EI_MAG0]
267 Write8('E'); // e_ident[EI_MAG1]
268 Write8('L'); // e_ident[EI_MAG2]
269 Write8('F'); // e_ident[EI_MAG3]
270
271 Write8(Is64Bit ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
272
273 // e_ident[EI_DATA]
274 Write8(Writer->isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
275
276 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
277 Write8(ELF::ELFOSABI_LINUX); // e_ident[EI_OSABI]
278 Write8(0); // e_ident[EI_ABIVERSION]
279
280 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
281
282 Write16(ELF::ET_REL); // e_type
283
284 // FIXME: Make this configurable
Benjamin Kramereb976772010-08-17 17:02:29 +0000285 Write16(Is64Bit ? ELF::EM_X86_64 : ELF::EM_386); // e_machine = target
Matt Fleming3565a062010-08-16 18:57:57 +0000286
287 Write32(ELF::EV_CURRENT); // e_version
288 WriteWord(0); // e_entry, no entry point in .o file
289 WriteWord(0); // e_phoff, no program header for .o
Benjamin Kramereb976772010-08-17 17:02:29 +0000290 WriteWord(SectionDataSize + (Is64Bit ? sizeof(ELF::Elf64_Ehdr) :
291 sizeof(ELF::Elf32_Ehdr))); // e_shoff = sec hdr table off in bytes
Matt Fleming3565a062010-08-16 18:57:57 +0000292
293 // FIXME: Make this configurable.
294 Write32(0); // e_flags = whatever the target wants
295
296 // e_ehsize = ELF header size
297 Write16(Is64Bit ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
298
299 Write16(0); // e_phentsize = prog header entry size
300 Write16(0); // e_phnum = # prog header entries = 0
301
302 // e_shentsize = Section header entry size
303 Write16(Is64Bit ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
304
305 // e_shnum = # of section header ents
306 Write16(NumberOfSections);
307
308 // e_shstrndx = Section # of '.shstrtab'
309 Write16(ShstrtabIndex);
310}
311
312void ELFObjectWriterImpl::WriteSymbolEntry(MCDataFragment *F, uint64_t name,
313 uint8_t info, uint64_t value,
314 uint64_t size, uint8_t other,
315 uint16_t shndx) {
316 if (Is64Bit) {
317 char buf[8];
318
319 String32(buf, name);
320 F->getContents() += StringRef(buf, 4); // st_name
321
322 String8(buf, info);
323 F->getContents() += StringRef(buf, 1); // st_info
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000324
Matt Fleming3565a062010-08-16 18:57:57 +0000325 String8(buf, other);
326 F->getContents() += StringRef(buf, 1); // st_other
327
328 String16(buf, shndx);
329 F->getContents() += StringRef(buf, 2); // st_shndx
330
331 String64(buf, value);
332 F->getContents() += StringRef(buf, 8); // st_value
333
334 String64(buf, size);
335 F->getContents() += StringRef(buf, 8); // st_size
336 } else {
337 char buf[4];
338
339 String32(buf, name);
340 F->getContents() += StringRef(buf, 4); // st_name
341
342 String32(buf, value);
343 F->getContents() += StringRef(buf, 4); // st_value
344
345 String32(buf, size);
346 F->getContents() += StringRef(buf, 4); // st_size
347
348 String8(buf, info);
349 F->getContents() += StringRef(buf, 1); // st_info
350
351 String8(buf, other);
352 F->getContents() += StringRef(buf, 1); // st_other
353
354 String16(buf, shndx);
355 F->getContents() += StringRef(buf, 2); // st_shndx
356 }
357}
358
359void ELFObjectWriterImpl::WriteSymbol(MCDataFragment *F, ELFSymbolData &MSD,
360 const MCAsmLayout &Layout) {
361 MCSymbolData &Data = *MSD.SymbolData;
Matt Fleming3565a062010-08-16 18:57:57 +0000362 uint8_t Info = (Data.getFlags() & 0xff);
363 uint8_t Other = ((Data.getFlags() & 0xf00) >> ELF_STV_Shift);
364 uint64_t Value = 0;
365 uint64_t Size = 0;
366 const MCExpr *ESize;
367
368 if (Data.isCommon() && Data.isExternal())
369 Value = Data.getCommonAlignment();
370
371 ESize = Data.getSize();
372 if (Data.getSize()) {
373 MCValue Res;
374 if (ESize->getKind() == MCExpr::Binary) {
375 const MCBinaryExpr *BE = static_cast<const MCBinaryExpr *>(ESize);
376
377 if (BE->EvaluateAsRelocatable(Res, &Layout)) {
378 MCSymbolData &A =
379 Layout.getAssembler().getSymbolData(Res.getSymA()->getSymbol());
380 MCSymbolData &B =
381 Layout.getAssembler().getSymbolData(Res.getSymB()->getSymbol());
382
383 Size = Layout.getSymbolAddress(&A) - Layout.getSymbolAddress(&B);
384 Value = Layout.getSymbolAddress(&Data);
385 }
386 } else if (ESize->getKind() == MCExpr::Constant) {
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000387 Size = static_cast<const MCConstantExpr *>(ESize)->getValue();
Matt Fleming3565a062010-08-16 18:57:57 +0000388 } else {
389 assert(0 && "Unsupported size expression");
390 }
391 }
392
393 // Write out the symbol table entry
394 WriteSymbolEntry(F, MSD.StringIndex, Info, Value,
395 Size, Other, MSD.SectionIndex);
396}
397
398void ELFObjectWriterImpl::WriteSymbolTable(MCDataFragment *F,
399 const MCAssembler &Asm,
400 const MCAsmLayout &Layout) {
401 // The string table must be emitted first because we need the index
402 // into the string table for all the symbol names.
403 assert(StringTable.size() && "Missing string table");
404
405 // FIXME: Make sure the start of the symbol table is aligned.
406
407 // The first entry is the undefined symbol entry.
408 unsigned EntrySize = Is64Bit ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000409 F->getContents().append(EntrySize, '\x00');
Matt Fleming3565a062010-08-16 18:57:57 +0000410
411 // Write the symbol table entries.
412 LastLocalSymbolIndex = LocalSymbolData.size() + 1;
413 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
414 ELFSymbolData &MSD = LocalSymbolData[i];
415 WriteSymbol(F, MSD, Layout);
416 }
417
418 // Write out a symbol table entry for each section.
Eli Friedmana44fa242010-08-16 21:17:09 +0000419 // leaving out the just added .symtab which is at
420 // the very end
421 unsigned Index = 1;
422 for (MCAssembler::const_iterator it = Asm.begin(),
423 ie = Asm.end(); it != ie; ++it, ++Index) {
Eli Friedmana44fa242010-08-16 21:17:09 +0000424 const MCSectionELF &Section =
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000425 static_cast<const MCSectionELF&>(it->getSection());
Eli Friedmana44fa242010-08-16 21:17:09 +0000426 // Leave out relocations so we don't have indexes within
427 // the relocations messed up
Benjamin Kramer377a5722010-08-17 17:30:07 +0000428 if (Section.getType() == ELF::SHT_RELA || Section.getType() == ELF::SHT_REL)
Eli Friedmana44fa242010-08-16 21:17:09 +0000429 continue;
430 if (Index == Asm.size())
431 continue;
Matt Fleming3565a062010-08-16 18:57:57 +0000432 WriteSymbolEntry(F, 0, ELF::STT_SECTION, 0, 0, ELF::STV_DEFAULT, Index);
Eli Friedmana44fa242010-08-16 21:17:09 +0000433 LastLocalSymbolIndex++;
434 }
Matt Fleming3565a062010-08-16 18:57:57 +0000435
436 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
437 ELFSymbolData &MSD = ExternalSymbolData[i];
438 MCSymbolData &Data = *MSD.SymbolData;
439 assert((Data.getFlags() & ELF_STB_Global) &&
440 "External symbol requires STB_GLOBAL flag");
441 WriteSymbol(F, MSD, Layout);
442 if (Data.getFlags() & ELF_STB_Local)
443 LastLocalSymbolIndex++;
444 }
445
446 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
447 ELFSymbolData &MSD = UndefinedSymbolData[i];
448 MCSymbolData &Data = *MSD.SymbolData;
449 Data.setFlags(Data.getFlags() | ELF_STB_Global);
450 WriteSymbol(F, MSD, Layout);
451 if (Data.getFlags() & ELF_STB_Local)
452 LastLocalSymbolIndex++;
453 }
454}
455
Benjamin Kramere5b57342010-08-17 18:20:28 +0000456// FIXME: this is currently X86/X86_64 only
Matt Fleming3565a062010-08-16 18:57:57 +0000457void ELFObjectWriterImpl::RecordRelocation(const MCAssembler &Asm,
458 const MCAsmLayout &Layout,
459 const MCFragment *Fragment,
460 const MCFixup &Fixup,
461 MCValue Target,
462 uint64_t &FixedValue) {
463 unsigned IsPCRel = isFixupKindX86PCRel(Fixup.getKind());
Matt Fleming3565a062010-08-16 18:57:57 +0000464
465 uint64_t FixupOffset =
466 Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
467 int64_t Value;
468 int64_t Addend = 0;
469 unsigned Index = 0;
470 unsigned Type;
471
472 Value = Target.getConstant();
473
Benjamin Kramer81cfb852010-08-17 19:45:05 +0000474 if (!Target.isAbsolute()) {
Matt Fleming3565a062010-08-16 18:57:57 +0000475 const MCSymbol *Symbol = &Target.getSymA()->getSymbol();
476 MCSymbolData &SD = Asm.getSymbolData(*Symbol);
477 const MCSymbolData *Base = Asm.getAtom(Layout, &SD);
478
479 if (Base) {
Benjamin Kramerbcf2db62010-08-23 19:05:46 +0000480 if (MCFragment *F = SD.getFragment()) {
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000481 Index = F->getParent()->getOrdinal() + LocalSymbolData.size() + 1;
Benjamin Kramerbcf2db62010-08-23 19:05:46 +0000482 Value += Layout.getSymbolAddress(&SD);
483 } else
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000484 Index = getSymbolIndexInSymbolTable(Asm, Symbol);
Matt Fleming3565a062010-08-16 18:57:57 +0000485 if (Base != &SD)
486 Value += Layout.getSymbolAddress(&SD) - Layout.getSymbolAddress(Base);
487 Addend = Value;
488 Value = 0;
489 } else {
490 MCFragment *F = SD.getFragment();
491 if (F) {
492 // Index of the section in .symtab against this symbol
493 // is being relocated + 2 (empty section + abs. symbols).
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000494 Index = F->getParent()->getOrdinal() + LocalSymbolData.size() + 1;
Matt Fleming3565a062010-08-16 18:57:57 +0000495
496 MCSectionData *FSD = F->getParent();
497 // Offset of the symbol in the section
498 Addend = Layout.getSymbolAddress(&SD) - Layout.getSectionAddress(FSD);
499 } else {
500 FixedValue = Value;
501 return;
502 }
503 }
504 }
505
506 // determine the type of the relocation
Benjamin Kramere5b57342010-08-17 18:20:28 +0000507 if (Is64Bit) {
508 if (IsPCRel) {
509 Type = ELF::R_X86_64_PC32;
510 } else {
511 switch ((unsigned)Fixup.getKind()) {
512 default: llvm_unreachable("invalid fixup kind!");
513 case FK_Data_8: Type = ELF::R_X86_64_64; break;
514 case X86::reloc_pcrel_4byte:
515 case FK_Data_4:
516 // check that the offset fits within a signed long
517 if (isInt<32>(Target.getConstant()))
518 Type = ELF::R_X86_64_32S;
519 else
520 Type = ELF::R_X86_64_32;
521 break;
522 case FK_Data_2: Type = ELF::R_X86_64_16; break;
523 case X86::reloc_pcrel_1byte:
524 case FK_Data_1: Type = ELF::R_X86_64_8; break;
525 }
526 }
Matt Fleming3565a062010-08-16 18:57:57 +0000527 } else {
Benjamin Kramere5b57342010-08-17 18:20:28 +0000528 if (IsPCRel) {
529 Type = ELF::R_386_PC32;
530 } else {
531 switch ((unsigned)Fixup.getKind()) {
532 default: llvm_unreachable("invalid fixup kind!");
533 case X86::reloc_pcrel_4byte:
534 case FK_Data_4: Type = ELF::R_386_32; break;
535 case FK_Data_2: Type = ELF::R_386_16; break;
536 case X86::reloc_pcrel_1byte:
537 case FK_Data_1: Type = ELF::R_386_8; break;
538 }
Matt Fleming3565a062010-08-16 18:57:57 +0000539 }
540 }
541
542 FixedValue = Value;
543
Benjamin Kramere5b57342010-08-17 18:20:28 +0000544 ELFRelocationEntry ERE;
545
546 if (Is64Bit) {
547 struct ELF::Elf64_Rela ERE64;
548 ERE64.setSymbolAndType(Index, Type);
549 ERE.r_info = ERE64.r_info;
550 } else {
551 struct ELF::Elf32_Rela ERE32;
552 ERE32.setSymbolAndType(Index, Type);
553 ERE.r_info = ERE32.r_info;
554 }
Matt Fleming3565a062010-08-16 18:57:57 +0000555
556 ERE.r_offset = FixupOffset;
Benjamin Kramere5b57342010-08-17 18:20:28 +0000557
Matt Fleming3565a062010-08-16 18:57:57 +0000558 if (HasRelocationAddend)
559 ERE.r_addend = Addend;
Benjamin Kramer172d7d62010-08-17 00:33:24 +0000560 else
561 ERE.r_addend = 0; // Silence compiler warning.
Matt Fleming3565a062010-08-16 18:57:57 +0000562
563 Relocations[Fragment->getParent()].push_back(ERE);
564}
565
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000566uint64_t
567ELFObjectWriterImpl::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
568 const MCSymbol *S) {
569 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
570 if (&LocalSymbolData[i].SymbolData->getSymbol() == S)
Matt Fleming3565a062010-08-16 18:57:57 +0000571 return i + /* empty symbol */ 1;
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000572 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
573 if (&ExternalSymbolData[i].SymbolData->getSymbol() == S)
574 return i + LocalSymbolData.size() + Asm.size() + /* empty symbol */ 1;
575 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
576 if (&UndefinedSymbolData[i].SymbolData->getSymbol() == S)
577 return i + LocalSymbolData.size() + ExternalSymbolData.size() +
578 Asm.size() + /* empty symbol */ 1;
Eli Friedmanf8020a32010-08-16 19:15:06 +0000579
580 llvm_unreachable("Cannot find symbol which should exist!");
Matt Fleming3565a062010-08-16 18:57:57 +0000581}
582
583void ELFObjectWriterImpl::ComputeSymbolTable(MCAssembler &Asm) {
584 // Build section lookup table.
585 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
586 unsigned Index = 1;
587 for (MCAssembler::iterator it = Asm.begin(),
588 ie = Asm.end(); it != ie; ++it, ++Index)
589 SectionIndexMap[&it->getSection()] = Index;
590
591 // Index 0 is always the empty string.
592 StringMap<uint64_t> StringIndexMap;
593 StringTable += '\x00';
594
595 // Add the data for local symbols.
596 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
597 ie = Asm.symbol_end(); it != ie; ++it) {
598 const MCSymbol &Symbol = it->getSymbol();
599
600 // Ignore non-linker visible symbols.
601 if (!Asm.isSymbolLinkerVisible(Symbol))
602 continue;
603
604 if (it->isExternal() || Symbol.isUndefined())
605 continue;
606
607 uint64_t &Entry = StringIndexMap[Symbol.getName()];
608 if (!Entry) {
609 Entry = StringTable.size();
610 StringTable += Symbol.getName();
611 StringTable += '\x00';
612 }
613
614 ELFSymbolData MSD;
615 MSD.SymbolData = it;
616 MSD.StringIndex = Entry;
617
618 if (Symbol.isAbsolute()) {
619 MSD.SectionIndex = ELF::SHN_ABS;
620 LocalSymbolData.push_back(MSD);
621 } else {
622 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
623 assert(MSD.SectionIndex && "Invalid section index!");
624 LocalSymbolData.push_back(MSD);
625 }
626 }
627
628 // Now add non-local symbols.
629 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
630 ie = Asm.symbol_end(); it != ie; ++it) {
631 const MCSymbol &Symbol = it->getSymbol();
632
633 // Ignore non-linker visible symbols.
634 if (!Asm.isSymbolLinkerVisible(Symbol))
635 continue;
636
637 if (!it->isExternal() && !Symbol.isUndefined())
638 continue;
639
640 uint64_t &Entry = StringIndexMap[Symbol.getName()];
641 if (!Entry) {
642 Entry = StringTable.size();
643 StringTable += Symbol.getName();
644 StringTable += '\x00';
645 }
646
647 ELFSymbolData MSD;
648 MSD.SymbolData = it;
649 MSD.StringIndex = Entry;
650
651 if (Symbol.isUndefined()) {
652 MSD.SectionIndex = ELF::SHN_UNDEF;
653 // XXX: for some reason we dont Emit* this
654 it->setFlags(it->getFlags() | ELF_STB_Global);
655 UndefinedSymbolData.push_back(MSD);
656 } else if (Symbol.isAbsolute()) {
657 MSD.SectionIndex = ELF::SHN_ABS;
658 ExternalSymbolData.push_back(MSD);
659 } else if (it->isCommon()) {
660 MSD.SectionIndex = ELF::SHN_COMMON;
661 ExternalSymbolData.push_back(MSD);
662 } else {
663 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
664 assert(MSD.SectionIndex && "Invalid section index!");
665 ExternalSymbolData.push_back(MSD);
666 }
667 }
668
669 // Symbols are required to be in lexicographic order.
670 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
671 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
672 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
673
674 // Set the symbol indices. Local symbols must come before all other
675 // symbols with non-local bindings.
676 Index = 0;
677 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
678 LocalSymbolData[i].SymbolData->setIndex(Index++);
679 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
680 ExternalSymbolData[i].SymbolData->setIndex(Index++);
681 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
682 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
683}
684
685void ELFObjectWriterImpl::WriteRelocation(MCAssembler &Asm, MCAsmLayout &Layout,
686 const MCSectionData &SD) {
687 if (!Relocations[&SD].empty()) {
688 MCContext &Ctx = Asm.getContext();
689 const MCSection *RelaSection;
690 const MCSectionELF &Section =
691 static_cast<const MCSectionELF&>(SD.getSection());
692
693 const StringRef SectionName = Section.getSectionName();
Benjamin Kramer377a5722010-08-17 17:30:07 +0000694 std::string RelaSectionName = HasRelocationAddend ? ".rela" : ".rel";
Matt Fleming3565a062010-08-16 18:57:57 +0000695 RelaSectionName += SectionName;
Benjamin Kramer299fbe32010-08-17 17:56:13 +0000696
697 unsigned EntrySize;
698 if (HasRelocationAddend)
699 EntrySize = Is64Bit ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
700 else
701 EntrySize = Is64Bit ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming3565a062010-08-16 18:57:57 +0000702
Benjamin Kramer377a5722010-08-17 17:30:07 +0000703 RelaSection = Ctx.getELFSection(RelaSectionName, HasRelocationAddend ?
704 ELF::SHT_RELA : ELF::SHT_REL, 0,
Matt Fleming3565a062010-08-16 18:57:57 +0000705 SectionKind::getReadOnly(),
706 false, EntrySize);
707
708 MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
709 RelaSD.setAlignment(1);
710
711 MCDataFragment *F = new MCDataFragment(&RelaSD);
712
713 WriteRelocationsFragment(Asm, F, &SD);
714
715 Asm.AddSectionToTheEnd(RelaSD, Layout);
716 }
717}
718
719void ELFObjectWriterImpl::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
720 uint64_t Flags, uint64_t Address,
721 uint64_t Offset, uint64_t Size,
722 uint32_t Link, uint32_t Info,
723 uint64_t Alignment,
724 uint64_t EntrySize) {
725 Write32(Name); // sh_name: index into string table
726 Write32(Type); // sh_type
727 WriteWord(Flags); // sh_flags
728 WriteWord(Address); // sh_addr
729 WriteWord(Offset); // sh_offset
730 WriteWord(Size); // sh_size
731 Write32(Link); // sh_link
732 Write32(Info); // sh_info
733 WriteWord(Alignment); // sh_addralign
734 WriteWord(EntrySize); // sh_entsize
735}
736
737void ELFObjectWriterImpl::WriteRelocationsFragment(const MCAssembler &Asm,
738 MCDataFragment *F,
739 const MCSectionData *SD) {
740 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
741 // sort by the r_offset just like gnu as does
742 array_pod_sort(Relocs.begin(), Relocs.end());
743
744 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
745 ELFRelocationEntry entry = Relocs[e - i - 1];
746
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000747 unsigned WordSize = Is64Bit ? 8 : 4;
748 F->getContents() += StringRef((const char *)&entry.r_offset, WordSize);
749 F->getContents() += StringRef((const char *)&entry.r_info, WordSize);
Matt Fleming3565a062010-08-16 18:57:57 +0000750
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000751 if (HasRelocationAddend)
752 F->getContents() += StringRef((const char *)&entry.r_addend, WordSize);
Matt Fleming3565a062010-08-16 18:57:57 +0000753 }
754}
755
756void ELFObjectWriterImpl::CreateMetadataSections(MCAssembler &Asm,
757 MCAsmLayout &Layout) {
758 MCContext &Ctx = Asm.getContext();
759 MCDataFragment *F;
760
761 WriteRelocations(Asm, Layout);
762
763 const MCSection *SymtabSection;
764 unsigned EntrySize = Is64Bit ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
765
766 SymtabSection = Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
767 SectionKind::getReadOnly(),
768 false, EntrySize);
769
770 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
771
772 SymtabSD.setAlignment(Is64Bit ? 8 : 4);
773
774 F = new MCDataFragment(&SymtabSD);
775
776 // Symbol table
777 WriteSymbolTable(F, Asm, Layout);
778 Asm.AddSectionToTheEnd(SymtabSD, Layout);
779
780 const MCSection *StrtabSection;
781 StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
782 SectionKind::getReadOnly(), false);
783
784 MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
785 StrtabSD.setAlignment(1);
786
787 // FIXME: This isn't right. If the sections get rearranged this will
788 // be wrong. We need a proper lookup.
789 StringTableIndex = Asm.size();
790
791 F = new MCDataFragment(&StrtabSD);
792 F->getContents().append(StringTable.begin(), StringTable.end());
793 Asm.AddSectionToTheEnd(StrtabSD, Layout);
794
795 const MCSection *ShstrtabSection;
796 ShstrtabSection = Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
797 SectionKind::getReadOnly(), false);
798
799 MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
800 ShstrtabSD.setAlignment(1);
801
802 F = new MCDataFragment(&ShstrtabSD);
803
804 // FIXME: This isn't right. If the sections get rearranged this will
805 // be wrong. We need a proper lookup.
806 ShstrtabIndex = Asm.size();
807
808 // Section header string table.
809 //
810 // The first entry of a string table holds a null character so skip
811 // section 0.
812 uint64_t Index = 1;
813 F->getContents() += '\x00';
814
815 for (MCAssembler::const_iterator it = Asm.begin(),
816 ie = Asm.end(); it != ie; ++it) {
Matt Fleming3565a062010-08-16 18:57:57 +0000817 const MCSectionELF &Section =
Benjamin Kramer368ae7e2010-08-17 00:00:46 +0000818 static_cast<const MCSectionELF&>(it->getSection());
Matt Fleming3565a062010-08-16 18:57:57 +0000819
820 // Remember the index into the string table so we can write it
821 // into the sh_name field of the section header table.
822 SectionStringTableIndex[&it->getSection()] = Index;
823
824 Index += Section.getSectionName().size() + 1;
825 F->getContents() += Section.getSectionName();
826 F->getContents() += '\x00';
827 }
828
829 Asm.AddSectionToTheEnd(ShstrtabSD, Layout);
830}
831
832void ELFObjectWriterImpl::WriteObject(const MCAssembler &Asm,
833 const MCAsmLayout &Layout) {
Matt Fleming3565a062010-08-16 18:57:57 +0000834 CreateMetadataSections(const_cast<MCAssembler&>(Asm),
835 const_cast<MCAsmLayout&>(Layout));
836
837 // Add 1 for the null section.
838 unsigned NumSections = Asm.size() + 1;
839
840 uint64_t SectionDataSize = 0;
841
842 for (MCAssembler::const_iterator it = Asm.begin(),
843 ie = Asm.end(); it != ie; ++it) {
844 const MCSectionData &SD = *it;
Matt Fleming3565a062010-08-16 18:57:57 +0000845
846 // Get the size of the section in the output file (including padding).
847 uint64_t Size = Layout.getSectionFileSize(&SD);
848 SectionDataSize += Size;
849 }
850
851 // Write out the ELF header ...
852 WriteHeader(SectionDataSize, NumSections);
853 FileOff = Is64Bit ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr);
854
855 // ... then all of the sections ...
856 DenseMap<const MCSection*, uint64_t> SectionOffsetMap;
857
Benjamin Kramer44cbde82010-08-19 13:44:49 +0000858 DenseMap<const MCSection*, uint8_t> SectionIndexMap;
859
860 unsigned Index = 1;
Matt Fleming3565a062010-08-16 18:57:57 +0000861 for (MCAssembler::const_iterator it = Asm.begin(),
862 ie = Asm.end(); it != ie; ++it) {
863 // Remember the offset into the file for this section.
864 SectionOffsetMap[&it->getSection()] = FileOff;
865
Benjamin Kramer44cbde82010-08-19 13:44:49 +0000866 SectionIndexMap[&it->getSection()] = Index++;
867
Matt Fleming3565a062010-08-16 18:57:57 +0000868 const MCSectionData &SD = *it;
869 FileOff += Layout.getSectionFileSize(&SD);
870
871 Asm.WriteSectionData(it, Layout, Writer);
872 }
873
874 // ... and then the section header table.
875 // Should we align the section header table?
876 //
877 // Null section first.
878 WriteSecHdrEntry(0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
879
880 for (MCAssembler::const_iterator it = Asm.begin(),
881 ie = Asm.end(); it != ie; ++it) {
882 const MCSectionData &SD = *it;
883 const MCSectionELF &Section =
884 static_cast<const MCSectionELF&>(SD.getSection());
885
886 uint64_t sh_link = 0;
887 uint64_t sh_info = 0;
888
889 switch(Section.getType()) {
890 case ELF::SHT_DYNAMIC:
891 sh_link = SectionStringTableIndex[&it->getSection()];
892 sh_info = 0;
893 break;
894
895 case ELF::SHT_REL:
Eli Friedmanf8020a32010-08-16 19:15:06 +0000896 case ELF::SHT_RELA: {
Matt Fleming3565a062010-08-16 18:57:57 +0000897 const MCSection *SymtabSection;
898 const MCSection *InfoSection;
Matt Fleming3565a062010-08-16 18:57:57 +0000899
900 SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
901 SectionKind::getReadOnly(),
Eli Friedmanf8020a32010-08-16 19:15:06 +0000902 false);
Benjamin Kramer44cbde82010-08-19 13:44:49 +0000903 sh_link = SectionIndexMap[SymtabSection];
Matt Fleming3565a062010-08-16 18:57:57 +0000904
Benjamin Kramer377a5722010-08-17 17:30:07 +0000905 // Remove ".rel" and ".rela" prefixes.
906 unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
907 StringRef SectionName = Section.getSectionName().substr(SecNameLen);
908
Eli Friedmanf8020a32010-08-16 19:15:06 +0000909 InfoSection = Asm.getContext().getELFSection(SectionName,
Matt Fleming3565a062010-08-16 18:57:57 +0000910 ELF::SHT_PROGBITS, 0,
Eli Friedmanf8020a32010-08-16 19:15:06 +0000911 SectionKind::getReadOnly(),
912 false);
Benjamin Kramer44cbde82010-08-19 13:44:49 +0000913 sh_info = SectionIndexMap[InfoSection];
Matt Fleming3565a062010-08-16 18:57:57 +0000914 break;
Eli Friedmanf8020a32010-08-16 19:15:06 +0000915 }
Matt Fleming3565a062010-08-16 18:57:57 +0000916
917 case ELF::SHT_SYMTAB:
918 case ELF::SHT_DYNSYM:
919 sh_link = StringTableIndex;
920 sh_info = LastLocalSymbolIndex;
921 break;
922
923 case ELF::SHT_PROGBITS:
924 case ELF::SHT_STRTAB:
925 case ELF::SHT_NOBITS:
926 // Nothing to do.
927 break;
928
929 case ELF::SHT_HASH:
930 case ELF::SHT_GROUP:
931 case ELF::SHT_SYMTAB_SHNDX:
932 default:
933 assert(0 && "FIXME: sh_type value not supported!");
934 break;
935 }
936
937 WriteSecHdrEntry(SectionStringTableIndex[&it->getSection()],
938 Section.getType(), Section.getFlags(),
939 Layout.getSectionAddress(&SD),
940 SectionOffsetMap.lookup(&SD.getSection()),
941 Layout.getSectionSize(&SD), sh_link,
942 sh_info, SD.getAlignment(),
943 Section.getEntrySize());
944 }
945}
946
947ELFObjectWriter::ELFObjectWriter(raw_ostream &OS,
948 bool Is64Bit,
949 bool IsLittleEndian,
950 bool HasRelocationAddend)
951 : MCObjectWriter(OS, IsLittleEndian)
952{
953 Impl = new ELFObjectWriterImpl(this, Is64Bit, HasRelocationAddend);
954}
955
956ELFObjectWriter::~ELFObjectWriter() {
957 delete (ELFObjectWriterImpl*) Impl;
958}
959
960void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm) {
961 ((ELFObjectWriterImpl*) Impl)->ExecutePostLayoutBinding(Asm);
962}
963
964void ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
965 const MCAsmLayout &Layout,
966 const MCFragment *Fragment,
967 const MCFixup &Fixup, MCValue Target,
968 uint64_t &FixedValue) {
969 ((ELFObjectWriterImpl*) Impl)->RecordRelocation(Asm, Layout, Fragment, Fixup,
970 Target, FixedValue);
971}
972
973void ELFObjectWriter::WriteObject(const MCAssembler &Asm,
974 const MCAsmLayout &Layout) {
975 ((ELFObjectWriterImpl*) Impl)->WriteObject(Asm, Layout);
976}