blob: d811cfe0ba4d92438c98cd0cddf86c5027022fb3 [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 Espindola29abd972011-12-22 03:38:00 +0000136 public:
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000137 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
Rafael Espindola0ce09712014-03-25 22:43:53 +0000138 bool IsLittleEndian)
Rafael Espindolae2b355d2015-05-28 15:20:00 +0000139 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
Rafael Espindola29abd972011-12-22 03:38:00 +0000140
Yaron Keren7773a722015-03-23 18:35:01 +0000141 void reset() override {
Yaron Keren7773a722015-03-23 18:35:01 +0000142 Renames.clear();
143 Relocations.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000144 StrTabBuilder.clear();
Yaron Kerenf3465e12015-05-13 15:17:19 +0000145 SectionTable.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000146 MCObjectWriter::reset();
147 }
148
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000149 ~ELFObjectWriter() override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000150
151 void WriteWord(uint64_t W) {
152 if (is64Bit())
153 Write64(W);
154 else
155 Write32(W);
156 }
157
Rafael Espindola91fd2772015-04-29 21:09:32 +0000158 template <typename T> void write(T Val) {
159 if (IsLittleEndian)
160 support::endian::Writer<support::little>(OS).write(Val);
161 else
162 support::endian::Writer<support::big>(OS).write(Val);
163 }
164
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000165 void writeHeader(const MCAssembler &Asm);
Rafael Espindola29abd972011-12-22 03:38:00 +0000166
Rafael Espindolae48421f2015-05-28 20:25:29 +0000167 void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
168 ELFSymbolData &MSD, const MCAsmLayout &Layout);
Rafael Espindola29abd972011-12-22 03:38:00 +0000169
Rafael Espindola91fd2772015-04-29 21:09:32 +0000170 // Start and end offset of each section
Rafael Espindolabda19802015-04-30 14:21:49 +0000171 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
172 SectionOffsetsTy;
Rafael Espindola91fd2772015-04-29 21:09:32 +0000173
Rafael Espindolab60c8292014-04-29 12:46:50 +0000174 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
175 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000176 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000177 unsigned Type) const;
178
Rafael Espindola26585542015-01-19 21:11:14 +0000179 void RecordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
Craig Topper34a61bc2014-03-08 07:02:02 +0000180 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000181 MCValue Target, bool &IsPCRel,
182 uint64_t &FixedValue) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000183
Rafael Espindola89feff32015-04-28 22:59:58 +0000184 // Map from a signature symbol to the group section index
185 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
Rafael Espindola29abd972011-12-22 03:38:00 +0000186
Rafael Espindola022bb762014-03-24 03:43:21 +0000187 /// Compute the symbol table data
Rafael Espindola29abd972011-12-22 03:38:00 +0000188 ///
Rafael Espindola073ee7d2012-08-27 16:04:24 +0000189 /// \param Asm - The assembler.
190 /// \param SectionIndexMap - Maps a section to its index.
191 /// \param RevGroupMap - Maps a signature symbol to the group section.
Rafael Espindola022bb762014-03-24 03:43:21 +0000192 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000193 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000194 const RevGroupMapTy &RevGroupMap,
195 SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000196
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000197 MCSectionELF *createRelocationSection(MCContext &Ctx,
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000198 const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000199
Rafael Espindolab1863912015-04-30 21:10:06 +0000200 const MCSectionELF *createStringTable(MCContext &Ctx);
Rafael Espindola29abd972011-12-22 03:38:00 +0000201
Craig Topper34a61bc2014-03-08 07:02:02 +0000202 void ExecutePostLayoutBinding(MCAssembler &Asm,
203 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000204
Rafael Espindola1aa20fc2015-05-21 19:46:39 +0000205 void writeSectionHeader(const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000206 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +0000207 const SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000208
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000209 void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000210 const MCAsmLayout &Layout);
211
Rafael Espindola29abd972011-12-22 03:38:00 +0000212 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000213 uint64_t Address, uint64_t Offset, uint64_t Size,
214 uint32_t Link, uint32_t Info, uint64_t Alignment,
215 uint64_t EntrySize);
Rafael Espindola29abd972011-12-22 03:38:00 +0000216
Rafael Espindola34948e52015-04-30 00:45:46 +0000217 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000218
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000219 bool IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
220 const MCSymbol &SymA,
221 const MCFragment &FB,
222 bool InSet,
223 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000224
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +0000225 bool isWeak(const MCSymbol &Sym) const override;
Rafael Espindolaf275ad82015-03-25 13:16:53 +0000226
Craig Topper34a61bc2014-03-08 07:02:02 +0000227 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindolae92c1bf2015-05-21 19:42:35 +0000228 void writeSection(const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola28687582015-05-21 19:36:43 +0000229 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
Rafael Espindola29abd972011-12-22 03:38:00 +0000230 const MCSectionELF &Section);
231 };
232}
233
Rafael Espindola08850b32015-05-25 21:56:55 +0000234unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000235 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000236 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000237 return SectionTable.size();
238}
239
Rafael Espindola10be0832014-03-25 23:44:25 +0000240void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000241 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000242 return;
243
Rafael Espindola91fd2772015-04-29 21:09:32 +0000244 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000245}
246
Rafael Espindola91fd2772015-04-29 21:09:32 +0000247template <typename T> void SymbolTableWriter::write(T Value) {
248 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000249}
250
Rafael Espindola91fd2772015-04-29 21:09:32 +0000251SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
252 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000253
254void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
255 uint64_t size, uint8_t other,
256 uint32_t shndx, bool Reserved) {
257 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
258
259 if (LargeIndex)
260 createSymtabShndx();
261
Rafael Espindola91fd2772015-04-29 21:09:32 +0000262 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000263 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000264 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000265 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000266 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000267 }
268
269 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
270
Rafael Espindola10be0832014-03-25 23:44:25 +0000271 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000272 write(name); // st_name
273 write(info); // st_info
274 write(other); // st_other
275 write(Index); // st_shndx
276 write(value); // st_value
277 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000278 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000279 write(name); // st_name
280 write(uint32_t(value)); // st_value
281 write(uint32_t(size)); // st_size
282 write(info); // st_info
283 write(other); // st_other
284 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000285 }
286
287 ++NumWritten;
288}
289
Jan Sjödin30a52de2011-02-28 21:45:04 +0000290bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
291 const MCFixupKindInfo &FKI =
292 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
293
294 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
295}
296
Jason W Kim96f4c012010-11-15 16:18:39 +0000297ELFObjectWriter::~ELFObjectWriter()
298{}
299
Matt Fleming6c1ad482010-08-16 18:57:57 +0000300// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000301void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000302 // ELF Header
303 // ----------
304 //
305 // Note
306 // ----
307 // emitWord method behaves differently for ELF32 and ELF64, writing
308 // 4 bytes in the former and 8 in the latter.
309
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000310 WriteBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000311
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000312 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000313
314 // e_ident[EI_DATA]
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000315 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000316
317 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000318 // e_ident[EI_OSABI]
Rafael Espindola1ad40952011-12-21 17:00:36 +0000319 Write8(TargetObjectWriter->getOSABI());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000320 Write8(0); // e_ident[EI_ABIVERSION]
321
322 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
323
324 Write16(ELF::ET_REL); // e_type
325
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000326 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000327
328 Write32(ELF::EV_CURRENT); // e_version
329 WriteWord(0); // e_entry, no entry point in .o file
330 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000331 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000332
Jason W Kim4761fba2011-02-04 21:41:11 +0000333 // e_flags = whatever the target wants
Jack Carter1bd90ff2013-01-30 02:09:52 +0000334 Write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000335
336 // e_ehsize = ELF header size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000337 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000338
339 Write16(0); // e_phentsize = prog header entry size
340 Write16(0); // e_phnum = # prog header entries = 0
341
342 // e_shentsize = Section header entry size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000343 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000344
345 // e_shnum = # of section header ents
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000346 Write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000347
348 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola5960cee2015-05-22 23:58:30 +0000349 assert(StringTableIndex < ELF::SHN_LORESERVE);
350 Write16(StringTableIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000351}
352
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000353uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000354 const MCAsmLayout &Layout) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000355 if (Sym.isCommon() && Sym.isExternal())
Rafael Espindola14672502015-05-29 17:48:04 +0000356 return Sym.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000357
Rafael Espindolafee224f2014-04-30 21:51:13 +0000358 uint64_t Res;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000359 if (!Layout.getSymbolOffset(Sym, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000360 return 0;
361
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000362 if (Layout.getAssembler().isThumbFunc(&Sym))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000363 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000364
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000365 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000366}
367
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000368void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
369 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000370 // The presence of symbol versions causes undefined symbols and
371 // versions declared with @@@ to be renamed.
372
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000373 for (const MCSymbol &A : Asm.symbols()) {
374 const auto &Alias = cast<MCSymbolELF>(A);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000375 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000376 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000377 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000378 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
379 if (!Ref)
380 continue;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000381 const auto &Symbol = cast<MCSymbolELF>(Ref->getSymbol());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000382
Benjamin Kramer14807272010-10-27 19:53:52 +0000383 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000384 size_t Pos = AliasName.find('@');
385 if (Pos == StringRef::npos)
386 continue;
387
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000388 // Aliases defined with .symvar copy the binding from the symbol they alias.
389 // This is the first place we are able to copy this information.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000390 Alias.setExternal(Symbol.isExternal());
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000391 Alias.setBinding(Symbol.getBinding());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000392
Benjamin Kramer14807272010-10-27 19:53:52 +0000393 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000394 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
395 continue;
396
Rafael Espindola26496e62010-10-27 17:56:18 +0000397 // FIXME: produce a better error message.
398 if (Symbol.isUndefined() && Rest.startswith("@@") &&
399 !Rest.startswith("@@@"))
400 report_fatal_error("A @@ version cannot be undefined");
401
Benjamin Kramer14807272010-10-27 19:53:52 +0000402 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000403 }
404}
405
Roman Divacky5a1c5492014-01-07 20:17:03 +0000406static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
407 uint8_t Type = newType;
408
409 // Propagation rules:
410 // IFUNC > FUNC > OBJECT > NOTYPE
411 // TLS_OBJECT > OBJECT > NOTYPE
412 //
413 // dont let the new type degrade the old type
414 switch (origType) {
415 default:
416 break;
417 case ELF::STT_GNU_IFUNC:
418 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
419 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
420 Type = ELF::STT_GNU_IFUNC;
421 break;
422 case ELF::STT_FUNC:
423 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
424 Type == ELF::STT_TLS)
425 Type = ELF::STT_FUNC;
426 break;
427 case ELF::STT_OBJECT:
428 if (Type == ELF::STT_NOTYPE)
429 Type = ELF::STT_OBJECT;
430 break;
431 case ELF::STT_TLS:
432 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
433 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
434 Type = ELF::STT_TLS;
435 break;
436 }
437
438 return Type;
439}
440
Rafael Espindolae48421f2015-05-28 20:25:29 +0000441void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
442 uint32_t StringIndex, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000443 const MCAsmLayout &Layout) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000444 const auto &Symbol = cast<MCSymbolELF>(*MSD.Symbol);
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000445 assert((!Symbol.getFragment() ||
446 (Symbol.getFragment()->getParent() == &Symbol.getSection())) &&
David Blaikieb5956d22014-04-19 00:50:15 +0000447 "The symbol's section doesn't match the fragment's symbol");
Rafael Espindolaa8695762015-06-02 00:25:12 +0000448 const MCSymbolELF *Base =
449 cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol));
Rafael Espindola85a84912014-03-26 00:16:43 +0000450
451 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
452 // SHN_COMMON.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000453 bool IsReserved = !Base || Symbol.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000454
Jack Carter2f8d9d92013-02-19 21:57:35 +0000455 // Binding and Type share the same byte as upper and lower nibbles
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000456 uint8_t Binding = Symbol.getBinding();
457 uint8_t Type = Symbol.getType();
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000458 if (Base) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000459 Type = mergeTypeForSet(Type, Base->getType());
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000460 }
Rafael Espindolaf8794ff2015-06-04 00:47:43 +0000461 uint8_t Info = (Binding << 4) | Type;
Jack Carter2f8d9d92013-02-19 21:57:35 +0000462
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000463 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000464 // 2 bits
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000465 uint8_t Visibility = Symbol.getVisibility();
Rafael Espindolaa86ecee2015-06-04 05:00:12 +0000466 uint8_t Other = Symbol.getOther() << 2;
467 Other |= Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000468
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000469 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000470 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000471
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000472 const MCExpr *ESize = MSD.Symbol->getSize();
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000473 if (!ESize && Base)
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000474 ESize = Base->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000475
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000476 if (ESize) {
477 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000478 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000479 report_fatal_error("Size expression must be absolute.");
480 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000481 }
482
483 // Write out the symbol table entry
Rafael Espindolae48421f2015-05-28 20:25:29 +0000484 Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
485 IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000486}
487
Rafael Espindola5904e122014-03-29 06:26:49 +0000488// It is always valid to create a relocation with a symbol. It is preferable
489// to use a relocation with a section if that is possible. Using the section
490// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000491bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
492 const MCSymbolRefExpr *RefA,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000493 const MCSymbol *S, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000494 unsigned Type) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000495 const auto *Sym = cast_or_null<MCSymbolELF>(S);
Rafael Espindola5904e122014-03-29 06:26:49 +0000496 // A PCRel relocation to an absolute value has no symbol (or section). We
497 // represent that with a relocation to a null section.
498 if (!RefA)
499 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000500
Rafael Espindola5904e122014-03-29 06:26:49 +0000501 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
502 switch (Kind) {
503 default:
504 break;
505 // The .odp creation emits a relocation against the symbol ".TOC." which
506 // create a R_PPC64_TOC relocation. However the relocation symbol name
507 // in final object creation should be NULL, since the symbol does not
508 // really exist, it is just the reference to TOC base for the current
509 // object file. Since the symbol is undefined, returning false results
510 // in a relocation with a null section which is the desired result.
511 case MCSymbolRefExpr::VK_PPC_TOCBASE:
512 return false;
513
514 // These VariantKind cause the relocation to refer to something other than
515 // the symbol itself, like a linker generated table. Since the address of
516 // symbol is not relevant, we cannot replace the symbol with the
517 // section and patch the difference in the addend.
518 case MCSymbolRefExpr::VK_GOT:
519 case MCSymbolRefExpr::VK_PLT:
520 case MCSymbolRefExpr::VK_GOTPCREL:
521 case MCSymbolRefExpr::VK_Mips_GOT:
522 case MCSymbolRefExpr::VK_PPC_GOT_LO:
523 case MCSymbolRefExpr::VK_PPC_GOT_HI:
524 case MCSymbolRefExpr::VK_PPC_GOT_HA:
525 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000526 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000527
Rafael Espindola5904e122014-03-29 06:26:49 +0000528 // An undefined symbol is not in any section, so the relocation has to point
529 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000530 assert(Sym && "Expected a symbol");
531 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000532 return true;
533
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000534 unsigned Binding = Sym->getBinding();
Rafael Espindola5904e122014-03-29 06:26:49 +0000535 switch(Binding) {
536 default:
537 llvm_unreachable("Invalid Binding");
538 case ELF::STB_LOCAL:
539 break;
540 case ELF::STB_WEAK:
541 // If the symbol is weak, it might be overridden by a symbol in another
542 // file. The relocation has to point to the symbol so that the linker
543 // can update it.
544 return true;
545 case ELF::STB_GLOBAL:
546 // Global ELF symbols can be preempted by the dynamic linker. The relocation
547 // has to point to the symbol for a reason analogous to the STB_WEAK case.
548 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000549 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000550
Rafael Espindola5904e122014-03-29 06:26:49 +0000551 // If a relocation points to a mergeable section, we have to be careful.
552 // If the offset is zero, a relocation with the section will encode the
553 // same information. With a non-zero offset, the situation is different.
554 // For example, a relocation can point 42 bytes past the end of a string.
555 // If we change such a relocation to use the section, the linker would think
556 // that it pointed to another string and subtracting 42 at runtime will
557 // produce the wrong value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000558 auto &Sec = cast<MCSectionELF>(Sym->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000559 unsigned Flags = Sec.getFlags();
560 if (Flags & ELF::SHF_MERGE) {
561 if (C != 0)
562 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000563
564 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
565 // only handle section relocations to mergeable sections if using RELA.
566 if (!hasRelocationAddend())
567 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000568 }
569
Rafael Espindola5904e122014-03-29 06:26:49 +0000570 // Most TLS relocations use a got, so they need the symbol. Even those that
Rafael Espindola11527a12014-10-06 12:33:27 +0000571 // are just an offset (@tpoff), require a symbol in gold versions before
572 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
573 // http://sourceware.org/PR16773.
Rafael Espindola5904e122014-03-29 06:26:49 +0000574 if (Flags & ELF::SHF_TLS)
575 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000576
Rafael Espindola9ef84412014-04-11 19:18:01 +0000577 // If the symbol is a thumb function the final relocation must set the lowest
578 // bit. With a symbol that is done by just having the symbol have that bit
579 // set, so we would lose the bit if we relocated with the section.
580 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000581 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000582 return true;
583
Rafael Espindolaece40ca2015-05-29 18:26:09 +0000584 if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000585 return true;
586 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000587}
588
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000589// True if the assembler knows nothing about the final value of the symbol.
590// This doesn't cover the comdat issues, since in those cases the assembler
591// can at least know that all symbols in the section will move together.
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000592static bool isWeak(const MCSymbolELF &Sym) {
593 if (Sym.getType() == ELF::STT_GNU_IFUNC)
Rafael Espindolaa635d832015-04-17 08:46:11 +0000594 return true;
595
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000596 switch (Sym.getBinding()) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000597 default:
598 llvm_unreachable("Unknown binding");
599 case ELF::STB_LOCAL:
600 return false;
601 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000602 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000603 case ELF::STB_WEAK:
604 case ELF::STB_GNU_UNIQUE:
605 return true;
606 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000607}
608
Rafael Espindola26585542015-01-19 21:11:14 +0000609void ELFObjectWriter::RecordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000610 const MCAsmLayout &Layout,
611 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000612 const MCFixup &Fixup, MCValue Target,
613 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola7549f872015-05-26 00:36:57 +0000614 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000615 uint64_t C = Target.getConstant();
616 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000617
Rafael Espindola5904e122014-03-29 06:26:49 +0000618 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
619 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
620 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000621
Rafael Espindola5904e122014-03-29 06:26:49 +0000622 // Let A, B and C being the components of Target and R be the location of
623 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
624 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000625
Rafael Espindola5904e122014-03-29 06:26:49 +0000626 // In general, ELF has no relocations for -B. It can only represent (A + C)
627 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
628 // replace B to implement it: (A - R - K + C)
629 if (IsPCRel)
Jim Grosbach6f482002015-05-18 18:43:14 +0000630 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000631 Fixup.getLoc(),
632 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000633
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000634 const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol());
Jason W Kim495c2bb2010-12-06 21:57:34 +0000635
Rafael Espindola5904e122014-03-29 06:26:49 +0000636 if (SymB.isUndefined())
Jim Grosbach6f482002015-05-18 18:43:14 +0000637 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000638 Fixup.getLoc(),
639 Twine("symbol '") + SymB.getName() +
640 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000641
Rafael Espindola5904e122014-03-29 06:26:49 +0000642 assert(!SymB.isAbsolute() && "Should have been folded");
643 const MCSection &SecB = SymB.getSection();
Rafael Espindola34948e52015-04-30 00:45:46 +0000644 if (&SecB != &FixupSection)
Jim Grosbach6f482002015-05-18 18:43:14 +0000645 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000646 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000647
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000648 if (::isWeak(SymB))
Jim Grosbach6f482002015-05-18 18:43:14 +0000649 Asm.getContext().reportFatalError(
Rafael Espindolac9e70682015-03-24 23:48:44 +0000650 Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
651
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000652 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000653 uint64_t K = SymBOffset - FixupOffset;
654 IsPCRel = true;
655 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000656 }
657
Rafael Espindola5904e122014-03-29 06:26:49 +0000658 // We either rejected the fixup or folded B into C at this point.
659 const MCSymbolRefExpr *RefA = Target.getSymA();
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000660 const auto *SymA = RefA ? cast<MCSymbolELF>(&RefA->getSymbol()) : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000661
Rafael Espindola212fdde2015-06-03 21:52:06 +0000662 bool ViaWeakRef = false;
663 if (SymA && SymA->isVariable()) {
664 const MCExpr *Expr = SymA->getVariableValue();
665 if (const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr)) {
666 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF) {
667 SymA = cast<MCSymbolELF>(&Inner->getSymbol());
668 ViaWeakRef = true;
669 }
670 }
671 }
672
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000673 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000674 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000675 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000676 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000677
678 uint64_t Addend = 0;
679 if (hasRelocationAddend()) {
680 Addend = C;
681 C = 0;
682 }
683
684 FixedValue = C;
685
Rafael Espindola5904e122014-03-29 06:26:49 +0000686 if (!RelocateWithSymbol) {
687 const MCSection *SecA =
688 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000689 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000690 const auto *SectionSymbol =
691 ELFSec ? cast<MCSymbolELF>(ELFSec->getBeginSymbol()) : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000692 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000693 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000694 return;
695 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000696
Rafael Espindola5904e122014-03-29 06:26:49 +0000697 if (SymA) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000698 if (const MCSymbolELF *R = Renames.lookup(SymA))
Rafael Espindola5904e122014-03-29 06:26:49 +0000699 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000700
Rafael Espindola212fdde2015-06-03 21:52:06 +0000701 if (ViaWeakRef)
702 SymA->setIsWeakrefUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000703 else
Rafael Espindolaada43f62015-06-03 21:30:10 +0000704 SymA->setUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000705 }
706 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000707 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000708 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000709}
710
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000711bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000712 const MCSymbolELF &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000713 bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000714 if (Symbol.isVariable()) {
715 const MCExpr *Expr = Symbol.getVariableValue();
716 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
717 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
718 return false;
719 }
720 }
Rafael Espindola16145972010-11-01 14:28:48 +0000721
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000722 if (Used)
723 return true;
724
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000725 if (Renamed)
726 return false;
727
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000728 if (Symbol.isVariable() && Symbol.isUndefined()) {
729 // FIXME: this is here just to diagnose the case of a var = commmon_sym.
730 Layout.getBaseSymbol(Symbol);
731 return false;
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000732 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000733
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000734 if (Symbol.isUndefined() && !Symbol.isBindingSet())
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000735 return false;
736
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000737 if (Symbol.getType() == ELF::STT_SECTION)
Rafael Espindola2f9bdd82015-05-27 20:52:32 +0000738 return true;
739
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000740 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000741 return false;
742
743 return true;
744}
745
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000746void ELFObjectWriter::computeSymbolTable(
747 MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000748 const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
749 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000750 MCContext &Ctx = Asm.getContext();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000751 SymbolTableWriter Writer(*this, is64Bit());
752
Rafael Espindola5960cee2015-05-22 23:58:30 +0000753 // Symbol table
754 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
755 MCSectionELF *SymtabSection =
756 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
757 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
758 SymbolTableIndex = addToSectionTable(SymtabSection);
759
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000760 uint64_t Padding =
761 OffsetToAlignment(OS.tell(), SymtabSection->getAlignment());
762 WriteZeros(Padding);
763
764 uint64_t SecStart = OS.tell();
765
766 // The first entry is the undefined symbol entry.
767 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
768
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000769 std::vector<ELFSymbolData> LocalSymbolData;
770 std::vector<ELFSymbolData> ExternalSymbolData;
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000771
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000772 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000773 bool HasLargeSectionIndex = false;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000774 for (const MCSymbol &S : Asm.symbols()) {
775 const auto &Symbol = cast<MCSymbolELF>(S);
Rafael Espindolaada43f62015-06-03 21:30:10 +0000776 bool Used = Symbol.isUsedInReloc();
Rafael Espindola212fdde2015-06-03 21:52:06 +0000777 bool WeakrefUsed = Symbol.isWeakrefUsedInReloc();
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000778 bool isSignature = Symbol.isSignature();
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000779
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000780 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000781 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000782 continue;
783
Matt Fleming6c1ad482010-08-16 18:57:57 +0000784 ELFSymbolData MSD;
Rafael Espindolaa8695762015-06-02 00:25:12 +0000785 MSD.Symbol = cast<MCSymbolELF>(&Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000786
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000787 bool Local = Symbol.getBinding() == ELF::STB_LOCAL;
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000788 if (Symbol.isAbsolute()) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000789 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola14672502015-05-29 17:48:04 +0000790 } else if (Symbol.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000791 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000792 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000793 } else if (Symbol.isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000794 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000795 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000796 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
797 HasLargeSectionIndex = true;
798 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000799 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000800 }
Matt Fleming6c1ad482010-08-16 18:57:57 +0000801 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000802 const MCSectionELF &Section =
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000803 static_cast<const MCSectionELF &>(Symbol.getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000804 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000805 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000806 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
807 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000808 }
809
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000810 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
811 // in defined ones.
812 //
813 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000814 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000815 // trivial.
816 //
817 // We thus have to be careful to not perform the symbol version replacement
818 // blindly:
819 //
820 // The ELF format is used on Windows by the MCJIT engine. Thus, on
821 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
822 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
823 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
824 // the EFLObjectWriter should not interpret the "@@@" sub-string as
825 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
826 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
827 // "__imp_?" or "__imp_@?".
828 //
829 // It would have been interesting to perform the MS mangling prefix check
830 // only when the target triple is of the form *-pc-windows-elf. But, it
831 // seems that this information is not easily accessible from the
832 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000833 StringRef Name = Symbol.getName();
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000834 if (!Name.startswith("?") && !Name.startswith("@?") &&
835 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
836 // This symbol isn't following the MSVC C++ name mangling convention. We
837 // can thus safely interpret the @@@ in symbol names as specifying symbol
838 // versioning.
839 SmallString<32> Buf;
840 size_t Pos = Name.find("@@@");
841 if (Pos != StringRef::npos) {
842 Buf += Name.substr(0, Pos);
843 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
844 Buf += Name.substr(Pos + Skip);
845 Name = Buf;
846 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000847 }
Rafael Espindolab6613022014-10-17 01:48:58 +0000848
849 // Sections have their own string table
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000850 if (Symbol.getType() != ELF::STT_SECTION)
Rafael Espindolab6613022014-10-17 01:48:58 +0000851 MSD.Name = StrTabBuilder.add(Name);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000852
Rafael Espindola10d23872015-05-29 14:20:40 +0000853 if (Local)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000854 LocalSymbolData.push_back(MSD);
855 else
856 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000857 }
858
Rafael Espindola5960cee2015-05-22 23:58:30 +0000859 if (HasLargeSectionIndex) {
860 MCSectionELF *SymtabShndxSection =
861 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
862 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
863 SymtabShndxSection->setAlignment(4);
864 }
865
Rafael Espindola1fd36272015-05-28 19:29:15 +0000866 ArrayRef<std::string> FileNames = Asm.getFileNames();
867 for (const std::string &Name : FileNames)
Rafael Espindola66f3c9c2015-05-28 18:03:20 +0000868 StrTabBuilder.add(Name);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000869
Hans Wennborgf26bfc12014-09-29 22:43:20 +0000870 StrTabBuilder.finalize(StringTableBuilder::ELF);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000871
Rafael Espindola0cbea292015-05-28 20:00:13 +0000872 for (const std::string &Name : FileNames)
873 Writer.writeSymbol(StrTabBuilder.getOffset(Name),
874 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
875 ELF::SHN_ABS, true);
876
Matt Fleming6c1ad482010-08-16 18:57:57 +0000877 // Symbols are required to be in lexicographic order.
878 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
879 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000880
881 // Set the symbol indices. Local symbols must come before all other
882 // symbols with non-local bindings.
Rafael Espindola1fd36272015-05-28 19:29:15 +0000883 unsigned Index = FileNames.size() + 1;
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000884
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000885 for (ELFSymbolData &MSD : LocalSymbolData) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000886 unsigned StringIndex = MSD.Symbol->getType() == ELF::STT_SECTION
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000887 ? 0
888 : StrTabBuilder.getOffset(MSD.Name);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000889 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000890 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000891 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000892
893 // Write the symbol table entries.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000894 LastLocalSymbolIndex = Index;
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000895
Rafael Espindoladcda9972015-05-28 19:43:20 +0000896 for (ELFSymbolData &MSD : ExternalSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000897 unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
Rafael Espindola0cbea292015-05-28 20:00:13 +0000898 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000899 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000900 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000901 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000902
903 uint64_t SecEnd = OS.tell();
904 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
905
906 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
907 if (ShndxIndexes.empty()) {
908 assert(SymtabShndxSectionIndex == 0);
909 return;
910 }
911 assert(SymtabShndxSectionIndex != 0);
912
913 SecStart = OS.tell();
914 const MCSectionELF *SymtabShndxSection =
915 SectionTable[SymtabShndxSectionIndex - 1];
916 for (uint32_t Index : ShndxIndexes)
917 write(Index);
918 SecEnd = OS.tell();
919 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000920}
921
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000922MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000923ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +0000924 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000925 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +0000926 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000927
Rafael Espindola34948e52015-04-30 00:45:46 +0000928 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +0000929 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
930 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +0000931
Rafael Espindolaead85492015-02-17 20:31:13 +0000932 unsigned EntrySize;
933 if (hasRelocationAddend())
934 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
935 else
936 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000937
Rafael Espindolaead85492015-02-17 20:31:13 +0000938 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +0000939 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +0000940 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +0000941
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000942 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +0000943 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +0000944 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000945 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +0000946 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000947}
Matt Fleming6c1ad482010-08-16 18:57:57 +0000948
David Blaikiee06e8012014-04-11 22:11:50 +0000949static SmallVector<char, 128>
Rafael Espindolaae7e4992015-04-29 19:20:10 +0000950getUncompressedData(const MCAsmLayout &Layout,
Rafael Espindolaa32d0e92015-05-27 15:14:11 +0000951 const MCSection::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +0000952 SmallVector<char, 128> UncompressedData;
953 for (const MCFragment &F : Fragments) {
954 const SmallVectorImpl<char> *Contents;
955 switch (F.getKind()) {
956 case MCFragment::FT_Data:
957 Contents = &cast<MCDataFragment>(F).getContents();
958 break;
959 case MCFragment::FT_Dwarf:
960 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
961 break;
962 case MCFragment::FT_DwarfFrame:
963 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
964 break;
965 default:
966 llvm_unreachable(
967 "Not expecting any other fragment types in a debug_* section");
968 }
969 UncompressedData.append(Contents->begin(), Contents->end());
970 }
971 return UncompressedData;
972}
973
974// Include the debug info compression header:
975// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
976// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +0000977static bool
David Blaikiee06e8012014-04-11 22:11:50 +0000978prependCompressionHeader(uint64_t Size,
979 SmallVectorImpl<char> &CompressedContents) {
Benjamin Kramer7149aab2015-03-01 18:09:56 +0000980 const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +0000981 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
982 return false;
David Blaikie8019bf82014-04-10 21:53:53 +0000983 if (sys::IsLittleEndianHost)
Artyom Skrobov9aea8432014-06-14 13:18:07 +0000984 sys::swapByteOrder(Size);
David Blaikie8019bf82014-04-10 21:53:53 +0000985 CompressedContents.insert(CompressedContents.begin(),
986 Magic.size() + sizeof(Size), 0);
987 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
988 std::copy(reinterpret_cast<char *>(&Size),
989 reinterpret_cast<char *>(&Size + 1),
990 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +0000991 return true;
David Blaikie8019bf82014-04-10 21:53:53 +0000992}
993
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000994void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000995 const MCAsmLayout &Layout) {
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000996 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindola868b3f42015-04-30 21:51:58 +0000997 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +0000998
Rafael Espindola868b3f42015-04-30 21:51:58 +0000999 // Compressing debug_frame requires handling alignment fragments which is
1000 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1001 // for writing to arbitrary buffers) for little benefit.
1002 if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
1003 !SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001004 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001005 return;
1006 }
1007
1008 // Gather the uncompressed data from all the fragments.
Rafael Espindolaa32d0e92015-05-27 15:14:11 +00001009 const MCSection::FragmentListType &Fragments = Section.getFragmentList();
David Blaikie8019bf82014-04-10 21:53:53 +00001010 SmallVector<char, 128> UncompressedData =
1011 getUncompressedData(Layout, Fragments);
1012
Rafael Espindola868b3f42015-04-30 21:51:58 +00001013 SmallVector<char, 128> CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001014 zlib::Status Success = zlib::compress(
1015 StringRef(UncompressedData.data(), UncompressedData.size()),
1016 CompressedContents);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001017 if (Success != zlib::StatusOK) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001018 Asm.writeSectionData(&Section, Layout);
David Blaikie8019bf82014-04-10 21:53:53 +00001019 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001020 }
David Blaikie8019bf82014-04-10 21:53:53 +00001021
Rafael Espindola868b3f42015-04-30 21:51:58 +00001022 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001023 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001024 return;
1025 }
David Blaikie8019bf82014-04-10 21:53:53 +00001026 Asm.getContext().renameELFSection(&Section,
1027 (".z" + SectionName.drop_front(1)).str());
Rafael Espindola868b3f42015-04-30 21:51:58 +00001028 OS << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001029}
1030
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001031void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1032 uint64_t Flags, uint64_t Address,
1033 uint64_t Offset, uint64_t Size,
1034 uint32_t Link, uint32_t Info,
1035 uint64_t Alignment,
1036 uint64_t EntrySize) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001037 Write32(Name); // sh_name: index into string table
1038 Write32(Type); // sh_type
1039 WriteWord(Flags); // sh_flags
1040 WriteWord(Address); // sh_addr
1041 WriteWord(Offset); // sh_offset
1042 WriteWord(Size); // sh_size
1043 Write32(Link); // sh_link
1044 Write32(Info); // sh_info
1045 WriteWord(Alignment); // sh_addralign
1046 WriteWord(EntrySize); // sh_entsize
1047}
1048
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001049void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001050 const MCSectionELF &Sec) {
1051 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001052
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001053 // Sort the relocation entries. Most targets just sort by Offset, but some
1054 // (e.g., MIPS) have additional constraints.
1055 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001056
1057 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001058 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001059 unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001060
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001061 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001062 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001063 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001064 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001065
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001066 write(TargetObjectWriter->getRSsym(Entry.Type));
1067 write(TargetObjectWriter->getRType3(Entry.Type));
1068 write(TargetObjectWriter->getRType2(Entry.Type));
1069 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001070 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001071 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001072 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001073 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001074 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001075 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001076 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001077 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001078 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001079
Rafael Espindolabce26a12010-10-05 15:11:03 +00001080 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001081 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001082 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001083
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001084 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001085 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001086 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001087 }
1088}
1089
Rafael Espindolab1863912015-04-30 21:10:06 +00001090const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001091 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
Rafael Espindola88abc392015-04-29 20:34:31 +00001092 OS << StrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001093 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001094}
1095
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001096void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1097 uint32_t GroupSymbolIndex, uint64_t Offset,
1098 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001099 uint64_t sh_link = 0;
1100 uint64_t sh_info = 0;
1101
1102 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001103 default:
1104 // Nothing to do.
1105 break;
1106
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001107 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001108 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001109
1110 case ELF::SHT_REL:
1111 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001112 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001113 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001114 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001115 sh_info = SectionIndexMap.lookup(InfoSection);
1116 break;
1117 }
1118
1119 case ELF::SHT_SYMTAB:
1120 case ELF::SHT_DYNSYM:
1121 sh_link = StringTableIndex;
1122 sh_info = LastLocalSymbolIndex;
1123 break;
1124
1125 case ELF::SHT_SYMTAB_SHNDX:
1126 sh_link = SymbolTableIndex;
1127 break;
1128
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001129 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001130 sh_link = SymbolTableIndex;
1131 sh_info = GroupSymbolIndex;
1132 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001133 }
1134
Logan Chien4b724422013-02-05 14:18:59 +00001135 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001136 Section.getType() == ELF::SHT_ARM_EXIDX)
1137 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001138
Rafael Espindola5960cee2015-05-22 23:58:30 +00001139 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001140 Section.getType(), Section.getFlags(), 0, Offset, Size,
1141 sh_link, sh_info, Section.getAlignment(),
1142 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001143}
1144
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001145void ELFObjectWriter::writeSectionHeader(
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001146 const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001147 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001148 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001149 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001150
Matt Fleming6c1ad482010-08-16 18:57:57 +00001151 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001152 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001153 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001154 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001155
Rafael Espindola08850b32015-05-25 21:56:55 +00001156 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001157 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001158 unsigned Type = Section->getType();
1159 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001160 GroupSymbolIndex = 0;
1161 else
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001162 GroupSymbolIndex = Section->getGroup()->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001163
Rafael Espindolabda19802015-04-30 14:21:49 +00001164 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001165 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001166 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001167 if (Type == ELF::SHT_NOBITS)
1168 Size = Layout.getSectionAddressSize(Section);
1169 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001170 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001171
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001172 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001173 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001174 }
1175}
1176
Rafael Espindola1557fd62011-03-20 18:44:20 +00001177void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1178 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001179 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001180 MCSectionELF *StrtabSection =
1181 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1182 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001183
Rafael Espindola1557fd62011-03-20 18:44:20 +00001184 RevGroupMapTy RevGroupMap;
1185 SectionIndexMapTy SectionIndexMap;
1186
Rafael Espindolabda19802015-04-30 14:21:49 +00001187 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001188
Rafael Espindola1557fd62011-03-20 18:44:20 +00001189 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001190 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001191
Rafael Espindola7230f802015-04-08 11:41:24 +00001192 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001193 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001194 std::vector<MCSectionELF *> Groups;
1195 std::vector<MCSectionELF *> Relocations;
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001196 for (MCSection &Sec : Asm) {
1197 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindolabda19802015-04-30 14:21:49 +00001198
Rafael Espindola967d6a62015-05-21 21:02:35 +00001199 uint64_t Padding = OffsetToAlignment(OS.tell(), Section.getAlignment());
Rafael Espindola642a2212015-04-14 22:54:16 +00001200 WriteZeros(Padding);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001201
Rafael Espindola642a2212015-04-14 22:54:16 +00001202 // Remember the offset into the file for this section.
Rafael Espindolab6417502015-04-28 15:04:09 +00001203 uint64_t SecStart = OS.tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001204
Rafael Espindola0ccf9b72015-06-02 21:30:13 +00001205 const MCSymbolELF *SignatureSymbol = Section.getGroup();
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001206 writeSectionData(Asm, Section, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001207
Rafael Espindolab6417502015-04-28 15:04:09 +00001208 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001209 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1210
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001211 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001212
1213 if (SignatureSymbol) {
Rafael Espindolab5d316b2015-05-29 20:21:02 +00001214 Asm.registerSymbol(*SignatureSymbol);
Rafael Espindolabda19802015-04-30 14:21:49 +00001215 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1216 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001217 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001218 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001219 Group->setAlignment(4);
1220 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001221 }
1222 GroupMembers[SignatureSymbol].push_back(&Section);
1223 if (RelSection)
1224 GroupMembers[SignatureSymbol].push_back(RelSection);
1225 }
1226
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001227 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001228 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001229 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001230 Relocations.push_back(RelSection);
1231 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001232 }
1233
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001234 for (MCSectionELF *Group : Groups) {
1235 uint64_t Padding = OffsetToAlignment(OS.tell(), Group->getAlignment());
1236 WriteZeros(Padding);
1237
1238 // Remember the offset into the file for this section.
1239 uint64_t SecStart = OS.tell();
1240
1241 const MCSymbol *SignatureSymbol = Group->getGroup();
1242 assert(SignatureSymbol);
1243 write(uint32_t(ELF::GRP_COMDAT));
1244 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1245 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1246 write(SecIndex);
1247 }
1248
1249 uint64_t SecEnd = OS.tell();
1250 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1251 }
1252
1253 // Compute symbol table information.
Rafael Espindolaaa486e92015-05-28 17:54:01 +00001254 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001255
1256 for (MCSectionELF *RelSection : Relocations) {
1257 uint64_t Padding = OffsetToAlignment(OS.tell(), RelSection->getAlignment());
1258 WriteZeros(Padding);
1259
1260 // Remember the offset into the file for this section.
1261 uint64_t SecStart = OS.tell();
1262
1263 writeRelocations(Asm, *RelSection->getAssociatedSection());
1264
1265 uint64_t SecEnd = OS.tell();
1266 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001267 }
1268
Rafael Espindola88d1f632015-04-29 20:25:24 +00001269 {
1270 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001271 const MCSectionELF *Sec = createStringTable(Ctx);
Rafael Espindola88abc392015-04-29 20:34:31 +00001272 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001273 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001274 }
1275
Rafael Espindola642a2212015-04-14 22:54:16 +00001276 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001277 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001278 WriteZeros(Padding);
1279
Rafael Espindola642a2212015-04-14 22:54:16 +00001280 const unsigned SectionHeaderOffset = OS.tell();
1281
Rafael Espindola1557fd62011-03-20 18:44:20 +00001282 // ... then the section header table ...
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001283 writeSectionHeader(Asm, Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001284
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001285 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001286 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001287 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001288 if (sys::IsLittleEndianHost != IsLittleEndian)
1289 sys::swapByteOrder(NumSections);
1290 unsigned NumSectionsOffset;
1291
Rafael Espindola642a2212015-04-14 22:54:16 +00001292 if (is64Bit()) {
1293 uint64_t Val = SectionHeaderOffset;
1294 if (sys::IsLittleEndianHost != IsLittleEndian)
1295 sys::swapByteOrder(Val);
1296 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1297 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001298 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001299 } else {
1300 uint32_t Val = SectionHeaderOffset;
1301 if (sys::IsLittleEndianHost != IsLittleEndian)
1302 sys::swapByteOrder(Val);
1303 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1304 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001305 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001306 }
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001307 OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
1308 NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001309}
1310
Rafael Espindola94a88d72015-04-06 15:27:57 +00001311bool ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001312 const MCAssembler &Asm, const MCSymbol &SA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001313 bool InSet, bool IsPCRel) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001314 const auto &SymA = cast<MCSymbolELF>(SA);
Rafael Espindola35d61892015-04-17 21:15:17 +00001315 if (IsPCRel) {
1316 assert(!InSet);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001317 if (::isWeak(SymA))
Rafael Espindola35d61892015-04-17 21:15:17 +00001318 return false;
1319 }
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001320 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001321 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001322}
1323
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001324bool ELFObjectWriter::isWeak(const MCSymbol &S) const {
1325 const auto &Sym = cast<MCSymbolELF>(S);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001326 if (::isWeak(Sym))
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001327 return true;
1328
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001329 // It is invalid to replace a reference to a global in a comdat
1330 // with a reference to a local since out of comdat references
1331 // to a local are forbidden.
1332 // We could try to return false for more cases, like the reference
1333 // being in the same comdat or Sym being an alias to another global,
1334 // but it is not clear if it is worth the effort.
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001335 if (Sym.getBinding() != ELF::STB_GLOBAL)
Rafael Espindola29c82702015-04-20 12:44:06 +00001336 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001337
Rafael Espindola29c82702015-04-20 12:44:06 +00001338 if (!Sym.isInSection())
1339 return false;
1340
1341 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1342 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001343}
1344
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001345MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001346 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001347 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001348 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001349}