blob: 30f357826805a321fb64ad026edd132e466de4ba [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"
David Blaikie8019bf82014-04-10 21:53:53 +000022#include "llvm/MC/MCAsmInfo.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000023#include "llvm/MC/MCAsmLayout.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000024#include "llvm/MC/MCAssembler.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000025#include "llvm/MC/MCContext.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000026#include "llvm/MC/MCELFObjectWriter.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000027#include "llvm/MC/MCExpr.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000028#include "llvm/MC/MCFixup.h"
29#include "llvm/MC/MCFragment.h"
Craig Topper6e80c282012-03-26 06:58:25 +000030#include "llvm/MC/MCObjectWriter.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000031#include "llvm/MC/MCSection.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000032#include "llvm/MC/MCSectionELF.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000033#include "llvm/MC/MCSymbol.h"
Rafael Espindolaa8695762015-06-02 00:25:12 +000034#include "llvm/MC/MCSymbolELF.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000035#include "llvm/MC/MCValue.h"
Rafael Espindola97de4742014-07-03 02:01:39 +000036#include "llvm/MC/StringTableBuilder.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000037#include "llvm/Support/Allocator.h"
38#include "llvm/Support/Casting.h"
David Blaikie8019bf82014-04-10 21:53:53 +000039#include "llvm/Support/Compression.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000040#include "llvm/Support/Endian.h"
George Rimar167ca4a2017-01-17 15:45:07 +000041#include "llvm/Support/Error.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000042#include "llvm/Support/ErrorHandling.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000043#include "llvm/Support/Host.h"
44#include "llvm/Support/MathExtras.h"
45#include "llvm/Support/SMLoc.h"
Rafael Espindolafc063e82015-10-22 18:32:06 +000046#include "llvm/Support/StringSaver.h"
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000047#include "llvm/Support/SwapByteOrder.h"
48#include "llvm/Support/raw_ostream.h"
49#include <algorithm>
50#include <cassert>
51#include <cstddef>
52#include <cstdint>
53#include <map>
54#include <memory>
55#include <string>
56#include <utility>
Matt Fleming6c1ad482010-08-16 18:57:57 +000057#include <vector>
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +000058
Matt Fleming6c1ad482010-08-16 18:57:57 +000059using namespace llvm;
60
Jason W Kimc09e7262011-05-11 22:53:06 +000061#undef DEBUG_TYPE
62#define DEBUG_TYPE "reloc-info"
63
Rafael Espindola29abd972011-12-22 03:38:00 +000064namespace {
Eugene Zelenkod3a6c892017-02-11 00:27:28 +000065
Eugene Zelenko7975b992017-04-26 22:31:39 +000066using SectionIndexMapTy = DenseMap<const MCSectionELF *, uint32_t>;
Rafael Espindola10be0832014-03-25 23:44:25 +000067
Rafael Espindola91fd2772015-04-29 21:09:32 +000068class ELFObjectWriter;
69
Rafael Espindola10be0832014-03-25 23:44:25 +000070class SymbolTableWriter {
Rafael Espindola91fd2772015-04-29 21:09:32 +000071 ELFObjectWriter &EWriter;
Rafael Espindola10be0832014-03-25 23:44:25 +000072 bool Is64Bit;
Rafael Espindola10be0832014-03-25 23:44:25 +000073
Rafael Espindola91fd2772015-04-29 21:09:32 +000074 // indexes we are going to write to .symtab_shndx.
75 std::vector<uint32_t> ShndxIndexes;
Rafael Espindola10be0832014-03-25 23:44:25 +000076
77 // The numbel of symbols written so far.
78 unsigned NumWritten;
79
80 void createSymtabShndx();
81
Rafael Espindola91fd2772015-04-29 21:09:32 +000082 template <typename T> void write(T Value);
Rafael Espindola10be0832014-03-25 23:44:25 +000083
84public:
Rafael Espindola91fd2772015-04-29 21:09:32 +000085 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
Rafael Espindola10be0832014-03-25 23:44:25 +000086
87 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
88 uint8_t other, uint32_t shndx, bool Reserved);
Rafael Espindola91fd2772015-04-29 21:09:32 +000089
90 ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; }
Rafael Espindola10be0832014-03-25 23:44:25 +000091};
92
Rafael Espindola29abd972011-12-22 03:38:00 +000093class ELFObjectWriter : public MCObjectWriter {
David Blaikiea0fa2622016-04-12 21:45:53 +000094 static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout);
95 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolELF &Symbol,
96 bool Used, bool Renamed);
Rafael Espindola29abd972011-12-22 03:38:00 +000097
David Blaikiea0fa2622016-04-12 21:45:53 +000098 /// Helper struct for containing some precomputed information on symbols.
99 struct ELFSymbolData {
100 const MCSymbolELF *Symbol;
101 uint32_t SectionIndex;
102 StringRef Name;
Rafael Espindola29abd972011-12-22 03:38:00 +0000103
David Blaikiea0fa2622016-04-12 21:45:53 +0000104 // Support lexicographic sorting.
105 bool operator<(const ELFSymbolData &RHS) const {
106 unsigned LHSType = Symbol->getType();
107 unsigned RHSType = RHS.Symbol->getType();
108 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
109 return false;
110 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
111 return true;
112 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
113 return SectionIndex < RHS.SectionIndex;
114 return Name < RHS.Name;
Rafael Espindola29abd972011-12-22 03:38:00 +0000115 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000116 };
David Blaikiea0fa2622016-04-12 21:45:53 +0000117
118 /// The target specific ELF writer instance.
119 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
120
121 DenseMap<const MCSymbolELF *, const MCSymbolELF *> Renames;
122
Eugene Zelenkod3a6c892017-02-11 00:27:28 +0000123 DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>> Relocations;
David Blaikiea0fa2622016-04-12 21:45:53 +0000124
125 /// @}
126 /// @name Symbol Table Data
127 /// @{
128
129 BumpPtrAllocator Alloc;
130 StringSaver VersionSymSaver{Alloc};
131 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:
163 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
164 bool IsLittleEndian)
165 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
166
Eugene Zelenkod3a6c892017-02-11 00:27:28 +0000167 ~ELFObjectWriter() override = default;
168
David Blaikiea0fa2622016-04-12 21:45:53 +0000169 void reset() override {
170 Renames.clear();
171 Relocations.clear();
172 StrTabBuilder.clear();
173 SectionTable.clear();
174 MCObjectWriter::reset();
175 }
176
David Blaikiea0fa2622016-04-12 21:45:53 +0000177 void WriteWord(uint64_t W) {
178 if (is64Bit())
179 write64(W);
180 else
181 write32(W);
182 }
183
184 template <typename T> void write(T Val) {
185 if (IsLittleEndian)
186 support::endian::Writer<support::little>(getStream()).write(Val);
187 else
188 support::endian::Writer<support::big>(getStream()).write(Val);
189 }
190
191 void writeHeader(const MCAssembler &Asm);
192
193 void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
194 ELFSymbolData &MSD, const MCAsmLayout &Layout);
195
196 // Start and end offset of each section
Eugene Zelenko7975b992017-04-26 22:31:39 +0000197 using SectionOffsetsTy =
198 std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>;
David Blaikiea0fa2622016-04-12 21:45:53 +0000199
200 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
201 const MCSymbolRefExpr *RefA,
202 const MCSymbol *Sym, uint64_t C,
203 unsigned Type) const;
204
205 void recordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
206 const MCFragment *Fragment, const MCFixup &Fixup,
207 MCValue Target, bool &IsPCRel,
208 uint64_t &FixedValue) override;
209
210 // Map from a signature symbol to the group section index
Eugene Zelenko7975b992017-04-26 22:31:39 +0000211 using RevGroupMapTy = DenseMap<const MCSymbol *, unsigned>;
David Blaikiea0fa2622016-04-12 21:45:53 +0000212
213 /// Compute the symbol table data
214 ///
215 /// \param Asm - The assembler.
216 /// \param SectionIndexMap - Maps a section to its index.
217 /// \param RevGroupMap - Maps a signature symbol to the group section.
218 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
219 const SectionIndexMapTy &SectionIndexMap,
220 const RevGroupMapTy &RevGroupMap,
221 SectionOffsetsTy &SectionOffsets);
222
223 MCSectionELF *createRelocationSection(MCContext &Ctx,
224 const MCSectionELF &Sec);
225
226 const MCSectionELF *createStringTable(MCContext &Ctx);
227
228 void executePostLayoutBinding(MCAssembler &Asm,
229 const MCAsmLayout &Layout) override;
230
231 void writeSectionHeader(const MCAsmLayout &Layout,
232 const SectionIndexMapTy &SectionIndexMap,
233 const SectionOffsetsTy &SectionOffsets);
234
235 void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
236 const MCAsmLayout &Layout);
237
238 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
239 uint64_t Address, uint64_t Offset, uint64_t Size,
240 uint32_t Link, uint32_t Info, uint64_t Alignment,
241 uint64_t EntrySize);
242
243 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
244
Vassil Vassilev89e36cc2017-03-06 15:50:59 +0000245 using MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl;
David Blaikiea0fa2622016-04-12 21:45:53 +0000246 bool isSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
247 const MCSymbol &SymA,
248 const MCFragment &FB, bool InSet,
249 bool IsPCRel) const override;
250
David Blaikiea0fa2622016-04-12 21:45:53 +0000251 void writeObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
252 void writeSection(const SectionIndexMapTy &SectionIndexMap,
253 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
254 const MCSectionELF &Section);
255};
Eugene Zelenkod3a6c892017-02-11 00:27:28 +0000256
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000257} // end anonymous namespace
Rafael Espindola29abd972011-12-22 03:38:00 +0000258
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000259void ELFObjectWriter::align(unsigned Alignment) {
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000260 uint64_t Padding = OffsetToAlignment(getStream().tell(), Alignment);
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000261 WriteZeros(Padding);
262}
263
Rafael Espindola08850b32015-05-25 21:56:55 +0000264unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000265 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000266 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000267 return SectionTable.size();
268}
269
Rafael Espindola10be0832014-03-25 23:44:25 +0000270void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000271 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000272 return;
273
Rafael Espindola91fd2772015-04-29 21:09:32 +0000274 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000275}
276
Rafael Espindola91fd2772015-04-29 21:09:32 +0000277template <typename T> void SymbolTableWriter::write(T Value) {
278 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000279}
280
Rafael Espindola91fd2772015-04-29 21:09:32 +0000281SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
282 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000283
284void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
285 uint64_t size, uint8_t other,
286 uint32_t shndx, bool Reserved) {
287 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
288
289 if (LargeIndex)
290 createSymtabShndx();
291
Rafael Espindola91fd2772015-04-29 21:09:32 +0000292 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000293 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000294 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000295 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000296 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000297 }
298
299 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
300
Rafael Espindola10be0832014-03-25 23:44:25 +0000301 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000302 write(name); // st_name
303 write(info); // st_info
304 write(other); // st_other
305 write(Index); // st_shndx
306 write(value); // st_value
307 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000308 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000309 write(name); // st_name
310 write(uint32_t(value)); // st_value
311 write(uint32_t(size)); // st_size
312 write(info); // st_info
313 write(other); // st_other
314 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000315 }
316
317 ++NumWritten;
318}
319
Matt Fleming6c1ad482010-08-16 18:57:57 +0000320// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000321void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000322 // ELF Header
323 // ----------
324 //
325 // Note
326 // ----
327 // emitWord method behaves differently for ELF32 and ELF64, writing
328 // 4 bytes in the former and 8 in the latter.
329
Jim Grosbach36e60e92015-06-04 22:24:41 +0000330 writeBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000331
Jim Grosbach36e60e92015-06-04 22:24:41 +0000332 write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000333
334 // e_ident[EI_DATA]
Jim Grosbach36e60e92015-06-04 22:24:41 +0000335 write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000336
Jim Grosbach36e60e92015-06-04 22:24:41 +0000337 write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000338 // e_ident[EI_OSABI]
Jim Grosbach36e60e92015-06-04 22:24:41 +0000339 write8(TargetObjectWriter->getOSABI());
340 write8(0); // e_ident[EI_ABIVERSION]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000341
342 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
343
Jim Grosbach36e60e92015-06-04 22:24:41 +0000344 write16(ELF::ET_REL); // e_type
Matt Fleming6c1ad482010-08-16 18:57:57 +0000345
Jim Grosbach36e60e92015-06-04 22:24:41 +0000346 write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000347
Jim Grosbach36e60e92015-06-04 22:24:41 +0000348 write32(ELF::EV_CURRENT); // e_version
Matt Fleming6c1ad482010-08-16 18:57:57 +0000349 WriteWord(0); // e_entry, no entry point in .o file
350 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000351 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000352
Jason W Kim4761fba2011-02-04 21:41:11 +0000353 // e_flags = whatever the target wants
Jim Grosbach36e60e92015-06-04 22:24:41 +0000354 write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000355
356 // e_ehsize = ELF header size
Jim Grosbach36e60e92015-06-04 22:24:41 +0000357 write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000358
Jim Grosbach36e60e92015-06-04 22:24:41 +0000359 write16(0); // e_phentsize = prog header entry size
360 write16(0); // e_phnum = # prog header entries = 0
Matt Fleming6c1ad482010-08-16 18:57:57 +0000361
362 // e_shentsize = Section header entry size
Jim Grosbach36e60e92015-06-04 22:24:41 +0000363 write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000364
365 // e_shnum = # of section header ents
Jim Grosbach36e60e92015-06-04 22:24:41 +0000366 write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000367
368 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola5960cee2015-05-22 23:58:30 +0000369 assert(StringTableIndex < ELF::SHN_LORESERVE);
Jim Grosbach36e60e92015-06-04 22:24:41 +0000370 write16(StringTableIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000371}
372
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000373uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000374 const MCAsmLayout &Layout) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000375 if (Sym.isCommon() && Sym.isExternal())
Rafael Espindola14672502015-05-29 17:48:04 +0000376 return Sym.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000377
Rafael Espindolafee224f2014-04-30 21:51:13 +0000378 uint64_t Res;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000379 if (!Layout.getSymbolOffset(Sym, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000380 return 0;
381
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000382 if (Layout.getAssembler().isThumbFunc(&Sym))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000383 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000384
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000385 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000386}
387
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000388void ELFObjectWriter::executePostLayoutBinding(MCAssembler &Asm,
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000389 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000390 // The presence of symbol versions causes undefined symbols and
391 // versions declared with @@@ to be renamed.
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000392 for (const MCSymbol &A : Asm.symbols()) {
393 const auto &Alias = cast<MCSymbolELF>(A);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000394 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000395 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000396 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000397 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
398 if (!Ref)
399 continue;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000400 const auto &Symbol = cast<MCSymbolELF>(Ref->getSymbol());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000401
Benjamin Kramer14807272010-10-27 19:53:52 +0000402 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000403 size_t Pos = AliasName.find('@');
404 if (Pos == StringRef::npos)
405 continue;
406
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000407 // Aliases defined with .symvar copy the binding from the symbol they alias.
408 // This is the first place we are able to copy this information.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000409 Alias.setExternal(Symbol.isExternal());
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000410 Alias.setBinding(Symbol.getBinding());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000411
Benjamin Kramer14807272010-10-27 19:53:52 +0000412 StringRef Rest = AliasName.substr(Pos);
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
Benjamin Kramer14807272010-10-27 19:53:52 +0000421 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000422 }
423}
424
Roman Divacky5a1c5492014-01-07 20:17:03 +0000425static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
426 uint8_t Type = newType;
427
428 // Propagation rules:
429 // IFUNC > FUNC > OBJECT > NOTYPE
430 // TLS_OBJECT > OBJECT > NOTYPE
431 //
432 // dont let the new type degrade the old type
433 switch (origType) {
434 default:
435 break;
436 case ELF::STT_GNU_IFUNC:
437 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
438 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
439 Type = ELF::STT_GNU_IFUNC;
440 break;
441 case ELF::STT_FUNC:
442 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
443 Type == ELF::STT_TLS)
444 Type = ELF::STT_FUNC;
445 break;
446 case ELF::STT_OBJECT:
447 if (Type == ELF::STT_NOTYPE)
448 Type = ELF::STT_OBJECT;
449 break;
450 case ELF::STT_TLS:
451 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
452 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
453 Type = ELF::STT_TLS;
454 break;
455 }
456
457 return Type;
458}
459
Rafael Espindolae48421f2015-05-28 20:25:29 +0000460void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
461 uint32_t StringIndex, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000462 const MCAsmLayout &Layout) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000463 const auto &Symbol = cast<MCSymbolELF>(*MSD.Symbol);
Rafael Espindolaa8695762015-06-02 00:25:12 +0000464 const MCSymbolELF *Base =
465 cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol));
Rafael Espindola85a84912014-03-26 00:16:43 +0000466
467 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
468 // SHN_COMMON.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000469 bool IsReserved = !Base || Symbol.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000470
Jack Carter2f8d9d92013-02-19 21:57:35 +0000471 // Binding and Type share the same byte as upper and lower nibbles
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000472 uint8_t Binding = Symbol.getBinding();
473 uint8_t Type = Symbol.getType();
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000474 if (Base) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000475 Type = mergeTypeForSet(Type, Base->getType());
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000476 }
Rafael Espindolaf8794ff2015-06-04 00:47:43 +0000477 uint8_t Info = (Binding << 4) | Type;
Jack Carter2f8d9d92013-02-19 21:57:35 +0000478
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000479 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000480 // 2 bits
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000481 uint8_t Visibility = Symbol.getVisibility();
Rafael Espindola8c006ee2015-06-04 05:59:23 +0000482 uint8_t Other = Symbol.getOther() | Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000483
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000484 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000485 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000486
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000487 const MCExpr *ESize = MSD.Symbol->getSize();
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000488 if (!ESize && Base)
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000489 ESize = Base->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000490
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000491 if (ESize) {
492 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000493 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000494 report_fatal_error("Size expression must be absolute.");
495 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000496 }
497
498 // Write out the symbol table entry
Rafael Espindolae48421f2015-05-28 20:25:29 +0000499 Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
500 IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000501}
502
Rafael Espindola5904e122014-03-29 06:26:49 +0000503// It is always valid to create a relocation with a symbol. It is preferable
504// to use a relocation with a section if that is possible. Using the section
505// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000506bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
507 const MCSymbolRefExpr *RefA,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000508 const MCSymbol *S, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000509 unsigned Type) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000510 const auto *Sym = cast_or_null<MCSymbolELF>(S);
Rafael Espindola5904e122014-03-29 06:26:49 +0000511 // A PCRel relocation to an absolute value has no symbol (or section). We
512 // represent that with a relocation to a null section.
513 if (!RefA)
514 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000515
Rafael Espindola5904e122014-03-29 06:26:49 +0000516 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
517 switch (Kind) {
518 default:
519 break;
520 // The .odp creation emits a relocation against the symbol ".TOC." which
521 // create a R_PPC64_TOC relocation. However the relocation symbol name
522 // in final object creation should be NULL, since the symbol does not
523 // really exist, it is just the reference to TOC base for the current
524 // object file. Since the symbol is undefined, returning false results
525 // in a relocation with a null section which is the desired result.
526 case MCSymbolRefExpr::VK_PPC_TOCBASE:
527 return false;
528
529 // These VariantKind cause the relocation to refer to something other than
530 // the symbol itself, like a linker generated table. Since the address of
531 // symbol is not relevant, we cannot replace the symbol with the
532 // section and patch the difference in the addend.
533 case MCSymbolRefExpr::VK_GOT:
534 case MCSymbolRefExpr::VK_PLT:
535 case MCSymbolRefExpr::VK_GOTPCREL:
Rafael Espindola5904e122014-03-29 06:26:49 +0000536 case MCSymbolRefExpr::VK_PPC_GOT_LO:
537 case MCSymbolRefExpr::VK_PPC_GOT_HI:
538 case MCSymbolRefExpr::VK_PPC_GOT_HA:
539 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000540 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000541
Rafael Espindola5904e122014-03-29 06:26:49 +0000542 // An undefined symbol is not in any section, so the relocation has to point
543 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000544 assert(Sym && "Expected a symbol");
545 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000546 return true;
547
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000548 unsigned Binding = Sym->getBinding();
Rafael Espindola5904e122014-03-29 06:26:49 +0000549 switch(Binding) {
550 default:
551 llvm_unreachable("Invalid Binding");
552 case ELF::STB_LOCAL:
553 break;
554 case ELF::STB_WEAK:
555 // If the symbol is weak, it might be overridden by a symbol in another
556 // file. The relocation has to point to the symbol so that the linker
557 // can update it.
558 return true;
559 case ELF::STB_GLOBAL:
560 // Global ELF symbols can be preempted by the dynamic linker. The relocation
561 // has to point to the symbol for a reason analogous to the STB_WEAK case.
562 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000563 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000564
Rafael Espindola5904e122014-03-29 06:26:49 +0000565 // If a relocation points to a mergeable section, we have to be careful.
566 // If the offset is zero, a relocation with the section will encode the
567 // same information. With a non-zero offset, the situation is different.
568 // For example, a relocation can point 42 bytes past the end of a string.
569 // If we change such a relocation to use the section, the linker would think
570 // that it pointed to another string and subtracting 42 at runtime will
571 // produce the wrong value.
Saleem Abdulrasool9b106ea2016-11-22 04:32:54 +0000572 if (Sym->isInSection()) {
573 auto &Sec = cast<MCSectionELF>(Sym->getSection());
574 unsigned Flags = Sec.getFlags();
575 if (Flags & ELF::SHF_MERGE) {
576 if (C != 0)
577 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000578
Saleem Abdulrasool9b106ea2016-11-22 04:32:54 +0000579 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
580 // only handle section relocations to mergeable sections if using RELA.
581 if (!hasRelocationAddend())
582 return true;
583 }
584
585 // Most TLS relocations use a got, so they need the symbol. Even those that
586 // are just an offset (@tpoff), require a symbol in gold versions before
587 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
588 // http://sourceware.org/PR16773.
589 if (Flags & ELF::SHF_TLS)
Rafael Espindolab1b49782014-04-02 12:15:20 +0000590 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000591 }
592
Rafael Espindola9ef84412014-04-11 19:18:01 +0000593 // If the symbol is a thumb function the final relocation must set the lowest
594 // bit. With a symbol that is done by just having the symbol have that bit
595 // set, so we would lose the bit if we relocated with the section.
596 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000597 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000598 return true;
599
Rafael Espindolaece40ca2015-05-29 18:26:09 +0000600 if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000601 return true;
602 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000603}
604
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000605// True if the assembler knows nothing about the final value of the symbol.
606// This doesn't cover the comdat issues, since in those cases the assembler
607// can at least know that all symbols in the section will move together.
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000608static bool isWeak(const MCSymbolELF &Sym) {
609 if (Sym.getType() == ELF::STT_GNU_IFUNC)
Rafael Espindolaa635d832015-04-17 08:46:11 +0000610 return true;
611
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000612 switch (Sym.getBinding()) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000613 default:
614 llvm_unreachable("Unknown binding");
615 case ELF::STB_LOCAL:
616 return false;
617 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000618 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000619 case ELF::STB_WEAK:
620 case ELF::STB_GNU_UNIQUE:
621 return true;
622 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000623}
624
Jim Grosbach36e60e92015-06-04 22:24:41 +0000625void ELFObjectWriter::recordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000626 const MCAsmLayout &Layout,
627 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000628 const MCFixup &Fixup, MCValue Target,
629 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola7549f872015-05-26 00:36:57 +0000630 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000631 uint64_t C = Target.getConstant();
632 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000633 MCContext &Ctx = Asm.getContext();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000634
Rafael Espindola5904e122014-03-29 06:26:49 +0000635 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
Rafael Espindola5904e122014-03-29 06:26:49 +0000636 // Let A, B and C being the components of Target and R be the location of
637 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
638 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000639
Rafael Espindola5904e122014-03-29 06:26:49 +0000640 // In general, ELF has no relocations for -B. It can only represent (A + C)
641 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
642 // replace B to implement it: (A - R - K + C)
Oliver Stannard9be59af2015-11-17 10:00:43 +0000643 if (IsPCRel) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000644 Ctx.reportError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000645 Fixup.getLoc(),
646 "No relocation available to represent this relative expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000647 return;
648 }
David Majnemera45a1762014-01-06 07:39:46 +0000649
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000650 const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol());
Jason W Kim495c2bb2010-12-06 21:57:34 +0000651
Oliver Stannard9be59af2015-11-17 10:00:43 +0000652 if (SymB.isUndefined()) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000653 Ctx.reportError(Fixup.getLoc(),
654 Twine("symbol '") + SymB.getName() +
655 "' can not be undefined in a subtraction expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000656 return;
657 }
Jason W Kim495c2bb2010-12-06 21:57:34 +0000658
Rafael Espindola5904e122014-03-29 06:26:49 +0000659 assert(!SymB.isAbsolute() && "Should have been folded");
660 const MCSection &SecB = SymB.getSection();
Oliver Stannard9be59af2015-11-17 10:00:43 +0000661 if (&SecB != &FixupSection) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000662 Ctx.reportError(Fixup.getLoc(),
663 "Cannot represent a difference across sections");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000664 return;
665 }
Jason W Kim495c2bb2010-12-06 21:57:34 +0000666
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000667 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000668 uint64_t K = SymBOffset - FixupOffset;
669 IsPCRel = true;
670 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000671 }
672
Rafael Espindola5904e122014-03-29 06:26:49 +0000673 // We either rejected the fixup or folded B into C at this point.
674 const MCSymbolRefExpr *RefA = Target.getSymA();
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000675 const auto *SymA = RefA ? cast<MCSymbolELF>(&RefA->getSymbol()) : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000676
Rafael Espindola212fdde2015-06-03 21:52:06 +0000677 bool ViaWeakRef = false;
678 if (SymA && SymA->isVariable()) {
679 const MCExpr *Expr = SymA->getVariableValue();
680 if (const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr)) {
681 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF) {
682 SymA = cast<MCSymbolELF>(&Inner->getSymbol());
683 ViaWeakRef = true;
684 }
685 }
686 }
687
Rafael Espindola8340f942016-01-13 22:56:57 +0000688 unsigned Type = getRelocType(Ctx, Target, Fixup, IsPCRel);
Daniel Sandersa463d312016-05-06 13:49:25 +0000689 uint64_t OriginalC = C;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000690 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000691 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000692 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000693
694 uint64_t Addend = 0;
695 if (hasRelocationAddend()) {
696 Addend = C;
697 C = 0;
698 }
699
700 FixedValue = C;
701
Rafael Espindola5904e122014-03-29 06:26:49 +0000702 if (!RelocateWithSymbol) {
703 const MCSection *SecA =
704 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000705 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000706 const auto *SectionSymbol =
707 ELFSec ? cast<MCSymbolELF>(ELFSec->getBeginSymbol()) : nullptr;
Rafael Espindolaa401eee2015-06-04 15:33:30 +0000708 if (SectionSymbol)
709 SectionSymbol->setUsedInReloc();
Daniel Sandersa463d312016-05-06 13:49:25 +0000710 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend, SymA,
711 OriginalC);
Rafael Espindola34948e52015-04-30 00:45:46 +0000712 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000713 return;
714 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000715
Daniel Sandersa463d312016-05-06 13:49:25 +0000716 const auto *RenamedSymA = SymA;
Rafael Espindola5904e122014-03-29 06:26:49 +0000717 if (SymA) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000718 if (const MCSymbolELF *R = Renames.lookup(SymA))
Daniel Sandersa463d312016-05-06 13:49:25 +0000719 RenamedSymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000720
Rafael Espindola212fdde2015-06-03 21:52:06 +0000721 if (ViaWeakRef)
Daniel Sandersa463d312016-05-06 13:49:25 +0000722 RenamedSymA->setIsWeakrefUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000723 else
Daniel Sandersa463d312016-05-06 13:49:25 +0000724 RenamedSymA->setUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000725 }
Daniel Sandersa463d312016-05-06 13:49:25 +0000726 ELFRelocationEntry Rec(FixupOffset, RenamedSymA, Type, Addend, SymA,
727 OriginalC);
Rafael Espindola34948e52015-04-30 00:45:46 +0000728 Relocations[&FixupSection].push_back(Rec);
Jason W Kim495c2bb2010-12-06 21:57:34 +0000729}
730
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000731bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000732 const MCSymbolELF &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000733 bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000734 if (Symbol.isVariable()) {
735 const MCExpr *Expr = Symbol.getVariableValue();
736 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
737 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
738 return false;
739 }
740 }
Rafael Espindola16145972010-11-01 14:28:48 +0000741
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000742 if (Used)
743 return true;
744
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000745 if (Renamed)
746 return false;
747
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000748 if (Symbol.isVariable() && Symbol.isUndefined()) {
749 // FIXME: this is here just to diagnose the case of a var = commmon_sym.
750 Layout.getBaseSymbol(Symbol);
751 return false;
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000752 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000753
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000754 if (Symbol.isUndefined() && !Symbol.isBindingSet())
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000755 return false;
756
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000757 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000758 return false;
759
Rafael Espindolaa401eee2015-06-04 15:33:30 +0000760 if (Symbol.getType() == ELF::STT_SECTION)
761 return false;
762
Rafael Espindolab1d07892010-10-05 18:01:23 +0000763 return true;
764}
765
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000766void ELFObjectWriter::computeSymbolTable(
767 MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000768 const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
769 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000770 MCContext &Ctx = Asm.getContext();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000771 SymbolTableWriter Writer(*this, is64Bit());
772
Rafael Espindola5960cee2015-05-22 23:58:30 +0000773 // Symbol table
774 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
775 MCSectionELF *SymtabSection =
776 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
777 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
778 SymbolTableIndex = addToSectionTable(SymtabSection);
779
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000780 align(SymtabSection->getAlignment());
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000781 uint64_t SecStart = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000782
783 // The first entry is the undefined symbol entry.
784 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
785
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000786 std::vector<ELFSymbolData> LocalSymbolData;
787 std::vector<ELFSymbolData> ExternalSymbolData;
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000788
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000789 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000790 bool HasLargeSectionIndex = false;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000791 for (const MCSymbol &S : Asm.symbols()) {
792 const auto &Symbol = cast<MCSymbolELF>(S);
Rafael Espindolaada43f62015-06-03 21:30:10 +0000793 bool Used = Symbol.isUsedInReloc();
Rafael Espindola212fdde2015-06-03 21:52:06 +0000794 bool WeakrefUsed = Symbol.isWeakrefUsedInReloc();
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000795 bool isSignature = Symbol.isSignature();
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000796
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000797 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000798 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000799 continue;
800
Oliver Stannard9be59af2015-11-17 10:00:43 +0000801 if (Symbol.isTemporary() && Symbol.isUndefined()) {
802 Ctx.reportError(SMLoc(), "Undefined temporary symbol");
803 continue;
804 }
Rafael Espindola6dff8142015-06-25 20:10:45 +0000805
Matt Fleming6c1ad482010-08-16 18:57:57 +0000806 ELFSymbolData MSD;
Rafael Espindolaa8695762015-06-02 00:25:12 +0000807 MSD.Symbol = cast<MCSymbolELF>(&Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000808
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000809 bool Local = Symbol.getBinding() == ELF::STB_LOCAL;
Rafael Espindola6dff8142015-06-25 20:10:45 +0000810 assert(Local || !Symbol.isTemporary());
811
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000812 if (Symbol.isAbsolute()) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000813 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola14672502015-05-29 17:48:04 +0000814 } else if (Symbol.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000815 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000816 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000817 } else if (Symbol.isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000818 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000819 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000820 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
821 HasLargeSectionIndex = true;
822 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000823 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000824 }
Matt Fleming6c1ad482010-08-16 18:57:57 +0000825 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000826 const MCSectionELF &Section =
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000827 static_cast<const MCSectionELF &>(Symbol.getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000828 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000829 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000830 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
831 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000832 }
833
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000834 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
835 // in defined ones.
836 //
837 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000838 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000839 // trivial.
840 //
841 // We thus have to be careful to not perform the symbol version replacement
842 // blindly:
843 //
844 // The ELF format is used on Windows by the MCJIT engine. Thus, on
845 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
846 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
847 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
848 // the EFLObjectWriter should not interpret the "@@@" sub-string as
849 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
850 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
851 // "__imp_?" or "__imp_@?".
852 //
853 // It would have been interesting to perform the MS mangling prefix check
854 // only when the target triple is of the form *-pc-windows-elf. But, it
855 // seems that this information is not easily accessible from the
856 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000857 StringRef Name = Symbol.getName();
Evgeniy Stepanov9e0d41a2015-06-22 23:36:03 +0000858 SmallString<32> Buf;
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000859 if (!Name.startswith("?") && !Name.startswith("@?") &&
860 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
861 // This symbol isn't following the MSVC C++ name mangling convention. We
862 // can thus safely interpret the @@@ in symbol names as specifying symbol
863 // versioning.
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000864 size_t Pos = Name.find("@@@");
865 if (Pos != StringRef::npos) {
866 Buf += Name.substr(0, Pos);
867 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
868 Buf += Name.substr(Pos + Skip);
Rafael Espindolafc063e82015-10-22 18:32:06 +0000869 Name = VersionSymSaver.save(Buf.c_str());
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000870 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000871 }
Rafael Espindolab6613022014-10-17 01:48:58 +0000872
873 // Sections have their own string table
Rafael Espindolafc063e82015-10-22 18:32:06 +0000874 if (Symbol.getType() != ELF::STT_SECTION) {
875 MSD.Name = Name;
876 StrTabBuilder.add(Name);
877 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000878
Rafael Espindola10d23872015-05-29 14:20:40 +0000879 if (Local)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000880 LocalSymbolData.push_back(MSD);
881 else
882 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000883 }
884
Rafael Espindola2cd19512015-07-02 16:59:57 +0000885 // This holds the .symtab_shndx section index.
886 unsigned SymtabShndxSectionIndex = 0;
887
Rafael Espindola5960cee2015-05-22 23:58:30 +0000888 if (HasLargeSectionIndex) {
889 MCSectionELF *SymtabShndxSection =
890 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
891 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
892 SymtabShndxSection->setAlignment(4);
893 }
894
Rafael Espindola1fd36272015-05-28 19:29:15 +0000895 ArrayRef<std::string> FileNames = Asm.getFileNames();
896 for (const std::string &Name : FileNames)
Rafael Espindola66f3c9c2015-05-28 18:03:20 +0000897 StrTabBuilder.add(Name);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000898
Rafael Espindola21956e42015-10-23 21:48:05 +0000899 StrTabBuilder.finalize();
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000900
Peter Collingbourne5b75fd92017-03-03 21:22:06 +0000901 // File symbols are emitted first and handled separately from normal symbols,
902 // i.e. a non-STT_FILE symbol with the same name may appear.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000903 for (const std::string &Name : FileNames)
904 Writer.writeSymbol(StrTabBuilder.getOffset(Name),
905 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
906 ELF::SHN_ABS, true);
907
Matt Fleming6c1ad482010-08-16 18:57:57 +0000908 // Symbols are required to be in lexicographic order.
909 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
910 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000911
912 // Set the symbol indices. Local symbols must come before all other
913 // symbols with non-local bindings.
Rafael Espindola1fd36272015-05-28 19:29:15 +0000914 unsigned Index = FileNames.size() + 1;
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000915
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000916 for (ELFSymbolData &MSD : LocalSymbolData) {
Daniel Jasper41de8022015-06-23 11:31:32 +0000917 unsigned StringIndex = MSD.Symbol->getType() == ELF::STT_SECTION
918 ? 0
919 : StrTabBuilder.getOffset(MSD.Name);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000920 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000921 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000922 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000923
924 // Write the symbol table entries.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000925 LastLocalSymbolIndex = Index;
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000926
Rafael Espindoladcda9972015-05-28 19:43:20 +0000927 for (ELFSymbolData &MSD : ExternalSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000928 unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
Rafael Espindola0cbea292015-05-28 20:00:13 +0000929 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000930 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000931 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000932 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000933
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000934 uint64_t SecEnd = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000935 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
936
937 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
938 if (ShndxIndexes.empty()) {
939 assert(SymtabShndxSectionIndex == 0);
940 return;
941 }
942 assert(SymtabShndxSectionIndex != 0);
943
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000944 SecStart = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000945 const MCSectionELF *SymtabShndxSection =
946 SectionTable[SymtabShndxSectionIndex - 1];
947 for (uint32_t Index : ShndxIndexes)
948 write(Index);
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000949 SecEnd = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000950 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000951}
952
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000953MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000954ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +0000955 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000956 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +0000957 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000958
Rafael Espindola34948e52015-04-30 00:45:46 +0000959 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +0000960 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
961 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +0000962
Rafael Espindolaead85492015-02-17 20:31:13 +0000963 unsigned EntrySize;
964 if (hasRelocationAddend())
965 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
966 else
967 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000968
Rafael Espindolaead85492015-02-17 20:31:13 +0000969 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +0000970 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +0000971 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +0000972
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000973 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +0000974 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +0000975 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000976 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +0000977 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000978}
Matt Fleming6c1ad482010-08-16 18:57:57 +0000979
George Rimarc91e38c2016-05-27 12:27:32 +0000980// Include the debug info compression header.
981bool ELFObjectWriter::maybeWriteCompression(
982 uint64_t Size, SmallVectorImpl<char> &CompressedContents, bool ZLibStyle,
983 unsigned Alignment) {
984 if (ZLibStyle) {
985 uint64_t HdrSize =
986 is64Bit() ? sizeof(ELF::Elf32_Chdr) : sizeof(ELF::Elf64_Chdr);
987 if (Size <= HdrSize + CompressedContents.size())
988 return false;
989 // Platform specific header is followed by compressed data.
990 if (is64Bit()) {
991 // Write Elf64_Chdr header.
992 write(static_cast<ELF::Elf64_Word>(ELF::ELFCOMPRESS_ZLIB));
993 write(static_cast<ELF::Elf64_Word>(0)); // ch_reserved field.
994 write(static_cast<ELF::Elf64_Xword>(Size));
995 write(static_cast<ELF::Elf64_Xword>(Alignment));
996 } else {
997 // Write Elf32_Chdr header otherwise.
998 write(static_cast<ELF::Elf32_Word>(ELF::ELFCOMPRESS_ZLIB));
999 write(static_cast<ELF::Elf32_Word>(Size));
1000 write(static_cast<ELF::Elf32_Word>(Alignment));
1001 }
1002 return true;
1003 }
1004
1005 // "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
1006 // useful for consumers to preallocate a buffer to decompress into.
Richard Smithb910e562016-05-25 00:14:12 +00001007 const StringRef Magic = "ZLIB";
1008 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
1009 return false;
George Rimarc91e38c2016-05-27 12:27:32 +00001010 write(ArrayRef<char>(Magic.begin(), Magic.size()));
1011 writeBE64(Size);
Richard Smithb910e562016-05-25 00:14:12 +00001012 return true;
1013}
1014
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001015void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +00001016 const MCAsmLayout &Layout) {
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001017 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001018 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +00001019
Saleem Abdulrasool1f62f572017-06-09 00:40:19 +00001020 auto &MC = Asm.getContext();
1021 const auto &MAI = MC.getAsmInfo();
1022
Rafael Espindola868b3f42015-04-30 21:51:58 +00001023 // Compressing debug_frame requires handling alignment fragments which is
1024 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1025 // for writing to arbitrary buffers) for little benefit.
George Rimarc91e38c2016-05-27 12:27:32 +00001026 bool CompressionEnabled =
Saleem Abdulrasool1f62f572017-06-09 00:40:19 +00001027 MAI->compressDebugSections() != DebugCompressionType::None;
George Rimarc91e38c2016-05-27 12:27:32 +00001028 if (!CompressionEnabled || !SectionName.startswith(".debug_") ||
1029 SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001030 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001031 return;
1032 }
1033
Saleem Abdulrasool1f62f572017-06-09 00:40:19 +00001034 assert((MAI->compressDebugSections() == DebugCompressionType::Z ||
1035 MAI->compressDebugSections() == DebugCompressionType::GNU) &&
1036 "expected zlib or zlib-gnu style compression");
1037
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001038 SmallVector<char, 128> UncompressedData;
1039 raw_svector_ostream VecOS(UncompressedData);
1040 raw_pwrite_stream &OldStream = getStream();
1041 setStream(VecOS);
1042 Asm.writeSectionData(&Section, Layout);
1043 setStream(OldStream);
David Blaikie8019bf82014-04-10 21:53:53 +00001044
Rafael Espindola868b3f42015-04-30 21:51:58 +00001045 SmallVector<char, 128> CompressedContents;
George Rimar167ca4a2017-01-17 15:45:07 +00001046 if (Error E = zlib::compress(
1047 StringRef(UncompressedData.data(), UncompressedData.size()),
1048 CompressedContents)) {
1049 consumeError(std::move(E));
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001050 getStream() << UncompressedData;
David Blaikie8019bf82014-04-10 21:53:53 +00001051 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001052 }
David Blaikie8019bf82014-04-10 21:53:53 +00001053
Saleem Abdulrasool1f62f572017-06-09 00:40:19 +00001054 bool ZlibStyle = MAI->compressDebugSections() == DebugCompressionType::Z;
George Rimarc91e38c2016-05-27 12:27:32 +00001055 if (!maybeWriteCompression(UncompressedData.size(), CompressedContents,
1056 ZlibStyle, Sec.getAlignment())) {
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001057 getStream() << UncompressedData;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001058 return;
1059 }
George Rimarc91e38c2016-05-27 12:27:32 +00001060
1061 if (ZlibStyle)
1062 // Set the compressed flag. That is zlib style.
1063 Section.setFlags(Section.getFlags() | ELF::SHF_COMPRESSED);
1064 else
1065 // Add "z" prefix to section name. This is zlib-gnu style.
Saleem Abdulrasool1f62f572017-06-09 00:40:19 +00001066 MC.renameELFSection(&Section, (".z" + SectionName.drop_front(1)).str());
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001067 getStream() << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001068}
1069
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001070void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1071 uint64_t Flags, uint64_t Address,
1072 uint64_t Offset, uint64_t Size,
1073 uint32_t Link, uint32_t Info,
1074 uint64_t Alignment,
1075 uint64_t EntrySize) {
Jim Grosbach36e60e92015-06-04 22:24:41 +00001076 write32(Name); // sh_name: index into string table
1077 write32(Type); // sh_type
Matt Fleming6c1ad482010-08-16 18:57:57 +00001078 WriteWord(Flags); // sh_flags
1079 WriteWord(Address); // sh_addr
1080 WriteWord(Offset); // sh_offset
1081 WriteWord(Size); // sh_size
Jim Grosbach36e60e92015-06-04 22:24:41 +00001082 write32(Link); // sh_link
1083 write32(Info); // sh_info
Matt Fleming6c1ad482010-08-16 18:57:57 +00001084 WriteWord(Alignment); // sh_addralign
1085 WriteWord(EntrySize); // sh_entsize
1086}
1087
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001088void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001089 const MCSectionELF &Sec) {
1090 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001091
Rafael Espindolaf44db242015-12-17 16:22:06 +00001092 // We record relocations by pushing to the end of a vector. Reverse the vector
1093 // to get the relocations in the order they were created.
1094 // In most cases that is not important, but it can be for special sections
1095 // (.eh_frame) or specific relocations (TLS optimizations on SystemZ).
1096 std::reverse(Relocs.begin(), Relocs.end());
Rafael Espindolad0e16522015-12-17 15:08:24 +00001097
Rafael Espindolaf44db242015-12-17 16:22:06 +00001098 // Sort the relocation entries. MIPS needs this.
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001099 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001100
1101 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001102 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001103 unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001104
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001105 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001106 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001107 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001108 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001109
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001110 write(TargetObjectWriter->getRSsym(Entry.Type));
1111 write(TargetObjectWriter->getRType3(Entry.Type));
1112 write(TargetObjectWriter->getRType2(Entry.Type));
1113 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001114 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001115 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001116 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001117 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001118 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001119 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001120 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001121 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001122 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001123
Rafael Espindolabce26a12010-10-05 15:11:03 +00001124 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001125 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001126 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001127
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001128 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001129 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001130 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001131 }
1132}
1133
Rafael Espindolab1863912015-04-30 21:10:06 +00001134const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001135 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
Rafael Espindola39751af2016-10-04 22:43:25 +00001136 StrTabBuilder.write(getStream());
Rafael Espindolabda19802015-04-30 14:21:49 +00001137 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001138}
1139
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001140void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1141 uint32_t GroupSymbolIndex, uint64_t Offset,
1142 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001143 uint64_t sh_link = 0;
1144 uint64_t sh_info = 0;
1145
1146 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001147 default:
1148 // Nothing to do.
1149 break;
1150
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001151 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001152 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001153
1154 case ELF::SHT_REL:
1155 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001156 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001157 assert(sh_link && ".symtab not found");
Evgeniy Stepanov43dcf4d2017-03-14 19:28:51 +00001158 const MCSection *InfoSection = Section.getAssociatedSection();
1159 sh_info = SectionIndexMap.lookup(cast<MCSectionELF>(InfoSection));
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001160 break;
1161 }
1162
1163 case ELF::SHT_SYMTAB:
1164 case ELF::SHT_DYNSYM:
1165 sh_link = StringTableIndex;
1166 sh_info = LastLocalSymbolIndex;
1167 break;
1168
1169 case ELF::SHT_SYMTAB_SHNDX:
1170 sh_link = SymbolTableIndex;
1171 break;
1172
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001173 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001174 sh_link = SymbolTableIndex;
1175 sh_info = GroupSymbolIndex;
1176 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001177 }
1178
Evgeniy Stepanov43dcf4d2017-03-14 19:28:51 +00001179 if (Section.getFlags() & ELF::SHF_LINK_ORDER) {
1180 const MCSymbol *Sym = Section.getAssociatedSymbol();
1181 const MCSectionELF *Sec = cast<MCSectionELF>(&Sym->getSection());
1182 sh_link = SectionIndexMap.lookup(Sec);
1183 }
Logan Chien4b724422013-02-05 14:18:59 +00001184
Rafael Espindola5960cee2015-05-22 23:58:30 +00001185 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001186 Section.getType(), Section.getFlags(), 0, Offset, Size,
1187 sh_link, sh_info, Section.getAlignment(),
1188 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001189}
1190
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001191void ELFObjectWriter::writeSectionHeader(
Rafael Espindola57c80832015-06-04 20:55:49 +00001192 const MCAsmLayout &Layout, const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001193 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001194 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001195
Matt Fleming6c1ad482010-08-16 18:57:57 +00001196 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001197 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001198 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001199 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001200
Rafael Espindola08850b32015-05-25 21:56:55 +00001201 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001202 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001203 unsigned Type = Section->getType();
1204 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001205 GroupSymbolIndex = 0;
1206 else
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001207 GroupSymbolIndex = Section->getGroup()->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001208
Rafael Espindolabda19802015-04-30 14:21:49 +00001209 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001210 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001211 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001212 if (Type == ELF::SHT_NOBITS)
1213 Size = Layout.getSectionAddressSize(Section);
1214 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001215 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001216
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001217 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001218 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001219 }
1220}
1221
Jim Grosbach36e60e92015-06-04 22:24:41 +00001222void ELFObjectWriter::writeObject(MCAssembler &Asm,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001223 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001224 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001225 MCSectionELF *StrtabSection =
1226 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1227 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001228
Rafael Espindola1557fd62011-03-20 18:44:20 +00001229 RevGroupMapTy RevGroupMap;
1230 SectionIndexMapTy SectionIndexMap;
1231
Rafael Espindolabda19802015-04-30 14:21:49 +00001232 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001233
Rafael Espindola1557fd62011-03-20 18:44:20 +00001234 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001235 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001236
Rafael Espindola7230f802015-04-08 11:41:24 +00001237 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001238 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001239 std::vector<MCSectionELF *> Groups;
1240 std::vector<MCSectionELF *> Relocations;
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001241 for (MCSection &Sec : Asm) {
1242 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindolabda19802015-04-30 14:21:49 +00001243
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001244 align(Section.getAlignment());
Rafael Espindola1557fd62011-03-20 18:44:20 +00001245
Rafael Espindola642a2212015-04-14 22:54:16 +00001246 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001247 uint64_t SecStart = getStream().tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001248
Rafael Espindola0ccf9b72015-06-02 21:30:13 +00001249 const MCSymbolELF *SignatureSymbol = Section.getGroup();
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001250 writeSectionData(Asm, Section, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001251
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001252 uint64_t SecEnd = getStream().tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001253 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1254
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001255 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001256
1257 if (SignatureSymbol) {
Rafael Espindolab5d316b2015-05-29 20:21:02 +00001258 Asm.registerSymbol(*SignatureSymbol);
Rafael Espindolabda19802015-04-30 14:21:49 +00001259 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1260 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001261 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001262 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001263 Group->setAlignment(4);
1264 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001265 }
Rafael Espindola7830fc82015-06-05 17:54:25 +00001266 std::vector<const MCSectionELF *> &Members =
1267 GroupMembers[SignatureSymbol];
1268 Members.push_back(&Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001269 if (RelSection)
Rafael Espindola7830fc82015-06-05 17:54:25 +00001270 Members.push_back(RelSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001271 }
1272
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001273 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001274 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001275 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001276 Relocations.push_back(RelSection);
1277 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001278 }
1279
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001280 for (MCSectionELF *Group : Groups) {
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001281 align(Group->getAlignment());
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001282
1283 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001284 uint64_t SecStart = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001285
1286 const MCSymbol *SignatureSymbol = Group->getGroup();
1287 assert(SignatureSymbol);
1288 write(uint32_t(ELF::GRP_COMDAT));
1289 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1290 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1291 write(SecIndex);
1292 }
1293
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001294 uint64_t SecEnd = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001295 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1296 }
1297
1298 // Compute symbol table information.
Rafael Espindolaaa486e92015-05-28 17:54:01 +00001299 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001300
1301 for (MCSectionELF *RelSection : Relocations) {
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001302 align(RelSection->getAlignment());
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001303
1304 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001305 uint64_t SecStart = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001306
Evgeniy Stepanov43dcf4d2017-03-14 19:28:51 +00001307 writeRelocations(Asm,
1308 cast<MCSectionELF>(*RelSection->getAssociatedSection()));
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001309
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001310 uint64_t SecEnd = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001311 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001312 }
1313
Rafael Espindola88d1f632015-04-29 20:25:24 +00001314 {
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001315 uint64_t SecStart = getStream().tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001316 const MCSectionELF *Sec = createStringTable(Ctx);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001317 uint64_t SecEnd = getStream().tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001318 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001319 }
1320
Rafael Espindola642a2212015-04-14 22:54:16 +00001321 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001322 align(NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001323
Rafael Espindola5568c832016-01-19 15:19:08 +00001324 const uint64_t SectionHeaderOffset = getStream().tell();
Rafael Espindola642a2212015-04-14 22:54:16 +00001325
Rafael Espindola1557fd62011-03-20 18:44:20 +00001326 // ... then the section header table ...
Rafael Espindola57c80832015-06-04 20:55:49 +00001327 writeSectionHeader(Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001328
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001329 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001330 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001331 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001332 if (sys::IsLittleEndianHost != IsLittleEndian)
1333 sys::swapByteOrder(NumSections);
1334 unsigned NumSectionsOffset;
1335
Rafael Espindola642a2212015-04-14 22:54:16 +00001336 if (is64Bit()) {
1337 uint64_t Val = SectionHeaderOffset;
1338 if (sys::IsLittleEndianHost != IsLittleEndian)
1339 sys::swapByteOrder(Val);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001340 getStream().pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1341 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001342 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001343 } else {
1344 uint32_t Val = SectionHeaderOffset;
1345 if (sys::IsLittleEndianHost != IsLittleEndian)
1346 sys::swapByteOrder(Val);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001347 getStream().pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1348 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001349 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001350 }
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001351 getStream().pwrite(reinterpret_cast<char *>(&NumSections),
1352 sizeof(NumSections), NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001353}
1354
Jim Grosbach36e60e92015-06-04 22:24:41 +00001355bool ELFObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001356 const MCAssembler &Asm, const MCSymbol &SA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001357 bool InSet, bool IsPCRel) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001358 const auto &SymA = cast<MCSymbolELF>(SA);
Rafael Espindola35d61892015-04-17 21:15:17 +00001359 if (IsPCRel) {
1360 assert(!InSet);
Peter Collingbourne36003052017-04-08 23:35:49 +00001361 if (isWeak(SymA))
Rafael Espindola35d61892015-04-17 21:15:17 +00001362 return false;
1363 }
Jim Grosbach36e60e92015-06-04 22:24:41 +00001364 return MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001365 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001366}
1367
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001368MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001369 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001370 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001371 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001372}