blob: 18070864317ef2e70cd365b735e70b7f1a92bc42 [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);
74 static bool RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant);
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);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000078 static bool isLocal(const MCSymbol &Symbol, bool isUsedInReloc);
Rafael Espindola29abd972011-12-22 03:38:00 +000079
Rafael Espindola6cd21802015-04-07 22:35:40 +000080 /// Helper struct for containing some precomputed information on symbols.
Rafael Espindola29abd972011-12-22 03:38:00 +000081 struct ELFSymbolData {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000082 const MCSymbol *Symbol;
Rafael Espindola29abd972011-12-22 03:38:00 +000083 uint64_t StringIndex;
84 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 {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000089 unsigned LHSType = MCELF::GetType(Symbol->getData());
90 unsigned RHSType = MCELF::GetType(RHS.Symbol->getData());
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;
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000116 std::vector<uint64_t> FileSymbolData;
Rafael Espindola29abd972011-12-22 03:38:00 +0000117 std::vector<ELFSymbolData> LocalSymbolData;
118 std::vector<ELFSymbolData> ExternalSymbolData;
119 std::vector<ELFSymbolData> UndefinedSymbolData;
120
121 /// @}
122
123 bool NeedsGOT;
124
Rafael Espindola29abd972011-12-22 03:38:00 +0000125 // This holds the symbol table index of the last local symbol.
126 unsigned LastLocalSymbolIndex;
127 // This holds the .strtab section index.
128 unsigned StringTableIndex;
129 // This holds the .symtab section index.
130 unsigned SymbolTableIndex;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000131 // This holds the .symtab_shndx section index.
132 unsigned SymtabShndxSectionIndex = 0;
Rafael Espindola29abd972011-12-22 03:38:00 +0000133
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000134 // Sections in the order they are to be output in the section table.
Rafael Espindola08850b32015-05-25 21:56:55 +0000135 std::vector<const MCSectionELF *> SectionTable;
136 unsigned addToSectionTable(const MCSectionELF *Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000137
Rafael Espindola29abd972011-12-22 03:38:00 +0000138 // TargetObjectWriter wrappers.
Rafael Espindola29abd972011-12-22 03:38:00 +0000139 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
140 bool hasRelocationAddend() const {
141 return TargetObjectWriter->hasRelocationAddend();
142 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000143 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000144 bool IsPCRel) const {
145 return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindola29abd972011-12-22 03:38:00 +0000146 }
147
Rafael Espindola29abd972011-12-22 03:38:00 +0000148 public:
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000149 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
Rafael Espindola0ce09712014-03-25 22:43:53 +0000150 bool IsLittleEndian)
Rafael Espindola59f0e312015-04-29 21:13:30 +0000151 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW),
152 NeedsGOT(false) {}
Rafael Espindola29abd972011-12-22 03:38:00 +0000153
Yaron Keren7773a722015-03-23 18:35:01 +0000154 void reset() override {
155 UsedInReloc.clear();
156 WeakrefUsedInReloc.clear();
157 Renames.clear();
158 Relocations.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000159 StrTabBuilder.clear();
160 FileSymbolData.clear();
161 LocalSymbolData.clear();
162 ExternalSymbolData.clear();
163 UndefinedSymbolData.clear();
Yaron Kerenf3465e12015-05-13 15:17:19 +0000164 NeedsGOT = false;
165 SectionTable.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000166 MCObjectWriter::reset();
167 }
168
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000169 ~ELFObjectWriter() override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000170
171 void WriteWord(uint64_t W) {
172 if (is64Bit())
173 Write64(W);
174 else
175 Write32(W);
176 }
177
Rafael Espindola91fd2772015-04-29 21:09:32 +0000178 template <typename T> void write(T Val) {
179 if (IsLittleEndian)
180 support::endian::Writer<support::little>(OS).write(Val);
181 else
182 support::endian::Writer<support::big>(OS).write(Val);
183 }
184
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000185 void writeHeader(const MCAssembler &Asm);
Rafael Espindola29abd972011-12-22 03:38:00 +0000186
Rafael Espindola10be0832014-03-25 23:44:25 +0000187 void WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Rafael Espindola29abd972011-12-22 03:38:00 +0000188 const MCAsmLayout &Layout);
189
Rafael Espindola91fd2772015-04-29 21:09:32 +0000190 // Start and end offset of each section
Rafael Espindolabda19802015-04-30 14:21:49 +0000191 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
192 SectionOffsetsTy;
Rafael Espindola91fd2772015-04-29 21:09:32 +0000193
Rafael Espindola883dec02015-05-21 19:54:44 +0000194 void writeSymbolTable(MCContext &Ctx, const MCAsmLayout &Layout,
Rafael Espindola91fd2772015-04-29 21:09:32 +0000195 SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000196
Rafael Espindolab60c8292014-04-29 12:46:50 +0000197 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
198 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000199 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000200 unsigned Type) const;
201
Rafael Espindola26585542015-01-19 21:11:14 +0000202 void RecordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
Craig Topper34a61bc2014-03-08 07:02:02 +0000203 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000204 MCValue Target, bool &IsPCRel,
205 uint64_t &FixedValue) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000206
207 uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
208 const MCSymbol *S);
209
Rafael Espindola89feff32015-04-28 22:59:58 +0000210 // Map from a signature symbol to the group section index
211 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
Rafael Espindola29abd972011-12-22 03:38:00 +0000212
Rafael Espindola022bb762014-03-24 03:43:21 +0000213 /// Compute the symbol table data
Rafael Espindola29abd972011-12-22 03:38:00 +0000214 ///
Rafael Espindola073ee7d2012-08-27 16:04:24 +0000215 /// \param Asm - The assembler.
216 /// \param SectionIndexMap - Maps a section to its index.
217 /// \param RevGroupMap - Maps a signature symbol to the group section.
Rafael Espindola022bb762014-03-24 03:43:21 +0000218 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000219 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000220 const RevGroupMapTy &RevGroupMap);
Rafael Espindola29abd972011-12-22 03:38:00 +0000221
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000222 MCSectionELF *createRelocationSection(MCContext &Ctx,
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000223 const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000224
Rafael Espindolab1863912015-04-30 21:10:06 +0000225 const MCSectionELF *createStringTable(MCContext &Ctx);
Rafael Espindola29abd972011-12-22 03:38:00 +0000226
Craig Topper34a61bc2014-03-08 07:02:02 +0000227 void ExecutePostLayoutBinding(MCAssembler &Asm,
228 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000229
Rafael Espindola1aa20fc2015-05-21 19:46:39 +0000230 void writeSectionHeader(const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000231 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +0000232 const SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000233
Rafael Espindola868b3f42015-04-30 21:51:58 +0000234 void writeSectionData(const MCAssembler &Asm, const MCSectionData &SD,
235 const MCAsmLayout &Layout);
236
Rafael Espindola29abd972011-12-22 03:38:00 +0000237 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000238 uint64_t Address, uint64_t Offset, uint64_t Size,
239 uint32_t Link, uint32_t Info, uint64_t Alignment,
240 uint64_t EntrySize);
Rafael Espindola29abd972011-12-22 03:38:00 +0000241
Rafael Espindola34948e52015-04-30 00:45:46 +0000242 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000243
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000244 bool IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
245 const MCSymbol &SymA,
246 const MCFragment &FB,
247 bool InSet,
248 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000249
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +0000250 bool isWeak(const MCSymbol &Sym) const override;
Rafael Espindolaf275ad82015-03-25 13:16:53 +0000251
Craig Topper34a61bc2014-03-08 07:02:02 +0000252 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindolae92c1bf2015-05-21 19:42:35 +0000253 void writeSection(const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola28687582015-05-21 19:36:43 +0000254 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
Rafael Espindola29abd972011-12-22 03:38:00 +0000255 const MCSectionELF &Section);
256 };
257}
258
Rafael Espindola08850b32015-05-25 21:56:55 +0000259unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000260 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000261 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000262 return SectionTable.size();
263}
264
Rafael Espindola10be0832014-03-25 23:44:25 +0000265void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000266 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000267 return;
268
Rafael Espindola91fd2772015-04-29 21:09:32 +0000269 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000270}
271
Rafael Espindola91fd2772015-04-29 21:09:32 +0000272template <typename T> void SymbolTableWriter::write(T Value) {
273 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000274}
275
Rafael Espindola91fd2772015-04-29 21:09:32 +0000276SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
277 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000278
279void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
280 uint64_t size, uint8_t other,
281 uint32_t shndx, bool Reserved) {
282 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
283
284 if (LargeIndex)
285 createSymtabShndx();
286
Rafael Espindola91fd2772015-04-29 21:09:32 +0000287 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000288 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000289 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000290 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000291 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000292 }
293
294 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
295
Rafael Espindola10be0832014-03-25 23:44:25 +0000296 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000297 write(name); // st_name
298 write(info); // st_info
299 write(other); // st_other
300 write(Index); // st_shndx
301 write(value); // st_value
302 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000303 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000304 write(name); // st_name
305 write(uint32_t(value)); // st_value
306 write(uint32_t(size)); // st_size
307 write(info); // st_info
308 write(other); // st_other
309 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000310 }
311
312 ++NumWritten;
313}
314
Jan Sjödin30a52de2011-02-28 21:45:04 +0000315bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
316 const MCFixupKindInfo &FKI =
317 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
318
319 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
320}
321
322bool ELFObjectWriter::RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
323 switch (Variant) {
324 default:
325 return false;
326 case MCSymbolRefExpr::VK_GOT:
327 case MCSymbolRefExpr::VK_PLT:
328 case MCSymbolRefExpr::VK_GOTPCREL:
Rafael Espindola940a0ee2011-06-05 01:20:06 +0000329 case MCSymbolRefExpr::VK_GOTOFF:
Jan Sjödin30a52de2011-02-28 21:45:04 +0000330 case MCSymbolRefExpr::VK_TPOFF:
331 case MCSymbolRefExpr::VK_TLSGD:
332 case MCSymbolRefExpr::VK_GOTTPOFF:
333 case MCSymbolRefExpr::VK_INDNTPOFF:
334 case MCSymbolRefExpr::VK_NTPOFF:
335 case MCSymbolRefExpr::VK_GOTNTPOFF:
336 case MCSymbolRefExpr::VK_TLSLDM:
337 case MCSymbolRefExpr::VK_DTPOFF:
338 case MCSymbolRefExpr::VK_TLSLD:
339 return true;
340 }
341}
342
Jason W Kim96f4c012010-11-15 16:18:39 +0000343ELFObjectWriter::~ELFObjectWriter()
344{}
345
Matt Fleming6c1ad482010-08-16 18:57:57 +0000346// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000347void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000348 // ELF Header
349 // ----------
350 //
351 // Note
352 // ----
353 // emitWord method behaves differently for ELF32 and ELF64, writing
354 // 4 bytes in the former and 8 in the latter.
355
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000356 WriteBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000357
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000358 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000359
360 // e_ident[EI_DATA]
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000361 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000362
363 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000364 // e_ident[EI_OSABI]
Rafael Espindola1ad40952011-12-21 17:00:36 +0000365 Write8(TargetObjectWriter->getOSABI());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000366 Write8(0); // e_ident[EI_ABIVERSION]
367
368 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
369
370 Write16(ELF::ET_REL); // e_type
371
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000372 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000373
374 Write32(ELF::EV_CURRENT); // e_version
375 WriteWord(0); // e_entry, no entry point in .o file
376 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000377 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000378
Jason W Kim4761fba2011-02-04 21:41:11 +0000379 // e_flags = whatever the target wants
Jack Carter1bd90ff2013-01-30 02:09:52 +0000380 Write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000381
382 // e_ehsize = ELF header size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000383 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000384
385 Write16(0); // e_phentsize = prog header entry size
386 Write16(0); // e_phnum = # prog header entries = 0
387
388 // e_shentsize = Section header entry size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000389 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000390
391 // e_shnum = # of section header ents
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000392 Write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000393
394 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola5960cee2015-05-22 23:58:30 +0000395 assert(StringTableIndex < ELF::SHN_LORESERVE);
396 Write16(StringTableIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000397}
398
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000399uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000400 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000401 MCSymbolData &Data = Sym.getData();
Rafael Espindolafee224f2014-04-30 21:51:13 +0000402 if (Data.isCommon() && Data.isExternal())
403 return Data.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000404
Rafael Espindolafee224f2014-04-30 21:51:13 +0000405 uint64_t Res;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000406 if (!Layout.getSymbolOffset(Sym, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000407 return 0;
408
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000409 if (Layout.getAssembler().isThumbFunc(&Sym))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000410 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000411
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000412 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000413}
414
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000415void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
416 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000417 // The presence of symbol versions causes undefined symbols and
418 // versions declared with @@@ to be renamed.
419
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000420 for (const MCSymbol &Alias : Asm.symbols()) {
421 MCSymbolData &OriginalData = Alias.getData();
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000422
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000423 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000424 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000425 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000426 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
427 if (!Ref)
428 continue;
429 const MCSymbol &Symbol = Ref->getSymbol();
430 MCSymbolData &SD = Asm.getSymbolData(Symbol);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000431
Benjamin Kramer14807272010-10-27 19:53:52 +0000432 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000433 size_t Pos = AliasName.find('@');
434 if (Pos == StringRef::npos)
435 continue;
436
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000437 // Aliases defined with .symvar copy the binding from the symbol they alias.
438 // This is the first place we are able to copy this information.
David Blaikie583a31c2014-04-18 18:24:25 +0000439 OriginalData.setExternal(SD.isExternal());
440 MCELF::SetBinding(OriginalData, MCELF::GetBinding(SD));
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000441
Benjamin Kramer14807272010-10-27 19:53:52 +0000442 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000443 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
444 continue;
445
Rafael Espindola26496e62010-10-27 17:56:18 +0000446 // FIXME: produce a better error message.
447 if (Symbol.isUndefined() && Rest.startswith("@@") &&
448 !Rest.startswith("@@@"))
449 report_fatal_error("A @@ version cannot be undefined");
450
Benjamin Kramer14807272010-10-27 19:53:52 +0000451 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000452 }
453}
454
Roman Divacky5a1c5492014-01-07 20:17:03 +0000455static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
456 uint8_t Type = newType;
457
458 // Propagation rules:
459 // IFUNC > FUNC > OBJECT > NOTYPE
460 // TLS_OBJECT > OBJECT > NOTYPE
461 //
462 // dont let the new type degrade the old type
463 switch (origType) {
464 default:
465 break;
466 case ELF::STT_GNU_IFUNC:
467 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
468 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
469 Type = ELF::STT_GNU_IFUNC;
470 break;
471 case ELF::STT_FUNC:
472 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
473 Type == ELF::STT_TLS)
474 Type = ELF::STT_FUNC;
475 break;
476 case ELF::STT_OBJECT:
477 if (Type == ELF::STT_NOTYPE)
478 Type = ELF::STT_OBJECT;
479 break;
480 case ELF::STT_TLS:
481 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
482 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
483 Type = ELF::STT_TLS;
484 break;
485 }
486
487 return Type;
488}
489
Rafael Espindola10be0832014-03-25 23:44:25 +0000490void ELFObjectWriter::WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000491 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000492 MCSymbolData &OrigData = MSD.Symbol->getData();
David Blaikieb5956d22014-04-19 00:50:15 +0000493 assert((!OrigData.getFragment() ||
Rafael Espindola7549f872015-05-26 00:36:57 +0000494 (OrigData.getFragment()->getParent() == &MSD.Symbol->getSection())) &&
David Blaikieb5956d22014-04-19 00:50:15 +0000495 "The symbol's section doesn't match the fragment's symbol");
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000496 const MCSymbol *Base = Layout.getBaseSymbol(*MSD.Symbol);
Rafael Espindola85a84912014-03-26 00:16:43 +0000497
498 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
499 // SHN_COMMON.
500 bool IsReserved = !Base || OrigData.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000501
Jack Carter2f8d9d92013-02-19 21:57:35 +0000502 // Binding and Type share the same byte as upper and lower nibbles
Jan Sjödin30a52de2011-02-28 21:45:04 +0000503 uint8_t Binding = MCELF::GetBinding(OrigData);
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000504 uint8_t Type = MCELF::GetType(OrigData);
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000505 MCSymbolData *BaseSD = nullptr;
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000506 if (Base) {
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000507 BaseSD = &Layout.getAssembler().getSymbolData(*Base);
508 Type = mergeTypeForSet(Type, MCELF::GetType(*BaseSD));
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000509 }
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000510 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000511
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000512 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000513 // 2 bits
514 uint8_t Visibility = MCELF::GetVisibility(OrigData);
Logan Chienee365952013-12-05 00:34:11 +0000515 uint8_t Other = MCELF::getOther(OrigData) << (ELF_STO_Shift - ELF_STV_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000516 Other |= Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000517
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000518 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000519 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000520
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000521 const MCExpr *ESize = OrigData.getSize();
522 if (!ESize && Base)
523 ESize = BaseSD->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000524
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000525 if (ESize) {
526 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000527 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000528 report_fatal_error("Size expression must be absolute.");
529 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000530 }
531
532 // Write out the symbol table entry
Rafael Espindola10be0832014-03-25 23:44:25 +0000533 Writer.writeSymbol(MSD.StringIndex, Info, Value, Size, Other,
534 MSD.SectionIndex, IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000535}
536
Rafael Espindola883dec02015-05-21 19:54:44 +0000537void ELFObjectWriter::writeSymbolTable(MCContext &Ctx,
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000538 const MCAsmLayout &Layout,
539 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola08850b32015-05-25 21:56:55 +0000540 const MCSectionELF *SymtabSection = SectionTable[SymbolTableIndex - 1];
Rafael Espindola91fd2772015-04-29 21:09:32 +0000541
Matt Fleming6c1ad482010-08-16 18:57:57 +0000542 // The string table must be emitted first because we need the index
543 // into the string table for all the symbol names.
Matt Fleming6c1ad482010-08-16 18:57:57 +0000544
Rafael Espindola91fd2772015-04-29 21:09:32 +0000545 SymbolTableWriter Writer(*this, is64Bit());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000546
Rafael Espindola883dec02015-05-21 19:54:44 +0000547 uint64_t Padding =
548 OffsetToAlignment(OS.tell(), SymtabSection->getAlignment());
Rafael Espindola91fd2772015-04-29 21:09:32 +0000549 WriteZeros(Padding);
550
551 uint64_t SecStart = OS.tell();
Rafael Espindola10be0832014-03-25 23:44:25 +0000552
Matt Fleming6c1ad482010-08-16 18:57:57 +0000553 // The first entry is the undefined symbol entry.
Rafael Espindola10be0832014-03-25 23:44:25 +0000554 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000555
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000556 for (unsigned i = 0, e = FileSymbolData.size(); i != e; ++i) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000557 Writer.writeSymbol(FileSymbolData[i], ELF::STT_FILE | ELF::STB_LOCAL, 0, 0,
558 ELF::STV_DEFAULT, ELF::SHN_ABS, true);
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000559 }
560
Matt Fleming6c1ad482010-08-16 18:57:57 +0000561 // Write the symbol table entries.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000562 LastLocalSymbolIndex = FileSymbolData.size() + LocalSymbolData.size() + 1;
563
Matt Fleming6c1ad482010-08-16 18:57:57 +0000564 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
565 ELFSymbolData &MSD = LocalSymbolData[i];
Rafael Espindola10be0832014-03-25 23:44:25 +0000566 WriteSymbol(Writer, MSD, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000567 }
568
Matt Fleming6c1ad482010-08-16 18:57:57 +0000569 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
570 ELFSymbolData &MSD = ExternalSymbolData[i];
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000571 MCSymbolData &Data = MSD.Symbol->getData();
Rafael Espindola83b2a332010-10-06 16:47:31 +0000572 assert(((Data.getFlags() & ELF_STB_Global) ||
573 (Data.getFlags() & ELF_STB_Weak)) &&
574 "External symbol requires STB_GLOBAL or STB_WEAK flag");
Rafael Espindola10be0832014-03-25 23:44:25 +0000575 WriteSymbol(Writer, MSD, Layout);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000576 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming6c1ad482010-08-16 18:57:57 +0000577 LastLocalSymbolIndex++;
578 }
579
580 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
581 ELFSymbolData &MSD = UndefinedSymbolData[i];
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000582 MCSymbolData &Data = MSD.Symbol->getData();
Rafael Espindola10be0832014-03-25 23:44:25 +0000583 WriteSymbol(Writer, MSD, Layout);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000584 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming6c1ad482010-08-16 18:57:57 +0000585 LastLocalSymbolIndex++;
586 }
Rafael Espindola91fd2772015-04-29 21:09:32 +0000587
588 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +0000589 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola91fd2772015-04-29 21:09:32 +0000590
591 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
Rafael Espindola5960cee2015-05-22 23:58:30 +0000592 if (ShndxIndexes.empty()) {
593 assert(SymtabShndxSectionIndex == 0);
Rafael Espindola91fd2772015-04-29 21:09:32 +0000594 return;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000595 }
596 assert(SymtabShndxSectionIndex != 0);
Rafael Espindola91fd2772015-04-29 21:09:32 +0000597
598 SecStart = OS.tell();
Rafael Espindola08850b32015-05-25 21:56:55 +0000599 const MCSectionELF *SymtabShndxSection =
600 SectionTable[SymtabShndxSectionIndex - 1];
Rafael Espindola91fd2772015-04-29 21:09:32 +0000601 for (uint32_t Index : ShndxIndexes)
602 write(Index);
603 SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +0000604 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000605}
606
Rafael Espindola5904e122014-03-29 06:26:49 +0000607// It is always valid to create a relocation with a symbol. It is preferable
608// to use a relocation with a section if that is possible. Using the section
609// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000610bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
611 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000612 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000613 unsigned Type) const {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000614 MCSymbolData *SD = Sym ? &Sym->getData() : nullptr;
615
Rafael Espindola5904e122014-03-29 06:26:49 +0000616 // A PCRel relocation to an absolute value has no symbol (or section). We
617 // represent that with a relocation to a null section.
618 if (!RefA)
619 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000620
Rafael Espindola5904e122014-03-29 06:26:49 +0000621 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
622 switch (Kind) {
623 default:
624 break;
625 // The .odp creation emits a relocation against the symbol ".TOC." which
626 // create a R_PPC64_TOC relocation. However the relocation symbol name
627 // in final object creation should be NULL, since the symbol does not
628 // really exist, it is just the reference to TOC base for the current
629 // object file. Since the symbol is undefined, returning false results
630 // in a relocation with a null section which is the desired result.
631 case MCSymbolRefExpr::VK_PPC_TOCBASE:
632 return false;
633
634 // These VariantKind cause the relocation to refer to something other than
635 // the symbol itself, like a linker generated table. Since the address of
636 // symbol is not relevant, we cannot replace the symbol with the
637 // section and patch the difference in the addend.
638 case MCSymbolRefExpr::VK_GOT:
639 case MCSymbolRefExpr::VK_PLT:
640 case MCSymbolRefExpr::VK_GOTPCREL:
641 case MCSymbolRefExpr::VK_Mips_GOT:
642 case MCSymbolRefExpr::VK_PPC_GOT_LO:
643 case MCSymbolRefExpr::VK_PPC_GOT_HI:
644 case MCSymbolRefExpr::VK_PPC_GOT_HA:
645 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000646 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000647
Rafael Espindola5904e122014-03-29 06:26:49 +0000648 // An undefined symbol is not in any section, so the relocation has to point
649 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000650 assert(Sym && "Expected a symbol");
651 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000652 return true;
653
654 unsigned Binding = MCELF::GetBinding(*SD);
655 switch(Binding) {
656 default:
657 llvm_unreachable("Invalid Binding");
658 case ELF::STB_LOCAL:
659 break;
660 case ELF::STB_WEAK:
661 // If the symbol is weak, it might be overridden by a symbol in another
662 // file. The relocation has to point to the symbol so that the linker
663 // can update it.
664 return true;
665 case ELF::STB_GLOBAL:
666 // Global ELF symbols can be preempted by the dynamic linker. The relocation
667 // has to point to the symbol for a reason analogous to the STB_WEAK case.
668 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000669 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000670
Rafael Espindola5904e122014-03-29 06:26:49 +0000671 // If a relocation points to a mergeable section, we have to be careful.
672 // If the offset is zero, a relocation with the section will encode the
673 // same information. With a non-zero offset, the situation is different.
674 // For example, a relocation can point 42 bytes past the end of a string.
675 // If we change such a relocation to use the section, the linker would think
676 // that it pointed to another string and subtracting 42 at runtime will
677 // produce the wrong value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000678 auto &Sec = cast<MCSectionELF>(Sym->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000679 unsigned Flags = Sec.getFlags();
680 if (Flags & ELF::SHF_MERGE) {
681 if (C != 0)
682 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000683
684 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
685 // only handle section relocations to mergeable sections if using RELA.
686 if (!hasRelocationAddend())
687 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000688 }
689
Rafael Espindola5904e122014-03-29 06:26:49 +0000690 // Most TLS relocations use a got, so they need the symbol. Even those that
Rafael Espindola11527a12014-10-06 12:33:27 +0000691 // are just an offset (@tpoff), require a symbol in gold versions before
692 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
693 // http://sourceware.org/PR16773.
Rafael Espindola5904e122014-03-29 06:26:49 +0000694 if (Flags & ELF::SHF_TLS)
695 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000696
Rafael Espindola9ef84412014-04-11 19:18:01 +0000697 // If the symbol is a thumb function the final relocation must set the lowest
698 // bit. With a symbol that is done by just having the symbol have that bit
699 // set, so we would lose the bit if we relocated with the section.
700 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000701 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000702 return true;
703
Ulrich Weigand46797c62014-07-20 23:15:06 +0000704 if (TargetObjectWriter->needsRelocateWithSymbol(*SD, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000705 return true;
706 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000707}
708
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000709static const MCSymbol *getWeakRef(const MCSymbolRefExpr &Ref) {
710 const MCSymbol &Sym = Ref.getSymbol();
711
712 if (Ref.getKind() == MCSymbolRefExpr::VK_WEAKREF)
713 return &Sym;
714
715 if (!Sym.isVariable())
716 return nullptr;
717
718 const MCExpr *Expr = Sym.getVariableValue();
719 const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr);
720 if (!Inner)
721 return nullptr;
722
723 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF)
724 return &Inner->getSymbol();
725 return nullptr;
726}
727
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000728// True if the assembler knows nothing about the final value of the symbol.
729// This doesn't cover the comdat issues, since in those cases the assembler
730// can at least know that all symbols in the section will move together.
Rafael Espindolac9e70682015-03-24 23:48:44 +0000731static bool isWeak(const MCSymbolData &D) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000732 if (MCELF::GetType(D) == ELF::STT_GNU_IFUNC)
733 return true;
734
735 switch (MCELF::GetBinding(D)) {
736 default:
737 llvm_unreachable("Unknown binding");
738 case ELF::STB_LOCAL:
739 return false;
740 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000741 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000742 case ELF::STB_WEAK:
743 case ELF::STB_GNU_UNIQUE:
744 return true;
745 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000746}
747
Rafael Espindola26585542015-01-19 21:11:14 +0000748void ELFObjectWriter::RecordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000749 const MCAsmLayout &Layout,
750 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000751 const MCFixup &Fixup, MCValue Target,
752 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola7549f872015-05-26 00:36:57 +0000753 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000754 uint64_t C = Target.getConstant();
755 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000756
Rafael Espindola5904e122014-03-29 06:26:49 +0000757 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
758 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
759 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000760
Rafael Espindola5904e122014-03-29 06:26:49 +0000761 // Let A, B and C being the components of Target and R be the location of
762 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
763 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000764
Rafael Espindola5904e122014-03-29 06:26:49 +0000765 // In general, ELF has no relocations for -B. It can only represent (A + C)
766 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
767 // replace B to implement it: (A - R - K + C)
768 if (IsPCRel)
Jim Grosbach6f482002015-05-18 18:43:14 +0000769 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000770 Fixup.getLoc(),
771 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000772
Rafael Espindola5904e122014-03-29 06:26:49 +0000773 const MCSymbol &SymB = RefB->getSymbol();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000774
Rafael Espindola5904e122014-03-29 06:26:49 +0000775 if (SymB.isUndefined())
Jim Grosbach6f482002015-05-18 18:43:14 +0000776 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000777 Fixup.getLoc(),
778 Twine("symbol '") + SymB.getName() +
779 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000780
Rafael Espindola5904e122014-03-29 06:26:49 +0000781 assert(!SymB.isAbsolute() && "Should have been folded");
782 const MCSection &SecB = SymB.getSection();
Rafael Espindola34948e52015-04-30 00:45:46 +0000783 if (&SecB != &FixupSection)
Jim Grosbach6f482002015-05-18 18:43:14 +0000784 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000785 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000786
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000787 if (::isWeak(SymB.getData()))
Jim Grosbach6f482002015-05-18 18:43:14 +0000788 Asm.getContext().reportFatalError(
Rafael Espindolac9e70682015-03-24 23:48:44 +0000789 Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
790
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000791 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000792 uint64_t K = SymBOffset - FixupOffset;
793 IsPCRel = true;
794 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000795 }
796
Rafael Espindola5904e122014-03-29 06:26:49 +0000797 // We either rejected the fixup or folded B into C at this point.
798 const MCSymbolRefExpr *RefA = Target.getSymA();
799 const MCSymbol *SymA = RefA ? &RefA->getSymbol() : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000800
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000801 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000802 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000803 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000804 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000805
806 uint64_t Addend = 0;
807 if (hasRelocationAddend()) {
808 Addend = C;
809 C = 0;
810 }
811
812 FixedValue = C;
813
814 // FIXME: What is this!?!?
815 MCSymbolRefExpr::VariantKind Modifier =
816 RefA ? RefA->getKind() : MCSymbolRefExpr::VK_None;
Rafael Espindola9e252bf2011-12-21 14:26:29 +0000817 if (RelocNeedsGOT(Modifier))
818 NeedsGOT = true;
Jan Sjödin30a52de2011-02-28 21:45:04 +0000819
Rafael Espindola5904e122014-03-29 06:26:49 +0000820 if (!RelocateWithSymbol) {
821 const MCSection *SecA =
822 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000823 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
824 MCSymbol *SectionSymbol =
825 ELFSec ? Asm.getContext().getOrCreateSectionSymbol(*ELFSec)
826 : nullptr;
827 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000828 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000829 return;
830 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000831
Rafael Espindola5904e122014-03-29 06:26:49 +0000832 if (SymA) {
833 if (const MCSymbol *R = Renames.lookup(SymA))
834 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000835
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000836 if (const MCSymbol *WeakRef = getWeakRef(*RefA))
837 WeakrefUsedInReloc.insert(WeakRef);
Rafael Espindola5904e122014-03-29 06:26:49 +0000838 else
839 UsedInReloc.insert(SymA);
840 }
841 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000842 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000843 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000844}
845
846
Benjamin Kramer86511dc2010-08-23 21:19:37 +0000847uint64_t
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000848ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
849 const MCSymbol *S) {
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +0000850 assert(S->hasData());
851 return S->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000852}
853
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000854bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000855 const MCSymbol &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000856 bool Renamed) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000857 const MCSymbolData &Data = Symbol.getData();
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000858 if (Symbol.isVariable()) {
859 const MCExpr *Expr = Symbol.getVariableValue();
860 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
861 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
862 return false;
863 }
864 }
Rafael Espindola16145972010-11-01 14:28:48 +0000865
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000866 if (Used)
867 return true;
868
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000869 if (Renamed)
870 return false;
871
Rafael Espindola45834a02010-10-29 23:09:31 +0000872 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
873 return true;
874
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000875 if (Symbol.isVariable()) {
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000876 const MCSymbol *Base = Layout.getBaseSymbol(Symbol);
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000877 if (Base && Base->isUndefined())
878 return false;
879 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000880
Jan Sjödin30a52de2011-02-28 21:45:04 +0000881 bool IsGlobal = MCELF::GetBinding(Data) == ELF::STB_GLOBAL;
Rafael Espindola9e18e962011-02-23 20:22:07 +0000882 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000883 return false;
884
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000885 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000886 return false;
887
888 return true;
889}
890
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000891bool ELFObjectWriter::isLocal(const MCSymbol &Symbol, bool isUsedInReloc) {
892 const MCSymbolData &Data = Symbol.getData();
Rafael Espindolab1d07892010-10-05 18:01:23 +0000893 if (Data.isExternal())
894 return false;
895
Rafael Espindola39f50422014-04-28 14:24:44 +0000896 if (Symbol.isDefined())
897 return true;
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000898
Rafael Espindola39f50422014-04-28 14:24:44 +0000899 if (isUsedInReloc)
Rafael Espindolab1d07892010-10-05 18:01:23 +0000900 return false;
901
902 return true;
903}
904
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000905void ELFObjectWriter::computeSymbolTable(
906 MCAssembler &Asm, const MCAsmLayout &Layout,
907 const SectionIndexMapTy &SectionIndexMap,
908 const RevGroupMapTy &RevGroupMap) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000909 MCContext &Ctx = Asm.getContext();
910 // Symbol table
911 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
912 MCSectionELF *SymtabSection =
913 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
914 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
915 SymbolTableIndex = addToSectionTable(SymtabSection);
916
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000917 // FIXME: Is this the correct place to do this?
Rafael Espindola940a0ee2011-06-05 01:20:06 +0000918 // FIXME: Why is an undefined reference to _GLOBAL_OFFSET_TABLE_ needed?
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000919 if (NeedsGOT) {
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000920 StringRef Name = "_GLOBAL_OFFSET_TABLE_";
Jim Grosbach6f482002015-05-18 18:43:14 +0000921 MCSymbol *Sym = Asm.getContext().getOrCreateSymbol(Name);
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000922 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
923 Data.setExternal(true);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000924 MCELF::SetBinding(Data, ELF::STB_GLOBAL);
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000925 }
926
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000927 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000928 bool HasLargeSectionIndex = false;
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000929 for (const MCSymbol &Symbol : Asm.symbols()) {
930 MCSymbolData &SD = Symbol.getData();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000931
Rafael Espindola16145972010-11-01 14:28:48 +0000932 bool Used = UsedInReloc.count(&Symbol);
933 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000934 bool isSignature = RevGroupMap.count(&Symbol);
935
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000936 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000937 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000938 continue;
939
Matt Fleming6c1ad482010-08-16 18:57:57 +0000940 ELFSymbolData MSD;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000941 MSD.Symbol = &Symbol;
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000942 const MCSymbol *BaseSymbol = Layout.getBaseSymbol(Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000943
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000944 // Undefined symbols are global, but this is the first place we
945 // are able to set it.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000946 bool Local = isLocal(Symbol, Used);
David Blaikie583a31c2014-04-18 18:24:25 +0000947 if (!Local && MCELF::GetBinding(SD) == ELF::STB_LOCAL) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000948 assert(BaseSymbol);
David Blaikie583a31c2014-04-18 18:24:25 +0000949 MCSymbolData &BaseData = Asm.getSymbolData(*BaseSymbol);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000950 MCELF::SetBinding(SD, ELF::STB_GLOBAL);
David Blaikie583a31c2014-04-18 18:24:25 +0000951 MCELF::SetBinding(BaseData, ELF::STB_GLOBAL);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000952 }
953
Rafael Espindola022bb762014-03-24 03:43:21 +0000954 if (!BaseSymbol) {
955 MSD.SectionIndex = ELF::SHN_ABS;
David Blaikie583a31c2014-04-18 18:24:25 +0000956 } else if (SD.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000957 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000958 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindola022bb762014-03-24 03:43:21 +0000959 } else if (BaseSymbol->isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000960 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000961 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000962 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
963 HasLargeSectionIndex = true;
964 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000965 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000966 }
Rafael Espindola022bb762014-03-24 03:43:21 +0000967 if (!Used && WeakrefUsed)
David Blaikie583a31c2014-04-18 18:24:25 +0000968 MCELF::SetBinding(SD, ELF::STB_WEAK);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000969 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000970 const MCSectionELF &Section =
Rafael Espindola022bb762014-03-24 03:43:21 +0000971 static_cast<const MCSectionELF&>(BaseSymbol->getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000972 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000973 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000974 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
975 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000976 }
977
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000978 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
979 // in defined ones.
980 //
981 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000982 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000983 // trivial.
984 //
985 // We thus have to be careful to not perform the symbol version replacement
986 // blindly:
987 //
988 // The ELF format is used on Windows by the MCJIT engine. Thus, on
989 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
990 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
991 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
992 // the EFLObjectWriter should not interpret the "@@@" sub-string as
993 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
994 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
995 // "__imp_?" or "__imp_@?".
996 //
997 // It would have been interesting to perform the MS mangling prefix check
998 // only when the target triple is of the form *-pc-windows-elf. But, it
999 // seems that this information is not easily accessible from the
1000 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001001 StringRef Name = Symbol.getName();
Rafael Espindola5a67ed12015-01-22 14:20:45 +00001002 if (!Name.startswith("?") && !Name.startswith("@?") &&
1003 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
1004 // This symbol isn't following the MSVC C++ name mangling convention. We
1005 // can thus safely interpret the @@@ in symbol names as specifying symbol
1006 // versioning.
1007 SmallString<32> Buf;
1008 size_t Pos = Name.find("@@@");
1009 if (Pos != StringRef::npos) {
1010 Buf += Name.substr(0, Pos);
1011 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
1012 Buf += Name.substr(Pos + Skip);
1013 Name = Buf;
1014 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001015 }
Rafael Espindolab6613022014-10-17 01:48:58 +00001016
1017 // Sections have their own string table
1018 if (MCELF::GetType(SD) != ELF::STT_SECTION)
1019 MSD.Name = StrTabBuilder.add(Name);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001020
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +00001021 if (MSD.SectionIndex == ELF::SHN_UNDEF)
1022 UndefinedSymbolData.push_back(MSD);
1023 else if (Local)
1024 LocalSymbolData.push_back(MSD);
1025 else
1026 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001027 }
1028
Rafael Espindola5960cee2015-05-22 23:58:30 +00001029 if (HasLargeSectionIndex) {
1030 MCSectionELF *SymtabShndxSection =
1031 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
1032 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
1033 SymtabShndxSection->setAlignment(4);
1034 }
1035
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001036 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i)
1037 StrTabBuilder.add(*i);
1038
Hans Wennborgf26bfc12014-09-29 22:43:20 +00001039 StrTabBuilder.finalize(StringTableBuilder::ELF);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001040
1041 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i)
1042 FileSymbolData.push_back(StrTabBuilder.getOffset(*i));
1043
Rafael Espindolab6613022014-10-17 01:48:58 +00001044 for (ELFSymbolData &MSD : LocalSymbolData)
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +00001045 MSD.StringIndex = MCELF::GetType(MSD.Symbol->getData()) == ELF::STT_SECTION
Rafael Espindolab6613022014-10-17 01:48:58 +00001046 ? 0
1047 : StrTabBuilder.getOffset(MSD.Name);
1048 for (ELFSymbolData &MSD : ExternalSymbolData)
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001049 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
1050 for (ELFSymbolData& MSD : UndefinedSymbolData)
1051 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
1052
Matt Fleming6c1ad482010-08-16 18:57:57 +00001053 // Symbols are required to be in lexicographic order.
1054 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
1055 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
1056 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
1057
1058 // Set the symbol indices. Local symbols must come before all other
1059 // symbols with non-local bindings.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +00001060 unsigned Index = FileSymbolData.size() + 1;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001061 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +00001062 LocalSymbolData[i].Symbol->setIndex(Index++);
Rafael Espindola0e3decf2010-11-14 03:12:24 +00001063
Matt Fleming6c1ad482010-08-16 18:57:57 +00001064 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +00001065 ExternalSymbolData[i].Symbol->setIndex(Index++);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001066 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
Duncan P. N. Exon Smith1247bbd2015-05-22 05:54:01 +00001067 UndefinedSymbolData[i].Symbol->setIndex(Index++);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001068}
1069
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001070MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001071ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +00001072 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +00001073 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +00001074 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001075
Rafael Espindola34948e52015-04-30 00:45:46 +00001076 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +00001077 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
1078 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +00001079
Rafael Espindolaead85492015-02-17 20:31:13 +00001080 unsigned EntrySize;
1081 if (hasRelocationAddend())
1082 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
1083 else
1084 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001085
Rafael Espindolaead85492015-02-17 20:31:13 +00001086 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +00001087 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +00001088 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +00001089
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001090 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +00001091 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +00001092 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001093 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +00001094 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001095}
Matt Fleming6c1ad482010-08-16 18:57:57 +00001096
David Blaikiee06e8012014-04-11 22:11:50 +00001097static SmallVector<char, 128>
Rafael Espindolaae7e4992015-04-29 19:20:10 +00001098getUncompressedData(const MCAsmLayout &Layout,
Rafael Espindola868b3f42015-04-30 21:51:58 +00001099 const MCSectionData::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +00001100 SmallVector<char, 128> UncompressedData;
1101 for (const MCFragment &F : Fragments) {
1102 const SmallVectorImpl<char> *Contents;
1103 switch (F.getKind()) {
1104 case MCFragment::FT_Data:
1105 Contents = &cast<MCDataFragment>(F).getContents();
1106 break;
1107 case MCFragment::FT_Dwarf:
1108 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
1109 break;
1110 case MCFragment::FT_DwarfFrame:
1111 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
1112 break;
1113 default:
1114 llvm_unreachable(
1115 "Not expecting any other fragment types in a debug_* section");
1116 }
1117 UncompressedData.append(Contents->begin(), Contents->end());
1118 }
1119 return UncompressedData;
1120}
1121
1122// Include the debug info compression header:
1123// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
1124// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +00001125static bool
David Blaikiee06e8012014-04-11 22:11:50 +00001126prependCompressionHeader(uint64_t Size,
1127 SmallVectorImpl<char> &CompressedContents) {
Benjamin Kramer7149aab2015-03-01 18:09:56 +00001128 const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +00001129 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
1130 return false;
David Blaikie8019bf82014-04-10 21:53:53 +00001131 if (sys::IsLittleEndianHost)
Artyom Skrobov9aea8432014-06-14 13:18:07 +00001132 sys::swapByteOrder(Size);
David Blaikie8019bf82014-04-10 21:53:53 +00001133 CompressedContents.insert(CompressedContents.begin(),
1134 Magic.size() + sizeof(Size), 0);
1135 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
1136 std::copy(reinterpret_cast<char *>(&Size),
1137 reinterpret_cast<char *>(&Size + 1),
1138 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +00001139 return true;
David Blaikie8019bf82014-04-10 21:53:53 +00001140}
1141
Rafael Espindola868b3f42015-04-30 21:51:58 +00001142void ELFObjectWriter::writeSectionData(const MCAssembler &Asm,
1143 const MCSectionData &SD,
1144 const MCAsmLayout &Layout) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001145 MCSectionELF &Section = static_cast<MCSectionELF &>(SD.getSection());
Rafael Espindola868b3f42015-04-30 21:51:58 +00001146 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +00001147
Rafael Espindola868b3f42015-04-30 21:51:58 +00001148 // Compressing debug_frame requires handling alignment fragments which is
1149 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1150 // for writing to arbitrary buffers) for little benefit.
1151 if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
1152 !SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001153 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001154 return;
1155 }
1156
1157 // Gather the uncompressed data from all the fragments.
1158 const MCSectionData::FragmentListType &Fragments = SD.getFragmentList();
David Blaikie8019bf82014-04-10 21:53:53 +00001159 SmallVector<char, 128> UncompressedData =
1160 getUncompressedData(Layout, Fragments);
1161
Rafael Espindola868b3f42015-04-30 21:51:58 +00001162 SmallVector<char, 128> CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001163 zlib::Status Success = zlib::compress(
1164 StringRef(UncompressedData.data(), UncompressedData.size()),
1165 CompressedContents);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001166 if (Success != zlib::StatusOK) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001167 Asm.writeSectionData(&Section, Layout);
David Blaikie8019bf82014-04-10 21:53:53 +00001168 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001169 }
David Blaikie8019bf82014-04-10 21:53:53 +00001170
Rafael Espindola868b3f42015-04-30 21:51:58 +00001171 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001172 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001173 return;
1174 }
David Blaikie8019bf82014-04-10 21:53:53 +00001175 Asm.getContext().renameELFSection(&Section,
1176 (".z" + SectionName.drop_front(1)).str());
Rafael Espindola868b3f42015-04-30 21:51:58 +00001177 OS << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001178}
1179
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001180void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1181 uint64_t Flags, uint64_t Address,
1182 uint64_t Offset, uint64_t Size,
1183 uint32_t Link, uint32_t Info,
1184 uint64_t Alignment,
1185 uint64_t EntrySize) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001186 Write32(Name); // sh_name: index into string table
1187 Write32(Type); // sh_type
1188 WriteWord(Flags); // sh_flags
1189 WriteWord(Address); // sh_addr
1190 WriteWord(Offset); // sh_offset
1191 WriteWord(Size); // sh_size
1192 Write32(Link); // sh_link
1193 Write32(Info); // sh_info
1194 WriteWord(Alignment); // sh_addralign
1195 WriteWord(EntrySize); // sh_entsize
1196}
1197
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001198void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001199 const MCSectionELF &Sec) {
1200 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001201
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001202 // Sort the relocation entries. Most targets just sort by Offset, but some
1203 // (e.g., MIPS) have additional constraints.
1204 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001205
1206 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001207 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindolab6613022014-10-17 01:48:58 +00001208 unsigned Index =
1209 Entry.Symbol ? getSymbolIndexInSymbolTable(Asm, Entry.Symbol) : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001210
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001211 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001212 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001213 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001214 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001215
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001216 write(TargetObjectWriter->getRSsym(Entry.Type));
1217 write(TargetObjectWriter->getRType3(Entry.Type));
1218 write(TargetObjectWriter->getRType2(Entry.Type));
1219 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001220 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001221 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001222 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001223 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001224 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001225 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001226 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001227 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001228 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001229
Rafael Espindolabce26a12010-10-05 15:11:03 +00001230 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001231 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001232 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001233
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001234 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001235 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001236 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001237 }
1238}
1239
Rafael Espindolab1863912015-04-30 21:10:06 +00001240const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001241 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
Rafael Espindola88abc392015-04-29 20:34:31 +00001242 OS << StrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001243 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001244}
1245
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001246void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1247 uint32_t GroupSymbolIndex, uint64_t Offset,
1248 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001249 uint64_t sh_link = 0;
1250 uint64_t sh_info = 0;
1251
1252 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001253 default:
1254 // Nothing to do.
1255 break;
1256
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001257 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001258 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001259
1260 case ELF::SHT_REL:
1261 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001262 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001263 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001264 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001265 sh_info = SectionIndexMap.lookup(InfoSection);
1266 break;
1267 }
1268
1269 case ELF::SHT_SYMTAB:
1270 case ELF::SHT_DYNSYM:
1271 sh_link = StringTableIndex;
1272 sh_info = LastLocalSymbolIndex;
1273 break;
1274
1275 case ELF::SHT_SYMTAB_SHNDX:
1276 sh_link = SymbolTableIndex;
1277 break;
1278
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001279 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001280 sh_link = SymbolTableIndex;
1281 sh_info = GroupSymbolIndex;
1282 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001283 }
1284
Logan Chien4b724422013-02-05 14:18:59 +00001285 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001286 Section.getType() == ELF::SHT_ARM_EXIDX)
1287 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001288
Rafael Espindola5960cee2015-05-22 23:58:30 +00001289 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001290 Section.getType(), Section.getFlags(), 0, Offset, Size,
1291 sh_link, sh_info, Section.getAlignment(),
1292 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001293}
1294
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001295void ELFObjectWriter::writeSectionHeader(
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001296 const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001297 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001298 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001299 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001300
Matt Fleming6c1ad482010-08-16 18:57:57 +00001301 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001302 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001303 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001304 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001305
Rafael Espindola08850b32015-05-25 21:56:55 +00001306 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001307 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001308 unsigned Type = Section->getType();
1309 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001310 GroupSymbolIndex = 0;
1311 else
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001312 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm, Section->getGroup());
Matt Fleming6c1ad482010-08-16 18:57:57 +00001313
Rafael Espindolabda19802015-04-30 14:21:49 +00001314 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001315 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001316 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001317 if (Type == ELF::SHT_NOBITS)
1318 Size = Layout.getSectionAddressSize(Section);
1319 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001320 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001321
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001322 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001323 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001324 }
1325}
1326
Rafael Espindola1557fd62011-03-20 18:44:20 +00001327void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1328 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001329 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001330 MCSectionELF *StrtabSection =
1331 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1332 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001333
Rafael Espindola1557fd62011-03-20 18:44:20 +00001334 RevGroupMapTy RevGroupMap;
1335 SectionIndexMapTy SectionIndexMap;
1336
Rafael Espindolabda19802015-04-30 14:21:49 +00001337 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001338
Rafael Espindola1557fd62011-03-20 18:44:20 +00001339 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001340 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001341
Rafael Espindola7230f802015-04-08 11:41:24 +00001342 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001343 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001344 std::vector<MCSectionELF *> Groups;
1345 std::vector<MCSectionELF *> Relocations;
Rafael Espindolaa554c052015-05-25 23:14:17 +00001346 for (const MCSection &Sec : Asm) {
1347 const MCSectionELF &Section = static_cast<const MCSectionELF &>(Sec);
1348 const MCSectionData &SD = Section.getSectionData();
Rafael Espindolabda19802015-04-30 14:21:49 +00001349
Rafael Espindola967d6a62015-05-21 21:02:35 +00001350 uint64_t Padding = OffsetToAlignment(OS.tell(), Section.getAlignment());
Rafael Espindola642a2212015-04-14 22:54:16 +00001351 WriteZeros(Padding);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001352
Rafael Espindola642a2212015-04-14 22:54:16 +00001353 // Remember the offset into the file for this section.
Rafael Espindolab6417502015-04-28 15:04:09 +00001354 uint64_t SecStart = OS.tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001355
Rafael Espindolabda19802015-04-30 14:21:49 +00001356 const MCSymbol *SignatureSymbol = Section.getGroup();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001357 writeSectionData(Asm, SD, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001358
Rafael Espindolab6417502015-04-28 15:04:09 +00001359 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001360 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1361
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001362 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001363
1364 if (SignatureSymbol) {
1365 Asm.getOrCreateSymbolData(*SignatureSymbol);
1366 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1367 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001368 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001369 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001370 Group->setAlignment(4);
1371 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001372 }
1373 GroupMembers[SignatureSymbol].push_back(&Section);
1374 if (RelSection)
1375 GroupMembers[SignatureSymbol].push_back(RelSection);
1376 }
1377
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001378 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001379 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001380 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001381 Relocations.push_back(RelSection);
1382 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001383 }
1384
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001385 for (MCSectionELF *Group : Groups) {
1386 uint64_t Padding = OffsetToAlignment(OS.tell(), Group->getAlignment());
1387 WriteZeros(Padding);
1388
1389 // Remember the offset into the file for this section.
1390 uint64_t SecStart = OS.tell();
1391
1392 const MCSymbol *SignatureSymbol = Group->getGroup();
1393 assert(SignatureSymbol);
1394 write(uint32_t(ELF::GRP_COMDAT));
1395 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1396 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1397 write(SecIndex);
1398 }
1399
1400 uint64_t SecEnd = OS.tell();
1401 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1402 }
1403
1404 // Compute symbol table information.
1405 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap);
1406
1407 for (MCSectionELF *RelSection : Relocations) {
1408 uint64_t Padding = OffsetToAlignment(OS.tell(), RelSection->getAlignment());
1409 WriteZeros(Padding);
1410
1411 // Remember the offset into the file for this section.
1412 uint64_t SecStart = OS.tell();
1413
1414 writeRelocations(Asm, *RelSection->getAssociatedSection());
1415
1416 uint64_t SecEnd = OS.tell();
1417 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001418 }
1419
Rafael Espindola883dec02015-05-21 19:54:44 +00001420 writeSymbolTable(Ctx, Layout, SectionOffsets);
Rafael Espindola91fd2772015-04-29 21:09:32 +00001421
Rafael Espindola88d1f632015-04-29 20:25:24 +00001422 {
1423 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001424 const MCSectionELF *Sec = createStringTable(Ctx);
Rafael Espindola88abc392015-04-29 20:34:31 +00001425 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001426 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001427 }
1428
Rafael Espindola642a2212015-04-14 22:54:16 +00001429 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001430 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001431 WriteZeros(Padding);
1432
Rafael Espindola642a2212015-04-14 22:54:16 +00001433 const unsigned SectionHeaderOffset = OS.tell();
1434
Rafael Espindola1557fd62011-03-20 18:44:20 +00001435 // ... then the section header table ...
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001436 writeSectionHeader(Asm, Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001437
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001438 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001439 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001440 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001441 if (sys::IsLittleEndianHost != IsLittleEndian)
1442 sys::swapByteOrder(NumSections);
1443 unsigned NumSectionsOffset;
1444
Rafael Espindola642a2212015-04-14 22:54:16 +00001445 if (is64Bit()) {
1446 uint64_t Val = SectionHeaderOffset;
1447 if (sys::IsLittleEndianHost != IsLittleEndian)
1448 sys::swapByteOrder(Val);
1449 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1450 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001451 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001452 } else {
1453 uint32_t Val = SectionHeaderOffset;
1454 if (sys::IsLittleEndianHost != IsLittleEndian)
1455 sys::swapByteOrder(Val);
1456 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1457 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001458 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001459 }
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001460 OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
1461 NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001462}
1463
Rafael Espindola94a88d72015-04-06 15:27:57 +00001464bool ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001465 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001466 bool InSet, bool IsPCRel) const {
1467 if (IsPCRel) {
1468 assert(!InSet);
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001469 if (::isWeak(SymA.getData()))
Rafael Espindola35d61892015-04-17 21:15:17 +00001470 return false;
1471 }
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001472 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001473 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001474}
1475
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +00001476bool ELFObjectWriter::isWeak(const MCSymbol &Sym) const {
1477 const MCSymbolData &SD = Sym.getData();
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001478 if (::isWeak(SD))
1479 return true;
1480
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001481 // It is invalid to replace a reference to a global in a comdat
1482 // with a reference to a local since out of comdat references
1483 // to a local are forbidden.
1484 // We could try to return false for more cases, like the reference
1485 // being in the same comdat or Sym being an alias to another global,
1486 // but it is not clear if it is worth the effort.
Rafael Espindola29c82702015-04-20 12:44:06 +00001487 if (MCELF::GetBinding(SD) != ELF::STB_GLOBAL)
1488 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001489
Rafael Espindola29c82702015-04-20 12:44:06 +00001490 if (!Sym.isInSection())
1491 return false;
1492
1493 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1494 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001495}
1496
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001497MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001498 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001499 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001500 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001501}