blob: 0765937d0ea852bd46e1e666b411a3b642af6458 [file] [log] [blame]
Nick Lewycky4288f9e2013-03-09 09:32:16 +00001//===- lib/MC/ELFObjectWriter.cpp - ELF File Writer -----------------------===//
Matt Fleming6c1ad482010-08-16 18:57:57 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements ELF object file writer information.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruthed0881b2012-12-03 16:50:05 +000014#include "llvm/MC/MCELFObjectWriter.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/STLExtras.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000016#include "llvm/ADT/SmallPtrSet.h"
17#include "llvm/ADT/SmallString.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000018#include "llvm/ADT/StringMap.h"
Evan Cheng5928e692011-07-25 23:24:55 +000019#include "llvm/MC/MCAsmBackend.h"
David Blaikie8019bf82014-04-10 21:53:53 +000020#include "llvm/MC/MCAsmInfo.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000021#include "llvm/MC/MCAsmLayout.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000022#include "llvm/MC/MCAssembler.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000023#include "llvm/MC/MCContext.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000024#include "llvm/MC/MCExpr.h"
Craig Topper6e80c282012-03-26 06:58:25 +000025#include "llvm/MC/MCFixupKindInfo.h"
26#include "llvm/MC/MCObjectWriter.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000027#include "llvm/MC/MCSectionELF.h"
Rafael Espindolaa8695762015-06-02 00:25:12 +000028#include "llvm/MC/MCSymbolELF.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000029#include "llvm/MC/MCValue.h"
Rafael Espindola97de4742014-07-03 02:01:39 +000030#include "llvm/MC/StringTableBuilder.h"
David Blaikie8019bf82014-04-10 21:53:53 +000031#include "llvm/Support/Compression.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000032#include "llvm/Support/Debug.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000033#include "llvm/Support/ELF.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000034#include "llvm/Support/Endian.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/Support/ErrorHandling.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000036#include <vector>
37using namespace llvm;
38
Jason W Kimc09e7262011-05-11 22:53:06 +000039#undef DEBUG_TYPE
40#define DEBUG_TYPE "reloc-info"
41
Rafael Espindola29abd972011-12-22 03:38:00 +000042namespace {
Rafael Espindola0ce09712014-03-25 22:43:53 +000043
Rafael Espindola10be0832014-03-25 23:44:25 +000044typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy;
45
Rafael Espindola91fd2772015-04-29 21:09:32 +000046class ELFObjectWriter;
47
Rafael Espindola10be0832014-03-25 23:44:25 +000048class SymbolTableWriter {
Rafael Espindola91fd2772015-04-29 21:09:32 +000049 ELFObjectWriter &EWriter;
Rafael Espindola10be0832014-03-25 23:44:25 +000050 bool Is64Bit;
Rafael Espindola10be0832014-03-25 23:44:25 +000051
Rafael Espindola91fd2772015-04-29 21:09:32 +000052 // indexes we are going to write to .symtab_shndx.
53 std::vector<uint32_t> ShndxIndexes;
Rafael Espindola10be0832014-03-25 23:44:25 +000054
55 // The numbel of symbols written so far.
56 unsigned NumWritten;
57
58 void createSymtabShndx();
59
Rafael Espindola91fd2772015-04-29 21:09:32 +000060 template <typename T> void write(T Value);
Rafael Espindola10be0832014-03-25 23:44:25 +000061
62public:
Rafael Espindola91fd2772015-04-29 21:09:32 +000063 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
Rafael Espindola10be0832014-03-25 23:44:25 +000064
65 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
66 uint8_t other, uint32_t shndx, bool Reserved);
Rafael Espindola91fd2772015-04-29 21:09:32 +000067
68 ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; }
Rafael Espindola10be0832014-03-25 23:44:25 +000069};
70
Rafael Espindola29abd972011-12-22 03:38:00 +000071class ELFObjectWriter : public MCObjectWriter {
Rafael Espindola29abd972011-12-22 03:38:00 +000072 static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000073 static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout);
Rafael Espindola95fb9b92015-06-02 20:38:46 +000074 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolELF &Symbol,
Rafael Espindola29abd972011-12-22 03:38:00 +000075 bool Used, bool Renamed);
Rafael Espindola29abd972011-12-22 03:38:00 +000076
Rafael Espindola6cd21802015-04-07 22:35:40 +000077 /// Helper struct for containing some precomputed information on symbols.
Rafael Espindola29abd972011-12-22 03:38:00 +000078 struct ELFSymbolData {
Rafael Espindolaa8695762015-06-02 00:25:12 +000079 const MCSymbolELF *Symbol;
Rafael Espindola29abd972011-12-22 03:38:00 +000080 uint32_t SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000081 StringRef Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000082
83 // Support lexicographic sorting.
84 bool operator<(const ELFSymbolData &RHS) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +000085 unsigned LHSType = Symbol->getType();
86 unsigned RHSType = RHS.Symbol->getType();
Rafael Espindolab6613022014-10-17 01:48:58 +000087 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
88 return false;
89 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
90 return true;
91 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
92 return SectionIndex < RHS.SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000093 return Name < RHS.Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000094 }
95 };
96
Rafael Espindola29abd972011-12-22 03:38:00 +000097 /// The target specific ELF writer instance.
Ahmed Charles56440fd2014-03-06 05:51:42 +000098 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
Rafael Espindola29abd972011-12-22 03:38:00 +000099
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000100 DenseMap<const MCSymbolELF *, const MCSymbolELF *> Renames;
Rafael Espindola29abd972011-12-22 03:38:00 +0000101
Rafael Espindola34948e52015-04-30 00:45:46 +0000102 llvm::DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>>
103 Relocations;
Rafael Espindola29abd972011-12-22 03:38:00 +0000104
105 /// @}
106 /// @name Symbol Table Data
107 /// @{
108
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000109 StringTableBuilder StrTabBuilder;
Rafael Espindola29abd972011-12-22 03:38:00 +0000110
111 /// @}
112
Rafael Espindola29abd972011-12-22 03:38:00 +0000113 // This holds the symbol table index of the last local symbol.
114 unsigned LastLocalSymbolIndex;
115 // This holds the .strtab section index.
116 unsigned StringTableIndex;
117 // This holds the .symtab section index.
118 unsigned SymbolTableIndex;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000119 // This holds the .symtab_shndx section index.
120 unsigned SymtabShndxSectionIndex = 0;
Rafael Espindola29abd972011-12-22 03:38:00 +0000121
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000122 // Sections in the order they are to be output in the section table.
Rafael Espindola08850b32015-05-25 21:56:55 +0000123 std::vector<const MCSectionELF *> SectionTable;
124 unsigned addToSectionTable(const MCSectionELF *Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000125
Rafael Espindola29abd972011-12-22 03:38:00 +0000126 // TargetObjectWriter wrappers.
Rafael Espindola29abd972011-12-22 03:38:00 +0000127 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
128 bool hasRelocationAddend() const {
129 return TargetObjectWriter->hasRelocationAddend();
130 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000131 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000132 bool IsPCRel) const {
133 return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindola29abd972011-12-22 03:38:00 +0000134 }
135
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000136 void align(unsigned Alignment);
137
Rafael Espindola29abd972011-12-22 03:38:00 +0000138 public:
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000139 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
Rafael Espindola0ce09712014-03-25 22:43:53 +0000140 bool IsLittleEndian)
Rafael Espindolae2b355d2015-05-28 15:20:00 +0000141 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
Rafael Espindola29abd972011-12-22 03:38:00 +0000142
Yaron Keren7773a722015-03-23 18:35:01 +0000143 void reset() override {
Yaron Keren7773a722015-03-23 18:35:01 +0000144 Renames.clear();
145 Relocations.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000146 StrTabBuilder.clear();
Yaron Kerenf3465e12015-05-13 15:17:19 +0000147 SectionTable.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000148 MCObjectWriter::reset();
149 }
150
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000151 ~ELFObjectWriter() override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000152
153 void WriteWord(uint64_t W) {
154 if (is64Bit())
Jim Grosbach36e60e92015-06-04 22:24:41 +0000155 write64(W);
Rafael Espindola29abd972011-12-22 03:38:00 +0000156 else
Jim Grosbach36e60e92015-06-04 22:24:41 +0000157 write32(W);
Rafael Espindola29abd972011-12-22 03:38:00 +0000158 }
159
Rafael Espindola91fd2772015-04-29 21:09:32 +0000160 template <typename T> void write(T Val) {
161 if (IsLittleEndian)
162 support::endian::Writer<support::little>(OS).write(Val);
163 else
164 support::endian::Writer<support::big>(OS).write(Val);
165 }
166
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000167 void writeHeader(const MCAssembler &Asm);
Rafael Espindola29abd972011-12-22 03:38:00 +0000168
Rafael Espindolae48421f2015-05-28 20:25:29 +0000169 void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
170 ELFSymbolData &MSD, const MCAsmLayout &Layout);
Rafael Espindola29abd972011-12-22 03:38:00 +0000171
Rafael Espindola91fd2772015-04-29 21:09:32 +0000172 // Start and end offset of each section
Rafael Espindolabda19802015-04-30 14:21:49 +0000173 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
174 SectionOffsetsTy;
Rafael Espindola91fd2772015-04-29 21:09:32 +0000175
Rafael Espindolab60c8292014-04-29 12:46:50 +0000176 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
177 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000178 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000179 unsigned Type) const;
180
Jim Grosbach36e60e92015-06-04 22:24:41 +0000181 void recordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
Craig Topper34a61bc2014-03-08 07:02:02 +0000182 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000183 MCValue Target, bool &IsPCRel,
184 uint64_t &FixedValue) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000185
Rafael Espindola89feff32015-04-28 22:59:58 +0000186 // Map from a signature symbol to the group section index
187 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
Rafael Espindola29abd972011-12-22 03:38:00 +0000188
Rafael Espindola022bb762014-03-24 03:43:21 +0000189 /// Compute the symbol table data
Rafael Espindola29abd972011-12-22 03:38:00 +0000190 ///
Rafael Espindola073ee7d2012-08-27 16:04:24 +0000191 /// \param Asm - The assembler.
192 /// \param SectionIndexMap - Maps a section to its index.
193 /// \param RevGroupMap - Maps a signature symbol to the group section.
Rafael Espindola022bb762014-03-24 03:43:21 +0000194 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000195 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000196 const RevGroupMapTy &RevGroupMap,
197 SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000198
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000199 MCSectionELF *createRelocationSection(MCContext &Ctx,
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000200 const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000201
Rafael Espindolab1863912015-04-30 21:10:06 +0000202 const MCSectionELF *createStringTable(MCContext &Ctx);
Rafael Espindola29abd972011-12-22 03:38:00 +0000203
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000204 void executePostLayoutBinding(MCAssembler &Asm,
Craig Topper34a61bc2014-03-08 07:02:02 +0000205 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000206
Rafael Espindola57c80832015-06-04 20:55:49 +0000207 void writeSectionHeader(const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000208 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +0000209 const SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000210
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000211 void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000212 const MCAsmLayout &Layout);
213
Rafael Espindola29abd972011-12-22 03:38:00 +0000214 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000215 uint64_t Address, uint64_t Offset, uint64_t Size,
216 uint32_t Link, uint32_t Info, uint64_t Alignment,
217 uint64_t EntrySize);
Rafael Espindola29abd972011-12-22 03:38:00 +0000218
Rafael Espindola34948e52015-04-30 00:45:46 +0000219 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000220
Jim Grosbach36e60e92015-06-04 22:24:41 +0000221 bool isSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000222 const MCSymbol &SymA,
223 const MCFragment &FB,
224 bool InSet,
225 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000226
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +0000227 bool isWeak(const MCSymbol &Sym) const override;
Rafael Espindolaf275ad82015-03-25 13:16:53 +0000228
Jim Grosbach36e60e92015-06-04 22:24:41 +0000229 void writeObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindolae92c1bf2015-05-21 19:42:35 +0000230 void writeSection(const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola28687582015-05-21 19:36:43 +0000231 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
Rafael Espindola29abd972011-12-22 03:38:00 +0000232 const MCSectionELF &Section);
233 };
234}
235
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000236void ELFObjectWriter::align(unsigned Alignment) {
237 uint64_t Padding = OffsetToAlignment(OS.tell(), Alignment);
238 WriteZeros(Padding);
239}
240
Rafael Espindola08850b32015-05-25 21:56:55 +0000241unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000242 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000243 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000244 return SectionTable.size();
245}
246
Rafael Espindola10be0832014-03-25 23:44:25 +0000247void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000248 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000249 return;
250
Rafael Espindola91fd2772015-04-29 21:09:32 +0000251 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000252}
253
Rafael Espindola91fd2772015-04-29 21:09:32 +0000254template <typename T> void SymbolTableWriter::write(T Value) {
255 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000256}
257
Rafael Espindola91fd2772015-04-29 21:09:32 +0000258SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
259 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000260
261void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
262 uint64_t size, uint8_t other,
263 uint32_t shndx, bool Reserved) {
264 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
265
266 if (LargeIndex)
267 createSymtabShndx();
268
Rafael Espindola91fd2772015-04-29 21:09:32 +0000269 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000270 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000271 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000272 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000273 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000274 }
275
276 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
277
Rafael Espindola10be0832014-03-25 23:44:25 +0000278 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000279 write(name); // st_name
280 write(info); // st_info
281 write(other); // st_other
282 write(Index); // st_shndx
283 write(value); // st_value
284 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000285 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000286 write(name); // st_name
287 write(uint32_t(value)); // st_value
288 write(uint32_t(size)); // st_size
289 write(info); // st_info
290 write(other); // st_other
291 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000292 }
293
294 ++NumWritten;
295}
296
Jan Sjödin30a52de2011-02-28 21:45:04 +0000297bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
298 const MCFixupKindInfo &FKI =
299 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
300
301 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
302}
303
Jason W Kim96f4c012010-11-15 16:18:39 +0000304ELFObjectWriter::~ELFObjectWriter()
305{}
306
Matt Fleming6c1ad482010-08-16 18:57:57 +0000307// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000308void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000309 // ELF Header
310 // ----------
311 //
312 // Note
313 // ----
314 // emitWord method behaves differently for ELF32 and ELF64, writing
315 // 4 bytes in the former and 8 in the latter.
316
Jim Grosbach36e60e92015-06-04 22:24:41 +0000317 writeBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000318
Jim Grosbach36e60e92015-06-04 22:24:41 +0000319 write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000320
321 // e_ident[EI_DATA]
Jim Grosbach36e60e92015-06-04 22:24:41 +0000322 write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000323
Jim Grosbach36e60e92015-06-04 22:24:41 +0000324 write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000325 // e_ident[EI_OSABI]
Jim Grosbach36e60e92015-06-04 22:24:41 +0000326 write8(TargetObjectWriter->getOSABI());
327 write8(0); // e_ident[EI_ABIVERSION]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000328
329 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
330
Jim Grosbach36e60e92015-06-04 22:24:41 +0000331 write16(ELF::ET_REL); // e_type
Matt Fleming6c1ad482010-08-16 18:57:57 +0000332
Jim Grosbach36e60e92015-06-04 22:24:41 +0000333 write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000334
Jim Grosbach36e60e92015-06-04 22:24:41 +0000335 write32(ELF::EV_CURRENT); // e_version
Matt Fleming6c1ad482010-08-16 18:57:57 +0000336 WriteWord(0); // e_entry, no entry point in .o file
337 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000338 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000339
Jason W Kim4761fba2011-02-04 21:41:11 +0000340 // e_flags = whatever the target wants
Jim Grosbach36e60e92015-06-04 22:24:41 +0000341 write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000342
343 // e_ehsize = ELF header size
Jim Grosbach36e60e92015-06-04 22:24:41 +0000344 write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000345
Jim Grosbach36e60e92015-06-04 22:24:41 +0000346 write16(0); // e_phentsize = prog header entry size
347 write16(0); // e_phnum = # prog header entries = 0
Matt Fleming6c1ad482010-08-16 18:57:57 +0000348
349 // e_shentsize = Section header entry size
Jim Grosbach36e60e92015-06-04 22:24:41 +0000350 write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000351
352 // e_shnum = # of section header ents
Jim Grosbach36e60e92015-06-04 22:24:41 +0000353 write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000354
355 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola5960cee2015-05-22 23:58:30 +0000356 assert(StringTableIndex < ELF::SHN_LORESERVE);
Jim Grosbach36e60e92015-06-04 22:24:41 +0000357 write16(StringTableIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000358}
359
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000360uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000361 const MCAsmLayout &Layout) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000362 if (Sym.isCommon() && Sym.isExternal())
Rafael Espindola14672502015-05-29 17:48:04 +0000363 return Sym.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000364
Rafael Espindolafee224f2014-04-30 21:51:13 +0000365 uint64_t Res;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000366 if (!Layout.getSymbolOffset(Sym, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000367 return 0;
368
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000369 if (Layout.getAssembler().isThumbFunc(&Sym))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000370 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000371
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000372 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000373}
374
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000375void ELFObjectWriter::executePostLayoutBinding(MCAssembler &Asm,
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000376 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000377 // The presence of symbol versions causes undefined symbols and
378 // versions declared with @@@ to be renamed.
379
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000380 for (const MCSymbol &A : Asm.symbols()) {
381 const auto &Alias = cast<MCSymbolELF>(A);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000382 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000383 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000384 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000385 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
386 if (!Ref)
387 continue;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000388 const auto &Symbol = cast<MCSymbolELF>(Ref->getSymbol());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000389
Benjamin Kramer14807272010-10-27 19:53:52 +0000390 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000391 size_t Pos = AliasName.find('@');
392 if (Pos == StringRef::npos)
393 continue;
394
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000395 // Aliases defined with .symvar copy the binding from the symbol they alias.
396 // This is the first place we are able to copy this information.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000397 Alias.setExternal(Symbol.isExternal());
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000398 Alias.setBinding(Symbol.getBinding());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000399
Benjamin Kramer14807272010-10-27 19:53:52 +0000400 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000401 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
402 continue;
403
Rafael Espindola26496e62010-10-27 17:56:18 +0000404 // FIXME: produce a better error message.
405 if (Symbol.isUndefined() && Rest.startswith("@@") &&
406 !Rest.startswith("@@@"))
407 report_fatal_error("A @@ version cannot be undefined");
408
Benjamin Kramer14807272010-10-27 19:53:52 +0000409 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000410 }
411}
412
Roman Divacky5a1c5492014-01-07 20:17:03 +0000413static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
414 uint8_t Type = newType;
415
416 // Propagation rules:
417 // IFUNC > FUNC > OBJECT > NOTYPE
418 // TLS_OBJECT > OBJECT > NOTYPE
419 //
420 // dont let the new type degrade the old type
421 switch (origType) {
422 default:
423 break;
424 case ELF::STT_GNU_IFUNC:
425 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
426 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
427 Type = ELF::STT_GNU_IFUNC;
428 break;
429 case ELF::STT_FUNC:
430 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
431 Type == ELF::STT_TLS)
432 Type = ELF::STT_FUNC;
433 break;
434 case ELF::STT_OBJECT:
435 if (Type == ELF::STT_NOTYPE)
436 Type = ELF::STT_OBJECT;
437 break;
438 case ELF::STT_TLS:
439 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
440 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
441 Type = ELF::STT_TLS;
442 break;
443 }
444
445 return Type;
446}
447
Rafael Espindolae48421f2015-05-28 20:25:29 +0000448void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
449 uint32_t StringIndex, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000450 const MCAsmLayout &Layout) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000451 const auto &Symbol = cast<MCSymbolELF>(*MSD.Symbol);
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000452 assert((!Symbol.getFragment() ||
453 (Symbol.getFragment()->getParent() == &Symbol.getSection())) &&
David Blaikieb5956d22014-04-19 00:50:15 +0000454 "The symbol's section doesn't match the fragment's symbol");
Rafael Espindolaa8695762015-06-02 00:25:12 +0000455 const MCSymbolELF *Base =
456 cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol));
Rafael Espindola85a84912014-03-26 00:16:43 +0000457
458 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
459 // SHN_COMMON.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000460 bool IsReserved = !Base || Symbol.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000461
Jack Carter2f8d9d92013-02-19 21:57:35 +0000462 // Binding and Type share the same byte as upper and lower nibbles
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000463 uint8_t Binding = Symbol.getBinding();
464 uint8_t Type = Symbol.getType();
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000465 if (Base) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000466 Type = mergeTypeForSet(Type, Base->getType());
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000467 }
Rafael Espindolaf8794ff2015-06-04 00:47:43 +0000468 uint8_t Info = (Binding << 4) | Type;
Jack Carter2f8d9d92013-02-19 21:57:35 +0000469
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000470 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000471 // 2 bits
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000472 uint8_t Visibility = Symbol.getVisibility();
Rafael Espindola8c006ee2015-06-04 05:59:23 +0000473 uint8_t Other = Symbol.getOther() | Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000474
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000475 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000476 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000477
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000478 const MCExpr *ESize = MSD.Symbol->getSize();
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000479 if (!ESize && Base)
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000480 ESize = Base->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000481
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000482 if (ESize) {
483 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000484 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000485 report_fatal_error("Size expression must be absolute.");
486 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000487 }
488
489 // Write out the symbol table entry
Rafael Espindolae48421f2015-05-28 20:25:29 +0000490 Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
491 IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000492}
493
Rafael Espindola5904e122014-03-29 06:26:49 +0000494// It is always valid to create a relocation with a symbol. It is preferable
495// to use a relocation with a section if that is possible. Using the section
496// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000497bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
498 const MCSymbolRefExpr *RefA,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000499 const MCSymbol *S, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000500 unsigned Type) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000501 const auto *Sym = cast_or_null<MCSymbolELF>(S);
Rafael Espindola5904e122014-03-29 06:26:49 +0000502 // A PCRel relocation to an absolute value has no symbol (or section). We
503 // represent that with a relocation to a null section.
504 if (!RefA)
505 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000506
Rafael Espindola5904e122014-03-29 06:26:49 +0000507 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
508 switch (Kind) {
509 default:
510 break;
511 // The .odp creation emits a relocation against the symbol ".TOC." which
512 // create a R_PPC64_TOC relocation. However the relocation symbol name
513 // in final object creation should be NULL, since the symbol does not
514 // really exist, it is just the reference to TOC base for the current
515 // object file. Since the symbol is undefined, returning false results
516 // in a relocation with a null section which is the desired result.
517 case MCSymbolRefExpr::VK_PPC_TOCBASE:
518 return false;
519
520 // These VariantKind cause the relocation to refer to something other than
521 // the symbol itself, like a linker generated table. Since the address of
522 // symbol is not relevant, we cannot replace the symbol with the
523 // section and patch the difference in the addend.
524 case MCSymbolRefExpr::VK_GOT:
525 case MCSymbolRefExpr::VK_PLT:
526 case MCSymbolRefExpr::VK_GOTPCREL:
527 case MCSymbolRefExpr::VK_Mips_GOT:
528 case MCSymbolRefExpr::VK_PPC_GOT_LO:
529 case MCSymbolRefExpr::VK_PPC_GOT_HI:
530 case MCSymbolRefExpr::VK_PPC_GOT_HA:
531 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000532 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000533
Rafael Espindola5904e122014-03-29 06:26:49 +0000534 // An undefined symbol is not in any section, so the relocation has to point
535 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000536 assert(Sym && "Expected a symbol");
537 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000538 return true;
539
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000540 unsigned Binding = Sym->getBinding();
Rafael Espindola5904e122014-03-29 06:26:49 +0000541 switch(Binding) {
542 default:
543 llvm_unreachable("Invalid Binding");
544 case ELF::STB_LOCAL:
545 break;
546 case ELF::STB_WEAK:
547 // If the symbol is weak, it might be overridden by a symbol in another
548 // file. The relocation has to point to the symbol so that the linker
549 // can update it.
550 return true;
551 case ELF::STB_GLOBAL:
552 // Global ELF symbols can be preempted by the dynamic linker. The relocation
553 // has to point to the symbol for a reason analogous to the STB_WEAK case.
554 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000555 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000556
Rafael Espindola5904e122014-03-29 06:26:49 +0000557 // If a relocation points to a mergeable section, we have to be careful.
558 // If the offset is zero, a relocation with the section will encode the
559 // same information. With a non-zero offset, the situation is different.
560 // For example, a relocation can point 42 bytes past the end of a string.
561 // If we change such a relocation to use the section, the linker would think
562 // that it pointed to another string and subtracting 42 at runtime will
563 // produce the wrong value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000564 auto &Sec = cast<MCSectionELF>(Sym->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000565 unsigned Flags = Sec.getFlags();
566 if (Flags & ELF::SHF_MERGE) {
567 if (C != 0)
568 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000569
570 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
571 // only handle section relocations to mergeable sections if using RELA.
572 if (!hasRelocationAddend())
573 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000574 }
575
Rafael Espindola5904e122014-03-29 06:26:49 +0000576 // Most TLS relocations use a got, so they need the symbol. Even those that
Rafael Espindola11527a12014-10-06 12:33:27 +0000577 // are just an offset (@tpoff), require a symbol in gold versions before
578 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
579 // http://sourceware.org/PR16773.
Rafael Espindola5904e122014-03-29 06:26:49 +0000580 if (Flags & ELF::SHF_TLS)
581 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000582
Rafael Espindola9ef84412014-04-11 19:18:01 +0000583 // If the symbol is a thumb function the final relocation must set the lowest
584 // bit. With a symbol that is done by just having the symbol have that bit
585 // set, so we would lose the bit if we relocated with the section.
586 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000587 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000588 return true;
589
Rafael Espindolaece40ca2015-05-29 18:26:09 +0000590 if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000591 return true;
592 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000593}
594
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000595// True if the assembler knows nothing about the final value of the symbol.
596// This doesn't cover the comdat issues, since in those cases the assembler
597// can at least know that all symbols in the section will move together.
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000598static bool isWeak(const MCSymbolELF &Sym) {
599 if (Sym.getType() == ELF::STT_GNU_IFUNC)
Rafael Espindolaa635d832015-04-17 08:46:11 +0000600 return true;
601
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000602 switch (Sym.getBinding()) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000603 default:
604 llvm_unreachable("Unknown binding");
605 case ELF::STB_LOCAL:
606 return false;
607 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000608 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000609 case ELF::STB_WEAK:
610 case ELF::STB_GNU_UNIQUE:
611 return true;
612 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000613}
614
Jim Grosbach36e60e92015-06-04 22:24:41 +0000615void ELFObjectWriter::recordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000616 const MCAsmLayout &Layout,
617 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000618 const MCFixup &Fixup, MCValue Target,
619 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola7549f872015-05-26 00:36:57 +0000620 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000621 uint64_t C = Target.getConstant();
622 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000623
Rafael Espindola5904e122014-03-29 06:26:49 +0000624 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
625 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
626 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000627
Rafael Espindola5904e122014-03-29 06:26:49 +0000628 // Let A, B and C being the components of Target and R be the location of
629 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
630 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000631
Rafael Espindola5904e122014-03-29 06:26:49 +0000632 // In general, ELF has no relocations for -B. It can only represent (A + C)
633 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
634 // replace B to implement it: (A - R - K + C)
635 if (IsPCRel)
Jim Grosbach6f482002015-05-18 18:43:14 +0000636 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000637 Fixup.getLoc(),
638 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000639
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000640 const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol());
Jason W Kim495c2bb2010-12-06 21:57:34 +0000641
Rafael Espindola5904e122014-03-29 06:26:49 +0000642 if (SymB.isUndefined())
Jim Grosbach6f482002015-05-18 18:43:14 +0000643 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000644 Fixup.getLoc(),
645 Twine("symbol '") + SymB.getName() +
646 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000647
Rafael Espindola5904e122014-03-29 06:26:49 +0000648 assert(!SymB.isAbsolute() && "Should have been folded");
649 const MCSection &SecB = SymB.getSection();
Rafael Espindola34948e52015-04-30 00:45:46 +0000650 if (&SecB != &FixupSection)
Jim Grosbach6f482002015-05-18 18:43:14 +0000651 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000652 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000653
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000654 if (::isWeak(SymB))
Jim Grosbach6f482002015-05-18 18:43:14 +0000655 Asm.getContext().reportFatalError(
Rafael Espindolac9e70682015-03-24 23:48:44 +0000656 Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
657
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000658 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000659 uint64_t K = SymBOffset - FixupOffset;
660 IsPCRel = true;
661 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000662 }
663
Rafael Espindola5904e122014-03-29 06:26:49 +0000664 // We either rejected the fixup or folded B into C at this point.
665 const MCSymbolRefExpr *RefA = Target.getSymA();
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000666 const auto *SymA = RefA ? cast<MCSymbolELF>(&RefA->getSymbol()) : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000667
Rafael Espindola212fdde2015-06-03 21:52:06 +0000668 bool ViaWeakRef = false;
669 if (SymA && SymA->isVariable()) {
670 const MCExpr *Expr = SymA->getVariableValue();
671 if (const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr)) {
672 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF) {
673 SymA = cast<MCSymbolELF>(&Inner->getSymbol());
674 ViaWeakRef = true;
675 }
676 }
677 }
678
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000679 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000680 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000681 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000682 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000683
684 uint64_t Addend = 0;
685 if (hasRelocationAddend()) {
686 Addend = C;
687 C = 0;
688 }
689
690 FixedValue = C;
691
Rafael Espindola5904e122014-03-29 06:26:49 +0000692 if (!RelocateWithSymbol) {
693 const MCSection *SecA =
694 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000695 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000696 const auto *SectionSymbol =
697 ELFSec ? cast<MCSymbolELF>(ELFSec->getBeginSymbol()) : nullptr;
Rafael Espindolaa401eee2015-06-04 15:33:30 +0000698 if (SectionSymbol)
699 SectionSymbol->setUsedInReloc();
Rafael Espindolab6613022014-10-17 01:48:58 +0000700 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000701 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000702 return;
703 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000704
Rafael Espindola5904e122014-03-29 06:26:49 +0000705 if (SymA) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000706 if (const MCSymbolELF *R = Renames.lookup(SymA))
Rafael Espindola5904e122014-03-29 06:26:49 +0000707 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000708
Rafael Espindola212fdde2015-06-03 21:52:06 +0000709 if (ViaWeakRef)
710 SymA->setIsWeakrefUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000711 else
Rafael Espindolaada43f62015-06-03 21:30:10 +0000712 SymA->setUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000713 }
714 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000715 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000716 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000717}
718
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000719bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000720 const MCSymbolELF &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000721 bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000722 if (Symbol.isVariable()) {
723 const MCExpr *Expr = Symbol.getVariableValue();
724 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
725 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
726 return false;
727 }
728 }
Rafael Espindola16145972010-11-01 14:28:48 +0000729
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000730 if (Used)
731 return true;
732
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000733 if (Renamed)
734 return false;
735
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000736 if (Symbol.isVariable() && Symbol.isUndefined()) {
737 // FIXME: this is here just to diagnose the case of a var = commmon_sym.
738 Layout.getBaseSymbol(Symbol);
739 return false;
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000740 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000741
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000742 if (Symbol.isUndefined() && !Symbol.isBindingSet())
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000743 return false;
744
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000745 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000746 return false;
747
Rafael Espindolaa401eee2015-06-04 15:33:30 +0000748 if (Symbol.getType() == ELF::STT_SECTION)
749 return false;
750
Rafael Espindolab1d07892010-10-05 18:01:23 +0000751 return true;
752}
753
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000754void ELFObjectWriter::computeSymbolTable(
755 MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000756 const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
757 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000758 MCContext &Ctx = Asm.getContext();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000759 SymbolTableWriter Writer(*this, is64Bit());
760
Rafael Espindola5960cee2015-05-22 23:58:30 +0000761 // Symbol table
762 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
763 MCSectionELF *SymtabSection =
764 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
765 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
766 SymbolTableIndex = addToSectionTable(SymtabSection);
767
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000768 align(SymtabSection->getAlignment());
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000769 uint64_t SecStart = OS.tell();
770
771 // The first entry is the undefined symbol entry.
772 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
773
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000774 std::vector<ELFSymbolData> LocalSymbolData;
775 std::vector<ELFSymbolData> ExternalSymbolData;
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000776
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000777 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000778 bool HasLargeSectionIndex = false;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000779 for (const MCSymbol &S : Asm.symbols()) {
780 const auto &Symbol = cast<MCSymbolELF>(S);
Rafael Espindolaada43f62015-06-03 21:30:10 +0000781 bool Used = Symbol.isUsedInReloc();
Rafael Espindola212fdde2015-06-03 21:52:06 +0000782 bool WeakrefUsed = Symbol.isWeakrefUsedInReloc();
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000783 bool isSignature = Symbol.isSignature();
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000784
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000785 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000786 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000787 continue;
788
Matt Fleming6c1ad482010-08-16 18:57:57 +0000789 ELFSymbolData MSD;
Rafael Espindolaa8695762015-06-02 00:25:12 +0000790 MSD.Symbol = cast<MCSymbolELF>(&Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000791
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000792 bool Local = Symbol.getBinding() == ELF::STB_LOCAL;
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000793 if (Symbol.isAbsolute()) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000794 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola14672502015-05-29 17:48:04 +0000795 } else if (Symbol.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000796 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000797 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000798 } else if (Symbol.isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000799 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000800 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000801 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
802 HasLargeSectionIndex = true;
803 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000804 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000805 }
Matt Fleming6c1ad482010-08-16 18:57:57 +0000806 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000807 const MCSectionELF &Section =
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000808 static_cast<const MCSectionELF &>(Symbol.getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000809 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000810 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000811 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
812 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000813 }
814
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000815 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
816 // in defined ones.
817 //
818 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000819 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000820 // trivial.
821 //
822 // We thus have to be careful to not perform the symbol version replacement
823 // blindly:
824 //
825 // The ELF format is used on Windows by the MCJIT engine. Thus, on
826 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
827 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
828 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
829 // the EFLObjectWriter should not interpret the "@@@" sub-string as
830 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
831 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
832 // "__imp_?" or "__imp_@?".
833 //
834 // It would have been interesting to perform the MS mangling prefix check
835 // only when the target triple is of the form *-pc-windows-elf. But, it
836 // seems that this information is not easily accessible from the
837 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000838 StringRef Name = Symbol.getName();
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000839 if (!Name.startswith("?") && !Name.startswith("@?") &&
840 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
841 // This symbol isn't following the MSVC C++ name mangling convention. We
842 // can thus safely interpret the @@@ in symbol names as specifying symbol
843 // versioning.
844 SmallString<32> Buf;
845 size_t Pos = Name.find("@@@");
846 if (Pos != StringRef::npos) {
847 Buf += Name.substr(0, Pos);
848 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
849 Buf += Name.substr(Pos + Skip);
850 Name = Buf;
851 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000852 }
Rafael Espindolab6613022014-10-17 01:48:58 +0000853
854 // Sections have their own string table
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000855 if (Symbol.getType() != ELF::STT_SECTION)
Rafael Espindolab6613022014-10-17 01:48:58 +0000856 MSD.Name = StrTabBuilder.add(Name);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000857
Rafael Espindola10d23872015-05-29 14:20:40 +0000858 if (Local)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000859 LocalSymbolData.push_back(MSD);
860 else
861 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000862 }
863
Rafael Espindola5960cee2015-05-22 23:58:30 +0000864 if (HasLargeSectionIndex) {
865 MCSectionELF *SymtabShndxSection =
866 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
867 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
868 SymtabShndxSection->setAlignment(4);
869 }
870
Rafael Espindola1fd36272015-05-28 19:29:15 +0000871 ArrayRef<std::string> FileNames = Asm.getFileNames();
872 for (const std::string &Name : FileNames)
Rafael Espindola66f3c9c2015-05-28 18:03:20 +0000873 StrTabBuilder.add(Name);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000874
Hans Wennborgf26bfc12014-09-29 22:43:20 +0000875 StrTabBuilder.finalize(StringTableBuilder::ELF);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000876
Rafael Espindola0cbea292015-05-28 20:00:13 +0000877 for (const std::string &Name : FileNames)
878 Writer.writeSymbol(StrTabBuilder.getOffset(Name),
879 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
880 ELF::SHN_ABS, true);
881
Matt Fleming6c1ad482010-08-16 18:57:57 +0000882 // Symbols are required to be in lexicographic order.
883 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
884 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000885
886 // Set the symbol indices. Local symbols must come before all other
887 // symbols with non-local bindings.
Rafael Espindola1fd36272015-05-28 19:29:15 +0000888 unsigned Index = FileNames.size() + 1;
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000889
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000890 for (ELFSymbolData &MSD : LocalSymbolData) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000891 unsigned StringIndex = MSD.Symbol->getType() == ELF::STT_SECTION
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000892 ? 0
893 : StrTabBuilder.getOffset(MSD.Name);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000894 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000895 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000896 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000897
898 // Write the symbol table entries.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000899 LastLocalSymbolIndex = Index;
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000900
Rafael Espindoladcda9972015-05-28 19:43:20 +0000901 for (ELFSymbolData &MSD : ExternalSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000902 unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
Rafael Espindola0cbea292015-05-28 20:00:13 +0000903 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000904 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000905 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000906 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000907
908 uint64_t SecEnd = OS.tell();
909 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
910
911 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
912 if (ShndxIndexes.empty()) {
913 assert(SymtabShndxSectionIndex == 0);
914 return;
915 }
916 assert(SymtabShndxSectionIndex != 0);
917
918 SecStart = OS.tell();
919 const MCSectionELF *SymtabShndxSection =
920 SectionTable[SymtabShndxSectionIndex - 1];
921 for (uint32_t Index : ShndxIndexes)
922 write(Index);
923 SecEnd = OS.tell();
924 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000925}
926
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000927MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000928ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +0000929 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000930 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +0000931 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000932
Rafael Espindola34948e52015-04-30 00:45:46 +0000933 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +0000934 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
935 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +0000936
Rafael Espindolaead85492015-02-17 20:31:13 +0000937 unsigned EntrySize;
938 if (hasRelocationAddend())
939 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
940 else
941 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000942
Rafael Espindolaead85492015-02-17 20:31:13 +0000943 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +0000944 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +0000945 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +0000946
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000947 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +0000948 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +0000949 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000950 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +0000951 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000952}
Matt Fleming6c1ad482010-08-16 18:57:57 +0000953
David Blaikiee06e8012014-04-11 22:11:50 +0000954static SmallVector<char, 128>
Rafael Espindolaae7e4992015-04-29 19:20:10 +0000955getUncompressedData(const MCAsmLayout &Layout,
Rafael Espindolaa32d0e92015-05-27 15:14:11 +0000956 const MCSection::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +0000957 SmallVector<char, 128> UncompressedData;
958 for (const MCFragment &F : Fragments) {
959 const SmallVectorImpl<char> *Contents;
960 switch (F.getKind()) {
961 case MCFragment::FT_Data:
962 Contents = &cast<MCDataFragment>(F).getContents();
963 break;
964 case MCFragment::FT_Dwarf:
965 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
966 break;
967 case MCFragment::FT_DwarfFrame:
968 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
969 break;
970 default:
971 llvm_unreachable(
972 "Not expecting any other fragment types in a debug_* section");
973 }
974 UncompressedData.append(Contents->begin(), Contents->end());
975 }
976 return UncompressedData;
977}
978
979// Include the debug info compression header:
980// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
981// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +0000982static bool
David Blaikiee06e8012014-04-11 22:11:50 +0000983prependCompressionHeader(uint64_t Size,
984 SmallVectorImpl<char> &CompressedContents) {
Benjamin Kramer7149aab2015-03-01 18:09:56 +0000985 const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +0000986 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
987 return false;
David Blaikie8019bf82014-04-10 21:53:53 +0000988 if (sys::IsLittleEndianHost)
Artyom Skrobov9aea8432014-06-14 13:18:07 +0000989 sys::swapByteOrder(Size);
David Blaikie8019bf82014-04-10 21:53:53 +0000990 CompressedContents.insert(CompressedContents.begin(),
991 Magic.size() + sizeof(Size), 0);
992 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
993 std::copy(reinterpret_cast<char *>(&Size),
994 reinterpret_cast<char *>(&Size + 1),
995 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +0000996 return true;
David Blaikie8019bf82014-04-10 21:53:53 +0000997}
998
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000999void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +00001000 const MCAsmLayout &Layout) {
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001001 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001002 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +00001003
Rafael Espindola868b3f42015-04-30 21:51:58 +00001004 // Compressing debug_frame requires handling alignment fragments which is
1005 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1006 // for writing to arbitrary buffers) for little benefit.
1007 if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
1008 !SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001009 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001010 return;
1011 }
1012
1013 // Gather the uncompressed data from all the fragments.
Rafael Espindolaa32d0e92015-05-27 15:14:11 +00001014 const MCSection::FragmentListType &Fragments = Section.getFragmentList();
David Blaikie8019bf82014-04-10 21:53:53 +00001015 SmallVector<char, 128> UncompressedData =
1016 getUncompressedData(Layout, Fragments);
1017
Rafael Espindola868b3f42015-04-30 21:51:58 +00001018 SmallVector<char, 128> CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001019 zlib::Status Success = zlib::compress(
1020 StringRef(UncompressedData.data(), UncompressedData.size()),
1021 CompressedContents);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001022 if (Success != zlib::StatusOK) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001023 Asm.writeSectionData(&Section, Layout);
David Blaikie8019bf82014-04-10 21:53:53 +00001024 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001025 }
David Blaikie8019bf82014-04-10 21:53:53 +00001026
Rafael Espindola868b3f42015-04-30 21:51:58 +00001027 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001028 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001029 return;
1030 }
David Blaikie8019bf82014-04-10 21:53:53 +00001031 Asm.getContext().renameELFSection(&Section,
1032 (".z" + SectionName.drop_front(1)).str());
Rafael Espindola868b3f42015-04-30 21:51:58 +00001033 OS << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001034}
1035
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001036void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1037 uint64_t Flags, uint64_t Address,
1038 uint64_t Offset, uint64_t Size,
1039 uint32_t Link, uint32_t Info,
1040 uint64_t Alignment,
1041 uint64_t EntrySize) {
Jim Grosbach36e60e92015-06-04 22:24:41 +00001042 write32(Name); // sh_name: index into string table
1043 write32(Type); // sh_type
Matt Fleming6c1ad482010-08-16 18:57:57 +00001044 WriteWord(Flags); // sh_flags
1045 WriteWord(Address); // sh_addr
1046 WriteWord(Offset); // sh_offset
1047 WriteWord(Size); // sh_size
Jim Grosbach36e60e92015-06-04 22:24:41 +00001048 write32(Link); // sh_link
1049 write32(Info); // sh_info
Matt Fleming6c1ad482010-08-16 18:57:57 +00001050 WriteWord(Alignment); // sh_addralign
1051 WriteWord(EntrySize); // sh_entsize
1052}
1053
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001054void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001055 const MCSectionELF &Sec) {
1056 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001057
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001058 // Sort the relocation entries. Most targets just sort by Offset, but some
1059 // (e.g., MIPS) have additional constraints.
1060 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001061
1062 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001063 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001064 unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001065
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001066 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001067 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001068 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001069 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001070
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001071 write(TargetObjectWriter->getRSsym(Entry.Type));
1072 write(TargetObjectWriter->getRType3(Entry.Type));
1073 write(TargetObjectWriter->getRType2(Entry.Type));
1074 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001075 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001076 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001077 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001078 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001079 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001080 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001081 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001082 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001083 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001084
Rafael Espindolabce26a12010-10-05 15:11:03 +00001085 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001086 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001087 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001088
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001089 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001090 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001091 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001092 }
1093}
1094
Rafael Espindolab1863912015-04-30 21:10:06 +00001095const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001096 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
Rafael Espindola88abc392015-04-29 20:34:31 +00001097 OS << StrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001098 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001099}
1100
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001101void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1102 uint32_t GroupSymbolIndex, uint64_t Offset,
1103 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001104 uint64_t sh_link = 0;
1105 uint64_t sh_info = 0;
1106
1107 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001108 default:
1109 // Nothing to do.
1110 break;
1111
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001112 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001113 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001114
1115 case ELF::SHT_REL:
1116 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001117 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001118 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001119 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001120 sh_info = SectionIndexMap.lookup(InfoSection);
1121 break;
1122 }
1123
1124 case ELF::SHT_SYMTAB:
1125 case ELF::SHT_DYNSYM:
1126 sh_link = StringTableIndex;
1127 sh_info = LastLocalSymbolIndex;
1128 break;
1129
1130 case ELF::SHT_SYMTAB_SHNDX:
1131 sh_link = SymbolTableIndex;
1132 break;
1133
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001134 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001135 sh_link = SymbolTableIndex;
1136 sh_info = GroupSymbolIndex;
1137 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001138 }
1139
Logan Chien4b724422013-02-05 14:18:59 +00001140 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001141 Section.getType() == ELF::SHT_ARM_EXIDX)
1142 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001143
Rafael Espindola5960cee2015-05-22 23:58:30 +00001144 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001145 Section.getType(), Section.getFlags(), 0, Offset, Size,
1146 sh_link, sh_info, Section.getAlignment(),
1147 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001148}
1149
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001150void ELFObjectWriter::writeSectionHeader(
Rafael Espindola57c80832015-06-04 20:55:49 +00001151 const MCAsmLayout &Layout, const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001152 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001153 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001154
Matt Fleming6c1ad482010-08-16 18:57:57 +00001155 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001156 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001157 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001158 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001159
Rafael Espindola08850b32015-05-25 21:56:55 +00001160 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001161 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001162 unsigned Type = Section->getType();
1163 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001164 GroupSymbolIndex = 0;
1165 else
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001166 GroupSymbolIndex = Section->getGroup()->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001167
Rafael Espindolabda19802015-04-30 14:21:49 +00001168 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001169 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001170 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001171 if (Type == ELF::SHT_NOBITS)
1172 Size = Layout.getSectionAddressSize(Section);
1173 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001174 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001175
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001176 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001177 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001178 }
1179}
1180
Jim Grosbach36e60e92015-06-04 22:24:41 +00001181void ELFObjectWriter::writeObject(MCAssembler &Asm,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001182 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001183 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001184 MCSectionELF *StrtabSection =
1185 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1186 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001187
Rafael Espindola1557fd62011-03-20 18:44:20 +00001188 RevGroupMapTy RevGroupMap;
1189 SectionIndexMapTy SectionIndexMap;
1190
Rafael Espindolabda19802015-04-30 14:21:49 +00001191 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001192
Rafael Espindola1557fd62011-03-20 18:44:20 +00001193 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001194 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001195
Rafael Espindola7230f802015-04-08 11:41:24 +00001196 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001197 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001198 std::vector<MCSectionELF *> Groups;
1199 std::vector<MCSectionELF *> Relocations;
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001200 for (MCSection &Sec : Asm) {
1201 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindolabda19802015-04-30 14:21:49 +00001202
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001203 align(Section.getAlignment());
Rafael Espindola1557fd62011-03-20 18:44:20 +00001204
Rafael Espindola642a2212015-04-14 22:54:16 +00001205 // Remember the offset into the file for this section.
Rafael Espindolab6417502015-04-28 15:04:09 +00001206 uint64_t SecStart = OS.tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001207
Rafael Espindola0ccf9b72015-06-02 21:30:13 +00001208 const MCSymbolELF *SignatureSymbol = Section.getGroup();
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001209 writeSectionData(Asm, Section, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001210
Rafael Espindolab6417502015-04-28 15:04:09 +00001211 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001212 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1213
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001214 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001215
1216 if (SignatureSymbol) {
Rafael Espindolab5d316b2015-05-29 20:21:02 +00001217 Asm.registerSymbol(*SignatureSymbol);
Rafael Espindolabda19802015-04-30 14:21:49 +00001218 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1219 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001220 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001221 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001222 Group->setAlignment(4);
1223 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001224 }
Rafael Espindola7830fc82015-06-05 17:54:25 +00001225 std::vector<const MCSectionELF *> &Members =
1226 GroupMembers[SignatureSymbol];
1227 Members.push_back(&Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001228 if (RelSection)
Rafael Espindola7830fc82015-06-05 17:54:25 +00001229 Members.push_back(RelSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001230 }
1231
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001232 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001233 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001234 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001235 Relocations.push_back(RelSection);
1236 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001237 }
1238
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001239 for (MCSectionELF *Group : Groups) {
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001240 align(Group->getAlignment());
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001241
1242 // Remember the offset into the file for this section.
1243 uint64_t SecStart = OS.tell();
1244
1245 const MCSymbol *SignatureSymbol = Group->getGroup();
1246 assert(SignatureSymbol);
1247 write(uint32_t(ELF::GRP_COMDAT));
1248 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1249 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1250 write(SecIndex);
1251 }
1252
1253 uint64_t SecEnd = OS.tell();
1254 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1255 }
1256
1257 // Compute symbol table information.
Rafael Espindolaaa486e92015-05-28 17:54:01 +00001258 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001259
1260 for (MCSectionELF *RelSection : Relocations) {
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001261 align(RelSection->getAlignment());
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001262
1263 // Remember the offset into the file for this section.
1264 uint64_t SecStart = OS.tell();
1265
1266 writeRelocations(Asm, *RelSection->getAssociatedSection());
1267
1268 uint64_t SecEnd = OS.tell();
1269 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001270 }
1271
Rafael Espindola88d1f632015-04-29 20:25:24 +00001272 {
1273 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001274 const MCSectionELF *Sec = createStringTable(Ctx);
Rafael Espindola88abc392015-04-29 20:34:31 +00001275 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001276 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001277 }
1278
Rafael Espindola642a2212015-04-14 22:54:16 +00001279 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001280 align(NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001281
Rafael Espindola642a2212015-04-14 22:54:16 +00001282 const unsigned SectionHeaderOffset = OS.tell();
1283
Rafael Espindola1557fd62011-03-20 18:44:20 +00001284 // ... then the section header table ...
Rafael Espindola57c80832015-06-04 20:55:49 +00001285 writeSectionHeader(Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001286
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001287 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001288 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001289 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001290 if (sys::IsLittleEndianHost != IsLittleEndian)
1291 sys::swapByteOrder(NumSections);
1292 unsigned NumSectionsOffset;
1293
Rafael Espindola642a2212015-04-14 22:54:16 +00001294 if (is64Bit()) {
1295 uint64_t Val = SectionHeaderOffset;
1296 if (sys::IsLittleEndianHost != IsLittleEndian)
1297 sys::swapByteOrder(Val);
1298 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1299 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001300 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001301 } else {
1302 uint32_t Val = SectionHeaderOffset;
1303 if (sys::IsLittleEndianHost != IsLittleEndian)
1304 sys::swapByteOrder(Val);
1305 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1306 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001307 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001308 }
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001309 OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
1310 NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001311}
1312
Jim Grosbach36e60e92015-06-04 22:24:41 +00001313bool ELFObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001314 const MCAssembler &Asm, const MCSymbol &SA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001315 bool InSet, bool IsPCRel) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001316 const auto &SymA = cast<MCSymbolELF>(SA);
Rafael Espindola35d61892015-04-17 21:15:17 +00001317 if (IsPCRel) {
1318 assert(!InSet);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001319 if (::isWeak(SymA))
Rafael Espindola35d61892015-04-17 21:15:17 +00001320 return false;
1321 }
Jim Grosbach36e60e92015-06-04 22:24:41 +00001322 return MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001323 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001324}
1325
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001326bool ELFObjectWriter::isWeak(const MCSymbol &S) const {
1327 const auto &Sym = cast<MCSymbolELF>(S);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001328 if (::isWeak(Sym))
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001329 return true;
1330
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001331 // It is invalid to replace a reference to a global in a comdat
1332 // with a reference to a local since out of comdat references
1333 // to a local are forbidden.
1334 // We could try to return false for more cases, like the reference
1335 // being in the same comdat or Sym being an alias to another global,
1336 // but it is not clear if it is worth the effort.
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001337 if (Sym.getBinding() != ELF::STB_GLOBAL)
Rafael Espindola29c82702015-04-20 12:44:06 +00001338 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001339
Rafael Espindola29c82702015-04-20 12:44:06 +00001340 if (!Sym.isInSection())
1341 return false;
1342
1343 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1344 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001345}
1346
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001347MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001348 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001349 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001350 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001351}