blob: 2ace9843a77de5876caa3feea0edac95cd30a037 [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);
75 static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout);
Rafael Espindola3b5ee552014-04-28 13:39:57 +000076 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolData &Data,
Rafael Espindola29abd972011-12-22 03:38:00 +000077 bool Used, bool Renamed);
Rafael Espindola39f50422014-04-28 14:24:44 +000078 static bool isLocal(const MCSymbolData &Data, 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 {
82 MCSymbolData *SymbolData;
83 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 {
Rafael Espindolab6613022014-10-17 01:48:58 +000089 unsigned LHSType = MCELF::GetType(*SymbolData);
90 unsigned RHSType = MCELF::GetType(*RHS.SymbolData);
91 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.
136 std::vector<const MCSectionELF *> SectionTable;
137 unsigned addToSectionTable(const 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();
166 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 Espindola59f0e312015-04-29 21:13:30 +0000185 template <typename T> void write(MCDataFragment &F, T Value);
Rafael Espindola29abd972011-12-22 03:38:00 +0000186
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,
Rafael Espindola5904e122014-03-29 06:26:49 +0000201 const MCSymbolData *SD, uint64_t C,
202 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 Espindolabda19802015-04-30 14:21:49 +0000224 const MCSectionELF *createRelocationSection(MCAssembler &Asm,
225 const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000226
David Blaikie8019bf82014-04-10 21:53:53 +0000227 void CompressDebugSections(MCAssembler &Asm, MCAsmLayout &Layout);
228
Rafael Espindolab1863912015-04-30 21:10:06 +0000229 const MCSectionELF *createSectionHeaderStringTable();
230 const MCSectionELF *createStringTable(MCContext &Ctx);
Rafael Espindola29abd972011-12-22 03:38:00 +0000231
Craig Topper34a61bc2014-03-08 07:02:02 +0000232 void ExecutePostLayoutBinding(MCAssembler &Asm,
233 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000234
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000235 void writeSectionHeader(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000236 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +0000237 const SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000238
Rafael Espindola29abd972011-12-22 03:38:00 +0000239 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
240 uint64_t Address, uint64_t Offset,
241 uint64_t Size, uint32_t Link, uint32_t Info,
242 uint64_t Alignment, uint64_t EntrySize);
243
Rafael Espindola34948e52015-04-30 00:45:46 +0000244 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000245
Craig Topper34a61bc2014-03-08 07:02:02 +0000246 bool
Rafael Espindola29abd972011-12-22 03:38:00 +0000247 IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
248 const MCSymbolData &DataA,
249 const MCFragment &FB,
250 bool InSet,
Craig Topper34a61bc2014-03-08 07:02:02 +0000251 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000252
Rafael Espindolaf275ad82015-03-25 13:16:53 +0000253 bool isWeak(const MCSymbolData &SD) const override;
254
Craig Topper34a61bc2014-03-08 07:02:02 +0000255 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindola7fe7e052015-02-17 20:40:59 +0000256 void writeSection(MCAssembler &Asm,
Rafael Espindola29abd972011-12-22 03:38:00 +0000257 const SectionIndexMapTy &SectionIndexMap,
258 uint32_t GroupSymbolIndex,
259 uint64_t Offset, uint64_t Size, uint64_t Alignment,
260 const MCSectionELF &Section);
261 };
262}
263
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000264unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
265 SectionTable.push_back(Sec);
Rafael Espindolaa001a322015-04-30 20:57:14 +0000266 ShStrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000267 return SectionTable.size();
268}
269
Rafael Espindola59f0e312015-04-29 21:13:30 +0000270template <typename T> void ELFObjectWriter::write(MCDataFragment &F, T Val) {
Rafael Espindola0ce09712014-03-25 22:43:53 +0000271 if (IsLittleEndian)
272 Val = support::endian::byte_swap<T, support::little>(Val);
273 else
274 Val = support::endian::byte_swap<T, support::big>(Val);
275 const char *Start = (const char *)&Val;
276 F.getContents().append(Start, Start + sizeof(T));
277}
278
Rafael Espindola10be0832014-03-25 23:44:25 +0000279void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000280 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000281 return;
282
Rafael Espindola91fd2772015-04-29 21:09:32 +0000283 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000284}
285
Rafael Espindola91fd2772015-04-29 21:09:32 +0000286template <typename T> void SymbolTableWriter::write(T Value) {
287 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000288}
289
Rafael Espindola91fd2772015-04-29 21:09:32 +0000290SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
291 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000292
293void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
294 uint64_t size, uint8_t other,
295 uint32_t shndx, bool Reserved) {
296 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
297
298 if (LargeIndex)
299 createSymtabShndx();
300
Rafael Espindola91fd2772015-04-29 21:09:32 +0000301 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000302 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000303 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000304 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000305 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000306 }
307
308 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
309
Rafael Espindola10be0832014-03-25 23:44:25 +0000310 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000311 write(name); // st_name
312 write(info); // st_info
313 write(other); // st_other
314 write(Index); // st_shndx
315 write(value); // st_value
316 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000317 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000318 write(name); // st_name
319 write(uint32_t(value)); // st_value
320 write(uint32_t(size)); // st_size
321 write(info); // st_info
322 write(other); // st_other
323 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000324 }
325
326 ++NumWritten;
327}
328
Jan Sjödin30a52de2011-02-28 21:45:04 +0000329bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
330 const MCFixupKindInfo &FKI =
331 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
332
333 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
334}
335
336bool ELFObjectWriter::RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
337 switch (Variant) {
338 default:
339 return false;
340 case MCSymbolRefExpr::VK_GOT:
341 case MCSymbolRefExpr::VK_PLT:
342 case MCSymbolRefExpr::VK_GOTPCREL:
Rafael Espindola940a0ee2011-06-05 01:20:06 +0000343 case MCSymbolRefExpr::VK_GOTOFF:
Jan Sjödin30a52de2011-02-28 21:45:04 +0000344 case MCSymbolRefExpr::VK_TPOFF:
345 case MCSymbolRefExpr::VK_TLSGD:
346 case MCSymbolRefExpr::VK_GOTTPOFF:
347 case MCSymbolRefExpr::VK_INDNTPOFF:
348 case MCSymbolRefExpr::VK_NTPOFF:
349 case MCSymbolRefExpr::VK_GOTNTPOFF:
350 case MCSymbolRefExpr::VK_TLSLDM:
351 case MCSymbolRefExpr::VK_DTPOFF:
352 case MCSymbolRefExpr::VK_TLSLD:
353 return true;
354 }
355}
356
Jason W Kim96f4c012010-11-15 16:18:39 +0000357ELFObjectWriter::~ELFObjectWriter()
358{}
359
Matt Fleming6c1ad482010-08-16 18:57:57 +0000360// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000361void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000362 // ELF Header
363 // ----------
364 //
365 // Note
366 // ----
367 // emitWord method behaves differently for ELF32 and ELF64, writing
368 // 4 bytes in the former and 8 in the latter.
369
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000370 WriteBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000371
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000372 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000373
374 // e_ident[EI_DATA]
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000375 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000376
377 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000378 // e_ident[EI_OSABI]
Rafael Espindola1ad40952011-12-21 17:00:36 +0000379 Write8(TargetObjectWriter->getOSABI());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000380 Write8(0); // e_ident[EI_ABIVERSION]
381
382 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
383
384 Write16(ELF::ET_REL); // e_type
385
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000386 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000387
388 Write32(ELF::EV_CURRENT); // e_version
389 WriteWord(0); // e_entry, no entry point in .o file
390 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000391 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000392
Jason W Kim4761fba2011-02-04 21:41:11 +0000393 // e_flags = whatever the target wants
Jack Carter1bd90ff2013-01-30 02:09:52 +0000394 Write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000395
396 // e_ehsize = ELF header size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000397 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000398
399 Write16(0); // e_phentsize = prog header entry size
400 Write16(0); // e_phnum = # prog header entries = 0
401
402 // e_shentsize = Section header entry size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000403 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000404
405 // e_shnum = # of section header ents
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000406 Write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000407
408 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola88d1f632015-04-29 20:25:24 +0000409 assert(ShstrtabIndex < ELF::SHN_LORESERVE);
410 Write16(ShstrtabIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000411}
412
Rafael Espindolafee224f2014-04-30 21:51:13 +0000413uint64_t ELFObjectWriter::SymbolValue(MCSymbolData &Data,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000414 const MCAsmLayout &Layout) {
Rafael Espindolafee224f2014-04-30 21:51:13 +0000415 if (Data.isCommon() && Data.isExternal())
416 return Data.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000417
Rafael Espindolafee224f2014-04-30 21:51:13 +0000418 uint64_t Res;
419 if (!Layout.getSymbolOffset(&Data, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000420 return 0;
421
Rafael Espindolafee224f2014-04-30 21:51:13 +0000422 if (Layout.getAssembler().isThumbFunc(&Data.getSymbol()))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000423 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000424
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000425 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000426}
427
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000428void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
429 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000430 // The presence of symbol versions causes undefined symbols and
431 // versions declared with @@@ to be renamed.
432
David Blaikie583a31c2014-04-18 18:24:25 +0000433 for (MCSymbolData &OriginalData : Asm.symbols()) {
434 const MCSymbol &Alias = OriginalData.getSymbol();
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000435
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000436 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000437 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000438 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000439 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
440 if (!Ref)
441 continue;
442 const MCSymbol &Symbol = Ref->getSymbol();
443 MCSymbolData &SD = Asm.getSymbolData(Symbol);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000444
Benjamin Kramer14807272010-10-27 19:53:52 +0000445 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000446 size_t Pos = AliasName.find('@');
447 if (Pos == StringRef::npos)
448 continue;
449
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000450 // Aliases defined with .symvar copy the binding from the symbol they alias.
451 // This is the first place we are able to copy this information.
David Blaikie583a31c2014-04-18 18:24:25 +0000452 OriginalData.setExternal(SD.isExternal());
453 MCELF::SetBinding(OriginalData, MCELF::GetBinding(SD));
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000454
Benjamin Kramer14807272010-10-27 19:53:52 +0000455 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000456 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
457 continue;
458
Rafael Espindola26496e62010-10-27 17:56:18 +0000459 // FIXME: produce a better error message.
460 if (Symbol.isUndefined() && Rest.startswith("@@") &&
461 !Rest.startswith("@@@"))
462 report_fatal_error("A @@ version cannot be undefined");
463
Benjamin Kramer14807272010-10-27 19:53:52 +0000464 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000465 }
466}
467
Roman Divacky5a1c5492014-01-07 20:17:03 +0000468static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
469 uint8_t Type = newType;
470
471 // Propagation rules:
472 // IFUNC > FUNC > OBJECT > NOTYPE
473 // TLS_OBJECT > OBJECT > NOTYPE
474 //
475 // dont let the new type degrade the old type
476 switch (origType) {
477 default:
478 break;
479 case ELF::STT_GNU_IFUNC:
480 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
481 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
482 Type = ELF::STT_GNU_IFUNC;
483 break;
484 case ELF::STT_FUNC:
485 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
486 Type == ELF::STT_TLS)
487 Type = ELF::STT_FUNC;
488 break;
489 case ELF::STT_OBJECT:
490 if (Type == ELF::STT_NOTYPE)
491 Type = ELF::STT_OBJECT;
492 break;
493 case ELF::STT_TLS:
494 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
495 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
496 Type = ELF::STT_TLS;
497 break;
498 }
499
500 return Type;
501}
502
Rafael Espindola10be0832014-03-25 23:44:25 +0000503void ELFObjectWriter::WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000504 const MCAsmLayout &Layout) {
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000505 MCSymbolData &OrigData = *MSD.SymbolData;
David Blaikieb5956d22014-04-19 00:50:15 +0000506 assert((!OrigData.getFragment() ||
507 (&OrigData.getFragment()->getParent()->getSection() ==
508 &OrigData.getSymbol().getSection())) &&
509 "The symbol's section doesn't match the fragment's symbol");
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000510 const MCSymbol *Base = Layout.getBaseSymbol(OrigData.getSymbol());
Rafael Espindola85a84912014-03-26 00:16:43 +0000511
512 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
513 // SHN_COMMON.
514 bool IsReserved = !Base || OrigData.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000515
Jack Carter2f8d9d92013-02-19 21:57:35 +0000516 // Binding and Type share the same byte as upper and lower nibbles
Jan Sjödin30a52de2011-02-28 21:45:04 +0000517 uint8_t Binding = MCELF::GetBinding(OrigData);
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000518 uint8_t Type = MCELF::GetType(OrigData);
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000519 MCSymbolData *BaseSD = nullptr;
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000520 if (Base) {
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000521 BaseSD = &Layout.getAssembler().getSymbolData(*Base);
522 Type = mergeTypeForSet(Type, MCELF::GetType(*BaseSD));
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000523 }
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000524 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000525
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000526 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000527 // 2 bits
528 uint8_t Visibility = MCELF::GetVisibility(OrigData);
Logan Chienee365952013-12-05 00:34:11 +0000529 uint8_t Other = MCELF::getOther(OrigData) << (ELF_STO_Shift - ELF_STV_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000530 Other |= Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000531
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000532 uint64_t Value = SymbolValue(OrigData, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000533 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000534
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000535 const MCExpr *ESize = OrigData.getSize();
536 if (!ESize && Base)
537 ESize = BaseSD->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000538
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000539 if (ESize) {
540 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000541 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000542 report_fatal_error("Size expression must be absolute.");
543 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000544 }
545
546 // Write out the symbol table entry
Rafael Espindola10be0832014-03-25 23:44:25 +0000547 Writer.writeSymbol(MSD.StringIndex, Info, Value, Size, Other,
548 MSD.SectionIndex, IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000549}
550
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000551void ELFObjectWriter::WriteSymbolTable(MCAssembler &Asm,
552 const MCAsmLayout &Layout,
553 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000554
555 MCContext &Ctx = Asm.getContext();
556
557 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
558
559 // Symbol table
560 const MCSectionELF *SymtabSection =
561 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
562 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
563 SymtabSD.setAlignment(is64Bit() ? 8 : 4);
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000564 SymbolTableIndex = addToSectionTable(SymtabSection);
Rafael Espindola91fd2772015-04-29 21:09:32 +0000565
Matt Fleming6c1ad482010-08-16 18:57:57 +0000566 // The string table must be emitted first because we need the index
567 // into the string table for all the symbol names.
Matt Fleming6c1ad482010-08-16 18:57:57 +0000568
Rafael Espindola91fd2772015-04-29 21:09:32 +0000569 SymbolTableWriter Writer(*this, is64Bit());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000570
Rafael Espindola91fd2772015-04-29 21:09:32 +0000571 uint64_t Padding = OffsetToAlignment(OS.tell(), SymtabSD.getAlignment());
572 WriteZeros(Padding);
573
574 uint64_t SecStart = OS.tell();
Rafael Espindola10be0832014-03-25 23:44:25 +0000575
Matt Fleming6c1ad482010-08-16 18:57:57 +0000576 // The first entry is the undefined symbol entry.
Rafael Espindola10be0832014-03-25 23:44:25 +0000577 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000578
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000579 for (unsigned i = 0, e = FileSymbolData.size(); i != e; ++i) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000580 Writer.writeSymbol(FileSymbolData[i], ELF::STT_FILE | ELF::STB_LOCAL, 0, 0,
581 ELF::STV_DEFAULT, ELF::SHN_ABS, true);
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000582 }
583
Matt Fleming6c1ad482010-08-16 18:57:57 +0000584 // Write the symbol table entries.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000585 LastLocalSymbolIndex = FileSymbolData.size() + LocalSymbolData.size() + 1;
586
Matt Fleming6c1ad482010-08-16 18:57:57 +0000587 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
588 ELFSymbolData &MSD = LocalSymbolData[i];
Rafael Espindola10be0832014-03-25 23:44:25 +0000589 WriteSymbol(Writer, MSD, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000590 }
591
Matt Fleming6c1ad482010-08-16 18:57:57 +0000592 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
593 ELFSymbolData &MSD = ExternalSymbolData[i];
594 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola83b2a332010-10-06 16:47:31 +0000595 assert(((Data.getFlags() & ELF_STB_Global) ||
596 (Data.getFlags() & ELF_STB_Weak)) &&
597 "External symbol requires STB_GLOBAL or STB_WEAK flag");
Rafael Espindola10be0832014-03-25 23:44:25 +0000598 WriteSymbol(Writer, MSD, Layout);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000599 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming6c1ad482010-08-16 18:57:57 +0000600 LastLocalSymbolIndex++;
601 }
602
603 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
604 ELFSymbolData &MSD = UndefinedSymbolData[i];
605 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola10be0832014-03-25 23:44:25 +0000606 WriteSymbol(Writer, MSD, Layout);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000607 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming6c1ad482010-08-16 18:57:57 +0000608 LastLocalSymbolIndex++;
609 }
Rafael Espindola91fd2772015-04-29 21:09:32 +0000610
611 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +0000612 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola91fd2772015-04-29 21:09:32 +0000613
614 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
615 if (ShndxIndexes.empty())
616 return;
617
618 SecStart = OS.tell();
619 const MCSectionELF *SymtabShndxSection =
620 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000621 addToSectionTable(SymtabShndxSection);
Rafael Espindola91fd2772015-04-29 21:09:32 +0000622 MCSectionData *SymtabShndxSD =
623 &Asm.getOrCreateSectionData(*SymtabShndxSection);
624 SymtabShndxSD->setAlignment(4);
625 for (uint32_t Index : ShndxIndexes)
626 write(Index);
627 SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +0000628 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000629}
630
Rafael Espindola5904e122014-03-29 06:26:49 +0000631// It is always valid to create a relocation with a symbol. It is preferable
632// to use a relocation with a section if that is possible. Using the section
633// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000634bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
635 const MCSymbolRefExpr *RefA,
Rafael Espindola5904e122014-03-29 06:26:49 +0000636 const MCSymbolData *SD,
637 uint64_t C,
638 unsigned Type) const {
639 // A PCRel relocation to an absolute value has no symbol (or section). We
640 // represent that with a relocation to a null section.
641 if (!RefA)
642 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000643
Rafael Espindola5904e122014-03-29 06:26:49 +0000644 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
645 switch (Kind) {
646 default:
647 break;
648 // The .odp creation emits a relocation against the symbol ".TOC." which
649 // create a R_PPC64_TOC relocation. However the relocation symbol name
650 // in final object creation should be NULL, since the symbol does not
651 // really exist, it is just the reference to TOC base for the current
652 // object file. Since the symbol is undefined, returning false results
653 // in a relocation with a null section which is the desired result.
654 case MCSymbolRefExpr::VK_PPC_TOCBASE:
655 return false;
656
657 // These VariantKind cause the relocation to refer to something other than
658 // the symbol itself, like a linker generated table. Since the address of
659 // symbol is not relevant, we cannot replace the symbol with the
660 // section and patch the difference in the addend.
661 case MCSymbolRefExpr::VK_GOT:
662 case MCSymbolRefExpr::VK_PLT:
663 case MCSymbolRefExpr::VK_GOTPCREL:
664 case MCSymbolRefExpr::VK_Mips_GOT:
665 case MCSymbolRefExpr::VK_PPC_GOT_LO:
666 case MCSymbolRefExpr::VK_PPC_GOT_HI:
667 case MCSymbolRefExpr::VK_PPC_GOT_HA:
668 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000669 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000670
Rafael Espindola5904e122014-03-29 06:26:49 +0000671 // An undefined symbol is not in any section, so the relocation has to point
672 // to the symbol itself.
673 const MCSymbol &Sym = SD->getSymbol();
674 if (Sym.isUndefined())
675 return true;
676
677 unsigned Binding = MCELF::GetBinding(*SD);
678 switch(Binding) {
679 default:
680 llvm_unreachable("Invalid Binding");
681 case ELF::STB_LOCAL:
682 break;
683 case ELF::STB_WEAK:
684 // If the symbol is weak, it might be overridden by a symbol in another
685 // file. The relocation has to point to the symbol so that the linker
686 // can update it.
687 return true;
688 case ELF::STB_GLOBAL:
689 // Global ELF symbols can be preempted by the dynamic linker. The relocation
690 // has to point to the symbol for a reason analogous to the STB_WEAK case.
691 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000692 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000693
Rafael Espindola5904e122014-03-29 06:26:49 +0000694 // If a relocation points to a mergeable section, we have to be careful.
695 // If the offset is zero, a relocation with the section will encode the
696 // same information. With a non-zero offset, the situation is different.
697 // For example, a relocation can point 42 bytes past the end of a string.
698 // If we change such a relocation to use the section, the linker would think
699 // that it pointed to another string and subtracting 42 at runtime will
700 // produce the wrong value.
701 auto &Sec = cast<MCSectionELF>(Sym.getSection());
702 unsigned Flags = Sec.getFlags();
703 if (Flags & ELF::SHF_MERGE) {
704 if (C != 0)
705 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000706
707 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
708 // only handle section relocations to mergeable sections if using RELA.
709 if (!hasRelocationAddend())
710 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000711 }
712
Rafael Espindola5904e122014-03-29 06:26:49 +0000713 // Most TLS relocations use a got, so they need the symbol. Even those that
Rafael Espindola11527a12014-10-06 12:33:27 +0000714 // are just an offset (@tpoff), require a symbol in gold versions before
715 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
716 // http://sourceware.org/PR16773.
Rafael Espindola5904e122014-03-29 06:26:49 +0000717 if (Flags & ELF::SHF_TLS)
718 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000719
Rafael Espindola9ef84412014-04-11 19:18:01 +0000720 // If the symbol is a thumb function the final relocation must set the lowest
721 // bit. With a symbol that is done by just having the symbol have that bit
722 // set, so we would lose the bit if we relocated with the section.
723 // FIXME: We could use the section but add the bit to the relocation value.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000724 if (Asm.isThumbFunc(&Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000725 return true;
726
Ulrich Weigand46797c62014-07-20 23:15:06 +0000727 if (TargetObjectWriter->needsRelocateWithSymbol(*SD, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000728 return true;
729 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000730}
731
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000732static const MCSymbol *getWeakRef(const MCSymbolRefExpr &Ref) {
733 const MCSymbol &Sym = Ref.getSymbol();
734
735 if (Ref.getKind() == MCSymbolRefExpr::VK_WEAKREF)
736 return &Sym;
737
738 if (!Sym.isVariable())
739 return nullptr;
740
741 const MCExpr *Expr = Sym.getVariableValue();
742 const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr);
743 if (!Inner)
744 return nullptr;
745
746 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF)
747 return &Inner->getSymbol();
748 return nullptr;
749}
750
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000751// True if the assembler knows nothing about the final value of the symbol.
752// This doesn't cover the comdat issues, since in those cases the assembler
753// can at least know that all symbols in the section will move together.
Rafael Espindolac9e70682015-03-24 23:48:44 +0000754static bool isWeak(const MCSymbolData &D) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000755 if (MCELF::GetType(D) == ELF::STT_GNU_IFUNC)
756 return true;
757
758 switch (MCELF::GetBinding(D)) {
759 default:
760 llvm_unreachable("Unknown binding");
761 case ELF::STB_LOCAL:
762 return false;
763 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000764 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000765 case ELF::STB_WEAK:
766 case ELF::STB_GNU_UNIQUE:
767 return true;
768 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000769}
770
Rafael Espindola26585542015-01-19 21:11:14 +0000771void ELFObjectWriter::RecordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000772 const MCAsmLayout &Layout,
773 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000774 const MCFixup &Fixup, MCValue Target,
775 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000776 const MCSectionData *FixupSectionD = Fragment->getParent();
777 const MCSectionELF &FixupSection =
778 cast<MCSectionELF>(FixupSectionD->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000779 uint64_t C = Target.getConstant();
780 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000781
Rafael Espindola5904e122014-03-29 06:26:49 +0000782 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
783 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
784 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000785
Rafael Espindola5904e122014-03-29 06:26:49 +0000786 // Let A, B and C being the components of Target and R be the location of
787 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
788 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000789
Rafael Espindola5904e122014-03-29 06:26:49 +0000790 // In general, ELF has no relocations for -B. It can only represent (A + C)
791 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
792 // replace B to implement it: (A - R - K + C)
793 if (IsPCRel)
794 Asm.getContext().FatalError(
795 Fixup.getLoc(),
796 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000797
Rafael Espindola5904e122014-03-29 06:26:49 +0000798 const MCSymbol &SymB = RefB->getSymbol();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000799
Rafael Espindola5904e122014-03-29 06:26:49 +0000800 if (SymB.isUndefined())
801 Asm.getContext().FatalError(
802 Fixup.getLoc(),
803 Twine("symbol '") + SymB.getName() +
804 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000805
Rafael Espindola5904e122014-03-29 06:26:49 +0000806 assert(!SymB.isAbsolute() && "Should have been folded");
807 const MCSection &SecB = SymB.getSection();
Rafael Espindola34948e52015-04-30 00:45:46 +0000808 if (&SecB != &FixupSection)
Rafael Espindola5904e122014-03-29 06:26:49 +0000809 Asm.getContext().FatalError(
810 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000811
Rafael Espindola5904e122014-03-29 06:26:49 +0000812 const MCSymbolData &SymBD = Asm.getSymbolData(SymB);
Rafael Espindolaf275ad82015-03-25 13:16:53 +0000813 if (::isWeak(SymBD))
Rafael Espindolac9e70682015-03-24 23:48:44 +0000814 Asm.getContext().FatalError(
815 Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
816
Rafael Espindola5904e122014-03-29 06:26:49 +0000817 uint64_t SymBOffset = Layout.getSymbolOffset(&SymBD);
818 uint64_t K = SymBOffset - FixupOffset;
819 IsPCRel = true;
820 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000821 }
822
Rafael Espindola5904e122014-03-29 06:26:49 +0000823 // We either rejected the fixup or folded B into C at this point.
824 const MCSymbolRefExpr *RefA = Target.getSymA();
825 const MCSymbol *SymA = RefA ? &RefA->getSymbol() : nullptr;
826 const MCSymbolData *SymAD = SymA ? &Asm.getSymbolData(*SymA) : nullptr;
827
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000828 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindolab60c8292014-04-29 12:46:50 +0000829 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymAD, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000830 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
831 C += Layout.getSymbolOffset(SymAD);
832
833 uint64_t Addend = 0;
834 if (hasRelocationAddend()) {
835 Addend = C;
836 C = 0;
837 }
838
839 FixedValue = C;
840
841 // FIXME: What is this!?!?
842 MCSymbolRefExpr::VariantKind Modifier =
843 RefA ? RefA->getKind() : MCSymbolRefExpr::VK_None;
Rafael Espindola9e252bf2011-12-21 14:26:29 +0000844 if (RelocNeedsGOT(Modifier))
845 NeedsGOT = true;
Jan Sjödin30a52de2011-02-28 21:45:04 +0000846
Rafael Espindola5904e122014-03-29 06:26:49 +0000847 if (!RelocateWithSymbol) {
848 const MCSection *SecA =
849 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000850 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
851 MCSymbol *SectionSymbol =
852 ELFSec ? Asm.getContext().getOrCreateSectionSymbol(*ELFSec)
853 : nullptr;
854 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000855 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000856 return;
857 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000858
Rafael Espindola5904e122014-03-29 06:26:49 +0000859 if (SymA) {
860 if (const MCSymbol *R = Renames.lookup(SymA))
861 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000862
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000863 if (const MCSymbol *WeakRef = getWeakRef(*RefA))
864 WeakrefUsedInReloc.insert(WeakRef);
Rafael Espindola5904e122014-03-29 06:26:49 +0000865 else
866 UsedInReloc.insert(SymA);
867 }
868 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000869 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000870 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000871}
872
873
Benjamin Kramer86511dc2010-08-23 21:19:37 +0000874uint64_t
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000875ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
876 const MCSymbol *S) {
David Blaikie908f4d42014-04-24 16:59:40 +0000877 const MCSymbolData &SD = Asm.getSymbolData(*S);
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000878 return SD.getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000879}
880
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000881bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
882 const MCSymbolData &Data, bool Used,
883 bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000884 const MCSymbol &Symbol = Data.getSymbol();
885 if (Symbol.isVariable()) {
886 const MCExpr *Expr = Symbol.getVariableValue();
887 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
888 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
889 return false;
890 }
891 }
Rafael Espindola16145972010-11-01 14:28:48 +0000892
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000893 if (Used)
894 return true;
895
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000896 if (Renamed)
897 return false;
898
Rafael Espindola45834a02010-10-29 23:09:31 +0000899 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
900 return true;
901
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000902 if (Symbol.isVariable()) {
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000903 const MCSymbol *Base = Layout.getBaseSymbol(Symbol);
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000904 if (Base && Base->isUndefined())
905 return false;
906 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000907
Jan Sjödin30a52de2011-02-28 21:45:04 +0000908 bool IsGlobal = MCELF::GetBinding(Data) == ELF::STB_GLOBAL;
Rafael Espindola9e18e962011-02-23 20:22:07 +0000909 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000910 return false;
911
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000912 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000913 return false;
914
915 return true;
916}
917
Rafael Espindola39f50422014-04-28 14:24:44 +0000918bool ELFObjectWriter::isLocal(const MCSymbolData &Data, bool isUsedInReloc) {
Rafael Espindolab1d07892010-10-05 18:01:23 +0000919 if (Data.isExternal())
920 return false;
921
922 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindola39f50422014-04-28 14:24:44 +0000923 if (Symbol.isDefined())
924 return true;
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000925
Rafael Espindola39f50422014-04-28 14:24:44 +0000926 if (isUsedInReloc)
Rafael Espindolab1d07892010-10-05 18:01:23 +0000927 return false;
928
929 return true;
930}
931
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000932void ELFObjectWriter::computeSymbolTable(
933 MCAssembler &Asm, const MCAsmLayout &Layout,
934 const SectionIndexMapTy &SectionIndexMap,
935 const RevGroupMapTy &RevGroupMap) {
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000936 // FIXME: Is this the correct place to do this?
Rafael Espindola940a0ee2011-06-05 01:20:06 +0000937 // FIXME: Why is an undefined reference to _GLOBAL_OFFSET_TABLE_ needed?
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000938 if (NeedsGOT) {
Dmitri Gribenko226fea52013-01-13 16:01:15 +0000939 StringRef Name = "_GLOBAL_OFFSET_TABLE_";
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000940 MCSymbol *Sym = Asm.getContext().GetOrCreateSymbol(Name);
941 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
942 Data.setExternal(true);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000943 MCELF::SetBinding(Data, ELF::STB_GLOBAL);
Rafael Espindolad03e81d2010-10-05 15:48:37 +0000944 }
945
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000946 // Add the data for the symbols.
David Blaikie583a31c2014-04-18 18:24:25 +0000947 for (MCSymbolData &SD : Asm.symbols()) {
948 const MCSymbol &Symbol = SD.getSymbol();
Matt Fleming6c1ad482010-08-16 18:57:57 +0000949
Rafael Espindola16145972010-11-01 14:28:48 +0000950 bool Used = UsedInReloc.count(&Symbol);
951 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000952 bool isSignature = RevGroupMap.count(&Symbol);
953
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000954 if (!isInSymtab(Layout, SD,
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000955 Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000956 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000957 continue;
958
Matt Fleming6c1ad482010-08-16 18:57:57 +0000959 ELFSymbolData MSD;
David Blaikie583a31c2014-04-18 18:24:25 +0000960 MSD.SymbolData = &SD;
Rafael Espindola2aeac7a2014-05-01 13:24:25 +0000961 const MCSymbol *BaseSymbol = Layout.getBaseSymbol(Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000962
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000963 // Undefined symbols are global, but this is the first place we
964 // are able to set it.
Rafael Espindola39f50422014-04-28 14:24:44 +0000965 bool Local = isLocal(SD, Used);
David Blaikie583a31c2014-04-18 18:24:25 +0000966 if (!Local && MCELF::GetBinding(SD) == ELF::STB_LOCAL) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000967 assert(BaseSymbol);
David Blaikie583a31c2014-04-18 18:24:25 +0000968 MCSymbolData &BaseData = Asm.getSymbolData(*BaseSymbol);
Jan Sjödin30a52de2011-02-28 21:45:04 +0000969 MCELF::SetBinding(SD, ELF::STB_GLOBAL);
David Blaikie583a31c2014-04-18 18:24:25 +0000970 MCELF::SetBinding(BaseData, ELF::STB_GLOBAL);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000971 }
972
Rafael Espindola022bb762014-03-24 03:43:21 +0000973 if (!BaseSymbol) {
974 MSD.SectionIndex = ELF::SHN_ABS;
David Blaikie583a31c2014-04-18 18:24:25 +0000975 } else if (SD.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000976 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000977 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindola022bb762014-03-24 03:43:21 +0000978 } else if (BaseSymbol->isUndefined()) {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000979 if (isSignature && !Used)
Rafael Espindola89feff32015-04-28 22:59:58 +0000980 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000981 else
982 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola022bb762014-03-24 03:43:21 +0000983 if (!Used && WeakrefUsed)
David Blaikie583a31c2014-04-18 18:24:25 +0000984 MCELF::SetBinding(SD, ELF::STB_WEAK);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000985 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000986 const MCSectionELF &Section =
Rafael Espindola022bb762014-03-24 03:43:21 +0000987 static_cast<const MCSectionELF&>(BaseSymbol->getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000988 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000989 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000990 }
991
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000992 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
993 // in defined ones.
994 //
995 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000996 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000997 // trivial.
998 //
999 // We thus have to be careful to not perform the symbol version replacement
1000 // blindly:
1001 //
1002 // The ELF format is used on Windows by the MCJIT engine. Thus, on
1003 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
1004 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
1005 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
1006 // the EFLObjectWriter should not interpret the "@@@" sub-string as
1007 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
1008 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
1009 // "__imp_?" or "__imp_@?".
1010 //
1011 // It would have been interesting to perform the MS mangling prefix check
1012 // only when the target triple is of the form *-pc-windows-elf. But, it
1013 // seems that this information is not easily accessible from the
1014 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001015 StringRef Name = Symbol.getName();
Rafael Espindola5a67ed12015-01-22 14:20:45 +00001016 if (!Name.startswith("?") && !Name.startswith("@?") &&
1017 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
1018 // This symbol isn't following the MSVC C++ name mangling convention. We
1019 // can thus safely interpret the @@@ in symbol names as specifying symbol
1020 // versioning.
1021 SmallString<32> Buf;
1022 size_t Pos = Name.find("@@@");
1023 if (Pos != StringRef::npos) {
1024 Buf += Name.substr(0, Pos);
1025 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
1026 Buf += Name.substr(Pos + Skip);
1027 Name = Buf;
1028 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001029 }
Rafael Espindolab6613022014-10-17 01:48:58 +00001030
1031 // Sections have their own string table
1032 if (MCELF::GetType(SD) != ELF::STT_SECTION)
1033 MSD.Name = StrTabBuilder.add(Name);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +00001034
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +00001035 if (MSD.SectionIndex == ELF::SHN_UNDEF)
1036 UndefinedSymbolData.push_back(MSD);
1037 else if (Local)
1038 LocalSymbolData.push_back(MSD);
1039 else
1040 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001041 }
1042
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001043 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i)
1044 StrTabBuilder.add(*i);
1045
Hans Wennborgf26bfc12014-09-29 22:43:20 +00001046 StrTabBuilder.finalize(StringTableBuilder::ELF);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001047
1048 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i)
1049 FileSymbolData.push_back(StrTabBuilder.getOffset(*i));
1050
Rafael Espindolab6613022014-10-17 01:48:58 +00001051 for (ELFSymbolData &MSD : LocalSymbolData)
1052 MSD.StringIndex = MCELF::GetType(*MSD.SymbolData) == ELF::STT_SECTION
1053 ? 0
1054 : StrTabBuilder.getOffset(MSD.Name);
1055 for (ELFSymbolData &MSD : ExternalSymbolData)
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001056 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
1057 for (ELFSymbolData& MSD : UndefinedSymbolData)
1058 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name);
1059
Matt Fleming6c1ad482010-08-16 18:57:57 +00001060 // Symbols are required to be in lexicographic order.
1061 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
1062 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
1063 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
1064
1065 // Set the symbol indices. Local symbols must come before all other
1066 // symbols with non-local bindings.
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +00001067 unsigned Index = FileSymbolData.size() + 1;
Matt Fleming6c1ad482010-08-16 18:57:57 +00001068 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
1069 LocalSymbolData[i].SymbolData->setIndex(Index++);
Rafael Espindola0e3decf2010-11-14 03:12:24 +00001070
Matt Fleming6c1ad482010-08-16 18:57:57 +00001071 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
1072 ExternalSymbolData[i].SymbolData->setIndex(Index++);
1073 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
1074 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
1075}
1076
Rafael Espindolabda19802015-04-30 14:21:49 +00001077const MCSectionELF *
1078ELFObjectWriter::createRelocationSection(MCAssembler &Asm,
1079 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +00001080 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +00001081 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001082
Rafael Espindolaead85492015-02-17 20:31:13 +00001083 MCContext &Ctx = Asm.getContext();
Rafael Espindola34948e52015-04-30 00:45:46 +00001084 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +00001085 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
1086 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +00001087
Rafael Espindolaead85492015-02-17 20:31:13 +00001088 unsigned EntrySize;
1089 if (hasRelocationAddend())
1090 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
1091 else
1092 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001093
Rafael Espindolaead85492015-02-17 20:31:13 +00001094 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +00001095 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +00001096 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +00001097
Rafael Espindolac9d06922015-03-30 13:39:16 +00001098 const MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +00001099 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +00001100 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001101 MCSectionData &RelSD = Asm.getOrCreateSectionData(*RelaSection);
1102 RelSD.setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +00001103 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001104}
Matt Fleming6c1ad482010-08-16 18:57:57 +00001105
David Blaikiee06e8012014-04-11 22:11:50 +00001106static SmallVector<char, 128>
Rafael Espindolaae7e4992015-04-29 19:20:10 +00001107getUncompressedData(const MCAsmLayout &Layout,
David Blaikiee06e8012014-04-11 22:11:50 +00001108 MCSectionData::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +00001109 SmallVector<char, 128> UncompressedData;
1110 for (const MCFragment &F : Fragments) {
1111 const SmallVectorImpl<char> *Contents;
1112 switch (F.getKind()) {
1113 case MCFragment::FT_Data:
1114 Contents = &cast<MCDataFragment>(F).getContents();
1115 break;
1116 case MCFragment::FT_Dwarf:
1117 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
1118 break;
1119 case MCFragment::FT_DwarfFrame:
1120 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
1121 break;
1122 default:
1123 llvm_unreachable(
1124 "Not expecting any other fragment types in a debug_* section");
1125 }
1126 UncompressedData.append(Contents->begin(), Contents->end());
1127 }
1128 return UncompressedData;
1129}
1130
1131// Include the debug info compression header:
1132// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
1133// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +00001134static bool
David Blaikiee06e8012014-04-11 22:11:50 +00001135prependCompressionHeader(uint64_t Size,
1136 SmallVectorImpl<char> &CompressedContents) {
Benjamin Kramer7149aab2015-03-01 18:09:56 +00001137 const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +00001138 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
1139 return false;
David Blaikie8019bf82014-04-10 21:53:53 +00001140 if (sys::IsLittleEndianHost)
Artyom Skrobov9aea8432014-06-14 13:18:07 +00001141 sys::swapByteOrder(Size);
David Blaikie8019bf82014-04-10 21:53:53 +00001142 CompressedContents.insert(CompressedContents.begin(),
1143 Magic.size() + sizeof(Size), 0);
1144 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
1145 std::copy(reinterpret_cast<char *>(&Size),
1146 reinterpret_cast<char *>(&Size + 1),
1147 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +00001148 return true;
David Blaikie8019bf82014-04-10 21:53:53 +00001149}
1150
1151// Return a single fragment containing the compressed contents of the whole
1152// section. Null if the section was not compressed for any reason.
David Blaikiee06e8012014-04-11 22:11:50 +00001153static std::unique_ptr<MCDataFragment>
Rafael Espindolaae7e4992015-04-29 19:20:10 +00001154getCompressedFragment(const MCAsmLayout &Layout,
David Blaikiee06e8012014-04-11 22:11:50 +00001155 MCSectionData::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +00001156 std::unique_ptr<MCDataFragment> CompressedFragment(new MCDataFragment());
1157
1158 // Gather the uncompressed data from all the fragments, recording the
1159 // alignment fragment, if seen, and any fixups.
1160 SmallVector<char, 128> UncompressedData =
1161 getUncompressedData(Layout, Fragments);
1162
1163 SmallVectorImpl<char> &CompressedContents = CompressedFragment->getContents();
1164
1165 zlib::Status Success = zlib::compress(
1166 StringRef(UncompressedData.data(), UncompressedData.size()),
1167 CompressedContents);
1168 if (Success != zlib::StatusOK)
1169 return nullptr;
1170
David Blaikie76d3a3c2014-04-18 21:52:26 +00001171 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents))
1172 return nullptr;
David Blaikie8019bf82014-04-10 21:53:53 +00001173
1174 return CompressedFragment;
1175}
1176
David Blaikie39fa6a22014-04-25 00:48:01 +00001177typedef DenseMap<const MCSectionData *, std::vector<MCSymbolData *>>
1178DefiningSymbolMap;
1179
1180static void UpdateSymbols(const MCAsmLayout &Layout,
1181 const std::vector<MCSymbolData *> &Symbols,
1182 MCFragment &NewFragment) {
1183 for (MCSymbolData *Sym : Symbols) {
1184 Sym->setOffset(Sym->getOffset() +
1185 Layout.getFragmentOffset(Sym->getFragment()));
1186 Sym->setFragment(&NewFragment);
David Blaikiec029ab42014-04-18 21:24:12 +00001187 }
1188}
1189
David Blaikie8019bf82014-04-10 21:53:53 +00001190static void CompressDebugSection(MCAssembler &Asm, MCAsmLayout &Layout,
David Blaikie39fa6a22014-04-25 00:48:01 +00001191 const DefiningSymbolMap &DefiningSymbols,
David Blaikie8019bf82014-04-10 21:53:53 +00001192 const MCSectionELF &Section,
1193 MCSectionData &SD) {
1194 StringRef SectionName = Section.getSectionName();
1195 MCSectionData::FragmentListType &Fragments = SD.getFragmentList();
1196
1197 std::unique_ptr<MCDataFragment> CompressedFragment =
1198 getCompressedFragment(Layout, Fragments);
1199
1200 // Leave the section as-is if the fragments could not be compressed.
1201 if (!CompressedFragment)
1202 return;
1203
David Blaikiec029ab42014-04-18 21:24:12 +00001204 // Update the fragment+offsets of any symbols referring to fragments in this
1205 // section to refer to the new fragment.
David Blaikie39fa6a22014-04-25 00:48:01 +00001206 auto I = DefiningSymbols.find(&SD);
1207 if (I != DefiningSymbols.end())
1208 UpdateSymbols(Layout, I->second, *CompressedFragment);
David Blaikiec029ab42014-04-18 21:24:12 +00001209
David Blaikie8019bf82014-04-10 21:53:53 +00001210 // Invalidate the layout for the whole section since it will have new and
1211 // different fragments now.
1212 Layout.invalidateFragmentsFrom(&Fragments.front());
1213 Fragments.clear();
1214
1215 // Complete the initialization of the new fragment
1216 CompressedFragment->setParent(&SD);
1217 CompressedFragment->setLayoutOrder(0);
1218 Fragments.push_back(CompressedFragment.release());
1219
1220 // Rename from .debug_* to .zdebug_*
1221 Asm.getContext().renameELFSection(&Section,
1222 (".z" + SectionName.drop_front(1)).str());
1223}
1224
1225void ELFObjectWriter::CompressDebugSections(MCAssembler &Asm,
1226 MCAsmLayout &Layout) {
1227 if (!Asm.getContext().getAsmInfo()->compressDebugSections())
1228 return;
1229
David Blaikie39fa6a22014-04-25 00:48:01 +00001230 DefiningSymbolMap DefiningSymbols;
1231
1232 for (MCSymbolData &SD : Asm.symbols())
1233 if (MCFragment *F = SD.getFragment())
1234 DefiningSymbols[F->getParent()].push_back(&SD);
1235
David Blaikie8019bf82014-04-10 21:53:53 +00001236 for (MCSectionData &SD : Asm) {
David Blaikiee06e8012014-04-11 22:11:50 +00001237 const MCSectionELF &Section =
1238 static_cast<const MCSectionELF &>(SD.getSection());
David Blaikie8019bf82014-04-10 21:53:53 +00001239 StringRef SectionName = Section.getSectionName();
1240
1241 // Compressing debug_frame requires handling alignment fragments which is
1242 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1243 // for writing to arbitrary buffers) for little benefit.
1244 if (!SectionName.startswith(".debug_") || SectionName == ".debug_frame")
1245 continue;
1246
David Blaikie39fa6a22014-04-25 00:48:01 +00001247 CompressDebugSection(Asm, Layout, DefiningSymbols, Section, SD);
David Blaikie8019bf82014-04-10 21:53:53 +00001248 }
1249}
1250
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001251void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1252 uint64_t Flags, uint64_t Address,
1253 uint64_t Offset, uint64_t Size,
1254 uint32_t Link, uint32_t Info,
1255 uint64_t Alignment,
1256 uint64_t EntrySize) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001257 Write32(Name); // sh_name: index into string table
1258 Write32(Type); // sh_type
1259 WriteWord(Flags); // sh_flags
1260 WriteWord(Address); // sh_addr
1261 WriteWord(Offset); // sh_offset
1262 WriteWord(Size); // sh_size
1263 Write32(Link); // sh_link
1264 Write32(Info); // sh_info
1265 WriteWord(Alignment); // sh_addralign
1266 WriteWord(EntrySize); // sh_entsize
1267}
1268
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001269void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001270 const MCSectionELF &Sec) {
1271 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001272
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001273 // Sort the relocation entries. Most targets just sort by Offset, but some
1274 // (e.g., MIPS) have additional constraints.
1275 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001276
1277 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001278 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindolab6613022014-10-17 01:48:58 +00001279 unsigned Index =
1280 Entry.Symbol ? getSymbolIndexInSymbolTable(Asm, Entry.Symbol) : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001281
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001282 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001283 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001284 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001285 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001286
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001287 write(TargetObjectWriter->getRSsym(Entry.Type));
1288 write(TargetObjectWriter->getRType3(Entry.Type));
1289 write(TargetObjectWriter->getRType2(Entry.Type));
1290 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001291 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001292 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001293 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001294 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001295 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001296 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001297 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001298 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001299 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001300
Rafael Espindolabce26a12010-10-05 15:11:03 +00001301 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001302 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001303 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001304
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001305 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001306 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001307 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001308 }
1309}
1310
Rafael Espindolab1863912015-04-30 21:10:06 +00001311const MCSectionELF *ELFObjectWriter::createSectionHeaderStringTable() {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001312 const MCSectionELF *ShstrtabSection = SectionTable[ShstrtabIndex - 1];
Rafael Espindola88d1f632015-04-29 20:25:24 +00001313 ShStrTabBuilder.finalize(StringTableBuilder::ELF);
1314 OS << ShStrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001315 return ShstrtabSection;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001316}
1317
Rafael Espindolab1863912015-04-30 21:10:06 +00001318const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola88abc392015-04-29 20:34:31 +00001319 const MCSectionELF *StrtabSection =
1320 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001321 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindola88abc392015-04-29 20:34:31 +00001322 OS << StrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001323 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001324}
1325
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001326void ELFObjectWriter::writeSection(MCAssembler &Asm,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001327 const SectionIndexMapTy &SectionIndexMap,
1328 uint32_t GroupSymbolIndex,
1329 uint64_t Offset, uint64_t Size,
1330 uint64_t Alignment,
1331 const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001332 uint64_t sh_link = 0;
1333 uint64_t sh_info = 0;
1334
1335 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001336 default:
1337 // Nothing to do.
1338 break;
1339
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001340 case ELF::SHT_DYNAMIC:
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001341 sh_link = ShStrTabBuilder.getOffset(Section.getSectionName());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001342 break;
1343
1344 case ELF::SHT_REL:
1345 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001346 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001347 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001348 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001349 sh_info = SectionIndexMap.lookup(InfoSection);
1350 break;
1351 }
1352
1353 case ELF::SHT_SYMTAB:
1354 case ELF::SHT_DYNSYM:
1355 sh_link = StringTableIndex;
1356 sh_info = LastLocalSymbolIndex;
1357 break;
1358
1359 case ELF::SHT_SYMTAB_SHNDX:
1360 sh_link = SymbolTableIndex;
1361 break;
1362
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001363 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001364 sh_link = SymbolTableIndex;
1365 sh_info = GroupSymbolIndex;
1366 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001367 }
1368
Logan Chien4b724422013-02-05 14:18:59 +00001369 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001370 Section.getType() == ELF::SHT_ARM_EXIDX)
1371 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001372
Hans Wennborg83e6e1e2014-04-30 16:25:02 +00001373 WriteSecHdrEntry(ShStrTabBuilder.getOffset(Section.getSectionName()),
1374 Section.getType(),
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001375 Section.getFlags(), 0, Offset, Size, sh_link, sh_info,
1376 Alignment, Section.getEntrySize());
1377}
1378
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001379void ELFObjectWriter::writeSectionHeader(
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001380 MCAssembler &Asm, const MCAsmLayout &Layout,
1381 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001382 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001383 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001384
Matt Fleming6c1ad482010-08-16 18:57:57 +00001385 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001386 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001387 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001388 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001389
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001390 for (const MCSectionELF *Section : SectionTable) {
1391 const MCSectionData &SD = Asm.getOrCreateSectionData(*Section);
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001392 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001393 unsigned Type = Section->getType();
1394 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001395 GroupSymbolIndex = 0;
1396 else
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001397 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm, Section->getGroup());
Matt Fleming6c1ad482010-08-16 18:57:57 +00001398
Rafael Espindolabda19802015-04-30 14:21:49 +00001399 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001400 SectionOffsets.find(Section)->second;
1401 uint64_t Size = Type == ELF::SHT_NOBITS ? Layout.getSectionAddressSize(&SD)
1402 : Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001403
Rafael Espindolab6417502015-04-28 15:04:09 +00001404 writeSection(Asm, SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001405 SD.getAlignment(), *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001406 }
1407}
1408
Rafael Espindola1557fd62011-03-20 18:44:20 +00001409void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1410 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001411 CompressDebugSections(Asm, const_cast<MCAsmLayout &>(Layout));
1412
Rafael Espindolabda19802015-04-30 14:21:49 +00001413 MCContext &Ctx = Asm.getContext();
1414 const MCSectionELF *ShstrtabSection =
1415 Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001416 ShstrtabIndex = addToSectionTable(ShstrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001417
Rafael Espindola1557fd62011-03-20 18:44:20 +00001418 RevGroupMapTy RevGroupMap;
1419 SectionIndexMapTy SectionIndexMap;
1420
Rafael Espindolabda19802015-04-30 14:21:49 +00001421 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001422
Rafael Espindola1557fd62011-03-20 18:44:20 +00001423 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001424 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001425
Rafael Espindola7230f802015-04-08 11:41:24 +00001426 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001427 SectionOffsetsTy SectionOffsets;
1428 bool ComputedSymtab = false;
1429 for (const MCSectionData &SD : Asm) {
1430 const MCSectionELF &Section =
1431 static_cast<const MCSectionELF &>(SD.getSection());
1432
Rafael Espindola642a2212015-04-14 22:54:16 +00001433 uint64_t Padding = OffsetToAlignment(OS.tell(), SD.getAlignment());
1434 WriteZeros(Padding);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001435
Rafael Espindola642a2212015-04-14 22:54:16 +00001436 // Remember the offset into the file for this section.
Rafael Espindolab6417502015-04-28 15:04:09 +00001437 uint64_t SecStart = OS.tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001438
Rafael Espindolabda19802015-04-30 14:21:49 +00001439 const MCSymbol *SignatureSymbol = Section.getGroup();
1440 unsigned Type = Section.getType();
1441 if (Type == ELF::SHT_GROUP) {
1442 assert(SignatureSymbol);
1443 write(uint32_t(ELF::GRP_COMDAT));
1444 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1445 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1446 write(SecIndex);
1447 }
1448 } else if (Type == ELF::SHT_REL || Type == ELF::SHT_RELA) {
1449 if (!ComputedSymtab) {
1450 // Compute symbol table information.
1451 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap);
1452 ComputedSymtab = true;
1453 }
1454 writeRelocations(Asm, *Section.getAssociatedSection());
1455 } else {
1456 Asm.writeSectionData(&SD, Layout);
1457 }
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001458
Rafael Espindolab6417502015-04-28 15:04:09 +00001459 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001460 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1461
1462 if (Type == ELF::SHT_GROUP || Type == ELF::SHT_REL || Type == ELF::SHT_RELA)
1463 continue;
1464
1465 const MCSectionELF *RelSection = createRelocationSection(Asm, Section);
1466
1467 if (SignatureSymbol) {
1468 Asm.getOrCreateSymbolData(*SignatureSymbol);
1469 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1470 if (!GroupIdx) {
1471 const MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001472 GroupIdx = addToSectionTable(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001473 MCSectionData *GroupD = &Asm.getOrCreateSectionData(*Group);
1474 GroupD->setAlignment(4);
1475 }
1476 GroupMembers[SignatureSymbol].push_back(&Section);
1477 if (RelSection)
1478 GroupMembers[SignatureSymbol].push_back(RelSection);
1479 }
1480
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001481 SectionIndexMap[&Section] = addToSectionTable(&Section);
1482 if (RelSection)
1483 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001484 }
1485
1486 if (!ComputedSymtab) {
1487 // Compute symbol table information.
1488 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap);
1489 ComputedSymtab = true;
Rafael Espindola642a2212015-04-14 22:54:16 +00001490 }
1491
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001492 WriteSymbolTable(Asm, Layout, SectionOffsets);
Rafael Espindola91fd2772015-04-29 21:09:32 +00001493
Rafael Espindola88d1f632015-04-29 20:25:24 +00001494 {
1495 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001496 const MCSectionELF *Sec = createStringTable(Ctx);
Rafael Espindola88abc392015-04-29 20:34:31 +00001497 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001498 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001499 }
1500
1501 {
1502 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001503 const MCSectionELF *Sec = createSectionHeaderStringTable();
Rafael Espindola88d1f632015-04-29 20:25:24 +00001504 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001505 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88d1f632015-04-29 20:25:24 +00001506 }
1507
Rafael Espindola642a2212015-04-14 22:54:16 +00001508 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001509 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001510 WriteZeros(Padding);
1511
Rafael Espindola642a2212015-04-14 22:54:16 +00001512 const unsigned SectionHeaderOffset = OS.tell();
1513
Rafael Espindola1557fd62011-03-20 18:44:20 +00001514 // ... then the section header table ...
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001515 writeSectionHeader(Asm, Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001516
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001517 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001518 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001519 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001520 if (sys::IsLittleEndianHost != IsLittleEndian)
1521 sys::swapByteOrder(NumSections);
1522 unsigned NumSectionsOffset;
1523
Rafael Espindola642a2212015-04-14 22:54:16 +00001524 if (is64Bit()) {
1525 uint64_t Val = SectionHeaderOffset;
1526 if (sys::IsLittleEndianHost != IsLittleEndian)
1527 sys::swapByteOrder(Val);
1528 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1529 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001530 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001531 } else {
1532 uint32_t Val = SectionHeaderOffset;
1533 if (sys::IsLittleEndianHost != IsLittleEndian)
1534 sys::swapByteOrder(Val);
1535 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1536 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001537 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001538 }
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001539 OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
1540 NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001541}
1542
Rafael Espindola94a88d72015-04-06 15:27:57 +00001543bool ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
Rafael Espindola35d61892015-04-17 21:15:17 +00001544 const MCAssembler &Asm, const MCSymbolData &DataA, const MCFragment &FB,
1545 bool InSet, bool IsPCRel) const {
1546 if (IsPCRel) {
1547 assert(!InSet);
1548 if (::isWeak(DataA))
1549 return false;
1550 }
1551 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(Asm, DataA, FB,
1552 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001553}
1554
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001555bool ELFObjectWriter::isWeak(const MCSymbolData &SD) const {
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001556 if (::isWeak(SD))
1557 return true;
1558
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001559 // It is invalid to replace a reference to a global in a comdat
1560 // with a reference to a local since out of comdat references
1561 // to a local are forbidden.
1562 // We could try to return false for more cases, like the reference
1563 // being in the same comdat or Sym being an alias to another global,
1564 // but it is not clear if it is worth the effort.
Rafael Espindola29c82702015-04-20 12:44:06 +00001565 if (MCELF::GetBinding(SD) != ELF::STB_GLOBAL)
1566 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001567
Rafael Espindola29c82702015-04-20 12:44:06 +00001568 const MCSymbol &Sym = SD.getSymbol();
1569 if (!Sym.isInSection())
1570 return false;
1571
1572 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1573 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001574}
1575
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001576MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001577 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001578 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001579 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001580}