blob: f1ba758dad5ed2a7fc4533012ef4277d84a8e073 [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;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000110 StringTableBuilder ShStrTabBuilder;
Rafael Espindola29abd972011-12-22 03:38:00 +0000111
112 /// @}
113 /// @name Symbol Table Data
114 /// @{
115
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000116 StringTableBuilder StrTabBuilder;
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000117 std::vector<uint64_t> FileSymbolData;
Rafael Espindola29abd972011-12-22 03:38:00 +0000118 std::vector<ELFSymbolData> LocalSymbolData;
119 std::vector<ELFSymbolData> ExternalSymbolData;
120 std::vector<ELFSymbolData> UndefinedSymbolData;
121
122 /// @}
123
124 bool NeedsGOT;
125
Rafael Espindola29abd972011-12-22 03:38:00 +0000126 // This holds the symbol table index of the last local symbol.
127 unsigned LastLocalSymbolIndex;
128 // This holds the .strtab section index.
129 unsigned StringTableIndex;
130 // This holds the .symtab section index.
131 unsigned SymbolTableIndex;
132
133 unsigned ShstrtabIndex;
134
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000135 // Sections in the order they are to be output in the section table.
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000136 std::vector<MCSectionELF *> SectionTable;
137 unsigned addToSectionTable(MCSectionELF *Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000138
Rafael Espindola29abd972011-12-22 03:38:00 +0000139 // TargetObjectWriter wrappers.
Rafael Espindola29abd972011-12-22 03:38:00 +0000140 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
141 bool hasRelocationAddend() const {
142 return TargetObjectWriter->hasRelocationAddend();
143 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000144 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000145 bool IsPCRel) const {
146 return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindola29abd972011-12-22 03:38:00 +0000147 }
148
Rafael Espindola29abd972011-12-22 03:38:00 +0000149 public:
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000150 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
Rafael Espindola0ce09712014-03-25 22:43:53 +0000151 bool IsLittleEndian)
Rafael Espindola59f0e312015-04-29 21:13:30 +0000152 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW),
153 NeedsGOT(false) {}
Rafael Espindola29abd972011-12-22 03:38:00 +0000154
Yaron Keren7773a722015-03-23 18:35:01 +0000155 void reset() override {
156 UsedInReloc.clear();
157 WeakrefUsedInReloc.clear();
158 Renames.clear();
159 Relocations.clear();
160 ShStrTabBuilder.clear();
161 StrTabBuilder.clear();
162 FileSymbolData.clear();
163 LocalSymbolData.clear();
164 ExternalSymbolData.clear();
165 UndefinedSymbolData.clear();
Yaron Kerenf3465e12015-05-13 15:17:19 +0000166 NeedsGOT = false;
167 SectionTable.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000168 MCObjectWriter::reset();
169 }
170
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000171 ~ELFObjectWriter() override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000172
173 void WriteWord(uint64_t W) {
174 if (is64Bit())
175 Write64(W);
176 else
177 Write32(W);
178 }
179
Rafael Espindola91fd2772015-04-29 21:09:32 +0000180 template <typename T> void write(T Val) {
181 if (IsLittleEndian)
182 support::endian::Writer<support::little>(OS).write(Val);
183 else
184 support::endian::Writer<support::big>(OS).write(Val);
185 }
186
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000187 void writeHeader(const MCAssembler &Asm);
Rafael Espindola29abd972011-12-22 03:38:00 +0000188
Rafael Espindola10be0832014-03-25 23:44:25 +0000189 void WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Rafael Espindola29abd972011-12-22 03:38:00 +0000190 const MCAsmLayout &Layout);
191
Rafael Espindola91fd2772015-04-29 21:09:32 +0000192 // Start and end offset of each section
Rafael Espindolabda19802015-04-30 14:21:49 +0000193 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
194 SectionOffsetsTy;
Rafael Espindola91fd2772015-04-29 21:09:32 +0000195
196 void WriteSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola91fd2772015-04-29 21:09:32 +0000197 SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000198
Rafael Espindolab60c8292014-04-29 12:46:50 +0000199 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
200 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000201 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000202 unsigned Type) const;
203
Rafael Espindola26585542015-01-19 21:11:14 +0000204 void RecordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
Craig Topper34a61bc2014-03-08 07:02:02 +0000205 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000206 MCValue Target, bool &IsPCRel,
207 uint64_t &FixedValue) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000208
209 uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
210 const MCSymbol *S);
211
Rafael Espindola89feff32015-04-28 22:59:58 +0000212 // Map from a signature symbol to the group section index
213 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
Rafael Espindola29abd972011-12-22 03:38:00 +0000214
Rafael Espindola022bb762014-03-24 03:43:21 +0000215 /// Compute the symbol table data
Rafael Espindola29abd972011-12-22 03:38:00 +0000216 ///
Rafael Espindola073ee7d2012-08-27 16:04:24 +0000217 /// \param Asm - The assembler.
218 /// \param SectionIndexMap - Maps a section to its index.
219 /// \param RevGroupMap - Maps a signature symbol to the group section.
Rafael Espindola022bb762014-03-24 03:43:21 +0000220 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000221 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000222 const RevGroupMapTy &RevGroupMap);
Rafael Espindola29abd972011-12-22 03:38:00 +0000223
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000224 MCSectionELF *createRelocationSection(MCAssembler &Asm,
225 const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000226
Rafael Espindolab1863912015-04-30 21:10:06 +0000227 const MCSectionELF *createSectionHeaderStringTable();
228 const MCSectionELF *createStringTable(MCContext &Ctx);
Rafael Espindola29abd972011-12-22 03:38:00 +0000229
Craig Topper34a61bc2014-03-08 07:02:02 +0000230 void ExecutePostLayoutBinding(MCAssembler &Asm,
231 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000232
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000233 void writeSectionHeader(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000234 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +0000235 const SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000236
Rafael Espindola868b3f42015-04-30 21:51:58 +0000237 void writeSectionData(const MCAssembler &Asm, const MCSectionData &SD,
238 const MCAsmLayout &Layout);
239
Rafael Espindola29abd972011-12-22 03:38:00 +0000240 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000241 uint64_t Address, uint64_t Offset, uint64_t Size,
242 uint32_t Link, uint32_t Info, uint64_t Alignment,
243 uint64_t EntrySize);
Rafael Espindola29abd972011-12-22 03:38:00 +0000244
Rafael Espindola34948e52015-04-30 00:45:46 +0000245 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000246
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000247 bool IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
248 const MCSymbol &SymA,
249 const MCFragment &FB,
250 bool InSet,
251 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000252
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +0000253 bool isWeak(const MCSymbol &Sym) const override;
Rafael Espindolaf275ad82015-03-25 13:16:53 +0000254
Craig Topper34a61bc2014-03-08 07:02:02 +0000255 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindolae92c1bf2015-05-21 19:42:35 +0000256 void writeSection(const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola28687582015-05-21 19:36:43 +0000257 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
Rafael Espindola29abd972011-12-22 03:38:00 +0000258 const MCSectionELF &Section);
259 };
260}
261
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000262unsigned ELFObjectWriter::addToSectionTable(MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000263 SectionTable.push_back(Sec);
Rafael Espindolaa001a322015-04-30 20:57:14 +0000264 ShStrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000265 return SectionTable.size();
266}
267
Rafael Espindola10be0832014-03-25 23:44:25 +0000268void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000269 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000270 return;
271
Rafael Espindola91fd2772015-04-29 21:09:32 +0000272 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000273}
274
Rafael Espindola91fd2772015-04-29 21:09:32 +0000275template <typename T> void SymbolTableWriter::write(T Value) {
276 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000277}
278
Rafael Espindola91fd2772015-04-29 21:09:32 +0000279SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
280 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000281
282void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
283 uint64_t size, uint8_t other,
284 uint32_t shndx, bool Reserved) {
285 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
286
287 if (LargeIndex)
288 createSymtabShndx();
289
Rafael Espindola91fd2772015-04-29 21:09:32 +0000290 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000291 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000292 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000293 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000294 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000295 }
296
297 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
298
Rafael Espindola10be0832014-03-25 23:44:25 +0000299 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000300 write(name); // st_name
301 write(info); // st_info
302 write(other); // st_other
303 write(Index); // st_shndx
304 write(value); // st_value
305 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000306 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000307 write(name); // st_name
308 write(uint32_t(value)); // st_value
309 write(uint32_t(size)); // st_size
310 write(info); // st_info
311 write(other); // st_other
312 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000313 }
314
315 ++NumWritten;
316}
317
Jan Sjödin30a52de2011-02-28 21:45:04 +0000318bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
319 const MCFixupKindInfo &FKI =
320 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
321
322 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
323}
324
325bool ELFObjectWriter::RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
326 switch (Variant) {
327 default:
328 return false;
329 case MCSymbolRefExpr::VK_GOT:
330 case MCSymbolRefExpr::VK_PLT:
331 case MCSymbolRefExpr::VK_GOTPCREL:
Rafael Espindola940a0ee2011-06-05 01:20:06 +0000332 case MCSymbolRefExpr::VK_GOTOFF:
Jan Sjödin30a52de2011-02-28 21:45:04 +0000333 case MCSymbolRefExpr::VK_TPOFF:
334 case MCSymbolRefExpr::VK_TLSGD:
335 case MCSymbolRefExpr::VK_GOTTPOFF:
336 case MCSymbolRefExpr::VK_INDNTPOFF:
337 case MCSymbolRefExpr::VK_NTPOFF:
338 case MCSymbolRefExpr::VK_GOTNTPOFF:
339 case MCSymbolRefExpr::VK_TLSLDM:
340 case MCSymbolRefExpr::VK_DTPOFF:
341 case MCSymbolRefExpr::VK_TLSLD:
342 return true;
343 }
344}
345
Jason W Kim96f4c012010-11-15 16:18:39 +0000346ELFObjectWriter::~ELFObjectWriter()
347{}
348
Matt Fleming6c1ad482010-08-16 18:57:57 +0000349// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000350void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000351 // ELF Header
352 // ----------
353 //
354 // Note
355 // ----
356 // emitWord method behaves differently for ELF32 and ELF64, writing
357 // 4 bytes in the former and 8 in the latter.
358
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000359 WriteBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000360
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000361 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000362
363 // e_ident[EI_DATA]
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000364 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000365
366 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000367 // e_ident[EI_OSABI]
Rafael Espindola1ad40952011-12-21 17:00:36 +0000368 Write8(TargetObjectWriter->getOSABI());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000369 Write8(0); // e_ident[EI_ABIVERSION]
370
371 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
372
373 Write16(ELF::ET_REL); // e_type
374
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000375 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000376
377 Write32(ELF::EV_CURRENT); // e_version
378 WriteWord(0); // e_entry, no entry point in .o file
379 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000380 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000381
Jason W Kim4761fba2011-02-04 21:41:11 +0000382 // e_flags = whatever the target wants
Jack Carter1bd90ff2013-01-30 02:09:52 +0000383 Write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000384
385 // e_ehsize = ELF header size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000386 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000387
388 Write16(0); // e_phentsize = prog header entry size
389 Write16(0); // e_phnum = # prog header entries = 0
390
391 // e_shentsize = Section header entry size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000392 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000393
394 // e_shnum = # of section header ents
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000395 Write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000396
397 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola88d1f632015-04-29 20:25:24 +0000398 assert(ShstrtabIndex < ELF::SHN_LORESERVE);
399 Write16(ShstrtabIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000400}
401
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000402uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000403 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000404 MCSymbolData &Data = Sym.getData();
Rafael Espindolafee224f2014-04-30 21:51:13 +0000405 if (Data.isCommon() && Data.isExternal())
406 return Data.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000407
Rafael Espindolafee224f2014-04-30 21:51:13 +0000408 uint64_t Res;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000409 if (!Layout.getSymbolOffset(Sym, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000410 return 0;
411
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000412 if (Layout.getAssembler().isThumbFunc(&Sym))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000413 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000414
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000415 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000416}
417
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000418void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
419 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000420 // The presence of symbol versions causes undefined symbols and
421 // versions declared with @@@ to be renamed.
422
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000423 for (const MCSymbol &Alias : Asm.symbols()) {
424 MCSymbolData &OriginalData = Alias.getData();
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000425
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000426 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000427 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000428 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000429 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
430 if (!Ref)
431 continue;
432 const MCSymbol &Symbol = Ref->getSymbol();
433 MCSymbolData &SD = Asm.getSymbolData(Symbol);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000434
Benjamin Kramer14807272010-10-27 19:53:52 +0000435 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000436 size_t Pos = AliasName.find('@');
437 if (Pos == StringRef::npos)
438 continue;
439
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000440 // Aliases defined with .symvar copy the binding from the symbol they alias.
441 // This is the first place we are able to copy this information.
David Blaikie583a31c2014-04-18 18:24:25 +0000442 OriginalData.setExternal(SD.isExternal());
443 MCELF::SetBinding(OriginalData, MCELF::GetBinding(SD));
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000444
Benjamin Kramer14807272010-10-27 19:53:52 +0000445 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000446 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
447 continue;
448
Rafael Espindola26496e62010-10-27 17:56:18 +0000449 // FIXME: produce a better error message.
450 if (Symbol.isUndefined() && Rest.startswith("@@") &&
451 !Rest.startswith("@@@"))
452 report_fatal_error("A @@ version cannot be undefined");
453
Benjamin Kramer14807272010-10-27 19:53:52 +0000454 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000455 }
456}
457
Roman Divacky5a1c5492014-01-07 20:17:03 +0000458static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
459 uint8_t Type = newType;
460
461 // Propagation rules:
462 // IFUNC > FUNC > OBJECT > NOTYPE
463 // TLS_OBJECT > OBJECT > NOTYPE
464 //
465 // dont let the new type degrade the old type
466 switch (origType) {
467 default:
468 break;
469 case ELF::STT_GNU_IFUNC:
470 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
471 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
472 Type = ELF::STT_GNU_IFUNC;
473 break;
474 case ELF::STT_FUNC:
475 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
476 Type == ELF::STT_TLS)
477 Type = ELF::STT_FUNC;
478 break;
479 case ELF::STT_OBJECT:
480 if (Type == ELF::STT_NOTYPE)
481 Type = ELF::STT_OBJECT;
482 break;
483 case ELF::STT_TLS:
484 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
485 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
486 Type = ELF::STT_TLS;
487 break;
488 }
489
490 return Type;
491}
492
Rafael Espindola10be0832014-03-25 23:44:25 +0000493void ELFObjectWriter::WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000494 const MCAsmLayout &Layout) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000495 MCSymbolData &OrigData = MSD.Symbol->getData();
David Blaikieb5956d22014-04-19 00:50:15 +0000496 assert((!OrigData.getFragment() ||
497 (&OrigData.getFragment()->getParent()->getSection() ==
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000498 &MSD.Symbol->getSection())) &&
David Blaikieb5956d22014-04-19 00:50:15 +0000499 "The symbol's section doesn't match the fragment's symbol");
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000500 const MCSymbol *Base = Layout.getBaseSymbol(*MSD.Symbol);
Rafael Espindola85a84912014-03-26 00:16:43 +0000501
502 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
503 // SHN_COMMON.
504 bool IsReserved = !Base || OrigData.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000505
Jack Carter2f8d9d92013-02-19 21:57:35 +0000506 // Binding and Type share the same byte as upper and lower nibbles
Jan Sjödin30a52de2011-02-28 21:45:04 +0000507 uint8_t Binding = MCELF::GetBinding(OrigData);
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000508 uint8_t Type = MCELF::GetType(OrigData);
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000509 MCSymbolData *BaseSD = nullptr;
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000510 if (Base) {
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000511 BaseSD = &Layout.getAssembler().getSymbolData(*Base);
512 Type = mergeTypeForSet(Type, MCELF::GetType(*BaseSD));
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000513 }
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000514 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000515
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000516 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000517 // 2 bits
518 uint8_t Visibility = MCELF::GetVisibility(OrigData);
Logan Chienee365952013-12-05 00:34:11 +0000519 uint8_t Other = MCELF::getOther(OrigData) << (ELF_STO_Shift - ELF_STV_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000520 Other |= Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000521
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000522 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000523 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000524
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000525 const MCExpr *ESize = OrigData.getSize();
526 if (!ESize && Base)
527 ESize = BaseSD->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000528
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000529 if (ESize) {
530 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000531 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000532 report_fatal_error("Size expression must be absolute.");
533 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000534 }
535
536 // Write out the symbol table entry
Rafael Espindola10be0832014-03-25 23:44:25 +0000537 Writer.writeSymbol(MSD.StringIndex, Info, Value, Size, Other,
538 MSD.SectionIndex, IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000539}
540
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000541void ELFObjectWriter::WriteSymbolTable(MCAssembler &Asm,
542 const MCAsmLayout &Layout,
543 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000544
545 MCContext &Ctx = Asm.getContext();
546
547 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
548
549 // Symbol table
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000550 MCSectionELF *SymtabSection =
Rafael Espindola91fd2772015-04-29 21:09:32 +0000551 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
552 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
553 SymtabSD.setAlignment(is64Bit() ? 8 : 4);
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000554 SymbolTableIndex = addToSectionTable(SymtabSection);
Rafael Espindola91fd2772015-04-29 21:09:32 +0000555
Matt Fleming6c1ad482010-08-16 18:57:57 +0000556 // The string table must be emitted first because we need the index
557 // into the string table for all the symbol names.
Matt Fleming6c1ad482010-08-16 18:57:57 +0000558
Rafael Espindola91fd2772015-04-29 21:09:32 +0000559 SymbolTableWriter Writer(*this, is64Bit());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000560
Rafael Espindola91fd2772015-04-29 21:09:32 +0000561 uint64_t Padding = OffsetToAlignment(OS.tell(), SymtabSD.getAlignment());
562 WriteZeros(Padding);
563
564 uint64_t SecStart = OS.tell();
Rafael Espindola10be0832014-03-25 23:44:25 +0000565
Matt Fleming6c1ad482010-08-16 18:57:57 +0000566 // The first entry is the undefined symbol entry.
Rafael Espindola10be0832014-03-25 23:44:25 +0000567 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000568
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000569 for (unsigned i = 0, e = FileSymbolData.size(); i != e; ++i) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000570 Writer.writeSymbol(FileSymbolData[i], ELF::STT_FILE | ELF::STB_LOCAL, 0, 0,
571 ELF::STV_DEFAULT, ELF::SHN_ABS, true);
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000572 }
573
Matt Fleming6c1ad482010-08-16 18:57:57 +0000574 // Write the symbol table entries.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000575 LastLocalSymbolIndex = FileSymbolData.size() + LocalSymbolData.size() + 1;
576
Matt Fleming6c1ad482010-08-16 18:57:57 +0000577 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
578 ELFSymbolData &MSD = LocalSymbolData[i];
Rafael Espindola10be0832014-03-25 23:44:25 +0000579 WriteSymbol(Writer, MSD, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000580 }
581
Matt Fleming6c1ad482010-08-16 18:57:57 +0000582 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
583 ELFSymbolData &MSD = ExternalSymbolData[i];
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000584 MCSymbolData &Data = MSD.Symbol->getData();
Rafael Espindola83b2a332010-10-06 16:47:31 +0000585 assert(((Data.getFlags() & ELF_STB_Global) ||
586 (Data.getFlags() & ELF_STB_Weak)) &&
587 "External symbol requires STB_GLOBAL or STB_WEAK flag");
Rafael Espindola10be0832014-03-25 23:44:25 +0000588 WriteSymbol(Writer, MSD, Layout);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000589 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming6c1ad482010-08-16 18:57:57 +0000590 LastLocalSymbolIndex++;
591 }
592
593 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
594 ELFSymbolData &MSD = UndefinedSymbolData[i];
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000595 MCSymbolData &Data = MSD.Symbol->getData();
Rafael Espindola10be0832014-03-25 23:44:25 +0000596 WriteSymbol(Writer, MSD, Layout);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000597 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming6c1ad482010-08-16 18:57:57 +0000598 LastLocalSymbolIndex++;
599 }
Rafael Espindola91fd2772015-04-29 21:09:32 +0000600
601 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +0000602 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola91fd2772015-04-29 21:09:32 +0000603
604 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
605 if (ShndxIndexes.empty())
606 return;
607
608 SecStart = OS.tell();
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000609 MCSectionELF *SymtabShndxSection =
Rafael Espindola91fd2772015-04-29 21:09:32 +0000610 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000611 addToSectionTable(SymtabShndxSection);
Rafael Espindola91fd2772015-04-29 21:09:32 +0000612 MCSectionData *SymtabShndxSD =
613 &Asm.getOrCreateSectionData(*SymtabShndxSection);
614 SymtabShndxSD->setAlignment(4);
615 for (uint32_t Index : ShndxIndexes)
616 write(Index);
617 SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +0000618 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000619}
620
Rafael Espindola5904e122014-03-29 06:26:49 +0000621// It is always valid to create a relocation with a symbol. It is preferable
622// to use a relocation with a section if that is possible. Using the section
623// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000624bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
625 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000626 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000627 unsigned Type) const {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000628 MCSymbolData *SD = Sym ? &Sym->getData() : nullptr;
629
Rafael Espindola5904e122014-03-29 06:26:49 +0000630 // A PCRel relocation to an absolute value has no symbol (or section). We
631 // represent that with a relocation to a null section.
632 if (!RefA)
633 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000634
Rafael Espindola5904e122014-03-29 06:26:49 +0000635 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
636 switch (Kind) {
637 default:
638 break;
639 // The .odp creation emits a relocation against the symbol ".TOC." which
640 // create a R_PPC64_TOC relocation. However the relocation symbol name
641 // in final object creation should be NULL, since the symbol does not
642 // really exist, it is just the reference to TOC base for the current
643 // object file. Since the symbol is undefined, returning false results
644 // in a relocation with a null section which is the desired result.
645 case MCSymbolRefExpr::VK_PPC_TOCBASE:
646 return false;
647
648 // These VariantKind cause the relocation to refer to something other than
649 // the symbol itself, like a linker generated table. Since the address of
650 // symbol is not relevant, we cannot replace the symbol with the
651 // section and patch the difference in the addend.
652 case MCSymbolRefExpr::VK_GOT:
653 case MCSymbolRefExpr::VK_PLT:
654 case MCSymbolRefExpr::VK_GOTPCREL:
655 case MCSymbolRefExpr::VK_Mips_GOT:
656 case MCSymbolRefExpr::VK_PPC_GOT_LO:
657 case MCSymbolRefExpr::VK_PPC_GOT_HI:
658 case MCSymbolRefExpr::VK_PPC_GOT_HA:
659 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000660 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000661
Rafael Espindola5904e122014-03-29 06:26:49 +0000662 // An undefined symbol is not in any section, so the relocation has to point
663 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000664 assert(Sym && "Expected a symbol");
665 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000666 return true;
667
668 unsigned Binding = MCELF::GetBinding(*SD);
669 switch(Binding) {
670 default:
671 llvm_unreachable("Invalid Binding");
672 case ELF::STB_LOCAL:
673 break;
674 case ELF::STB_WEAK:
675 // If the symbol is weak, it might be overridden by a symbol in another
676 // file. The relocation has to point to the symbol so that the linker
677 // can update it.
678 return true;
679 case ELF::STB_GLOBAL:
680 // Global ELF symbols can be preempted by the dynamic linker. The relocation
681 // has to point to the symbol for a reason analogous to the STB_WEAK case.
682 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000683 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000684
Rafael Espindola5904e122014-03-29 06:26:49 +0000685 // If a relocation points to a mergeable section, we have to be careful.
686 // If the offset is zero, a relocation with the section will encode the
687 // same information. With a non-zero offset, the situation is different.
688 // For example, a relocation can point 42 bytes past the end of a string.
689 // If we change such a relocation to use the section, the linker would think
690 // that it pointed to another string and subtracting 42 at runtime will
691 // produce the wrong value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000692 auto &Sec = cast<MCSectionELF>(Sym->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000693 unsigned Flags = Sec.getFlags();
694 if (Flags & ELF::SHF_MERGE) {
695 if (C != 0)
696 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000697
698 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
699 // only handle section relocations to mergeable sections if using RELA.
700 if (!hasRelocationAddend())
701 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000702 }
703
Rafael Espindola5904e122014-03-29 06:26:49 +0000704 // Most TLS relocations use a got, so they need the symbol. Even those that
Rafael Espindola11527a12014-10-06 12:33:27 +0000705 // are just an offset (@tpoff), require a symbol in gold versions before
706 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
707 // http://sourceware.org/PR16773.
Rafael Espindola5904e122014-03-29 06:26:49 +0000708 if (Flags & ELF::SHF_TLS)
709 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000710
Rafael Espindola9ef84412014-04-11 19:18:01 +0000711 // If the symbol is a thumb function the final relocation must set the lowest
712 // bit. With a symbol that is done by just having the symbol have that bit
713 // set, so we would lose the bit if we relocated with the section.
714 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000715 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000716 return true;
717
Ulrich Weigand46797c62014-07-20 23:15:06 +0000718 if (TargetObjectWriter->needsRelocateWithSymbol(*SD, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000719 return true;
720 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000721}
722
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000723static const MCSymbol *getWeakRef(const MCSymbolRefExpr &Ref) {
724 const MCSymbol &Sym = Ref.getSymbol();
725
726 if (Ref.getKind() == MCSymbolRefExpr::VK_WEAKREF)
727 return &Sym;
728
729 if (!Sym.isVariable())
730 return nullptr;
731
732 const MCExpr *Expr = Sym.getVariableValue();
733 const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr);
734 if (!Inner)
735 return nullptr;
736
737 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF)
738 return &Inner->getSymbol();
739 return nullptr;
740}
741
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000742// True if the assembler knows nothing about the final value of the symbol.
743// This doesn't cover the comdat issues, since in those cases the assembler
744// can at least know that all symbols in the section will move together.
Rafael Espindolac9e70682015-03-24 23:48:44 +0000745static bool isWeak(const MCSymbolData &D) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000746 if (MCELF::GetType(D) == ELF::STT_GNU_IFUNC)
747 return true;
748
749 switch (MCELF::GetBinding(D)) {
750 default:
751 llvm_unreachable("Unknown binding");
752 case ELF::STB_LOCAL:
753 return false;
754 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000755 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000756 case ELF::STB_WEAK:
757 case ELF::STB_GNU_UNIQUE:
758 return true;
759 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000760}
761
Rafael Espindola26585542015-01-19 21:11:14 +0000762void ELFObjectWriter::RecordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000763 const MCAsmLayout &Layout,
764 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000765 const MCFixup &Fixup, MCValue Target,
766 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000767 const MCSectionData *FixupSectionD = Fragment->getParent();
768 const MCSectionELF &FixupSection =
769 cast<MCSectionELF>(FixupSectionD->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000770 uint64_t C = Target.getConstant();
771 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000772
Rafael Espindola5904e122014-03-29 06:26:49 +0000773 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
774 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
775 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000776
Rafael Espindola5904e122014-03-29 06:26:49 +0000777 // Let A, B and C being the components of Target and R be the location of
778 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
779 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000780
Rafael Espindola5904e122014-03-29 06:26:49 +0000781 // In general, ELF has no relocations for -B. It can only represent (A + C)
782 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
783 // replace B to implement it: (A - R - K + C)
784 if (IsPCRel)
Jim Grosbach6f482002015-05-18 18:43:14 +0000785 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000786 Fixup.getLoc(),
787 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000788
Rafael Espindola5904e122014-03-29 06:26:49 +0000789 const MCSymbol &SymB = RefB->getSymbol();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000790
Rafael Espindola5904e122014-03-29 06:26:49 +0000791 if (SymB.isUndefined())
Jim Grosbach6f482002015-05-18 18:43:14 +0000792 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000793 Fixup.getLoc(),
794 Twine("symbol '") + SymB.getName() +
795 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000796
Rafael Espindola5904e122014-03-29 06:26:49 +0000797 assert(!SymB.isAbsolute() && "Should have been folded");
798 const MCSection &SecB = SymB.getSection();
Rafael Espindola34948e52015-04-30 00:45:46 +0000799 if (&SecB != &FixupSection)
Jim Grosbach6f482002015-05-18 18:43:14 +0000800 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000801 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000802
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000803 if (::isWeak(SymB.getData()))
Jim Grosbach6f482002015-05-18 18:43:14 +0000804 Asm.getContext().reportFatalError(
Rafael Espindolac9e70682015-03-24 23:48:44 +0000805 Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
806
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000807 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000808 uint64_t K = SymBOffset - FixupOffset;
809 IsPCRel = true;
810 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000811 }
812
Rafael Espindola5904e122014-03-29 06:26:49 +0000813 // We either rejected the fixup or folded B into C at this point.
814 const MCSymbolRefExpr *RefA = Target.getSymA();
815 const MCSymbol *SymA = RefA ? &RefA->getSymbol() : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000816
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000817 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000818 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000819 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000820 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000821
822 uint64_t Addend = 0;
823 if (hasRelocationAddend()) {
824 Addend = C;
825 C = 0;
826 }
827
828 FixedValue = C;
829
830 // FIXME: What is this!?!?
831 MCSymbolRefExpr::VariantKind Modifier =
832 RefA ? RefA->getKind() : MCSymbolRefExpr::VK_None;
Rafael Espindola9e252bf2011-12-21 14:26:29 +0000833 if (RelocNeedsGOT(Modifier))
834 NeedsGOT = true;
Jan Sjödin30a52de2011-02-28 21:45:04 +0000835
Rafael Espindola5904e122014-03-29 06:26:49 +0000836 if (!RelocateWithSymbol) {
837 const MCSection *SecA =
838 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000839 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
840 MCSymbol *SectionSymbol =
841 ELFSec ? Asm.getContext().getOrCreateSectionSymbol(*ELFSec)
842 : nullptr;
843 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000844 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000845 return;
846 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000847
Rafael Espindola5904e122014-03-29 06:26:49 +0000848 if (SymA) {
849 if (const MCSymbol *R = Renames.lookup(SymA))
850 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000851
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000852 if (const MCSymbol *WeakRef = getWeakRef(*RefA))
853 WeakrefUsedInReloc.insert(WeakRef);
Rafael Espindola5904e122014-03-29 06:26:49 +0000854 else
855 UsedInReloc.insert(SymA);
856 }
857 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000858 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000859 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000860}
861
862
Benjamin Kramer86511dc2010-08-23 21:19:37 +0000863uint64_t
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000864ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
865 const MCSymbol *S) {
David Blaikie908f4d42014-04-24 16:59:40 +0000866 const MCSymbolData &SD = Asm.getSymbolData(*S);
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000867 return SD.getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000868}
869
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000870bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000871 const MCSymbol &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000872 bool Renamed) {
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000873 const MCSymbolData &Data = Symbol.getData();
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000874 if (Symbol.isVariable()) {
875 const MCExpr *Expr = Symbol.getVariableValue();
876 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
877 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
878 return false;
879 }
880 }
Rafael Espindola16145972010-11-01 14:28:48 +0000881
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000882 if (Used)
883 return true;
884
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000885 if (Renamed)
886 return false;
887
Rafael Espindola45834a02010-10-29 23:09:31 +0000888 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
889 return true;
890
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000891 if (Symbol.isVariable()) {
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000892 const MCSymbol *Base = Layout.getBaseSymbol(Symbol);
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000893 if (Base && Base->isUndefined())
894 return false;
895 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000896
Jan Sjödin30a52de2011-02-28 21:45:04 +0000897 bool IsGlobal = MCELF::GetBinding(Data) == ELF::STB_GLOBAL;
Rafael Espindola9e18e962011-02-23 20:22:07 +0000898 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000899 return false;
900
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000901 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000902 return false;
903
904 return true;
905}
906
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000907bool ELFObjectWriter::isLocal(const MCSymbol &Symbol, bool isUsedInReloc) {
908 const MCSymbolData &Data = Symbol.getData();
Rafael Espindolab1d07892010-10-05 18:01:23 +0000909 if (Data.isExternal())
910 return false;
911
Rafael Espindola39f50422014-04-28 14:24:44 +0000912 if (Symbol.isDefined())
913 return true;
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000914
Rafael Espindola39f50422014-04-28 14:24:44 +0000915 if (isUsedInReloc)
Rafael Espindolab1d07892010-10-05 18:01:23 +0000916 return false;
917
918 return true;
919}
920
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000921void ELFObjectWriter::computeSymbolTable(
922 MCAssembler &Asm, const MCAsmLayout &Layout,
923 const SectionIndexMapTy &SectionIndexMap,
924 const RevGroupMapTy &RevGroupMap) {
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000925 // FIXME: Is this the correct place to do this?
Rafael Espindola940a0ee2011-06-05 01:20:06 +0000926 // FIXME: Why is an undefined reference to _GLOBAL_OFFSET_TABLE_ needed?
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000927 if (NeedsGOT) {
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000928 StringRef Name = "_GLOBAL_OFFSET_TABLE_";
Jim Grosbach6f482002015-05-18 18:43:14 +0000929 MCSymbol *Sym = Asm.getContext().getOrCreateSymbol(Name);
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000930 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
931 Data.setExternal(true);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000932 MCELF::SetBinding(Data, ELF::STB_GLOBAL);
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000933 }
934
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000935 // Add the data for the symbols.
Duncan P. N. Exon Smithf48de1c2015-05-16 00:35:24 +0000936 for (const MCSymbol &Symbol : Asm.symbols()) {
937 MCSymbolData &SD = Symbol.getData();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000938
Rafael Espindola16145972010-11-01 14:28:48 +0000939 bool Used = UsedInReloc.count(&Symbol);
940 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000941 bool isSignature = RevGroupMap.count(&Symbol);
942
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000943 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000944 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000945 continue;
946
Matt Fleming6c1ad482010-08-16 18:57:57 +0000947 ELFSymbolData MSD;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000948 MSD.Symbol = &Symbol;
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000949 const MCSymbol *BaseSymbol = Layout.getBaseSymbol(Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000950
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000951 // Undefined symbols are global, but this is the first place we
952 // are able to set it.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000953 bool Local = isLocal(Symbol, Used);
David Blaikie583a31c2014-04-18 18:24:25 +0000954 if (!Local && MCELF::GetBinding(SD) == ELF::STB_LOCAL) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000955 assert(BaseSymbol);
David Blaikie583a31c2014-04-18 18:24:25 +0000956 MCSymbolData &BaseData = Asm.getSymbolData(*BaseSymbol);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000957 MCELF::SetBinding(SD, ELF::STB_GLOBAL);
David Blaikie583a31c2014-04-18 18:24:25 +0000958 MCELF::SetBinding(BaseData, ELF::STB_GLOBAL);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000959 }
960
Rafael Espindola022bb762014-03-24 03:43:21 +0000961 if (!BaseSymbol) {
962 MSD.SectionIndex = ELF::SHN_ABS;
David Blaikie583a31c2014-04-18 18:24:25 +0000963 } else if (SD.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000964 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000965 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindola022bb762014-03-24 03:43:21 +0000966 } else if (BaseSymbol->isUndefined()) {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000967 if (isSignature && !Used)
Rafael Espindola89feff32015-04-28 22:59:58 +0000968 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000969 else
970 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola022bb762014-03-24 03:43:21 +0000971 if (!Used && WeakrefUsed)
David Blaikie583a31c2014-04-18 18:24:25 +0000972 MCELF::SetBinding(SD, ELF::STB_WEAK);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000973 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000974 const MCSectionELF &Section =
Rafael Espindola022bb762014-03-24 03:43:21 +0000975 static_cast<const MCSectionELF&>(BaseSymbol->getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000976 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000977 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000978 }
979
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000980 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
981 // in defined ones.
982 //
983 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000984 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000985 // trivial.
986 //
987 // We thus have to be careful to not perform the symbol version replacement
988 // blindly:
989 //
990 // The ELF format is used on Windows by the MCJIT engine. Thus, on
991 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
992 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
993 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
994 // the EFLObjectWriter should not interpret the "@@@" sub-string as
995 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
996 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
997 // "__imp_?" or "__imp_@?".
998 //
999 // It would have been interesting to perform the MS mangling prefix check
1000 // only when the target triple is of the form *-pc-windows-elf. But, it
1001 // seems that this information is not easily accessible from the
1002 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001003 StringRef Name = Symbol.getName();
Rafael Espindola5a67ed12015-01-22 14:20:45 +00001004 if (!Name.startswith("?") && !Name.startswith("@?") &&
1005 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
1006 // This symbol isn't following the MSVC C++ name mangling convention. We
1007 // can thus safely interpret the @@@ in symbol names as specifying symbol
1008 // versioning.
1009 SmallString<32> Buf;
1010 size_t Pos = Name.find("@@@");
1011 if (Pos != StringRef::npos) {
1012 Buf += Name.substr(0, Pos);
1013 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
1014 Buf += Name.substr(Pos + Skip);
1015 Name = Buf;
1016 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001017 }
Rafael Espindolab6613022014-10-17 01:48:58 +00001018
1019 // Sections have their own string table
1020 if (MCELF::GetType(SD) != ELF::STT_SECTION)
1021 MSD.Name = StrTabBuilder.add(Name);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001022
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +00001023 if (MSD.SectionIndex == ELF::SHN_UNDEF)
1024 UndefinedSymbolData.push_back(MSD);
1025 else if (Local)
1026 LocalSymbolData.push_back(MSD);
1027 else
1028 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001029 }
1030
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001031 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i)
1032 StrTabBuilder.add(*i);
1033
Hans Wennborgf26bfc12014-09-29 22:43:20 +00001034 StrTabBuilder.finalize(StringTableBuilder::ELF);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001035
1036 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i)
1037 FileSymbolData.push_back(StrTabBuilder.getOffset(*i));
1038
Rafael Espindolab6613022014-10-17 01:48:58 +00001039 for (ELFSymbolData &MSD : LocalSymbolData)
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +00001040 MSD.StringIndex = MCELF::GetType(MSD.Symbol->getData()) == ELF::STT_SECTION
Rafael Espindolab6613022014-10-17 01:48:58 +00001041 ? 0
1042 : StrTabBuilder.getOffset(MSD.Name);
1043 for (ELFSymbolData &MSD : ExternalSymbolData)
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001044 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
1045 for (ELFSymbolData& MSD : UndefinedSymbolData)
1046 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
1047
Matt Fleming6c1ad482010-08-16 18:57:57 +00001048 // Symbols are required to be in lexicographic order.
1049 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
1050 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
1051 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
1052
1053 // Set the symbol indices. Local symbols must come before all other
1054 // symbols with non-local bindings.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +00001055 unsigned Index = FileSymbolData.size() + 1;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001056 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +00001057 LocalSymbolData[i].Symbol->getData().setIndex(Index++);
Rafael Espindola0e3decf2010-11-14 03:12:24 +00001058
Matt Fleming6c1ad482010-08-16 18:57:57 +00001059 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +00001060 ExternalSymbolData[i].Symbol->getData().setIndex(Index++);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001061 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +00001062 UndefinedSymbolData[i].Symbol->getData().setIndex(Index++);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001063}
1064
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001065MCSectionELF *
Rafael Espindolabda19802015-04-30 14:21:49 +00001066ELFObjectWriter::createRelocationSection(MCAssembler &Asm,
1067 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +00001068 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +00001069 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001070
Rafael Espindolaead85492015-02-17 20:31:13 +00001071 MCContext &Ctx = Asm.getContext();
Rafael Espindola34948e52015-04-30 00:45:46 +00001072 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +00001073 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
1074 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +00001075
Rafael Espindolaead85492015-02-17 20:31:13 +00001076 unsigned EntrySize;
1077 if (hasRelocationAddend())
1078 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
1079 else
1080 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001081
Rafael Espindolaead85492015-02-17 20:31:13 +00001082 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +00001083 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +00001084 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +00001085
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001086 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +00001087 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +00001088 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001089 MCSectionData &RelSD = Asm.getOrCreateSectionData(*RelaSection);
1090 RelSD.setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +00001091 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001092}
Matt Fleming6c1ad482010-08-16 18:57:57 +00001093
David Blaikiee06e8012014-04-11 22:11:50 +00001094static SmallVector<char, 128>
Rafael Espindolaae7e4992015-04-29 19:20:10 +00001095getUncompressedData(const MCAsmLayout &Layout,
Rafael Espindola868b3f42015-04-30 21:51:58 +00001096 const MCSectionData::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +00001097 SmallVector<char, 128> UncompressedData;
1098 for (const MCFragment &F : Fragments) {
1099 const SmallVectorImpl<char> *Contents;
1100 switch (F.getKind()) {
1101 case MCFragment::FT_Data:
1102 Contents = &cast<MCDataFragment>(F).getContents();
1103 break;
1104 case MCFragment::FT_Dwarf:
1105 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
1106 break;
1107 case MCFragment::FT_DwarfFrame:
1108 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
1109 break;
1110 default:
1111 llvm_unreachable(
1112 "Not expecting any other fragment types in a debug_* section");
1113 }
1114 UncompressedData.append(Contents->begin(), Contents->end());
1115 }
1116 return UncompressedData;
1117}
1118
1119// Include the debug info compression header:
1120// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
1121// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +00001122static bool
David Blaikiee06e8012014-04-11 22:11:50 +00001123prependCompressionHeader(uint64_t Size,
1124 SmallVectorImpl<char> &CompressedContents) {
Benjamin Kramer7149aab2015-03-01 18:09:56 +00001125 const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +00001126 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
1127 return false;
David Blaikie8019bf82014-04-10 21:53:53 +00001128 if (sys::IsLittleEndianHost)
Artyom Skrobov9aea8432014-06-14 13:18:07 +00001129 sys::swapByteOrder(Size);
David Blaikie8019bf82014-04-10 21:53:53 +00001130 CompressedContents.insert(CompressedContents.begin(),
1131 Magic.size() + sizeof(Size), 0);
1132 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
1133 std::copy(reinterpret_cast<char *>(&Size),
1134 reinterpret_cast<char *>(&Size + 1),
1135 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +00001136 return true;
David Blaikie8019bf82014-04-10 21:53:53 +00001137}
1138
Rafael Espindola868b3f42015-04-30 21:51:58 +00001139void ELFObjectWriter::writeSectionData(const MCAssembler &Asm,
1140 const MCSectionData &SD,
1141 const MCAsmLayout &Layout) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001142 MCSectionELF &Section = static_cast<MCSectionELF &>(SD.getSection());
Rafael Espindola868b3f42015-04-30 21:51:58 +00001143 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +00001144
Rafael Espindola868b3f42015-04-30 21:51:58 +00001145 // Compressing debug_frame requires handling alignment fragments which is
1146 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1147 // for writing to arbitrary buffers) for little benefit.
1148 if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
1149 !SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
1150 Asm.writeSectionData(&SD, Layout);
1151 return;
1152 }
1153
1154 // Gather the uncompressed data from all the fragments.
1155 const MCSectionData::FragmentListType &Fragments = SD.getFragmentList();
David Blaikie8019bf82014-04-10 21:53:53 +00001156 SmallVector<char, 128> UncompressedData =
1157 getUncompressedData(Layout, Fragments);
1158
Rafael Espindola868b3f42015-04-30 21:51:58 +00001159 SmallVector<char, 128> CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001160 zlib::Status Success = zlib::compress(
1161 StringRef(UncompressedData.data(), UncompressedData.size()),
1162 CompressedContents);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001163 if (Success != zlib::StatusOK) {
1164 Asm.writeSectionData(&SD, Layout);
David Blaikie8019bf82014-04-10 21:53:53 +00001165 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001166 }
David Blaikie8019bf82014-04-10 21:53:53 +00001167
Rafael Espindola868b3f42015-04-30 21:51:58 +00001168 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
1169 Asm.writeSectionData(&SD, Layout);
1170 return;
1171 }
David Blaikie8019bf82014-04-10 21:53:53 +00001172 Asm.getContext().renameELFSection(&Section,
1173 (".z" + SectionName.drop_front(1)).str());
Rafael Espindola868b3f42015-04-30 21:51:58 +00001174 OS << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001175}
1176
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001177void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1178 uint64_t Flags, uint64_t Address,
1179 uint64_t Offset, uint64_t Size,
1180 uint32_t Link, uint32_t Info,
1181 uint64_t Alignment,
1182 uint64_t EntrySize) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001183 Write32(Name); // sh_name: index into string table
1184 Write32(Type); // sh_type
1185 WriteWord(Flags); // sh_flags
1186 WriteWord(Address); // sh_addr
1187 WriteWord(Offset); // sh_offset
1188 WriteWord(Size); // sh_size
1189 Write32(Link); // sh_link
1190 Write32(Info); // sh_info
1191 WriteWord(Alignment); // sh_addralign
1192 WriteWord(EntrySize); // sh_entsize
1193}
1194
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001195void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001196 const MCSectionELF &Sec) {
1197 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001198
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001199 // Sort the relocation entries. Most targets just sort by Offset, but some
1200 // (e.g., MIPS) have additional constraints.
1201 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001202
1203 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001204 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindolab6613022014-10-17 01:48:58 +00001205 unsigned Index =
1206 Entry.Symbol ? getSymbolIndexInSymbolTable(Asm, Entry.Symbol) : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001207
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001208 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001209 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001210 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001211 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001212
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001213 write(TargetObjectWriter->getRSsym(Entry.Type));
1214 write(TargetObjectWriter->getRType3(Entry.Type));
1215 write(TargetObjectWriter->getRType2(Entry.Type));
1216 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001217 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001218 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001219 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001220 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001221 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001222 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001223 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001224 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001225 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001226
Rafael Espindolabce26a12010-10-05 15:11:03 +00001227 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001228 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001229 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001230
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001231 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001232 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001233 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001234 }
1235}
1236
Rafael Espindolab1863912015-04-30 21:10:06 +00001237const MCSectionELF *ELFObjectWriter::createSectionHeaderStringTable() {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001238 const MCSectionELF *ShstrtabSection = SectionTable[ShstrtabIndex - 1];
Rafael Espindola88d1f632015-04-29 20:25:24 +00001239 ShStrTabBuilder.finalize(StringTableBuilder::ELF);
1240 OS << ShStrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001241 return ShstrtabSection;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001242}
1243
Rafael Espindolab1863912015-04-30 21:10:06 +00001244const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001245 MCSectionELF *StrtabSection =
Rafael Espindola88abc392015-04-29 20:34:31 +00001246 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001247 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindola88abc392015-04-29 20:34:31 +00001248 OS << StrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001249 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001250}
1251
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001252void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1253 uint32_t GroupSymbolIndex, uint64_t Offset,
1254 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001255 uint64_t sh_link = 0;
1256 uint64_t sh_info = 0;
1257
1258 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001259 default:
1260 // Nothing to do.
1261 break;
1262
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001263 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001264 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001265
1266 case ELF::SHT_REL:
1267 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001268 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001269 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001270 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001271 sh_info = SectionIndexMap.lookup(InfoSection);
1272 break;
1273 }
1274
1275 case ELF::SHT_SYMTAB:
1276 case ELF::SHT_DYNSYM:
1277 sh_link = StringTableIndex;
1278 sh_info = LastLocalSymbolIndex;
1279 break;
1280
1281 case ELF::SHT_SYMTAB_SHNDX:
1282 sh_link = SymbolTableIndex;
1283 break;
1284
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001285 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001286 sh_link = SymbolTableIndex;
1287 sh_info = GroupSymbolIndex;
1288 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001289 }
1290
Logan Chien4b724422013-02-05 14:18:59 +00001291 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001292 Section.getType() == ELF::SHT_ARM_EXIDX)
1293 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001294
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001295 WriteSecHdrEntry(ShStrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001296 Section.getType(), Section.getFlags(), 0, Offset, Size,
1297 sh_link, sh_info, Section.getAlignment(),
1298 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001299}
1300
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001301void ELFObjectWriter::writeSectionHeader(
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001302 MCAssembler &Asm, const MCAsmLayout &Layout,
1303 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001304 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001305 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001306
Matt Fleming6c1ad482010-08-16 18:57:57 +00001307 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001308 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001309 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001310 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001311
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001312 for (MCSectionELF *Section : SectionTable) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001313 const MCSectionData &SD = Asm.getOrCreateSectionData(*Section);
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001314 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001315 unsigned Type = Section->getType();
1316 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001317 GroupSymbolIndex = 0;
1318 else
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001319 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm, Section->getGroup());
Matt Fleming6c1ad482010-08-16 18:57:57 +00001320
Rafael Espindolabda19802015-04-30 14:21:49 +00001321 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001322 SectionOffsets.find(Section)->second;
1323 uint64_t Size = Type == ELF::SHT_NOBITS ? Layout.getSectionAddressSize(&SD)
1324 : Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001325
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001326 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001327 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001328 }
1329}
1330
Rafael Espindola1557fd62011-03-20 18:44:20 +00001331void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1332 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001333 MCContext &Ctx = Asm.getContext();
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001334 MCSectionELF *ShstrtabSection =
Rafael Espindolabda19802015-04-30 14:21:49 +00001335 Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001336 ShstrtabIndex = addToSectionTable(ShstrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001337
Rafael Espindola1557fd62011-03-20 18:44:20 +00001338 RevGroupMapTy RevGroupMap;
1339 SectionIndexMapTy SectionIndexMap;
1340
Rafael Espindolabda19802015-04-30 14:21:49 +00001341 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001342
Rafael Espindola1557fd62011-03-20 18:44:20 +00001343 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001344 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001345
Rafael Espindola7230f802015-04-08 11:41:24 +00001346 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001347 SectionOffsetsTy SectionOffsets;
1348 bool ComputedSymtab = false;
1349 for (const MCSectionData &SD : Asm) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001350 MCSectionELF &Section = static_cast<MCSectionELF &>(SD.getSection());
Rafael Espindolabda19802015-04-30 14:21:49 +00001351
Rafael Espindola642a2212015-04-14 22:54:16 +00001352 uint64_t Padding = OffsetToAlignment(OS.tell(), SD.getAlignment());
1353 WriteZeros(Padding);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001354
Rafael Espindola642a2212015-04-14 22:54:16 +00001355 // Remember the offset into the file for this section.
Rafael Espindolab6417502015-04-28 15:04:09 +00001356 uint64_t SecStart = OS.tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001357
Rafael Espindolabda19802015-04-30 14:21:49 +00001358 const MCSymbol *SignatureSymbol = Section.getGroup();
1359 unsigned Type = Section.getType();
1360 if (Type == ELF::SHT_GROUP) {
1361 assert(SignatureSymbol);
1362 write(uint32_t(ELF::GRP_COMDAT));
1363 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1364 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1365 write(SecIndex);
1366 }
1367 } else if (Type == ELF::SHT_REL || Type == ELF::SHT_RELA) {
1368 if (!ComputedSymtab) {
1369 // Compute symbol table information.
1370 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap);
1371 ComputedSymtab = true;
1372 }
1373 writeRelocations(Asm, *Section.getAssociatedSection());
1374 } else {
Rafael Espindola868b3f42015-04-30 21:51:58 +00001375 writeSectionData(Asm, SD, Layout);
Rafael Espindolabda19802015-04-30 14:21:49 +00001376 }
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001377
Rafael Espindolab6417502015-04-28 15:04:09 +00001378 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001379 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1380
1381 if (Type == ELF::SHT_GROUP || Type == ELF::SHT_REL || Type == ELF::SHT_RELA)
1382 continue;
1383
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001384 MCSectionELF *RelSection = createRelocationSection(Asm, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001385
1386 if (SignatureSymbol) {
1387 Asm.getOrCreateSymbolData(*SignatureSymbol);
1388 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1389 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001390 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001391 GroupIdx = addToSectionTable(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001392 MCSectionData *GroupD = &Asm.getOrCreateSectionData(*Group);
1393 GroupD->setAlignment(4);
1394 }
1395 GroupMembers[SignatureSymbol].push_back(&Section);
1396 if (RelSection)
1397 GroupMembers[SignatureSymbol].push_back(RelSection);
1398 }
1399
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001400 SectionIndexMap[&Section] = addToSectionTable(&Section);
1401 if (RelSection)
1402 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001403 }
1404
1405 if (!ComputedSymtab) {
1406 // Compute symbol table information.
1407 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap);
1408 ComputedSymtab = true;
Rafael Espindola642a2212015-04-14 22:54:16 +00001409 }
1410
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001411 WriteSymbolTable(Asm, Layout, SectionOffsets);
Rafael Espindola91fd2772015-04-29 21:09:32 +00001412
Rafael Espindola88d1f632015-04-29 20:25:24 +00001413 {
1414 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001415 const MCSectionELF *Sec = createStringTable(Ctx);
Rafael Espindola88abc392015-04-29 20:34:31 +00001416 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001417 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001418 }
1419
1420 {
1421 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001422 const MCSectionELF *Sec = createSectionHeaderStringTable();
Rafael Espindola88d1f632015-04-29 20:25:24 +00001423 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001424 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88d1f632015-04-29 20:25:24 +00001425 }
1426
Rafael Espindola642a2212015-04-14 22:54:16 +00001427 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001428 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001429 WriteZeros(Padding);
1430
Rafael Espindola642a2212015-04-14 22:54:16 +00001431 const unsigned SectionHeaderOffset = OS.tell();
1432
Rafael Espindola1557fd62011-03-20 18:44:20 +00001433 // ... then the section header table ...
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001434 writeSectionHeader(Asm, Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001435
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001436 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001437 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001438 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001439 if (sys::IsLittleEndianHost != IsLittleEndian)
1440 sys::swapByteOrder(NumSections);
1441 unsigned NumSectionsOffset;
1442
Rafael Espindola642a2212015-04-14 22:54:16 +00001443 if (is64Bit()) {
1444 uint64_t Val = SectionHeaderOffset;
1445 if (sys::IsLittleEndianHost != IsLittleEndian)
1446 sys::swapByteOrder(Val);
1447 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1448 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001449 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001450 } else {
1451 uint32_t Val = SectionHeaderOffset;
1452 if (sys::IsLittleEndianHost != IsLittleEndian)
1453 sys::swapByteOrder(Val);
1454 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1455 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001456 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001457 }
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001458 OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
1459 NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001460}
1461
Rafael Espindola94a88d72015-04-06 15:27:57 +00001462bool ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001463 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001464 bool InSet, bool IsPCRel) const {
1465 if (IsPCRel) {
1466 assert(!InSet);
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001467 if (::isWeak(SymA.getData()))
Rafael Espindola35d61892015-04-17 21:15:17 +00001468 return false;
1469 }
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001470 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001471 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001472}
1473
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +00001474bool ELFObjectWriter::isWeak(const MCSymbol &Sym) const {
1475 const MCSymbolData &SD = Sym.getData();
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001476 if (::isWeak(SD))
1477 return true;
1478
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001479 // It is invalid to replace a reference to a global in a comdat
1480 // with a reference to a local since out of comdat references
1481 // to a local are forbidden.
1482 // We could try to return false for more cases, like the reference
1483 // being in the same comdat or Sym being an alias to another global,
1484 // but it is not clear if it is worth the effort.
Rafael Espindola29c82702015-04-20 12:44:06 +00001485 if (MCELF::GetBinding(SD) != ELF::STB_GLOBAL)
1486 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001487
Rafael Espindola29c82702015-04-20 12:44:06 +00001488 if (!Sym.isInSection())
1489 return false;
1490
1491 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1492 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001493}
1494
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001495MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001496 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001497 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001498 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001499}