blob: ebcc691f0ae51838e1cfab61eebf1af39ef32f28 [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"
David Blaikie8019bf82014-04-10 21:53:53 +000020#include "llvm/MC/MCAsmInfo.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000021#include "llvm/MC/MCAsmLayout.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000022#include "llvm/MC/MCAssembler.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000023#include "llvm/MC/MCContext.h"
Tim Northover5cc3dc82012-12-07 16:50:23 +000024#include "llvm/MC/MCELF.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000025#include "llvm/MC/MCELFSymbolFlags.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000026#include "llvm/MC/MCExpr.h"
Craig Topper6e80c282012-03-26 06:58:25 +000027#include "llvm/MC/MCFixupKindInfo.h"
28#include "llvm/MC/MCObjectWriter.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000029#include "llvm/MC/MCSectionELF.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000030#include "llvm/MC/MCValue.h"
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000031#include "llvm/Object/StringTableBuilder.h"
David Blaikie8019bf82014-04-10 21:53:53 +000032#include "llvm/Support/Compression.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000033#include "llvm/Support/Debug.h"
Rafael Espindola0ce09712014-03-25 22:43:53 +000034#include "llvm/Support/Endian.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000035#include "llvm/Support/ELF.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/Support/ErrorHandling.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000037#include <vector>
38using namespace llvm;
39
Jason W Kimc09e7262011-05-11 22:53:06 +000040#undef DEBUG_TYPE
41#define DEBUG_TYPE "reloc-info"
42
Rafael Espindola29abd972011-12-22 03:38:00 +000043namespace {
Rafael Espindola0ce09712014-03-25 22:43:53 +000044class FragmentWriter {
45 bool IsLittleEndian;
46
47public:
48 FragmentWriter(bool IsLittleEndian);
49 template <typename T> void write(MCDataFragment &F, T Val);
50};
51
Rafael Espindola10be0832014-03-25 23:44:25 +000052typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy;
53
54class SymbolTableWriter {
55 MCAssembler &Asm;
56 FragmentWriter &FWriter;
57 bool Is64Bit;
58 SectionIndexMapTy &SectionIndexMap;
59
60 // The symbol .symtab fragment we are writting to.
61 MCDataFragment *SymtabF;
62
63 // .symtab_shndx fragment we are writting to.
64 MCDataFragment *ShndxF;
65
66 // The numbel of symbols written so far.
67 unsigned NumWritten;
68
69 void createSymtabShndx();
70
71 template <typename T> void write(MCDataFragment &F, T Value);
72
73public:
74 SymbolTableWriter(MCAssembler &Asm, FragmentWriter &FWriter, bool Is64Bit,
75 SectionIndexMapTy &SectionIndexMap,
76 MCDataFragment *SymtabF);
77
78 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
79 uint8_t other, uint32_t shndx, bool Reserved);
80};
81
Rafael Espindola5904e122014-03-29 06:26:49 +000082struct ELFRelocationEntry {
83 uint64_t Offset; // Where is the relocation.
84 bool UseSymbol; // Relocate with a symbol, not the section.
85 union {
86 const MCSymbol *Symbol; // The symbol to relocate with.
87 const MCSectionData *Section; // The section to relocate with.
88 };
89 unsigned Type; // The type of the relocation.
90 uint64_t Addend; // The addend to use.
91
92 ELFRelocationEntry(uint64_t Offset, const MCSymbol *Symbol, unsigned Type,
93 uint64_t Addend)
94 : Offset(Offset), UseSymbol(true), Symbol(Symbol), Type(Type),
95 Addend(Addend) {}
96
97 ELFRelocationEntry(uint64_t Offset, const MCSectionData *Section,
98 unsigned Type, uint64_t Addend)
99 : Offset(Offset), UseSymbol(false), Section(Section), Type(Type),
100 Addend(Addend) {}
101};
102
Rafael Espindola29abd972011-12-22 03:38:00 +0000103class ELFObjectWriter : public MCObjectWriter {
Rafael Espindola0ce09712014-03-25 22:43:53 +0000104 FragmentWriter FWriter;
105
Rafael Espindola29abd972011-12-22 03:38:00 +0000106 protected:
107
108 static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
109 static bool RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant);
110 static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout);
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000111 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolData &Data,
Rafael Espindola29abd972011-12-22 03:38:00 +0000112 bool Used, bool Renamed);
Rafael Espindola39f50422014-04-28 14:24:44 +0000113 static bool isLocal(const MCSymbolData &Data, bool isUsedInReloc);
Rafael Espindola29abd972011-12-22 03:38:00 +0000114 static bool IsELFMetaDataSection(const MCSectionData &SD);
115 static uint64_t DataSectionSize(const MCSectionData &SD);
116 static uint64_t GetSectionFileSize(const MCAsmLayout &Layout,
117 const MCSectionData &SD);
118 static uint64_t GetSectionAddressSize(const MCAsmLayout &Layout,
119 const MCSectionData &SD);
120
121 void WriteDataSectionData(MCAssembler &Asm,
122 const MCAsmLayout &Layout,
123 const MCSectionELF &Section);
124
125 /*static bool isFixupKindX86RIPRel(unsigned Kind) {
126 return Kind == X86::reloc_riprel_4byte ||
127 Kind == X86::reloc_riprel_4byte_movq_load;
128 }*/
129
130 /// ELFSymbolData - Helper struct for containing some precomputed
131 /// information on symbols.
132 struct ELFSymbolData {
133 MCSymbolData *SymbolData;
134 uint64_t StringIndex;
135 uint32_t SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000136 StringRef Name;
Rafael Espindola29abd972011-12-22 03:38:00 +0000137
138 // Support lexicographic sorting.
139 bool operator<(const ELFSymbolData &RHS) const {
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000140 return Name < RHS.Name;
Rafael Espindola29abd972011-12-22 03:38:00 +0000141 }
142 };
143
Rafael Espindola29abd972011-12-22 03:38:00 +0000144 /// The target specific ELF writer instance.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000145 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
Rafael Espindola29abd972011-12-22 03:38:00 +0000146
147 SmallPtrSet<const MCSymbol *, 16> UsedInReloc;
148 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc;
149 DenseMap<const MCSymbol *, const MCSymbol *> Renames;
150
Rafael Espindola5904e122014-03-29 06:26:49 +0000151 llvm::DenseMap<const MCSectionData *, std::vector<ELFRelocationEntry>>
152 Relocations;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000153 StringTableBuilder ShStrTabBuilder;
Rafael Espindola29abd972011-12-22 03:38:00 +0000154
155 /// @}
156 /// @name Symbol Table Data
157 /// @{
158
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000159 StringTableBuilder StrTabBuilder;
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000160 std::vector<uint64_t> FileSymbolData;
Rafael Espindola29abd972011-12-22 03:38:00 +0000161 std::vector<ELFSymbolData> LocalSymbolData;
162 std::vector<ELFSymbolData> ExternalSymbolData;
163 std::vector<ELFSymbolData> UndefinedSymbolData;
164
165 /// @}
166
167 bool NeedsGOT;
168
Rafael Espindola29abd972011-12-22 03:38:00 +0000169 // This holds the symbol table index of the last local symbol.
170 unsigned LastLocalSymbolIndex;
171 // This holds the .strtab section index.
172 unsigned StringTableIndex;
173 // This holds the .symtab section index.
174 unsigned SymbolTableIndex;
175
176 unsigned ShstrtabIndex;
177
178
Rafael Espindola29abd972011-12-22 03:38:00 +0000179 // TargetObjectWriter wrappers.
Rafael Espindola29abd972011-12-22 03:38:00 +0000180 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
181 bool hasRelocationAddend() const {
182 return TargetObjectWriter->hasRelocationAddend();
183 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000184 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000185 bool IsPCRel) const {
186 return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindola29abd972011-12-22 03:38:00 +0000187 }
188
Rafael Espindola29abd972011-12-22 03:38:00 +0000189 public:
Rafael Espindola0ce09712014-03-25 22:43:53 +0000190 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_ostream &_OS,
191 bool IsLittleEndian)
192 : MCObjectWriter(_OS, IsLittleEndian), FWriter(IsLittleEndian),
Rafael Espindola10be0832014-03-25 23:44:25 +0000193 TargetObjectWriter(MOTW), NeedsGOT(false) {}
Rafael Espindola29abd972011-12-22 03:38:00 +0000194
195 virtual ~ELFObjectWriter();
196
197 void WriteWord(uint64_t W) {
198 if (is64Bit())
199 Write64(W);
200 else
201 Write32(W);
202 }
203
Rafael Espindola0ce09712014-03-25 22:43:53 +0000204 template <typename T> void write(MCDataFragment &F, T Value) {
205 FWriter.write(F, Value);
Rafael Espindola29abd972011-12-22 03:38:00 +0000206 }
207
Jack Carter1bd90ff2013-01-30 02:09:52 +0000208 void WriteHeader(const MCAssembler &Asm,
209 uint64_t SectionDataSize,
Rafael Espindola29abd972011-12-22 03:38:00 +0000210 unsigned NumberOfSections);
211
Rafael Espindola10be0832014-03-25 23:44:25 +0000212 void WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Rafael Espindola29abd972011-12-22 03:38:00 +0000213 const MCAsmLayout &Layout);
214
Rafael Espindola10be0832014-03-25 23:44:25 +0000215 void WriteSymbolTable(MCDataFragment *SymtabF, MCAssembler &Asm,
Rafael Espindola29abd972011-12-22 03:38:00 +0000216 const MCAsmLayout &Layout,
Rafael Espindola10be0832014-03-25 23:44:25 +0000217 SectionIndexMapTy &SectionIndexMap);
Rafael Espindola29abd972011-12-22 03:38:00 +0000218
Rafael Espindolab60c8292014-04-29 12:46:50 +0000219 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
220 const MCSymbolRefExpr *RefA,
Rafael Espindola5904e122014-03-29 06:26:49 +0000221 const MCSymbolData *SD, uint64_t C,
222 unsigned Type) const;
223
Craig Topper34a61bc2014-03-08 07:02:02 +0000224 void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
225 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000226 MCValue Target, bool &IsPCRel,
227 uint64_t &FixedValue) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000228
229 uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
230 const MCSymbol *S);
231
232 // Map from a group section to the signature symbol
233 typedef DenseMap<const MCSectionELF*, const MCSymbol*> GroupMapTy;
234 // Map from a signature symbol to the group section
235 typedef DenseMap<const MCSymbol*, const MCSectionELF*> RevGroupMapTy;
236 // Map from a section to the section with the relocations
237 typedef DenseMap<const MCSectionELF*, const MCSectionELF*> RelMapTy;
238 // Map from a section to its offset
239 typedef DenseMap<const MCSectionELF*, uint64_t> SectionOffsetMapTy;
240
Rafael Espindola022bb762014-03-24 03:43:21 +0000241 /// Compute the symbol table data
Rafael Espindola29abd972011-12-22 03:38:00 +0000242 ///
Rafael Espindola073ee7d2012-08-27 16:04:24 +0000243 /// \param Asm - The assembler.
244 /// \param SectionIndexMap - Maps a section to its index.
245 /// \param RevGroupMap - Maps a signature symbol to the group section.
246 /// \param NumRegularSections - Number of non-relocation sections.
Rafael Espindola022bb762014-03-24 03:43:21 +0000247 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000248 const SectionIndexMapTy &SectionIndexMap,
249 RevGroupMapTy RevGroupMap,
250 unsigned NumRegularSections);
251
252 void ComputeIndexMap(MCAssembler &Asm,
253 SectionIndexMapTy &SectionIndexMap,
254 const RelMapTy &RelMap);
255
256 void CreateRelocationSections(MCAssembler &Asm, MCAsmLayout &Layout,
257 RelMapTy &RelMap);
258
David Blaikie8019bf82014-04-10 21:53:53 +0000259 void CompressDebugSections(MCAssembler &Asm, MCAsmLayout &Layout);
260
Rafael Espindola29abd972011-12-22 03:38:00 +0000261 void WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout,
262 const RelMapTy &RelMap);
263
264 void CreateMetadataSections(MCAssembler &Asm, MCAsmLayout &Layout,
265 SectionIndexMapTy &SectionIndexMap,
266 const RelMapTy &RelMap);
267
268 // Create the sections that show up in the symbol table. Currently
269 // those are the .note.GNU-stack section and the group sections.
270 void CreateIndexedSections(MCAssembler &Asm, MCAsmLayout &Layout,
271 GroupMapTy &GroupMap,
272 RevGroupMapTy &RevGroupMap,
273 SectionIndexMapTy &SectionIndexMap,
274 const RelMapTy &RelMap);
275
Craig Topper34a61bc2014-03-08 07:02:02 +0000276 void ExecutePostLayoutBinding(MCAssembler &Asm,
277 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000278
279 void WriteSectionHeader(MCAssembler &Asm, const GroupMapTy &GroupMap,
280 const MCAsmLayout &Layout,
281 const SectionIndexMapTy &SectionIndexMap,
282 const SectionOffsetMapTy &SectionOffsetMap);
283
284 void ComputeSectionOrder(MCAssembler &Asm,
285 std::vector<const MCSectionELF*> &Sections);
286
287 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
288 uint64_t Address, uint64_t Offset,
289 uint64_t Size, uint32_t Link, uint32_t Info,
290 uint64_t Alignment, uint64_t EntrySize);
291
292 void WriteRelocationsFragment(const MCAssembler &Asm,
293 MCDataFragment *F,
294 const MCSectionData *SD);
295
Craig Topper34a61bc2014-03-08 07:02:02 +0000296 bool
Rafael Espindola29abd972011-12-22 03:38:00 +0000297 IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
298 const MCSymbolData &DataA,
299 const MCFragment &FB,
300 bool InSet,
Craig Topper34a61bc2014-03-08 07:02:02 +0000301 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000302
Craig Topper34a61bc2014-03-08 07:02:02 +0000303 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000304 void WriteSection(MCAssembler &Asm,
305 const SectionIndexMapTy &SectionIndexMap,
306 uint32_t GroupSymbolIndex,
307 uint64_t Offset, uint64_t Size, uint64_t Alignment,
308 const MCSectionELF &Section);
309 };
310}
311
Rafael Espindola0ce09712014-03-25 22:43:53 +0000312FragmentWriter::FragmentWriter(bool IsLittleEndian)
313 : IsLittleEndian(IsLittleEndian) {}
314
315template <typename T> void FragmentWriter::write(MCDataFragment &F, T Val) {
316 if (IsLittleEndian)
317 Val = support::endian::byte_swap<T, support::little>(Val);
318 else
319 Val = support::endian::byte_swap<T, support::big>(Val);
320 const char *Start = (const char *)&Val;
321 F.getContents().append(Start, Start + sizeof(T));
322}
323
Rafael Espindola10be0832014-03-25 23:44:25 +0000324void SymbolTableWriter::createSymtabShndx() {
325 if (ShndxF)
326 return;
327
328 MCContext &Ctx = Asm.getContext();
329 const MCSectionELF *SymtabShndxSection =
330 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0,
331 SectionKind::getReadOnly(), 4, "");
332 MCSectionData *SymtabShndxSD =
333 &Asm.getOrCreateSectionData(*SymtabShndxSection);
334 SymtabShndxSD->setAlignment(4);
335 ShndxF = new MCDataFragment(SymtabShndxSD);
336 unsigned Index = SectionIndexMap.size() + 1;
337 SectionIndexMap[SymtabShndxSection] = Index;
338
339 for (unsigned I = 0; I < NumWritten; ++I)
340 write(*ShndxF, uint32_t(0));
341}
342
343template <typename T>
344void SymbolTableWriter::write(MCDataFragment &F, T Value) {
345 FWriter.write(F, Value);
346}
347
348SymbolTableWriter::SymbolTableWriter(MCAssembler &Asm, FragmentWriter &FWriter,
349 bool Is64Bit,
350 SectionIndexMapTy &SectionIndexMap,
351 MCDataFragment *SymtabF)
352 : Asm(Asm), FWriter(FWriter), Is64Bit(Is64Bit),
353 SectionIndexMap(SectionIndexMap), SymtabF(SymtabF), ShndxF(nullptr),
354 NumWritten(0) {}
355
356void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
357 uint64_t size, uint8_t other,
358 uint32_t shndx, bool Reserved) {
359 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
360
361 if (LargeIndex)
362 createSymtabShndx();
363
364 if (ShndxF) {
365 if (LargeIndex)
366 write(*ShndxF, shndx);
367 else
368 write(*ShndxF, uint32_t(0));
369 }
370
371 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
372
373 raw_svector_ostream OS(SymtabF->getContents());
374
375 if (Is64Bit) {
376 write(*SymtabF, name); // st_name
377 write(*SymtabF, info); // st_info
378 write(*SymtabF, other); // st_other
379 write(*SymtabF, Index); // st_shndx
380 write(*SymtabF, value); // st_value
381 write(*SymtabF, size); // st_size
382 } else {
383 write(*SymtabF, name); // st_name
384 write(*SymtabF, uint32_t(value)); // st_value
385 write(*SymtabF, uint32_t(size)); // st_size
386 write(*SymtabF, info); // st_info
387 write(*SymtabF, other); // st_other
388 write(*SymtabF, Index); // st_shndx
389 }
390
391 ++NumWritten;
392}
393
Jan Sjödin30a52de2011-02-28 21:45:04 +0000394bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
395 const MCFixupKindInfo &FKI =
396 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
397
398 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
399}
400
401bool ELFObjectWriter::RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
402 switch (Variant) {
403 default:
404 return false;
405 case MCSymbolRefExpr::VK_GOT:
406 case MCSymbolRefExpr::VK_PLT:
407 case MCSymbolRefExpr::VK_GOTPCREL:
Rafael Espindola940a0ee2011-06-05 01:20:06 +0000408 case MCSymbolRefExpr::VK_GOTOFF:
Jan Sjödin30a52de2011-02-28 21:45:04 +0000409 case MCSymbolRefExpr::VK_TPOFF:
410 case MCSymbolRefExpr::VK_TLSGD:
411 case MCSymbolRefExpr::VK_GOTTPOFF:
412 case MCSymbolRefExpr::VK_INDNTPOFF:
413 case MCSymbolRefExpr::VK_NTPOFF:
414 case MCSymbolRefExpr::VK_GOTNTPOFF:
415 case MCSymbolRefExpr::VK_TLSLDM:
416 case MCSymbolRefExpr::VK_DTPOFF:
417 case MCSymbolRefExpr::VK_TLSLD:
418 return true;
419 }
420}
421
Jason W Kim96f4c012010-11-15 16:18:39 +0000422ELFObjectWriter::~ELFObjectWriter()
423{}
424
Matt Fleming6c1ad482010-08-16 18:57:57 +0000425// Emit the ELF header.
Jack Carter1bd90ff2013-01-30 02:09:52 +0000426void ELFObjectWriter::WriteHeader(const MCAssembler &Asm,
427 uint64_t SectionDataSize,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000428 unsigned NumberOfSections) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000429 // ELF Header
430 // ----------
431 //
432 // Note
433 // ----
434 // emitWord method behaves differently for ELF32 and ELF64, writing
435 // 4 bytes in the former and 8 in the latter.
436
437 Write8(0x7f); // e_ident[EI_MAG0]
438 Write8('E'); // e_ident[EI_MAG1]
439 Write8('L'); // e_ident[EI_MAG2]
440 Write8('F'); // e_ident[EI_MAG3]
441
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000442 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000443
444 // e_ident[EI_DATA]
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000445 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000446
447 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000448 // e_ident[EI_OSABI]
Rafael Espindola1ad40952011-12-21 17:00:36 +0000449 Write8(TargetObjectWriter->getOSABI());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000450 Write8(0); // e_ident[EI_ABIVERSION]
451
452 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
453
454 Write16(ELF::ET_REL); // e_type
455
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000456 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000457
458 Write32(ELF::EV_CURRENT); // e_version
459 WriteWord(0); // e_entry, no entry point in .o file
460 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000461 WriteWord(SectionDataSize + (is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
Benjamin Kramer896bd7e2010-08-17 17:02:29 +0000462 sizeof(ELF::Elf32_Ehdr))); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000463
Jason W Kim4761fba2011-02-04 21:41:11 +0000464 // e_flags = whatever the target wants
Jack Carter1bd90ff2013-01-30 02:09:52 +0000465 Write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000466
467 // e_ehsize = ELF header size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000468 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000469
470 Write16(0); // e_phentsize = prog header entry size
471 Write16(0); // e_phnum = # prog header entries = 0
472
473 // e_shentsize = Section header entry size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000474 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000475
476 // e_shnum = # of section header ents
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000477 if (NumberOfSections >= ELF::SHN_LORESERVE)
Nick Lewycky4eb11432011-10-07 20:56:23 +0000478 Write16(ELF::SHN_UNDEF);
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000479 else
480 Write16(NumberOfSections);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000481
482 // e_shstrndx = Section # of '.shstrtab'
Nick Lewycky8b02d362011-10-07 20:58:24 +0000483 if (ShstrtabIndex >= ELF::SHN_LORESERVE)
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000484 Write16(ELF::SHN_XINDEX);
485 else
486 Write16(ShstrtabIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000487}
488
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000489uint64_t ELFObjectWriter::SymbolValue(MCSymbolData &OrigData,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000490 const MCAsmLayout &Layout) {
Rafael Espindolab60c8292014-04-29 12:46:50 +0000491 const MCSymbol &OrigSymbol = OrigData.getSymbol();
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000492 MCSymbolData *Data = &OrigData;
493 if (Data->isCommon() && Data->isExternal())
494 return Data->getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000495
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000496 const MCSymbol *Symbol = &Data->getSymbol();
Roman Divacky55184dd2010-12-20 21:14:39 +0000497
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000498 uint64_t Res = 0;
499 if (Symbol->isVariable()) {
500 const MCExpr *Expr = Symbol->getVariableValue();
501 MCValue Value;
Rafael Espindolabc91d7e2014-04-28 20:53:11 +0000502 if (!Expr->EvaluateAsValue(Value, &Layout))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000503 llvm_unreachable("Invalid expression");
504
505 assert(!Value.getSymB());
506
507 Res = Value.getConstant();
508
509 if (const MCSymbolRefExpr *A = Value.getSymA()) {
510 Symbol = &A->getSymbol();
511 Data = &Layout.getAssembler().getSymbolData(*Symbol);
512 } else {
Craig Topperbb694de2014-04-13 04:57:38 +0000513 Symbol = nullptr;
514 Data = nullptr;
Rafael Espindola7bbd5c22014-03-19 00:13:43 +0000515 }
Roman Divacky55184dd2010-12-20 21:14:39 +0000516 }
517
Rafael Espindolab60c8292014-04-29 12:46:50 +0000518 const MCAssembler &Asm = Layout.getAssembler();
519 if (Asm.isThumbFunc(&OrigSymbol))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000520 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000521
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000522 if (!Symbol || !Symbol->isInSection())
523 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000524
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000525 Res += Layout.getSymbolOffset(Data);
526
527 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000528}
529
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000530void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
531 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000532 // The presence of symbol versions causes undefined symbols and
533 // versions declared with @@@ to be renamed.
534
David Blaikie583a31c2014-04-18 18:24:25 +0000535 for (MCSymbolData &OriginalData : Asm.symbols()) {
536 const MCSymbol &Alias = OriginalData.getSymbol();
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000537
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000538 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000539 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000540 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000541 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
542 if (!Ref)
543 continue;
544 const MCSymbol &Symbol = Ref->getSymbol();
545 MCSymbolData &SD = Asm.getSymbolData(Symbol);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000546
Benjamin Kramer14807272010-10-27 19:53:52 +0000547 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000548 size_t Pos = AliasName.find('@');
549 if (Pos == StringRef::npos)
550 continue;
551
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000552 // Aliases defined with .symvar copy the binding from the symbol they alias.
553 // This is the first place we are able to copy this information.
David Blaikie583a31c2014-04-18 18:24:25 +0000554 OriginalData.setExternal(SD.isExternal());
555 MCELF::SetBinding(OriginalData, MCELF::GetBinding(SD));
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000556
Benjamin Kramer14807272010-10-27 19:53:52 +0000557 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000558 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
559 continue;
560
Rafael Espindola26496e62010-10-27 17:56:18 +0000561 // FIXME: produce a better error message.
562 if (Symbol.isUndefined() && Rest.startswith("@@") &&
563 !Rest.startswith("@@@"))
564 report_fatal_error("A @@ version cannot be undefined");
565
Benjamin Kramer14807272010-10-27 19:53:52 +0000566 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000567 }
568}
569
Roman Divacky5a1c5492014-01-07 20:17:03 +0000570static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
571 uint8_t Type = newType;
572
573 // Propagation rules:
574 // IFUNC > FUNC > OBJECT > NOTYPE
575 // TLS_OBJECT > OBJECT > NOTYPE
576 //
577 // dont let the new type degrade the old type
578 switch (origType) {
579 default:
580 break;
581 case ELF::STT_GNU_IFUNC:
582 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
583 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
584 Type = ELF::STT_GNU_IFUNC;
585 break;
586 case ELF::STT_FUNC:
587 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
588 Type == ELF::STT_TLS)
589 Type = ELF::STT_FUNC;
590 break;
591 case ELF::STT_OBJECT:
592 if (Type == ELF::STT_NOTYPE)
593 Type = ELF::STT_OBJECT;
594 break;
595 case ELF::STT_TLS:
596 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
597 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
598 Type = ELF::STT_TLS;
599 break;
600 }
601
602 return Type;
603}
604
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000605static const MCSymbol *getBaseSymbol(const MCAsmLayout &Layout,
606 const MCSymbol &Symbol) {
607 if (!Symbol.isVariable())
608 return &Symbol;
609
610 const MCExpr *Expr = Symbol.getVariableValue();
611 MCValue Value;
Rafael Espindolabc91d7e2014-04-28 20:53:11 +0000612 if (!Expr->EvaluateAsValue(Value, &Layout))
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000613 llvm_unreachable("Invalid Expression");
Rafael Espindola96450902014-04-28 12:40:50 +0000614 const MCSymbolRefExpr *RefB = Value.getSymB();
615 if (RefB) {
616 Layout.getAssembler().getContext().FatalError(
617 SMLoc(), Twine("symbol '") + RefB->getSymbol().getName() +
618 "' could not be evaluated in a subtraction expression");
619 }
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000620 const MCSymbolRefExpr *A = Value.getSymA();
621 if (!A)
622 return nullptr;
623 return getBaseSymbol(Layout, A->getSymbol());
624}
625
Rafael Espindola10be0832014-03-25 23:44:25 +0000626void ELFObjectWriter::WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000627 const MCAsmLayout &Layout) {
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000628 MCSymbolData &OrigData = *MSD.SymbolData;
David Blaikieb5956d22014-04-19 00:50:15 +0000629 assert((!OrigData.getFragment() ||
630 (&OrigData.getFragment()->getParent()->getSection() ==
631 &OrigData.getSymbol().getSection())) &&
632 "The symbol's section doesn't match the fragment's symbol");
Rafael Espindola85a84912014-03-26 00:16:43 +0000633 const MCSymbol *Base = getBaseSymbol(Layout, OrigData.getSymbol());
634
635 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
636 // SHN_COMMON.
637 bool IsReserved = !Base || OrigData.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000638
Jack Carter2f8d9d92013-02-19 21:57:35 +0000639 // Binding and Type share the same byte as upper and lower nibbles
Jan Sjödin30a52de2011-02-28 21:45:04 +0000640 uint8_t Binding = MCELF::GetBinding(OrigData);
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000641 uint8_t Type = MCELF::GetType(OrigData);
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000642 MCSymbolData *BaseSD = nullptr;
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000643 if (Base) {
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000644 BaseSD = &Layout.getAssembler().getSymbolData(*Base);
645 Type = mergeTypeForSet(Type, MCELF::GetType(*BaseSD));
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000646 }
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000647 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000648
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000649 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000650 // 2 bits
651 uint8_t Visibility = MCELF::GetVisibility(OrigData);
Logan Chienee365952013-12-05 00:34:11 +0000652 uint8_t Other = MCELF::getOther(OrigData) << (ELF_STO_Shift - ELF_STV_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000653 Other |= Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000654
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000655 uint64_t Value = SymbolValue(OrigData, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000656 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000657
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000658 const MCExpr *ESize = OrigData.getSize();
659 if (!ESize && Base)
660 ESize = BaseSD->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000661
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000662 if (ESize) {
663 int64_t Res;
664 if (!ESize->EvaluateAsAbsolute(Res, Layout))
665 report_fatal_error("Size expression must be absolute.");
666 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000667 }
668
669 // Write out the symbol table entry
Rafael Espindola10be0832014-03-25 23:44:25 +0000670 Writer.writeSymbol(MSD.StringIndex, Info, Value, Size, Other,
671 MSD.SectionIndex, IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000672}
673
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000674void ELFObjectWriter::WriteSymbolTable(MCDataFragment *SymtabF,
Rafael Espindola10be0832014-03-25 23:44:25 +0000675 MCAssembler &Asm,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000676 const MCAsmLayout &Layout,
Rafael Espindola10be0832014-03-25 23:44:25 +0000677 SectionIndexMapTy &SectionIndexMap) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000678 // The string table must be emitted first because we need the index
679 // into the string table for all the symbol names.
Matt Fleming6c1ad482010-08-16 18:57:57 +0000680
681 // FIXME: Make sure the start of the symbol table is aligned.
682
Rafael Espindola10be0832014-03-25 23:44:25 +0000683 SymbolTableWriter Writer(Asm, FWriter, is64Bit(), SectionIndexMap, SymtabF);
684
Matt Fleming6c1ad482010-08-16 18:57:57 +0000685 // The first entry is the undefined symbol entry.
Rafael Espindola10be0832014-03-25 23:44:25 +0000686 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000687
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000688 for (unsigned i = 0, e = FileSymbolData.size(); i != e; ++i) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000689 Writer.writeSymbol(FileSymbolData[i], ELF::STT_FILE | ELF::STB_LOCAL, 0, 0,
690 ELF::STV_DEFAULT, ELF::SHN_ABS, true);
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000691 }
692
Matt Fleming6c1ad482010-08-16 18:57:57 +0000693 // Write the symbol table entries.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000694 LastLocalSymbolIndex = FileSymbolData.size() + LocalSymbolData.size() + 1;
695
Matt Fleming6c1ad482010-08-16 18:57:57 +0000696 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
697 ELFSymbolData &MSD = LocalSymbolData[i];
Rafael Espindola10be0832014-03-25 23:44:25 +0000698 WriteSymbol(Writer, MSD, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000699 }
700
Rafael Espindola44bf2662010-09-16 19:46:31 +0000701 // Write out a symbol table entry for each regular section.
Rafael Espindola18014102010-11-10 22:16:43 +0000702 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e;
703 ++i) {
Eli Friedman1fe0d532010-08-16 21:17:09 +0000704 const MCSectionELF &Section =
Rafael Espindola18014102010-11-10 22:16:43 +0000705 static_cast<const MCSectionELF&>(i->getSection());
706 if (Section.getType() == ELF::SHT_RELA ||
707 Section.getType() == ELF::SHT_REL ||
708 Section.getType() == ELF::SHT_STRTAB ||
Nick Lewycky133a1682011-10-07 23:29:53 +0000709 Section.getType() == ELF::SHT_SYMTAB ||
710 Section.getType() == ELF::SHT_SYMTAB_SHNDX)
Eli Friedman1fe0d532010-08-16 21:17:09 +0000711 continue;
Rafael Espindola10be0832014-03-25 23:44:25 +0000712 Writer.writeSymbol(0, ELF::STT_SECTION, 0, 0, ELF::STV_DEFAULT,
713 SectionIndexMap.lookup(&Section), false);
Eli Friedman1fe0d532010-08-16 21:17:09 +0000714 LastLocalSymbolIndex++;
715 }
Matt Fleming6c1ad482010-08-16 18:57:57 +0000716
717 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
718 ELFSymbolData &MSD = ExternalSymbolData[i];
719 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola83b2a332010-10-06 16:47:31 +0000720 assert(((Data.getFlags() & ELF_STB_Global) ||
721 (Data.getFlags() & ELF_STB_Weak)) &&
722 "External symbol requires STB_GLOBAL or STB_WEAK flag");
Rafael Espindola10be0832014-03-25 23:44:25 +0000723 WriteSymbol(Writer, MSD, Layout);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000724 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming6c1ad482010-08-16 18:57:57 +0000725 LastLocalSymbolIndex++;
726 }
727
728 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
729 ELFSymbolData &MSD = UndefinedSymbolData[i];
730 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola10be0832014-03-25 23:44:25 +0000731 WriteSymbol(Writer, MSD, Layout);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000732 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming6c1ad482010-08-16 18:57:57 +0000733 LastLocalSymbolIndex++;
734 }
735}
736
Rafael Espindola5904e122014-03-29 06:26:49 +0000737// It is always valid to create a relocation with a symbol. It is preferable
738// to use a relocation with a section if that is possible. Using the section
739// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000740bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
741 const MCSymbolRefExpr *RefA,
Rafael Espindola5904e122014-03-29 06:26:49 +0000742 const MCSymbolData *SD,
743 uint64_t C,
744 unsigned Type) const {
745 // A PCRel relocation to an absolute value has no symbol (or section). We
746 // represent that with a relocation to a null section.
747 if (!RefA)
748 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000749
Rafael Espindola5904e122014-03-29 06:26:49 +0000750 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
751 switch (Kind) {
752 default:
753 break;
754 // The .odp creation emits a relocation against the symbol ".TOC." which
755 // create a R_PPC64_TOC relocation. However the relocation symbol name
756 // in final object creation should be NULL, since the symbol does not
757 // really exist, it is just the reference to TOC base for the current
758 // object file. Since the symbol is undefined, returning false results
759 // in a relocation with a null section which is the desired result.
760 case MCSymbolRefExpr::VK_PPC_TOCBASE:
761 return false;
762
763 // These VariantKind cause the relocation to refer to something other than
764 // the symbol itself, like a linker generated table. Since the address of
765 // symbol is not relevant, we cannot replace the symbol with the
766 // section and patch the difference in the addend.
767 case MCSymbolRefExpr::VK_GOT:
768 case MCSymbolRefExpr::VK_PLT:
769 case MCSymbolRefExpr::VK_GOTPCREL:
770 case MCSymbolRefExpr::VK_Mips_GOT:
771 case MCSymbolRefExpr::VK_PPC_GOT_LO:
772 case MCSymbolRefExpr::VK_PPC_GOT_HI:
773 case MCSymbolRefExpr::VK_PPC_GOT_HA:
774 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000775 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000776
Rafael Espindola5904e122014-03-29 06:26:49 +0000777 // An undefined symbol is not in any section, so the relocation has to point
778 // to the symbol itself.
779 const MCSymbol &Sym = SD->getSymbol();
780 if (Sym.isUndefined())
781 return true;
782
783 unsigned Binding = MCELF::GetBinding(*SD);
784 switch(Binding) {
785 default:
786 llvm_unreachable("Invalid Binding");
787 case ELF::STB_LOCAL:
788 break;
789 case ELF::STB_WEAK:
790 // If the symbol is weak, it might be overridden by a symbol in another
791 // file. The relocation has to point to the symbol so that the linker
792 // can update it.
793 return true;
794 case ELF::STB_GLOBAL:
795 // Global ELF symbols can be preempted by the dynamic linker. The relocation
796 // has to point to the symbol for a reason analogous to the STB_WEAK case.
797 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000798 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000799
Rafael Espindola5904e122014-03-29 06:26:49 +0000800 // If a relocation points to a mergeable section, we have to be careful.
801 // If the offset is zero, a relocation with the section will encode the
802 // same information. With a non-zero offset, the situation is different.
803 // For example, a relocation can point 42 bytes past the end of a string.
804 // If we change such a relocation to use the section, the linker would think
805 // that it pointed to another string and subtracting 42 at runtime will
806 // produce the wrong value.
807 auto &Sec = cast<MCSectionELF>(Sym.getSection());
808 unsigned Flags = Sec.getFlags();
809 if (Flags & ELF::SHF_MERGE) {
810 if (C != 0)
811 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000812
813 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
814 // only handle section relocations to mergeable sections if using RELA.
815 if (!hasRelocationAddend())
816 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000817 }
818
Rafael Espindola5904e122014-03-29 06:26:49 +0000819 // Most TLS relocations use a got, so they need the symbol. Even those that
820 // are just an offset (@tpoff), require a symbol in some linkers (gold,
821 // but not bfd ld).
822 if (Flags & ELF::SHF_TLS)
823 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000824
Rafael Espindola9ef84412014-04-11 19:18:01 +0000825 // If the symbol is a thumb function the final relocation must set the lowest
826 // bit. With a symbol that is done by just having the symbol have that bit
827 // set, so we would lose the bit if we relocated with the section.
828 // FIXME: We could use the section but add the bit to the relocation value.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000829 if (Asm.isThumbFunc(&Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000830 return true;
831
Rafael Espindola5904e122014-03-29 06:26:49 +0000832 if (TargetObjectWriter->needsRelocateWithSymbol(Type))
833 return true;
834 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000835}
836
Jason W Kim495c2bb2010-12-06 21:57:34 +0000837void ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
838 const MCAsmLayout &Layout,
839 const MCFragment *Fragment,
840 const MCFixup &Fixup,
841 MCValue Target,
Rafael Espindola5904e122014-03-29 06:26:49 +0000842 bool &IsPCRel,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000843 uint64_t &FixedValue) {
Rafael Espindola5904e122014-03-29 06:26:49 +0000844 const MCSectionData *FixupSection = Fragment->getParent();
845 uint64_t C = Target.getConstant();
846 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000847
Rafael Espindola5904e122014-03-29 06:26:49 +0000848 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
849 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
850 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000851
Rafael Espindola5904e122014-03-29 06:26:49 +0000852 // Let A, B and C being the components of Target and R be the location of
853 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
854 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000855
Rafael Espindola5904e122014-03-29 06:26:49 +0000856 // In general, ELF has no relocations for -B. It can only represent (A + C)
857 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
858 // replace B to implement it: (A - R - K + C)
859 if (IsPCRel)
860 Asm.getContext().FatalError(
861 Fixup.getLoc(),
862 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000863
Rafael Espindola5904e122014-03-29 06:26:49 +0000864 const MCSymbol &SymB = RefB->getSymbol();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000865
Rafael Espindola5904e122014-03-29 06:26:49 +0000866 if (SymB.isUndefined())
867 Asm.getContext().FatalError(
868 Fixup.getLoc(),
869 Twine("symbol '") + SymB.getName() +
870 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000871
Rafael Espindola5904e122014-03-29 06:26:49 +0000872 assert(!SymB.isAbsolute() && "Should have been folded");
873 const MCSection &SecB = SymB.getSection();
874 if (&SecB != &FixupSection->getSection())
875 Asm.getContext().FatalError(
876 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000877
Rafael Espindola5904e122014-03-29 06:26:49 +0000878 const MCSymbolData &SymBD = Asm.getSymbolData(SymB);
879 uint64_t SymBOffset = Layout.getSymbolOffset(&SymBD);
880 uint64_t K = SymBOffset - FixupOffset;
881 IsPCRel = true;
882 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000883 }
884
Rafael Espindola5904e122014-03-29 06:26:49 +0000885 // We either rejected the fixup or folded B into C at this point.
886 const MCSymbolRefExpr *RefA = Target.getSymA();
887 const MCSymbol *SymA = RefA ? &RefA->getSymbol() : nullptr;
888 const MCSymbolData *SymAD = SymA ? &Asm.getSymbolData(*SymA) : nullptr;
889
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000890 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindolab60c8292014-04-29 12:46:50 +0000891 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymAD, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000892 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
893 C += Layout.getSymbolOffset(SymAD);
894
895 uint64_t Addend = 0;
896 if (hasRelocationAddend()) {
897 Addend = C;
898 C = 0;
899 }
900
901 FixedValue = C;
902
903 // FIXME: What is this!?!?
904 MCSymbolRefExpr::VariantKind Modifier =
905 RefA ? RefA->getKind() : MCSymbolRefExpr::VK_None;
Rafael Espindola9e252bf2011-12-21 14:26:29 +0000906 if (RelocNeedsGOT(Modifier))
907 NeedsGOT = true;
Jan Sjödin30a52de2011-02-28 21:45:04 +0000908
Rafael Espindola5904e122014-03-29 06:26:49 +0000909 if (!RelocateWithSymbol) {
910 const MCSection *SecA =
911 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
912 const MCSectionData *SecAD = SecA ? &Asm.getSectionData(*SecA) : nullptr;
913 ELFRelocationEntry Rec(FixupOffset, SecAD, Type, Addend);
914 Relocations[FixupSection].push_back(Rec);
915 return;
916 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000917
Rafael Espindola5904e122014-03-29 06:26:49 +0000918 if (SymA) {
919 if (const MCSymbol *R = Renames.lookup(SymA))
920 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000921
Rafael Espindola5904e122014-03-29 06:26:49 +0000922 if (RefA->getKind() == MCSymbolRefExpr::VK_WEAKREF)
923 WeakrefUsedInReloc.insert(SymA);
924 else
925 UsedInReloc.insert(SymA);
926 }
927 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
928 Relocations[FixupSection].push_back(Rec);
929 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000930}
931
932
Benjamin Kramer86511dc2010-08-23 21:19:37 +0000933uint64_t
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000934ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
935 const MCSymbol *S) {
David Blaikie908f4d42014-04-24 16:59:40 +0000936 const MCSymbolData &SD = Asm.getSymbolData(*S);
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000937 return SD.getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000938}
939
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000940bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
941 const MCSymbolData &Data, bool Used,
942 bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000943 const MCSymbol &Symbol = Data.getSymbol();
944 if (Symbol.isVariable()) {
945 const MCExpr *Expr = Symbol.getVariableValue();
946 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
947 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
948 return false;
949 }
950 }
Rafael Espindola16145972010-11-01 14:28:48 +0000951
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000952 if (Used)
953 return true;
954
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000955 if (Renamed)
956 return false;
957
Rafael Espindola45834a02010-10-29 23:09:31 +0000958 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
959 return true;
960
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000961 if (Symbol.isVariable()) {
962 const MCSymbol *Base = getBaseSymbol(Layout, Symbol);
963 if (Base && Base->isUndefined())
964 return false;
965 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000966
Jan Sjödin30a52de2011-02-28 21:45:04 +0000967 bool IsGlobal = MCELF::GetBinding(Data) == ELF::STB_GLOBAL;
Rafael Espindola9e18e962011-02-23 20:22:07 +0000968 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000969 return false;
970
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000971 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000972 return false;
973
974 return true;
975}
976
Rafael Espindola39f50422014-04-28 14:24:44 +0000977bool ELFObjectWriter::isLocal(const MCSymbolData &Data, bool isUsedInReloc) {
Rafael Espindolab1d07892010-10-05 18:01:23 +0000978 if (Data.isExternal())
979 return false;
980
981 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindola39f50422014-04-28 14:24:44 +0000982 if (Symbol.isDefined())
983 return true;
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000984
Rafael Espindola39f50422014-04-28 14:24:44 +0000985 if (isUsedInReloc)
Rafael Espindolab1d07892010-10-05 18:01:23 +0000986 return false;
987
988 return true;
989}
990
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000991void ELFObjectWriter::ComputeIndexMap(MCAssembler &Asm,
Rafael Espindola1557fd62011-03-20 18:44:20 +0000992 SectionIndexMapTy &SectionIndexMap,
993 const RelMapTy &RelMap) {
Rafael Espindolad6340032010-11-10 21:51:05 +0000994 unsigned Index = 1;
995 for (MCAssembler::iterator it = Asm.begin(),
996 ie = Asm.end(); it != ie; ++it) {
997 const MCSectionELF &Section =
998 static_cast<const MCSectionELF &>(it->getSection());
Rafael Espindolaa3e9a222010-11-11 18:13:52 +0000999 if (Section.getType() != ELF::SHT_GROUP)
1000 continue;
1001 SectionIndexMap[&Section] = Index++;
1002 }
1003
1004 for (MCAssembler::iterator it = Asm.begin(),
1005 ie = Asm.end(); it != ie; ++it) {
1006 const MCSectionELF &Section =
1007 static_cast<const MCSectionELF &>(it->getSection());
Rafael Espindola1557fd62011-03-20 18:44:20 +00001008 if (Section.getType() == ELF::SHT_GROUP ||
1009 Section.getType() == ELF::SHT_REL ||
1010 Section.getType() == ELF::SHT_RELA)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001011 continue;
Rafael Espindolad6340032010-11-10 21:51:05 +00001012 SectionIndexMap[&Section] = Index++;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001013 const MCSectionELF *RelSection = RelMap.lookup(&Section);
1014 if (RelSection)
1015 SectionIndexMap[RelSection] = Index++;
Rafael Espindolad6340032010-11-10 21:51:05 +00001016 }
1017}
1018
Rafael Espindola022bb762014-03-24 03:43:21 +00001019void
1020ELFObjectWriter::computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
1021 const SectionIndexMapTy &SectionIndexMap,
1022 RevGroupMapTy RevGroupMap,
1023 unsigned NumRegularSections) {
Rafael Espindolad03e81d2010-10-05 15:48:37 +00001024 // FIXME: Is this the correct place to do this?
Rafael Espindola940a0ee2011-06-05 01:20:06 +00001025 // FIXME: Why is an undefined reference to _GLOBAL_OFFSET_TABLE_ needed?
Rafael Espindolad03e81d2010-10-05 15:48:37 +00001026 if (NeedsGOT) {
Dmitri Gribenko226fea52013-01-13 16:01:15 +00001027 StringRef Name = "_GLOBAL_OFFSET_TABLE_";
Rafael Espindolad03e81d2010-10-05 15:48:37 +00001028 MCSymbol *Sym = Asm.getContext().GetOrCreateSymbol(Name);
1029 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
1030 Data.setExternal(true);
Jan Sjödin30a52de2011-02-28 21:45:04 +00001031 MCELF::SetBinding(Data, ELF::STB_GLOBAL);
Rafael Espindolad03e81d2010-10-05 15:48:37 +00001032 }
1033
Rafael Espindolabee6e9f2010-10-14 16:34:44 +00001034 // Add the data for the symbols.
David Blaikie583a31c2014-04-18 18:24:25 +00001035 for (MCSymbolData &SD : Asm.symbols()) {
1036 const MCSymbol &Symbol = SD.getSymbol();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001037
Rafael Espindola16145972010-11-01 14:28:48 +00001038 bool Used = UsedInReloc.count(&Symbol);
1039 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001040 bool isSignature = RevGroupMap.count(&Symbol);
1041
Rafael Espindola3b5ee552014-04-28 13:39:57 +00001042 if (!isInSymtab(Layout, SD,
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001043 Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001044 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +00001045 continue;
1046
Matt Fleming6c1ad482010-08-16 18:57:57 +00001047 ELFSymbolData MSD;
David Blaikie583a31c2014-04-18 18:24:25 +00001048 MSD.SymbolData = &SD;
Rafael Espindola022bb762014-03-24 03:43:21 +00001049 const MCSymbol *BaseSymbol = getBaseSymbol(Layout, Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001050
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001051 // Undefined symbols are global, but this is the first place we
1052 // are able to set it.
Rafael Espindola39f50422014-04-28 14:24:44 +00001053 bool Local = isLocal(SD, Used);
David Blaikie583a31c2014-04-18 18:24:25 +00001054 if (!Local && MCELF::GetBinding(SD) == ELF::STB_LOCAL) {
Rafael Espindola022bb762014-03-24 03:43:21 +00001055 assert(BaseSymbol);
David Blaikie583a31c2014-04-18 18:24:25 +00001056 MCSymbolData &BaseData = Asm.getSymbolData(*BaseSymbol);
Jan Sjödin30a52de2011-02-28 21:45:04 +00001057 MCELF::SetBinding(SD, ELF::STB_GLOBAL);
David Blaikie583a31c2014-04-18 18:24:25 +00001058 MCELF::SetBinding(BaseData, ELF::STB_GLOBAL);
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001059 }
1060
Rafael Espindola022bb762014-03-24 03:43:21 +00001061 if (!BaseSymbol) {
1062 MSD.SectionIndex = ELF::SHN_ABS;
David Blaikie583a31c2014-04-18 18:24:25 +00001063 } else if (SD.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +00001064 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +00001065 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindola022bb762014-03-24 03:43:21 +00001066 } else if (BaseSymbol->isUndefined()) {
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001067 if (isSignature && !Used)
1068 MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]);
1069 else
1070 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola022bb762014-03-24 03:43:21 +00001071 if (!Used && WeakrefUsed)
David Blaikie583a31c2014-04-18 18:24:25 +00001072 MCELF::SetBinding(SD, ELF::STB_WEAK);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001073 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +00001074 const MCSectionELF &Section =
Rafael Espindola022bb762014-03-24 03:43:21 +00001075 static_cast<const MCSectionELF&>(BaseSymbol->getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +00001076 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001077 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindolafbcf0db2010-10-15 15:39:06 +00001078 }
1079
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001080 // The @@@ in symbol version is replaced with @ in undefined symbols and
1081 // @@ in defined ones.
1082 StringRef Name = Symbol.getName();
Benjamin Kramerdcc77322010-11-12 19:26:04 +00001083 SmallString<32> Buf;
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 }
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001091 MSD.Name = StrTabBuilder.add(Name);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001092
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +00001093 if (MSD.SectionIndex == ELF::SHN_UNDEF)
1094 UndefinedSymbolData.push_back(MSD);
1095 else if (Local)
1096 LocalSymbolData.push_back(MSD);
1097 else
1098 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001099 }
1100
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001101 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i)
1102 StrTabBuilder.add(*i);
1103
1104 StrTabBuilder.finalize();
1105
1106 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i)
1107 FileSymbolData.push_back(StrTabBuilder.getOffset(*i));
1108
1109 for (ELFSymbolData& MSD : LocalSymbolData)
1110 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
1111 for (ELFSymbolData& MSD : ExternalSymbolData)
1112 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
1113 for (ELFSymbolData& MSD : UndefinedSymbolData)
1114 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
1115
Matt Fleming6c1ad482010-08-16 18:57:57 +00001116 // Symbols are required to be in lexicographic order.
1117 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
1118 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
1119 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
1120
1121 // Set the symbol indices. Local symbols must come before all other
1122 // symbols with non-local bindings.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +00001123 unsigned Index = FileSymbolData.size() + 1;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001124 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
1125 LocalSymbolData[i].SymbolData->setIndex(Index++);
Rafael Espindola0e3decf2010-11-14 03:12:24 +00001126
1127 Index += NumRegularSections;
1128
Matt Fleming6c1ad482010-08-16 18:57:57 +00001129 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
1130 ExternalSymbolData[i].SymbolData->setIndex(Index++);
1131 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
1132 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
1133}
1134
Rafael Espindola1557fd62011-03-20 18:44:20 +00001135void ELFObjectWriter::CreateRelocationSections(MCAssembler &Asm,
1136 MCAsmLayout &Layout,
1137 RelMapTy &RelMap) {
1138 for (MCAssembler::const_iterator it = Asm.begin(),
1139 ie = Asm.end(); it != ie; ++it) {
1140 const MCSectionData &SD = *it;
1141 if (Relocations[&SD].empty())
1142 continue;
1143
Matt Fleming6c1ad482010-08-16 18:57:57 +00001144 MCContext &Ctx = Asm.getContext();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001145 const MCSectionELF &Section =
1146 static_cast<const MCSectionELF&>(SD.getSection());
1147
1148 const StringRef SectionName = Section.getSectionName();
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001149 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
Matt Fleming6c1ad482010-08-16 18:57:57 +00001150 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +00001151
1152 unsigned EntrySize;
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001153 if (hasRelocationAddend())
1154 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
Benjamin Kramerfd054152010-08-17 17:56:13 +00001155 else
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001156 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001157
Tim Northovera630fb02013-07-10 20:58:17 +00001158 unsigned Flags = 0;
1159 StringRef Group = "";
1160 if (Section.getFlags() & ELF::SHF_GROUP) {
David Blaikie1e412ea2013-10-22 20:34:30 +00001161 Flags = ELF::SHF_GROUP;
1162 Group = Section.getGroup()->getName();
Tim Northovera630fb02013-07-10 20:58:17 +00001163 }
1164
Rafael Espindola1557fd62011-03-20 18:44:20 +00001165 const MCSectionELF *RelaSection =
1166 Ctx.getELFSection(RelaSectionName, hasRelocationAddend() ?
Tim Northovera630fb02013-07-10 20:58:17 +00001167 ELF::SHT_RELA : ELF::SHT_REL, Flags,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001168 SectionKind::getReadOnly(),
Tim Northovera630fb02013-07-10 20:58:17 +00001169 EntrySize, Group);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001170 RelMap[&Section] = RelaSection;
1171 Asm.getOrCreateSectionData(*RelaSection);
1172 }
1173}
Matt Fleming6c1ad482010-08-16 18:57:57 +00001174
David Blaikiee06e8012014-04-11 22:11:50 +00001175static SmallVector<char, 128>
1176getUncompressedData(MCAsmLayout &Layout,
1177 MCSectionData::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +00001178 SmallVector<char, 128> UncompressedData;
1179 for (const MCFragment &F : Fragments) {
1180 const SmallVectorImpl<char> *Contents;
1181 switch (F.getKind()) {
1182 case MCFragment::FT_Data:
1183 Contents = &cast<MCDataFragment>(F).getContents();
1184 break;
1185 case MCFragment::FT_Dwarf:
1186 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
1187 break;
1188 case MCFragment::FT_DwarfFrame:
1189 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
1190 break;
1191 default:
1192 llvm_unreachable(
1193 "Not expecting any other fragment types in a debug_* section");
1194 }
1195 UncompressedData.append(Contents->begin(), Contents->end());
1196 }
1197 return UncompressedData;
1198}
1199
1200// Include the debug info compression header:
1201// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
1202// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +00001203static bool
David Blaikiee06e8012014-04-11 22:11:50 +00001204prependCompressionHeader(uint64_t Size,
1205 SmallVectorImpl<char> &CompressedContents) {
David Blaikie8019bf82014-04-10 21:53:53 +00001206 static const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +00001207 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
1208 return false;
David Blaikie8019bf82014-04-10 21:53:53 +00001209 if (sys::IsLittleEndianHost)
1210 Size = sys::SwapByteOrder(Size);
1211 CompressedContents.insert(CompressedContents.begin(),
1212 Magic.size() + sizeof(Size), 0);
1213 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
1214 std::copy(reinterpret_cast<char *>(&Size),
1215 reinterpret_cast<char *>(&Size + 1),
1216 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +00001217 return true;
David Blaikie8019bf82014-04-10 21:53:53 +00001218}
1219
1220// Return a single fragment containing the compressed contents of the whole
1221// section. Null if the section was not compressed for any reason.
David Blaikiee06e8012014-04-11 22:11:50 +00001222static std::unique_ptr<MCDataFragment>
1223getCompressedFragment(MCAsmLayout &Layout,
1224 MCSectionData::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +00001225 std::unique_ptr<MCDataFragment> CompressedFragment(new MCDataFragment());
1226
1227 // Gather the uncompressed data from all the fragments, recording the
1228 // alignment fragment, if seen, and any fixups.
1229 SmallVector<char, 128> UncompressedData =
1230 getUncompressedData(Layout, Fragments);
1231
1232 SmallVectorImpl<char> &CompressedContents = CompressedFragment->getContents();
1233
1234 zlib::Status Success = zlib::compress(
1235 StringRef(UncompressedData.data(), UncompressedData.size()),
1236 CompressedContents);
1237 if (Success != zlib::StatusOK)
1238 return nullptr;
1239
David Blaikie76d3a3c2014-04-18 21:52:26 +00001240 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents))
1241 return nullptr;
David Blaikie8019bf82014-04-10 21:53:53 +00001242
1243 return CompressedFragment;
1244}
1245
David Blaikie39fa6a22014-04-25 00:48:01 +00001246typedef DenseMap<const MCSectionData *, std::vector<MCSymbolData *>>
1247DefiningSymbolMap;
1248
1249static void UpdateSymbols(const MCAsmLayout &Layout,
1250 const std::vector<MCSymbolData *> &Symbols,
1251 MCFragment &NewFragment) {
1252 for (MCSymbolData *Sym : Symbols) {
1253 Sym->setOffset(Sym->getOffset() +
1254 Layout.getFragmentOffset(Sym->getFragment()));
1255 Sym->setFragment(&NewFragment);
David Blaikiec029ab42014-04-18 21:24:12 +00001256 }
1257}
1258
David Blaikie8019bf82014-04-10 21:53:53 +00001259static void CompressDebugSection(MCAssembler &Asm, MCAsmLayout &Layout,
David Blaikie39fa6a22014-04-25 00:48:01 +00001260 const DefiningSymbolMap &DefiningSymbols,
David Blaikie8019bf82014-04-10 21:53:53 +00001261 const MCSectionELF &Section,
1262 MCSectionData &SD) {
1263 StringRef SectionName = Section.getSectionName();
1264 MCSectionData::FragmentListType &Fragments = SD.getFragmentList();
1265
1266 std::unique_ptr<MCDataFragment> CompressedFragment =
1267 getCompressedFragment(Layout, Fragments);
1268
1269 // Leave the section as-is if the fragments could not be compressed.
1270 if (!CompressedFragment)
1271 return;
1272
David Blaikiec029ab42014-04-18 21:24:12 +00001273 // Update the fragment+offsets of any symbols referring to fragments in this
1274 // section to refer to the new fragment.
David Blaikie39fa6a22014-04-25 00:48:01 +00001275 auto I = DefiningSymbols.find(&SD);
1276 if (I != DefiningSymbols.end())
1277 UpdateSymbols(Layout, I->second, *CompressedFragment);
David Blaikiec029ab42014-04-18 21:24:12 +00001278
David Blaikie8019bf82014-04-10 21:53:53 +00001279 // Invalidate the layout for the whole section since it will have new and
1280 // different fragments now.
1281 Layout.invalidateFragmentsFrom(&Fragments.front());
1282 Fragments.clear();
1283
1284 // Complete the initialization of the new fragment
1285 CompressedFragment->setParent(&SD);
1286 CompressedFragment->setLayoutOrder(0);
1287 Fragments.push_back(CompressedFragment.release());
1288
1289 // Rename from .debug_* to .zdebug_*
1290 Asm.getContext().renameELFSection(&Section,
1291 (".z" + SectionName.drop_front(1)).str());
1292}
1293
1294void ELFObjectWriter::CompressDebugSections(MCAssembler &Asm,
1295 MCAsmLayout &Layout) {
1296 if (!Asm.getContext().getAsmInfo()->compressDebugSections())
1297 return;
1298
David Blaikie39fa6a22014-04-25 00:48:01 +00001299 DefiningSymbolMap DefiningSymbols;
1300
1301 for (MCSymbolData &SD : Asm.symbols())
1302 if (MCFragment *F = SD.getFragment())
1303 DefiningSymbols[F->getParent()].push_back(&SD);
1304
David Blaikie8019bf82014-04-10 21:53:53 +00001305 for (MCSectionData &SD : Asm) {
David Blaikiee06e8012014-04-11 22:11:50 +00001306 const MCSectionELF &Section =
1307 static_cast<const MCSectionELF &>(SD.getSection());
David Blaikie8019bf82014-04-10 21:53:53 +00001308 StringRef SectionName = Section.getSectionName();
1309
1310 // Compressing debug_frame requires handling alignment fragments which is
1311 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1312 // for writing to arbitrary buffers) for little benefit.
1313 if (!SectionName.startswith(".debug_") || SectionName == ".debug_frame")
1314 continue;
1315
David Blaikie39fa6a22014-04-25 00:48:01 +00001316 CompressDebugSection(Asm, Layout, DefiningSymbols, Section, SD);
David Blaikie8019bf82014-04-10 21:53:53 +00001317 }
1318}
1319
Rafael Espindola1557fd62011-03-20 18:44:20 +00001320void ELFObjectWriter::WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout,
1321 const RelMapTy &RelMap) {
1322 for (MCAssembler::const_iterator it = Asm.begin(),
1323 ie = Asm.end(); it != ie; ++it) {
1324 const MCSectionData &SD = *it;
1325 const MCSectionELF &Section =
1326 static_cast<const MCSectionELF&>(SD.getSection());
1327
1328 const MCSectionELF *RelaSection = RelMap.lookup(&Section);
1329 if (!RelaSection)
1330 continue;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001331 MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001332 RelaSD.setAlignment(is64Bit() ? 8 : 4);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001333
1334 MCDataFragment *F = new MCDataFragment(&RelaSD);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001335 WriteRelocationsFragment(Asm, F, &*it);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001336 }
1337}
1338
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001339void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1340 uint64_t Flags, uint64_t Address,
1341 uint64_t Offset, uint64_t Size,
1342 uint32_t Link, uint32_t Info,
1343 uint64_t Alignment,
1344 uint64_t EntrySize) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001345 Write32(Name); // sh_name: index into string table
1346 Write32(Type); // sh_type
1347 WriteWord(Flags); // sh_flags
1348 WriteWord(Address); // sh_addr
1349 WriteWord(Offset); // sh_offset
1350 WriteWord(Size); // sh_size
1351 Write32(Link); // sh_link
1352 Write32(Info); // sh_info
1353 WriteWord(Alignment); // sh_addralign
1354 WriteWord(EntrySize); // sh_entsize
1355}
1356
Rafael Espindola5904e122014-03-29 06:26:49 +00001357// ELF doesn't require relocations to be in any order. We sort by the r_offset,
1358// just to match gnu as for easier comparison. The use type is an arbitrary way
1359// of making the sort deterministic.
1360static int cmpRel(const ELFRelocationEntry *AP, const ELFRelocationEntry *BP) {
1361 const ELFRelocationEntry &A = *AP;
1362 const ELFRelocationEntry &B = *BP;
1363 if (A.Offset != B.Offset)
1364 return B.Offset - A.Offset;
1365 if (B.Type != A.Type)
1366 return A.Type - B.Type;
1367 llvm_unreachable("ELFRelocs might be unstable!");
1368}
1369
1370static void sortRelocs(const MCAssembler &Asm,
1371 std::vector<ELFRelocationEntry> &Relocs) {
1372 array_pod_sort(Relocs.begin(), Relocs.end(), cmpRel);
1373}
1374
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001375void ELFObjectWriter::WriteRelocationsFragment(const MCAssembler &Asm,
1376 MCDataFragment *F,
1377 const MCSectionData *SD) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001378 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001379
Rafael Espindola5904e122014-03-29 06:26:49 +00001380 sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001381
1382 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001383 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Matt Fleming6c1ad482010-08-16 18:57:57 +00001384
Rafael Espindola5904e122014-03-29 06:26:49 +00001385 unsigned Index;
1386 if (Entry.UseSymbol) {
1387 Index = getSymbolIndexInSymbolTable(Asm, Entry.Symbol);
1388 } else {
1389 const MCSectionData *Sec = Entry.Section;
1390 if (Sec)
1391 Index = Sec->getOrdinal() + FileSymbolData.size() +
1392 LocalSymbolData.size() + 1;
1393 else
1394 Index = 0;
1395 }
1396
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001397 if (is64Bit()) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001398 write(*F, Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001399 if (TargetObjectWriter->isN64()) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001400 write(*F, uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001401
Rafael Espindola5904e122014-03-29 06:26:49 +00001402 write(*F, TargetObjectWriter->getRSsym(Entry.Type));
1403 write(*F, TargetObjectWriter->getRType3(Entry.Type));
1404 write(*F, TargetObjectWriter->getRType2(Entry.Type));
1405 write(*F, TargetObjectWriter->getRType(Entry.Type));
1406 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001407 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001408 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindola0ce09712014-03-25 22:43:53 +00001409 write(*F, ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001410 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001411 if (hasRelocationAddend())
Rafael Espindola5904e122014-03-29 06:26:49 +00001412 write(*F, Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001413 } else {
Rafael Espindola5904e122014-03-29 06:26:49 +00001414 write(*F, uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001415
Rafael Espindolabce26a12010-10-05 15:11:03 +00001416 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001417 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindola0ce09712014-03-25 22:43:53 +00001418 write(*F, ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001419
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001420 if (hasRelocationAddend())
Rafael Espindola5904e122014-03-29 06:26:49 +00001421 write(*F, uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001422 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001423 }
1424}
1425
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001426void ELFObjectWriter::CreateMetadataSections(MCAssembler &Asm,
1427 MCAsmLayout &Layout,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001428 SectionIndexMapTy &SectionIndexMap,
1429 const RelMapTy &RelMap) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001430 MCContext &Ctx = Asm.getContext();
1431 MCDataFragment *F;
1432
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001433 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001434
Rafael Espindola0e527b72010-09-22 19:04:41 +00001435 // We construct .shstrtab, .symtab and .strtab in this order to match gnu as.
Rafael Espindola36ef57d2010-11-10 19:05:07 +00001436 const MCSectionELF *ShstrtabSection =
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001437 Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
Rafael Espindola19fa3802010-11-11 03:40:25 +00001438 SectionKind::getReadOnly());
Rafael Espindola44bf2662010-09-16 19:46:31 +00001439 MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
1440 ShstrtabSD.setAlignment(1);
Rafael Espindola44bf2662010-09-16 19:46:31 +00001441
Rafael Espindola36ef57d2010-11-10 19:05:07 +00001442 const MCSectionELF *SymtabSection =
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001443 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
1444 SectionKind::getReadOnly(),
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001445 EntrySize, "");
Matt Fleming6c1ad482010-08-16 18:57:57 +00001446 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001447 SymtabSD.setAlignment(is64Bit() ? 8 : 4);
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001448
Rafael Espindola1557fd62011-03-20 18:44:20 +00001449 const MCSectionELF *StrtabSection;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001450 StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
Rafael Espindola19fa3802010-11-11 03:40:25 +00001451 SectionKind::getReadOnly());
Matt Fleming6c1ad482010-08-16 18:57:57 +00001452 MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
1453 StrtabSD.setAlignment(1);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001454
Rafael Espindola1557fd62011-03-20 18:44:20 +00001455 ComputeIndexMap(Asm, SectionIndexMap, RelMap);
1456
1457 ShstrtabIndex = SectionIndexMap.lookup(ShstrtabSection);
1458 SymbolTableIndex = SectionIndexMap.lookup(SymtabSection);
1459 StringTableIndex = SectionIndexMap.lookup(StrtabSection);
Rafael Espindola44bf2662010-09-16 19:46:31 +00001460
1461 // Symbol table
1462 F = new MCDataFragment(&SymtabSD);
Rafael Espindola10be0832014-03-25 23:44:25 +00001463 WriteSymbolTable(F, Asm, Layout, SectionIndexMap);
Rafael Espindola44bf2662010-09-16 19:46:31 +00001464
Matt Fleming6c1ad482010-08-16 18:57:57 +00001465 F = new MCDataFragment(&StrtabSD);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001466 F->getContents().append(StrTabBuilder.data().begin(),
1467 StrTabBuilder.data().end());
Matt Fleming6c1ad482010-08-16 18:57:57 +00001468
Matt Fleming6c1ad482010-08-16 18:57:57 +00001469 F = new MCDataFragment(&ShstrtabSD);
1470
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001471 // Section header string table.
1472 for (auto it = Asm.begin(), ie = Asm.end(); it != ie; ++it) {
Rafael Espindolab80875e2011-04-07 23:21:52 +00001473 const MCSectionELF &Section =
1474 static_cast<const MCSectionELF&>(it->getSection());
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001475 ShStrTabBuilder.add(Section.getSectionName());
Rafael Espindolab80875e2011-04-07 23:21:52 +00001476 }
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001477 ShStrTabBuilder.finalize();
1478 F->getContents().append(ShStrTabBuilder.data().begin(),
1479 ShStrTabBuilder.data().end());
Rafael Espindola2ebaee92010-09-30 02:22:20 +00001480}
1481
Rafael Espindolab3eca9b2011-01-23 17:55:27 +00001482void ELFObjectWriter::CreateIndexedSections(MCAssembler &Asm,
1483 MCAsmLayout &Layout,
1484 GroupMapTy &GroupMap,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001485 RevGroupMapTy &RevGroupMap,
1486 SectionIndexMapTy &SectionIndexMap,
1487 const RelMapTy &RelMap) {
Rafael Espindolab3eca9b2011-01-23 17:55:27 +00001488 // Create the .note.GNU-stack section if needed.
1489 MCContext &Ctx = Asm.getContext();
1490 if (Asm.getNoExecStack()) {
1491 const MCSectionELF *GnuStackSection =
1492 Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS, 0,
1493 SectionKind::getReadOnly());
1494 Asm.getOrCreateSectionData(*GnuStackSection);
1495 }
1496
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001497 // Build the groups
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001498 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
1499 it != ie; ++it) {
1500 const MCSectionELF &Section =
1501 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola0e7e34e2011-01-23 04:43:11 +00001502 if (!(Section.getFlags() & ELF::SHF_GROUP))
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001503 continue;
1504
1505 const MCSymbol *SignatureSymbol = Section.getGroup();
1506 Asm.getOrCreateSymbolData(*SignatureSymbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001507 const MCSectionELF *&Group = RevGroupMap[SignatureSymbol];
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001508 if (!Group) {
Rafael Espindolab3eca9b2011-01-23 17:55:27 +00001509 Group = Ctx.CreateELFGroupSection();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001510 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1511 Data.setAlignment(4);
1512 MCDataFragment *F = new MCDataFragment(&Data);
Rafael Espindola0ce09712014-03-25 22:43:53 +00001513 write(*F, uint32_t(ELF::GRP_COMDAT));
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001514 }
1515 GroupMap[Group] = SignatureSymbol;
1516 }
1517
Rafael Espindola1557fd62011-03-20 18:44:20 +00001518 ComputeIndexMap(Asm, SectionIndexMap, RelMap);
1519
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001520 // Add sections to the groups
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001521 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
Rafael Espindola1557fd62011-03-20 18:44:20 +00001522 it != ie; ++it) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001523 const MCSectionELF &Section =
1524 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola0e7e34e2011-01-23 04:43:11 +00001525 if (!(Section.getFlags() & ELF::SHF_GROUP))
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001526 continue;
Rafael Espindola7d0ba342010-11-14 04:17:37 +00001527 const MCSectionELF *Group = RevGroupMap[Section.getGroup()];
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001528 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
1529 // FIXME: we could use the previous fragment
1530 MCDataFragment *F = new MCDataFragment(&Data);
Rafael Espindola0ce09712014-03-25 22:43:53 +00001531 uint32_t Index = SectionIndexMap.lookup(&Section);
1532 write(*F, Index);
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001533 }
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001534}
1535
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001536void ELFObjectWriter::WriteSection(MCAssembler &Asm,
1537 const SectionIndexMapTy &SectionIndexMap,
1538 uint32_t GroupSymbolIndex,
1539 uint64_t Offset, uint64_t Size,
1540 uint64_t Alignment,
1541 const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001542 uint64_t sh_link = 0;
1543 uint64_t sh_info = 0;
1544
1545 switch(Section.getType()) {
1546 case ELF::SHT_DYNAMIC:
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001547 sh_link = ShStrTabBuilder.getOffset(Section.getSectionName());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001548 sh_info = 0;
1549 break;
1550
1551 case ELF::SHT_REL:
1552 case ELF::SHT_RELA: {
1553 const MCSectionELF *SymtabSection;
1554 const MCSectionELF *InfoSection;
1555 SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB,
1556 0,
Rafael Espindola19fa3802010-11-11 03:40:25 +00001557 SectionKind::getReadOnly());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001558 sh_link = SectionIndexMap.lookup(SymtabSection);
1559 assert(sh_link && ".symtab not found");
1560
1561 // Remove ".rel" and ".rela" prefixes.
1562 unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
1563 StringRef SectionName = Section.getSectionName().substr(SecNameLen);
David Blaikie15b25df2013-10-22 23:41:52 +00001564 StringRef GroupName =
1565 Section.getGroup() ? Section.getGroup()->getName() : "";
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001566
David Blaikie15b25df2013-10-22 23:41:52 +00001567 InfoSection = Asm.getContext().getELFSection(SectionName, ELF::SHT_PROGBITS,
1568 0, SectionKind::getReadOnly(),
1569 0, GroupName);
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001570 sh_info = SectionIndexMap.lookup(InfoSection);
1571 break;
1572 }
1573
1574 case ELF::SHT_SYMTAB:
1575 case ELF::SHT_DYNSYM:
1576 sh_link = StringTableIndex;
1577 sh_info = LastLocalSymbolIndex;
1578 break;
1579
1580 case ELF::SHT_SYMTAB_SHNDX:
1581 sh_link = SymbolTableIndex;
1582 break;
1583
1584 case ELF::SHT_PROGBITS:
1585 case ELF::SHT_STRTAB:
1586 case ELF::SHT_NOBITS:
Rafael Espindola9ae2d052010-12-26 21:30:59 +00001587 case ELF::SHT_NOTE:
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001588 case ELF::SHT_NULL:
1589 case ELF::SHT_ARM_ATTRIBUTES:
Jason W Kim9c5b65d2011-01-12 00:19:25 +00001590 case ELF::SHT_INIT_ARRAY:
1591 case ELF::SHT_FINI_ARRAY:
1592 case ELF::SHT_PREINIT_ARRAY:
Rafael Espindola4b7b7fb2011-01-23 05:43:40 +00001593 case ELF::SHT_X86_64_UNWIND:
Jack Carterc1b17ed2013-01-18 21:20:38 +00001594 case ELF::SHT_MIPS_REGINFO:
1595 case ELF::SHT_MIPS_OPTIONS:
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001596 // Nothing to do.
1597 break;
1598
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001599 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001600 sh_link = SymbolTableIndex;
1601 sh_info = GroupSymbolIndex;
1602 break;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001603
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001604 default:
1605 assert(0 && "FIXME: sh_type value not supported!");
1606 break;
1607 }
1608
Logan Chien4b724422013-02-05 14:18:59 +00001609 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
1610 Section.getType() == ELF::SHT_ARM_EXIDX) {
1611 StringRef SecName(Section.getSectionName());
1612 if (SecName == ".ARM.exidx") {
1613 sh_link = SectionIndexMap.lookup(
1614 Asm.getContext().getELFSection(".text",
1615 ELF::SHT_PROGBITS,
1616 ELF::SHF_EXECINSTR | ELF::SHF_ALLOC,
1617 SectionKind::getText()));
1618 } else if (SecName.startswith(".ARM.exidx")) {
David Blaikie15b25df2013-10-22 23:41:52 +00001619 StringRef GroupName =
1620 Section.getGroup() ? Section.getGroup()->getName() : "";
1621 sh_link = SectionIndexMap.lookup(Asm.getContext().getELFSection(
1622 SecName.substr(sizeof(".ARM.exidx") - 1), ELF::SHT_PROGBITS,
1623 ELF::SHF_EXECINSTR | ELF::SHF_ALLOC, SectionKind::getText(), 0,
1624 GroupName));
Logan Chien4b724422013-02-05 14:18:59 +00001625 }
1626 }
1627
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001628 WriteSecHdrEntry(ShStrTabBuilder.getOffset(Section.getSectionName()),
1629 Section.getType(),
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001630 Section.getFlags(), 0, Offset, Size, sh_link, sh_info,
1631 Alignment, Section.getEntrySize());
1632}
1633
Jan Sjödin30a52de2011-02-28 21:45:04 +00001634bool ELFObjectWriter::IsELFMetaDataSection(const MCSectionData &SD) {
Rafael Espindolabaf2f3b2010-12-06 03:48:09 +00001635 return SD.getOrdinal() == ~UINT32_C(0) &&
Rafael Espindola60ebca92010-12-02 03:09:06 +00001636 !SD.getSection().isVirtualSection();
1637}
1638
Jan Sjödin30a52de2011-02-28 21:45:04 +00001639uint64_t ELFObjectWriter::DataSectionSize(const MCSectionData &SD) {
Rafael Espindola60ebca92010-12-02 03:09:06 +00001640 uint64_t Ret = 0;
1641 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1642 ++i) {
1643 const MCFragment &F = *i;
1644 assert(F.getKind() == MCFragment::FT_Data);
1645 Ret += cast<MCDataFragment>(F).getContents().size();
1646 }
1647 return Ret;
1648}
1649
Jan Sjödin30a52de2011-02-28 21:45:04 +00001650uint64_t ELFObjectWriter::GetSectionFileSize(const MCAsmLayout &Layout,
1651 const MCSectionData &SD) {
Rafael Espindola60ebca92010-12-02 03:09:06 +00001652 if (IsELFMetaDataSection(SD))
1653 return DataSectionSize(SD);
1654 return Layout.getSectionFileSize(&SD);
1655}
1656
Jan Sjödin30a52de2011-02-28 21:45:04 +00001657uint64_t ELFObjectWriter::GetSectionAddressSize(const MCAsmLayout &Layout,
1658 const MCSectionData &SD) {
Rafael Espindola60ebca92010-12-02 03:09:06 +00001659 if (IsELFMetaDataSection(SD))
1660 return DataSectionSize(SD);
Rafael Espindola93e3cf02010-12-07 00:27:36 +00001661 return Layout.getSectionAddressSize(&SD);
Rafael Espindola60ebca92010-12-02 03:09:06 +00001662}
1663
Rafael Espindola1557fd62011-03-20 18:44:20 +00001664void ELFObjectWriter::WriteDataSectionData(MCAssembler &Asm,
1665 const MCAsmLayout &Layout,
1666 const MCSectionELF &Section) {
Rafael Espindola1557fd62011-03-20 18:44:20 +00001667 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1668
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001669 uint64_t Padding = OffsetToAlignment(OS.tell(), SD.getAlignment());
Rafael Espindola1557fd62011-03-20 18:44:20 +00001670 WriteZeros(Padding);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001671
1672 if (IsELFMetaDataSection(SD)) {
1673 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1674 ++i) {
1675 const MCFragment &F = *i;
1676 assert(F.getKind() == MCFragment::FT_Data);
Eli Bendersky84b2a792012-12-07 22:06:56 +00001677 WriteBytes(cast<MCDataFragment>(F).getContents());
Rafael Espindola1557fd62011-03-20 18:44:20 +00001678 }
1679 } else {
Jim Grosbach18e2fe42011-12-06 00:03:48 +00001680 Asm.writeSectionData(&SD, Layout);
Rafael Espindola60ebca92010-12-02 03:09:06 +00001681 }
1682}
1683
Rafael Espindola1557fd62011-03-20 18:44:20 +00001684void ELFObjectWriter::WriteSectionHeader(MCAssembler &Asm,
1685 const GroupMapTy &GroupMap,
1686 const MCAsmLayout &Layout,
1687 const SectionIndexMapTy &SectionIndexMap,
1688 const SectionOffsetMapTy &SectionOffsetMap) {
1689 const unsigned NumSections = Asm.size() + 1;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001690
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001691 std::vector<const MCSectionELF*> Sections;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001692 Sections.resize(NumSections - 1);
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001693
1694 for (SectionIndexMapTy::const_iterator i=
1695 SectionIndexMap.begin(), e = SectionIndexMap.end(); i != e; ++i) {
1696 const std::pair<const MCSectionELF*, uint32_t> &p = *i;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001697 Sections[p.second - 1] = p.first;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001698 }
1699
Matt Fleming6c1ad482010-08-16 18:57:57 +00001700 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001701 uint64_t FirstSectionSize =
1702 NumSections >= ELF::SHN_LORESERVE ? NumSections : 0;
1703 uint32_t FirstSectionLink =
1704 ShstrtabIndex >= ELF::SHN_LORESERVE ? ShstrtabIndex : 0;
1705 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, FirstSectionLink, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001706
Rafael Espindola1557fd62011-03-20 18:44:20 +00001707 for (unsigned i = 0; i < NumSections - 1; ++i) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001708 const MCSectionELF &Section = *Sections[i];
1709 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1710 uint32_t GroupSymbolIndex;
1711 if (Section.getType() != ELF::SHT_GROUP)
1712 GroupSymbolIndex = 0;
1713 else
Rafael Espindola1557fd62011-03-20 18:44:20 +00001714 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm,
1715 GroupMap.lookup(&Section));
Matt Fleming6c1ad482010-08-16 18:57:57 +00001716
Rafael Espindola93e3cf02010-12-07 00:27:36 +00001717 uint64_t Size = GetSectionAddressSize(Layout, SD);
Rafael Espindola60ebca92010-12-02 03:09:06 +00001718
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001719 WriteSection(Asm, SectionIndexMap, GroupSymbolIndex,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001720 SectionOffsetMap.lookup(&Section), Size,
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001721 SD.getAlignment(), Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001722 }
1723}
1724
Rafael Espindola1557fd62011-03-20 18:44:20 +00001725void ELFObjectWriter::ComputeSectionOrder(MCAssembler &Asm,
1726 std::vector<const MCSectionELF*> &Sections) {
1727 for (MCAssembler::iterator it = Asm.begin(),
1728 ie = Asm.end(); it != ie; ++it) {
1729 const MCSectionELF &Section =
1730 static_cast<const MCSectionELF &>(it->getSection());
1731 if (Section.getType() == ELF::SHT_GROUP)
1732 Sections.push_back(&Section);
1733 }
1734
1735 for (MCAssembler::iterator it = Asm.begin(),
1736 ie = Asm.end(); it != ie; ++it) {
1737 const MCSectionELF &Section =
1738 static_cast<const MCSectionELF &>(it->getSection());
1739 if (Section.getType() != ELF::SHT_GROUP &&
1740 Section.getType() != ELF::SHT_REL &&
1741 Section.getType() != ELF::SHT_RELA)
1742 Sections.push_back(&Section);
1743 }
1744
1745 for (MCAssembler::iterator it = Asm.begin(),
1746 ie = Asm.end(); it != ie; ++it) {
1747 const MCSectionELF &Section =
1748 static_cast<const MCSectionELF &>(it->getSection());
1749 if (Section.getType() == ELF::SHT_REL ||
1750 Section.getType() == ELF::SHT_RELA)
1751 Sections.push_back(&Section);
1752 }
1753}
1754
1755void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1756 const MCAsmLayout &Layout) {
1757 GroupMapTy GroupMap;
1758 RevGroupMapTy RevGroupMap;
1759 SectionIndexMapTy SectionIndexMap;
1760
1761 unsigned NumUserSections = Asm.size();
1762
David Blaikiee06e8012014-04-11 22:11:50 +00001763 CompressDebugSections(Asm, const_cast<MCAsmLayout &>(Layout));
David Blaikie8019bf82014-04-10 21:53:53 +00001764
Rafael Espindola1557fd62011-03-20 18:44:20 +00001765 DenseMap<const MCSectionELF*, const MCSectionELF*> RelMap;
1766 CreateRelocationSections(Asm, const_cast<MCAsmLayout&>(Layout), RelMap);
1767
1768 const unsigned NumUserAndRelocSections = Asm.size();
1769 CreateIndexedSections(Asm, const_cast<MCAsmLayout&>(Layout), GroupMap,
1770 RevGroupMap, SectionIndexMap, RelMap);
1771 const unsigned AllSections = Asm.size();
1772 const unsigned NumIndexedSections = AllSections - NumUserAndRelocSections;
1773
1774 unsigned NumRegularSections = NumUserSections + NumIndexedSections;
1775
1776 // Compute symbol table information.
Rafael Espindola022bb762014-03-24 03:43:21 +00001777 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap,
1778 NumRegularSections);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001779
1780 WriteRelocations(Asm, const_cast<MCAsmLayout&>(Layout), RelMap);
1781
1782 CreateMetadataSections(const_cast<MCAssembler&>(Asm),
1783 const_cast<MCAsmLayout&>(Layout),
1784 SectionIndexMap,
1785 RelMap);
1786
1787 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
1788 uint64_t HeaderSize = is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
1789 sizeof(ELF::Elf32_Ehdr);
1790 uint64_t FileOff = HeaderSize;
1791
1792 std::vector<const MCSectionELF*> Sections;
1793 ComputeSectionOrder(Asm, Sections);
1794 unsigned NumSections = Sections.size();
1795 SectionOffsetMapTy SectionOffsetMap;
1796 for (unsigned i = 0; i < NumRegularSections + 1; ++i) {
1797 const MCSectionELF &Section = *Sections[i];
1798 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1799
1800 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1801
1802 // Remember the offset into the file for this section.
1803 SectionOffsetMap[&Section] = FileOff;
1804
1805 // Get the size of the section in the output file (including padding).
1806 FileOff += GetSectionFileSize(Layout, SD);
1807 }
1808
1809 FileOff = RoundUpToAlignment(FileOff, NaturalAlignment);
1810
1811 const unsigned SectionHeaderOffset = FileOff - HeaderSize;
1812
1813 uint64_t SectionHeaderEntrySize = is64Bit() ?
1814 sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr);
1815 FileOff += (NumSections + 1) * SectionHeaderEntrySize;
1816
1817 for (unsigned i = NumRegularSections + 1; i < NumSections; ++i) {
1818 const MCSectionELF &Section = *Sections[i];
1819 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1820
1821 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1822
1823 // Remember the offset into the file for this section.
1824 SectionOffsetMap[&Section] = FileOff;
1825
1826 // Get the size of the section in the output file (including padding).
1827 FileOff += GetSectionFileSize(Layout, SD);
1828 }
1829
1830 // Write out the ELF header ...
Jack Carter1bd90ff2013-01-30 02:09:52 +00001831 WriteHeader(Asm, SectionHeaderOffset, NumSections + 1);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001832
1833 // ... then the regular sections ...
1834 // + because of .shstrtab
1835 for (unsigned i = 0; i < NumRegularSections + 1; ++i)
1836 WriteDataSectionData(Asm, Layout, *Sections[i]);
1837
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001838 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001839 WriteZeros(Padding);
1840
1841 // ... then the section header table ...
1842 WriteSectionHeader(Asm, GroupMap, Layout, SectionIndexMap,
1843 SectionOffsetMap);
1844
Nick Lewycky4eb11432011-10-07 20:56:23 +00001845 // ... and then the remaining sections ...
Rafael Espindola1557fd62011-03-20 18:44:20 +00001846 for (unsigned i = NumRegularSections + 1; i < NumSections; ++i)
1847 WriteDataSectionData(Asm, Layout, *Sections[i]);
1848}
1849
Eli Friedmand92d17b2011-03-03 07:24:36 +00001850bool
1851ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
1852 const MCSymbolData &DataA,
1853 const MCFragment &FB,
1854 bool InSet,
1855 bool IsPCRel) const {
Roman Divackyfb4d3902014-01-08 18:50:32 +00001856 if (DataA.getFlags() & ELF_STB_Weak || MCELF::GetType(DataA) == ELF::STT_GNU_IFUNC)
Eli Friedmand92d17b2011-03-03 07:24:36 +00001857 return false;
1858 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
1859 Asm, DataA, FB,InSet, IsPCRel);
1860}
1861
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001862MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
1863 raw_ostream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001864 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001865 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001866}