blob: 39efaf16cf16589526693d57b104b5ba1bc080b0 [file] [log] [blame]
Nick Lewycky4288f9e2013-03-09 09:32:16 +00001//===- lib/MC/ELFObjectWriter.cpp - ELF File Writer -----------------------===//
Matt Fleming6c1ad482010-08-16 18:57:57 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements ELF object file writer information.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruthed0881b2012-12-03 16:50:05 +000014#include "llvm/MC/MCELFObjectWriter.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/STLExtras.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000016#include "llvm/ADT/SmallPtrSet.h"
17#include "llvm/ADT/SmallString.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000018#include "llvm/ADT/StringMap.h"
Evan Cheng5928e692011-07-25 23:24:55 +000019#include "llvm/MC/MCAsmBackend.h"
David Blaikie8019bf82014-04-10 21:53:53 +000020#include "llvm/MC/MCAsmInfo.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000021#include "llvm/MC/MCAsmLayout.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000022#include "llvm/MC/MCAssembler.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000023#include "llvm/MC/MCContext.h"
Tim Northover5cc3dc82012-12-07 16:50:23 +000024#include "llvm/MC/MCELF.h"
Rafael Espindola29abd972011-12-22 03:38:00 +000025#include "llvm/MC/MCELFSymbolFlags.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000026#include "llvm/MC/MCExpr.h"
Craig Topper6e80c282012-03-26 06:58:25 +000027#include "llvm/MC/MCFixupKindInfo.h"
28#include "llvm/MC/MCObjectWriter.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000029#include "llvm/MC/MCSectionELF.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000030#include "llvm/MC/MCValue.h"
Rafael Espindola97de4742014-07-03 02:01:39 +000031#include "llvm/MC/StringTableBuilder.h"
David Blaikie8019bf82014-04-10 21:53:53 +000032#include "llvm/Support/Compression.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000033#include "llvm/Support/Debug.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000034#include "llvm/Support/ELF.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000035#include "llvm/Support/Endian.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/Support/ErrorHandling.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000037#include <vector>
38using namespace llvm;
39
Jason W Kimc09e7262011-05-11 22:53:06 +000040#undef DEBUG_TYPE
41#define DEBUG_TYPE "reloc-info"
42
Rafael Espindola29abd972011-12-22 03:38:00 +000043namespace {
Rafael Espindola0ce09712014-03-25 22:43:53 +000044
Rafael Espindola10be0832014-03-25 23:44:25 +000045typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy;
46
Rafael Espindola91fd2772015-04-29 21:09:32 +000047class ELFObjectWriter;
48
Rafael Espindola10be0832014-03-25 23:44:25 +000049class SymbolTableWriter {
Rafael Espindola91fd2772015-04-29 21:09:32 +000050 ELFObjectWriter &EWriter;
Rafael Espindola10be0832014-03-25 23:44:25 +000051 bool Is64Bit;
Rafael Espindola10be0832014-03-25 23:44:25 +000052
Rafael Espindola91fd2772015-04-29 21:09:32 +000053 // indexes we are going to write to .symtab_shndx.
54 std::vector<uint32_t> ShndxIndexes;
Rafael Espindola10be0832014-03-25 23:44:25 +000055
56 // The numbel of symbols written so far.
57 unsigned NumWritten;
58
59 void createSymtabShndx();
60
Rafael Espindola91fd2772015-04-29 21:09:32 +000061 template <typename T> void write(T Value);
Rafael Espindola10be0832014-03-25 23:44:25 +000062
63public:
Rafael Espindola91fd2772015-04-29 21:09:32 +000064 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
Rafael Espindola10be0832014-03-25 23:44:25 +000065
66 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
67 uint8_t other, uint32_t shndx, bool Reserved);
Rafael Espindola91fd2772015-04-29 21:09:32 +000068
69 ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; }
Rafael Espindola10be0832014-03-25 23:44:25 +000070};
71
Rafael Espindola29abd972011-12-22 03:38:00 +000072class ELFObjectWriter : public MCObjectWriter {
Rafael Espindola29abd972011-12-22 03:38:00 +000073 static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000074 static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout);
75 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbol &Symbol,
Rafael Espindola29abd972011-12-22 03:38:00 +000076 bool Used, bool Renamed);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000077 static bool isLocal(const MCSymbol &Symbol, bool isUsedInReloc);
Rafael Espindola29abd972011-12-22 03:38:00 +000078
Rafael Espindola6cd21802015-04-07 22:35:40 +000079 /// Helper struct for containing some precomputed information on symbols.
Rafael Espindola29abd972011-12-22 03:38:00 +000080 struct ELFSymbolData {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000081 const MCSymbol *Symbol;
Rafael Espindola29abd972011-12-22 03:38:00 +000082 uint32_t SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000083 StringRef Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000084
85 // Support lexicographic sorting.
86 bool operator<(const ELFSymbolData &RHS) const {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000087 unsigned LHSType = MCELF::GetType(Symbol->getData());
88 unsigned RHSType = MCELF::GetType(RHS.Symbol->getData());
Rafael Espindolab6613022014-10-17 01:48:58 +000089 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
90 return false;
91 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
92 return true;
93 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
94 return SectionIndex < RHS.SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000095 return Name < RHS.Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000096 }
97 };
98
Rafael Espindola29abd972011-12-22 03:38:00 +000099 /// The target specific ELF writer instance.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000100 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
Rafael Espindola29abd972011-12-22 03:38:00 +0000101
102 SmallPtrSet<const MCSymbol *, 16> UsedInReloc;
103 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc;
104 DenseMap<const MCSymbol *, const MCSymbol *> Renames;
105
Rafael Espindola34948e52015-04-30 00:45:46 +0000106 llvm::DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>>
107 Relocations;
Rafael Espindola29abd972011-12-22 03:38:00 +0000108
109 /// @}
110 /// @name Symbol Table Data
111 /// @{
112
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000113 StringTableBuilder StrTabBuilder;
Rafael Espindola29abd972011-12-22 03:38:00 +0000114
115 /// @}
116
Rafael Espindola29abd972011-12-22 03:38:00 +0000117 // This holds the symbol table index of the last local symbol.
118 unsigned LastLocalSymbolIndex;
119 // This holds the .strtab section index.
120 unsigned StringTableIndex;
121 // This holds the .symtab section index.
122 unsigned SymbolTableIndex;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000123 // This holds the .symtab_shndx section index.
124 unsigned SymtabShndxSectionIndex = 0;
Rafael Espindola29abd972011-12-22 03:38:00 +0000125
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000126 // Sections in the order they are to be output in the section table.
Rafael Espindola08850b32015-05-25 21:56:55 +0000127 std::vector<const MCSectionELF *> SectionTable;
128 unsigned addToSectionTable(const MCSectionELF *Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000129
Rafael Espindola29abd972011-12-22 03:38:00 +0000130 // TargetObjectWriter wrappers.
Rafael Espindola29abd972011-12-22 03:38:00 +0000131 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
132 bool hasRelocationAddend() const {
133 return TargetObjectWriter->hasRelocationAddend();
134 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000135 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000136 bool IsPCRel) const {
137 return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindola29abd972011-12-22 03:38:00 +0000138 }
139
Rafael Espindola29abd972011-12-22 03:38:00 +0000140 public:
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000141 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
Rafael Espindola0ce09712014-03-25 22:43:53 +0000142 bool IsLittleEndian)
Rafael Espindolae2b355d2015-05-28 15:20:00 +0000143 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
Rafael Espindola29abd972011-12-22 03:38:00 +0000144
Yaron Keren7773a722015-03-23 18:35:01 +0000145 void reset() override {
146 UsedInReloc.clear();
147 WeakrefUsedInReloc.clear();
148 Renames.clear();
149 Relocations.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000150 StrTabBuilder.clear();
Yaron Kerenf3465e12015-05-13 15:17:19 +0000151 SectionTable.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000152 MCObjectWriter::reset();
153 }
154
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000155 ~ELFObjectWriter() override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000156
157 void WriteWord(uint64_t W) {
158 if (is64Bit())
159 Write64(W);
160 else
161 Write32(W);
162 }
163
Rafael Espindola91fd2772015-04-29 21:09:32 +0000164 template <typename T> void write(T Val) {
165 if (IsLittleEndian)
166 support::endian::Writer<support::little>(OS).write(Val);
167 else
168 support::endian::Writer<support::big>(OS).write(Val);
169 }
170
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000171 void writeHeader(const MCAssembler &Asm);
Rafael Espindola29abd972011-12-22 03:38:00 +0000172
Rafael Espindolae48421f2015-05-28 20:25:29 +0000173 void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
174 ELFSymbolData &MSD, const MCAsmLayout &Layout);
Rafael Espindola29abd972011-12-22 03:38:00 +0000175
Rafael Espindola91fd2772015-04-29 21:09:32 +0000176 // Start and end offset of each section
Rafael Espindolabda19802015-04-30 14:21:49 +0000177 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
178 SectionOffsetsTy;
Rafael Espindola91fd2772015-04-29 21:09:32 +0000179
Rafael Espindolab60c8292014-04-29 12:46:50 +0000180 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
181 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000182 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000183 unsigned Type) const;
184
Rafael Espindola26585542015-01-19 21:11:14 +0000185 void RecordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
Craig Topper34a61bc2014-03-08 07:02:02 +0000186 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000187 MCValue Target, bool &IsPCRel,
188 uint64_t &FixedValue) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000189
Rafael Espindola89feff32015-04-28 22:59:58 +0000190 // Map from a signature symbol to the group section index
191 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
Rafael Espindola29abd972011-12-22 03:38:00 +0000192
Rafael Espindola022bb762014-03-24 03:43:21 +0000193 /// Compute the symbol table data
Rafael Espindola29abd972011-12-22 03:38:00 +0000194 ///
Rafael Espindola073ee7d2012-08-27 16:04:24 +0000195 /// \param Asm - The assembler.
196 /// \param SectionIndexMap - Maps a section to its index.
197 /// \param RevGroupMap - Maps a signature symbol to the group section.
Rafael Espindola022bb762014-03-24 03:43:21 +0000198 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000199 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000200 const RevGroupMapTy &RevGroupMap,
201 SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000202
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000203 MCSectionELF *createRelocationSection(MCContext &Ctx,
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000204 const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000205
Rafael Espindolab1863912015-04-30 21:10:06 +0000206 const MCSectionELF *createStringTable(MCContext &Ctx);
Rafael Espindola29abd972011-12-22 03:38:00 +0000207
Craig Topper34a61bc2014-03-08 07:02:02 +0000208 void ExecutePostLayoutBinding(MCAssembler &Asm,
209 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000210
Rafael Espindola1aa20fc2015-05-21 19:46:39 +0000211 void writeSectionHeader(const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000212 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +0000213 const SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000214
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000215 void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000216 const MCAsmLayout &Layout);
217
Rafael Espindola29abd972011-12-22 03:38:00 +0000218 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000219 uint64_t Address, uint64_t Offset, uint64_t Size,
220 uint32_t Link, uint32_t Info, uint64_t Alignment,
221 uint64_t EntrySize);
Rafael Espindola29abd972011-12-22 03:38:00 +0000222
Rafael Espindola34948e52015-04-30 00:45:46 +0000223 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000224
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000225 bool IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
226 const MCSymbol &SymA,
227 const MCFragment &FB,
228 bool InSet,
229 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000230
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +0000231 bool isWeak(const MCSymbol &Sym) const override;
Rafael Espindolaf275ad82015-03-25 13:16:53 +0000232
Craig Topper34a61bc2014-03-08 07:02:02 +0000233 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindolae92c1bf2015-05-21 19:42:35 +0000234 void writeSection(const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola28687582015-05-21 19:36:43 +0000235 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
Rafael Espindola29abd972011-12-22 03:38:00 +0000236 const MCSectionELF &Section);
237 };
238}
239
Rafael Espindola08850b32015-05-25 21:56:55 +0000240unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000241 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000242 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000243 return SectionTable.size();
244}
245
Rafael Espindola10be0832014-03-25 23:44:25 +0000246void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000247 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000248 return;
249
Rafael Espindola91fd2772015-04-29 21:09:32 +0000250 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000251}
252
Rafael Espindola91fd2772015-04-29 21:09:32 +0000253template <typename T> void SymbolTableWriter::write(T Value) {
254 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000255}
256
Rafael Espindola91fd2772015-04-29 21:09:32 +0000257SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
258 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000259
260void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
261 uint64_t size, uint8_t other,
262 uint32_t shndx, bool Reserved) {
263 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
264
265 if (LargeIndex)
266 createSymtabShndx();
267
Rafael Espindola91fd2772015-04-29 21:09:32 +0000268 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000269 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000270 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000271 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000272 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000273 }
274
275 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
276
Rafael Espindola10be0832014-03-25 23:44:25 +0000277 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000278 write(name); // st_name
279 write(info); // st_info
280 write(other); // st_other
281 write(Index); // st_shndx
282 write(value); // st_value
283 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000284 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000285 write(name); // st_name
286 write(uint32_t(value)); // st_value
287 write(uint32_t(size)); // st_size
288 write(info); // st_info
289 write(other); // st_other
290 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000291 }
292
293 ++NumWritten;
294}
295
Jan Sjödin30a52de2011-02-28 21:45:04 +0000296bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
297 const MCFixupKindInfo &FKI =
298 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
299
300 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
301}
302
Jason W Kim96f4c012010-11-15 16:18:39 +0000303ELFObjectWriter::~ELFObjectWriter()
304{}
305
Matt Fleming6c1ad482010-08-16 18:57:57 +0000306// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000307void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000308 // ELF Header
309 // ----------
310 //
311 // Note
312 // ----
313 // emitWord method behaves differently for ELF32 and ELF64, writing
314 // 4 bytes in the former and 8 in the latter.
315
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000316 WriteBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000317
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000318 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000319
320 // e_ident[EI_DATA]
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000321 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000322
323 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000324 // e_ident[EI_OSABI]
Rafael Espindola1ad40952011-12-21 17:00:36 +0000325 Write8(TargetObjectWriter->getOSABI());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000326 Write8(0); // e_ident[EI_ABIVERSION]
327
328 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
329
330 Write16(ELF::ET_REL); // e_type
331
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000332 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000333
334 Write32(ELF::EV_CURRENT); // e_version
335 WriteWord(0); // e_entry, no entry point in .o file
336 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000337 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000338
Jason W Kim4761fba2011-02-04 21:41:11 +0000339 // e_flags = whatever the target wants
Jack Carter1bd90ff2013-01-30 02:09:52 +0000340 Write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000341
342 // e_ehsize = ELF header size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000343 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000344
345 Write16(0); // e_phentsize = prog header entry size
346 Write16(0); // e_phnum = # prog header entries = 0
347
348 // e_shentsize = Section header entry size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000349 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000350
351 // e_shnum = # of section header ents
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000352 Write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000353
354 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola5960cee2015-05-22 23:58:30 +0000355 assert(StringTableIndex < ELF::SHN_LORESERVE);
356 Write16(StringTableIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000357}
358
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000359uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000360 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000361 MCSymbolData &Data = Sym.getData();
Rafael Espindolafee224f2014-04-30 21:51:13 +0000362 if (Data.isCommon() && Data.isExternal())
363 return Data.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
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000375void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
376 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
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000380 for (const MCSymbol &Alias : Asm.symbols()) {
381 MCSymbolData &OriginalData = Alias.getData();
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000382
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000383 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000384 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000385 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000386 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
387 if (!Ref)
388 continue;
389 const MCSymbol &Symbol = Ref->getSymbol();
Rafael Espindola3a5d3cc2015-05-28 21:36:02 +0000390 MCSymbolData &SD = Symbol.getData();
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000391
Benjamin Kramer14807272010-10-27 19:53:52 +0000392 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000393 size_t Pos = AliasName.find('@');
394 if (Pos == StringRef::npos)
395 continue;
396
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000397 // Aliases defined with .symvar copy the binding from the symbol they alias.
398 // This is the first place we are able to copy this information.
David Blaikie583a31c2014-04-18 18:24:25 +0000399 OriginalData.setExternal(SD.isExternal());
400 MCELF::SetBinding(OriginalData, MCELF::GetBinding(SD));
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000401
Benjamin Kramer14807272010-10-27 19:53:52 +0000402 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000403 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
404 continue;
405
Rafael Espindola26496e62010-10-27 17:56:18 +0000406 // FIXME: produce a better error message.
407 if (Symbol.isUndefined() && Rest.startswith("@@") &&
408 !Rest.startswith("@@@"))
409 report_fatal_error("A @@ version cannot be undefined");
410
Benjamin Kramer14807272010-10-27 19:53:52 +0000411 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000412 }
413}
414
Roman Divacky5a1c5492014-01-07 20:17:03 +0000415static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
416 uint8_t Type = newType;
417
418 // Propagation rules:
419 // IFUNC > FUNC > OBJECT > NOTYPE
420 // TLS_OBJECT > OBJECT > NOTYPE
421 //
422 // dont let the new type degrade the old type
423 switch (origType) {
424 default:
425 break;
426 case ELF::STT_GNU_IFUNC:
427 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
428 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
429 Type = ELF::STT_GNU_IFUNC;
430 break;
431 case ELF::STT_FUNC:
432 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
433 Type == ELF::STT_TLS)
434 Type = ELF::STT_FUNC;
435 break;
436 case ELF::STT_OBJECT:
437 if (Type == ELF::STT_NOTYPE)
438 Type = ELF::STT_OBJECT;
439 break;
440 case ELF::STT_TLS:
441 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
442 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
443 Type = ELF::STT_TLS;
444 break;
445 }
446
447 return Type;
448}
449
Rafael Espindolae48421f2015-05-28 20:25:29 +0000450void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
451 uint32_t StringIndex, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000452 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000453 MCSymbolData &OrigData = MSD.Symbol->getData();
David Blaikieb5956d22014-04-19 00:50:15 +0000454 assert((!OrigData.getFragment() ||
Rafael Espindola7549f872015-05-26 00:36:57 +0000455 (OrigData.getFragment()->getParent() == &MSD.Symbol->getSection())) &&
David Blaikieb5956d22014-04-19 00:50:15 +0000456 "The symbol's section doesn't match the fragment's symbol");
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000457 const MCSymbol *Base = Layout.getBaseSymbol(*MSD.Symbol);
Rafael Espindola85a84912014-03-26 00:16:43 +0000458
459 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
460 // SHN_COMMON.
461 bool IsReserved = !Base || OrigData.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000462
Jack Carter2f8d9d92013-02-19 21:57:35 +0000463 // Binding and Type share the same byte as upper and lower nibbles
Jan Sjödin30a52de2011-02-28 21:45:04 +0000464 uint8_t Binding = MCELF::GetBinding(OrigData);
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000465 uint8_t Type = MCELF::GetType(OrigData);
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000466 MCSymbolData *BaseSD = nullptr;
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000467 if (Base) {
Rafael Espindola3a5d3cc2015-05-28 21:36:02 +0000468 BaseSD = &Base->getData();
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000469 Type = mergeTypeForSet(Type, MCELF::GetType(*BaseSD));
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000470 }
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000471 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000472
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000473 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000474 // 2 bits
475 uint8_t Visibility = MCELF::GetVisibility(OrigData);
Logan Chienee365952013-12-05 00:34:11 +0000476 uint8_t Other = MCELF::getOther(OrigData) << (ELF_STO_Shift - ELF_STV_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000477 Other |= Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000478
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000479 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000480 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000481
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000482 const MCExpr *ESize = OrigData.getSize();
483 if (!ESize && Base)
484 ESize = BaseSD->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000485
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000486 if (ESize) {
487 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000488 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000489 report_fatal_error("Size expression must be absolute.");
490 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000491 }
492
493 // Write out the symbol table entry
Rafael Espindolae48421f2015-05-28 20:25:29 +0000494 Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
495 IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000496}
497
Rafael Espindola5904e122014-03-29 06:26:49 +0000498// It is always valid to create a relocation with a symbol. It is preferable
499// to use a relocation with a section if that is possible. Using the section
500// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000501bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
502 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000503 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000504 unsigned Type) const {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000505 MCSymbolData *SD = Sym ? &Sym->getData() : nullptr;
506
Rafael Espindola5904e122014-03-29 06:26:49 +0000507 // A PCRel relocation to an absolute value has no symbol (or section). We
508 // represent that with a relocation to a null section.
509 if (!RefA)
510 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000511
Rafael Espindola5904e122014-03-29 06:26:49 +0000512 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
513 switch (Kind) {
514 default:
515 break;
516 // The .odp creation emits a relocation against the symbol ".TOC." which
517 // create a R_PPC64_TOC relocation. However the relocation symbol name
518 // in final object creation should be NULL, since the symbol does not
519 // really exist, it is just the reference to TOC base for the current
520 // object file. Since the symbol is undefined, returning false results
521 // in a relocation with a null section which is the desired result.
522 case MCSymbolRefExpr::VK_PPC_TOCBASE:
523 return false;
524
525 // These VariantKind cause the relocation to refer to something other than
526 // the symbol itself, like a linker generated table. Since the address of
527 // symbol is not relevant, we cannot replace the symbol with the
528 // section and patch the difference in the addend.
529 case MCSymbolRefExpr::VK_GOT:
530 case MCSymbolRefExpr::VK_PLT:
531 case MCSymbolRefExpr::VK_GOTPCREL:
532 case MCSymbolRefExpr::VK_Mips_GOT:
533 case MCSymbolRefExpr::VK_PPC_GOT_LO:
534 case MCSymbolRefExpr::VK_PPC_GOT_HI:
535 case MCSymbolRefExpr::VK_PPC_GOT_HA:
536 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000537 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000538
Rafael Espindola5904e122014-03-29 06:26:49 +0000539 // An undefined symbol is not in any section, so the relocation has to point
540 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000541 assert(Sym && "Expected a symbol");
542 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000543 return true;
544
545 unsigned Binding = MCELF::GetBinding(*SD);
546 switch(Binding) {
547 default:
548 llvm_unreachable("Invalid Binding");
549 case ELF::STB_LOCAL:
550 break;
551 case ELF::STB_WEAK:
552 // If the symbol is weak, it might be overridden by a symbol in another
553 // file. The relocation has to point to the symbol so that the linker
554 // can update it.
555 return true;
556 case ELF::STB_GLOBAL:
557 // Global ELF symbols can be preempted by the dynamic linker. The relocation
558 // has to point to the symbol for a reason analogous to the STB_WEAK case.
559 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000560 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000561
Rafael Espindola5904e122014-03-29 06:26:49 +0000562 // If a relocation points to a mergeable section, we have to be careful.
563 // If the offset is zero, a relocation with the section will encode the
564 // same information. With a non-zero offset, the situation is different.
565 // For example, a relocation can point 42 bytes past the end of a string.
566 // If we change such a relocation to use the section, the linker would think
567 // that it pointed to another string and subtracting 42 at runtime will
568 // produce the wrong value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000569 auto &Sec = cast<MCSectionELF>(Sym->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000570 unsigned Flags = Sec.getFlags();
571 if (Flags & ELF::SHF_MERGE) {
572 if (C != 0)
573 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000574
575 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
576 // only handle section relocations to mergeable sections if using RELA.
577 if (!hasRelocationAddend())
578 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000579 }
580
Rafael Espindola5904e122014-03-29 06:26:49 +0000581 // Most TLS relocations use a got, so they need the symbol. Even those that
Rafael Espindola11527a12014-10-06 12:33:27 +0000582 // are just an offset (@tpoff), require a symbol in gold versions before
583 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
584 // http://sourceware.org/PR16773.
Rafael Espindola5904e122014-03-29 06:26:49 +0000585 if (Flags & ELF::SHF_TLS)
586 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000587
Rafael Espindola9ef84412014-04-11 19:18:01 +0000588 // If the symbol is a thumb function the final relocation must set the lowest
589 // bit. With a symbol that is done by just having the symbol have that bit
590 // set, so we would lose the bit if we relocated with the section.
591 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000592 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000593 return true;
594
Ulrich Weigand46797c62014-07-20 23:15:06 +0000595 if (TargetObjectWriter->needsRelocateWithSymbol(*SD, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000596 return true;
597 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000598}
599
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000600static const MCSymbol *getWeakRef(const MCSymbolRefExpr &Ref) {
601 const MCSymbol &Sym = Ref.getSymbol();
602
603 if (Ref.getKind() == MCSymbolRefExpr::VK_WEAKREF)
604 return &Sym;
605
606 if (!Sym.isVariable())
607 return nullptr;
608
609 const MCExpr *Expr = Sym.getVariableValue();
610 const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr);
611 if (!Inner)
612 return nullptr;
613
614 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF)
615 return &Inner->getSymbol();
616 return nullptr;
617}
618
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000619// True if the assembler knows nothing about the final value of the symbol.
620// This doesn't cover the comdat issues, since in those cases the assembler
621// can at least know that all symbols in the section will move together.
Rafael Espindolac9e70682015-03-24 23:48:44 +0000622static bool isWeak(const MCSymbolData &D) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000623 if (MCELF::GetType(D) == ELF::STT_GNU_IFUNC)
624 return true;
625
626 switch (MCELF::GetBinding(D)) {
627 default:
628 llvm_unreachable("Unknown binding");
629 case ELF::STB_LOCAL:
630 return false;
631 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000632 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000633 case ELF::STB_WEAK:
634 case ELF::STB_GNU_UNIQUE:
635 return true;
636 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000637}
638
Rafael Espindola26585542015-01-19 21:11:14 +0000639void ELFObjectWriter::RecordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000640 const MCAsmLayout &Layout,
641 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000642 const MCFixup &Fixup, MCValue Target,
643 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola7549f872015-05-26 00:36:57 +0000644 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000645 uint64_t C = Target.getConstant();
646 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000647
Rafael Espindola5904e122014-03-29 06:26:49 +0000648 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
649 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
650 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000651
Rafael Espindola5904e122014-03-29 06:26:49 +0000652 // Let A, B and C being the components of Target and R be the location of
653 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
654 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000655
Rafael Espindola5904e122014-03-29 06:26:49 +0000656 // In general, ELF has no relocations for -B. It can only represent (A + C)
657 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
658 // replace B to implement it: (A - R - K + C)
659 if (IsPCRel)
Jim Grosbach6f482002015-05-18 18:43:14 +0000660 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000661 Fixup.getLoc(),
662 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000663
Rafael Espindola5904e122014-03-29 06:26:49 +0000664 const MCSymbol &SymB = RefB->getSymbol();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000665
Rafael Espindola5904e122014-03-29 06:26:49 +0000666 if (SymB.isUndefined())
Jim Grosbach6f482002015-05-18 18:43:14 +0000667 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000668 Fixup.getLoc(),
669 Twine("symbol '") + SymB.getName() +
670 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000671
Rafael Espindola5904e122014-03-29 06:26:49 +0000672 assert(!SymB.isAbsolute() && "Should have been folded");
673 const MCSection &SecB = SymB.getSection();
Rafael Espindola34948e52015-04-30 00:45:46 +0000674 if (&SecB != &FixupSection)
Jim Grosbach6f482002015-05-18 18:43:14 +0000675 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000676 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000677
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000678 if (::isWeak(SymB.getData()))
Jim Grosbach6f482002015-05-18 18:43:14 +0000679 Asm.getContext().reportFatalError(
Rafael Espindolac9e70682015-03-24 23:48:44 +0000680 Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
681
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000682 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000683 uint64_t K = SymBOffset - FixupOffset;
684 IsPCRel = true;
685 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000686 }
687
Rafael Espindola5904e122014-03-29 06:26:49 +0000688 // We either rejected the fixup or folded B into C at this point.
689 const MCSymbolRefExpr *RefA = Target.getSymA();
690 const MCSymbol *SymA = RefA ? &RefA->getSymbol() : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000691
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000692 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000693 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000694 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000695 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000696
697 uint64_t Addend = 0;
698 if (hasRelocationAddend()) {
699 Addend = C;
700 C = 0;
701 }
702
703 FixedValue = C;
704
Rafael Espindola5904e122014-03-29 06:26:49 +0000705 if (!RelocateWithSymbol) {
706 const MCSection *SecA =
707 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000708 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
Rafael Espindola2f9bdd82015-05-27 20:52:32 +0000709 const MCSymbol *SectionSymbol = ELFSec ? ELFSec->getBeginSymbol() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000710 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000711 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000712 return;
713 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000714
Rafael Espindola5904e122014-03-29 06:26:49 +0000715 if (SymA) {
716 if (const MCSymbol *R = Renames.lookup(SymA))
717 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000718
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000719 if (const MCSymbol *WeakRef = getWeakRef(*RefA))
720 WeakrefUsedInReloc.insert(WeakRef);
Rafael Espindola5904e122014-03-29 06:26:49 +0000721 else
722 UsedInReloc.insert(SymA);
723 }
724 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000725 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000726 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000727}
728
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000729bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000730 const MCSymbol &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000731 bool Renamed) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000732 const MCSymbolData &Data = Symbol.getData();
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000733 if (Symbol.isVariable()) {
734 const MCExpr *Expr = Symbol.getVariableValue();
735 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
736 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
737 return false;
738 }
739 }
Rafael Espindola16145972010-11-01 14:28:48 +0000740
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000741 if (Used)
742 return true;
743
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000744 if (Renamed)
745 return false;
746
Rafael Espindola45834a02010-10-29 23:09:31 +0000747 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
748 return true;
749
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000750 if (Symbol.isVariable()) {
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000751 const MCSymbol *Base = Layout.getBaseSymbol(Symbol);
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000752 if (Base && Base->isUndefined())
753 return false;
754 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000755
Jan Sjödin30a52de2011-02-28 21:45:04 +0000756 bool IsGlobal = MCELF::GetBinding(Data) == ELF::STB_GLOBAL;
Rafael Espindola9e18e962011-02-23 20:22:07 +0000757 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000758 return false;
759
Rafael Espindola2f9bdd82015-05-27 20:52:32 +0000760 if (MCELF::GetType(Data) == ELF::STT_SECTION)
761 return true;
762
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000763 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000764 return false;
765
766 return true;
767}
768
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000769bool ELFObjectWriter::isLocal(const MCSymbol &Symbol, bool isUsedInReloc) {
770 const MCSymbolData &Data = Symbol.getData();
Rafael Espindolab1d07892010-10-05 18:01:23 +0000771 if (Data.isExternal())
772 return false;
773
Rafael Espindola39f50422014-04-28 14:24:44 +0000774 if (Symbol.isDefined())
775 return true;
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000776
Rafael Espindola39f50422014-04-28 14:24:44 +0000777 if (isUsedInReloc)
Rafael Espindolab1d07892010-10-05 18:01:23 +0000778 return false;
779
780 return true;
781}
782
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000783void ELFObjectWriter::computeSymbolTable(
784 MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000785 const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
786 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000787 MCContext &Ctx = Asm.getContext();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000788 SymbolTableWriter Writer(*this, is64Bit());
789
Rafael Espindola5960cee2015-05-22 23:58:30 +0000790 // Symbol table
791 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
792 MCSectionELF *SymtabSection =
793 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
794 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
795 SymbolTableIndex = addToSectionTable(SymtabSection);
796
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000797 uint64_t Padding =
798 OffsetToAlignment(OS.tell(), SymtabSection->getAlignment());
799 WriteZeros(Padding);
800
801 uint64_t SecStart = OS.tell();
802
803 // The first entry is the undefined symbol entry.
804 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
805
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000806 std::vector<ELFSymbolData> LocalSymbolData;
807 std::vector<ELFSymbolData> ExternalSymbolData;
808 std::vector<ELFSymbolData> UndefinedSymbolData;
809
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000810 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000811 bool HasLargeSectionIndex = false;
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000812 for (const MCSymbol &Symbol : Asm.symbols()) {
813 MCSymbolData &SD = Symbol.getData();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000814
Rafael Espindola16145972010-11-01 14:28:48 +0000815 bool Used = UsedInReloc.count(&Symbol);
816 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000817 bool isSignature = RevGroupMap.count(&Symbol);
818
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000819 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000820 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000821 continue;
822
Matt Fleming6c1ad482010-08-16 18:57:57 +0000823 ELFSymbolData MSD;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000824 MSD.Symbol = &Symbol;
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000825 const MCSymbol *BaseSymbol = Layout.getBaseSymbol(Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000826
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000827 // Undefined symbols are global, but this is the first place we
828 // are able to set it.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000829 bool Local = isLocal(Symbol, Used);
David Blaikie583a31c2014-04-18 18:24:25 +0000830 if (!Local && MCELF::GetBinding(SD) == ELF::STB_LOCAL) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000831 assert(BaseSymbol);
Rafael Espindola3a5d3cc2015-05-28 21:36:02 +0000832 MCSymbolData &BaseData = BaseSymbol->getData();
Jan Sjödin30a52de2011-02-28 21:45:04 +0000833 MCELF::SetBinding(SD, ELF::STB_GLOBAL);
David Blaikie583a31c2014-04-18 18:24:25 +0000834 MCELF::SetBinding(BaseData, ELF::STB_GLOBAL);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000835 }
836
Rafael Espindola022bb762014-03-24 03:43:21 +0000837 if (!BaseSymbol) {
838 MSD.SectionIndex = ELF::SHN_ABS;
David Blaikie583a31c2014-04-18 18:24:25 +0000839 } else if (SD.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000840 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000841 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindola022bb762014-03-24 03:43:21 +0000842 } else if (BaseSymbol->isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000843 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000844 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000845 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
846 HasLargeSectionIndex = true;
847 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000848 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000849 }
Rafael Espindola022bb762014-03-24 03:43:21 +0000850 if (!Used && WeakrefUsed)
David Blaikie583a31c2014-04-18 18:24:25 +0000851 MCELF::SetBinding(SD, ELF::STB_WEAK);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000852 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000853 const MCSectionELF &Section =
Rafael Espindola022bb762014-03-24 03:43:21 +0000854 static_cast<const MCSectionELF&>(BaseSymbol->getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000855 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000856 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000857 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
858 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000859 }
860
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000861 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
862 // in defined ones.
863 //
864 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000865 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000866 // trivial.
867 //
868 // We thus have to be careful to not perform the symbol version replacement
869 // blindly:
870 //
871 // The ELF format is used on Windows by the MCJIT engine. Thus, on
872 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
873 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
874 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
875 // the EFLObjectWriter should not interpret the "@@@" sub-string as
876 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
877 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
878 // "__imp_?" or "__imp_@?".
879 //
880 // It would have been interesting to perform the MS mangling prefix check
881 // only when the target triple is of the form *-pc-windows-elf. But, it
882 // seems that this information is not easily accessible from the
883 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000884 StringRef Name = Symbol.getName();
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000885 if (!Name.startswith("?") && !Name.startswith("@?") &&
886 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
887 // This symbol isn't following the MSVC C++ name mangling convention. We
888 // can thus safely interpret the @@@ in symbol names as specifying symbol
889 // versioning.
890 SmallString<32> Buf;
891 size_t Pos = Name.find("@@@");
892 if (Pos != StringRef::npos) {
893 Buf += Name.substr(0, Pos);
894 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
895 Buf += Name.substr(Pos + Skip);
896 Name = Buf;
897 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000898 }
Rafael Espindolab6613022014-10-17 01:48:58 +0000899
900 // Sections have their own string table
901 if (MCELF::GetType(SD) != ELF::STT_SECTION)
902 MSD.Name = StrTabBuilder.add(Name);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000903
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000904 if (MSD.SectionIndex == ELF::SHN_UNDEF)
905 UndefinedSymbolData.push_back(MSD);
906 else if (Local)
907 LocalSymbolData.push_back(MSD);
908 else
909 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000910 }
911
Rafael Espindola5960cee2015-05-22 23:58:30 +0000912 if (HasLargeSectionIndex) {
913 MCSectionELF *SymtabShndxSection =
914 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
915 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
916 SymtabShndxSection->setAlignment(4);
917 }
918
Rafael Espindola1fd36272015-05-28 19:29:15 +0000919 ArrayRef<std::string> FileNames = Asm.getFileNames();
920 for (const std::string &Name : FileNames)
Rafael Espindola66f3c9c2015-05-28 18:03:20 +0000921 StrTabBuilder.add(Name);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000922
Hans Wennborgf26bfc12014-09-29 22:43:20 +0000923 StrTabBuilder.finalize(StringTableBuilder::ELF);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000924
Rafael Espindola0cbea292015-05-28 20:00:13 +0000925 for (const std::string &Name : FileNames)
926 Writer.writeSymbol(StrTabBuilder.getOffset(Name),
927 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
928 ELF::SHN_ABS, true);
929
Matt Fleming6c1ad482010-08-16 18:57:57 +0000930 // Symbols are required to be in lexicographic order.
931 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
932 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
933 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
934
935 // Set the symbol indices. Local symbols must come before all other
936 // symbols with non-local bindings.
Rafael Espindola1fd36272015-05-28 19:29:15 +0000937 unsigned Index = FileNames.size() + 1;
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000938
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000939 for (ELFSymbolData &MSD : LocalSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000940 unsigned StringIndex =
941 MCELF::GetType(MSD.Symbol->getData()) == ELF::STT_SECTION
942 ? 0
943 : StrTabBuilder.getOffset(MSD.Name);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000944 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000945 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000946 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000947
948 // Write the symbol table entries.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000949 LastLocalSymbolIndex = Index;
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000950
Rafael Espindoladcda9972015-05-28 19:43:20 +0000951 for (ELFSymbolData &MSD : ExternalSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000952 unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
Rafael Espindola0cbea292015-05-28 20:00:13 +0000953 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000954 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolad7f10f02015-05-28 20:19:31 +0000955 assert(MCELF::GetBinding(MSD.Symbol->getData()) != ELF::STB_LOCAL);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000956 }
Rafael Espindoladcda9972015-05-28 19:43:20 +0000957 for (ELFSymbolData &MSD : UndefinedSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000958 unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
Rafael Espindola0cbea292015-05-28 20:00:13 +0000959 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000960 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolad7f10f02015-05-28 20:19:31 +0000961 assert(MCELF::GetBinding(MSD.Symbol->getData()) != ELF::STB_LOCAL);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000962 }
963
964 uint64_t SecEnd = OS.tell();
965 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
966
967 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
968 if (ShndxIndexes.empty()) {
969 assert(SymtabShndxSectionIndex == 0);
970 return;
971 }
972 assert(SymtabShndxSectionIndex != 0);
973
974 SecStart = OS.tell();
975 const MCSectionELF *SymtabShndxSection =
976 SectionTable[SymtabShndxSectionIndex - 1];
977 for (uint32_t Index : ShndxIndexes)
978 write(Index);
979 SecEnd = OS.tell();
980 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000981}
982
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000983MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000984ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +0000985 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000986 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +0000987 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000988
Rafael Espindola34948e52015-04-30 00:45:46 +0000989 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +0000990 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
991 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +0000992
Rafael Espindolaead85492015-02-17 20:31:13 +0000993 unsigned EntrySize;
994 if (hasRelocationAddend())
995 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
996 else
997 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000998
Rafael Espindolaead85492015-02-17 20:31:13 +0000999 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +00001000 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +00001001 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +00001002
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001003 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +00001004 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +00001005 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001006 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +00001007 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001008}
Matt Fleming6c1ad482010-08-16 18:57:57 +00001009
David Blaikiee06e8012014-04-11 22:11:50 +00001010static SmallVector<char, 128>
Rafael Espindolaae7e4992015-04-29 19:20:10 +00001011getUncompressedData(const MCAsmLayout &Layout,
Rafael Espindolaa32d0e92015-05-27 15:14:11 +00001012 const MCSection::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +00001013 SmallVector<char, 128> UncompressedData;
1014 for (const MCFragment &F : Fragments) {
1015 const SmallVectorImpl<char> *Contents;
1016 switch (F.getKind()) {
1017 case MCFragment::FT_Data:
1018 Contents = &cast<MCDataFragment>(F).getContents();
1019 break;
1020 case MCFragment::FT_Dwarf:
1021 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
1022 break;
1023 case MCFragment::FT_DwarfFrame:
1024 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
1025 break;
1026 default:
1027 llvm_unreachable(
1028 "Not expecting any other fragment types in a debug_* section");
1029 }
1030 UncompressedData.append(Contents->begin(), Contents->end());
1031 }
1032 return UncompressedData;
1033}
1034
1035// Include the debug info compression header:
1036// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
1037// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +00001038static bool
David Blaikiee06e8012014-04-11 22:11:50 +00001039prependCompressionHeader(uint64_t Size,
1040 SmallVectorImpl<char> &CompressedContents) {
Benjamin Kramer7149aab2015-03-01 18:09:56 +00001041 const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +00001042 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
1043 return false;
David Blaikie8019bf82014-04-10 21:53:53 +00001044 if (sys::IsLittleEndianHost)
Artyom Skrobov9aea8432014-06-14 13:18:07 +00001045 sys::swapByteOrder(Size);
David Blaikie8019bf82014-04-10 21:53:53 +00001046 CompressedContents.insert(CompressedContents.begin(),
1047 Magic.size() + sizeof(Size), 0);
1048 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
1049 std::copy(reinterpret_cast<char *>(&Size),
1050 reinterpret_cast<char *>(&Size + 1),
1051 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +00001052 return true;
David Blaikie8019bf82014-04-10 21:53:53 +00001053}
1054
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001055void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +00001056 const MCAsmLayout &Layout) {
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001057 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001058 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +00001059
Rafael Espindola868b3f42015-04-30 21:51:58 +00001060 // Compressing debug_frame requires handling alignment fragments which is
1061 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1062 // for writing to arbitrary buffers) for little benefit.
1063 if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
1064 !SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001065 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001066 return;
1067 }
1068
1069 // Gather the uncompressed data from all the fragments.
Rafael Espindolaa32d0e92015-05-27 15:14:11 +00001070 const MCSection::FragmentListType &Fragments = Section.getFragmentList();
David Blaikie8019bf82014-04-10 21:53:53 +00001071 SmallVector<char, 128> UncompressedData =
1072 getUncompressedData(Layout, Fragments);
1073
Rafael Espindola868b3f42015-04-30 21:51:58 +00001074 SmallVector<char, 128> CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001075 zlib::Status Success = zlib::compress(
1076 StringRef(UncompressedData.data(), UncompressedData.size()),
1077 CompressedContents);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001078 if (Success != zlib::StatusOK) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001079 Asm.writeSectionData(&Section, Layout);
David Blaikie8019bf82014-04-10 21:53:53 +00001080 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001081 }
David Blaikie8019bf82014-04-10 21:53:53 +00001082
Rafael Espindola868b3f42015-04-30 21:51:58 +00001083 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001084 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001085 return;
1086 }
David Blaikie8019bf82014-04-10 21:53:53 +00001087 Asm.getContext().renameELFSection(&Section,
1088 (".z" + SectionName.drop_front(1)).str());
Rafael Espindola868b3f42015-04-30 21:51:58 +00001089 OS << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001090}
1091
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001092void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1093 uint64_t Flags, uint64_t Address,
1094 uint64_t Offset, uint64_t Size,
1095 uint32_t Link, uint32_t Info,
1096 uint64_t Alignment,
1097 uint64_t EntrySize) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001098 Write32(Name); // sh_name: index into string table
1099 Write32(Type); // sh_type
1100 WriteWord(Flags); // sh_flags
1101 WriteWord(Address); // sh_addr
1102 WriteWord(Offset); // sh_offset
1103 WriteWord(Size); // sh_size
1104 Write32(Link); // sh_link
1105 Write32(Info); // sh_info
1106 WriteWord(Alignment); // sh_addralign
1107 WriteWord(EntrySize); // sh_entsize
1108}
1109
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001110void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001111 const MCSectionELF &Sec) {
1112 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001113
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001114 // Sort the relocation entries. Most targets just sort by Offset, but some
1115 // (e.g., MIPS) have additional constraints.
1116 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001117
1118 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001119 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001120 unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001121
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001122 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001123 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001124 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001125 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001126
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001127 write(TargetObjectWriter->getRSsym(Entry.Type));
1128 write(TargetObjectWriter->getRType3(Entry.Type));
1129 write(TargetObjectWriter->getRType2(Entry.Type));
1130 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001131 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001132 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001133 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001134 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001135 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001136 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001137 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001138 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001139 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001140
Rafael Espindolabce26a12010-10-05 15:11:03 +00001141 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001142 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001143 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001144
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001145 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001146 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001147 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001148 }
1149}
1150
Rafael Espindolab1863912015-04-30 21:10:06 +00001151const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001152 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
Rafael Espindola88abc392015-04-29 20:34:31 +00001153 OS << StrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001154 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001155}
1156
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001157void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1158 uint32_t GroupSymbolIndex, uint64_t Offset,
1159 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001160 uint64_t sh_link = 0;
1161 uint64_t sh_info = 0;
1162
1163 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001164 default:
1165 // Nothing to do.
1166 break;
1167
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001168 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001169 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001170
1171 case ELF::SHT_REL:
1172 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001173 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001174 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001175 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001176 sh_info = SectionIndexMap.lookup(InfoSection);
1177 break;
1178 }
1179
1180 case ELF::SHT_SYMTAB:
1181 case ELF::SHT_DYNSYM:
1182 sh_link = StringTableIndex;
1183 sh_info = LastLocalSymbolIndex;
1184 break;
1185
1186 case ELF::SHT_SYMTAB_SHNDX:
1187 sh_link = SymbolTableIndex;
1188 break;
1189
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001190 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001191 sh_link = SymbolTableIndex;
1192 sh_info = GroupSymbolIndex;
1193 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001194 }
1195
Logan Chien4b724422013-02-05 14:18:59 +00001196 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001197 Section.getType() == ELF::SHT_ARM_EXIDX)
1198 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001199
Rafael Espindola5960cee2015-05-22 23:58:30 +00001200 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001201 Section.getType(), Section.getFlags(), 0, Offset, Size,
1202 sh_link, sh_info, Section.getAlignment(),
1203 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001204}
1205
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001206void ELFObjectWriter::writeSectionHeader(
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001207 const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001208 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001209 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001210 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001211
Matt Fleming6c1ad482010-08-16 18:57:57 +00001212 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001213 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001214 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001215 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001216
Rafael Espindola08850b32015-05-25 21:56:55 +00001217 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001218 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001219 unsigned Type = Section->getType();
1220 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001221 GroupSymbolIndex = 0;
1222 else
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001223 GroupSymbolIndex = Section->getGroup()->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001224
Rafael Espindolabda19802015-04-30 14:21:49 +00001225 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001226 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001227 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001228 if (Type == ELF::SHT_NOBITS)
1229 Size = Layout.getSectionAddressSize(Section);
1230 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001231 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001232
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001233 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001234 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001235 }
1236}
1237
Rafael Espindola1557fd62011-03-20 18:44:20 +00001238void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1239 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001240 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001241 MCSectionELF *StrtabSection =
1242 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1243 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001244
Rafael Espindola1557fd62011-03-20 18:44:20 +00001245 RevGroupMapTy RevGroupMap;
1246 SectionIndexMapTy SectionIndexMap;
1247
Rafael Espindolabda19802015-04-30 14:21:49 +00001248 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001249
Rafael Espindola1557fd62011-03-20 18:44:20 +00001250 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001251 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001252
Rafael Espindola7230f802015-04-08 11:41:24 +00001253 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001254 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001255 std::vector<MCSectionELF *> Groups;
1256 std::vector<MCSectionELF *> Relocations;
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001257 for (MCSection &Sec : Asm) {
1258 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindolabda19802015-04-30 14:21:49 +00001259
Rafael Espindola967d6a62015-05-21 21:02:35 +00001260 uint64_t Padding = OffsetToAlignment(OS.tell(), Section.getAlignment());
Rafael Espindola642a2212015-04-14 22:54:16 +00001261 WriteZeros(Padding);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001262
Rafael Espindola642a2212015-04-14 22:54:16 +00001263 // Remember the offset into the file for this section.
Rafael Espindolab6417502015-04-28 15:04:09 +00001264 uint64_t SecStart = OS.tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001265
Rafael Espindolabda19802015-04-30 14:21:49 +00001266 const MCSymbol *SignatureSymbol = Section.getGroup();
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001267 writeSectionData(Asm, Section, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001268
Rafael Espindolab6417502015-04-28 15:04:09 +00001269 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001270 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1271
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001272 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001273
1274 if (SignatureSymbol) {
1275 Asm.getOrCreateSymbolData(*SignatureSymbol);
1276 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1277 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001278 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001279 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001280 Group->setAlignment(4);
1281 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001282 }
1283 GroupMembers[SignatureSymbol].push_back(&Section);
1284 if (RelSection)
1285 GroupMembers[SignatureSymbol].push_back(RelSection);
1286 }
1287
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001288 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001289 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001290 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001291 Relocations.push_back(RelSection);
1292 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001293 }
1294
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001295 for (MCSectionELF *Group : Groups) {
1296 uint64_t Padding = OffsetToAlignment(OS.tell(), Group->getAlignment());
1297 WriteZeros(Padding);
1298
1299 // Remember the offset into the file for this section.
1300 uint64_t SecStart = OS.tell();
1301
1302 const MCSymbol *SignatureSymbol = Group->getGroup();
1303 assert(SignatureSymbol);
1304 write(uint32_t(ELF::GRP_COMDAT));
1305 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1306 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1307 write(SecIndex);
1308 }
1309
1310 uint64_t SecEnd = OS.tell();
1311 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1312 }
1313
1314 // Compute symbol table information.
Rafael Espindolaaa486e92015-05-28 17:54:01 +00001315 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001316
1317 for (MCSectionELF *RelSection : Relocations) {
1318 uint64_t Padding = OffsetToAlignment(OS.tell(), RelSection->getAlignment());
1319 WriteZeros(Padding);
1320
1321 // Remember the offset into the file for this section.
1322 uint64_t SecStart = OS.tell();
1323
1324 writeRelocations(Asm, *RelSection->getAssociatedSection());
1325
1326 uint64_t SecEnd = OS.tell();
1327 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001328 }
1329
Rafael Espindola88d1f632015-04-29 20:25:24 +00001330 {
1331 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001332 const MCSectionELF *Sec = createStringTable(Ctx);
Rafael Espindola88abc392015-04-29 20:34:31 +00001333 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001334 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001335 }
1336
Rafael Espindola642a2212015-04-14 22:54:16 +00001337 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001338 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001339 WriteZeros(Padding);
1340
Rafael Espindola642a2212015-04-14 22:54:16 +00001341 const unsigned SectionHeaderOffset = OS.tell();
1342
Rafael Espindola1557fd62011-03-20 18:44:20 +00001343 // ... then the section header table ...
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001344 writeSectionHeader(Asm, Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001345
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001346 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001347 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001348 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001349 if (sys::IsLittleEndianHost != IsLittleEndian)
1350 sys::swapByteOrder(NumSections);
1351 unsigned NumSectionsOffset;
1352
Rafael Espindola642a2212015-04-14 22:54:16 +00001353 if (is64Bit()) {
1354 uint64_t Val = SectionHeaderOffset;
1355 if (sys::IsLittleEndianHost != IsLittleEndian)
1356 sys::swapByteOrder(Val);
1357 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1358 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001359 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001360 } else {
1361 uint32_t Val = SectionHeaderOffset;
1362 if (sys::IsLittleEndianHost != IsLittleEndian)
1363 sys::swapByteOrder(Val);
1364 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1365 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001366 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001367 }
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001368 OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
1369 NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001370}
1371
Rafael Espindola94a88d72015-04-06 15:27:57 +00001372bool ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001373 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001374 bool InSet, bool IsPCRel) const {
1375 if (IsPCRel) {
1376 assert(!InSet);
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001377 if (::isWeak(SymA.getData()))
Rafael Espindola35d61892015-04-17 21:15:17 +00001378 return false;
1379 }
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001380 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001381 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001382}
1383
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +00001384bool ELFObjectWriter::isWeak(const MCSymbol &Sym) const {
1385 const MCSymbolData &SD = Sym.getData();
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001386 if (::isWeak(SD))
1387 return true;
1388
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001389 // It is invalid to replace a reference to a global in a comdat
1390 // with a reference to a local since out of comdat references
1391 // to a local are forbidden.
1392 // We could try to return false for more cases, like the reference
1393 // being in the same comdat or Sym being an alias to another global,
1394 // but it is not clear if it is worth the effort.
Rafael Espindola29c82702015-04-20 12:44:06 +00001395 if (MCELF::GetBinding(SD) != ELF::STB_GLOBAL)
1396 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001397
Rafael Espindola29c82702015-04-20 12:44:06 +00001398 if (!Sym.isInSection())
1399 return false;
1400
1401 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1402 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001403}
1404
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001405MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001406 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001407 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001408 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001409}