blob: 07b1d924e2b79053bc2ba7a6cdc878ce95f227d7 [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
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000014#include "llvm/ADT/ArrayRef.h"
15#include "llvm/ADT/DenseMap.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000016#include "llvm/ADT/STLExtras.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000017#include "llvm/ADT/SmallString.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000018#include "llvm/ADT/SmallVector.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000019#include "llvm/ADT/StringRef.h"
20#include "llvm/ADT/Twine.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000021#include "llvm/BinaryFormat/ELF.h"
Rafael Espindolaceecfe5b2017-07-11 23:56:10 +000022#include "llvm/MC/MCAsmBackend.h"
David Blaikie8019bf82014-04-10 21:53:53 +000023#include "llvm/MC/MCAsmInfo.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000024#include "llvm/MC/MCAsmLayout.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000025#include "llvm/MC/MCAssembler.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000026#include "llvm/MC/MCContext.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000027#include "llvm/MC/MCELFObjectWriter.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000028#include "llvm/MC/MCExpr.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000029#include "llvm/MC/MCFixup.h"
Rafael Espindolaceecfe5b2017-07-11 23:56:10 +000030#include "llvm/MC/MCFixupKindInfo.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000031#include "llvm/MC/MCFragment.h"
Craig Topper6e80c282012-03-26 06:58:25 +000032#include "llvm/MC/MCObjectWriter.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000033#include "llvm/MC/MCSection.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000034#include "llvm/MC/MCSectionELF.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000035#include "llvm/MC/MCSymbol.h"
Rafael Espindolaa8695762015-06-02 00:25:12 +000036#include "llvm/MC/MCSymbolELF.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000037#include "llvm/MC/MCValue.h"
Rafael Espindola97de4742014-07-03 02:01:39 +000038#include "llvm/MC/StringTableBuilder.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000039#include "llvm/Support/Allocator.h"
40#include "llvm/Support/Casting.h"
David Blaikie8019bf82014-04-10 21:53:53 +000041#include "llvm/Support/Compression.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000042#include "llvm/Support/Endian.h"
George Rimar167ca4a2017-01-17 15:45:07 +000043#include "llvm/Support/Error.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000044#include "llvm/Support/ErrorHandling.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000045#include "llvm/Support/Host.h"
46#include "llvm/Support/MathExtras.h"
47#include "llvm/Support/SMLoc.h"
Rafael Espindolafc063e82015-10-22 18:32:06 +000048#include "llvm/Support/StringSaver.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000049#include "llvm/Support/SwapByteOrder.h"
50#include "llvm/Support/raw_ostream.h"
51#include <algorithm>
52#include <cassert>
53#include <cstddef>
54#include <cstdint>
55#include <map>
56#include <memory>
57#include <string>
58#include <utility>
Matt Fleming6c1ad482010-08-16 18:57:57 +000059#include <vector>
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +000060
Matt Fleming6c1ad482010-08-16 18:57:57 +000061using namespace llvm;
62
Jason W Kimc09e7262011-05-11 22:53:06 +000063#undef DEBUG_TYPE
64#define DEBUG_TYPE "reloc-info"
65
Rafael Espindola29abd972011-12-22 03:38:00 +000066namespace {
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000067
Eugene Zelenko7975b992017-04-26 22:31:39 +000068using SectionIndexMapTy = DenseMap<const MCSectionELF *, uint32_t>;
Rafael Espindola10be0832014-03-25 23:44:25 +000069
Rafael Espindola91fd2772015-04-29 21:09:32 +000070class ELFObjectWriter;
71
Rafael Espindola10be0832014-03-25 23:44:25 +000072class SymbolTableWriter {
Rafael Espindola91fd2772015-04-29 21:09:32 +000073 ELFObjectWriter &EWriter;
Rafael Espindola10be0832014-03-25 23:44:25 +000074 bool Is64Bit;
Rafael Espindola10be0832014-03-25 23:44:25 +000075
Rafael Espindola91fd2772015-04-29 21:09:32 +000076 // indexes we are going to write to .symtab_shndx.
77 std::vector<uint32_t> ShndxIndexes;
Rafael Espindola10be0832014-03-25 23:44:25 +000078
79 // The numbel of symbols written so far.
80 unsigned NumWritten;
81
82 void createSymtabShndx();
83
Rafael Espindola91fd2772015-04-29 21:09:32 +000084 template <typename T> void write(T Value);
Rafael Espindola10be0832014-03-25 23:44:25 +000085
86public:
Rafael Espindola91fd2772015-04-29 21:09:32 +000087 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
Rafael Espindola10be0832014-03-25 23:44:25 +000088
89 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
90 uint8_t other, uint32_t shndx, bool Reserved);
Rafael Espindola91fd2772015-04-29 21:09:32 +000091
92 ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; }
Rafael Espindola10be0832014-03-25 23:44:25 +000093};
94
Rafael Espindola29abd972011-12-22 03:38:00 +000095class ELFObjectWriter : public MCObjectWriter {
David Blaikiea0fa2622016-04-12 21:45:53 +000096 static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout);
97 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolELF &Symbol,
98 bool Used, bool Renamed);
Rafael Espindola29abd972011-12-22 03:38:00 +000099
David Blaikiea0fa2622016-04-12 21:45:53 +0000100 /// Helper struct for containing some precomputed information on symbols.
101 struct ELFSymbolData {
102 const MCSymbolELF *Symbol;
103 uint32_t SectionIndex;
104 StringRef Name;
Rafael Espindola29abd972011-12-22 03:38:00 +0000105
David Blaikiea0fa2622016-04-12 21:45:53 +0000106 // Support lexicographic sorting.
107 bool operator<(const ELFSymbolData &RHS) const {
108 unsigned LHSType = Symbol->getType();
109 unsigned RHSType = RHS.Symbol->getType();
110 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
111 return false;
112 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
113 return true;
114 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
115 return SectionIndex < RHS.SectionIndex;
116 return Name < RHS.Name;
Rafael Espindola29abd972011-12-22 03:38:00 +0000117 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000118 };
David Blaikiea0fa2622016-04-12 21:45:53 +0000119
120 /// The target specific ELF writer instance.
121 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
122
123 DenseMap<const MCSymbolELF *, const MCSymbolELF *> Renames;
124
Eugene Zelenkod3a6c892017-02-11 00:27:28 +0000125 DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>> Relocations;
David Blaikiea0fa2622016-04-12 21:45:53 +0000126
127 /// @}
128 /// @name Symbol Table Data
129 /// @{
130
David Blaikiea0fa2622016-04-12 21:45:53 +0000131 StringTableBuilder StrTabBuilder{StringTableBuilder::ELF};
132
133 /// @}
134
135 // This holds the symbol table index of the last local symbol.
136 unsigned LastLocalSymbolIndex;
137 // This holds the .strtab section index.
138 unsigned StringTableIndex;
139 // This holds the .symtab section index.
140 unsigned SymbolTableIndex;
141
142 // Sections in the order they are to be output in the section table.
143 std::vector<const MCSectionELF *> SectionTable;
144 unsigned addToSectionTable(const MCSectionELF *Sec);
145
146 // TargetObjectWriter wrappers.
147 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
148 bool hasRelocationAddend() const {
149 return TargetObjectWriter->hasRelocationAddend();
150 }
151 unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
152 const MCFixup &Fixup, bool IsPCRel) const {
153 return TargetObjectWriter->getRelocType(Ctx, Target, Fixup, IsPCRel);
154 }
155
156 void align(unsigned Alignment);
157
George Rimarc91e38c2016-05-27 12:27:32 +0000158 bool maybeWriteCompression(uint64_t Size,
159 SmallVectorImpl<char> &CompressedContents,
160 bool ZLibStyle, unsigned Alignment);
161
David Blaikiea0fa2622016-04-12 21:45:53 +0000162public:
Lang Hamesdcb312b2017-10-09 23:53:15 +0000163 ELFObjectWriter(std::unique_ptr<MCELFObjectTargetWriter> MOTW,
164 raw_pwrite_stream &OS, bool IsLittleEndian)
165 : MCObjectWriter(OS, IsLittleEndian),
166 TargetObjectWriter(std::move(MOTW)) {}
David Blaikiea0fa2622016-04-12 21:45:53 +0000167
Eugene Zelenkod3a6c892017-02-11 00:27:28 +0000168 ~ELFObjectWriter() override = default;
169
David Blaikiea0fa2622016-04-12 21:45:53 +0000170 void reset() override {
171 Renames.clear();
172 Relocations.clear();
173 StrTabBuilder.clear();
174 SectionTable.clear();
175 MCObjectWriter::reset();
176 }
177
David Blaikiea0fa2622016-04-12 21:45:53 +0000178 void WriteWord(uint64_t W) {
179 if (is64Bit())
180 write64(W);
181 else
182 write32(W);
183 }
184
185 template <typename T> void write(T Val) {
Peter Collingbournee3f65292018-05-18 19:46:24 +0000186 support::endian::write(getStream(), Val,
187 IsLittleEndian ? support::little : support::big);
David Blaikiea0fa2622016-04-12 21:45:53 +0000188 }
189
190 void writeHeader(const MCAssembler &Asm);
191
192 void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
193 ELFSymbolData &MSD, const MCAsmLayout &Layout);
194
195 // Start and end offset of each section
Eugene Zelenko7975b992017-04-26 22:31:39 +0000196 using SectionOffsetsTy =
197 std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>;
David Blaikiea0fa2622016-04-12 21:45:53 +0000198
199 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
200 const MCSymbolRefExpr *RefA,
Sam Clegg22c568b2018-05-07 23:52:17 +0000201 const MCSymbolELF *Sym, uint64_t C,
David Blaikiea0fa2622016-04-12 21:45:53 +0000202 unsigned Type) const;
203
204 void recordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
205 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindolaceecfe5b2017-07-11 23:56:10 +0000206 MCValue Target, uint64_t &FixedValue) override;
David Blaikiea0fa2622016-04-12 21:45:53 +0000207
208 // Map from a signature symbol to the group section index
Eugene Zelenko7975b992017-04-26 22:31:39 +0000209 using RevGroupMapTy = DenseMap<const MCSymbol *, unsigned>;
David Blaikiea0fa2622016-04-12 21:45:53 +0000210
211 /// Compute the symbol table data
212 ///
213 /// \param Asm - The assembler.
214 /// \param SectionIndexMap - Maps a section to its index.
215 /// \param RevGroupMap - Maps a signature symbol to the group section.
216 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
217 const SectionIndexMapTy &SectionIndexMap,
218 const RevGroupMapTy &RevGroupMap,
219 SectionOffsetsTy &SectionOffsets);
220
221 MCSectionELF *createRelocationSection(MCContext &Ctx,
222 const MCSectionELF &Sec);
223
224 const MCSectionELF *createStringTable(MCContext &Ctx);
225
226 void executePostLayoutBinding(MCAssembler &Asm,
227 const MCAsmLayout &Layout) override;
228
229 void writeSectionHeader(const MCAsmLayout &Layout,
230 const SectionIndexMapTy &SectionIndexMap,
231 const SectionOffsetsTy &SectionOffsets);
232
233 void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
234 const MCAsmLayout &Layout);
235
236 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
237 uint64_t Address, uint64_t Offset, uint64_t Size,
238 uint32_t Link, uint32_t Info, uint64_t Alignment,
239 uint64_t EntrySize);
240
241 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
242
Vassil Vassilev89e36cc2017-03-06 15:50:59 +0000243 using MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl;
David Blaikiea0fa2622016-04-12 21:45:53 +0000244 bool isSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
245 const MCSymbol &SymA,
246 const MCFragment &FB, bool InSet,
247 bool IsPCRel) const override;
248
David Blaikiea0fa2622016-04-12 21:45:53 +0000249 void writeObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
250 void writeSection(const SectionIndexMapTy &SectionIndexMap,
251 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
252 const MCSectionELF &Section);
253};
Eugene Zelenkod3a6c892017-02-11 00:27:28 +0000254
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000255} // end anonymous namespace
Rafael Espindola29abd972011-12-22 03:38:00 +0000256
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000257void ELFObjectWriter::align(unsigned Alignment) {
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000258 uint64_t Padding = OffsetToAlignment(getStream().tell(), Alignment);
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000259 WriteZeros(Padding);
260}
261
Rafael Espindola08850b32015-05-25 21:56:55 +0000262unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000263 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000264 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000265 return SectionTable.size();
266}
267
Rafael Espindola10be0832014-03-25 23:44:25 +0000268void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000269 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000270 return;
271
Rafael Espindola91fd2772015-04-29 21:09:32 +0000272 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000273}
274
Rafael Espindola91fd2772015-04-29 21:09:32 +0000275template <typename T> void SymbolTableWriter::write(T Value) {
276 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000277}
278
Rafael Espindola91fd2772015-04-29 21:09:32 +0000279SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
280 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000281
282void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
283 uint64_t size, uint8_t other,
284 uint32_t shndx, bool Reserved) {
285 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
286
287 if (LargeIndex)
288 createSymtabShndx();
289
Rafael Espindola91fd2772015-04-29 21:09:32 +0000290 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000291 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000292 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000293 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000294 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000295 }
296
297 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
298
Rafael Espindola10be0832014-03-25 23:44:25 +0000299 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000300 write(name); // st_name
301 write(info); // st_info
302 write(other); // st_other
303 write(Index); // st_shndx
304 write(value); // st_value
305 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000306 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000307 write(name); // st_name
308 write(uint32_t(value)); // st_value
309 write(uint32_t(size)); // st_size
310 write(info); // st_info
311 write(other); // st_other
312 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000313 }
314
315 ++NumWritten;
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
Jim Grosbach36e60e92015-06-04 22:24:41 +0000328 writeBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000329
Jim Grosbach36e60e92015-06-04 22:24:41 +0000330 write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000331
332 // e_ident[EI_DATA]
Jim Grosbach36e60e92015-06-04 22:24:41 +0000333 write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000334
Jim Grosbach36e60e92015-06-04 22:24:41 +0000335 write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000336 // e_ident[EI_OSABI]
Jim Grosbach36e60e92015-06-04 22:24:41 +0000337 write8(TargetObjectWriter->getOSABI());
338 write8(0); // e_ident[EI_ABIVERSION]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000339
340 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
341
Jim Grosbach36e60e92015-06-04 22:24:41 +0000342 write16(ELF::ET_REL); // e_type
Matt Fleming6c1ad482010-08-16 18:57:57 +0000343
Jim Grosbach36e60e92015-06-04 22:24:41 +0000344 write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000345
Jim Grosbach36e60e92015-06-04 22:24:41 +0000346 write32(ELF::EV_CURRENT); // e_version
Matt Fleming6c1ad482010-08-16 18:57:57 +0000347 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
Jim Grosbach36e60e92015-06-04 22:24:41 +0000352 write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000353
354 // e_ehsize = ELF header size
Jim Grosbach36e60e92015-06-04 22:24:41 +0000355 write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000356
Jim Grosbach36e60e92015-06-04 22:24:41 +0000357 write16(0); // e_phentsize = prog header entry size
358 write16(0); // e_phnum = # prog header entries = 0
Matt Fleming6c1ad482010-08-16 18:57:57 +0000359
360 // e_shentsize = Section header entry size
Jim Grosbach36e60e92015-06-04 22:24:41 +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
Jim Grosbach36e60e92015-06-04 22:24:41 +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);
Jim Grosbach36e60e92015-06-04 22:24:41 +0000368 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) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000373 if (Sym.isCommon() && Sym.isExternal())
Rafael Espindola14672502015-05-29 17:48:04 +0000374 return Sym.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000375
Rafael Espindolafee224f2014-04-30 21:51:13 +0000376 uint64_t Res;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000377 if (!Layout.getSymbolOffset(Sym, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000378 return 0;
379
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000380 if (Layout.getAssembler().isThumbFunc(&Sym))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000381 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000382
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000383 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000384}
385
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000386void ELFObjectWriter::executePostLayoutBinding(MCAssembler &Asm,
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000387 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000388 // The presence of symbol versions causes undefined symbols and
389 // versions declared with @@@ to be renamed.
Rafael Espindola47b4d6b2018-03-09 18:42:25 +0000390 for (const std::pair<StringRef, const MCSymbol *> &P : Asm.Symvers) {
391 StringRef AliasName = P.first;
392 const auto &Symbol = cast<MCSymbolELF>(*P.second);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000393 size_t Pos = AliasName.find('@');
Rafael Espindola47b4d6b2018-03-09 18:42:25 +0000394 assert(Pos != StringRef::npos);
395
396 StringRef Prefix = AliasName.substr(0, Pos);
397 StringRef Rest = AliasName.substr(Pos);
398 StringRef Tail = Rest;
399 if (Rest.startswith("@@@"))
400 Tail = Rest.substr(Symbol.isUndefined() ? 2 : 1);
401
402 auto *Alias =
403 cast<MCSymbolELF>(Asm.getContext().getOrCreateSymbol(Prefix + Tail));
404 Asm.registerSymbol(*Alias);
405 const MCExpr *Value = MCSymbolRefExpr::create(&Symbol, Asm.getContext());
406 Alias->setVariableValue(Value);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000407
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000408 // Aliases defined with .symvar copy the binding from the symbol they alias.
409 // This is the first place we are able to copy this information.
Rafael Espindola47b4d6b2018-03-09 18:42:25 +0000410 Alias->setExternal(Symbol.isExternal());
411 Alias->setBinding(Symbol.getBinding());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000412
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000413 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
414 continue;
415
Rafael Espindola26496e62010-10-27 17:56:18 +0000416 // FIXME: produce a better error message.
417 if (Symbol.isUndefined() && Rest.startswith("@@") &&
418 !Rest.startswith("@@@"))
419 report_fatal_error("A @@ version cannot be undefined");
420
Vlad Tsyrklevich201a1082018-04-27 20:32:34 +0000421 if (Renames.count(&Symbol) && Renames[&Symbol] != Alias)
422 report_fatal_error(llvm::Twine("Multiple symbol versions defined for ") +
423 Symbol.getName());
424
Rafael Espindola47b4d6b2018-03-09 18:42:25 +0000425 Renames.insert(std::make_pair(&Symbol, Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000426 }
427}
428
Roman Divacky5a1c5492014-01-07 20:17:03 +0000429static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
430 uint8_t Type = newType;
431
432 // Propagation rules:
433 // IFUNC > FUNC > OBJECT > NOTYPE
434 // TLS_OBJECT > OBJECT > NOTYPE
435 //
436 // dont let the new type degrade the old type
437 switch (origType) {
438 default:
439 break;
440 case ELF::STT_GNU_IFUNC:
441 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
442 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
443 Type = ELF::STT_GNU_IFUNC;
444 break;
445 case ELF::STT_FUNC:
446 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
447 Type == ELF::STT_TLS)
448 Type = ELF::STT_FUNC;
449 break;
450 case ELF::STT_OBJECT:
451 if (Type == ELF::STT_NOTYPE)
452 Type = ELF::STT_OBJECT;
453 break;
454 case ELF::STT_TLS:
455 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
456 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
457 Type = ELF::STT_TLS;
458 break;
459 }
460
461 return Type;
462}
463
Rafael Espindolae48421f2015-05-28 20:25:29 +0000464void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
465 uint32_t StringIndex, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000466 const MCAsmLayout &Layout) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000467 const auto &Symbol = cast<MCSymbolELF>(*MSD.Symbol);
Rafael Espindolaa8695762015-06-02 00:25:12 +0000468 const MCSymbolELF *Base =
469 cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol));
Rafael Espindola85a84912014-03-26 00:16:43 +0000470
471 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
472 // SHN_COMMON.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000473 bool IsReserved = !Base || Symbol.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000474
Jack Carter2f8d9d92013-02-19 21:57:35 +0000475 // Binding and Type share the same byte as upper and lower nibbles
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000476 uint8_t Binding = Symbol.getBinding();
477 uint8_t Type = Symbol.getType();
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000478 if (Base) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000479 Type = mergeTypeForSet(Type, Base->getType());
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000480 }
Rafael Espindolaf8794ff2015-06-04 00:47:43 +0000481 uint8_t Info = (Binding << 4) | Type;
Jack Carter2f8d9d92013-02-19 21:57:35 +0000482
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000483 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000484 // 2 bits
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000485 uint8_t Visibility = Symbol.getVisibility();
Rafael Espindola8c006ee2015-06-04 05:59:23 +0000486 uint8_t Other = Symbol.getOther() | Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000487
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000488 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000489 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000490
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000491 const MCExpr *ESize = MSD.Symbol->getSize();
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000492 if (!ESize && Base)
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000493 ESize = Base->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000494
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000495 if (ESize) {
496 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000497 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000498 report_fatal_error("Size expression must be absolute.");
499 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000500 }
501
502 // Write out the symbol table entry
Rafael Espindolae48421f2015-05-28 20:25:29 +0000503 Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
504 IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000505}
506
Rafael Espindola5904e122014-03-29 06:26:49 +0000507// It is always valid to create a relocation with a symbol. It is preferable
508// to use a relocation with a section if that is possible. Using the section
509// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000510bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
511 const MCSymbolRefExpr *RefA,
Sam Clegg22c568b2018-05-07 23:52:17 +0000512 const MCSymbolELF *Sym,
513 uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000514 unsigned Type) const {
515 // A PCRel relocation to an absolute value has no symbol (or section). We
516 // represent that with a relocation to a null section.
517 if (!RefA)
518 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000519
Rafael Espindola5904e122014-03-29 06:26:49 +0000520 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
521 switch (Kind) {
522 default:
523 break;
524 // The .odp creation emits a relocation against the symbol ".TOC." which
525 // create a R_PPC64_TOC relocation. However the relocation symbol name
526 // in final object creation should be NULL, since the symbol does not
527 // really exist, it is just the reference to TOC base for the current
528 // object file. Since the symbol is undefined, returning false results
529 // in a relocation with a null section which is the desired result.
530 case MCSymbolRefExpr::VK_PPC_TOCBASE:
531 return false;
532
533 // These VariantKind cause the relocation to refer to something other than
534 // the symbol itself, like a linker generated table. Since the address of
535 // symbol is not relevant, we cannot replace the symbol with the
536 // section and patch the difference in the addend.
537 case MCSymbolRefExpr::VK_GOT:
538 case MCSymbolRefExpr::VK_PLT:
539 case MCSymbolRefExpr::VK_GOTPCREL:
Rafael Espindola5904e122014-03-29 06:26:49 +0000540 case MCSymbolRefExpr::VK_PPC_GOT_LO:
541 case MCSymbolRefExpr::VK_PPC_GOT_HI:
542 case MCSymbolRefExpr::VK_PPC_GOT_HA:
543 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000544 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000545
Rafael Espindola5904e122014-03-29 06:26:49 +0000546 // An undefined symbol is not in any section, so the relocation has to point
547 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000548 assert(Sym && "Expected a symbol");
549 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000550 return true;
551
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000552 unsigned Binding = Sym->getBinding();
Rafael Espindola5904e122014-03-29 06:26:49 +0000553 switch(Binding) {
554 default:
555 llvm_unreachable("Invalid Binding");
556 case ELF::STB_LOCAL:
557 break;
558 case ELF::STB_WEAK:
559 // If the symbol is weak, it might be overridden by a symbol in another
560 // file. The relocation has to point to the symbol so that the linker
561 // can update it.
562 return true;
563 case ELF::STB_GLOBAL:
564 // Global ELF symbols can be preempted by the dynamic linker. The relocation
565 // has to point to the symbol for a reason analogous to the STB_WEAK case.
566 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000567 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000568
Rafael Espindola5904e122014-03-29 06:26:49 +0000569 // If a relocation points to a mergeable section, we have to be careful.
570 // If the offset is zero, a relocation with the section will encode the
571 // same information. With a non-zero offset, the situation is different.
572 // For example, a relocation can point 42 bytes past the end of a string.
573 // If we change such a relocation to use the section, the linker would think
574 // that it pointed to another string and subtracting 42 at runtime will
575 // produce the wrong value.
Saleem Abdulrasool9b106ea2016-11-22 04:32:54 +0000576 if (Sym->isInSection()) {
577 auto &Sec = cast<MCSectionELF>(Sym->getSection());
578 unsigned Flags = Sec.getFlags();
579 if (Flags & ELF::SHF_MERGE) {
580 if (C != 0)
581 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000582
Saleem Abdulrasool9b106ea2016-11-22 04:32:54 +0000583 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
584 // only handle section relocations to mergeable sections if using RELA.
585 if (!hasRelocationAddend())
586 return true;
587 }
588
589 // Most TLS relocations use a got, so they need the symbol. Even those that
590 // are just an offset (@tpoff), require a symbol in gold versions before
591 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
592 // http://sourceware.org/PR16773.
593 if (Flags & ELF::SHF_TLS)
Rafael Espindolab1b49782014-04-02 12:15:20 +0000594 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000595 }
596
Rafael Espindola9ef84412014-04-11 19:18:01 +0000597 // If the symbol is a thumb function the final relocation must set the lowest
598 // bit. With a symbol that is done by just having the symbol have that bit
599 // set, so we would lose the bit if we relocated with the section.
600 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000601 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000602 return true;
603
Rafael Espindolaece40ca2015-05-29 18:26:09 +0000604 if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000605 return true;
606 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000607}
608
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000609// True if the assembler knows nothing about the final value of the symbol.
610// This doesn't cover the comdat issues, since in those cases the assembler
611// can at least know that all symbols in the section will move together.
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000612static bool isWeak(const MCSymbolELF &Sym) {
613 if (Sym.getType() == ELF::STT_GNU_IFUNC)
Rafael Espindolaa635d832015-04-17 08:46:11 +0000614 return true;
615
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000616 switch (Sym.getBinding()) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000617 default:
618 llvm_unreachable("Unknown binding");
619 case ELF::STB_LOCAL:
620 return false;
621 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000622 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000623 case ELF::STB_WEAK:
624 case ELF::STB_GNU_UNIQUE:
625 return true;
626 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000627}
628
Jim Grosbach36e60e92015-06-04 22:24:41 +0000629void ELFObjectWriter::recordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000630 const MCAsmLayout &Layout,
631 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000632 const MCFixup &Fixup, MCValue Target,
Rafael Espindolaceecfe5b2017-07-11 23:56:10 +0000633 uint64_t &FixedValue) {
634 MCAsmBackend &Backend = Asm.getBackend();
635 bool IsPCRel = Backend.getFixupKindInfo(Fixup.getKind()).Flags &
636 MCFixupKindInfo::FKF_IsPCRel;
Rafael Espindola7549f872015-05-26 00:36:57 +0000637 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000638 uint64_t C = Target.getConstant();
639 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000640 MCContext &Ctx = Asm.getContext();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000641
Rafael Espindola5904e122014-03-29 06:26:49 +0000642 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
Rafael Espindola5904e122014-03-29 06:26:49 +0000643 // Let A, B and C being the components of Target and R be the location of
644 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
645 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000646
Rafael Espindola5904e122014-03-29 06:26:49 +0000647 // In general, ELF has no relocations for -B. It can only represent (A + C)
648 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
649 // replace B to implement it: (A - R - K + C)
Oliver Stannard9be59af2015-11-17 10:00:43 +0000650 if (IsPCRel) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000651 Ctx.reportError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000652 Fixup.getLoc(),
653 "No relocation available to represent this relative expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000654 return;
655 }
David Majnemera45a1762014-01-06 07:39:46 +0000656
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000657 const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol());
Jason W Kim495c2bb2010-12-06 21:57:34 +0000658
Oliver Stannard9be59af2015-11-17 10:00:43 +0000659 if (SymB.isUndefined()) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000660 Ctx.reportError(Fixup.getLoc(),
661 Twine("symbol '") + SymB.getName() +
662 "' can not be undefined in a subtraction expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000663 return;
664 }
Jason W Kim495c2bb2010-12-06 21:57:34 +0000665
Rafael Espindola5904e122014-03-29 06:26:49 +0000666 assert(!SymB.isAbsolute() && "Should have been folded");
667 const MCSection &SecB = SymB.getSection();
Oliver Stannard9be59af2015-11-17 10:00:43 +0000668 if (&SecB != &FixupSection) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000669 Ctx.reportError(Fixup.getLoc(),
670 "Cannot represent a difference across sections");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000671 return;
672 }
Jason W Kim495c2bb2010-12-06 21:57:34 +0000673
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000674 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000675 uint64_t K = SymBOffset - FixupOffset;
676 IsPCRel = true;
677 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000678 }
679
Rafael Espindola5904e122014-03-29 06:26:49 +0000680 // We either rejected the fixup or folded B into C at this point.
681 const MCSymbolRefExpr *RefA = Target.getSymA();
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000682 const auto *SymA = RefA ? cast<MCSymbolELF>(&RefA->getSymbol()) : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000683
Rafael Espindola212fdde2015-06-03 21:52:06 +0000684 bool ViaWeakRef = false;
685 if (SymA && SymA->isVariable()) {
686 const MCExpr *Expr = SymA->getVariableValue();
687 if (const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr)) {
688 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF) {
689 SymA = cast<MCSymbolELF>(&Inner->getSymbol());
690 ViaWeakRef = true;
691 }
692 }
693 }
694
Rafael Espindola8340f942016-01-13 22:56:57 +0000695 unsigned Type = getRelocType(Ctx, Target, Fixup, IsPCRel);
Daniel Sandersa463d312016-05-06 13:49:25 +0000696 uint64_t OriginalC = C;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000697 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000698 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000699 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000700
701 uint64_t Addend = 0;
702 if (hasRelocationAddend()) {
703 Addend = C;
704 C = 0;
705 }
706
707 FixedValue = C;
708
Rafael Espindola5904e122014-03-29 06:26:49 +0000709 if (!RelocateWithSymbol) {
710 const MCSection *SecA =
711 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000712 const auto *SectionSymbol =
Sam Clegg22c568b2018-05-07 23:52:17 +0000713 SecA ? cast<MCSymbolELF>(SecA->getBeginSymbol()) : nullptr;
Rafael Espindolaa401eee2015-06-04 15:33:30 +0000714 if (SectionSymbol)
715 SectionSymbol->setUsedInReloc();
Daniel Sandersa463d312016-05-06 13:49:25 +0000716 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend, SymA,
717 OriginalC);
Rafael Espindola34948e52015-04-30 00:45:46 +0000718 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000719 return;
720 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000721
Daniel Sandersa463d312016-05-06 13:49:25 +0000722 const auto *RenamedSymA = SymA;
Rafael Espindola5904e122014-03-29 06:26:49 +0000723 if (SymA) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000724 if (const MCSymbolELF *R = Renames.lookup(SymA))
Daniel Sandersa463d312016-05-06 13:49:25 +0000725 RenamedSymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000726
Rafael Espindola212fdde2015-06-03 21:52:06 +0000727 if (ViaWeakRef)
Daniel Sandersa463d312016-05-06 13:49:25 +0000728 RenamedSymA->setIsWeakrefUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000729 else
Daniel Sandersa463d312016-05-06 13:49:25 +0000730 RenamedSymA->setUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000731 }
Daniel Sandersa463d312016-05-06 13:49:25 +0000732 ELFRelocationEntry Rec(FixupOffset, RenamedSymA, Type, Addend, SymA,
733 OriginalC);
Rafael Espindola34948e52015-04-30 00:45:46 +0000734 Relocations[&FixupSection].push_back(Rec);
Jason W Kim495c2bb2010-12-06 21:57:34 +0000735}
736
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000737bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000738 const MCSymbolELF &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000739 bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000740 if (Symbol.isVariable()) {
741 const MCExpr *Expr = Symbol.getVariableValue();
742 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
743 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
744 return false;
745 }
746 }
Rafael Espindola16145972010-11-01 14:28:48 +0000747
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000748 if (Used)
749 return true;
750
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000751 if (Renamed)
752 return false;
753
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000754 if (Symbol.isVariable() && Symbol.isUndefined()) {
755 // FIXME: this is here just to diagnose the case of a var = commmon_sym.
756 Layout.getBaseSymbol(Symbol);
757 return false;
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000758 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000759
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000760 if (Symbol.isUndefined() && !Symbol.isBindingSet())
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000761 return false;
762
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000763 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000764 return false;
765
Rafael Espindolaa401eee2015-06-04 15:33:30 +0000766 if (Symbol.getType() == ELF::STT_SECTION)
767 return false;
768
Rafael Espindolab1d07892010-10-05 18:01:23 +0000769 return true;
770}
771
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000772void ELFObjectWriter::computeSymbolTable(
773 MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000774 const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
775 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000776 MCContext &Ctx = Asm.getContext();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000777 SymbolTableWriter Writer(*this, is64Bit());
778
Rafael Espindola5960cee2015-05-22 23:58:30 +0000779 // Symbol table
780 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
781 MCSectionELF *SymtabSection =
782 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
783 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
784 SymbolTableIndex = addToSectionTable(SymtabSection);
785
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000786 align(SymtabSection->getAlignment());
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000787 uint64_t SecStart = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000788
789 // The first entry is the undefined symbol entry.
790 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
791
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000792 std::vector<ELFSymbolData> LocalSymbolData;
793 std::vector<ELFSymbolData> ExternalSymbolData;
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000794
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000795 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000796 bool HasLargeSectionIndex = false;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000797 for (const MCSymbol &S : Asm.symbols()) {
798 const auto &Symbol = cast<MCSymbolELF>(S);
Rafael Espindolaada43f62015-06-03 21:30:10 +0000799 bool Used = Symbol.isUsedInReloc();
Rafael Espindola212fdde2015-06-03 21:52:06 +0000800 bool WeakrefUsed = Symbol.isWeakrefUsedInReloc();
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000801 bool isSignature = Symbol.isSignature();
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000802
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000803 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000804 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000805 continue;
806
Oliver Stannard9be59af2015-11-17 10:00:43 +0000807 if (Symbol.isTemporary() && Symbol.isUndefined()) {
808 Ctx.reportError(SMLoc(), "Undefined temporary symbol");
809 continue;
810 }
Rafael Espindola6dff8142015-06-25 20:10:45 +0000811
Matt Fleming6c1ad482010-08-16 18:57:57 +0000812 ELFSymbolData MSD;
Rafael Espindolaa8695762015-06-02 00:25:12 +0000813 MSD.Symbol = cast<MCSymbolELF>(&Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000814
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000815 bool Local = Symbol.getBinding() == ELF::STB_LOCAL;
Rafael Espindola6dff8142015-06-25 20:10:45 +0000816 assert(Local || !Symbol.isTemporary());
817
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000818 if (Symbol.isAbsolute()) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000819 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola14672502015-05-29 17:48:04 +0000820 } else if (Symbol.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000821 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000822 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000823 } else if (Symbol.isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000824 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000825 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000826 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
827 HasLargeSectionIndex = true;
828 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000829 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000830 }
Matt Fleming6c1ad482010-08-16 18:57:57 +0000831 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000832 const MCSectionELF &Section =
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000833 static_cast<const MCSectionELF &>(Symbol.getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000834 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000835 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000836 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
837 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000838 }
839
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000840 StringRef Name = Symbol.getName();
Rafael Espindolab6613022014-10-17 01:48:58 +0000841
842 // Sections have their own string table
Rafael Espindolafc063e82015-10-22 18:32:06 +0000843 if (Symbol.getType() != ELF::STT_SECTION) {
844 MSD.Name = Name;
845 StrTabBuilder.add(Name);
846 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000847
Rafael Espindola10d23872015-05-29 14:20:40 +0000848 if (Local)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000849 LocalSymbolData.push_back(MSD);
850 else
851 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000852 }
853
Rafael Espindola2cd19512015-07-02 16:59:57 +0000854 // This holds the .symtab_shndx section index.
855 unsigned SymtabShndxSectionIndex = 0;
856
Rafael Espindola5960cee2015-05-22 23:58:30 +0000857 if (HasLargeSectionIndex) {
858 MCSectionELF *SymtabShndxSection =
859 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
860 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
861 SymtabShndxSection->setAlignment(4);
862 }
863
Rafael Espindola1fd36272015-05-28 19:29:15 +0000864 ArrayRef<std::string> FileNames = Asm.getFileNames();
865 for (const std::string &Name : FileNames)
Rafael Espindola66f3c9c2015-05-28 18:03:20 +0000866 StrTabBuilder.add(Name);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000867
Rafael Espindola21956e42015-10-23 21:48:05 +0000868 StrTabBuilder.finalize();
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000869
Peter Collingbourne5b75fd92017-03-03 21:22:06 +0000870 // File symbols are emitted first and handled separately from normal symbols,
871 // i.e. a non-STT_FILE symbol with the same name may appear.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000872 for (const std::string &Name : FileNames)
873 Writer.writeSymbol(StrTabBuilder.getOffset(Name),
874 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
875 ELF::SHN_ABS, true);
876
Matt Fleming6c1ad482010-08-16 18:57:57 +0000877 // Symbols are required to be in lexicographic order.
878 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
879 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000880
881 // Set the symbol indices. Local symbols must come before all other
882 // symbols with non-local bindings.
Rafael Espindola1fd36272015-05-28 19:29:15 +0000883 unsigned Index = FileNames.size() + 1;
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000884
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000885 for (ELFSymbolData &MSD : LocalSymbolData) {
Daniel Jasper41de8022015-06-23 11:31:32 +0000886 unsigned StringIndex = MSD.Symbol->getType() == ELF::STT_SECTION
887 ? 0
888 : StrTabBuilder.getOffset(MSD.Name);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000889 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000890 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000891 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000892
893 // Write the symbol table entries.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000894 LastLocalSymbolIndex = Index;
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000895
Rafael Espindoladcda9972015-05-28 19:43:20 +0000896 for (ELFSymbolData &MSD : ExternalSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000897 unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
Rafael Espindola0cbea292015-05-28 20:00:13 +0000898 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000899 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000900 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000901 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000902
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000903 uint64_t SecEnd = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000904 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
905
906 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
907 if (ShndxIndexes.empty()) {
908 assert(SymtabShndxSectionIndex == 0);
909 return;
910 }
911 assert(SymtabShndxSectionIndex != 0);
912
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000913 SecStart = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000914 const MCSectionELF *SymtabShndxSection =
915 SectionTable[SymtabShndxSectionIndex - 1];
916 for (uint32_t Index : ShndxIndexes)
917 write(Index);
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000918 SecEnd = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000919 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000920}
921
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000922MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000923ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +0000924 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000925 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +0000926 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000927
Rafael Espindola34948e52015-04-30 00:45:46 +0000928 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +0000929 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
930 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +0000931
Rafael Espindolaead85492015-02-17 20:31:13 +0000932 unsigned EntrySize;
933 if (hasRelocationAddend())
934 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
935 else
936 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000937
Rafael Espindolaead85492015-02-17 20:31:13 +0000938 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +0000939 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +0000940 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +0000941
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000942 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +0000943 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +0000944 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000945 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +0000946 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000947}
Matt Fleming6c1ad482010-08-16 18:57:57 +0000948
George Rimarc91e38c2016-05-27 12:27:32 +0000949// Include the debug info compression header.
950bool ELFObjectWriter::maybeWriteCompression(
951 uint64_t Size, SmallVectorImpl<char> &CompressedContents, bool ZLibStyle,
952 unsigned Alignment) {
953 if (ZLibStyle) {
954 uint64_t HdrSize =
955 is64Bit() ? sizeof(ELF::Elf32_Chdr) : sizeof(ELF::Elf64_Chdr);
956 if (Size <= HdrSize + CompressedContents.size())
957 return false;
958 // Platform specific header is followed by compressed data.
959 if (is64Bit()) {
960 // Write Elf64_Chdr header.
961 write(static_cast<ELF::Elf64_Word>(ELF::ELFCOMPRESS_ZLIB));
962 write(static_cast<ELF::Elf64_Word>(0)); // ch_reserved field.
963 write(static_cast<ELF::Elf64_Xword>(Size));
964 write(static_cast<ELF::Elf64_Xword>(Alignment));
965 } else {
966 // Write Elf32_Chdr header otherwise.
967 write(static_cast<ELF::Elf32_Word>(ELF::ELFCOMPRESS_ZLIB));
968 write(static_cast<ELF::Elf32_Word>(Size));
969 write(static_cast<ELF::Elf32_Word>(Alignment));
970 }
971 return true;
972 }
973
974 // "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
975 // useful for consumers to preallocate a buffer to decompress into.
Richard Smithb910e562016-05-25 00:14:12 +0000976 const StringRef Magic = "ZLIB";
977 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
978 return false;
George Rimarc91e38c2016-05-27 12:27:32 +0000979 write(ArrayRef<char>(Magic.begin(), Magic.size()));
980 writeBE64(Size);
Richard Smithb910e562016-05-25 00:14:12 +0000981 return true;
982}
983
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000984void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000985 const MCAsmLayout &Layout) {
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000986 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindola868b3f42015-04-30 21:51:58 +0000987 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +0000988
Saleem Abdulrasool1f62f572017-06-09 00:40:19 +0000989 auto &MC = Asm.getContext();
990 const auto &MAI = MC.getAsmInfo();
991
Rafael Espindola868b3f42015-04-30 21:51:58 +0000992 // Compressing debug_frame requires handling alignment fragments which is
993 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
994 // for writing to arbitrary buffers) for little benefit.
George Rimarc91e38c2016-05-27 12:27:32 +0000995 bool CompressionEnabled =
Saleem Abdulrasool1f62f572017-06-09 00:40:19 +0000996 MAI->compressDebugSections() != DebugCompressionType::None;
George Rimarc91e38c2016-05-27 12:27:32 +0000997 if (!CompressionEnabled || !SectionName.startswith(".debug_") ||
998 SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +0000999 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001000 return;
1001 }
1002
Saleem Abdulrasool1f62f572017-06-09 00:40:19 +00001003 assert((MAI->compressDebugSections() == DebugCompressionType::Z ||
1004 MAI->compressDebugSections() == DebugCompressionType::GNU) &&
1005 "expected zlib or zlib-gnu style compression");
1006
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001007 SmallVector<char, 128> UncompressedData;
1008 raw_svector_ostream VecOS(UncompressedData);
1009 raw_pwrite_stream &OldStream = getStream();
1010 setStream(VecOS);
1011 Asm.writeSectionData(&Section, Layout);
1012 setStream(OldStream);
David Blaikie8019bf82014-04-10 21:53:53 +00001013
Rafael Espindola868b3f42015-04-30 21:51:58 +00001014 SmallVector<char, 128> CompressedContents;
George Rimar167ca4a2017-01-17 15:45:07 +00001015 if (Error E = zlib::compress(
1016 StringRef(UncompressedData.data(), UncompressedData.size()),
1017 CompressedContents)) {
1018 consumeError(std::move(E));
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001019 getStream() << UncompressedData;
David Blaikie8019bf82014-04-10 21:53:53 +00001020 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001021 }
David Blaikie8019bf82014-04-10 21:53:53 +00001022
Saleem Abdulrasool1f62f572017-06-09 00:40:19 +00001023 bool ZlibStyle = MAI->compressDebugSections() == DebugCompressionType::Z;
George Rimarc91e38c2016-05-27 12:27:32 +00001024 if (!maybeWriteCompression(UncompressedData.size(), CompressedContents,
1025 ZlibStyle, Sec.getAlignment())) {
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001026 getStream() << UncompressedData;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001027 return;
1028 }
George Rimarc91e38c2016-05-27 12:27:32 +00001029
1030 if (ZlibStyle)
1031 // Set the compressed flag. That is zlib style.
1032 Section.setFlags(Section.getFlags() | ELF::SHF_COMPRESSED);
1033 else
1034 // Add "z" prefix to section name. This is zlib-gnu style.
Saleem Abdulrasool1f62f572017-06-09 00:40:19 +00001035 MC.renameELFSection(&Section, (".z" + SectionName.drop_front(1)).str());
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001036 getStream() << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001037}
1038
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001039void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1040 uint64_t Flags, uint64_t Address,
1041 uint64_t Offset, uint64_t Size,
1042 uint32_t Link, uint32_t Info,
1043 uint64_t Alignment,
1044 uint64_t EntrySize) {
Jim Grosbach36e60e92015-06-04 22:24:41 +00001045 write32(Name); // sh_name: index into string table
1046 write32(Type); // sh_type
Matt Fleming6c1ad482010-08-16 18:57:57 +00001047 WriteWord(Flags); // sh_flags
1048 WriteWord(Address); // sh_addr
1049 WriteWord(Offset); // sh_offset
1050 WriteWord(Size); // sh_size
Jim Grosbach36e60e92015-06-04 22:24:41 +00001051 write32(Link); // sh_link
1052 write32(Info); // sh_info
Matt Fleming6c1ad482010-08-16 18:57:57 +00001053 WriteWord(Alignment); // sh_addralign
1054 WriteWord(EntrySize); // sh_entsize
1055}
1056
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001057void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001058 const MCSectionELF &Sec) {
1059 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001060
Rafael Espindolaf44db242015-12-17 16:22:06 +00001061 // We record relocations by pushing to the end of a vector. Reverse the vector
1062 // to get the relocations in the order they were created.
1063 // In most cases that is not important, but it can be for special sections
1064 // (.eh_frame) or specific relocations (TLS optimizations on SystemZ).
1065 std::reverse(Relocs.begin(), Relocs.end());
Rafael Espindolad0e16522015-12-17 15:08:24 +00001066
Rafael Espindolaf44db242015-12-17 16:22:06 +00001067 // Sort the relocation entries. MIPS needs this.
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001068 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001069
1070 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001071 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001072 unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001073
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001074 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001075 write(Entry.Offset);
Simon Atanasyan9f676a72017-09-21 14:04:47 +00001076 if (TargetObjectWriter->getEMachine() == ELF::EM_MIPS) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001077 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001078
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001079 write(TargetObjectWriter->getRSsym(Entry.Type));
1080 write(TargetObjectWriter->getRType3(Entry.Type));
1081 write(TargetObjectWriter->getRType2(Entry.Type));
1082 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001083 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001084 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001085 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001086 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001087 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001088 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001089 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001090 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001091 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001092
Rafael Espindolabce26a12010-10-05 15:11:03 +00001093 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001094 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001095 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001096
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001097 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001098 write(uint32_t(Entry.Addend));
Simon Atanasyanede43b72017-09-21 14:04:53 +00001099
1100 if (TargetObjectWriter->getEMachine() == ELF::EM_MIPS) {
1101 if (uint32_t RType = TargetObjectWriter->getRType2(Entry.Type)) {
1102 write(uint32_t(Entry.Offset));
1103
1104 ERE32.setSymbolAndType(0, RType);
1105 write(ERE32.r_info);
1106 write(uint32_t(0));
1107 }
1108 if (uint32_t RType = TargetObjectWriter->getRType3(Entry.Type)) {
1109 write(uint32_t(Entry.Offset));
1110
1111 ERE32.setSymbolAndType(0, RType);
1112 write(ERE32.r_info);
1113 write(uint32_t(0));
1114 }
1115 }
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001116 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001117 }
1118}
1119
Rafael Espindolab1863912015-04-30 21:10:06 +00001120const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001121 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
Rafael Espindola39751af2016-10-04 22:43:25 +00001122 StrTabBuilder.write(getStream());
Rafael Espindolabda19802015-04-30 14:21:49 +00001123 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001124}
1125
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001126void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1127 uint32_t GroupSymbolIndex, uint64_t Offset,
1128 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001129 uint64_t sh_link = 0;
1130 uint64_t sh_info = 0;
1131
1132 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001133 default:
1134 // Nothing to do.
1135 break;
1136
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001137 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001138 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001139
1140 case ELF::SHT_REL:
1141 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001142 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001143 assert(sh_link && ".symtab not found");
Evgeniy Stepanov43dcf4d2017-03-14 19:28:51 +00001144 const MCSection *InfoSection = Section.getAssociatedSection();
1145 sh_info = SectionIndexMap.lookup(cast<MCSectionELF>(InfoSection));
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001146 break;
1147 }
1148
1149 case ELF::SHT_SYMTAB:
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001150 sh_link = StringTableIndex;
1151 sh_info = LastLocalSymbolIndex;
1152 break;
1153
1154 case ELF::SHT_SYMTAB_SHNDX:
1155 sh_link = SymbolTableIndex;
1156 break;
1157
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001158 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001159 sh_link = SymbolTableIndex;
1160 sh_info = GroupSymbolIndex;
1161 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001162 }
1163
Evgeniy Stepanov43dcf4d2017-03-14 19:28:51 +00001164 if (Section.getFlags() & ELF::SHF_LINK_ORDER) {
1165 const MCSymbol *Sym = Section.getAssociatedSymbol();
1166 const MCSectionELF *Sec = cast<MCSectionELF>(&Sym->getSection());
1167 sh_link = SectionIndexMap.lookup(Sec);
1168 }
Logan Chien4b724422013-02-05 14:18:59 +00001169
Rafael Espindola5960cee2015-05-22 23:58:30 +00001170 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001171 Section.getType(), Section.getFlags(), 0, Offset, Size,
1172 sh_link, sh_info, Section.getAlignment(),
1173 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001174}
1175
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001176void ELFObjectWriter::writeSectionHeader(
Rafael Espindola57c80832015-06-04 20:55:49 +00001177 const MCAsmLayout &Layout, const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001178 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001179 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001180
Matt Fleming6c1ad482010-08-16 18:57:57 +00001181 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001182 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001183 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001184 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001185
Rafael Espindola08850b32015-05-25 21:56:55 +00001186 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001187 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001188 unsigned Type = Section->getType();
1189 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001190 GroupSymbolIndex = 0;
1191 else
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001192 GroupSymbolIndex = Section->getGroup()->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001193
Rafael Espindolabda19802015-04-30 14:21:49 +00001194 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001195 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001196 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001197 if (Type == ELF::SHT_NOBITS)
1198 Size = Layout.getSectionAddressSize(Section);
1199 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001200 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001201
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001202 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001203 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001204 }
1205}
1206
Jim Grosbach36e60e92015-06-04 22:24:41 +00001207void ELFObjectWriter::writeObject(MCAssembler &Asm,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001208 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001209 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001210 MCSectionELF *StrtabSection =
1211 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1212 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001213
Rafael Espindola1557fd62011-03-20 18:44:20 +00001214 RevGroupMapTy RevGroupMap;
1215 SectionIndexMapTy SectionIndexMap;
1216
Rafael Espindolabda19802015-04-30 14:21:49 +00001217 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001218
Rafael Espindola1557fd62011-03-20 18:44:20 +00001219 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001220 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001221
Rafael Espindola7230f802015-04-08 11:41:24 +00001222 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001223 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001224 std::vector<MCSectionELF *> Groups;
1225 std::vector<MCSectionELF *> Relocations;
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001226 for (MCSection &Sec : Asm) {
1227 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindolabda19802015-04-30 14:21:49 +00001228
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001229 align(Section.getAlignment());
Rafael Espindola1557fd62011-03-20 18:44:20 +00001230
Rafael Espindola642a2212015-04-14 22:54:16 +00001231 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001232 uint64_t SecStart = getStream().tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001233
Rafael Espindola0ccf9b72015-06-02 21:30:13 +00001234 const MCSymbolELF *SignatureSymbol = Section.getGroup();
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001235 writeSectionData(Asm, Section, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001236
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001237 uint64_t SecEnd = getStream().tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001238 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1239
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001240 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001241
1242 if (SignatureSymbol) {
Rafael Espindolab5d316b2015-05-29 20:21:02 +00001243 Asm.registerSymbol(*SignatureSymbol);
Rafael Espindolabda19802015-04-30 14:21:49 +00001244 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1245 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001246 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001247 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001248 Group->setAlignment(4);
1249 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001250 }
Rafael Espindola7830fc82015-06-05 17:54:25 +00001251 std::vector<const MCSectionELF *> &Members =
1252 GroupMembers[SignatureSymbol];
1253 Members.push_back(&Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001254 if (RelSection)
Rafael Espindola7830fc82015-06-05 17:54:25 +00001255 Members.push_back(RelSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001256 }
1257
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001258 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001259 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001260 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001261 Relocations.push_back(RelSection);
1262 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001263 }
1264
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001265 for (MCSectionELF *Group : Groups) {
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001266 align(Group->getAlignment());
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001267
1268 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001269 uint64_t SecStart = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001270
1271 const MCSymbol *SignatureSymbol = Group->getGroup();
1272 assert(SignatureSymbol);
1273 write(uint32_t(ELF::GRP_COMDAT));
1274 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1275 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1276 write(SecIndex);
1277 }
1278
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001279 uint64_t SecEnd = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001280 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1281 }
1282
1283 // Compute symbol table information.
Rafael Espindolaaa486e92015-05-28 17:54:01 +00001284 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001285
1286 for (MCSectionELF *RelSection : Relocations) {
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001287 align(RelSection->getAlignment());
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001288
1289 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001290 uint64_t SecStart = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001291
Evgeniy Stepanov43dcf4d2017-03-14 19:28:51 +00001292 writeRelocations(Asm,
1293 cast<MCSectionELF>(*RelSection->getAssociatedSection()));
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001294
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001295 uint64_t SecEnd = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001296 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001297 }
1298
Rafael Espindola88d1f632015-04-29 20:25:24 +00001299 {
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001300 uint64_t SecStart = getStream().tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001301 const MCSectionELF *Sec = createStringTable(Ctx);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001302 uint64_t SecEnd = getStream().tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001303 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001304 }
1305
Rafael Espindola642a2212015-04-14 22:54:16 +00001306 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001307 align(NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001308
Rafael Espindola5568c832016-01-19 15:19:08 +00001309 const uint64_t SectionHeaderOffset = getStream().tell();
Rafael Espindola642a2212015-04-14 22:54:16 +00001310
Rafael Espindola1557fd62011-03-20 18:44:20 +00001311 // ... then the section header table ...
Rafael Espindola57c80832015-06-04 20:55:49 +00001312 writeSectionHeader(Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001313
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001314 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001315 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001316 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001317 if (sys::IsLittleEndianHost != IsLittleEndian)
1318 sys::swapByteOrder(NumSections);
1319 unsigned NumSectionsOffset;
1320
Rafael Espindola642a2212015-04-14 22:54:16 +00001321 if (is64Bit()) {
1322 uint64_t Val = SectionHeaderOffset;
1323 if (sys::IsLittleEndianHost != IsLittleEndian)
1324 sys::swapByteOrder(Val);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001325 getStream().pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1326 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001327 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001328 } else {
1329 uint32_t Val = SectionHeaderOffset;
1330 if (sys::IsLittleEndianHost != IsLittleEndian)
1331 sys::swapByteOrder(Val);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001332 getStream().pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1333 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001334 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001335 }
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001336 getStream().pwrite(reinterpret_cast<char *>(&NumSections),
1337 sizeof(NumSections), NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001338}
1339
Jim Grosbach36e60e92015-06-04 22:24:41 +00001340bool ELFObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001341 const MCAssembler &Asm, const MCSymbol &SA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001342 bool InSet, bool IsPCRel) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001343 const auto &SymA = cast<MCSymbolELF>(SA);
Rafael Espindola35d61892015-04-17 21:15:17 +00001344 if (IsPCRel) {
1345 assert(!InSet);
Peter Collingbourne36003052017-04-08 23:35:49 +00001346 if (isWeak(SymA))
Rafael Espindola35d61892015-04-17 21:15:17 +00001347 return false;
1348 }
Jim Grosbach36e60e92015-06-04 22:24:41 +00001349 return MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001350 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001351}
1352
Lang Hames60fbc7c2017-10-10 16:28:07 +00001353std::unique_ptr<MCObjectWriter>
Lang Hamesdcb312b2017-10-09 23:53:15 +00001354llvm::createELFObjectWriter(std::unique_ptr<MCELFObjectTargetWriter> MOTW,
1355 raw_pwrite_stream &OS, bool IsLittleEndian) {
Lang Hames60fbc7c2017-10-10 16:28:07 +00001356 return llvm::make_unique<ELFObjectWriter>(std::move(MOTW), OS,
1357 IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001358}