blob: 6165533882a90871902c8986b632f55f3f8034c8 [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"
Rafael Espindola29abd972011-12-22 03:38:00 +000024#include "llvm/MC/MCELFSymbolFlags.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000025#include "llvm/MC/MCExpr.h"
Craig Topper6e80c282012-03-26 06:58:25 +000026#include "llvm/MC/MCFixupKindInfo.h"
27#include "llvm/MC/MCObjectWriter.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000028#include "llvm/MC/MCSectionELF.h"
Rafael Espindolaa8695762015-06-02 00:25:12 +000029#include "llvm/MC/MCSymbolELF.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000030#include "llvm/MC/MCValue.h"
Rafael Espindola97de4742014-07-03 02:01:39 +000031#include "llvm/MC/StringTableBuilder.h"
David Blaikie8019bf82014-04-10 21:53:53 +000032#include "llvm/Support/Compression.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000033#include "llvm/Support/Debug.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000034#include "llvm/Support/ELF.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000035#include "llvm/Support/Endian.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/Support/ErrorHandling.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000037#include <vector>
38using namespace llvm;
39
Jason W Kimc09e7262011-05-11 22:53:06 +000040#undef DEBUG_TYPE
41#define DEBUG_TYPE "reloc-info"
42
Rafael Espindola29abd972011-12-22 03:38:00 +000043namespace {
Rafael Espindola0ce09712014-03-25 22:43:53 +000044
Rafael Espindola10be0832014-03-25 23:44:25 +000045typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy;
46
Rafael Espindola91fd2772015-04-29 21:09:32 +000047class ELFObjectWriter;
48
Rafael Espindola10be0832014-03-25 23:44:25 +000049class SymbolTableWriter {
Rafael Espindola91fd2772015-04-29 21:09:32 +000050 ELFObjectWriter &EWriter;
Rafael Espindola10be0832014-03-25 23:44:25 +000051 bool Is64Bit;
Rafael Espindola10be0832014-03-25 23:44:25 +000052
Rafael Espindola91fd2772015-04-29 21:09:32 +000053 // indexes we are going to write to .symtab_shndx.
54 std::vector<uint32_t> ShndxIndexes;
Rafael Espindola10be0832014-03-25 23:44:25 +000055
56 // The numbel of symbols written so far.
57 unsigned NumWritten;
58
59 void createSymtabShndx();
60
Rafael Espindola91fd2772015-04-29 21:09:32 +000061 template <typename T> void write(T Value);
Rafael Espindola10be0832014-03-25 23:44:25 +000062
63public:
Rafael Espindola91fd2772015-04-29 21:09:32 +000064 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
Rafael Espindola10be0832014-03-25 23:44:25 +000065
66 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
67 uint8_t other, uint32_t shndx, bool Reserved);
Rafael Espindola91fd2772015-04-29 21:09:32 +000068
69 ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; }
Rafael Espindola10be0832014-03-25 23:44:25 +000070};
71
Rafael Espindola29abd972011-12-22 03:38:00 +000072class ELFObjectWriter : public MCObjectWriter {
Rafael Espindola29abd972011-12-22 03:38:00 +000073 static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +000074 static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout);
Rafael Espindola95fb9b92015-06-02 20:38:46 +000075 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolELF &Symbol,
Rafael Espindola29abd972011-12-22 03:38:00 +000076 bool Used, bool Renamed);
Rafael Espindolaada43f62015-06-03 21:30:10 +000077 static bool isLocal(const MCSymbolELF &Symbol, bool IsSignature);
Rafael Espindola29abd972011-12-22 03:38:00 +000078
Rafael Espindola6cd21802015-04-07 22:35:40 +000079 /// Helper struct for containing some precomputed information on symbols.
Rafael Espindola29abd972011-12-22 03:38:00 +000080 struct ELFSymbolData {
Rafael Espindolaa8695762015-06-02 00:25:12 +000081 const MCSymbolELF *Symbol;
Rafael Espindola29abd972011-12-22 03:38:00 +000082 uint32_t SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000083 StringRef Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000084
85 // Support lexicographic sorting.
86 bool operator<(const ELFSymbolData &RHS) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +000087 unsigned LHSType = Symbol->getType();
88 unsigned RHSType = RHS.Symbol->getType();
Rafael Espindolab6613022014-10-17 01:48:58 +000089 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
90 return false;
91 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
92 return true;
93 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
94 return SectionIndex < RHS.SectionIndex;
Hans Wennborg83e6e1e2014-04-30 16:25:02 +000095 return Name < RHS.Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000096 }
97 };
98
Rafael Espindola29abd972011-12-22 03:38:00 +000099 /// The target specific ELF writer instance.
Ahmed Charles56440fd2014-03-06 05:51:42 +0000100 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
Rafael Espindola29abd972011-12-22 03:38:00 +0000101
Rafael Espindola29abd972011-12-22 03:38:00 +0000102 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000103 DenseMap<const MCSymbolELF *, const MCSymbolELF *> Renames;
Rafael Espindola29abd972011-12-22 03:38:00 +0000104
Rafael Espindola34948e52015-04-30 00:45:46 +0000105 llvm::DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>>
106 Relocations;
Rafael Espindola29abd972011-12-22 03:38:00 +0000107
108 /// @}
109 /// @name Symbol Table Data
110 /// @{
111
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000112 StringTableBuilder StrTabBuilder;
Rafael Espindola29abd972011-12-22 03:38:00 +0000113
114 /// @}
115
Rafael Espindola29abd972011-12-22 03:38:00 +0000116 // This holds the symbol table index of the last local symbol.
117 unsigned LastLocalSymbolIndex;
118 // This holds the .strtab section index.
119 unsigned StringTableIndex;
120 // This holds the .symtab section index.
121 unsigned SymbolTableIndex;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000122 // This holds the .symtab_shndx section index.
123 unsigned SymtabShndxSectionIndex = 0;
Rafael Espindola29abd972011-12-22 03:38:00 +0000124
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000125 // Sections in the order they are to be output in the section table.
Rafael Espindola08850b32015-05-25 21:56:55 +0000126 std::vector<const MCSectionELF *> SectionTable;
127 unsigned addToSectionTable(const MCSectionELF *Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000128
Rafael Espindola29abd972011-12-22 03:38:00 +0000129 // TargetObjectWriter wrappers.
Rafael Espindola29abd972011-12-22 03:38:00 +0000130 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
131 bool hasRelocationAddend() const {
132 return TargetObjectWriter->hasRelocationAddend();
133 }
Rafael Espindola29abd972011-12-22 03:38:00 +0000134 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000135 bool IsPCRel) const {
136 return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel);
Rafael Espindola29abd972011-12-22 03:38:00 +0000137 }
138
Rafael Espindola29abd972011-12-22 03:38:00 +0000139 public:
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000140 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
Rafael Espindola0ce09712014-03-25 22:43:53 +0000141 bool IsLittleEndian)
Rafael Espindolae2b355d2015-05-28 15:20:00 +0000142 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
Rafael Espindola29abd972011-12-22 03:38:00 +0000143
Yaron Keren7773a722015-03-23 18:35:01 +0000144 void reset() override {
Yaron Keren7773a722015-03-23 18:35:01 +0000145 WeakrefUsedInReloc.clear();
146 Renames.clear();
147 Relocations.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000148 StrTabBuilder.clear();
Yaron Kerenf3465e12015-05-13 15:17:19 +0000149 SectionTable.clear();
Yaron Keren7773a722015-03-23 18:35:01 +0000150 MCObjectWriter::reset();
151 }
152
Alexander Kornienkof817c1c2015-04-11 02:11:45 +0000153 ~ELFObjectWriter() override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000154
155 void WriteWord(uint64_t W) {
156 if (is64Bit())
157 Write64(W);
158 else
159 Write32(W);
160 }
161
Rafael Espindola91fd2772015-04-29 21:09:32 +0000162 template <typename T> void write(T Val) {
163 if (IsLittleEndian)
164 support::endian::Writer<support::little>(OS).write(Val);
165 else
166 support::endian::Writer<support::big>(OS).write(Val);
167 }
168
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000169 void writeHeader(const MCAssembler &Asm);
Rafael Espindola29abd972011-12-22 03:38:00 +0000170
Rafael Espindolae48421f2015-05-28 20:25:29 +0000171 void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
172 ELFSymbolData &MSD, const MCAsmLayout &Layout);
Rafael Espindola29abd972011-12-22 03:38:00 +0000173
Rafael Espindola91fd2772015-04-29 21:09:32 +0000174 // Start and end offset of each section
Rafael Espindolabda19802015-04-30 14:21:49 +0000175 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
176 SectionOffsetsTy;
Rafael Espindola91fd2772015-04-29 21:09:32 +0000177
Rafael Espindolab60c8292014-04-29 12:46:50 +0000178 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
179 const MCSymbolRefExpr *RefA,
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000180 const MCSymbol *Sym, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000181 unsigned Type) const;
182
Rafael Espindola26585542015-01-19 21:11:14 +0000183 void RecordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
Craig Topper34a61bc2014-03-08 07:02:02 +0000184 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindola5904e122014-03-29 06:26:49 +0000185 MCValue Target, bool &IsPCRel,
186 uint64_t &FixedValue) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000187
Rafael Espindola89feff32015-04-28 22:59:58 +0000188 // Map from a signature symbol to the group section index
189 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
Rafael Espindola29abd972011-12-22 03:38:00 +0000190
Rafael Espindola022bb762014-03-24 03:43:21 +0000191 /// Compute the symbol table data
Rafael Espindola29abd972011-12-22 03:38:00 +0000192 ///
Rafael Espindola073ee7d2012-08-27 16:04:24 +0000193 /// \param Asm - The assembler.
194 /// \param SectionIndexMap - Maps a section to its index.
195 /// \param RevGroupMap - Maps a signature symbol to the group section.
Rafael Espindola022bb762014-03-24 03:43:21 +0000196 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000197 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000198 const RevGroupMapTy &RevGroupMap,
199 SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000200
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000201 MCSectionELF *createRelocationSection(MCContext &Ctx,
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000202 const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000203
Rafael Espindolab1863912015-04-30 21:10:06 +0000204 const MCSectionELF *createStringTable(MCContext &Ctx);
Rafael Espindola29abd972011-12-22 03:38:00 +0000205
Craig Topper34a61bc2014-03-08 07:02:02 +0000206 void ExecutePostLayoutBinding(MCAssembler &Asm,
207 const MCAsmLayout &Layout) override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000208
Rafael Espindola1aa20fc2015-05-21 19:46:39 +0000209 void writeSectionHeader(const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola29abd972011-12-22 03:38:00 +0000210 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +0000211 const SectionOffsetsTy &SectionOffsets);
Rafael Espindola29abd972011-12-22 03:38:00 +0000212
Rafael Espindolae15b1b72015-05-27 13:30:50 +0000213 void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000214 const MCAsmLayout &Layout);
215
Rafael Espindola29abd972011-12-22 03:38:00 +0000216 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
Rafael Espindola868b3f42015-04-30 21:51:58 +0000217 uint64_t Address, uint64_t Offset, uint64_t Size,
218 uint32_t Link, uint32_t Info, uint64_t Alignment,
219 uint64_t EntrySize);
Rafael Espindola29abd972011-12-22 03:38:00 +0000220
Rafael Espindola34948e52015-04-30 00:45:46 +0000221 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
Rafael Espindola29abd972011-12-22 03:38:00 +0000222
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +0000223 bool IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
224 const MCSymbol &SymA,
225 const MCFragment &FB,
226 bool InSet,
227 bool IsPCRel) const override;
Rafael Espindola29abd972011-12-22 03:38:00 +0000228
Duncan P. N. Exon Smith5266ad92015-05-20 15:10:03 +0000229 bool isWeak(const MCSymbol &Sym) const override;
Rafael Espindolaf275ad82015-03-25 13:16:53 +0000230
Craig Topper34a61bc2014-03-08 07:02:02 +0000231 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Rafael Espindolae92c1bf2015-05-21 19:42:35 +0000232 void writeSection(const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola28687582015-05-21 19:36:43 +0000233 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
Rafael Espindola29abd972011-12-22 03:38:00 +0000234 const MCSectionELF &Section);
235 };
236}
237
Rafael Espindola08850b32015-05-25 21:56:55 +0000238unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000239 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000240 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000241 return SectionTable.size();
242}
243
Rafael Espindola10be0832014-03-25 23:44:25 +0000244void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000245 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000246 return;
247
Rafael Espindola91fd2772015-04-29 21:09:32 +0000248 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000249}
250
Rafael Espindola91fd2772015-04-29 21:09:32 +0000251template <typename T> void SymbolTableWriter::write(T Value) {
252 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000253}
254
Rafael Espindola91fd2772015-04-29 21:09:32 +0000255SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
256 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000257
258void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
259 uint64_t size, uint8_t other,
260 uint32_t shndx, bool Reserved) {
261 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
262
263 if (LargeIndex)
264 createSymtabShndx();
265
Rafael Espindola91fd2772015-04-29 21:09:32 +0000266 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000267 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000268 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000269 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000270 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000271 }
272
273 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
274
Rafael Espindola10be0832014-03-25 23:44:25 +0000275 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000276 write(name); // st_name
277 write(info); // st_info
278 write(other); // st_other
279 write(Index); // st_shndx
280 write(value); // st_value
281 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000282 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000283 write(name); // st_name
284 write(uint32_t(value)); // st_value
285 write(uint32_t(size)); // st_size
286 write(info); // st_info
287 write(other); // st_other
288 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000289 }
290
291 ++NumWritten;
292}
293
Jan Sjödin30a52de2011-02-28 21:45:04 +0000294bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
295 const MCFixupKindInfo &FKI =
296 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
297
298 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
299}
300
Jason W Kim96f4c012010-11-15 16:18:39 +0000301ELFObjectWriter::~ELFObjectWriter()
302{}
303
Matt Fleming6c1ad482010-08-16 18:57:57 +0000304// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000305void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000306 // ELF Header
307 // ----------
308 //
309 // Note
310 // ----
311 // emitWord method behaves differently for ELF32 and ELF64, writing
312 // 4 bytes in the former and 8 in the latter.
313
Benjamin Kramer97fbdd52015-04-17 11:12:43 +0000314 WriteBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000315
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000316 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000317
318 // e_ident[EI_DATA]
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000319 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000320
321 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000322 // e_ident[EI_OSABI]
Rafael Espindola1ad40952011-12-21 17:00:36 +0000323 Write8(TargetObjectWriter->getOSABI());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000324 Write8(0); // e_ident[EI_ABIVERSION]
325
326 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
327
328 Write16(ELF::ET_REL); // e_type
329
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000330 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000331
332 Write32(ELF::EV_CURRENT); // e_version
333 WriteWord(0); // e_entry, no entry point in .o file
334 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000335 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000336
Jason W Kim4761fba2011-02-04 21:41:11 +0000337 // e_flags = whatever the target wants
Jack Carter1bd90ff2013-01-30 02:09:52 +0000338 Write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000339
340 // e_ehsize = ELF header size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000341 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000342
343 Write16(0); // e_phentsize = prog header entry size
344 Write16(0); // e_phnum = # prog header entries = 0
345
346 // e_shentsize = Section header entry size
Rafael Espindolafdaae0d2010-12-18 03:27:34 +0000347 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000348
349 // e_shnum = # of section header ents
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000350 Write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000351
352 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola5960cee2015-05-22 23:58:30 +0000353 assert(StringTableIndex < ELF::SHN_LORESERVE);
354 Write16(StringTableIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000355}
356
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000357uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000358 const MCAsmLayout &Layout) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000359 if (Sym.isCommon() && Sym.isExternal())
Rafael Espindola14672502015-05-29 17:48:04 +0000360 return Sym.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000361
Rafael Espindolafee224f2014-04-30 21:51:13 +0000362 uint64_t Res;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000363 if (!Layout.getSymbolOffset(Sym, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000364 return 0;
365
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000366 if (Layout.getAssembler().isThumbFunc(&Sym))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000367 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000368
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000369 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000370}
371
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000372void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
373 const MCAsmLayout &Layout) {
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000374 // The presence of symbol versions causes undefined symbols and
375 // versions declared with @@@ to be renamed.
376
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000377 for (const MCSymbol &A : Asm.symbols()) {
378 const auto &Alias = cast<MCSymbolELF>(A);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000379 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000380 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000381 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000382 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
383 if (!Ref)
384 continue;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000385 const auto &Symbol = cast<MCSymbolELF>(Ref->getSymbol());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000386
Benjamin Kramer14807272010-10-27 19:53:52 +0000387 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000388 size_t Pos = AliasName.find('@');
389 if (Pos == StringRef::npos)
390 continue;
391
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000392 // Aliases defined with .symvar copy the binding from the symbol they alias.
393 // This is the first place we are able to copy this information.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000394 Alias.setExternal(Symbol.isExternal());
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000395 Alias.setBinding(Symbol.getBinding());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000396
Benjamin Kramer14807272010-10-27 19:53:52 +0000397 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000398 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
399 continue;
400
Rafael Espindola26496e62010-10-27 17:56:18 +0000401 // FIXME: produce a better error message.
402 if (Symbol.isUndefined() && Rest.startswith("@@") &&
403 !Rest.startswith("@@@"))
404 report_fatal_error("A @@ version cannot be undefined");
405
Benjamin Kramer14807272010-10-27 19:53:52 +0000406 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000407 }
408}
409
Roman Divacky5a1c5492014-01-07 20:17:03 +0000410static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
411 uint8_t Type = newType;
412
413 // Propagation rules:
414 // IFUNC > FUNC > OBJECT > NOTYPE
415 // TLS_OBJECT > OBJECT > NOTYPE
416 //
417 // dont let the new type degrade the old type
418 switch (origType) {
419 default:
420 break;
421 case ELF::STT_GNU_IFUNC:
422 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
423 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
424 Type = ELF::STT_GNU_IFUNC;
425 break;
426 case ELF::STT_FUNC:
427 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
428 Type == ELF::STT_TLS)
429 Type = ELF::STT_FUNC;
430 break;
431 case ELF::STT_OBJECT:
432 if (Type == ELF::STT_NOTYPE)
433 Type = ELF::STT_OBJECT;
434 break;
435 case ELF::STT_TLS:
436 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
437 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
438 Type = ELF::STT_TLS;
439 break;
440 }
441
442 return Type;
443}
444
Rafael Espindolae48421f2015-05-28 20:25:29 +0000445void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
446 uint32_t StringIndex, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000447 const MCAsmLayout &Layout) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000448 const auto &Symbol = cast<MCSymbolELF>(*MSD.Symbol);
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000449 assert((!Symbol.getFragment() ||
450 (Symbol.getFragment()->getParent() == &Symbol.getSection())) &&
David Blaikieb5956d22014-04-19 00:50:15 +0000451 "The symbol's section doesn't match the fragment's symbol");
Rafael Espindolaa8695762015-06-02 00:25:12 +0000452 const MCSymbolELF *Base =
453 cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol));
Rafael Espindola85a84912014-03-26 00:16:43 +0000454
455 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
456 // SHN_COMMON.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000457 bool IsReserved = !Base || Symbol.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000458
Jack Carter2f8d9d92013-02-19 21:57:35 +0000459 // Binding and Type share the same byte as upper and lower nibbles
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000460 uint8_t Binding = Symbol.getBinding();
461 uint8_t Type = Symbol.getType();
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000462 if (Base) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000463 Type = mergeTypeForSet(Type, Base->getType());
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000464 }
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000465 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000466
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000467 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000468 // 2 bits
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000469 uint8_t Visibility = Symbol.getVisibility();
470 uint8_t Other = Symbol.getOther() << (ELF_STO_Shift - ELF_STV_Shift);
Jack Carter2f8d9d92013-02-19 21:57:35 +0000471 Other |= Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000472
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000473 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000474 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000475
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000476 const MCExpr *ESize = MSD.Symbol->getSize();
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000477 if (!ESize && Base)
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000478 ESize = Base->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000479
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000480 if (ESize) {
481 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000482 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000483 report_fatal_error("Size expression must be absolute.");
484 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000485 }
486
487 // Write out the symbol table entry
Rafael Espindolae48421f2015-05-28 20:25:29 +0000488 Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
489 IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000490}
491
Rafael Espindola5904e122014-03-29 06:26:49 +0000492// It is always valid to create a relocation with a symbol. It is preferable
493// to use a relocation with a section if that is possible. Using the section
494// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000495bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
496 const MCSymbolRefExpr *RefA,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000497 const MCSymbol *S, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000498 unsigned Type) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000499 const auto *Sym = cast_or_null<MCSymbolELF>(S);
Rafael Espindola5904e122014-03-29 06:26:49 +0000500 // A PCRel relocation to an absolute value has no symbol (or section). We
501 // represent that with a relocation to a null section.
502 if (!RefA)
503 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000504
Rafael Espindola5904e122014-03-29 06:26:49 +0000505 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
506 switch (Kind) {
507 default:
508 break;
509 // The .odp creation emits a relocation against the symbol ".TOC." which
510 // create a R_PPC64_TOC relocation. However the relocation symbol name
511 // in final object creation should be NULL, since the symbol does not
512 // really exist, it is just the reference to TOC base for the current
513 // object file. Since the symbol is undefined, returning false results
514 // in a relocation with a null section which is the desired result.
515 case MCSymbolRefExpr::VK_PPC_TOCBASE:
516 return false;
517
518 // These VariantKind cause the relocation to refer to something other than
519 // the symbol itself, like a linker generated table. Since the address of
520 // symbol is not relevant, we cannot replace the symbol with the
521 // section and patch the difference in the addend.
522 case MCSymbolRefExpr::VK_GOT:
523 case MCSymbolRefExpr::VK_PLT:
524 case MCSymbolRefExpr::VK_GOTPCREL:
525 case MCSymbolRefExpr::VK_Mips_GOT:
526 case MCSymbolRefExpr::VK_PPC_GOT_LO:
527 case MCSymbolRefExpr::VK_PPC_GOT_HI:
528 case MCSymbolRefExpr::VK_PPC_GOT_HA:
529 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000530 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000531
Rafael Espindola5904e122014-03-29 06:26:49 +0000532 // An undefined symbol is not in any section, so the relocation has to point
533 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000534 assert(Sym && "Expected a symbol");
535 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000536 return true;
537
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000538 unsigned Binding = Sym->getBinding();
Rafael Espindola5904e122014-03-29 06:26:49 +0000539 switch(Binding) {
540 default:
541 llvm_unreachable("Invalid Binding");
542 case ELF::STB_LOCAL:
543 break;
544 case ELF::STB_WEAK:
545 // If the symbol is weak, it might be overridden by a symbol in another
546 // file. The relocation has to point to the symbol so that the linker
547 // can update it.
548 return true;
549 case ELF::STB_GLOBAL:
550 // Global ELF symbols can be preempted by the dynamic linker. The relocation
551 // has to point to the symbol for a reason analogous to the STB_WEAK case.
552 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000553 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000554
Rafael Espindola5904e122014-03-29 06:26:49 +0000555 // If a relocation points to a mergeable section, we have to be careful.
556 // If the offset is zero, a relocation with the section will encode the
557 // same information. With a non-zero offset, the situation is different.
558 // For example, a relocation can point 42 bytes past the end of a string.
559 // If we change such a relocation to use the section, the linker would think
560 // that it pointed to another string and subtracting 42 at runtime will
561 // produce the wrong value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000562 auto &Sec = cast<MCSectionELF>(Sym->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000563 unsigned Flags = Sec.getFlags();
564 if (Flags & ELF::SHF_MERGE) {
565 if (C != 0)
566 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000567
568 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
569 // only handle section relocations to mergeable sections if using RELA.
570 if (!hasRelocationAddend())
571 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000572 }
573
Rafael Espindola5904e122014-03-29 06:26:49 +0000574 // Most TLS relocations use a got, so they need the symbol. Even those that
Rafael Espindola11527a12014-10-06 12:33:27 +0000575 // are just an offset (@tpoff), require a symbol in gold versions before
576 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
577 // http://sourceware.org/PR16773.
Rafael Espindola5904e122014-03-29 06:26:49 +0000578 if (Flags & ELF::SHF_TLS)
579 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000580
Rafael Espindola9ef84412014-04-11 19:18:01 +0000581 // If the symbol is a thumb function the final relocation must set the lowest
582 // bit. With a symbol that is done by just having the symbol have that bit
583 // set, so we would lose the bit if we relocated with the section.
584 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000585 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000586 return true;
587
Rafael Espindolaece40ca2015-05-29 18:26:09 +0000588 if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000589 return true;
590 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000591}
592
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000593static const MCSymbol *getWeakRef(const MCSymbolRefExpr &Ref) {
594 const MCSymbol &Sym = Ref.getSymbol();
595
596 if (Ref.getKind() == MCSymbolRefExpr::VK_WEAKREF)
597 return &Sym;
598
599 if (!Sym.isVariable())
600 return nullptr;
601
602 const MCExpr *Expr = Sym.getVariableValue();
603 const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr);
604 if (!Inner)
605 return nullptr;
606
607 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF)
608 return &Inner->getSymbol();
609 return nullptr;
610}
611
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000612// True if the assembler knows nothing about the final value of the symbol.
613// This doesn't cover the comdat issues, since in those cases the assembler
614// can at least know that all symbols in the section will move together.
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000615static bool isWeak(const MCSymbolELF &Sym) {
616 if (Sym.getType() == ELF::STT_GNU_IFUNC)
Rafael Espindolaa635d832015-04-17 08:46:11 +0000617 return true;
618
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000619 switch (Sym.getBinding()) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000620 default:
621 llvm_unreachable("Unknown binding");
622 case ELF::STB_LOCAL:
623 return false;
624 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000625 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000626 case ELF::STB_WEAK:
627 case ELF::STB_GNU_UNIQUE:
628 return true;
629 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000630}
631
Rafael Espindola26585542015-01-19 21:11:14 +0000632void ELFObjectWriter::RecordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000633 const MCAsmLayout &Layout,
634 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000635 const MCFixup &Fixup, MCValue Target,
636 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola7549f872015-05-26 00:36:57 +0000637 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000638 uint64_t C = Target.getConstant();
639 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000640
Rafael Espindola5904e122014-03-29 06:26:49 +0000641 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
642 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
643 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000644
Rafael Espindola5904e122014-03-29 06:26:49 +0000645 // Let A, B and C being the components of Target and R be the location of
646 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
647 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000648
Rafael Espindola5904e122014-03-29 06:26:49 +0000649 // In general, ELF has no relocations for -B. It can only represent (A + C)
650 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
651 // replace B to implement it: (A - R - K + C)
652 if (IsPCRel)
Jim Grosbach6f482002015-05-18 18:43:14 +0000653 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000654 Fixup.getLoc(),
655 "No relocation available to represent this relative expression");
David Majnemera45a1762014-01-06 07:39:46 +0000656
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000657 const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol());
Jason W Kim495c2bb2010-12-06 21:57:34 +0000658
Rafael Espindola5904e122014-03-29 06:26:49 +0000659 if (SymB.isUndefined())
Jim Grosbach6f482002015-05-18 18:43:14 +0000660 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000661 Fixup.getLoc(),
662 Twine("symbol '") + SymB.getName() +
663 "' can not be undefined in a subtraction expression");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000664
Rafael Espindola5904e122014-03-29 06:26:49 +0000665 assert(!SymB.isAbsolute() && "Should have been folded");
666 const MCSection &SecB = SymB.getSection();
Rafael Espindola34948e52015-04-30 00:45:46 +0000667 if (&SecB != &FixupSection)
Jim Grosbach6f482002015-05-18 18:43:14 +0000668 Asm.getContext().reportFatalError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000669 Fixup.getLoc(), "Cannot represent a difference across sections");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000670
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000671 if (::isWeak(SymB))
Jim Grosbach6f482002015-05-18 18:43:14 +0000672 Asm.getContext().reportFatalError(
Rafael Espindolac9e70682015-03-24 23:48:44 +0000673 Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol");
674
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000675 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000676 uint64_t K = SymBOffset - FixupOffset;
677 IsPCRel = true;
678 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000679 }
680
Rafael Espindola5904e122014-03-29 06:26:49 +0000681 // We either rejected the fixup or folded B into C at this point.
682 const MCSymbolRefExpr *RefA = Target.getSymA();
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000683 const auto *SymA = RefA ? cast<MCSymbolELF>(&RefA->getSymbol()) : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000684
Rafael Espindolac03f44c2014-03-27 20:49:35 +0000685 unsigned Type = GetRelocType(Target, Fixup, IsPCRel);
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000686 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000687 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000688 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000689
690 uint64_t Addend = 0;
691 if (hasRelocationAddend()) {
692 Addend = C;
693 C = 0;
694 }
695
696 FixedValue = C;
697
Rafael Espindola5904e122014-03-29 06:26:49 +0000698 if (!RelocateWithSymbol) {
699 const MCSection *SecA =
700 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000701 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000702 const auto *SectionSymbol =
703 ELFSec ? cast<MCSymbolELF>(ELFSec->getBeginSymbol()) : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000704 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000705 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000706 return;
707 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000708
Rafael Espindola5904e122014-03-29 06:26:49 +0000709 if (SymA) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000710 if (const MCSymbolELF *R = Renames.lookup(SymA))
Rafael Espindola5904e122014-03-29 06:26:49 +0000711 SymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000712
Rafael Espindola3d082fa2014-05-03 19:57:04 +0000713 if (const MCSymbol *WeakRef = getWeakRef(*RefA))
714 WeakrefUsedInReloc.insert(WeakRef);
Rafael Espindola5904e122014-03-29 06:26:49 +0000715 else
Rafael Espindolaada43f62015-06-03 21:30:10 +0000716 SymA->setUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000717 }
718 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend);
Rafael Espindola34948e52015-04-30 00:45:46 +0000719 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000720 return;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000721}
722
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000723bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000724 const MCSymbolELF &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000725 bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000726 if (Symbol.isVariable()) {
727 const MCExpr *Expr = Symbol.getVariableValue();
728 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
729 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
730 return false;
731 }
732 }
Rafael Espindola16145972010-11-01 14:28:48 +0000733
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000734 if (Used)
735 return true;
736
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000737 if (Renamed)
738 return false;
739
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000740 if (Symbol.isVariable() && Symbol.isUndefined()) {
741 // FIXME: this is here just to diagnose the case of a var = commmon_sym.
742 Layout.getBaseSymbol(Symbol);
743 return false;
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000744 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000745
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000746 if (Symbol.isUndefined() && !Symbol.isBindingSet())
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000747 return false;
748
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000749 if (Symbol.getType() == ELF::STT_SECTION)
Rafael Espindola2f9bdd82015-05-27 20:52:32 +0000750 return true;
751
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000752 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000753 return false;
754
755 return true;
756}
757
Rafael Espindolaada43f62015-06-03 21:30:10 +0000758bool ELFObjectWriter::isLocal(const MCSymbolELF &Symbol, bool IsSignature) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000759 if (Symbol.isExternal())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000760 return false;
761
Rafael Espindola39f50422014-04-28 14:24:44 +0000762 if (Symbol.isDefined())
763 return true;
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000764
Rafael Espindolaada43f62015-06-03 21:30:10 +0000765 if (Symbol.isUsedInReloc())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000766 return false;
767
Rafael Espindola10d23872015-05-29 14:20:40 +0000768 return IsSignature;
Rafael Espindolab1d07892010-10-05 18:01:23 +0000769}
770
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000771void ELFObjectWriter::computeSymbolTable(
772 MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000773 const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
774 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000775 MCContext &Ctx = Asm.getContext();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000776 SymbolTableWriter Writer(*this, is64Bit());
777
Rafael Espindola5960cee2015-05-22 23:58:30 +0000778 // Symbol table
779 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
780 MCSectionELF *SymtabSection =
781 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
782 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
783 SymbolTableIndex = addToSectionTable(SymtabSection);
784
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000785 uint64_t Padding =
786 OffsetToAlignment(OS.tell(), SymtabSection->getAlignment());
787 WriteZeros(Padding);
788
789 uint64_t SecStart = OS.tell();
790
791 // The first entry is the undefined symbol entry.
792 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
793
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000794 std::vector<ELFSymbolData> LocalSymbolData;
795 std::vector<ELFSymbolData> ExternalSymbolData;
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000796
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000797 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000798 bool HasLargeSectionIndex = false;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000799 for (const MCSymbol &S : Asm.symbols()) {
800 const auto &Symbol = cast<MCSymbolELF>(S);
Rafael Espindolaada43f62015-06-03 21:30:10 +0000801 bool Used = Symbol.isUsedInReloc();
Rafael Espindola16145972010-11-01 14:28:48 +0000802 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000803 bool isSignature = RevGroupMap.count(&Symbol);
804
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000805 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000806 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000807 continue;
808
Matt Fleming6c1ad482010-08-16 18:57:57 +0000809 ELFSymbolData MSD;
Rafael Espindolaa8695762015-06-02 00:25:12 +0000810 MSD.Symbol = cast<MCSymbolELF>(&Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000811
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000812 // Undefined symbols are global, but this is the first place we
813 // are able to set it.
Rafael Espindolaada43f62015-06-03 21:30:10 +0000814 bool Local = isLocal(Symbol, isSignature);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000815 if (!Local && Symbol.getBinding() == ELF::STB_LOCAL)
816 Symbol.setBinding(ELF::STB_GLOBAL);
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000817
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000818 if (Symbol.isAbsolute()) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000819 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola14672502015-05-29 17:48:04 +0000820 } else if (Symbol.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000821 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000822 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000823 } else if (Symbol.isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000824 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000825 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000826 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
827 HasLargeSectionIndex = true;
828 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000829 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000830 }
Rafael Espindola022bb762014-03-24 03:43:21 +0000831 if (!Used && WeakrefUsed)
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000832 Symbol.setBinding(ELF::STB_WEAK);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000833 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000834 const MCSectionELF &Section =
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000835 static_cast<const MCSectionELF &>(Symbol.getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000836 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000837 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000838 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
839 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000840 }
841
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000842 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
843 // in defined ones.
844 //
845 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000846 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000847 // trivial.
848 //
849 // We thus have to be careful to not perform the symbol version replacement
850 // blindly:
851 //
852 // The ELF format is used on Windows by the MCJIT engine. Thus, on
853 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
854 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
855 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
856 // the EFLObjectWriter should not interpret the "@@@" sub-string as
857 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
858 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
859 // "__imp_?" or "__imp_@?".
860 //
861 // It would have been interesting to perform the MS mangling prefix check
862 // only when the target triple is of the form *-pc-windows-elf. But, it
863 // seems that this information is not easily accessible from the
864 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000865 StringRef Name = Symbol.getName();
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000866 if (!Name.startswith("?") && !Name.startswith("@?") &&
867 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
868 // This symbol isn't following the MSVC C++ name mangling convention. We
869 // can thus safely interpret the @@@ in symbol names as specifying symbol
870 // versioning.
871 SmallString<32> Buf;
872 size_t Pos = Name.find("@@@");
873 if (Pos != StringRef::npos) {
874 Buf += Name.substr(0, Pos);
875 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
876 Buf += Name.substr(Pos + Skip);
877 Name = Buf;
878 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000879 }
Rafael Espindolab6613022014-10-17 01:48:58 +0000880
881 // Sections have their own string table
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000882 if (Symbol.getType() != ELF::STT_SECTION)
Rafael Espindolab6613022014-10-17 01:48:58 +0000883 MSD.Name = StrTabBuilder.add(Name);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000884
Rafael Espindola10d23872015-05-29 14:20:40 +0000885 if (Local)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000886 LocalSymbolData.push_back(MSD);
887 else
888 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000889 }
890
Rafael Espindola5960cee2015-05-22 23:58:30 +0000891 if (HasLargeSectionIndex) {
892 MCSectionELF *SymtabShndxSection =
893 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
894 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
895 SymtabShndxSection->setAlignment(4);
896 }
897
Rafael Espindola1fd36272015-05-28 19:29:15 +0000898 ArrayRef<std::string> FileNames = Asm.getFileNames();
899 for (const std::string &Name : FileNames)
Rafael Espindola66f3c9c2015-05-28 18:03:20 +0000900 StrTabBuilder.add(Name);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000901
Hans Wennborgf26bfc12014-09-29 22:43:20 +0000902 StrTabBuilder.finalize(StringTableBuilder::ELF);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000903
Rafael Espindola0cbea292015-05-28 20:00:13 +0000904 for (const std::string &Name : FileNames)
905 Writer.writeSymbol(StrTabBuilder.getOffset(Name),
906 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
907 ELF::SHN_ABS, true);
908
Matt Fleming6c1ad482010-08-16 18:57:57 +0000909 // Symbols are required to be in lexicographic order.
910 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
911 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000912
913 // Set the symbol indices. Local symbols must come before all other
914 // symbols with non-local bindings.
Rafael Espindola1fd36272015-05-28 19:29:15 +0000915 unsigned Index = FileNames.size() + 1;
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000916
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000917 for (ELFSymbolData &MSD : LocalSymbolData) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000918 unsigned StringIndex = MSD.Symbol->getType() == ELF::STT_SECTION
Rafael Espindolae3b2acf2015-05-29 18:47:23 +0000919 ? 0
920 : StrTabBuilder.getOffset(MSD.Name);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000921 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000922 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000923 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000924
925 // Write the symbol table entries.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000926 LastLocalSymbolIndex = Index;
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000927
Rafael Espindoladcda9972015-05-28 19:43:20 +0000928 for (ELFSymbolData &MSD : ExternalSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000929 unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
Rafael Espindola0cbea292015-05-28 20:00:13 +0000930 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000931 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000932 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000933 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000934
935 uint64_t SecEnd = OS.tell();
936 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
937
938 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
939 if (ShndxIndexes.empty()) {
940 assert(SymtabShndxSectionIndex == 0);
941 return;
942 }
943 assert(SymtabShndxSectionIndex != 0);
944
945 SecStart = OS.tell();
946 const MCSectionELF *SymtabShndxSection =
947 SectionTable[SymtabShndxSectionIndex - 1];
948 for (uint32_t Index : ShndxIndexes)
949 write(Index);
950 SecEnd = OS.tell();
951 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000952}
953
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000954MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000955ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +0000956 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000957 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +0000958 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000959
Rafael Espindola34948e52015-04-30 00:45:46 +0000960 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +0000961 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
962 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +0000963
Rafael Espindolaead85492015-02-17 20:31:13 +0000964 unsigned EntrySize;
965 if (hasRelocationAddend())
966 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
967 else
968 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000969
Rafael Espindolaead85492015-02-17 20:31:13 +0000970 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +0000971 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +0000972 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +0000973
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000974 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +0000975 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +0000976 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000977 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +0000978 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000979}
Matt Fleming6c1ad482010-08-16 18:57:57 +0000980
David Blaikiee06e8012014-04-11 22:11:50 +0000981static SmallVector<char, 128>
Rafael Espindolaae7e4992015-04-29 19:20:10 +0000982getUncompressedData(const MCAsmLayout &Layout,
Rafael Espindolaa32d0e92015-05-27 15:14:11 +0000983 const MCSection::FragmentListType &Fragments) {
David Blaikie8019bf82014-04-10 21:53:53 +0000984 SmallVector<char, 128> UncompressedData;
985 for (const MCFragment &F : Fragments) {
986 const SmallVectorImpl<char> *Contents;
987 switch (F.getKind()) {
988 case MCFragment::FT_Data:
989 Contents = &cast<MCDataFragment>(F).getContents();
990 break;
991 case MCFragment::FT_Dwarf:
992 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents();
993 break;
994 case MCFragment::FT_DwarfFrame:
995 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents();
996 break;
997 default:
998 llvm_unreachable(
999 "Not expecting any other fragment types in a debug_* section");
1000 }
1001 UncompressedData.append(Contents->begin(), Contents->end());
1002 }
1003 return UncompressedData;
1004}
1005
1006// Include the debug info compression header:
1007// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
1008// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +00001009static bool
David Blaikiee06e8012014-04-11 22:11:50 +00001010prependCompressionHeader(uint64_t Size,
1011 SmallVectorImpl<char> &CompressedContents) {
Benjamin Kramer7149aab2015-03-01 18:09:56 +00001012 const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +00001013 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
1014 return false;
David Blaikie8019bf82014-04-10 21:53:53 +00001015 if (sys::IsLittleEndianHost)
Artyom Skrobov9aea8432014-06-14 13:18:07 +00001016 sys::swapByteOrder(Size);
David Blaikie8019bf82014-04-10 21:53:53 +00001017 CompressedContents.insert(CompressedContents.begin(),
1018 Magic.size() + sizeof(Size), 0);
1019 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
1020 std::copy(reinterpret_cast<char *>(&Size),
1021 reinterpret_cast<char *>(&Size + 1),
1022 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +00001023 return true;
David Blaikie8019bf82014-04-10 21:53:53 +00001024}
1025
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001026void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +00001027 const MCAsmLayout &Layout) {
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001028 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001029 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +00001030
Rafael Espindola868b3f42015-04-30 21:51:58 +00001031 // Compressing debug_frame requires handling alignment fragments which is
1032 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1033 // for writing to arbitrary buffers) for little benefit.
1034 if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
1035 !SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001036 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001037 return;
1038 }
1039
1040 // Gather the uncompressed data from all the fragments.
Rafael Espindolaa32d0e92015-05-27 15:14:11 +00001041 const MCSection::FragmentListType &Fragments = Section.getFragmentList();
David Blaikie8019bf82014-04-10 21:53:53 +00001042 SmallVector<char, 128> UncompressedData =
1043 getUncompressedData(Layout, Fragments);
1044
Rafael Espindola868b3f42015-04-30 21:51:58 +00001045 SmallVector<char, 128> CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001046 zlib::Status Success = zlib::compress(
1047 StringRef(UncompressedData.data(), UncompressedData.size()),
1048 CompressedContents);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001049 if (Success != zlib::StatusOK) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001050 Asm.writeSectionData(&Section, Layout);
David Blaikie8019bf82014-04-10 21:53:53 +00001051 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001052 }
David Blaikie8019bf82014-04-10 21:53:53 +00001053
Rafael Espindola868b3f42015-04-30 21:51:58 +00001054 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001055 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001056 return;
1057 }
David Blaikie8019bf82014-04-10 21:53:53 +00001058 Asm.getContext().renameELFSection(&Section,
1059 (".z" + SectionName.drop_front(1)).str());
Rafael Espindola868b3f42015-04-30 21:51:58 +00001060 OS << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001061}
1062
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001063void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1064 uint64_t Flags, uint64_t Address,
1065 uint64_t Offset, uint64_t Size,
1066 uint32_t Link, uint32_t Info,
1067 uint64_t Alignment,
1068 uint64_t EntrySize) {
Matt Fleming6c1ad482010-08-16 18:57:57 +00001069 Write32(Name); // sh_name: index into string table
1070 Write32(Type); // sh_type
1071 WriteWord(Flags); // sh_flags
1072 WriteWord(Address); // sh_addr
1073 WriteWord(Offset); // sh_offset
1074 WriteWord(Size); // sh_size
1075 Write32(Link); // sh_link
1076 Write32(Info); // sh_info
1077 WriteWord(Alignment); // sh_addralign
1078 WriteWord(EntrySize); // sh_entsize
1079}
1080
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001081void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001082 const MCSectionELF &Sec) {
1083 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001084
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001085 // Sort the relocation entries. Most targets just sort by Offset, but some
1086 // (e.g., MIPS) have additional constraints.
1087 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001088
1089 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001090 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001091 unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001092
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001093 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001094 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001095 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001096 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001097
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001098 write(TargetObjectWriter->getRSsym(Entry.Type));
1099 write(TargetObjectWriter->getRType3(Entry.Type));
1100 write(TargetObjectWriter->getRType2(Entry.Type));
1101 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001102 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001103 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001104 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001105 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001106 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001107 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001108 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001109 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001110 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001111
Rafael Espindolabce26a12010-10-05 15:11:03 +00001112 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001113 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001114 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001115
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001116 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001117 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001118 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001119 }
1120}
1121
Rafael Espindolab1863912015-04-30 21:10:06 +00001122const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001123 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
Rafael Espindola88abc392015-04-29 20:34:31 +00001124 OS << StrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001125 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001126}
1127
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001128void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1129 uint32_t GroupSymbolIndex, uint64_t Offset,
1130 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001131 uint64_t sh_link = 0;
1132 uint64_t sh_info = 0;
1133
1134 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001135 default:
1136 // Nothing to do.
1137 break;
1138
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001139 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001140 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001141
1142 case ELF::SHT_REL:
1143 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001144 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001145 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001146 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001147 sh_info = SectionIndexMap.lookup(InfoSection);
1148 break;
1149 }
1150
1151 case ELF::SHT_SYMTAB:
1152 case ELF::SHT_DYNSYM:
1153 sh_link = StringTableIndex;
1154 sh_info = LastLocalSymbolIndex;
1155 break;
1156
1157 case ELF::SHT_SYMTAB_SHNDX:
1158 sh_link = SymbolTableIndex;
1159 break;
1160
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001161 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001162 sh_link = SymbolTableIndex;
1163 sh_info = GroupSymbolIndex;
1164 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001165 }
1166
Logan Chien4b724422013-02-05 14:18:59 +00001167 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001168 Section.getType() == ELF::SHT_ARM_EXIDX)
1169 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001170
Rafael Espindola5960cee2015-05-22 23:58:30 +00001171 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001172 Section.getType(), Section.getFlags(), 0, Offset, Size,
1173 sh_link, sh_info, Section.getAlignment(),
1174 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001175}
1176
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001177void ELFObjectWriter::writeSectionHeader(
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001178 const MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001179 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001180 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001181 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001182
Matt Fleming6c1ad482010-08-16 18:57:57 +00001183 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001184 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001185 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001186 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001187
Rafael Espindola08850b32015-05-25 21:56:55 +00001188 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001189 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001190 unsigned Type = Section->getType();
1191 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001192 GroupSymbolIndex = 0;
1193 else
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001194 GroupSymbolIndex = Section->getGroup()->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001195
Rafael Espindolabda19802015-04-30 14:21:49 +00001196 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001197 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001198 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001199 if (Type == ELF::SHT_NOBITS)
1200 Size = Layout.getSectionAddressSize(Section);
1201 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001202 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001203
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001204 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001205 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001206 }
1207}
1208
Rafael Espindola1557fd62011-03-20 18:44:20 +00001209void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1210 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001211 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001212 MCSectionELF *StrtabSection =
1213 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1214 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001215
Rafael Espindola1557fd62011-03-20 18:44:20 +00001216 RevGroupMapTy RevGroupMap;
1217 SectionIndexMapTy SectionIndexMap;
1218
Rafael Espindolabda19802015-04-30 14:21:49 +00001219 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001220
Rafael Espindola1557fd62011-03-20 18:44:20 +00001221 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001222 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001223
Rafael Espindola7230f802015-04-08 11:41:24 +00001224 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001225 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001226 std::vector<MCSectionELF *> Groups;
1227 std::vector<MCSectionELF *> Relocations;
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001228 for (MCSection &Sec : Asm) {
1229 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindolabda19802015-04-30 14:21:49 +00001230
Rafael Espindola967d6a62015-05-21 21:02:35 +00001231 uint64_t Padding = OffsetToAlignment(OS.tell(), Section.getAlignment());
Rafael Espindola642a2212015-04-14 22:54:16 +00001232 WriteZeros(Padding);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001233
Rafael Espindola642a2212015-04-14 22:54:16 +00001234 // Remember the offset into the file for this section.
Rafael Espindolab6417502015-04-28 15:04:09 +00001235 uint64_t SecStart = OS.tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001236
Rafael Espindola0ccf9b72015-06-02 21:30:13 +00001237 const MCSymbolELF *SignatureSymbol = Section.getGroup();
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001238 writeSectionData(Asm, Section, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001239
Rafael Espindolab6417502015-04-28 15:04:09 +00001240 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001241 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1242
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001243 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001244
1245 if (SignatureSymbol) {
Rafael Espindolab5d316b2015-05-29 20:21:02 +00001246 Asm.registerSymbol(*SignatureSymbol);
Rafael Espindolabda19802015-04-30 14:21:49 +00001247 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1248 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001249 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001250 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001251 Group->setAlignment(4);
1252 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001253 }
1254 GroupMembers[SignatureSymbol].push_back(&Section);
1255 if (RelSection)
1256 GroupMembers[SignatureSymbol].push_back(RelSection);
1257 }
1258
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001259 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001260 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001261 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001262 Relocations.push_back(RelSection);
1263 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001264 }
1265
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001266 for (MCSectionELF *Group : Groups) {
1267 uint64_t Padding = OffsetToAlignment(OS.tell(), Group->getAlignment());
1268 WriteZeros(Padding);
1269
1270 // Remember the offset into the file for this section.
1271 uint64_t SecStart = OS.tell();
1272
1273 const MCSymbol *SignatureSymbol = Group->getGroup();
1274 assert(SignatureSymbol);
1275 write(uint32_t(ELF::GRP_COMDAT));
1276 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1277 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1278 write(SecIndex);
1279 }
1280
1281 uint64_t SecEnd = OS.tell();
1282 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1283 }
1284
1285 // Compute symbol table information.
Rafael Espindolaaa486e92015-05-28 17:54:01 +00001286 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001287
1288 for (MCSectionELF *RelSection : Relocations) {
1289 uint64_t Padding = OffsetToAlignment(OS.tell(), RelSection->getAlignment());
1290 WriteZeros(Padding);
1291
1292 // Remember the offset into the file for this section.
1293 uint64_t SecStart = OS.tell();
1294
1295 writeRelocations(Asm, *RelSection->getAssociatedSection());
1296
1297 uint64_t SecEnd = OS.tell();
1298 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001299 }
1300
Rafael Espindola88d1f632015-04-29 20:25:24 +00001301 {
1302 uint64_t SecStart = OS.tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001303 const MCSectionELF *Sec = createStringTable(Ctx);
Rafael Espindola88abc392015-04-29 20:34:31 +00001304 uint64_t SecEnd = OS.tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001305 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001306 }
1307
Rafael Espindola642a2212015-04-14 22:54:16 +00001308 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Benjamin Kramer084b9f42012-01-20 14:42:32 +00001309 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001310 WriteZeros(Padding);
1311
Rafael Espindola642a2212015-04-14 22:54:16 +00001312 const unsigned SectionHeaderOffset = OS.tell();
1313
Rafael Espindola1557fd62011-03-20 18:44:20 +00001314 // ... then the section header table ...
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001315 writeSectionHeader(Asm, Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001316
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001317 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001318 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001319 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001320 if (sys::IsLittleEndianHost != IsLittleEndian)
1321 sys::swapByteOrder(NumSections);
1322 unsigned NumSectionsOffset;
1323
Rafael Espindola642a2212015-04-14 22:54:16 +00001324 if (is64Bit()) {
1325 uint64_t Val = SectionHeaderOffset;
1326 if (sys::IsLittleEndianHost != IsLittleEndian)
1327 sys::swapByteOrder(Val);
1328 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1329 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001330 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001331 } else {
1332 uint32_t Val = SectionHeaderOffset;
1333 if (sys::IsLittleEndianHost != IsLittleEndian)
1334 sys::swapByteOrder(Val);
1335 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1336 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001337 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001338 }
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001339 OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections),
1340 NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001341}
1342
Rafael Espindola94a88d72015-04-06 15:27:57 +00001343bool ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001344 const MCAssembler &Asm, const MCSymbol &SA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001345 bool InSet, bool IsPCRel) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001346 const auto &SymA = cast<MCSymbolELF>(SA);
Rafael Espindola35d61892015-04-17 21:15:17 +00001347 if (IsPCRel) {
1348 assert(!InSet);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001349 if (::isWeak(SymA))
Rafael Espindola35d61892015-04-17 21:15:17 +00001350 return false;
1351 }
Duncan P. N. Exon Smithd81ba532015-05-16 01:01:55 +00001352 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001353 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001354}
1355
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001356bool ELFObjectWriter::isWeak(const MCSymbol &S) const {
1357 const auto &Sym = cast<MCSymbolELF>(S);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001358 if (::isWeak(Sym))
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001359 return true;
1360
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001361 // It is invalid to replace a reference to a global in a comdat
1362 // with a reference to a local since out of comdat references
1363 // to a local are forbidden.
1364 // We could try to return false for more cases, like the reference
1365 // being in the same comdat or Sym being an alias to another global,
1366 // but it is not clear if it is worth the effort.
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001367 if (Sym.getBinding() != ELF::STB_GLOBAL)
Rafael Espindola29c82702015-04-20 12:44:06 +00001368 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001369
Rafael Espindola29c82702015-04-20 12:44:06 +00001370 if (!Sym.isInSection())
1371 return false;
1372
1373 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1374 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001375}
1376
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001377MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001378 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001379 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001380 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001381}