blob: 927180c48dd66756243438ef6377e11d9abbdd44 [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"
Rafael Espindolaa8695762015-06-02 00:25:12 +000030#include "llvm/MC/MCSymbolELF.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000031#include "llvm/MC/MCValue.h"
Rafael Espindola97de4742014-07-03 02:01:39 +000032#include "llvm/MC/StringTableBuilder.h"
David Blaikie8019bf82014-04-10 21:53:53 +000033#include "llvm/Support/Compression.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000034#include "llvm/Support/Debug.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000035#include "llvm/Support/ELF.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000036#include "llvm/Support/Endian.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000037#include "llvm/Support/ErrorHandling.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000038#include <vector>
39using namespace llvm;
40
Jason W Kimc09e7262011-05-11 22:53:06 +000041#undef DEBUG_TYPE
42#define DEBUG_TYPE "reloc-info"
43
Rafael Espindola29abd972011-12-22 03:38:00 +000044namespace {
Rafael Espindola0ce09712014-03-25 22:43:53 +000045
Rafael Espindola10be0832014-03-25 23:44:25 +000046typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy;
47
Rafael Espindola91fd2772015-04-29 21:09:32 +000048class ELFObjectWriter;
49
Rafael Espindola10be0832014-03-25 23:44:25 +000050class SymbolTableWriter {
Rafael Espindola91fd2772015-04-29 21:09:32 +000051 ELFObjectWriter &EWriter;
Rafael Espindola10be0832014-03-25 23:44:25 +000052 bool Is64Bit;
Rafael Espindola10be0832014-03-25 23:44:25 +000053
Rafael Espindola91fd2772015-04-29 21:09:32 +000054 // indexes we are going to write to .symtab_shndx.
55 std::vector<uint32_t> ShndxIndexes;
Rafael Espindola10be0832014-03-25 23:44:25 +000056
57 // The numbel of symbols written so far.
58 unsigned NumWritten;
59
60 void createSymtabShndx();
61
Rafael Espindola91fd2772015-04-29 21:09:32 +000062 template <typename T> void write(T Value);
Rafael Espindola10be0832014-03-25 23:44:25 +000063
64public:
Rafael Espindola91fd2772015-04-29 21:09:32 +000065 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
Rafael Espindola10be0832014-03-25 23:44:25 +000066
67 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
68 uint8_t other, uint32_t shndx, bool Reserved);
Rafael Espindola91fd2772015-04-29 21:09:32 +000069
70 ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; }
Rafael Espindola10be0832014-03-25 23:44:25 +000071};
72
Rafael Espindola29abd972011-12-22 03:38:00 +000073class ELFObjectWriter : public MCObjectWriter {
Rafael Espindola29abd972011-12-22 03:38:00 +000074 static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000075 static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout);
76 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbol &Symbol,
Rafael Espindola29abd972011-12-22 03:38:00 +000077 bool Used, bool Renamed);
Rafael Espindola10d23872015-05-29 14:20:40 +000078 static bool isLocal(const MCSymbol &Symbol, bool IsUsedInReloc,
79 bool IsSignature);
Rafael Espindola29abd972011-12-22 03:38:00 +000080
Rafael Espindola6cd21802015-04-07 22:35:40 +000081 /// Helper struct for containing some precomputed information on symbols.
Rafael Espindola29abd972011-12-22 03:38:00 +000082 struct ELFSymbolData {
Rafael Espindolaa8695762015-06-02 00:25:12 +000083 const MCSymbolELF *Symbol;
Rafael Espindola29abd972011-12-22 03:38:00 +000084 uint32_t SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000085 StringRef Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000086
87 // Support lexicographic sorting.
88 bool operator<(const ELFSymbolData &RHS) const {
Rafael Espindolae3b2acf2015-05-29 18:47:23 +000089 unsigned LHSType = MCELF::GetType(*Symbol);
90 unsigned RHSType = MCELF::GetType(*RHS.Symbol);
Rafael Espindolab6613022014-10-17 01:48:58 +000091 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
92 return false;
93 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
94 return true;
95 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
96 return SectionIndex < RHS.SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000097 return Name < RHS.Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000098 }
99 };
100
Rafael Espindola29abd972011-12-22 03:38:00 +0000101 /// The target specific ELF writer instance.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000102 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
Rafael Espindola29abd972011-12-22 03:38:00 +0000103
104 SmallPtrSet<const MCSymbol *, 16> UsedInReloc;
105 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc;
106 DenseMap<const MCSymbol *, const MCSymbol *> Renames;
107
Rafael Espindola34948e52015-04-30 00:45:46 +0000108 llvm::DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>>
109 Relocations;
Rafael Espindola29abd972011-12-22 03:38:00 +0000110
111 /// @}
112 /// @name Symbol Table Data
113 /// @{
114
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000115 StringTableBuilder StrTabBuilder;
Rafael Espindola29abd972011-12-22 03:38:00 +0000116
117 /// @}
118
Rafael Espindola29abd972011-12-22 03:38:00 +0000119 // This holds the symbol table index of the last local symbol.
120 unsigned LastLocalSymbolIndex;
121 // This holds the .strtab section index.
122 unsigned StringTableIndex;
123 // This holds the .symtab section index.
124 unsigned SymbolTableIndex;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000125 // This holds the .symtab_shndx section index.
126 unsigned SymtabShndxSectionIndex = 0;
Rafael Espindola29abd972011-12-22 03:38:00 +0000127
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000128 // Sections in the order they are to be output in the section table.
Rafael Espindola08850b32015-05-25 21:56:55 +0000129 std::vector<const MCSectionELF *> SectionTable;
130 unsigned addToSectionTable(const MCSectionELF *Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000131
Rafael Espindola29abd972011-12-22 03:38:00 +0000132 // TargetObjectWriter wrappers.
Rafael Espindola29abd972011-12-22 03:38:00 +0000133 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
134 bool hasRelocationAddend() const {
135 return TargetObjectWriter->hasRelocationAddend();
136 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000137 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000138 bool IsPCRel) const {
139 return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindola29abd972011-12-22 03:38:00 +0000140 }
141
Rafael Espindola29abd972011-12-22 03:38:00 +0000142 public:
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000143 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
Rafael Espindola0ce09712014-03-25 22:43:53 +0000144 bool IsLittleEndian)
Rafael Espindolae2b355d2015-05-28 15:20:00 +0000145 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
Rafael Espindola29abd972011-12-22 03:38:00 +0000146
Yaron Keren7773a722015-03-23 18:35:01 +0000147 void reset() override {
148 UsedInReloc.clear();
149 WeakrefUsedInReloc.clear();
150 Renames.clear();
151 Relocations.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000152 StrTabBuilder.clear();
Yaron Kerenf3465e12015-05-13 15:17:19 +0000153 SectionTable.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000154 MCObjectWriter::reset();
155 }
156
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000157 ~ELFObjectWriter() override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000158
159 void WriteWord(uint64_t W) {
160 if (is64Bit())
161 Write64(W);
162 else
163 Write32(W);
164 }
165
Rafael Espindola91fd2772015-04-29 21:09:32 +0000166 template <typename T> void write(T Val) {
167 if (IsLittleEndian)
168 support::endian::Writer<support::little>(OS).write(Val);
169 else
170 support::endian::Writer<support::big>(OS).write(Val);
171 }
172
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000173 void writeHeader(const MCAssembler &Asm);
Rafael Espindola29abd972011-12-22 03:38:00 +0000174
Rafael Espindolae48421f2015-05-28 20:25:29 +0000175 void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
176 ELFSymbolData &MSD, const MCAsmLayout &Layout);
Rafael Espindola29abd972011-12-22 03:38:00 +0000177
Rafael Espindola91fd2772015-04-29 21:09:32 +0000178 // Start and end offset of each section
Rafael Espindolabda19802015-04-30 14:21:49 +0000179 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
180 SectionOffsetsTy;
Rafael Espindola91fd2772015-04-29 21:09:32 +0000181
Rafael Espindolab60c8292014-04-29 12:46:50 +0000182 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
183 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000184 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000185 unsigned Type) const;
186
Rafael Espindola26585542015-01-19 21:11:14 +0000187 void RecordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
Craig Topper34a61bc2014-03-08 07:02:02 +0000188 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000189 MCValue Target, bool &IsPCRel,
190 uint64_t &FixedValue) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000191
Rafael Espindola89feff32015-04-28 22:59:58 +0000192 // Map from a signature symbol to the group section index
193 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
Rafael Espindola29abd972011-12-22 03:38:00 +0000194
Rafael Espindola022bb762014-03-24 03:43:21 +0000195 /// Compute the symbol table data
Rafael Espindola29abd972011-12-22 03:38:00 +0000196 ///
Rafael Espindola073ee7d2012-08-27 16:04:24 +0000197 /// \param Asm - The assembler.
198 /// \param SectionIndexMap - Maps a section to its index.
199 /// \param RevGroupMap - Maps a signature symbol to the group section.
Rafael Espindola022bb762014-03-24 03:43:21 +0000200 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000201 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000202 const RevGroupMapTy &RevGroupMap,
203 SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000204
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000205 MCSectionELF *createRelocationSection(MCContext &Ctx,
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000206 const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000207
Rafael Espindolab1863912015-04-30 21:10:06 +0000208 const MCSectionELF *createStringTable(MCContext &Ctx);
Rafael Espindola29abd972011-12-22 03:38:00 +0000209
Craig Topper34a61bc2014-03-08 07:02:02 +0000210 void ExecutePostLayoutBinding(MCAssembler &Asm,
211 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000212
Rafael Espindola1aa20fc2015-05-21 19:46:39 +0000213 void writeSectionHeader(const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000214 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +0000215 const SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000216
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000217 void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000218 const MCAsmLayout &Layout);
219
Rafael Espindola29abd972011-12-22 03:38:00 +0000220 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000221 uint64_t Address, uint64_t Offset, uint64_t Size,
222 uint32_t Link, uint32_t Info, uint64_t Alignment,
223 uint64_t EntrySize);
Rafael Espindola29abd972011-12-22 03:38:00 +0000224
Rafael Espindola34948e52015-04-30 00:45:46 +0000225 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000226
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000227 bool IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
228 const MCSymbol &SymA,
229 const MCFragment &FB,
230 bool InSet,
231 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000232
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +0000233 bool isWeak(const MCSymbol &Sym) const override;
Rafael Espindolaf275ad82015-03-25 13:16:53 +0000234
Craig Topper34a61bc2014-03-08 07:02:02 +0000235 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindolae92c1bf2015-05-21 19:42:35 +0000236 void writeSection(const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola28687582015-05-21 19:36:43 +0000237 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
Rafael Espindola29abd972011-12-22 03:38:00 +0000238 const MCSectionELF &Section);
239 };
240}
241
Rafael Espindola08850b32015-05-25 21:56:55 +0000242unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000243 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000244 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000245 return SectionTable.size();
246}
247
Rafael Espindola10be0832014-03-25 23:44:25 +0000248void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000249 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000250 return;
251
Rafael Espindola91fd2772015-04-29 21:09:32 +0000252 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000253}
254
Rafael Espindola91fd2772015-04-29 21:09:32 +0000255template <typename T> void SymbolTableWriter::write(T Value) {
256 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000257}
258
Rafael Espindola91fd2772015-04-29 21:09:32 +0000259SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
260 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000261
262void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
263 uint64_t size, uint8_t other,
264 uint32_t shndx, bool Reserved) {
265 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
266
267 if (LargeIndex)
268 createSymtabShndx();
269
Rafael Espindola91fd2772015-04-29 21:09:32 +0000270 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000271 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000272 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000273 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000274 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000275 }
276
277 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
278
Rafael Espindola10be0832014-03-25 23:44:25 +0000279 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000280 write(name); // st_name
281 write(info); // st_info
282 write(other); // st_other
283 write(Index); // st_shndx
284 write(value); // st_value
285 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000286 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000287 write(name); // st_name
288 write(uint32_t(value)); // st_value
289 write(uint32_t(size)); // st_size
290 write(info); // st_info
291 write(other); // st_other
292 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000293 }
294
295 ++NumWritten;
296}
297
Jan Sjödin30a52de2011-02-28 21:45:04 +0000298bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
299 const MCFixupKindInfo &FKI =
300 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
301
302 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
303}
304
Jason W Kim96f4c012010-11-15 16:18:39 +0000305ELFObjectWriter::~ELFObjectWriter()
306{}
307
Matt Fleming6c1ad482010-08-16 18:57:57 +0000308// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000309void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000310 // ELF Header
311 // ----------
312 //
313 // Note
314 // ----
315 // emitWord method behaves differently for ELF32 and ELF64, writing
316 // 4 bytes in the former and 8 in the latter.
317
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000318 WriteBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000319
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000320 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000321
322 // e_ident[EI_DATA]
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000323 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000324
325 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000326 // e_ident[EI_OSABI]
Rafael Espindola1ad40952011-12-21 17:00:36 +0000327 Write8(TargetObjectWriter->getOSABI());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000328 Write8(0); // e_ident[EI_ABIVERSION]
329
330 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
331
332 Write16(ELF::ET_REL); // e_type
333
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000334 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000335
336 Write32(ELF::EV_CURRENT); // e_version
337 WriteWord(0); // e_entry, no entry point in .o file
338 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000339 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000340
Jason W Kim4761fba2011-02-04 21:41:11 +0000341 // e_flags = whatever the target wants
Jack Carter1bd90ff2013-01-30 02:09:52 +0000342 Write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000343
344 // e_ehsize = ELF header size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000345 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000346
347 Write16(0); // e_phentsize = prog header entry size
348 Write16(0); // e_phnum = # prog header entries = 0
349
350 // e_shentsize = Section header entry size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000351 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000352
353 // e_shnum = # of section header ents
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000354 Write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000355
356 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola5960cee2015-05-22 23:58:30 +0000357 assert(StringTableIndex < ELF::SHN_LORESERVE);
358 Write16(StringTableIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000359}
360
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000361uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000362 const MCAsmLayout &Layout) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000363 if (Sym.isCommon() && Sym.isExternal())
Rafael Espindola14672502015-05-29 17:48:04 +0000364 return Sym.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000365
Rafael Espindolafee224f2014-04-30 21:51:13 +0000366 uint64_t Res;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000367 if (!Layout.getSymbolOffset(Sym, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000368 return 0;
369
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000370 if (Layout.getAssembler().isThumbFunc(&Sym))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000371 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000372
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000373 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000374}
375
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000376void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
377 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000378 // The presence of symbol versions causes undefined symbols and
379 // versions declared with @@@ to be renamed.
380
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000381 for (const MCSymbol &Alias : Asm.symbols()) {
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000382 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000383 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000384 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000385 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
386 if (!Ref)
387 continue;
388 const MCSymbol &Symbol = Ref->getSymbol();
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000389
Benjamin Kramer14807272010-10-27 19:53:52 +0000390 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000391 size_t Pos = AliasName.find('@');
392 if (Pos == StringRef::npos)
393 continue;
394
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000395 // Aliases defined with .symvar copy the binding from the symbol they alias.
396 // This is the first place we are able to copy this information.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000397 Alias.setExternal(Symbol.isExternal());
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000398 MCELF::SetBinding(Alias, MCELF::GetBinding(Symbol));
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000399
Benjamin Kramer14807272010-10-27 19:53:52 +0000400 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000401 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
402 continue;
403
Rafael Espindola26496e62010-10-27 17:56:18 +0000404 // FIXME: produce a better error message.
405 if (Symbol.isUndefined() && Rest.startswith("@@") &&
406 !Rest.startswith("@@@"))
407 report_fatal_error("A @@ version cannot be undefined");
408
Benjamin Kramer14807272010-10-27 19:53:52 +0000409 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000410 }
411}
412
Roman Divacky5a1c5492014-01-07 20:17:03 +0000413static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
414 uint8_t Type = newType;
415
416 // Propagation rules:
417 // IFUNC > FUNC > OBJECT > NOTYPE
418 // TLS_OBJECT > OBJECT > NOTYPE
419 //
420 // dont let the new type degrade the old type
421 switch (origType) {
422 default:
423 break;
424 case ELF::STT_GNU_IFUNC:
425 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
426 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
427 Type = ELF::STT_GNU_IFUNC;
428 break;
429 case ELF::STT_FUNC:
430 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
431 Type == ELF::STT_TLS)
432 Type = ELF::STT_FUNC;
433 break;
434 case ELF::STT_OBJECT:
435 if (Type == ELF::STT_NOTYPE)
436 Type = ELF::STT_OBJECT;
437 break;
438 case ELF::STT_TLS:
439 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
440 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
441 Type = ELF::STT_TLS;
442 break;
443 }
444
445 return Type;
446}
447
Rafael Espindolae48421f2015-05-28 20:25:29 +0000448void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
449 uint32_t StringIndex, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000450 const MCAsmLayout &Layout) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000451 const MCSymbol &Symbol = *MSD.Symbol;
452 assert((!Symbol.getFragment() ||
453 (Symbol.getFragment()->getParent() == &Symbol.getSection())) &&
David Blaikieb5956d22014-04-19 00:50:15 +0000454 "The symbol's section doesn't match the fragment's symbol");
Rafael Espindolaa8695762015-06-02 00:25:12 +0000455 const MCSymbolELF *Base =
456 cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol));
Rafael Espindola85a84912014-03-26 00:16:43 +0000457
458 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
459 // SHN_COMMON.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000460 bool IsReserved = !Base || Symbol.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000461
Jack Carter2f8d9d92013-02-19 21:57:35 +0000462 // Binding and Type share the same byte as upper and lower nibbles
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000463 uint8_t Binding = MCELF::GetBinding(Symbol);
464 uint8_t Type = MCELF::GetType(Symbol);
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000465 if (Base) {
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000466 Type = mergeTypeForSet(Type, MCELF::GetType(*Base));
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000467 }
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000468 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000469
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000470 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000471 // 2 bits
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000472 uint8_t Visibility = MCELF::GetVisibility(Symbol);
473 uint8_t Other = MCELF::getOther(Symbol) << (ELF_STO_Shift - ELF_STV_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000474 Other |= Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000475
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000476 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000477 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000478
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000479 const MCExpr *ESize = MSD.Symbol->getSize();
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000480 if (!ESize && Base)
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000481 ESize = Base->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000482
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000483 if (ESize) {
484 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000485 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000486 report_fatal_error("Size expression must be absolute.");
487 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000488 }
489
490 // Write out the symbol table entry
Rafael Espindolae48421f2015-05-28 20:25:29 +0000491 Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
492 IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000493}
494
Rafael Espindola5904e122014-03-29 06:26:49 +0000495// It is always valid to create a relocation with a symbol. It is preferable
496// to use a relocation with a section if that is possible. Using the section
497// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000498bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
499 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000500 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000501 unsigned Type) const {
502 // A PCRel relocation to an absolute value has no symbol (or section). We
503 // represent that with a relocation to a null section.
504 if (!RefA)
505 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000506
Rafael Espindola5904e122014-03-29 06:26:49 +0000507 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
508 switch (Kind) {
509 default:
510 break;
511 // The .odp creation emits a relocation against the symbol ".TOC." which
512 // create a R_PPC64_TOC relocation. However the relocation symbol name
513 // in final object creation should be NULL, since the symbol does not
514 // really exist, it is just the reference to TOC base for the current
515 // object file. Since the symbol is undefined, returning false results
516 // in a relocation with a null section which is the desired result.
517 case MCSymbolRefExpr::VK_PPC_TOCBASE:
518 return false;
519
520 // These VariantKind cause the relocation to refer to something other than
521 // the symbol itself, like a linker generated table. Since the address of
522 // symbol is not relevant, we cannot replace the symbol with the
523 // section and patch the difference in the addend.
524 case MCSymbolRefExpr::VK_GOT:
525 case MCSymbolRefExpr::VK_PLT:
526 case MCSymbolRefExpr::VK_GOTPCREL:
527 case MCSymbolRefExpr::VK_Mips_GOT:
528 case MCSymbolRefExpr::VK_PPC_GOT_LO:
529 case MCSymbolRefExpr::VK_PPC_GOT_HI:
530 case MCSymbolRefExpr::VK_PPC_GOT_HA:
531 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000532 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000533
Rafael Espindola5904e122014-03-29 06:26:49 +0000534 // An undefined symbol is not in any section, so the relocation has to point
535 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000536 assert(Sym && "Expected a symbol");
537 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000538 return true;
539
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000540 unsigned Binding = MCELF::GetBinding(*Sym);
Rafael Espindola5904e122014-03-29 06:26:49 +0000541 switch(Binding) {
542 default:
543 llvm_unreachable("Invalid Binding");
544 case ELF::STB_LOCAL:
545 break;
546 case ELF::STB_WEAK:
547 // If the symbol is weak, it might be overridden by a symbol in another
548 // file. The relocation has to point to the symbol so that the linker
549 // can update it.
550 return true;
551 case ELF::STB_GLOBAL:
552 // Global ELF symbols can be preempted by the dynamic linker. The relocation
553 // has to point to the symbol for a reason analogous to the STB_WEAK case.
554 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000555 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000556
Rafael Espindola5904e122014-03-29 06:26:49 +0000557 // If a relocation points to a mergeable section, we have to be careful.
558 // If the offset is zero, a relocation with the section will encode the
559 // same information. With a non-zero offset, the situation is different.
560 // For example, a relocation can point 42 bytes past the end of a string.
561 // If we change such a relocation to use the section, the linker would think
562 // that it pointed to another string and subtracting 42 at runtime will
563 // produce the wrong value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000564 auto &Sec = cast<MCSectionELF>(Sym->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000565 unsigned Flags = Sec.getFlags();
566 if (Flags & ELF::SHF_MERGE) {
567 if (C != 0)
568 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000569
570 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
571 // only handle section relocations to mergeable sections if using RELA.
572 if (!hasRelocationAddend())
573 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000574 }
575
Rafael Espindola5904e122014-03-29 06:26:49 +0000576 // Most TLS relocations use a got, so they need the symbol. Even those that
Rafael Espindola11527a12014-10-06 12:33:27 +0000577 // are just an offset (@tpoff), require a symbol in gold versions before
578 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
579 // http://sourceware.org/PR16773.
Rafael Espindola5904e122014-03-29 06:26:49 +0000580 if (Flags & ELF::SHF_TLS)
581 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000582
Rafael Espindola9ef84412014-04-11 19:18:01 +0000583 // If the symbol is a thumb function the final relocation must set the lowest
584 // bit. With a symbol that is done by just having the symbol have that bit
585 // set, so we would lose the bit if we relocated with the section.
586 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000587 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000588 return true;
589
Rafael Espindolaece40ca2015-05-29 18:26:09 +0000590 if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000591 return true;
592 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000593}
594
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000595static const MCSymbol *getWeakRef(const MCSymbolRefExpr &Ref) {
596 const MCSymbol &Sym = Ref.getSymbol();
597
598 if (Ref.getKind() == MCSymbolRefExpr::VK_WEAKREF)
599 return &Sym;
600
601 if (!Sym.isVariable())
602 return nullptr;
603
604 const MCExpr *Expr = Sym.getVariableValue();
605 const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr);
606 if (!Inner)
607 return nullptr;
608
609 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF)
610 return &Inner->getSymbol();
611 return nullptr;
612}
613
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000614// True if the assembler knows nothing about the final value of the symbol.
615// This doesn't cover the comdat issues, since in those cases the assembler
616// can at least know that all symbols in the section will move together.
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000617static bool isWeak(const MCSymbol &Sym) {
618 if (MCELF::GetType(Sym) == ELF::STT_GNU_IFUNC)
Rafael Espindolaa635d832015-04-17 08:46:11 +0000619 return true;
620
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000621 switch (MCELF::GetBinding(Sym)) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000622 default:
623 llvm_unreachable("Unknown binding");
624 case ELF::STB_LOCAL:
625 return false;
626 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000627 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000628 case ELF::STB_WEAK:
629 case ELF::STB_GNU_UNIQUE:
630 return true;
631 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000632}
633
Rafael Espindola26585542015-01-19 21:11:14 +0000634void ELFObjectWriter::RecordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000635 const MCAsmLayout &Layout,
636 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000637 const MCFixup &Fixup, MCValue Target,
638 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola7549f872015-05-26 00:36:57 +0000639 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000640 uint64_t C = Target.getConstant();
641 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000642
Rafael Espindola5904e122014-03-29 06:26:49 +0000643 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
644 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
645 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000646
Rafael Espindola5904e122014-03-29 06:26:49 +0000647 // Let A, B and C being the components of Target and R be the location of
648 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
649 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000650
Rafael Espindola5904e122014-03-29 06:26:49 +0000651 // In general, ELF has no relocations for -B. It can only represent (A + C)
652 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
653 // replace B to implement it: (A - R - K + C)
654 if (IsPCRel)
Jim Grosbach6f482002015-05-18 18:43:14 +0000655 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000656 Fixup.getLoc(),
657 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000658
Rafael Espindola5904e122014-03-29 06:26:49 +0000659 const MCSymbol &SymB = RefB->getSymbol();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000660
Rafael Espindola5904e122014-03-29 06:26:49 +0000661 if (SymB.isUndefined())
Jim Grosbach6f482002015-05-18 18:43:14 +0000662 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000663 Fixup.getLoc(),
664 Twine("symbol '") + SymB.getName() +
665 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000666
Rafael Espindola5904e122014-03-29 06:26:49 +0000667 assert(!SymB.isAbsolute() && "Should have been folded");
668 const MCSection &SecB = SymB.getSection();
Rafael Espindola34948e52015-04-30 00:45:46 +0000669 if (&SecB != &FixupSection)
Jim Grosbach6f482002015-05-18 18:43:14 +0000670 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000671 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000672
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000673 if (::isWeak(SymB))
Jim Grosbach6f482002015-05-18 18:43:14 +0000674 Asm.getContext().reportFatalError(
Rafael Espindolac9e70682015-03-24 23:48:44 +0000675 Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
676
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000677 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000678 uint64_t K = SymBOffset - FixupOffset;
679 IsPCRel = true;
680 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000681 }
682
Rafael Espindola5904e122014-03-29 06:26:49 +0000683 // We either rejected the fixup or folded B into C at this point.
684 const MCSymbolRefExpr *RefA = Target.getSymA();
685 const MCSymbol *SymA = RefA ? &RefA->getSymbol() : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000686
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000687 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000688 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000689 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000690 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000691
692 uint64_t Addend = 0;
693 if (hasRelocationAddend()) {
694 Addend = C;
695 C = 0;
696 }
697
698 FixedValue = C;
699
Rafael Espindola5904e122014-03-29 06:26:49 +0000700 if (!RelocateWithSymbol) {
701 const MCSection *SecA =
702 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000703 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
Rafael Espindola2f9bdd82015-05-27 20:52:32 +0000704 const MCSymbol *SectionSymbol = ELFSec ? ELFSec->getBeginSymbol() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000705 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000706 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000707 return;
708 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000709
Rafael Espindola5904e122014-03-29 06:26:49 +0000710 if (SymA) {
711 if (const MCSymbol *R = Renames.lookup(SymA))
712 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000713
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000714 if (const MCSymbol *WeakRef = getWeakRef(*RefA))
715 WeakrefUsedInReloc.insert(WeakRef);
Rafael Espindola5904e122014-03-29 06:26:49 +0000716 else
717 UsedInReloc.insert(SymA);
718 }
719 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000720 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000721 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000722}
723
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000724bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000725 const MCSymbol &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000726 bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000727 if (Symbol.isVariable()) {
728 const MCExpr *Expr = Symbol.getVariableValue();
729 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
730 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
731 return false;
732 }
733 }
Rafael Espindola16145972010-11-01 14:28:48 +0000734
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000735 if (Used)
736 return true;
737
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000738 if (Renamed)
739 return false;
740
Rafael Espindola45834a02010-10-29 23:09:31 +0000741 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
742 return true;
743
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000744 if (Symbol.isVariable()) {
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000745 const MCSymbol *Base = Layout.getBaseSymbol(Symbol);
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000746 if (Base && Base->isUndefined())
747 return false;
748 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000749
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000750 bool IsGlobal = MCELF::GetBinding(Symbol) == ELF::STB_GLOBAL;
Rafael Espindola9e18e962011-02-23 20:22:07 +0000751 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000752 return false;
753
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000754 if (MCELF::GetType(Symbol) == ELF::STT_SECTION)
Rafael Espindola2f9bdd82015-05-27 20:52:32 +0000755 return true;
756
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000757 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000758 return false;
759
760 return true;
761}
762
Rafael Espindola10d23872015-05-29 14:20:40 +0000763bool ELFObjectWriter::isLocal(const MCSymbol &Symbol, bool IsUsedInReloc,
764 bool IsSignature) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000765 if (Symbol.isExternal())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000766 return false;
767
Rafael Espindola39f50422014-04-28 14:24:44 +0000768 if (Symbol.isDefined())
769 return true;
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000770
Rafael Espindola10d23872015-05-29 14:20:40 +0000771 if (IsUsedInReloc)
Rafael Espindolab1d07892010-10-05 18:01:23 +0000772 return false;
773
Rafael Espindola10d23872015-05-29 14:20:40 +0000774 return IsSignature;
Rafael Espindolab1d07892010-10-05 18:01:23 +0000775}
776
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000777void ELFObjectWriter::computeSymbolTable(
778 MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000779 const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
780 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000781 MCContext &Ctx = Asm.getContext();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000782 SymbolTableWriter Writer(*this, is64Bit());
783
Rafael Espindola5960cee2015-05-22 23:58:30 +0000784 // Symbol table
785 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
786 MCSectionELF *SymtabSection =
787 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
788 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
789 SymbolTableIndex = addToSectionTable(SymtabSection);
790
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000791 uint64_t Padding =
792 OffsetToAlignment(OS.tell(), SymtabSection->getAlignment());
793 WriteZeros(Padding);
794
795 uint64_t SecStart = OS.tell();
796
797 // The first entry is the undefined symbol entry.
798 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
799
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000800 std::vector<ELFSymbolData> LocalSymbolData;
801 std::vector<ELFSymbolData> ExternalSymbolData;
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000802
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000803 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000804 bool HasLargeSectionIndex = false;
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000805 for (const MCSymbol &Symbol : Asm.symbols()) {
Rafael Espindola16145972010-11-01 14:28:48 +0000806 bool Used = UsedInReloc.count(&Symbol);
807 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000808 bool isSignature = RevGroupMap.count(&Symbol);
809
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000810 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000811 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000812 continue;
813
Matt Fleming6c1ad482010-08-16 18:57:57 +0000814 ELFSymbolData MSD;
Rafael Espindolaa8695762015-06-02 00:25:12 +0000815 MSD.Symbol = cast<MCSymbolELF>(&Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000816
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000817 // Undefined symbols are global, but this is the first place we
818 // are able to set it.
Rafael Espindola10d23872015-05-29 14:20:40 +0000819 bool Local = isLocal(Symbol, Used, isSignature);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000820 if (!Local && MCELF::GetBinding(Symbol) == ELF::STB_LOCAL)
821 MCELF::SetBinding(Symbol, ELF::STB_GLOBAL);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000822
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000823 if (Symbol.isAbsolute()) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000824 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola14672502015-05-29 17:48:04 +0000825 } else if (Symbol.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000826 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000827 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000828 } else if (Symbol.isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000829 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000830 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000831 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
832 HasLargeSectionIndex = true;
833 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000834 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000835 }
Rafael Espindola022bb762014-03-24 03:43:21 +0000836 if (!Used && WeakrefUsed)
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000837 MCELF::SetBinding(Symbol, ELF::STB_WEAK);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000838 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000839 const MCSectionELF &Section =
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000840 static_cast<const MCSectionELF &>(Symbol.getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000841 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000842 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000843 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
844 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000845 }
846
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000847 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
848 // in defined ones.
849 //
850 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000851 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000852 // trivial.
853 //
854 // We thus have to be careful to not perform the symbol version replacement
855 // blindly:
856 //
857 // The ELF format is used on Windows by the MCJIT engine. Thus, on
858 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
859 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
860 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
861 // the EFLObjectWriter should not interpret the "@@@" sub-string as
862 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
863 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
864 // "__imp_?" or "__imp_@?".
865 //
866 // It would have been interesting to perform the MS mangling prefix check
867 // only when the target triple is of the form *-pc-windows-elf. But, it
868 // seems that this information is not easily accessible from the
869 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000870 StringRef Name = Symbol.getName();
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000871 if (!Name.startswith("?") && !Name.startswith("@?") &&
872 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
873 // This symbol isn't following the MSVC C++ name mangling convention. We
874 // can thus safely interpret the @@@ in symbol names as specifying symbol
875 // versioning.
876 SmallString<32> Buf;
877 size_t Pos = Name.find("@@@");
878 if (Pos != StringRef::npos) {
879 Buf += Name.substr(0, Pos);
880 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
881 Buf += Name.substr(Pos + Skip);
882 Name = Buf;
883 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000884 }
Rafael Espindolab6613022014-10-17 01:48:58 +0000885
886 // Sections have their own string table
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000887 if (MCELF::GetType(Symbol) != ELF::STT_SECTION)
Rafael Espindolab6613022014-10-17 01:48:58 +0000888 MSD.Name = StrTabBuilder.add(Name);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000889
Rafael Espindola10d23872015-05-29 14:20:40 +0000890 if (Local)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000891 LocalSymbolData.push_back(MSD);
892 else
893 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000894 }
895
Rafael Espindola5960cee2015-05-22 23:58:30 +0000896 if (HasLargeSectionIndex) {
897 MCSectionELF *SymtabShndxSection =
898 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
899 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
900 SymtabShndxSection->setAlignment(4);
901 }
902
Rafael Espindola1fd36272015-05-28 19:29:15 +0000903 ArrayRef<std::string> FileNames = Asm.getFileNames();
904 for (const std::string &Name : FileNames)
Rafael Espindola66f3c9c2015-05-28 18:03:20 +0000905 StrTabBuilder.add(Name);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000906
Hans Wennborgf26bfc12014-09-29 22:43:20 +0000907 StrTabBuilder.finalize(StringTableBuilder::ELF);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000908
Rafael Espindola0cbea292015-05-28 20:00:13 +0000909 for (const std::string &Name : FileNames)
910 Writer.writeSymbol(StrTabBuilder.getOffset(Name),
911 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
912 ELF::SHN_ABS, true);
913
Matt Fleming6c1ad482010-08-16 18:57:57 +0000914 // Symbols are required to be in lexicographic order.
915 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
916 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000917
918 // Set the symbol indices. Local symbols must come before all other
919 // symbols with non-local bindings.
Rafael Espindola1fd36272015-05-28 19:29:15 +0000920 unsigned Index = FileNames.size() + 1;
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000921
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000922 for (ELFSymbolData &MSD : LocalSymbolData) {
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000923 unsigned StringIndex = MCELF::GetType(*MSD.Symbol) == ELF::STT_SECTION
924 ? 0
925 : StrTabBuilder.getOffset(MSD.Name);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000926 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000927 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000928 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000929
930 // Write the symbol table entries.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000931 LastLocalSymbolIndex = Index;
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000932
Rafael Espindoladcda9972015-05-28 19:43:20 +0000933 for (ELFSymbolData &MSD : ExternalSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000934 unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
Rafael Espindola0cbea292015-05-28 20:00:13 +0000935 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000936 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000937 assert(MCELF::GetBinding(*MSD.Symbol) != ELF::STB_LOCAL);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000938 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000939
940 uint64_t SecEnd = OS.tell();
941 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
942
943 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
944 if (ShndxIndexes.empty()) {
945 assert(SymtabShndxSectionIndex == 0);
946 return;
947 }
948 assert(SymtabShndxSectionIndex != 0);
949
950 SecStart = OS.tell();
951 const MCSectionELF *SymtabShndxSection =
952 SectionTable[SymtabShndxSectionIndex - 1];
953 for (uint32_t Index : ShndxIndexes)
954 write(Index);
955 SecEnd = OS.tell();
956 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000957}
958
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000959MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000960ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +0000961 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000962 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +0000963 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000964
Rafael Espindola34948e52015-04-30 00:45:46 +0000965 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +0000966 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
967 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +0000968
Rafael Espindolaead85492015-02-17 20:31:13 +0000969 unsigned EntrySize;
970 if (hasRelocationAddend())
971 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
972 else
973 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000974
Rafael Espindolaead85492015-02-17 20:31:13 +0000975 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +0000976 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +0000977 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +0000978
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000979 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +0000980 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +0000981 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000982 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +0000983 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000984}
Matt Fleming6c1ad482010-08-16 18:57:57 +0000985
David Blaikiee06e8012014-04-11 22:11:50 +0000986static SmallVector<char, 128>
Rafael Espindolaae7e4992015-04-29 19:20:10 +0000987getUncompressedData(const MCAsmLayout &Layout,
Rafael Espindolaa32d0e92015-05-27 15:14:11 +0000988 const MCSection::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +0000989 SmallVector<char, 128> UncompressedData;
990 for (const MCFragment &F : Fragments) {
991 const SmallVectorImpl<char> *Contents;
992 switch (F.getKind()) {
993 case MCFragment::FT_Data:
994 Contents = &cast<MCDataFragment>(F).getContents();
995 break;
996 case MCFragment::FT_Dwarf:
997 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
998 break;
999 case MCFragment::FT_DwarfFrame:
1000 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
1001 break;
1002 default:
1003 llvm_unreachable(
1004 "Not expecting any other fragment types in a debug_* section");
1005 }
1006 UncompressedData.append(Contents->begin(), Contents->end());
1007 }
1008 return UncompressedData;
1009}
1010
1011// Include the debug info compression header:
1012// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
1013// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +00001014static bool
David Blaikiee06e8012014-04-11 22:11:50 +00001015prependCompressionHeader(uint64_t Size,
1016 SmallVectorImpl<char> &CompressedContents) {
Benjamin Kramer7149aab2015-03-01 18:09:56 +00001017 const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +00001018 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
1019 return false;
David Blaikie8019bf82014-04-10 21:53:53 +00001020 if (sys::IsLittleEndianHost)
Artyom Skrobov9aea8432014-06-14 13:18:07 +00001021 sys::swapByteOrder(Size);
David Blaikie8019bf82014-04-10 21:53:53 +00001022 CompressedContents.insert(CompressedContents.begin(),
1023 Magic.size() + sizeof(Size), 0);
1024 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
1025 std::copy(reinterpret_cast<char *>(&Size),
1026 reinterpret_cast<char *>(&Size + 1),
1027 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +00001028 return true;
David Blaikie8019bf82014-04-10 21:53:53 +00001029}
1030
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001031void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +00001032 const MCAsmLayout &Layout) {
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001033 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001034 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +00001035
Rafael Espindola868b3f42015-04-30 21:51:58 +00001036 // Compressing debug_frame requires handling alignment fragments which is
1037 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1038 // for writing to arbitrary buffers) for little benefit.
1039 if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
1040 !SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001041 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001042 return;
1043 }
1044
1045 // Gather the uncompressed data from all the fragments.
Rafael Espindolaa32d0e92015-05-27 15:14:11 +00001046 const MCSection::FragmentListType &Fragments = Section.getFragmentList();
David Blaikie8019bf82014-04-10 21:53:53 +00001047 SmallVector<char, 128> UncompressedData =
1048 getUncompressedData(Layout, Fragments);
1049
Rafael Espindola868b3f42015-04-30 21:51:58 +00001050 SmallVector<char, 128> CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001051 zlib::Status Success = zlib::compress(
1052 StringRef(UncompressedData.data(), UncompressedData.size()),
1053 CompressedContents);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001054 if (Success != zlib::StatusOK) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001055 Asm.writeSectionData(&Section, Layout);
David Blaikie8019bf82014-04-10 21:53:53 +00001056 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001057 }
David Blaikie8019bf82014-04-10 21:53:53 +00001058
Rafael Espindola868b3f42015-04-30 21:51:58 +00001059 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001060 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001061 return;
1062 }
David Blaikie8019bf82014-04-10 21:53:53 +00001063 Asm.getContext().renameELFSection(&Section,
1064 (".z" + SectionName.drop_front(1)).str());
Rafael Espindola868b3f42015-04-30 21:51:58 +00001065 OS << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001066}
1067
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001068void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1069 uint64_t Flags, uint64_t Address,
1070 uint64_t Offset, uint64_t Size,
1071 uint32_t Link, uint32_t Info,
1072 uint64_t Alignment,
1073 uint64_t EntrySize) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001074 Write32(Name); // sh_name: index into string table
1075 Write32(Type); // sh_type
1076 WriteWord(Flags); // sh_flags
1077 WriteWord(Address); // sh_addr
1078 WriteWord(Offset); // sh_offset
1079 WriteWord(Size); // sh_size
1080 Write32(Link); // sh_link
1081 Write32(Info); // sh_info
1082 WriteWord(Alignment); // sh_addralign
1083 WriteWord(EntrySize); // sh_entsize
1084}
1085
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001086void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001087 const MCSectionELF &Sec) {
1088 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001089
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001090 // Sort the relocation entries. Most targets just sort by Offset, but some
1091 // (e.g., MIPS) have additional constraints.
1092 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001093
1094 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001095 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001096 unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001097
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001098 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001099 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001100 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001101 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001102
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001103 write(TargetObjectWriter->getRSsym(Entry.Type));
1104 write(TargetObjectWriter->getRType3(Entry.Type));
1105 write(TargetObjectWriter->getRType2(Entry.Type));
1106 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001107 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001108 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001109 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001110 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001111 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001112 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001113 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001114 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001115 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001116
Rafael Espindolabce26a12010-10-05 15:11:03 +00001117 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001118 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001119 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001120
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001121 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001122 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001123 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001124 }
1125}
1126
Rafael Espindolab1863912015-04-30 21:10:06 +00001127const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001128 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
Rafael Espindola88abc392015-04-29 20:34:31 +00001129 OS << StrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001130 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001131}
1132
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001133void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1134 uint32_t GroupSymbolIndex, uint64_t Offset,
1135 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001136 uint64_t sh_link = 0;
1137 uint64_t sh_info = 0;
1138
1139 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001140 default:
1141 // Nothing to do.
1142 break;
1143
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001144 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001145 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001146
1147 case ELF::SHT_REL:
1148 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001149 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001150 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001151 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001152 sh_info = SectionIndexMap.lookup(InfoSection);
1153 break;
1154 }
1155
1156 case ELF::SHT_SYMTAB:
1157 case ELF::SHT_DYNSYM:
1158 sh_link = StringTableIndex;
1159 sh_info = LastLocalSymbolIndex;
1160 break;
1161
1162 case ELF::SHT_SYMTAB_SHNDX:
1163 sh_link = SymbolTableIndex;
1164 break;
1165
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001166 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001167 sh_link = SymbolTableIndex;
1168 sh_info = GroupSymbolIndex;
1169 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001170 }
1171
Logan Chien4b724422013-02-05 14:18:59 +00001172 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001173 Section.getType() == ELF::SHT_ARM_EXIDX)
1174 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001175
Rafael Espindola5960cee2015-05-22 23:58:30 +00001176 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001177 Section.getType(), Section.getFlags(), 0, Offset, Size,
1178 sh_link, sh_info, Section.getAlignment(),
1179 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001180}
1181
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001182void ELFObjectWriter::writeSectionHeader(
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001183 const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001184 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001185 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001186 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001187
Matt Fleming6c1ad482010-08-16 18:57:57 +00001188 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001189 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001190 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001191 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001192
Rafael Espindola08850b32015-05-25 21:56:55 +00001193 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001194 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001195 unsigned Type = Section->getType();
1196 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001197 GroupSymbolIndex = 0;
1198 else
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001199 GroupSymbolIndex = Section->getGroup()->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001200
Rafael Espindolabda19802015-04-30 14:21:49 +00001201 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001202 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001203 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001204 if (Type == ELF::SHT_NOBITS)
1205 Size = Layout.getSectionAddressSize(Section);
1206 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001207 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001208
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001209 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001210 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001211 }
1212}
1213
Rafael Espindola1557fd62011-03-20 18:44:20 +00001214void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1215 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001216 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001217 MCSectionELF *StrtabSection =
1218 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1219 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001220
Rafael Espindola1557fd62011-03-20 18:44:20 +00001221 RevGroupMapTy RevGroupMap;
1222 SectionIndexMapTy SectionIndexMap;
1223
Rafael Espindolabda19802015-04-30 14:21:49 +00001224 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001225
Rafael Espindola1557fd62011-03-20 18:44:20 +00001226 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001227 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001228
Rafael Espindola7230f802015-04-08 11:41:24 +00001229 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001230 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001231 std::vector<MCSectionELF *> Groups;
1232 std::vector<MCSectionELF *> Relocations;
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001233 for (MCSection &Sec : Asm) {
1234 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindolabda19802015-04-30 14:21:49 +00001235
Rafael Espindola967d6a62015-05-21 21:02:35 +00001236 uint64_t Padding = OffsetToAlignment(OS.tell(), Section.getAlignment());
Rafael Espindola642a2212015-04-14 22:54:16 +00001237 WriteZeros(Padding);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001238
Rafael Espindola642a2212015-04-14 22:54:16 +00001239 // Remember the offset into the file for this section.
Rafael Espindolab6417502015-04-28 15:04:09 +00001240 uint64_t SecStart = OS.tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001241
Rafael Espindolabda19802015-04-30 14:21:49 +00001242 const MCSymbol *SignatureSymbol = Section.getGroup();
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001243 writeSectionData(Asm, Section, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001244
Rafael Espindolab6417502015-04-28 15:04:09 +00001245 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001246 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1247
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001248 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001249
1250 if (SignatureSymbol) {
Rafael Espindolab5d316b2015-05-29 20:21:02 +00001251 Asm.registerSymbol(*SignatureSymbol);
Rafael Espindolabda19802015-04-30 14:21:49 +00001252 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1253 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001254 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001255 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001256 Group->setAlignment(4);
1257 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001258 }
1259 GroupMembers[SignatureSymbol].push_back(&Section);
1260 if (RelSection)
1261 GroupMembers[SignatureSymbol].push_back(RelSection);
1262 }
1263
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001264 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001265 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001266 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001267 Relocations.push_back(RelSection);
1268 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001269 }
1270
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001271 for (MCSectionELF *Group : Groups) {
1272 uint64_t Padding = OffsetToAlignment(OS.tell(), Group->getAlignment());
1273 WriteZeros(Padding);
1274
1275 // Remember the offset into the file for this section.
1276 uint64_t SecStart = OS.tell();
1277
1278 const MCSymbol *SignatureSymbol = Group->getGroup();
1279 assert(SignatureSymbol);
1280 write(uint32_t(ELF::GRP_COMDAT));
1281 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1282 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1283 write(SecIndex);
1284 }
1285
1286 uint64_t SecEnd = OS.tell();
1287 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1288 }
1289
1290 // Compute symbol table information.
Rafael Espindolaaa486e92015-05-28 17:54:01 +00001291 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001292
1293 for (MCSectionELF *RelSection : Relocations) {
1294 uint64_t Padding = OffsetToAlignment(OS.tell(), RelSection->getAlignment());
1295 WriteZeros(Padding);
1296
1297 // Remember the offset into the file for this section.
1298 uint64_t SecStart = OS.tell();
1299
1300 writeRelocations(Asm, *RelSection->getAssociatedSection());
1301
1302 uint64_t SecEnd = OS.tell();
1303 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001304 }
1305
Rafael Espindola88d1f632015-04-29 20:25:24 +00001306 {
1307 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001308 const MCSectionELF *Sec = createStringTable(Ctx);
Rafael Espindola88abc392015-04-29 20:34:31 +00001309 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001310 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001311 }
1312
Rafael Espindola642a2212015-04-14 22:54:16 +00001313 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001314 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001315 WriteZeros(Padding);
1316
Rafael Espindola642a2212015-04-14 22:54:16 +00001317 const unsigned SectionHeaderOffset = OS.tell();
1318
Rafael Espindola1557fd62011-03-20 18:44:20 +00001319 // ... then the section header table ...
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001320 writeSectionHeader(Asm, Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001321
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001322 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001323 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001324 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001325 if (sys::IsLittleEndianHost != IsLittleEndian)
1326 sys::swapByteOrder(NumSections);
1327 unsigned NumSectionsOffset;
1328
Rafael Espindola642a2212015-04-14 22:54:16 +00001329 if (is64Bit()) {
1330 uint64_t Val = SectionHeaderOffset;
1331 if (sys::IsLittleEndianHost != IsLittleEndian)
1332 sys::swapByteOrder(Val);
1333 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1334 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001335 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001336 } else {
1337 uint32_t Val = SectionHeaderOffset;
1338 if (sys::IsLittleEndianHost != IsLittleEndian)
1339 sys::swapByteOrder(Val);
1340 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1341 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001342 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001343 }
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001344 OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
1345 NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001346}
1347
Rafael Espindola94a88d72015-04-06 15:27:57 +00001348bool ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001349 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001350 bool InSet, bool IsPCRel) const {
1351 if (IsPCRel) {
1352 assert(!InSet);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001353 if (::isWeak(SymA))
Rafael Espindola35d61892015-04-17 21:15:17 +00001354 return false;
1355 }
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001356 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001357 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001358}
1359
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +00001360bool ELFObjectWriter::isWeak(const MCSymbol &Sym) const {
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001361 if (::isWeak(Sym))
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001362 return true;
1363
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001364 // It is invalid to replace a reference to a global in a comdat
1365 // with a reference to a local since out of comdat references
1366 // to a local are forbidden.
1367 // We could try to return false for more cases, like the reference
1368 // being in the same comdat or Sym being an alias to another global,
1369 // but it is not clear if it is worth the effort.
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001370 if (MCELF::GetBinding(Sym) != ELF::STB_GLOBAL)
Rafael Espindola29c82702015-04-20 12:44:06 +00001371 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001372
Rafael Espindola29c82702015-04-20 12:44:06 +00001373 if (!Sym.isInSection())
1374 return false;
1375
1376 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1377 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001378}
1379
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001380MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001381 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001382 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001383 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001384}