blob: 6c5df9c22a1c5be9a1d1bb38946fa1943c812373 [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"
Rafael Espindola97de4742014-07-03 02:01:39 +000031#include "llvm/MC/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"
Matt Fleming6c1ad482010-08-16 18:57:57 +000034#include "llvm/Support/ELF.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000035#include "llvm/Support/Endian.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 +000044
Rafael Espindola10be0832014-03-25 23:44:25 +000045typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy;
46
Rafael Espindola91fd2772015-04-29 21:09:32 +000047class ELFObjectWriter;
48
Rafael Espindola10be0832014-03-25 23:44:25 +000049class SymbolTableWriter {
Rafael Espindola91fd2772015-04-29 21:09:32 +000050 ELFObjectWriter &EWriter;
Rafael Espindola10be0832014-03-25 23:44:25 +000051 bool Is64Bit;
Rafael Espindola10be0832014-03-25 23:44:25 +000052
Rafael Espindola91fd2772015-04-29 21:09:32 +000053 // indexes we are going to write to .symtab_shndx.
54 std::vector<uint32_t> ShndxIndexes;
Rafael Espindola10be0832014-03-25 23:44:25 +000055
56 // The numbel of symbols written so far.
57 unsigned NumWritten;
58
59 void createSymtabShndx();
60
Rafael Espindola91fd2772015-04-29 21:09:32 +000061 template <typename T> void write(T Value);
Rafael Espindola10be0832014-03-25 23:44:25 +000062
63public:
Rafael Espindola91fd2772015-04-29 21:09:32 +000064 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
Rafael Espindola10be0832014-03-25 23:44:25 +000065
66 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
67 uint8_t other, uint32_t shndx, bool Reserved);
Rafael Espindola91fd2772015-04-29 21:09:32 +000068
69 ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; }
Rafael Espindola10be0832014-03-25 23:44:25 +000070};
71
Rafael Espindola29abd972011-12-22 03:38:00 +000072class ELFObjectWriter : public MCObjectWriter {
Rafael Espindola29abd972011-12-22 03:38:00 +000073 static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000074 static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout);
75 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbol &Symbol,
Rafael Espindola29abd972011-12-22 03:38:00 +000076 bool Used, bool Renamed);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000077 static bool isLocal(const MCSymbol &Symbol, bool isUsedInReloc);
Rafael Espindola29abd972011-12-22 03:38:00 +000078
Rafael Espindola6cd21802015-04-07 22:35:40 +000079 /// Helper struct for containing some precomputed information on symbols.
Rafael Espindola29abd972011-12-22 03:38:00 +000080 struct ELFSymbolData {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000081 const MCSymbol *Symbol;
Rafael Espindola29abd972011-12-22 03:38:00 +000082 uint64_t StringIndex;
83 uint32_t SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000084 StringRef Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000085
86 // Support lexicographic sorting.
87 bool operator<(const ELFSymbolData &RHS) const {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000088 unsigned LHSType = MCELF::GetType(Symbol->getData());
89 unsigned RHSType = MCELF::GetType(RHS.Symbol->getData());
Rafael Espindolab6613022014-10-17 01:48:58 +000090 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
91 return false;
92 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
93 return true;
94 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
95 return SectionIndex < RHS.SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000096 return Name < RHS.Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000097 }
98 };
99
Rafael Espindola29abd972011-12-22 03:38:00 +0000100 /// The target specific ELF writer instance.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000101 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
Rafael Espindola29abd972011-12-22 03:38:00 +0000102
103 SmallPtrSet<const MCSymbol *, 16> UsedInReloc;
104 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc;
105 DenseMap<const MCSymbol *, const MCSymbol *> Renames;
106
Rafael Espindola34948e52015-04-30 00:45:46 +0000107 llvm::DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>>
108 Relocations;
Rafael Espindola29abd972011-12-22 03:38:00 +0000109
110 /// @}
111 /// @name Symbol Table Data
112 /// @{
113
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000114 StringTableBuilder StrTabBuilder;
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000115 std::vector<uint64_t> FileSymbolData;
Rafael Espindola29abd972011-12-22 03:38:00 +0000116 std::vector<ELFSymbolData> LocalSymbolData;
117 std::vector<ELFSymbolData> ExternalSymbolData;
118 std::vector<ELFSymbolData> UndefinedSymbolData;
119
120 /// @}
121
Rafael Espindola29abd972011-12-22 03:38:00 +0000122 // This holds the symbol table index of the last local symbol.
123 unsigned LastLocalSymbolIndex;
124 // This holds the .strtab section index.
125 unsigned StringTableIndex;
126 // This holds the .symtab section index.
127 unsigned SymbolTableIndex;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000128 // This holds the .symtab_shndx section index.
129 unsigned SymtabShndxSectionIndex = 0;
Rafael Espindola29abd972011-12-22 03:38:00 +0000130
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000131 // Sections in the order they are to be output in the section table.
Rafael Espindola08850b32015-05-25 21:56:55 +0000132 std::vector<const MCSectionELF *> SectionTable;
133 unsigned addToSectionTable(const MCSectionELF *Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000134
Rafael Espindola29abd972011-12-22 03:38:00 +0000135 // TargetObjectWriter wrappers.
Rafael Espindola29abd972011-12-22 03:38:00 +0000136 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
137 bool hasRelocationAddend() const {
138 return TargetObjectWriter->hasRelocationAddend();
139 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000140 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000141 bool IsPCRel) const {
142 return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindola29abd972011-12-22 03:38:00 +0000143 }
144
Rafael Espindola29abd972011-12-22 03:38:00 +0000145 public:
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000146 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
Rafael Espindola0ce09712014-03-25 22:43:53 +0000147 bool IsLittleEndian)
Rafael Espindolae2b355d2015-05-28 15:20:00 +0000148 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
Rafael Espindola29abd972011-12-22 03:38:00 +0000149
Yaron Keren7773a722015-03-23 18:35:01 +0000150 void reset() override {
151 UsedInReloc.clear();
152 WeakrefUsedInReloc.clear();
153 Renames.clear();
154 Relocations.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000155 StrTabBuilder.clear();
156 FileSymbolData.clear();
157 LocalSymbolData.clear();
158 ExternalSymbolData.clear();
159 UndefinedSymbolData.clear();
Yaron Kerenf3465e12015-05-13 15:17:19 +0000160 SectionTable.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000161 MCObjectWriter::reset();
162 }
163
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000164 ~ELFObjectWriter() override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000165
166 void WriteWord(uint64_t W) {
167 if (is64Bit())
168 Write64(W);
169 else
170 Write32(W);
171 }
172
Rafael Espindola91fd2772015-04-29 21:09:32 +0000173 template <typename T> void write(T Val) {
174 if (IsLittleEndian)
175 support::endian::Writer<support::little>(OS).write(Val);
176 else
177 support::endian::Writer<support::big>(OS).write(Val);
178 }
179
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000180 void writeHeader(const MCAssembler &Asm);
Rafael Espindola29abd972011-12-22 03:38:00 +0000181
Rafael Espindola10be0832014-03-25 23:44:25 +0000182 void WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Rafael Espindola29abd972011-12-22 03:38:00 +0000183 const MCAsmLayout &Layout);
184
Rafael Espindola91fd2772015-04-29 21:09:32 +0000185 // Start and end offset of each section
Rafael Espindolabda19802015-04-30 14:21:49 +0000186 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
187 SectionOffsetsTy;
Rafael Espindola91fd2772015-04-29 21:09:32 +0000188
Rafael Espindolab60c8292014-04-29 12:46:50 +0000189 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
190 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000191 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000192 unsigned Type) const;
193
Rafael Espindola26585542015-01-19 21:11:14 +0000194 void RecordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
Craig Topper34a61bc2014-03-08 07:02:02 +0000195 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000196 MCValue Target, bool &IsPCRel,
197 uint64_t &FixedValue) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000198
199 uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
200 const MCSymbol *S);
201
Rafael Espindola89feff32015-04-28 22:59:58 +0000202 // Map from a signature symbol to the group section index
203 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
Rafael Espindola29abd972011-12-22 03:38:00 +0000204
Rafael Espindola022bb762014-03-24 03:43:21 +0000205 /// Compute the symbol table data
Rafael Espindola29abd972011-12-22 03:38:00 +0000206 ///
Rafael Espindola073ee7d2012-08-27 16:04:24 +0000207 /// \param Asm - The assembler.
208 /// \param SectionIndexMap - Maps a section to its index.
209 /// \param RevGroupMap - Maps a signature symbol to the group section.
Rafael Espindola022bb762014-03-24 03:43:21 +0000210 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000211 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000212 const RevGroupMapTy &RevGroupMap,
213 SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000214
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000215 MCSectionELF *createRelocationSection(MCContext &Ctx,
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000216 const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000217
Rafael Espindolab1863912015-04-30 21:10:06 +0000218 const MCSectionELF *createStringTable(MCContext &Ctx);
Rafael Espindola29abd972011-12-22 03:38:00 +0000219
Craig Topper34a61bc2014-03-08 07:02:02 +0000220 void ExecutePostLayoutBinding(MCAssembler &Asm,
221 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000222
Rafael Espindola1aa20fc2015-05-21 19:46:39 +0000223 void writeSectionHeader(const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000224 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +0000225 const SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000226
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000227 void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000228 const MCAsmLayout &Layout);
229
Rafael Espindola29abd972011-12-22 03:38:00 +0000230 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000231 uint64_t Address, uint64_t Offset, uint64_t Size,
232 uint32_t Link, uint32_t Info, uint64_t Alignment,
233 uint64_t EntrySize);
Rafael Espindola29abd972011-12-22 03:38:00 +0000234
Rafael Espindola34948e52015-04-30 00:45:46 +0000235 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000236
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000237 bool IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
238 const MCSymbol &SymA,
239 const MCFragment &FB,
240 bool InSet,
241 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000242
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +0000243 bool isWeak(const MCSymbol &Sym) const override;
Rafael Espindolaf275ad82015-03-25 13:16:53 +0000244
Craig Topper34a61bc2014-03-08 07:02:02 +0000245 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindolae92c1bf2015-05-21 19:42:35 +0000246 void writeSection(const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola28687582015-05-21 19:36:43 +0000247 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
Rafael Espindola29abd972011-12-22 03:38:00 +0000248 const MCSectionELF &Section);
249 };
250}
251
Rafael Espindola08850b32015-05-25 21:56:55 +0000252unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000253 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000254 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000255 return SectionTable.size();
256}
257
Rafael Espindola10be0832014-03-25 23:44:25 +0000258void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000259 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000260 return;
261
Rafael Espindola91fd2772015-04-29 21:09:32 +0000262 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000263}
264
Rafael Espindola91fd2772015-04-29 21:09:32 +0000265template <typename T> void SymbolTableWriter::write(T Value) {
266 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000267}
268
Rafael Espindola91fd2772015-04-29 21:09:32 +0000269SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
270 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000271
272void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
273 uint64_t size, uint8_t other,
274 uint32_t shndx, bool Reserved) {
275 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
276
277 if (LargeIndex)
278 createSymtabShndx();
279
Rafael Espindola91fd2772015-04-29 21:09:32 +0000280 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000281 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000282 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000283 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000284 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000285 }
286
287 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
288
Rafael Espindola10be0832014-03-25 23:44:25 +0000289 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000290 write(name); // st_name
291 write(info); // st_info
292 write(other); // st_other
293 write(Index); // st_shndx
294 write(value); // st_value
295 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000296 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000297 write(name); // st_name
298 write(uint32_t(value)); // st_value
299 write(uint32_t(size)); // st_size
300 write(info); // st_info
301 write(other); // st_other
302 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000303 }
304
305 ++NumWritten;
306}
307
Jan Sjödin30a52de2011-02-28 21:45:04 +0000308bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
309 const MCFixupKindInfo &FKI =
310 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
311
312 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
313}
314
Jason W Kim96f4c012010-11-15 16:18:39 +0000315ELFObjectWriter::~ELFObjectWriter()
316{}
317
Matt Fleming6c1ad482010-08-16 18:57:57 +0000318// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000319void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000320 // ELF Header
321 // ----------
322 //
323 // Note
324 // ----
325 // emitWord method behaves differently for ELF32 and ELF64, writing
326 // 4 bytes in the former and 8 in the latter.
327
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000328 WriteBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000329
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000330 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000331
332 // e_ident[EI_DATA]
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000333 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000334
335 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000336 // e_ident[EI_OSABI]
Rafael Espindola1ad40952011-12-21 17:00:36 +0000337 Write8(TargetObjectWriter->getOSABI());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000338 Write8(0); // e_ident[EI_ABIVERSION]
339
340 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
341
342 Write16(ELF::ET_REL); // e_type
343
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000344 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000345
346 Write32(ELF::EV_CURRENT); // e_version
347 WriteWord(0); // e_entry, no entry point in .o file
348 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000349 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000350
Jason W Kim4761fba2011-02-04 21:41:11 +0000351 // e_flags = whatever the target wants
Jack Carter1bd90ff2013-01-30 02:09:52 +0000352 Write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000353
354 // e_ehsize = ELF header size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000355 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000356
357 Write16(0); // e_phentsize = prog header entry size
358 Write16(0); // e_phnum = # prog header entries = 0
359
360 // e_shentsize = Section header entry size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000361 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000362
363 // e_shnum = # of section header ents
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000364 Write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000365
366 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola5960cee2015-05-22 23:58:30 +0000367 assert(StringTableIndex < ELF::SHN_LORESERVE);
368 Write16(StringTableIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000369}
370
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000371uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000372 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000373 MCSymbolData &Data = Sym.getData();
Rafael Espindolafee224f2014-04-30 21:51:13 +0000374 if (Data.isCommon() && Data.isExternal())
375 return Data.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000376
Rafael Espindolafee224f2014-04-30 21:51:13 +0000377 uint64_t Res;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000378 if (!Layout.getSymbolOffset(Sym, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000379 return 0;
380
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000381 if (Layout.getAssembler().isThumbFunc(&Sym))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000382 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000383
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000384 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000385}
386
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000387void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
388 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000389 // The presence of symbol versions causes undefined symbols and
390 // versions declared with @@@ to be renamed.
391
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000392 for (const MCSymbol &Alias : Asm.symbols()) {
393 MCSymbolData &OriginalData = Alias.getData();
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000394
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000395 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000396 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000397 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000398 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
399 if (!Ref)
400 continue;
401 const MCSymbol &Symbol = Ref->getSymbol();
402 MCSymbolData &SD = Asm.getSymbolData(Symbol);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000403
Benjamin Kramer14807272010-10-27 19:53:52 +0000404 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000405 size_t Pos = AliasName.find('@');
406 if (Pos == StringRef::npos)
407 continue;
408
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000409 // Aliases defined with .symvar copy the binding from the symbol they alias.
410 // This is the first place we are able to copy this information.
David Blaikie583a31c2014-04-18 18:24:25 +0000411 OriginalData.setExternal(SD.isExternal());
412 MCELF::SetBinding(OriginalData, MCELF::GetBinding(SD));
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000413
Benjamin Kramer14807272010-10-27 19:53:52 +0000414 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000415 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
416 continue;
417
Rafael Espindola26496e62010-10-27 17:56:18 +0000418 // FIXME: produce a better error message.
419 if (Symbol.isUndefined() && Rest.startswith("@@") &&
420 !Rest.startswith("@@@"))
421 report_fatal_error("A @@ version cannot be undefined");
422
Benjamin Kramer14807272010-10-27 19:53:52 +0000423 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000424 }
425}
426
Roman Divacky5a1c5492014-01-07 20:17:03 +0000427static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
428 uint8_t Type = newType;
429
430 // Propagation rules:
431 // IFUNC > FUNC > OBJECT > NOTYPE
432 // TLS_OBJECT > OBJECT > NOTYPE
433 //
434 // dont let the new type degrade the old type
435 switch (origType) {
436 default:
437 break;
438 case ELF::STT_GNU_IFUNC:
439 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
440 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
441 Type = ELF::STT_GNU_IFUNC;
442 break;
443 case ELF::STT_FUNC:
444 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
445 Type == ELF::STT_TLS)
446 Type = ELF::STT_FUNC;
447 break;
448 case ELF::STT_OBJECT:
449 if (Type == ELF::STT_NOTYPE)
450 Type = ELF::STT_OBJECT;
451 break;
452 case ELF::STT_TLS:
453 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
454 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
455 Type = ELF::STT_TLS;
456 break;
457 }
458
459 return Type;
460}
461
Rafael Espindola10be0832014-03-25 23:44:25 +0000462void ELFObjectWriter::WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000463 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000464 MCSymbolData &OrigData = MSD.Symbol->getData();
David Blaikieb5956d22014-04-19 00:50:15 +0000465 assert((!OrigData.getFragment() ||
Rafael Espindola7549f872015-05-26 00:36:57 +0000466 (OrigData.getFragment()->getParent() == &MSD.Symbol->getSection())) &&
David Blaikieb5956d22014-04-19 00:50:15 +0000467 "The symbol's section doesn't match the fragment's symbol");
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000468 const MCSymbol *Base = Layout.getBaseSymbol(*MSD.Symbol);
Rafael Espindola85a84912014-03-26 00:16:43 +0000469
470 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
471 // SHN_COMMON.
472 bool IsReserved = !Base || OrigData.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000473
Jack Carter2f8d9d92013-02-19 21:57:35 +0000474 // Binding and Type share the same byte as upper and lower nibbles
Jan Sjödin30a52de2011-02-28 21:45:04 +0000475 uint8_t Binding = MCELF::GetBinding(OrigData);
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000476 uint8_t Type = MCELF::GetType(OrigData);
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000477 MCSymbolData *BaseSD = nullptr;
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000478 if (Base) {
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000479 BaseSD = &Layout.getAssembler().getSymbolData(*Base);
480 Type = mergeTypeForSet(Type, MCELF::GetType(*BaseSD));
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000481 }
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000482 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000483
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000484 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000485 // 2 bits
486 uint8_t Visibility = MCELF::GetVisibility(OrigData);
Logan Chienee365952013-12-05 00:34:11 +0000487 uint8_t Other = MCELF::getOther(OrigData) << (ELF_STO_Shift - ELF_STV_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000488 Other |= Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000489
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000490 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000491 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000492
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000493 const MCExpr *ESize = OrigData.getSize();
494 if (!ESize && Base)
495 ESize = BaseSD->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000496
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000497 if (ESize) {
498 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000499 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000500 report_fatal_error("Size expression must be absolute.");
501 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000502 }
503
504 // Write out the symbol table entry
Rafael Espindola10be0832014-03-25 23:44:25 +0000505 Writer.writeSymbol(MSD.StringIndex, Info, Value, Size, Other,
506 MSD.SectionIndex, IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000507}
508
Rafael Espindola5904e122014-03-29 06:26:49 +0000509// It is always valid to create a relocation with a symbol. It is preferable
510// to use a relocation with a section if that is possible. Using the section
511// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000512bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
513 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000514 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000515 unsigned Type) const {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000516 MCSymbolData *SD = Sym ? &Sym->getData() : nullptr;
517
Rafael Espindola5904e122014-03-29 06:26:49 +0000518 // A PCRel relocation to an absolute value has no symbol (or section). We
519 // represent that with a relocation to a null section.
520 if (!RefA)
521 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000522
Rafael Espindola5904e122014-03-29 06:26:49 +0000523 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
524 switch (Kind) {
525 default:
526 break;
527 // The .odp creation emits a relocation against the symbol ".TOC." which
528 // create a R_PPC64_TOC relocation. However the relocation symbol name
529 // in final object creation should be NULL, since the symbol does not
530 // really exist, it is just the reference to TOC base for the current
531 // object file. Since the symbol is undefined, returning false results
532 // in a relocation with a null section which is the desired result.
533 case MCSymbolRefExpr::VK_PPC_TOCBASE:
534 return false;
535
536 // These VariantKind cause the relocation to refer to something other than
537 // the symbol itself, like a linker generated table. Since the address of
538 // symbol is not relevant, we cannot replace the symbol with the
539 // section and patch the difference in the addend.
540 case MCSymbolRefExpr::VK_GOT:
541 case MCSymbolRefExpr::VK_PLT:
542 case MCSymbolRefExpr::VK_GOTPCREL:
543 case MCSymbolRefExpr::VK_Mips_GOT:
544 case MCSymbolRefExpr::VK_PPC_GOT_LO:
545 case MCSymbolRefExpr::VK_PPC_GOT_HI:
546 case MCSymbolRefExpr::VK_PPC_GOT_HA:
547 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000548 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000549
Rafael Espindola5904e122014-03-29 06:26:49 +0000550 // An undefined symbol is not in any section, so the relocation has to point
551 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000552 assert(Sym && "Expected a symbol");
553 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000554 return true;
555
556 unsigned Binding = MCELF::GetBinding(*SD);
557 switch(Binding) {
558 default:
559 llvm_unreachable("Invalid Binding");
560 case ELF::STB_LOCAL:
561 break;
562 case ELF::STB_WEAK:
563 // If the symbol is weak, it might be overridden by a symbol in another
564 // file. The relocation has to point to the symbol so that the linker
565 // can update it.
566 return true;
567 case ELF::STB_GLOBAL:
568 // Global ELF symbols can be preempted by the dynamic linker. The relocation
569 // has to point to the symbol for a reason analogous to the STB_WEAK case.
570 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000571 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000572
Rafael Espindola5904e122014-03-29 06:26:49 +0000573 // If a relocation points to a mergeable section, we have to be careful.
574 // If the offset is zero, a relocation with the section will encode the
575 // same information. With a non-zero offset, the situation is different.
576 // For example, a relocation can point 42 bytes past the end of a string.
577 // If we change such a relocation to use the section, the linker would think
578 // that it pointed to another string and subtracting 42 at runtime will
579 // produce the wrong value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000580 auto &Sec = cast<MCSectionELF>(Sym->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000581 unsigned Flags = Sec.getFlags();
582 if (Flags & ELF::SHF_MERGE) {
583 if (C != 0)
584 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000585
586 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
587 // only handle section relocations to mergeable sections if using RELA.
588 if (!hasRelocationAddend())
589 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000590 }
591
Rafael Espindola5904e122014-03-29 06:26:49 +0000592 // Most TLS relocations use a got, so they need the symbol. Even those that
Rafael Espindola11527a12014-10-06 12:33:27 +0000593 // are just an offset (@tpoff), require a symbol in gold versions before
594 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
595 // http://sourceware.org/PR16773.
Rafael Espindola5904e122014-03-29 06:26:49 +0000596 if (Flags & ELF::SHF_TLS)
597 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000598
Rafael Espindola9ef84412014-04-11 19:18:01 +0000599 // If the symbol is a thumb function the final relocation must set the lowest
600 // bit. With a symbol that is done by just having the symbol have that bit
601 // set, so we would lose the bit if we relocated with the section.
602 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000603 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000604 return true;
605
Ulrich Weigand46797c62014-07-20 23:15:06 +0000606 if (TargetObjectWriter->needsRelocateWithSymbol(*SD, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000607 return true;
608 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000609}
610
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000611static const MCSymbol *getWeakRef(const MCSymbolRefExpr &Ref) {
612 const MCSymbol &Sym = Ref.getSymbol();
613
614 if (Ref.getKind() == MCSymbolRefExpr::VK_WEAKREF)
615 return &Sym;
616
617 if (!Sym.isVariable())
618 return nullptr;
619
620 const MCExpr *Expr = Sym.getVariableValue();
621 const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr);
622 if (!Inner)
623 return nullptr;
624
625 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF)
626 return &Inner->getSymbol();
627 return nullptr;
628}
629
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000630// True if the assembler knows nothing about the final value of the symbol.
631// This doesn't cover the comdat issues, since in those cases the assembler
632// can at least know that all symbols in the section will move together.
Rafael Espindolac9e70682015-03-24 23:48:44 +0000633static bool isWeak(const MCSymbolData &D) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000634 if (MCELF::GetType(D) == ELF::STT_GNU_IFUNC)
635 return true;
636
637 switch (MCELF::GetBinding(D)) {
638 default:
639 llvm_unreachable("Unknown binding");
640 case ELF::STB_LOCAL:
641 return false;
642 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000643 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000644 case ELF::STB_WEAK:
645 case ELF::STB_GNU_UNIQUE:
646 return true;
647 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000648}
649
Rafael Espindola26585542015-01-19 21:11:14 +0000650void ELFObjectWriter::RecordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000651 const MCAsmLayout &Layout,
652 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000653 const MCFixup &Fixup, MCValue Target,
654 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola7549f872015-05-26 00:36:57 +0000655 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000656 uint64_t C = Target.getConstant();
657 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000658
Rafael Espindola5904e122014-03-29 06:26:49 +0000659 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
660 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
661 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000662
Rafael Espindola5904e122014-03-29 06:26:49 +0000663 // Let A, B and C being the components of Target and R be the location of
664 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
665 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000666
Rafael Espindola5904e122014-03-29 06:26:49 +0000667 // In general, ELF has no relocations for -B. It can only represent (A + C)
668 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
669 // replace B to implement it: (A - R - K + C)
670 if (IsPCRel)
Jim Grosbach6f482002015-05-18 18:43:14 +0000671 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000672 Fixup.getLoc(),
673 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000674
Rafael Espindola5904e122014-03-29 06:26:49 +0000675 const MCSymbol &SymB = RefB->getSymbol();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000676
Rafael Espindola5904e122014-03-29 06:26:49 +0000677 if (SymB.isUndefined())
Jim Grosbach6f482002015-05-18 18:43:14 +0000678 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000679 Fixup.getLoc(),
680 Twine("symbol '") + SymB.getName() +
681 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000682
Rafael Espindola5904e122014-03-29 06:26:49 +0000683 assert(!SymB.isAbsolute() && "Should have been folded");
684 const MCSection &SecB = SymB.getSection();
Rafael Espindola34948e52015-04-30 00:45:46 +0000685 if (&SecB != &FixupSection)
Jim Grosbach6f482002015-05-18 18:43:14 +0000686 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000687 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000688
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000689 if (::isWeak(SymB.getData()))
Jim Grosbach6f482002015-05-18 18:43:14 +0000690 Asm.getContext().reportFatalError(
Rafael Espindolac9e70682015-03-24 23:48:44 +0000691 Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
692
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000693 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000694 uint64_t K = SymBOffset - FixupOffset;
695 IsPCRel = true;
696 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000697 }
698
Rafael Espindola5904e122014-03-29 06:26:49 +0000699 // We either rejected the fixup or folded B into C at this point.
700 const MCSymbolRefExpr *RefA = Target.getSymA();
701 const MCSymbol *SymA = RefA ? &RefA->getSymbol() : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000702
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000703 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000704 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000705 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000706 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000707
708 uint64_t Addend = 0;
709 if (hasRelocationAddend()) {
710 Addend = C;
711 C = 0;
712 }
713
714 FixedValue = C;
715
Rafael Espindola5904e122014-03-29 06:26:49 +0000716 if (!RelocateWithSymbol) {
717 const MCSection *SecA =
718 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000719 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
Rafael Espindola2f9bdd82015-05-27 20:52:32 +0000720 const MCSymbol *SectionSymbol = ELFSec ? ELFSec->getBeginSymbol() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000721 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000722 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000723 return;
724 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000725
Rafael Espindola5904e122014-03-29 06:26:49 +0000726 if (SymA) {
727 if (const MCSymbol *R = Renames.lookup(SymA))
728 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000729
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000730 if (const MCSymbol *WeakRef = getWeakRef(*RefA))
731 WeakrefUsedInReloc.insert(WeakRef);
Rafael Espindola5904e122014-03-29 06:26:49 +0000732 else
733 UsedInReloc.insert(SymA);
734 }
735 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000736 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000737 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000738}
739
740
Benjamin Kramer86511dc2010-08-23 21:19:37 +0000741uint64_t
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000742ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
743 const MCSymbol *S) {
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +0000744 assert(S->hasData());
745 return S->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000746}
747
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000748bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000749 const MCSymbol &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000750 bool Renamed) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000751 const MCSymbolData &Data = Symbol.getData();
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000752 if (Symbol.isVariable()) {
753 const MCExpr *Expr = Symbol.getVariableValue();
754 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
755 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
756 return false;
757 }
758 }
Rafael Espindola16145972010-11-01 14:28:48 +0000759
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000760 if (Used)
761 return true;
762
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000763 if (Renamed)
764 return false;
765
Rafael Espindola45834a02010-10-29 23:09:31 +0000766 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
767 return true;
768
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000769 if (Symbol.isVariable()) {
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000770 const MCSymbol *Base = Layout.getBaseSymbol(Symbol);
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000771 if (Base && Base->isUndefined())
772 return false;
773 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000774
Jan Sjödin30a52de2011-02-28 21:45:04 +0000775 bool IsGlobal = MCELF::GetBinding(Data) == ELF::STB_GLOBAL;
Rafael Espindola9e18e962011-02-23 20:22:07 +0000776 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000777 return false;
778
Rafael Espindola2f9bdd82015-05-27 20:52:32 +0000779 if (MCELF::GetType(Data) == ELF::STT_SECTION)
780 return true;
781
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000782 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000783 return false;
784
785 return true;
786}
787
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000788bool ELFObjectWriter::isLocal(const MCSymbol &Symbol, bool isUsedInReloc) {
789 const MCSymbolData &Data = Symbol.getData();
Rafael Espindolab1d07892010-10-05 18:01:23 +0000790 if (Data.isExternal())
791 return false;
792
Rafael Espindola39f50422014-04-28 14:24:44 +0000793 if (Symbol.isDefined())
794 return true;
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000795
Rafael Espindola39f50422014-04-28 14:24:44 +0000796 if (isUsedInReloc)
Rafael Espindolab1d07892010-10-05 18:01:23 +0000797 return false;
798
799 return true;
800}
801
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000802void ELFObjectWriter::computeSymbolTable(
803 MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000804 const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
805 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000806 MCContext &Ctx = Asm.getContext();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000807 SymbolTableWriter Writer(*this, is64Bit());
808
Rafael Espindola5960cee2015-05-22 23:58:30 +0000809 // Symbol table
810 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
811 MCSectionELF *SymtabSection =
812 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
813 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
814 SymbolTableIndex = addToSectionTable(SymtabSection);
815
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000816 uint64_t Padding =
817 OffsetToAlignment(OS.tell(), SymtabSection->getAlignment());
818 WriteZeros(Padding);
819
820 uint64_t SecStart = OS.tell();
821
822 // The first entry is the undefined symbol entry.
823 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
824
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000825 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000826 bool HasLargeSectionIndex = false;
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000827 for (const MCSymbol &Symbol : Asm.symbols()) {
828 MCSymbolData &SD = Symbol.getData();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000829
Rafael Espindola16145972010-11-01 14:28:48 +0000830 bool Used = UsedInReloc.count(&Symbol);
831 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000832 bool isSignature = RevGroupMap.count(&Symbol);
833
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000834 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000835 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000836 continue;
837
Matt Fleming6c1ad482010-08-16 18:57:57 +0000838 ELFSymbolData MSD;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000839 MSD.Symbol = &Symbol;
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000840 const MCSymbol *BaseSymbol = Layout.getBaseSymbol(Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000841
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000842 // Undefined symbols are global, but this is the first place we
843 // are able to set it.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000844 bool Local = isLocal(Symbol, Used);
David Blaikie583a31c2014-04-18 18:24:25 +0000845 if (!Local && MCELF::GetBinding(SD) == ELF::STB_LOCAL) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000846 assert(BaseSymbol);
David Blaikie583a31c2014-04-18 18:24:25 +0000847 MCSymbolData &BaseData = Asm.getSymbolData(*BaseSymbol);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000848 MCELF::SetBinding(SD, ELF::STB_GLOBAL);
David Blaikie583a31c2014-04-18 18:24:25 +0000849 MCELF::SetBinding(BaseData, ELF::STB_GLOBAL);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000850 }
851
Rafael Espindola022bb762014-03-24 03:43:21 +0000852 if (!BaseSymbol) {
853 MSD.SectionIndex = ELF::SHN_ABS;
David Blaikie583a31c2014-04-18 18:24:25 +0000854 } else if (SD.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000855 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000856 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindola022bb762014-03-24 03:43:21 +0000857 } else if (BaseSymbol->isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000858 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000859 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000860 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
861 HasLargeSectionIndex = true;
862 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000863 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000864 }
Rafael Espindola022bb762014-03-24 03:43:21 +0000865 if (!Used && WeakrefUsed)
David Blaikie583a31c2014-04-18 18:24:25 +0000866 MCELF::SetBinding(SD, ELF::STB_WEAK);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000867 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000868 const MCSectionELF &Section =
Rafael Espindola022bb762014-03-24 03:43:21 +0000869 static_cast<const MCSectionELF&>(BaseSymbol->getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000870 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000871 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000872 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
873 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000874 }
875
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000876 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
877 // in defined ones.
878 //
879 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000880 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000881 // trivial.
882 //
883 // We thus have to be careful to not perform the symbol version replacement
884 // blindly:
885 //
886 // The ELF format is used on Windows by the MCJIT engine. Thus, on
887 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
888 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
889 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
890 // the EFLObjectWriter should not interpret the "@@@" sub-string as
891 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
892 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
893 // "__imp_?" or "__imp_@?".
894 //
895 // It would have been interesting to perform the MS mangling prefix check
896 // only when the target triple is of the form *-pc-windows-elf. But, it
897 // seems that this information is not easily accessible from the
898 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000899 StringRef Name = Symbol.getName();
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000900 if (!Name.startswith("?") && !Name.startswith("@?") &&
901 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
902 // This symbol isn't following the MSVC C++ name mangling convention. We
903 // can thus safely interpret the @@@ in symbol names as specifying symbol
904 // versioning.
905 SmallString<32> Buf;
906 size_t Pos = Name.find("@@@");
907 if (Pos != StringRef::npos) {
908 Buf += Name.substr(0, Pos);
909 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
910 Buf += Name.substr(Pos + Skip);
911 Name = Buf;
912 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000913 }
Rafael Espindolab6613022014-10-17 01:48:58 +0000914
915 // Sections have their own string table
916 if (MCELF::GetType(SD) != ELF::STT_SECTION)
917 MSD.Name = StrTabBuilder.add(Name);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000918
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000919 if (MSD.SectionIndex == ELF::SHN_UNDEF)
920 UndefinedSymbolData.push_back(MSD);
921 else if (Local)
922 LocalSymbolData.push_back(MSD);
923 else
924 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000925 }
926
Rafael Espindola5960cee2015-05-22 23:58:30 +0000927 if (HasLargeSectionIndex) {
928 MCSectionELF *SymtabShndxSection =
929 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
930 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
931 SymtabShndxSection->setAlignment(4);
932 }
933
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000934 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i)
935 StrTabBuilder.add(*i);
936
Hans Wennborgf26bfc12014-09-29 22:43:20 +0000937 StrTabBuilder.finalize(StringTableBuilder::ELF);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000938
939 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i)
940 FileSymbolData.push_back(StrTabBuilder.getOffset(*i));
941
Matt Fleming6c1ad482010-08-16 18:57:57 +0000942 // Symbols are required to be in lexicographic order.
943 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
944 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
945 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
946
947 // Set the symbol indices. Local symbols must come before all other
948 // symbols with non-local bindings.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000949 unsigned Index = FileSymbolData.size() + 1;
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000950
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000951 for (ELFSymbolData &MSD : LocalSymbolData) {
952 MSD.StringIndex = MCELF::GetType(MSD.Symbol->getData()) == ELF::STT_SECTION
953 ? 0
954 : StrTabBuilder.getOffset(MSD.Name);
955 MSD.Symbol->setIndex(Index++);
956 }
957 for (ELFSymbolData &MSD : ExternalSymbolData) {
958 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
959 MSD.Symbol->setIndex(Index++);
960 }
961 for (ELFSymbolData &MSD : UndefinedSymbolData) {
962 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
963 MSD.Symbol->setIndex(Index++);
964 }
965
966 for (unsigned i = 0, e = FileSymbolData.size(); i != e; ++i) {
967 Writer.writeSymbol(FileSymbolData[i], ELF::STT_FILE | ELF::STB_LOCAL, 0, 0,
968 ELF::STV_DEFAULT, ELF::SHN_ABS, true);
969 }
970
971 // Write the symbol table entries.
972 LastLocalSymbolIndex = FileSymbolData.size() + LocalSymbolData.size() + 1;
973
974 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
975 ELFSymbolData &MSD = LocalSymbolData[i];
976 WriteSymbol(Writer, MSD, Layout);
977 }
978
979 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
980 ELFSymbolData &MSD = ExternalSymbolData[i];
981 MCSymbolData &Data = MSD.Symbol->getData();
982 assert(((Data.getFlags() & ELF_STB_Global) ||
983 (Data.getFlags() & ELF_STB_Weak)) &&
984 "External symbol requires STB_GLOBAL or STB_WEAK flag");
985 WriteSymbol(Writer, MSD, Layout);
986 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
987 LastLocalSymbolIndex++;
988 }
989
990 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
991 ELFSymbolData &MSD = UndefinedSymbolData[i];
992 MCSymbolData &Data = MSD.Symbol->getData();
993 WriteSymbol(Writer, MSD, Layout);
994 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
995 LastLocalSymbolIndex++;
996 }
997
998 uint64_t SecEnd = OS.tell();
999 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
1000
1001 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
1002 if (ShndxIndexes.empty()) {
1003 assert(SymtabShndxSectionIndex == 0);
1004 return;
1005 }
1006 assert(SymtabShndxSectionIndex != 0);
1007
1008 SecStart = OS.tell();
1009 const MCSectionELF *SymtabShndxSection =
1010 SectionTable[SymtabShndxSectionIndex - 1];
1011 for (uint32_t Index : ShndxIndexes)
1012 write(Index);
1013 SecEnd = OS.tell();
1014 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001015}
1016
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001017MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001018ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +00001019 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +00001020 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +00001021 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001022
Rafael Espindola34948e52015-04-30 00:45:46 +00001023 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +00001024 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
1025 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +00001026
Rafael Espindolaead85492015-02-17 20:31:13 +00001027 unsigned EntrySize;
1028 if (hasRelocationAddend())
1029 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
1030 else
1031 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001032
Rafael Espindolaead85492015-02-17 20:31:13 +00001033 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +00001034 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +00001035 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +00001036
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001037 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +00001038 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +00001039 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001040 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +00001041 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001042}
Matt Fleming6c1ad482010-08-16 18:57:57 +00001043
David Blaikiee06e8012014-04-11 22:11:50 +00001044static SmallVector<char, 128>
Rafael Espindolaae7e4992015-04-29 19:20:10 +00001045getUncompressedData(const MCAsmLayout &Layout,
Rafael Espindolaa32d0e92015-05-27 15:14:11 +00001046 const MCSection::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +00001047 SmallVector<char, 128> UncompressedData;
1048 for (const MCFragment &F : Fragments) {
1049 const SmallVectorImpl<char> *Contents;
1050 switch (F.getKind()) {
1051 case MCFragment::FT_Data:
1052 Contents = &cast<MCDataFragment>(F).getContents();
1053 break;
1054 case MCFragment::FT_Dwarf:
1055 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
1056 break;
1057 case MCFragment::FT_DwarfFrame:
1058 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
1059 break;
1060 default:
1061 llvm_unreachable(
1062 "Not expecting any other fragment types in a debug_* section");
1063 }
1064 UncompressedData.append(Contents->begin(), Contents->end());
1065 }
1066 return UncompressedData;
1067}
1068
1069// Include the debug info compression header:
1070// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
1071// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +00001072static bool
David Blaikiee06e8012014-04-11 22:11:50 +00001073prependCompressionHeader(uint64_t Size,
1074 SmallVectorImpl<char> &CompressedContents) {
Benjamin Kramer7149aab2015-03-01 18:09:56 +00001075 const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +00001076 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
1077 return false;
David Blaikie8019bf82014-04-10 21:53:53 +00001078 if (sys::IsLittleEndianHost)
Artyom Skrobov9aea8432014-06-14 13:18:07 +00001079 sys::swapByteOrder(Size);
David Blaikie8019bf82014-04-10 21:53:53 +00001080 CompressedContents.insert(CompressedContents.begin(),
1081 Magic.size() + sizeof(Size), 0);
1082 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
1083 std::copy(reinterpret_cast<char *>(&Size),
1084 reinterpret_cast<char *>(&Size + 1),
1085 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +00001086 return true;
David Blaikie8019bf82014-04-10 21:53:53 +00001087}
1088
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001089void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +00001090 const MCAsmLayout &Layout) {
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001091 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001092 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +00001093
Rafael Espindola868b3f42015-04-30 21:51:58 +00001094 // Compressing debug_frame requires handling alignment fragments which is
1095 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1096 // for writing to arbitrary buffers) for little benefit.
1097 if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
1098 !SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001099 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001100 return;
1101 }
1102
1103 // Gather the uncompressed data from all the fragments.
Rafael Espindolaa32d0e92015-05-27 15:14:11 +00001104 const MCSection::FragmentListType &Fragments = Section.getFragmentList();
David Blaikie8019bf82014-04-10 21:53:53 +00001105 SmallVector<char, 128> UncompressedData =
1106 getUncompressedData(Layout, Fragments);
1107
Rafael Espindola868b3f42015-04-30 21:51:58 +00001108 SmallVector<char, 128> CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001109 zlib::Status Success = zlib::compress(
1110 StringRef(UncompressedData.data(), UncompressedData.size()),
1111 CompressedContents);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001112 if (Success != zlib::StatusOK) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001113 Asm.writeSectionData(&Section, Layout);
David Blaikie8019bf82014-04-10 21:53:53 +00001114 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001115 }
David Blaikie8019bf82014-04-10 21:53:53 +00001116
Rafael Espindola868b3f42015-04-30 21:51:58 +00001117 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001118 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001119 return;
1120 }
David Blaikie8019bf82014-04-10 21:53:53 +00001121 Asm.getContext().renameELFSection(&Section,
1122 (".z" + SectionName.drop_front(1)).str());
Rafael Espindola868b3f42015-04-30 21:51:58 +00001123 OS << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001124}
1125
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001126void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1127 uint64_t Flags, uint64_t Address,
1128 uint64_t Offset, uint64_t Size,
1129 uint32_t Link, uint32_t Info,
1130 uint64_t Alignment,
1131 uint64_t EntrySize) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001132 Write32(Name); // sh_name: index into string table
1133 Write32(Type); // sh_type
1134 WriteWord(Flags); // sh_flags
1135 WriteWord(Address); // sh_addr
1136 WriteWord(Offset); // sh_offset
1137 WriteWord(Size); // sh_size
1138 Write32(Link); // sh_link
1139 Write32(Info); // sh_info
1140 WriteWord(Alignment); // sh_addralign
1141 WriteWord(EntrySize); // sh_entsize
1142}
1143
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001144void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001145 const MCSectionELF &Sec) {
1146 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001147
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001148 // Sort the relocation entries. Most targets just sort by Offset, but some
1149 // (e.g., MIPS) have additional constraints.
1150 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001151
1152 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001153 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindolab6613022014-10-17 01:48:58 +00001154 unsigned Index =
1155 Entry.Symbol ? getSymbolIndexInSymbolTable(Asm, Entry.Symbol) : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001156
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001157 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001158 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001159 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001160 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001161
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001162 write(TargetObjectWriter->getRSsym(Entry.Type));
1163 write(TargetObjectWriter->getRType3(Entry.Type));
1164 write(TargetObjectWriter->getRType2(Entry.Type));
1165 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001166 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001167 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001168 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001169 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001170 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001171 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001172 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001173 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001174 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001175
Rafael Espindolabce26a12010-10-05 15:11:03 +00001176 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001177 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001178 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001179
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001180 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001181 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001182 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001183 }
1184}
1185
Rafael Espindolab1863912015-04-30 21:10:06 +00001186const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001187 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
Rafael Espindola88abc392015-04-29 20:34:31 +00001188 OS << StrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001189 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001190}
1191
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001192void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1193 uint32_t GroupSymbolIndex, uint64_t Offset,
1194 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001195 uint64_t sh_link = 0;
1196 uint64_t sh_info = 0;
1197
1198 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001199 default:
1200 // Nothing to do.
1201 break;
1202
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001203 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001204 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001205
1206 case ELF::SHT_REL:
1207 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001208 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001209 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001210 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001211 sh_info = SectionIndexMap.lookup(InfoSection);
1212 break;
1213 }
1214
1215 case ELF::SHT_SYMTAB:
1216 case ELF::SHT_DYNSYM:
1217 sh_link = StringTableIndex;
1218 sh_info = LastLocalSymbolIndex;
1219 break;
1220
1221 case ELF::SHT_SYMTAB_SHNDX:
1222 sh_link = SymbolTableIndex;
1223 break;
1224
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001225 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001226 sh_link = SymbolTableIndex;
1227 sh_info = GroupSymbolIndex;
1228 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001229 }
1230
Logan Chien4b724422013-02-05 14:18:59 +00001231 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001232 Section.getType() == ELF::SHT_ARM_EXIDX)
1233 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001234
Rafael Espindola5960cee2015-05-22 23:58:30 +00001235 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001236 Section.getType(), Section.getFlags(), 0, Offset, Size,
1237 sh_link, sh_info, Section.getAlignment(),
1238 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001239}
1240
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001241void ELFObjectWriter::writeSectionHeader(
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001242 const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001243 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001244 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001245 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001246
Matt Fleming6c1ad482010-08-16 18:57:57 +00001247 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001248 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001249 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001250 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001251
Rafael Espindola08850b32015-05-25 21:56:55 +00001252 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001253 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001254 unsigned Type = Section->getType();
1255 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001256 GroupSymbolIndex = 0;
1257 else
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001258 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm, Section->getGroup());
Matt Fleming6c1ad482010-08-16 18:57:57 +00001259
Rafael Espindolabda19802015-04-30 14:21:49 +00001260 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001261 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001262 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001263 if (Type == ELF::SHT_NOBITS)
1264 Size = Layout.getSectionAddressSize(Section);
1265 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001266 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001267
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001268 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001269 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001270 }
1271}
1272
Rafael Espindola1557fd62011-03-20 18:44:20 +00001273void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1274 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001275 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001276 MCSectionELF *StrtabSection =
1277 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1278 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001279
Rafael Espindola1557fd62011-03-20 18:44:20 +00001280 RevGroupMapTy RevGroupMap;
1281 SectionIndexMapTy SectionIndexMap;
1282
Rafael Espindolabda19802015-04-30 14:21:49 +00001283 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001284
Rafael Espindola1557fd62011-03-20 18:44:20 +00001285 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001286 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001287
Rafael Espindola7230f802015-04-08 11:41:24 +00001288 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001289 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001290 std::vector<MCSectionELF *> Groups;
1291 std::vector<MCSectionELF *> Relocations;
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001292 for (MCSection &Sec : Asm) {
1293 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindolabda19802015-04-30 14:21:49 +00001294
Rafael Espindola967d6a62015-05-21 21:02:35 +00001295 uint64_t Padding = OffsetToAlignment(OS.tell(), Section.getAlignment());
Rafael Espindola642a2212015-04-14 22:54:16 +00001296 WriteZeros(Padding);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001297
Rafael Espindola642a2212015-04-14 22:54:16 +00001298 // Remember the offset into the file for this section.
Rafael Espindolab6417502015-04-28 15:04:09 +00001299 uint64_t SecStart = OS.tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001300
Rafael Espindolabda19802015-04-30 14:21:49 +00001301 const MCSymbol *SignatureSymbol = Section.getGroup();
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001302 writeSectionData(Asm, Section, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001303
Rafael Espindolab6417502015-04-28 15:04:09 +00001304 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001305 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1306
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001307 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001308
1309 if (SignatureSymbol) {
1310 Asm.getOrCreateSymbolData(*SignatureSymbol);
1311 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1312 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001313 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001314 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001315 Group->setAlignment(4);
1316 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001317 }
1318 GroupMembers[SignatureSymbol].push_back(&Section);
1319 if (RelSection)
1320 GroupMembers[SignatureSymbol].push_back(RelSection);
1321 }
1322
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001323 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001324 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001325 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001326 Relocations.push_back(RelSection);
1327 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001328 }
1329
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001330 for (MCSectionELF *Group : Groups) {
1331 uint64_t Padding = OffsetToAlignment(OS.tell(), Group->getAlignment());
1332 WriteZeros(Padding);
1333
1334 // Remember the offset into the file for this section.
1335 uint64_t SecStart = OS.tell();
1336
1337 const MCSymbol *SignatureSymbol = Group->getGroup();
1338 assert(SignatureSymbol);
1339 write(uint32_t(ELF::GRP_COMDAT));
1340 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1341 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1342 write(SecIndex);
1343 }
1344
1345 uint64_t SecEnd = OS.tell();
1346 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1347 }
1348
1349 // Compute symbol table information.
Rafael Espindolaaa486e92015-05-28 17:54:01 +00001350 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001351
1352 for (MCSectionELF *RelSection : Relocations) {
1353 uint64_t Padding = OffsetToAlignment(OS.tell(), RelSection->getAlignment());
1354 WriteZeros(Padding);
1355
1356 // Remember the offset into the file for this section.
1357 uint64_t SecStart = OS.tell();
1358
1359 writeRelocations(Asm, *RelSection->getAssociatedSection());
1360
1361 uint64_t SecEnd = OS.tell();
1362 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001363 }
1364
Rafael Espindola88d1f632015-04-29 20:25:24 +00001365 {
1366 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001367 const MCSectionELF *Sec = createStringTable(Ctx);
Rafael Espindola88abc392015-04-29 20:34:31 +00001368 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001369 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001370 }
1371
Rafael Espindola642a2212015-04-14 22:54:16 +00001372 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001373 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001374 WriteZeros(Padding);
1375
Rafael Espindola642a2212015-04-14 22:54:16 +00001376 const unsigned SectionHeaderOffset = OS.tell();
1377
Rafael Espindola1557fd62011-03-20 18:44:20 +00001378 // ... then the section header table ...
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001379 writeSectionHeader(Asm, Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001380
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001381 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001382 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001383 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001384 if (sys::IsLittleEndianHost != IsLittleEndian)
1385 sys::swapByteOrder(NumSections);
1386 unsigned NumSectionsOffset;
1387
Rafael Espindola642a2212015-04-14 22:54:16 +00001388 if (is64Bit()) {
1389 uint64_t Val = SectionHeaderOffset;
1390 if (sys::IsLittleEndianHost != IsLittleEndian)
1391 sys::swapByteOrder(Val);
1392 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1393 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001394 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001395 } else {
1396 uint32_t Val = SectionHeaderOffset;
1397 if (sys::IsLittleEndianHost != IsLittleEndian)
1398 sys::swapByteOrder(Val);
1399 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1400 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001401 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001402 }
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001403 OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
1404 NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001405}
1406
Rafael Espindola94a88d72015-04-06 15:27:57 +00001407bool ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001408 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001409 bool InSet, bool IsPCRel) const {
1410 if (IsPCRel) {
1411 assert(!InSet);
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001412 if (::isWeak(SymA.getData()))
Rafael Espindola35d61892015-04-17 21:15:17 +00001413 return false;
1414 }
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001415 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001416 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001417}
1418
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +00001419bool ELFObjectWriter::isWeak(const MCSymbol &Sym) const {
1420 const MCSymbolData &SD = Sym.getData();
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001421 if (::isWeak(SD))
1422 return true;
1423
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001424 // It is invalid to replace a reference to a global in a comdat
1425 // with a reference to a local since out of comdat references
1426 // to a local are forbidden.
1427 // We could try to return false for more cases, like the reference
1428 // being in the same comdat or Sym being an alias to another global,
1429 // but it is not clear if it is worth the effort.
Rafael Espindola29c82702015-04-20 12:44:06 +00001430 if (MCELF::GetBinding(SD) != ELF::STB_GLOBAL)
1431 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001432
Rafael Espindola29c82702015-04-20 12:44:06 +00001433 if (!Sym.isInSection())
1434 return false;
1435
1436 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1437 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001438}
1439
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001440MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001441 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001442 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001443 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001444}