blob: d8f03fcc58d839e1690a14991a9ad6864fb78710 [file] [log] [blame]
Nick Lewycky4288f9e2013-03-09 09:32:16 +00001//===- lib/MC/ELFObjectWriter.cpp - ELF File Writer -----------------------===//
Matt Fleming6c1ad482010-08-16 18:57:57 +00002//
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
Chandler Carruthed0881b2012-12-03 16:50:05 +000014#include "llvm/MC/MCELFObjectWriter.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/STLExtras.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000016#include "llvm/ADT/SmallPtrSet.h"
17#include "llvm/ADT/SmallString.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000018#include "llvm/ADT/StringMap.h"
Evan Cheng5928e692011-07-25 23:24:55 +000019#include "llvm/MC/MCAsmBackend.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000020#include "llvm/MC/MCAsmLayout.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000021#include "llvm/MC/MCAssembler.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000022#include "llvm/MC/MCContext.h"
Tim Northover5cc3dc82012-12-07 16:50:23 +000023#include "llvm/MC/MCELF.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000024#include "llvm/MC/MCELFSymbolFlags.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000025#include "llvm/MC/MCExpr.h"
Craig Topper6e80c282012-03-26 06:58:25 +000026#include "llvm/MC/MCFixupKindInfo.h"
27#include "llvm/MC/MCObjectWriter.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000028#include "llvm/MC/MCSectionELF.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000029#include "llvm/MC/MCValue.h"
30#include "llvm/Support/Debug.h"
Rafael Espindola0ce09712014-03-25 22:43:53 +000031#include "llvm/Support/Endian.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000032#include "llvm/Support/ELF.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000033#include "llvm/Support/ErrorHandling.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000034#include <vector>
35using namespace llvm;
36
Jason W Kimc09e7262011-05-11 22:53:06 +000037#undef DEBUG_TYPE
38#define DEBUG_TYPE "reloc-info"
39
Rafael Espindola29abd972011-12-22 03:38:00 +000040namespace {
Rafael Espindola0ce09712014-03-25 22:43:53 +000041class FragmentWriter {
42 bool IsLittleEndian;
43
44public:
45 FragmentWriter(bool IsLittleEndian);
46 template <typename T> void write(MCDataFragment &F, T Val);
47};
48
Rafael Espindola10be0832014-03-25 23:44:25 +000049typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy;
50
51class SymbolTableWriter {
52 MCAssembler &Asm;
53 FragmentWriter &FWriter;
54 bool Is64Bit;
55 SectionIndexMapTy &SectionIndexMap;
56
57 // The symbol .symtab fragment we are writting to.
58 MCDataFragment *SymtabF;
59
60 // .symtab_shndx fragment we are writting to.
61 MCDataFragment *ShndxF;
62
63 // The numbel of symbols written so far.
64 unsigned NumWritten;
65
66 void createSymtabShndx();
67
68 template <typename T> void write(MCDataFragment &F, T Value);
69
70public:
71 SymbolTableWriter(MCAssembler &Asm, FragmentWriter &FWriter, bool Is64Bit,
72 SectionIndexMapTy &SectionIndexMap,
73 MCDataFragment *SymtabF);
74
75 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
76 uint8_t other, uint32_t shndx, bool Reserved);
77};
78
Rafael Espindola5904e122014-03-29 06:26:49 +000079struct ELFRelocationEntry {
80 uint64_t Offset; // Where is the relocation.
81 bool UseSymbol; // Relocate with a symbol, not the section.
82 union {
83 const MCSymbol *Symbol; // The symbol to relocate with.
84 const MCSectionData *Section; // The section to relocate with.
85 };
86 unsigned Type; // The type of the relocation.
87 uint64_t Addend; // The addend to use.
88
89 ELFRelocationEntry(uint64_t Offset, const MCSymbol *Symbol, unsigned Type,
90 uint64_t Addend)
91 : Offset(Offset), UseSymbol(true), Symbol(Symbol), Type(Type),
92 Addend(Addend) {}
93
94 ELFRelocationEntry(uint64_t Offset, const MCSectionData *Section,
95 unsigned Type, uint64_t Addend)
96 : Offset(Offset), UseSymbol(false), Section(Section), Type(Type),
97 Addend(Addend) {}
98};
99
Rafael Espindola29abd972011-12-22 03:38:00 +0000100class ELFObjectWriter : public MCObjectWriter {
Rafael Espindola0ce09712014-03-25 22:43:53 +0000101 FragmentWriter FWriter;
102
Rafael Espindola29abd972011-12-22 03:38:00 +0000103 protected:
104
105 static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
106 static bool RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant);
107 static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout);
108 static bool isInSymtab(const MCAssembler &Asm, const MCSymbolData &Data,
109 bool Used, bool Renamed);
110 static bool isLocal(const MCSymbolData &Data, bool isSignature,
111 bool isUsedInReloc);
112 static bool IsELFMetaDataSection(const MCSectionData &SD);
113 static uint64_t DataSectionSize(const MCSectionData &SD);
114 static uint64_t GetSectionFileSize(const MCAsmLayout &Layout,
115 const MCSectionData &SD);
116 static uint64_t GetSectionAddressSize(const MCAsmLayout &Layout,
117 const MCSectionData &SD);
118
119 void WriteDataSectionData(MCAssembler &Asm,
120 const MCAsmLayout &Layout,
121 const MCSectionELF &Section);
122
123 /*static bool isFixupKindX86RIPRel(unsigned Kind) {
124 return Kind == X86::reloc_riprel_4byte ||
125 Kind == X86::reloc_riprel_4byte_movq_load;
126 }*/
127
128 /// ELFSymbolData - Helper struct for containing some precomputed
129 /// information on symbols.
130 struct ELFSymbolData {
131 MCSymbolData *SymbolData;
132 uint64_t StringIndex;
133 uint32_t SectionIndex;
134
135 // Support lexicographic sorting.
136 bool operator<(const ELFSymbolData &RHS) const {
Rafael Espindola29abd972011-12-22 03:38:00 +0000137 return SymbolData->getSymbol().getName() <
138 RHS.SymbolData->getSymbol().getName();
139 }
140 };
141
Rafael Espindola29abd972011-12-22 03:38:00 +0000142 /// The target specific ELF writer instance.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000143 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
Rafael Espindola29abd972011-12-22 03:38:00 +0000144
145 SmallPtrSet<const MCSymbol *, 16> UsedInReloc;
146 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc;
147 DenseMap<const MCSymbol *, const MCSymbol *> Renames;
148
Rafael Espindola5904e122014-03-29 06:26:49 +0000149 llvm::DenseMap<const MCSectionData *, std::vector<ELFRelocationEntry>>
150 Relocations;
Rafael Espindola29abd972011-12-22 03:38:00 +0000151 DenseMap<const MCSection*, uint64_t> SectionStringTableIndex;
152
153 /// @}
154 /// @name Symbol Table Data
155 /// @{
156
157 SmallString<256> StringTable;
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000158 std::vector<uint64_t> FileSymbolData;
Rafael Espindola29abd972011-12-22 03:38:00 +0000159 std::vector<ELFSymbolData> LocalSymbolData;
160 std::vector<ELFSymbolData> ExternalSymbolData;
161 std::vector<ELFSymbolData> UndefinedSymbolData;
162
163 /// @}
164
165 bool NeedsGOT;
166
Rafael Espindola29abd972011-12-22 03:38:00 +0000167 // This holds the symbol table index of the last local symbol.
168 unsigned LastLocalSymbolIndex;
169 // This holds the .strtab section index.
170 unsigned StringTableIndex;
171 // This holds the .symtab section index.
172 unsigned SymbolTableIndex;
173
174 unsigned ShstrtabIndex;
175
176
Rafael Espindola29abd972011-12-22 03:38:00 +0000177 // TargetObjectWriter wrappers.
Rafael Espindola29abd972011-12-22 03:38:00 +0000178 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
179 bool hasRelocationAddend() const {
180 return TargetObjectWriter->hasRelocationAddend();
181 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000182 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000183 bool IsPCRel) const {
184 return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindola29abd972011-12-22 03:38:00 +0000185 }
186
Rafael Espindola29abd972011-12-22 03:38:00 +0000187 public:
Rafael Espindola0ce09712014-03-25 22:43:53 +0000188 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_ostream &_OS,
189 bool IsLittleEndian)
190 : MCObjectWriter(_OS, IsLittleEndian), FWriter(IsLittleEndian),
Rafael Espindola10be0832014-03-25 23:44:25 +0000191 TargetObjectWriter(MOTW), NeedsGOT(false) {}
Rafael Espindola29abd972011-12-22 03:38:00 +0000192
193 virtual ~ELFObjectWriter();
194
195 void WriteWord(uint64_t W) {
196 if (is64Bit())
197 Write64(W);
198 else
199 Write32(W);
200 }
201
Rafael Espindola0ce09712014-03-25 22:43:53 +0000202 template <typename T> void write(MCDataFragment &F, T Value) {
203 FWriter.write(F, Value);
Rafael Espindola29abd972011-12-22 03:38:00 +0000204 }
205
Jack Carter1bd90ff2013-01-30 02:09:52 +0000206 void WriteHeader(const MCAssembler &Asm,
207 uint64_t SectionDataSize,
Rafael Espindola29abd972011-12-22 03:38:00 +0000208 unsigned NumberOfSections);
209
Rafael Espindola10be0832014-03-25 23:44:25 +0000210 void WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Rafael Espindola29abd972011-12-22 03:38:00 +0000211 const MCAsmLayout &Layout);
212
Rafael Espindola10be0832014-03-25 23:44:25 +0000213 void WriteSymbolTable(MCDataFragment *SymtabF, MCAssembler &Asm,
Rafael Espindola29abd972011-12-22 03:38:00 +0000214 const MCAsmLayout &Layout,
Rafael Espindola10be0832014-03-25 23:44:25 +0000215 SectionIndexMapTy &SectionIndexMap);
Rafael Espindola29abd972011-12-22 03:38:00 +0000216
Rafael Espindola5904e122014-03-29 06:26:49 +0000217 bool shouldRelocateWithSymbol(const MCSymbolRefExpr *RefA,
218 const MCSymbolData *SD, uint64_t C,
219 unsigned Type) const;
220
Craig Topper34a61bc2014-03-08 07:02:02 +0000221 void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
222 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000223 MCValue Target, bool &IsPCRel,
224 uint64_t &FixedValue) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000225
226 uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
227 const MCSymbol *S);
228
229 // Map from a group section to the signature symbol
230 typedef DenseMap<const MCSectionELF*, const MCSymbol*> GroupMapTy;
231 // Map from a signature symbol to the group section
232 typedef DenseMap<const MCSymbol*, const MCSectionELF*> RevGroupMapTy;
233 // Map from a section to the section with the relocations
234 typedef DenseMap<const MCSectionELF*, const MCSectionELF*> RelMapTy;
235 // Map from a section to its offset
236 typedef DenseMap<const MCSectionELF*, uint64_t> SectionOffsetMapTy;
237
Rafael Espindola022bb762014-03-24 03:43:21 +0000238 /// Compute the symbol table data
Rafael Espindola29abd972011-12-22 03:38:00 +0000239 ///
Rafael Espindola073ee7d2012-08-27 16:04:24 +0000240 /// \param Asm - The assembler.
241 /// \param SectionIndexMap - Maps a section to its index.
242 /// \param RevGroupMap - Maps a signature symbol to the group section.
243 /// \param NumRegularSections - Number of non-relocation sections.
Rafael Espindola022bb762014-03-24 03:43:21 +0000244 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000245 const SectionIndexMapTy &SectionIndexMap,
246 RevGroupMapTy RevGroupMap,
247 unsigned NumRegularSections);
248
249 void ComputeIndexMap(MCAssembler &Asm,
250 SectionIndexMapTy &SectionIndexMap,
251 const RelMapTy &RelMap);
252
253 void CreateRelocationSections(MCAssembler &Asm, MCAsmLayout &Layout,
254 RelMapTy &RelMap);
255
256 void WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout,
257 const RelMapTy &RelMap);
258
259 void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout,
260 SectionIndexMapTy &SectionIndexMap,
261 const RelMapTy &RelMap);
262
263 // Create the sections that show up in the symbol table. Currently
264 // those are the .note.GNU-stack section and the group sections.
265 void CreateIndexedSections(MCAssembler &Asm, MCAsmLayout &Layout,
266 GroupMapTy &GroupMap,
267 RevGroupMapTy &RevGroupMap,
268 SectionIndexMapTy &SectionIndexMap,
269 const RelMapTy &RelMap);
270
Craig Topper34a61bc2014-03-08 07:02:02 +0000271 void ExecutePostLayoutBinding(MCAssembler &Asm,
272 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000273
274 void WriteSectionHeader(MCAssembler &Asm, const GroupMapTy &GroupMap,
275 const MCAsmLayout &Layout,
276 const SectionIndexMapTy &SectionIndexMap,
277 const SectionOffsetMapTy &SectionOffsetMap);
278
279 void ComputeSectionOrder(MCAssembler &Asm,
280 std::vector<const MCSectionELF*> &Sections);
281
282 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
283 uint64_t Address, uint64_t Offset,
284 uint64_t Size, uint32_t Link, uint32_t Info,
285 uint64_t Alignment, uint64_t EntrySize);
286
287 void WriteRelocationsFragment(const MCAssembler &Asm,
288 MCDataFragment *F,
289 const MCSectionData *SD);
290
Craig Topper34a61bc2014-03-08 07:02:02 +0000291 bool
Rafael Espindola29abd972011-12-22 03:38:00 +0000292 IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
293 const MCSymbolData &DataA,
294 const MCFragment &FB,
295 bool InSet,
Craig Topper34a61bc2014-03-08 07:02:02 +0000296 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000297
Craig Topper34a61bc2014-03-08 07:02:02 +0000298 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000299 void WriteSection(MCAssembler &Asm,
300 const SectionIndexMapTy &SectionIndexMap,
301 uint32_t GroupSymbolIndex,
302 uint64_t Offset, uint64_t Size, uint64_t Alignment,
303 const MCSectionELF &Section);
304 };
305}
306
Rafael Espindola0ce09712014-03-25 22:43:53 +0000307FragmentWriter::FragmentWriter(bool IsLittleEndian)
308 : IsLittleEndian(IsLittleEndian) {}
309
310template <typename T> void FragmentWriter::write(MCDataFragment &F, T Val) {
311 if (IsLittleEndian)
312 Val = support::endian::byte_swap<T, support::little>(Val);
313 else
314 Val = support::endian::byte_swap<T, support::big>(Val);
315 const char *Start = (const char *)&Val;
316 F.getContents().append(Start, Start + sizeof(T));
317}
318
Rafael Espindola10be0832014-03-25 23:44:25 +0000319void SymbolTableWriter::createSymtabShndx() {
320 if (ShndxF)
321 return;
322
323 MCContext &Ctx = Asm.getContext();
324 const MCSectionELF *SymtabShndxSection =
325 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0,
326 SectionKind::getReadOnly(), 4, "");
327 MCSectionData *SymtabShndxSD =
328 &Asm.getOrCreateSectionData(*SymtabShndxSection);
329 SymtabShndxSD->setAlignment(4);
330 ShndxF = new MCDataFragment(SymtabShndxSD);
331 unsigned Index = SectionIndexMap.size() + 1;
332 SectionIndexMap[SymtabShndxSection] = Index;
333
334 for (unsigned I = 0; I < NumWritten; ++I)
335 write(*ShndxF, uint32_t(0));
336}
337
338template <typename T>
339void SymbolTableWriter::write(MCDataFragment &F, T Value) {
340 FWriter.write(F, Value);
341}
342
343SymbolTableWriter::SymbolTableWriter(MCAssembler &Asm, FragmentWriter &FWriter,
344 bool Is64Bit,
345 SectionIndexMapTy &SectionIndexMap,
346 MCDataFragment *SymtabF)
347 : Asm(Asm), FWriter(FWriter), Is64Bit(Is64Bit),
348 SectionIndexMap(SectionIndexMap), SymtabF(SymtabF), ShndxF(nullptr),
349 NumWritten(0) {}
350
351void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
352 uint64_t size, uint8_t other,
353 uint32_t shndx, bool Reserved) {
354 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
355
356 if (LargeIndex)
357 createSymtabShndx();
358
359 if (ShndxF) {
360 if (LargeIndex)
361 write(*ShndxF, shndx);
362 else
363 write(*ShndxF, uint32_t(0));
364 }
365
366 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
367
368 raw_svector_ostream OS(SymtabF->getContents());
369
370 if (Is64Bit) {
371 write(*SymtabF, name); // st_name
372 write(*SymtabF, info); // st_info
373 write(*SymtabF, other); // st_other
374 write(*SymtabF, Index); // st_shndx
375 write(*SymtabF, value); // st_value
376 write(*SymtabF, size); // st_size
377 } else {
378 write(*SymtabF, name); // st_name
379 write(*SymtabF, uint32_t(value)); // st_value
380 write(*SymtabF, uint32_t(size)); // st_size
381 write(*SymtabF, info); // st_info
382 write(*SymtabF, other); // st_other
383 write(*SymtabF, Index); // st_shndx
384 }
385
386 ++NumWritten;
387}
388
Jan Sjödin30a52de2011-02-28 21:45:04 +0000389bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
390 const MCFixupKindInfo &FKI =
391 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
392
393 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
394}
395
396bool ELFObjectWriter::RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
397 switch (Variant) {
398 default:
399 return false;
400 case MCSymbolRefExpr::VK_GOT:
401 case MCSymbolRefExpr::VK_PLT:
402 case MCSymbolRefExpr::VK_GOTPCREL:
Rafael Espindola940a0ee2011-06-05 01:20:06 +0000403 case MCSymbolRefExpr::VK_GOTOFF:
Jan Sjödin30a52de2011-02-28 21:45:04 +0000404 case MCSymbolRefExpr::VK_TPOFF:
405 case MCSymbolRefExpr::VK_TLSGD:
406 case MCSymbolRefExpr::VK_GOTTPOFF:
407 case MCSymbolRefExpr::VK_INDNTPOFF:
408 case MCSymbolRefExpr::VK_NTPOFF:
409 case MCSymbolRefExpr::VK_GOTNTPOFF:
410 case MCSymbolRefExpr::VK_TLSLDM:
411 case MCSymbolRefExpr::VK_DTPOFF:
412 case MCSymbolRefExpr::VK_TLSLD:
413 return true;
414 }
415}
416
Jason W Kim96f4c012010-11-15 16:18:39 +0000417ELFObjectWriter::~ELFObjectWriter()
418{}
419
Matt Fleming6c1ad482010-08-16 18:57:57 +0000420// Emit the ELF header.
Jack Carter1bd90ff2013-01-30 02:09:52 +0000421void ELFObjectWriter::WriteHeader(const MCAssembler &Asm,
422 uint64_t SectionDataSize,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000423 unsigned NumberOfSections) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000424 // ELF Header
425 // ----------
426 //
427 // Note
428 // ----
429 // emitWord method behaves differently for ELF32 and ELF64, writing
430 // 4 bytes in the former and 8 in the latter.
431
432 Write8(0x7f); // e_ident[EI_MAG0]
433 Write8('E'); // e_ident[EI_MAG1]
434 Write8('L'); // e_ident[EI_MAG2]
435 Write8('F'); // e_ident[EI_MAG3]
436
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000437 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000438
439 // e_ident[EI_DATA]
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000440 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000441
442 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000443 // e_ident[EI_OSABI]
Rafael Espindola1ad40952011-12-21 17:00:36 +0000444 Write8(TargetObjectWriter->getOSABI());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000445 Write8(0); // e_ident[EI_ABIVERSION]
446
447 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
448
449 Write16(ELF::ET_REL); // e_type
450
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000451 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000452
453 Write32(ELF::EV_CURRENT); // e_version
454 WriteWord(0); // e_entry, no entry point in .o file
455 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000456 WriteWord(SectionDataSize + (is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
Benjamin Kramer896bd7e2010-08-17 17:02:29 +0000457 sizeof(ELF::Elf32_Ehdr))); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000458
Jason W Kim4761fba2011-02-04 21:41:11 +0000459 // e_flags = whatever the target wants
Jack Carter1bd90ff2013-01-30 02:09:52 +0000460 Write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000461
462 // e_ehsize = ELF header size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000463 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000464
465 Write16(0); // e_phentsize = prog header entry size
466 Write16(0); // e_phnum = # prog header entries = 0
467
468 // e_shentsize = Section header entry size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000469 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000470
471 // e_shnum = # of section header ents
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000472 if (NumberOfSections >= ELF::SHN_LORESERVE)
Nick Lewycky4eb11432011-10-07 20:56:23 +0000473 Write16(ELF::SHN_UNDEF);
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000474 else
475 Write16(NumberOfSections);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000476
477 // e_shstrndx = Section # of '.shstrtab'
Nick Lewycky8b02d362011-10-07 20:58:24 +0000478 if (ShstrtabIndex >= ELF::SHN_LORESERVE)
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000479 Write16(ELF::SHN_XINDEX);
480 else
481 Write16(ShstrtabIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000482}
483
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000484uint64_t ELFObjectWriter::SymbolValue(MCSymbolData &OrigData,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000485 const MCAsmLayout &Layout) {
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000486 MCSymbolData *Data = &OrigData;
487 if (Data->isCommon() && Data->isExternal())
488 return Data->getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000489
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000490 const MCSymbol *Symbol = &Data->getSymbol();
491 bool IsThumbFunc = OrigData.getFlags() & ELF_Other_ThumbFunc;
Roman Divacky55184dd2010-12-20 21:14:39 +0000492
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000493 uint64_t Res = 0;
494 if (Symbol->isVariable()) {
495 const MCExpr *Expr = Symbol->getVariableValue();
496 MCValue Value;
497 if (!Expr->EvaluateAsRelocatable(Value, &Layout))
498 llvm_unreachable("Invalid expression");
499
500 assert(!Value.getSymB());
501
502 Res = Value.getConstant();
503
504 if (const MCSymbolRefExpr *A = Value.getSymA()) {
505 Symbol = &A->getSymbol();
506 Data = &Layout.getAssembler().getSymbolData(*Symbol);
507 } else {
508 Symbol = 0;
509 Data = 0;
Rafael Espindola7bbd5c22014-03-19 00:13:43 +0000510 }
Roman Divacky55184dd2010-12-20 21:14:39 +0000511 }
512
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000513 if (IsThumbFunc)
514 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000515
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000516 if (!Symbol || !Symbol->isInSection())
517 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000518
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000519 Res += Layout.getSymbolOffset(Data);
520
521 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000522}
523
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000524void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
525 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000526 // The presence of symbol versions causes undefined symbols and
527 // versions declared with @@@ to be renamed.
528
529 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
530 ie = Asm.symbol_end(); it != ie; ++it) {
531 const MCSymbol &Alias = it->getSymbol();
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000532 const MCSymbol &Symbol = Alias.AliasedSymbol();
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000533 MCSymbolData &SD = Asm.getSymbolData(Symbol);
534
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000535 // Not an alias.
536 if (&Symbol == &Alias)
537 continue;
538
Benjamin Kramer14807272010-10-27 19:53:52 +0000539 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000540 size_t Pos = AliasName.find('@');
541 if (Pos == StringRef::npos)
542 continue;
543
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000544 // Aliases defined with .symvar copy the binding from the symbol they alias.
545 // This is the first place we are able to copy this information.
546 it->setExternal(SD.isExternal());
Jan Sjödin30a52de2011-02-28 21:45:04 +0000547 MCELF::SetBinding(*it, MCELF::GetBinding(SD));
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000548
Benjamin Kramer14807272010-10-27 19:53:52 +0000549 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000550 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
551 continue;
552
Rafael Espindola26496e62010-10-27 17:56:18 +0000553 // FIXME: produce a better error message.
554 if (Symbol.isUndefined() && Rest.startswith("@@") &&
555 !Rest.startswith("@@@"))
556 report_fatal_error("A @@ version cannot be undefined");
557
Benjamin Kramer14807272010-10-27 19:53:52 +0000558 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000559 }
560}
561
Roman Divacky5a1c5492014-01-07 20:17:03 +0000562static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
563 uint8_t Type = newType;
564
565 // Propagation rules:
566 // IFUNC > FUNC > OBJECT > NOTYPE
567 // TLS_OBJECT > OBJECT > NOTYPE
568 //
569 // dont let the new type degrade the old type
570 switch (origType) {
571 default:
572 break;
573 case ELF::STT_GNU_IFUNC:
574 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
575 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
576 Type = ELF::STT_GNU_IFUNC;
577 break;
578 case ELF::STT_FUNC:
579 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
580 Type == ELF::STT_TLS)
581 Type = ELF::STT_FUNC;
582 break;
583 case ELF::STT_OBJECT:
584 if (Type == ELF::STT_NOTYPE)
585 Type = ELF::STT_OBJECT;
586 break;
587 case ELF::STT_TLS:
588 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
589 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
590 Type = ELF::STT_TLS;
591 break;
592 }
593
594 return Type;
595}
596
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000597static const MCSymbol *getBaseSymbol(const MCAsmLayout &Layout,
598 const MCSymbol &Symbol) {
599 if (!Symbol.isVariable())
600 return &Symbol;
601
602 const MCExpr *Expr = Symbol.getVariableValue();
603 MCValue Value;
604 if (!Expr->EvaluateAsRelocatable(Value, &Layout))
605 llvm_unreachable("Invalid Expression");
606 assert(!Value.getSymB());
607 const MCSymbolRefExpr *A = Value.getSymA();
608 if (!A)
609 return nullptr;
610 return getBaseSymbol(Layout, A->getSymbol());
611}
612
Rafael Espindola10be0832014-03-25 23:44:25 +0000613void ELFObjectWriter::WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000614 const MCAsmLayout &Layout) {
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000615 MCSymbolData &OrigData = *MSD.SymbolData;
Rafael Espindola85a84912014-03-26 00:16:43 +0000616 const MCSymbol *Base = getBaseSymbol(Layout, OrigData.getSymbol());
617
618 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
619 // SHN_COMMON.
620 bool IsReserved = !Base || OrigData.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000621
Jack Carter2f8d9d92013-02-19 21:57:35 +0000622 // Binding and Type share the same byte as upper and lower nibbles
Jan Sjödin30a52de2011-02-28 21:45:04 +0000623 uint8_t Binding = MCELF::GetBinding(OrigData);
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000624 uint8_t Type = MCELF::GetType(OrigData);
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000625 MCSymbolData *BaseSD = nullptr;
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000626 if (Base) {
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000627 BaseSD = &Layout.getAssembler().getSymbolData(*Base);
628 Type = mergeTypeForSet(Type, MCELF::GetType(*BaseSD));
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000629 }
Saleem Abdulrasool39f773f2014-03-20 06:05:33 +0000630 if (OrigData.getFlags() & ELF_Other_ThumbFunc)
631 Type = ELF::STT_FUNC;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000632 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000633
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000634 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000635 // 2 bits
636 uint8_t Visibility = MCELF::GetVisibility(OrigData);
Logan Chienee365952013-12-05 00:34:11 +0000637 uint8_t Other = MCELF::getOther(OrigData) << (ELF_STO_Shift - ELF_STV_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000638 Other |= Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000639
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000640 uint64_t Value = SymbolValue(OrigData, Layout);
Saleem Abdulrasool39f773f2014-03-20 06:05:33 +0000641 if (OrigData.getFlags() & ELF_Other_ThumbFunc)
642 Value |= 1;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000643 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000644
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000645 const MCExpr *ESize = OrigData.getSize();
646 if (!ESize && Base)
647 ESize = BaseSD->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000648
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000649 if (ESize) {
650 int64_t Res;
651 if (!ESize->EvaluateAsAbsolute(Res, Layout))
652 report_fatal_error("Size expression must be absolute.");
653 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000654 }
655
656 // Write out the symbol table entry
Rafael Espindola10be0832014-03-25 23:44:25 +0000657 Writer.writeSymbol(MSD.StringIndex, Info, Value, Size, Other,
658 MSD.SectionIndex, IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000659}
660
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000661void ELFObjectWriter::WriteSymbolTable(MCDataFragment *SymtabF,
Rafael Espindola10be0832014-03-25 23:44:25 +0000662 MCAssembler &Asm,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000663 const MCAsmLayout &Layout,
Rafael Espindola10be0832014-03-25 23:44:25 +0000664 SectionIndexMapTy &SectionIndexMap) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000665 // The string table must be emitted first because we need the index
666 // into the string table for all the symbol names.
667 assert(StringTable.size() && "Missing string table");
668
669 // FIXME: Make sure the start of the symbol table is aligned.
670
Rafael Espindola10be0832014-03-25 23:44:25 +0000671 SymbolTableWriter Writer(Asm, FWriter, is64Bit(), SectionIndexMap, SymtabF);
672
Matt Fleming6c1ad482010-08-16 18:57:57 +0000673 // The first entry is the undefined symbol entry.
Rafael Espindola10be0832014-03-25 23:44:25 +0000674 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000675
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000676 for (unsigned i = 0, e = FileSymbolData.size(); i != e; ++i) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000677 Writer.writeSymbol(FileSymbolData[i], ELF::STT_FILE | ELF::STB_LOCAL, 0, 0,
678 ELF::STV_DEFAULT, ELF::SHN_ABS, true);
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000679 }
680
Matt Fleming6c1ad482010-08-16 18:57:57 +0000681 // Write the symbol table entries.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000682 LastLocalSymbolIndex = FileSymbolData.size() + LocalSymbolData.size() + 1;
683
Matt Fleming6c1ad482010-08-16 18:57:57 +0000684 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
685 ELFSymbolData &MSD = LocalSymbolData[i];
Rafael Espindola10be0832014-03-25 23:44:25 +0000686 WriteSymbol(Writer, MSD, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000687 }
688
Rafael Espindola44bf2662010-09-16 19:46:31 +0000689 // Write out a symbol table entry for each regular section.
Rafael Espindola18014102010-11-10 22:16:43 +0000690 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e;
691 ++i) {
Eli Friedman1fe0d532010-08-16 21:17:09 +0000692 const MCSectionELF &Section =
Rafael Espindola18014102010-11-10 22:16:43 +0000693 static_cast<const MCSectionELF&>(i->getSection());
694 if (Section.getType() == ELF::SHT_RELA ||
695 Section.getType() == ELF::SHT_REL ||
696 Section.getType() == ELF::SHT_STRTAB ||
Nick Lewycky133a1682011-10-07 23:29:53 +0000697 Section.getType() == ELF::SHT_SYMTAB ||
698 Section.getType() == ELF::SHT_SYMTAB_SHNDX)
Eli Friedman1fe0d532010-08-16 21:17:09 +0000699 continue;
Rafael Espindola10be0832014-03-25 23:44:25 +0000700 Writer.writeSymbol(0, ELF::STT_SECTION, 0, 0, ELF::STV_DEFAULT,
701 SectionIndexMap.lookup(&Section), false);
Eli Friedman1fe0d532010-08-16 21:17:09 +0000702 LastLocalSymbolIndex++;
703 }
Matt Fleming6c1ad482010-08-16 18:57:57 +0000704
705 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
706 ELFSymbolData &MSD = ExternalSymbolData[i];
707 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola83b2a332010-10-06 16:47:31 +0000708 assert(((Data.getFlags() & ELF_STB_Global) ||
709 (Data.getFlags() & ELF_STB_Weak)) &&
710 "External symbol requires STB_GLOBAL or STB_WEAK flag");
Rafael Espindola10be0832014-03-25 23:44:25 +0000711 WriteSymbol(Writer, MSD, Layout);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000712 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming6c1ad482010-08-16 18:57:57 +0000713 LastLocalSymbolIndex++;
714 }
715
716 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
717 ELFSymbolData &MSD = UndefinedSymbolData[i];
718 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola10be0832014-03-25 23:44:25 +0000719 WriteSymbol(Writer, MSD, Layout);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000720 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming6c1ad482010-08-16 18:57:57 +0000721 LastLocalSymbolIndex++;
722 }
723}
724
Rafael Espindola5904e122014-03-29 06:26:49 +0000725// It is always valid to create a relocation with a symbol. It is preferable
726// to use a relocation with a section if that is possible. Using the section
727// allows us to omit some local symbols from the symbol table.
728bool ELFObjectWriter::shouldRelocateWithSymbol(const MCSymbolRefExpr *RefA,
729 const MCSymbolData *SD,
730 uint64_t C,
731 unsigned Type) const {
732 // A PCRel relocation to an absolute value has no symbol (or section). We
733 // represent that with a relocation to a null section.
734 if (!RefA)
735 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000736
Rafael Espindola5904e122014-03-29 06:26:49 +0000737 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
738 switch (Kind) {
739 default:
740 break;
741 // The .odp creation emits a relocation against the symbol ".TOC." which
742 // create a R_PPC64_TOC relocation. However the relocation symbol name
743 // in final object creation should be NULL, since the symbol does not
744 // really exist, it is just the reference to TOC base for the current
745 // object file. Since the symbol is undefined, returning false results
746 // in a relocation with a null section which is the desired result.
747 case MCSymbolRefExpr::VK_PPC_TOCBASE:
748 return false;
749
750 // These VariantKind cause the relocation to refer to something other than
751 // the symbol itself, like a linker generated table. Since the address of
752 // symbol is not relevant, we cannot replace the symbol with the
753 // section and patch the difference in the addend.
754 case MCSymbolRefExpr::VK_GOT:
755 case MCSymbolRefExpr::VK_PLT:
756 case MCSymbolRefExpr::VK_GOTPCREL:
757 case MCSymbolRefExpr::VK_Mips_GOT:
758 case MCSymbolRefExpr::VK_PPC_GOT_LO:
759 case MCSymbolRefExpr::VK_PPC_GOT_HI:
760 case MCSymbolRefExpr::VK_PPC_GOT_HA:
761 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000762 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000763
Rafael Espindola5904e122014-03-29 06:26:49 +0000764 // An undefined symbol is not in any section, so the relocation has to point
765 // to the symbol itself.
766 const MCSymbol &Sym = SD->getSymbol();
767 if (Sym.isUndefined())
768 return true;
769
770 unsigned Binding = MCELF::GetBinding(*SD);
771 switch(Binding) {
772 default:
773 llvm_unreachable("Invalid Binding");
774 case ELF::STB_LOCAL:
775 break;
776 case ELF::STB_WEAK:
777 // If the symbol is weak, it might be overridden by a symbol in another
778 // file. The relocation has to point to the symbol so that the linker
779 // can update it.
780 return true;
781 case ELF::STB_GLOBAL:
782 // Global ELF symbols can be preempted by the dynamic linker. The relocation
783 // has to point to the symbol for a reason analogous to the STB_WEAK case.
784 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000785 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000786
Rafael Espindola5904e122014-03-29 06:26:49 +0000787 // If a relocation points to a mergeable section, we have to be careful.
788 // If the offset is zero, a relocation with the section will encode the
789 // same information. With a non-zero offset, the situation is different.
790 // For example, a relocation can point 42 bytes past the end of a string.
791 // If we change such a relocation to use the section, the linker would think
792 // that it pointed to another string and subtracting 42 at runtime will
793 // produce the wrong value.
794 auto &Sec = cast<MCSectionELF>(Sym.getSection());
795 unsigned Flags = Sec.getFlags();
796 if (Flags & ELF::SHF_MERGE) {
797 if (C != 0)
798 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000799 }
800
Rafael Espindola5904e122014-03-29 06:26:49 +0000801 // Most TLS relocations use a got, so they need the symbol. Even those that
802 // are just an offset (@tpoff), require a symbol in some linkers (gold,
803 // but not bfd ld).
804 if (Flags & ELF::SHF_TLS)
805 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000806
Rafael Espindola5904e122014-03-29 06:26:49 +0000807 if (TargetObjectWriter->needsRelocateWithSymbol(Type))
808 return true;
809 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000810}
811
Jason W Kim495c2bb2010-12-06 21:57:34 +0000812void ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
813 const MCAsmLayout &Layout,
814 const MCFragment *Fragment,
815 const MCFixup &Fixup,
816 MCValue Target,
Rafael Espindola5904e122014-03-29 06:26:49 +0000817 bool &IsPCRel,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000818 uint64_t &FixedValue) {
Rafael Espindola5904e122014-03-29 06:26:49 +0000819 const MCSectionData *FixupSection = Fragment->getParent();
820 uint64_t C = Target.getConstant();
821 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000822
Rafael Espindola5904e122014-03-29 06:26:49 +0000823 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
824 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
825 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000826
Rafael Espindola5904e122014-03-29 06:26:49 +0000827 // Let A, B and C being the components of Target and R be the location of
828 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
829 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000830
Rafael Espindola5904e122014-03-29 06:26:49 +0000831 // In general, ELF has no relocations for -B. It can only represent (A + C)
832 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
833 // replace B to implement it: (A - R - K + C)
834 if (IsPCRel)
835 Asm.getContext().FatalError(
836 Fixup.getLoc(),
837 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000838
Rafael Espindola5904e122014-03-29 06:26:49 +0000839 const MCSymbol &SymB = RefB->getSymbol();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000840
Rafael Espindola5904e122014-03-29 06:26:49 +0000841 if (SymB.isUndefined())
842 Asm.getContext().FatalError(
843 Fixup.getLoc(),
844 Twine("symbol '") + SymB.getName() +
845 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000846
Rafael Espindola5904e122014-03-29 06:26:49 +0000847 assert(!SymB.isAbsolute() && "Should have been folded");
848 const MCSection &SecB = SymB.getSection();
849 if (&SecB != &FixupSection->getSection())
850 Asm.getContext().FatalError(
851 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000852
Rafael Espindola5904e122014-03-29 06:26:49 +0000853 const MCSymbolData &SymBD = Asm.getSymbolData(SymB);
854 uint64_t SymBOffset = Layout.getSymbolOffset(&SymBD);
855 uint64_t K = SymBOffset - FixupOffset;
856 IsPCRel = true;
857 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000858 }
859
Rafael Espindola5904e122014-03-29 06:26:49 +0000860 // We either rejected the fixup or folded B into C at this point.
861 const MCSymbolRefExpr *RefA = Target.getSymA();
862 const MCSymbol *SymA = RefA ? &RefA->getSymbol() : nullptr;
863 const MCSymbolData *SymAD = SymA ? &Asm.getSymbolData(*SymA) : nullptr;
864
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000865 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindola5904e122014-03-29 06:26:49 +0000866 bool RelocateWithSymbol = shouldRelocateWithSymbol(RefA, SymAD, C, Type);
867 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
868 C += Layout.getSymbolOffset(SymAD);
869
870 uint64_t Addend = 0;
871 if (hasRelocationAddend()) {
872 Addend = C;
873 C = 0;
874 }
875
876 FixedValue = C;
877
878 // FIXME: What is this!?!?
879 MCSymbolRefExpr::VariantKind Modifier =
880 RefA ? RefA->getKind() : MCSymbolRefExpr::VK_None;
Rafael Espindola9e252bf2011-12-21 14:26:29 +0000881 if (RelocNeedsGOT(Modifier))
882 NeedsGOT = true;
Jan Sjödin30a52de2011-02-28 21:45:04 +0000883
Rafael Espindola5904e122014-03-29 06:26:49 +0000884 if (!RelocateWithSymbol) {
885 const MCSection *SecA =
886 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
887 const MCSectionData *SecAD = SecA ? &Asm.getSectionData(*SecA) : nullptr;
888 ELFRelocationEntry Rec(FixupOffset, SecAD, Type, Addend);
889 Relocations[FixupSection].push_back(Rec);
890 return;
891 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000892
Rafael Espindola5904e122014-03-29 06:26:49 +0000893 if (SymA) {
894 if (const MCSymbol *R = Renames.lookup(SymA))
895 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000896
Rafael Espindola5904e122014-03-29 06:26:49 +0000897 if (RefA->getKind() == MCSymbolRefExpr::VK_WEAKREF)
898 WeakrefUsedInReloc.insert(SymA);
899 else
900 UsedInReloc.insert(SymA);
901 }
902 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
903 Relocations[FixupSection].push_back(Rec);
904 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000905}
906
907
Benjamin Kramer86511dc2010-08-23 21:19:37 +0000908uint64_t
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000909ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
910 const MCSymbol *S) {
Benjamin Kramer37b384c2010-08-25 20:09:43 +0000911 MCSymbolData &SD = Asm.getSymbolData(*S);
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000912 return SD.getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000913}
914
Jan Sjödin30a52de2011-02-28 21:45:04 +0000915bool ELFObjectWriter::isInSymtab(const MCAssembler &Asm,
916 const MCSymbolData &Data,
917 bool Used, bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000918 const MCSymbol &Symbol = Data.getSymbol();
919 if (Symbol.isVariable()) {
920 const MCExpr *Expr = Symbol.getVariableValue();
921 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
922 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
923 return false;
924 }
925 }
Rafael Espindola16145972010-11-01 14:28:48 +0000926
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000927 if (Used)
928 return true;
929
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000930 if (Renamed)
931 return false;
932
Rafael Espindola45834a02010-10-29 23:09:31 +0000933 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
934 return true;
935
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000936 const MCSymbol &A = Symbol.AliasedSymbol();
Rafael Espindola9e18e962011-02-23 20:22:07 +0000937 if (Symbol.isVariable() && !A.isVariable() && A.isUndefined())
938 return false;
939
Jan Sjödin30a52de2011-02-28 21:45:04 +0000940 bool IsGlobal = MCELF::GetBinding(Data) == ELF::STB_GLOBAL;
Rafael Espindola9e18e962011-02-23 20:22:07 +0000941 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000942 return false;
943
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000944 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000945 return false;
946
947 return true;
948}
949
Jan Sjödin30a52de2011-02-28 21:45:04 +0000950bool ELFObjectWriter::isLocal(const MCSymbolData &Data, bool isSignature,
951 bool isUsedInReloc) {
Rafael Espindolab1d07892010-10-05 18:01:23 +0000952 if (Data.isExternal())
953 return false;
954
955 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000956 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000957
958 if (RefSymbol.isUndefined() && !RefSymbol.isVariable()) {
959 if (isSignature && !isUsedInReloc)
960 return true;
961
Rafael Espindolab1d07892010-10-05 18:01:23 +0000962 return false;
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000963 }
Rafael Espindolab1d07892010-10-05 18:01:23 +0000964
965 return true;
966}
967
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000968void ELFObjectWriter::ComputeIndexMap(MCAssembler &Asm,
Rafael Espindola1557fd62011-03-20 18:44:20 +0000969 SectionIndexMapTy &SectionIndexMap,
970 const RelMapTy &RelMap) {
Rafael Espindolad6340032010-11-10 21:51:05 +0000971 unsigned Index = 1;
972 for (MCAssembler::iterator it = Asm.begin(),
973 ie = Asm.end(); it != ie; ++it) {
974 const MCSectionELF &Section =
975 static_cast<const MCSectionELF &>(it->getSection());
Rafael Espindolaa3e9a222010-11-11 18:13:52 +0000976 if (Section.getType() != ELF::SHT_GROUP)
977 continue;
978 SectionIndexMap[&Section] = Index++;
979 }
980
981 for (MCAssembler::iterator it = Asm.begin(),
982 ie = Asm.end(); it != ie; ++it) {
983 const MCSectionELF &Section =
984 static_cast<const MCSectionELF &>(it->getSection());
Rafael Espindola1557fd62011-03-20 18:44:20 +0000985 if (Section.getType() == ELF::SHT_GROUP ||
986 Section.getType() == ELF::SHT_REL ||
987 Section.getType() == ELF::SHT_RELA)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +0000988 continue;
Rafael Espindolad6340032010-11-10 21:51:05 +0000989 SectionIndexMap[&Section] = Index++;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000990 const MCSectionELF *RelSection = RelMap.lookup(&Section);
991 if (RelSection)
992 SectionIndexMap[RelSection] = Index++;
Rafael Espindolad6340032010-11-10 21:51:05 +0000993 }
994}
995
Rafael Espindola022bb762014-03-24 03:43:21 +0000996void
997ELFObjectWriter::computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
998 const SectionIndexMapTy &SectionIndexMap,
999 RevGroupMapTy RevGroupMap,
1000 unsigned NumRegularSections) {
Rafael Espindolad03e81d2010-10-05 15:48:37 +00001001 // FIXME: Is this the correct place to do this?
Rafael Espindola940a0ee2011-06-05 01:20:06 +00001002 // FIXME: Why is an undefined reference to _GLOBAL_OFFSET_TABLE_ needed?
Rafael Espindolad03e81d2010-10-05 15:48:37 +00001003 if (NeedsGOT) {
Dmitri Gribenko226fea52013-01-13 16:01:15 +00001004 StringRef Name = "_GLOBAL_OFFSET_TABLE_";
Rafael Espindolad03e81d2010-10-05 15:48:37 +00001005 MCSymbol *Sym = Asm.getContext().GetOrCreateSymbol(Name);
1006 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
1007 Data.setExternal(true);
Jan Sjödin30a52de2011-02-28 21:45:04 +00001008 MCELF::SetBinding(Data, ELF::STB_GLOBAL);
Rafael Espindolad03e81d2010-10-05 15:48:37 +00001009 }
1010
Matt Fleming6c1ad482010-08-16 18:57:57 +00001011 // Index 0 is always the empty string.
1012 StringMap<uint64_t> StringIndexMap;
1013 StringTable += '\x00';
1014
Rafael Espindolab80875e2011-04-07 23:21:52 +00001015 // FIXME: We could optimize suffixes in strtab in the same way we
1016 // optimize them in shstrtab.
1017
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +00001018 for (MCAssembler::const_file_name_iterator it = Asm.file_names_begin(),
1019 ie = Asm.file_names_end();
1020 it != ie;
1021 ++it) {
1022 StringRef Name = *it;
1023 uint64_t &Entry = StringIndexMap[Name];
1024 if (!Entry) {
1025 Entry = StringTable.size();
1026 StringTable += Name;
1027 StringTable += '\x00';
1028 }
1029 FileSymbolData.push_back(Entry);
1030 }
1031
Rafael Espindolabee6e9f2010-10-14 16:34:44 +00001032 // Add the data for the symbols.
Matt Fleming6c1ad482010-08-16 18:57:57 +00001033 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
1034 ie = Asm.symbol_end(); it != ie; ++it) {
1035 const MCSymbol &Symbol = it->getSymbol();
1036
Rafael Espindola16145972010-11-01 14:28:48 +00001037 bool Used = UsedInReloc.count(&Symbol);
1038 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001039 bool isSignature = RevGroupMap.count(&Symbol);
1040
1041 if (!isInSymtab(Asm, *it,
1042 Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001043 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +00001044 continue;
1045
Matt Fleming6c1ad482010-08-16 18:57:57 +00001046 ELFSymbolData MSD;
1047 MSD.SymbolData = it;
Rafael Espindola022bb762014-03-24 03:43:21 +00001048 const MCSymbol *BaseSymbol = getBaseSymbol(Layout, Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001049
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001050 // Undefined symbols are global, but this is the first place we
1051 // are able to set it.
1052 bool Local = isLocal(*it, isSignature, Used);
Jan Sjödin30a52de2011-02-28 21:45:04 +00001053 if (!Local && MCELF::GetBinding(*it) == ELF::STB_LOCAL) {
Rafael Espindola022bb762014-03-24 03:43:21 +00001054 assert(BaseSymbol);
1055 MCSymbolData &SD = Asm.getSymbolData(*BaseSymbol);
Jan Sjödin30a52de2011-02-28 21:45:04 +00001056 MCELF::SetBinding(*it, ELF::STB_GLOBAL);
1057 MCELF::SetBinding(SD, ELF::STB_GLOBAL);
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001058 }
1059
Rafael Espindola022bb762014-03-24 03:43:21 +00001060 if (!BaseSymbol) {
1061 MSD.SectionIndex = ELF::SHN_ABS;
1062 } else if (it->isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +00001063 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +00001064 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindola022bb762014-03-24 03:43:21 +00001065 } else if (BaseSymbol->isUndefined()) {
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001066 if (isSignature && !Used)
1067 MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]);
1068 else
1069 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola022bb762014-03-24 03:43:21 +00001070 if (!Used && WeakrefUsed)
1071 MCELF::SetBinding(*it, ELF::STB_WEAK);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001072 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +00001073 const MCSectionELF &Section =
Rafael Espindola022bb762014-03-24 03:43:21 +00001074 static_cast<const MCSectionELF&>(BaseSymbol->getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +00001075 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001076 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindolafbcf0db2010-10-15 15:39:06 +00001077 }
1078
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001079 // The @@@ in symbol version is replaced with @ in undefined symbols and
1080 // @@ in defined ones.
1081 StringRef Name = Symbol.getName();
Benjamin Kramerdcc77322010-11-12 19:26:04 +00001082 SmallString<32> Buf;
1083
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001084 size_t Pos = Name.find("@@@");
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001085 if (Pos != StringRef::npos) {
Benjamin Kramerdcc77322010-11-12 19:26:04 +00001086 Buf += Name.substr(0, Pos);
1087 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
1088 Buf += Name.substr(Pos + Skip);
1089 Name = Buf;
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001090 }
1091
Benjamin Kramerdcc77322010-11-12 19:26:04 +00001092 uint64_t &Entry = StringIndexMap[Name];
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +00001093 if (!Entry) {
1094 Entry = StringTable.size();
Benjamin Kramerdcc77322010-11-12 19:26:04 +00001095 StringTable += Name;
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +00001096 StringTable += '\x00';
Matt Fleming6c1ad482010-08-16 18:57:57 +00001097 }
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +00001098 MSD.StringIndex = Entry;
1099 if (MSD.SectionIndex == ELF::SHN_UNDEF)
1100 UndefinedSymbolData.push_back(MSD);
1101 else if (Local)
1102 LocalSymbolData.push_back(MSD);
1103 else
1104 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001105 }
1106
1107 // Symbols are required to be in lexicographic order.
1108 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
1109 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
1110 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
1111
1112 // Set the symbol indices. Local symbols must come before all other
1113 // symbols with non-local bindings.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +00001114 unsigned Index = FileSymbolData.size() + 1;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001115 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
1116 LocalSymbolData[i].SymbolData->setIndex(Index++);
Rafael Espindola0e3decf2010-11-14 03:12:24 +00001117
1118 Index += NumRegularSections;
1119
Matt Fleming6c1ad482010-08-16 18:57:57 +00001120 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
1121 ExternalSymbolData[i].SymbolData->setIndex(Index++);
1122 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
1123 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
1124}
1125
Rafael Espindola1557fd62011-03-20 18:44:20 +00001126void ELFObjectWriter::CreateRelocationSections(MCAssembler &Asm,
1127 MCAsmLayout &Layout,
1128 RelMapTy &RelMap) {
1129 for (MCAssembler::const_iterator it = Asm.begin(),
1130 ie = Asm.end(); it != ie; ++it) {
1131 const MCSectionData &SD = *it;
1132 if (Relocations[&SD].empty())
1133 continue;
1134
Matt Fleming6c1ad482010-08-16 18:57:57 +00001135 MCContext &Ctx = Asm.getContext();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001136 const MCSectionELF &Section =
1137 static_cast<const MCSectionELF&>(SD.getSection());
1138
1139 const StringRef SectionName = Section.getSectionName();
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001140 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
Matt Fleming6c1ad482010-08-16 18:57:57 +00001141 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +00001142
1143 unsigned EntrySize;
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001144 if (hasRelocationAddend())
1145 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
Benjamin Kramerfd054152010-08-17 17:56:13 +00001146 else
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001147 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001148
Tim Northovera630fb02013-07-10 20:58:17 +00001149 unsigned Flags = 0;
1150 StringRef Group = "";
1151 if (Section.getFlags() & ELF::SHF_GROUP) {
David Blaikie1e412ea2013-10-22 20:34:30 +00001152 Flags = ELF::SHF_GROUP;
1153 Group = Section.getGroup()->getName();
Tim Northovera630fb02013-07-10 20:58:17 +00001154 }
1155
Rafael Espindola1557fd62011-03-20 18:44:20 +00001156 const MCSectionELF *RelaSection =
1157 Ctx.getELFSection(RelaSectionName, hasRelocationAddend() ?
Tim Northovera630fb02013-07-10 20:58:17 +00001158 ELF::SHT_RELA : ELF::SHT_REL, Flags,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001159 SectionKind::getReadOnly(),
Tim Northovera630fb02013-07-10 20:58:17 +00001160 EntrySize, Group);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001161 RelMap[&Section] = RelaSection;
1162 Asm.getOrCreateSectionData(*RelaSection);
1163 }
1164}
Matt Fleming6c1ad482010-08-16 18:57:57 +00001165
Rafael Espindola1557fd62011-03-20 18:44:20 +00001166void ELFObjectWriter::WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout,
1167 const RelMapTy &RelMap) {
1168 for (MCAssembler::const_iterator it = Asm.begin(),
1169 ie = Asm.end(); it != ie; ++it) {
1170 const MCSectionData &SD = *it;
1171 const MCSectionELF &Section =
1172 static_cast<const MCSectionELF&>(SD.getSection());
1173
1174 const MCSectionELF *RelaSection = RelMap.lookup(&Section);
1175 if (!RelaSection)
1176 continue;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001177 MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001178 RelaSD.setAlignment(is64Bit() ? 8 : 4);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001179
1180 MCDataFragment *F = new MCDataFragment(&RelaSD);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001181 WriteRelocationsFragment(Asm, F, &*it);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001182 }
1183}
1184
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001185void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1186 uint64_t Flags, uint64_t Address,
1187 uint64_t Offset, uint64_t Size,
1188 uint32_t Link, uint32_t Info,
1189 uint64_t Alignment,
1190 uint64_t EntrySize) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001191 Write32(Name); // sh_name: index into string table
1192 Write32(Type); // sh_type
1193 WriteWord(Flags); // sh_flags
1194 WriteWord(Address); // sh_addr
1195 WriteWord(Offset); // sh_offset
1196 WriteWord(Size); // sh_size
1197 Write32(Link); // sh_link
1198 Write32(Info); // sh_info
1199 WriteWord(Alignment); // sh_addralign
1200 WriteWord(EntrySize); // sh_entsize
1201}
1202
Rafael Espindola5904e122014-03-29 06:26:49 +00001203// ELF doesn't require relocations to be in any order. We sort by the r_offset,
1204// just to match gnu as for easier comparison. The use type is an arbitrary way
1205// of making the sort deterministic.
1206static int cmpRel(const ELFRelocationEntry *AP, const ELFRelocationEntry *BP) {
1207 const ELFRelocationEntry &A = *AP;
1208 const ELFRelocationEntry &B = *BP;
1209 if (A.Offset != B.Offset)
1210 return B.Offset - A.Offset;
1211 if (B.Type != A.Type)
1212 return A.Type - B.Type;
1213 llvm_unreachable("ELFRelocs might be unstable!");
1214}
1215
1216static void sortRelocs(const MCAssembler &Asm,
1217 std::vector<ELFRelocationEntry> &Relocs) {
1218 array_pod_sort(Relocs.begin(), Relocs.end(), cmpRel);
1219}
1220
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001221void ELFObjectWriter::WriteRelocationsFragment(const MCAssembler &Asm,
1222 MCDataFragment *F,
1223 const MCSectionData *SD) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001224 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001225
Rafael Espindola5904e122014-03-29 06:26:49 +00001226 sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001227
1228 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001229 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Matt Fleming6c1ad482010-08-16 18:57:57 +00001230
Rafael Espindola5904e122014-03-29 06:26:49 +00001231 unsigned Index;
1232 if (Entry.UseSymbol) {
1233 Index = getSymbolIndexInSymbolTable(Asm, Entry.Symbol);
1234 } else {
1235 const MCSectionData *Sec = Entry.Section;
1236 if (Sec)
1237 Index = Sec->getOrdinal() + FileSymbolData.size() +
1238 LocalSymbolData.size() + 1;
1239 else
1240 Index = 0;
1241 }
1242
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001243 if (is64Bit()) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001244 write(*F, Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001245 if (TargetObjectWriter->isN64()) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001246 write(*F, uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001247
Rafael Espindola5904e122014-03-29 06:26:49 +00001248 write(*F, TargetObjectWriter->getRSsym(Entry.Type));
1249 write(*F, TargetObjectWriter->getRType3(Entry.Type));
1250 write(*F, TargetObjectWriter->getRType2(Entry.Type));
1251 write(*F, TargetObjectWriter->getRType(Entry.Type));
1252 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001253 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001254 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindola0ce09712014-03-25 22:43:53 +00001255 write(*F, ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001256 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001257 if (hasRelocationAddend())
Rafael Espindola5904e122014-03-29 06:26:49 +00001258 write(*F, Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001259 } else {
Rafael Espindola5904e122014-03-29 06:26:49 +00001260 write(*F, uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001261
Rafael Espindolabce26a12010-10-05 15:11:03 +00001262 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001263 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindola0ce09712014-03-25 22:43:53 +00001264 write(*F, ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001265
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001266 if (hasRelocationAddend())
Rafael Espindola5904e122014-03-29 06:26:49 +00001267 write(*F, uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001268 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001269 }
1270}
1271
Benjamin Kramer8817cca2013-09-22 14:09:50 +00001272static int compareBySuffix(const MCSectionELF *const *a,
1273 const MCSectionELF *const *b) {
1274 const StringRef &NameA = (*a)->getSectionName();
1275 const StringRef &NameB = (*b)->getSectionName();
Rafael Espindolab80875e2011-04-07 23:21:52 +00001276 const unsigned sizeA = NameA.size();
1277 const unsigned sizeB = NameB.size();
1278 const unsigned len = std::min(sizeA, sizeB);
1279 for (unsigned int i = 0; i < len; ++i) {
1280 char ca = NameA[sizeA - i - 1];
1281 char cb = NameB[sizeB - i - 1];
1282 if (ca != cb)
1283 return cb - ca;
1284 }
1285
1286 return sizeB - sizeA;
1287}
1288
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001289void ELFObjectWriter::CreateMetadataSections(MCAssembler &Asm,
1290 MCAsmLayout &Layout,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001291 SectionIndexMapTy &SectionIndexMap,
1292 const RelMapTy &RelMap) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001293 MCContext &Ctx = Asm.getContext();
1294 MCDataFragment *F;
1295
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001296 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001297
Rafael Espindola0e527b72010-09-22 19:04:41 +00001298 // We construct .shstrtab, .symtab and .strtab in this order to match gnu as.
Rafael Espindola36ef57d2010-11-10 19:05:07 +00001299 const MCSectionELF *ShstrtabSection =
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001300 Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
Rafael Espindola19fa3802010-11-11 03:40:25 +00001301 SectionKind::getReadOnly());
Rafael Espindola44bf2662010-09-16 19:46:31 +00001302 MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
1303 ShstrtabSD.setAlignment(1);
Rafael Espindola44bf2662010-09-16 19:46:31 +00001304
Rafael Espindola36ef57d2010-11-10 19:05:07 +00001305 const MCSectionELF *SymtabSection =
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001306 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
1307 SectionKind::getReadOnly(),
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001308 EntrySize, "");
Matt Fleming6c1ad482010-08-16 18:57:57 +00001309 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001310 SymtabSD.setAlignment(is64Bit() ? 8 : 4);
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001311
Rafael Espindola1557fd62011-03-20 18:44:20 +00001312 const MCSectionELF *StrtabSection;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001313 StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
Rafael Espindola19fa3802010-11-11 03:40:25 +00001314 SectionKind::getReadOnly());
Matt Fleming6c1ad482010-08-16 18:57:57 +00001315 MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
1316 StrtabSD.setAlignment(1);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001317
Rafael Espindola1557fd62011-03-20 18:44:20 +00001318 ComputeIndexMap(Asm, SectionIndexMap, RelMap);
1319
1320 ShstrtabIndex = SectionIndexMap.lookup(ShstrtabSection);
1321 SymbolTableIndex = SectionIndexMap.lookup(SymtabSection);
1322 StringTableIndex = SectionIndexMap.lookup(StrtabSection);
Rafael Espindola44bf2662010-09-16 19:46:31 +00001323
1324 // Symbol table
1325 F = new MCDataFragment(&SymtabSD);
Rafael Espindola10be0832014-03-25 23:44:25 +00001326 WriteSymbolTable(F, Asm, Layout, SectionIndexMap);
Rafael Espindola44bf2662010-09-16 19:46:31 +00001327
Matt Fleming6c1ad482010-08-16 18:57:57 +00001328 F = new MCDataFragment(&StrtabSD);
1329 F->getContents().append(StringTable.begin(), StringTable.end());
Matt Fleming6c1ad482010-08-16 18:57:57 +00001330
Matt Fleming6c1ad482010-08-16 18:57:57 +00001331 F = new MCDataFragment(&ShstrtabSD);
1332
Rafael Espindolab80875e2011-04-07 23:21:52 +00001333 std::vector<const MCSectionELF*> Sections;
1334 for (MCAssembler::const_iterator it = Asm.begin(),
1335 ie = Asm.end(); it != ie; ++it) {
1336 const MCSectionELF &Section =
1337 static_cast<const MCSectionELF&>(it->getSection());
1338 Sections.push_back(&Section);
1339 }
1340 array_pod_sort(Sections.begin(), Sections.end(), compareBySuffix);
1341
Matt Fleming6c1ad482010-08-16 18:57:57 +00001342 // Section header string table.
1343 //
1344 // The first entry of a string table holds a null character so skip
1345 // section 0.
1346 uint64_t Index = 1;
Eli Bendersky84b2a792012-12-07 22:06:56 +00001347 F->getContents().push_back('\x00');
Matt Fleming6c1ad482010-08-16 18:57:57 +00001348
Rafael Espindolab80875e2011-04-07 23:21:52 +00001349 for (unsigned int I = 0, E = Sections.size(); I != E; ++I) {
1350 const MCSectionELF &Section = *Sections[I];
Matt Fleming6c1ad482010-08-16 18:57:57 +00001351
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001352 StringRef Name = Section.getSectionName();
Rafael Espindolab80875e2011-04-07 23:21:52 +00001353 if (I != 0) {
1354 StringRef PreviousName = Sections[I - 1]->getSectionName();
1355 if (PreviousName.endswith(Name)) {
1356 SectionStringTableIndex[&Section] = Index - Name.size() - 1;
1357 continue;
1358 }
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001359 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001360 // Remember the index into the string table so we can write it
1361 // into the sh_name field of the section header table.
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001362 SectionStringTableIndex[&Section] = Index;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001363
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001364 Index += Name.size() + 1;
Eli Bendersky84b2a792012-12-07 22:06:56 +00001365 F->getContents().append(Name.begin(), Name.end());
1366 F->getContents().push_back('\x00');
Matt Fleming6c1ad482010-08-16 18:57:57 +00001367 }
Rafael Espindola2ebaee92010-09-30 02:22:20 +00001368}
1369
Rafael Espindolab3eca9b2011-01-23 17:55:27 +00001370void ELFObjectWriter::CreateIndexedSections(MCAssembler &Asm,
1371 MCAsmLayout &Layout,
1372 GroupMapTy &GroupMap,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001373 RevGroupMapTy &RevGroupMap,
1374 SectionIndexMapTy &SectionIndexMap,
1375 const RelMapTy &RelMap) {
Rafael Espindolab3eca9b2011-01-23 17:55:27 +00001376 // Create the .note.GNU-stack section if needed.
1377 MCContext &Ctx = Asm.getContext();
1378 if (Asm.getNoExecStack()) {
1379 const MCSectionELF *GnuStackSection =
1380 Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS, 0,
1381 SectionKind::getReadOnly());
1382 Asm.getOrCreateSectionData(*GnuStackSection);
1383 }
1384
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001385 // Build the groups
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001386 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
1387 it != ie; ++it) {
1388 const MCSectionELF &Section =
1389 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola0e7e34e2011-01-23 04:43:11 +00001390 if (!(Section.getFlags() & ELF::SHF_GROUP))
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001391 continue;
1392
1393 const MCSymbol *SignatureSymbol = Section.getGroup();
1394 Asm.getOrCreateSymbolData(*SignatureSymbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001395 const MCSectionELF *&Group = RevGroupMap[SignatureSymbol];
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001396 if (!Group) {
Rafael Espindolab3eca9b2011-01-23 17:55:27 +00001397 Group = Ctx.CreateELFGroupSection();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001398 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1399 Data.setAlignment(4);
1400 MCDataFragment *F = new MCDataFragment(&Data);
Rafael Espindola0ce09712014-03-25 22:43:53 +00001401 write(*F, uint32_t(ELF::GRP_COMDAT));
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001402 }
1403 GroupMap[Group] = SignatureSymbol;
1404 }
1405
Rafael Espindola1557fd62011-03-20 18:44:20 +00001406 ComputeIndexMap(Asm, SectionIndexMap, RelMap);
1407
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001408 // Add sections to the groups
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001409 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
Rafael Espindola1557fd62011-03-20 18:44:20 +00001410 it != ie; ++it) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001411 const MCSectionELF &Section =
1412 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola0e7e34e2011-01-23 04:43:11 +00001413 if (!(Section.getFlags() & ELF::SHF_GROUP))
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001414 continue;
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001415 const MCSectionELF *Group = RevGroupMap[Section.getGroup()];
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001416 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1417 // FIXME: we could use the previous fragment
1418 MCDataFragment *F = new MCDataFragment(&Data);
Rafael Espindola0ce09712014-03-25 22:43:53 +00001419 uint32_t Index = SectionIndexMap.lookup(&Section);
1420 write(*F, Index);
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001421 }
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001422}
1423
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001424void ELFObjectWriter::WriteSection(MCAssembler &Asm,
1425 const SectionIndexMapTy &SectionIndexMap,
1426 uint32_t GroupSymbolIndex,
1427 uint64_t Offset, uint64_t Size,
1428 uint64_t Alignment,
1429 const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001430 uint64_t sh_link = 0;
1431 uint64_t sh_info = 0;
1432
1433 switch(Section.getType()) {
1434 case ELF::SHT_DYNAMIC:
1435 sh_link = SectionStringTableIndex[&Section];
1436 sh_info = 0;
1437 break;
1438
1439 case ELF::SHT_REL:
1440 case ELF::SHT_RELA: {
1441 const MCSectionELF *SymtabSection;
1442 const MCSectionELF *InfoSection;
1443 SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB,
1444 0,
Rafael Espindola19fa3802010-11-11 03:40:25 +00001445 SectionKind::getReadOnly());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001446 sh_link = SectionIndexMap.lookup(SymtabSection);
1447 assert(sh_link && ".symtab not found");
1448
1449 // Remove ".rel" and ".rela" prefixes.
1450 unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
1451 StringRef SectionName = Section.getSectionName().substr(SecNameLen);
David Blaikie15b25df2013-10-22 23:41:52 +00001452 StringRef GroupName =
1453 Section.getGroup() ? Section.getGroup()->getName() : "";
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001454
David Blaikie15b25df2013-10-22 23:41:52 +00001455 InfoSection = Asm.getContext().getELFSection(SectionName, ELF::SHT_PROGBITS,
1456 0, SectionKind::getReadOnly(),
1457 0, GroupName);
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001458 sh_info = SectionIndexMap.lookup(InfoSection);
1459 break;
1460 }
1461
1462 case ELF::SHT_SYMTAB:
1463 case ELF::SHT_DYNSYM:
1464 sh_link = StringTableIndex;
1465 sh_info = LastLocalSymbolIndex;
1466 break;
1467
1468 case ELF::SHT_SYMTAB_SHNDX:
1469 sh_link = SymbolTableIndex;
1470 break;
1471
1472 case ELF::SHT_PROGBITS:
1473 case ELF::SHT_STRTAB:
1474 case ELF::SHT_NOBITS:
Rafael Espindola9ae2d052010-12-26 21:30:59 +00001475 case ELF::SHT_NOTE:
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001476 case ELF::SHT_NULL:
1477 case ELF::SHT_ARM_ATTRIBUTES:
Jason W Kim9c5b65d2011-01-12 00:19:25 +00001478 case ELF::SHT_INIT_ARRAY:
1479 case ELF::SHT_FINI_ARRAY:
1480 case ELF::SHT_PREINIT_ARRAY:
Rafael Espindola4b7b7fb2011-01-23 05:43:40 +00001481 case ELF::SHT_X86_64_UNWIND:
Jack Carterc1b17ed2013-01-18 21:20:38 +00001482 case ELF::SHT_MIPS_REGINFO:
1483 case ELF::SHT_MIPS_OPTIONS:
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001484 // Nothing to do.
1485 break;
1486
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001487 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001488 sh_link = SymbolTableIndex;
1489 sh_info = GroupSymbolIndex;
1490 break;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001491
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001492 default:
1493 assert(0 && "FIXME: sh_type value not supported!");
1494 break;
1495 }
1496
Logan Chien4b724422013-02-05 14:18:59 +00001497 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
1498 Section.getType() == ELF::SHT_ARM_EXIDX) {
1499 StringRef SecName(Section.getSectionName());
1500 if (SecName == ".ARM.exidx") {
1501 sh_link = SectionIndexMap.lookup(
1502 Asm.getContext().getELFSection(".text",
1503 ELF::SHT_PROGBITS,
1504 ELF::SHF_EXECINSTR | ELF::SHF_ALLOC,
1505 SectionKind::getText()));
1506 } else if (SecName.startswith(".ARM.exidx")) {
David Blaikie15b25df2013-10-22 23:41:52 +00001507 StringRef GroupName =
1508 Section.getGroup() ? Section.getGroup()->getName() : "";
1509 sh_link = SectionIndexMap.lookup(Asm.getContext().getELFSection(
1510 SecName.substr(sizeof(".ARM.exidx") - 1), ELF::SHT_PROGBITS,
1511 ELF::SHF_EXECINSTR | ELF::SHF_ALLOC, SectionKind::getText(), 0,
1512 GroupName));
Logan Chien4b724422013-02-05 14:18:59 +00001513 }
1514 }
1515
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001516 WriteSecHdrEntry(SectionStringTableIndex[&Section], Section.getType(),
1517 Section.getFlags(), 0, Offset, Size, sh_link, sh_info,
1518 Alignment, Section.getEntrySize());
1519}
1520
Jan Sjödin30a52de2011-02-28 21:45:04 +00001521bool ELFObjectWriter::IsELFMetaDataSection(const MCSectionData &SD) {
Rafael Espindolabaf2f3b2010-12-06 03:48:09 +00001522 return SD.getOrdinal() == ~UINT32_C(0) &&
Rafael Espindola60ebca92010-12-02 03:09:06 +00001523 !SD.getSection().isVirtualSection();
1524}
1525
Jan Sjödin30a52de2011-02-28 21:45:04 +00001526uint64_t ELFObjectWriter::DataSectionSize(const MCSectionData &SD) {
Rafael Espindola60ebca92010-12-02 03:09:06 +00001527 uint64_t Ret = 0;
1528 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1529 ++i) {
1530 const MCFragment &F = *i;
1531 assert(F.getKind() == MCFragment::FT_Data);
1532 Ret += cast<MCDataFragment>(F).getContents().size();
1533 }
1534 return Ret;
1535}
1536
Jan Sjödin30a52de2011-02-28 21:45:04 +00001537uint64_t ELFObjectWriter::GetSectionFileSize(const MCAsmLayout &Layout,
1538 const MCSectionData &SD) {
Rafael Espindola60ebca92010-12-02 03:09:06 +00001539 if (IsELFMetaDataSection(SD))
1540 return DataSectionSize(SD);
1541 return Layout.getSectionFileSize(&SD);
1542}
1543
Jan Sjödin30a52de2011-02-28 21:45:04 +00001544uint64_t ELFObjectWriter::GetSectionAddressSize(const MCAsmLayout &Layout,
1545 const MCSectionData &SD) {
Rafael Espindola60ebca92010-12-02 03:09:06 +00001546 if (IsELFMetaDataSection(SD))
1547 return DataSectionSize(SD);
Rafael Espindola93e3cf02010-12-07 00:27:36 +00001548 return Layout.getSectionAddressSize(&SD);
Rafael Espindola60ebca92010-12-02 03:09:06 +00001549}
1550
Rafael Espindola1557fd62011-03-20 18:44:20 +00001551void ELFObjectWriter::WriteDataSectionData(MCAssembler &Asm,
1552 const MCAsmLayout &Layout,
1553 const MCSectionELF &Section) {
Rafael Espindola1557fd62011-03-20 18:44:20 +00001554 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1555
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001556 uint64_t Padding = OffsetToAlignment(OS.tell(), SD.getAlignment());
Rafael Espindola1557fd62011-03-20 18:44:20 +00001557 WriteZeros(Padding);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001558
1559 if (IsELFMetaDataSection(SD)) {
1560 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1561 ++i) {
1562 const MCFragment &F = *i;
1563 assert(F.getKind() == MCFragment::FT_Data);
Eli Bendersky84b2a792012-12-07 22:06:56 +00001564 WriteBytes(cast<MCDataFragment>(F).getContents());
Rafael Espindola1557fd62011-03-20 18:44:20 +00001565 }
1566 } else {
Jim Grosbach18e2fe42011-12-06 00:03:48 +00001567 Asm.writeSectionData(&SD, Layout);
Rafael Espindola60ebca92010-12-02 03:09:06 +00001568 }
1569}
1570
Rafael Espindola1557fd62011-03-20 18:44:20 +00001571void ELFObjectWriter::WriteSectionHeader(MCAssembler &Asm,
1572 const GroupMapTy &GroupMap,
1573 const MCAsmLayout &Layout,
1574 const SectionIndexMapTy &SectionIndexMap,
1575 const SectionOffsetMapTy &SectionOffsetMap) {
1576 const unsigned NumSections = Asm.size() + 1;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001577
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001578 std::vector<const MCSectionELF*> Sections;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001579 Sections.resize(NumSections - 1);
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001580
1581 for (SectionIndexMapTy::const_iterator i=
1582 SectionIndexMap.begin(), e = SectionIndexMap.end(); i != e; ++i) {
1583 const std::pair<const MCSectionELF*, uint32_t> &p = *i;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001584 Sections[p.second - 1] = p.first;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001585 }
1586
Matt Fleming6c1ad482010-08-16 18:57:57 +00001587 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001588 uint64_t FirstSectionSize =
1589 NumSections >= ELF::SHN_LORESERVE ? NumSections : 0;
1590 uint32_t FirstSectionLink =
1591 ShstrtabIndex >= ELF::SHN_LORESERVE ? ShstrtabIndex : 0;
1592 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, FirstSectionLink, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001593
Rafael Espindola1557fd62011-03-20 18:44:20 +00001594 for (unsigned i = 0; i < NumSections - 1; ++i) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001595 const MCSectionELF &Section = *Sections[i];
1596 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1597 uint32_t GroupSymbolIndex;
1598 if (Section.getType() != ELF::SHT_GROUP)
1599 GroupSymbolIndex = 0;
1600 else
Rafael Espindola1557fd62011-03-20 18:44:20 +00001601 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm,
1602 GroupMap.lookup(&Section));
Matt Fleming6c1ad482010-08-16 18:57:57 +00001603
Rafael Espindola93e3cf02010-12-07 00:27:36 +00001604 uint64_t Size = GetSectionAddressSize(Layout, SD);
Rafael Espindola60ebca92010-12-02 03:09:06 +00001605
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001606 WriteSection(Asm, SectionIndexMap, GroupSymbolIndex,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001607 SectionOffsetMap.lookup(&Section), Size,
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001608 SD.getAlignment(), Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001609 }
1610}
1611
Rafael Espindola1557fd62011-03-20 18:44:20 +00001612void ELFObjectWriter::ComputeSectionOrder(MCAssembler &Asm,
1613 std::vector<const MCSectionELF*> &Sections) {
1614 for (MCAssembler::iterator it = Asm.begin(),
1615 ie = Asm.end(); it != ie; ++it) {
1616 const MCSectionELF &Section =
1617 static_cast<const MCSectionELF &>(it->getSection());
1618 if (Section.getType() == ELF::SHT_GROUP)
1619 Sections.push_back(&Section);
1620 }
1621
1622 for (MCAssembler::iterator it = Asm.begin(),
1623 ie = Asm.end(); it != ie; ++it) {
1624 const MCSectionELF &Section =
1625 static_cast<const MCSectionELF &>(it->getSection());
1626 if (Section.getType() != ELF::SHT_GROUP &&
1627 Section.getType() != ELF::SHT_REL &&
1628 Section.getType() != ELF::SHT_RELA)
1629 Sections.push_back(&Section);
1630 }
1631
1632 for (MCAssembler::iterator it = Asm.begin(),
1633 ie = Asm.end(); it != ie; ++it) {
1634 const MCSectionELF &Section =
1635 static_cast<const MCSectionELF &>(it->getSection());
1636 if (Section.getType() == ELF::SHT_REL ||
1637 Section.getType() == ELF::SHT_RELA)
1638 Sections.push_back(&Section);
1639 }
1640}
1641
1642void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1643 const MCAsmLayout &Layout) {
1644 GroupMapTy GroupMap;
1645 RevGroupMapTy RevGroupMap;
1646 SectionIndexMapTy SectionIndexMap;
1647
1648 unsigned NumUserSections = Asm.size();
1649
1650 DenseMap<const MCSectionELF*, const MCSectionELF*> RelMap;
1651 CreateRelocationSections(Asm, const_cast<MCAsmLayout&>(Layout), RelMap);
1652
1653 const unsigned NumUserAndRelocSections = Asm.size();
1654 CreateIndexedSections(Asm, const_cast<MCAsmLayout&>(Layout), GroupMap,
1655 RevGroupMap, SectionIndexMap, RelMap);
1656 const unsigned AllSections = Asm.size();
1657 const unsigned NumIndexedSections = AllSections - NumUserAndRelocSections;
1658
1659 unsigned NumRegularSections = NumUserSections + NumIndexedSections;
1660
1661 // Compute symbol table information.
Rafael Espindola022bb762014-03-24 03:43:21 +00001662 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap,
1663 NumRegularSections);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001664
1665 WriteRelocations(Asm, const_cast<MCAsmLayout&>(Layout), RelMap);
1666
1667 CreateMetadataSections(const_cast<MCAssembler&>(Asm),
1668 const_cast<MCAsmLayout&>(Layout),
1669 SectionIndexMap,
1670 RelMap);
1671
1672 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
1673 uint64_t HeaderSize = is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
1674 sizeof(ELF::Elf32_Ehdr);
1675 uint64_t FileOff = HeaderSize;
1676
1677 std::vector<const MCSectionELF*> Sections;
1678 ComputeSectionOrder(Asm, Sections);
1679 unsigned NumSections = Sections.size();
1680 SectionOffsetMapTy SectionOffsetMap;
1681 for (unsigned i = 0; i < NumRegularSections + 1; ++i) {
1682 const MCSectionELF &Section = *Sections[i];
1683 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1684
1685 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1686
1687 // Remember the offset into the file for this section.
1688 SectionOffsetMap[&Section] = FileOff;
1689
1690 // Get the size of the section in the output file (including padding).
1691 FileOff += GetSectionFileSize(Layout, SD);
1692 }
1693
1694 FileOff = RoundUpToAlignment(FileOff, NaturalAlignment);
1695
1696 const unsigned SectionHeaderOffset = FileOff - HeaderSize;
1697
1698 uint64_t SectionHeaderEntrySize = is64Bit() ?
1699 sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr);
1700 FileOff += (NumSections + 1) * SectionHeaderEntrySize;
1701
1702 for (unsigned i = NumRegularSections + 1; i < NumSections; ++i) {
1703 const MCSectionELF &Section = *Sections[i];
1704 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1705
1706 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1707
1708 // Remember the offset into the file for this section.
1709 SectionOffsetMap[&Section] = FileOff;
1710
1711 // Get the size of the section in the output file (including padding).
1712 FileOff += GetSectionFileSize(Layout, SD);
1713 }
1714
1715 // Write out the ELF header ...
Jack Carter1bd90ff2013-01-30 02:09:52 +00001716 WriteHeader(Asm, SectionHeaderOffset, NumSections + 1);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001717
1718 // ... then the regular sections ...
1719 // + because of .shstrtab
1720 for (unsigned i = 0; i < NumRegularSections + 1; ++i)
1721 WriteDataSectionData(Asm, Layout, *Sections[i]);
1722
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001723 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001724 WriteZeros(Padding);
1725
1726 // ... then the section header table ...
1727 WriteSectionHeader(Asm, GroupMap, Layout, SectionIndexMap,
1728 SectionOffsetMap);
1729
Nick Lewycky4eb11432011-10-07 20:56:23 +00001730 // ... and then the remaining sections ...
Rafael Espindola1557fd62011-03-20 18:44:20 +00001731 for (unsigned i = NumRegularSections + 1; i < NumSections; ++i)
1732 WriteDataSectionData(Asm, Layout, *Sections[i]);
1733}
1734
Eli Friedmand92d17b2011-03-03 07:24:36 +00001735bool
1736ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
1737 const MCSymbolData &DataA,
1738 const MCFragment &FB,
1739 bool InSet,
1740 bool IsPCRel) const {
Roman Divackyfb4d3902014-01-08 18:50:32 +00001741 if (DataA.getFlags() & ELF_STB_Weak || MCELF::GetType(DataA) == ELF::STT_GNU_IFUNC)
Eli Friedmand92d17b2011-03-03 07:24:36 +00001742 return false;
1743 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
1744 Asm, DataA, FB,InSet, IsPCRel);
1745}
1746
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001747MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
1748 raw_ostream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001749 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001750 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001751}