blob: 900dcf51a26bd8f2c82dbf97a1069f91ef1cd415 [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"
Matt Fleming6c1ad482010-08-16 18:57:57 +000024#include "llvm/MC/MCExpr.h"
Craig Topper6e80c282012-03-26 06:58:25 +000025#include "llvm/MC/MCFixupKindInfo.h"
26#include "llvm/MC/MCObjectWriter.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000027#include "llvm/MC/MCSectionELF.h"
Rafael Espindolaa8695762015-06-02 00:25:12 +000028#include "llvm/MC/MCSymbolELF.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000029#include "llvm/MC/MCValue.h"
Rafael Espindola97de4742014-07-03 02:01:39 +000030#include "llvm/MC/StringTableBuilder.h"
David Blaikie8019bf82014-04-10 21:53:53 +000031#include "llvm/Support/Compression.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000032#include "llvm/Support/Debug.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000033#include "llvm/Support/ELF.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000034#include "llvm/Support/Endian.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/Support/ErrorHandling.h"
Rafael Espindolafc063e82015-10-22 18:32:06 +000036#include "llvm/Support/StringSaver.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000037#include <vector>
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +000038
Matt Fleming6c1ad482010-08-16 18:57:57 +000039using namespace llvm;
40
Jason W Kimc09e7262011-05-11 22:53:06 +000041#undef DEBUG_TYPE
42#define DEBUG_TYPE "reloc-info"
43
Rafael Espindola29abd972011-12-22 03:38:00 +000044namespace {
Rafael 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 {
David Blaikiea0fa2622016-04-12 21:45:53 +000073 static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
74 static uint64_t SymbolValue(const MCSymbol &Sym, const MCAsmLayout &Layout);
75 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolELF &Symbol,
76 bool Used, bool Renamed);
Rafael Espindola29abd972011-12-22 03:38:00 +000077
David Blaikiea0fa2622016-04-12 21:45:53 +000078 /// Helper struct for containing some precomputed information on symbols.
79 struct ELFSymbolData {
80 const MCSymbolELF *Symbol;
81 uint32_t SectionIndex;
82 StringRef Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000083
David Blaikiea0fa2622016-04-12 21:45:53 +000084 // Support lexicographic sorting.
85 bool operator<(const ELFSymbolData &RHS) const {
86 unsigned LHSType = Symbol->getType();
87 unsigned RHSType = RHS.Symbol->getType();
88 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
89 return false;
90 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
91 return true;
92 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
93 return SectionIndex < RHS.SectionIndex;
94 return Name < RHS.Name;
Rafael Espindola29abd972011-12-22 03:38:00 +000095 }
Rafael Espindola29abd972011-12-22 03:38:00 +000096 };
David Blaikiea0fa2622016-04-12 21:45:53 +000097
98 /// The target specific ELF writer instance.
99 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter;
100
101 DenseMap<const MCSymbolELF *, const MCSymbolELF *> Renames;
102
103 llvm::DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>>
104 Relocations;
105
106 /// @}
107 /// @name Symbol Table Data
108 /// @{
109
110 BumpPtrAllocator Alloc;
111 StringSaver VersionSymSaver{Alloc};
112 StringTableBuilder StrTabBuilder{StringTableBuilder::ELF};
113
114 /// @}
115
116 // 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;
122
123 // Sections in the order they are to be output in the section table.
124 std::vector<const MCSectionELF *> SectionTable;
125 unsigned addToSectionTable(const MCSectionELF *Sec);
126
127 // TargetObjectWriter wrappers.
128 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
129 bool hasRelocationAddend() const {
130 return TargetObjectWriter->hasRelocationAddend();
131 }
132 unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
133 const MCFixup &Fixup, bool IsPCRel) const {
134 return TargetObjectWriter->getRelocType(Ctx, Target, Fixup, IsPCRel);
135 }
136
137 void align(unsigned Alignment);
138
139public:
140 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
141 bool IsLittleEndian)
142 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
143
144 void reset() override {
145 Renames.clear();
146 Relocations.clear();
147 StrTabBuilder.clear();
148 SectionTable.clear();
149 MCObjectWriter::reset();
150 }
151
152 ~ELFObjectWriter() override;
153
154 void WriteWord(uint64_t W) {
155 if (is64Bit())
156 write64(W);
157 else
158 write32(W);
159 }
160
161 template <typename T> void write(T Val) {
162 if (IsLittleEndian)
163 support::endian::Writer<support::little>(getStream()).write(Val);
164 else
165 support::endian::Writer<support::big>(getStream()).write(Val);
166 }
167
168 void writeHeader(const MCAssembler &Asm);
169
170 void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
171 ELFSymbolData &MSD, const MCAsmLayout &Layout);
172
173 // Start and end offset of each section
174 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
175 SectionOffsetsTy;
176
177 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
178 const MCSymbolRefExpr *RefA,
179 const MCSymbol *Sym, uint64_t C,
180 unsigned Type) const;
181
182 void recordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
183 const MCFragment *Fragment, const MCFixup &Fixup,
184 MCValue Target, bool &IsPCRel,
185 uint64_t &FixedValue) override;
186
187 // Map from a signature symbol to the group section index
188 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
189
190 /// Compute the symbol table data
191 ///
192 /// \param Asm - The assembler.
193 /// \param SectionIndexMap - Maps a section to its index.
194 /// \param RevGroupMap - Maps a signature symbol to the group section.
195 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
196 const SectionIndexMapTy &SectionIndexMap,
197 const RevGroupMapTy &RevGroupMap,
198 SectionOffsetsTy &SectionOffsets);
199
200 MCSectionELF *createRelocationSection(MCContext &Ctx,
201 const MCSectionELF &Sec);
202
203 const MCSectionELF *createStringTable(MCContext &Ctx);
204
205 void executePostLayoutBinding(MCAssembler &Asm,
206 const MCAsmLayout &Layout) override;
207
208 void writeSectionHeader(const MCAsmLayout &Layout,
209 const SectionIndexMapTy &SectionIndexMap,
210 const SectionOffsetsTy &SectionOffsets);
211
212 void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
213 const MCAsmLayout &Layout);
214
215 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
216 uint64_t Address, uint64_t Offset, uint64_t Size,
217 uint32_t Link, uint32_t Info, uint64_t Alignment,
218 uint64_t EntrySize);
219
220 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
221
222 bool isSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
223 const MCSymbol &SymA,
224 const MCFragment &FB, bool InSet,
225 bool IsPCRel) const override;
226
227 bool isWeak(const MCSymbol &Sym) const override;
228
229 void writeObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
230 void writeSection(const SectionIndexMapTy &SectionIndexMap,
231 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
232 const MCSectionELF &Section);
233};
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000234} // end anonymous namespace
Rafael Espindola29abd972011-12-22 03:38:00 +0000235
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000236void ELFObjectWriter::align(unsigned Alignment) {
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000237 uint64_t Padding = OffsetToAlignment(getStream().tell(), Alignment);
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000238 WriteZeros(Padding);
239}
240
Rafael Espindola08850b32015-05-25 21:56:55 +0000241unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000242 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000243 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000244 return SectionTable.size();
245}
246
Rafael Espindola10be0832014-03-25 23:44:25 +0000247void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000248 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000249 return;
250
Rafael Espindola91fd2772015-04-29 21:09:32 +0000251 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000252}
253
Rafael Espindola91fd2772015-04-29 21:09:32 +0000254template <typename T> void SymbolTableWriter::write(T Value) {
255 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000256}
257
Rafael Espindola91fd2772015-04-29 21:09:32 +0000258SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
259 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000260
261void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
262 uint64_t size, uint8_t other,
263 uint32_t shndx, bool Reserved) {
264 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
265
266 if (LargeIndex)
267 createSymtabShndx();
268
Rafael Espindola91fd2772015-04-29 21:09:32 +0000269 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000270 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000271 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000272 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000273 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000274 }
275
276 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
277
Rafael Espindola10be0832014-03-25 23:44:25 +0000278 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000279 write(name); // st_name
280 write(info); // st_info
281 write(other); // st_other
282 write(Index); // st_shndx
283 write(value); // st_value
284 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000285 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000286 write(name); // st_name
287 write(uint32_t(value)); // st_value
288 write(uint32_t(size)); // st_size
289 write(info); // st_info
290 write(other); // st_other
291 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000292 }
293
294 ++NumWritten;
295}
296
Jan Sjödin30a52de2011-02-28 21:45:04 +0000297bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
298 const MCFixupKindInfo &FKI =
299 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
300
301 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
302}
303
Jason W Kim96f4c012010-11-15 16:18:39 +0000304ELFObjectWriter::~ELFObjectWriter()
305{}
306
Matt Fleming6c1ad482010-08-16 18:57:57 +0000307// Emit the ELF header.
Rafael Espindola8c7829b2015-04-29 20:39:37 +0000308void ELFObjectWriter::writeHeader(const MCAssembler &Asm) {
Matt Fleming6c1ad482010-08-16 18:57:57 +0000309 // ELF Header
310 // ----------
311 //
312 // Note
313 // ----
314 // emitWord method behaves differently for ELF32 and ELF64, writing
315 // 4 bytes in the former and 8 in the latter.
316
Jim Grosbach36e60e92015-06-04 22:24:41 +0000317 writeBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000318
Jim Grosbach36e60e92015-06-04 22:24:41 +0000319 write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000320
321 // e_ident[EI_DATA]
Jim Grosbach36e60e92015-06-04 22:24:41 +0000322 write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000323
Jim Grosbach36e60e92015-06-04 22:24:41 +0000324 write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000325 // e_ident[EI_OSABI]
Jim Grosbach36e60e92015-06-04 22:24:41 +0000326 write8(TargetObjectWriter->getOSABI());
327 write8(0); // e_ident[EI_ABIVERSION]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000328
329 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
330
Jim Grosbach36e60e92015-06-04 22:24:41 +0000331 write16(ELF::ET_REL); // e_type
Matt Fleming6c1ad482010-08-16 18:57:57 +0000332
Jim Grosbach36e60e92015-06-04 22:24:41 +0000333 write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000334
Jim Grosbach36e60e92015-06-04 22:24:41 +0000335 write32(ELF::EV_CURRENT); // e_version
Matt Fleming6c1ad482010-08-16 18:57:57 +0000336 WriteWord(0); // e_entry, no entry point in .o file
337 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindola642a2212015-04-14 22:54:16 +0000338 WriteWord(0); // e_shoff = sec hdr table off in bytes
Matt Fleming6c1ad482010-08-16 18:57:57 +0000339
Jason W Kim4761fba2011-02-04 21:41:11 +0000340 // e_flags = whatever the target wants
Jim Grosbach36e60e92015-06-04 22:24:41 +0000341 write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000342
343 // e_ehsize = ELF header size
Jim Grosbach36e60e92015-06-04 22:24:41 +0000344 write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000345
Jim Grosbach36e60e92015-06-04 22:24:41 +0000346 write16(0); // e_phentsize = prog header entry size
347 write16(0); // e_phnum = # prog header entries = 0
Matt Fleming6c1ad482010-08-16 18:57:57 +0000348
349 // e_shentsize = Section header entry size
Jim Grosbach36e60e92015-06-04 22:24:41 +0000350 write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000351
352 // e_shnum = # of section header ents
Jim Grosbach36e60e92015-06-04 22:24:41 +0000353 write16(0);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000354
355 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola5960cee2015-05-22 23:58:30 +0000356 assert(StringTableIndex < ELF::SHN_LORESERVE);
Jim Grosbach36e60e92015-06-04 22:24:41 +0000357 write16(StringTableIndex);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000358}
359
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000360uint64_t ELFObjectWriter::SymbolValue(const MCSymbol &Sym,
Jan Sjödin30a52de2011-02-28 21:45:04 +0000361 const MCAsmLayout &Layout) {
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000362 if (Sym.isCommon() && Sym.isExternal())
Rafael Espindola14672502015-05-29 17:48:04 +0000363 return Sym.getCommonAlignment();
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000364
Rafael Espindolafee224f2014-04-30 21:51:13 +0000365 uint64_t Res;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000366 if (!Layout.getSymbolOffset(Sym, Res))
Rafael Espindola553e5eb2014-04-30 16:59:35 +0000367 return 0;
368
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000369 if (Layout.getAssembler().isThumbFunc(&Sym))
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000370 Res |= 1;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000371
Rafael Espindola66f96fe2014-03-21 22:00:29 +0000372 return Res;
Rafael Espindola9735f4f2010-09-27 21:23:02 +0000373}
374
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000375void ELFObjectWriter::executePostLayoutBinding(MCAssembler &Asm,
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000376 const MCAsmLayout &Layout) {
Evgeniy Stepanova023f792016-03-28 20:36:28 +0000377 // Section symbols are used as definitions for undefined symbols with matching
378 // names. If there are multiple sections with the same name, the first one is
379 // used.
380 for (const MCSection &Sec : Asm) {
381 const MCSymbol *Begin = Sec.getBeginSymbol();
382 if (!Begin)
383 continue;
384
385 const MCSymbol *Alias = Asm.getContext().lookupSymbol(Begin->getName());
386 if (!Alias || !Alias->isUndefined())
387 continue;
388
389 Renames.insert(
390 std::make_pair(cast<MCSymbolELF>(Alias), cast<MCSymbolELF>(Begin)));
391 }
392
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000393 // The presence of symbol versions causes undefined symbols and
394 // versions declared with @@@ to be renamed.
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000395 for (const MCSymbol &A : Asm.symbols()) {
396 const auto &Alias = cast<MCSymbolELF>(A);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000397 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000398 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000399 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000400 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
401 if (!Ref)
402 continue;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000403 const auto &Symbol = cast<MCSymbolELF>(Ref->getSymbol());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000404
Benjamin Kramer14807272010-10-27 19:53:52 +0000405 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000406 size_t Pos = AliasName.find('@');
407 if (Pos == StringRef::npos)
408 continue;
409
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000410 // Aliases defined with .symvar copy the binding from the symbol they alias.
411 // This is the first place we are able to copy this information.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000412 Alias.setExternal(Symbol.isExternal());
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000413 Alias.setBinding(Symbol.getBinding());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000414
Benjamin Kramer14807272010-10-27 19:53:52 +0000415 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000416 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
417 continue;
418
Rafael Espindola26496e62010-10-27 17:56:18 +0000419 // FIXME: produce a better error message.
420 if (Symbol.isUndefined() && Rest.startswith("@@") &&
421 !Rest.startswith("@@@"))
422 report_fatal_error("A @@ version cannot be undefined");
423
Benjamin Kramer14807272010-10-27 19:53:52 +0000424 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000425 }
426}
427
Roman Divacky5a1c5492014-01-07 20:17:03 +0000428static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
429 uint8_t Type = newType;
430
431 // Propagation rules:
432 // IFUNC > FUNC > OBJECT > NOTYPE
433 // TLS_OBJECT > OBJECT > NOTYPE
434 //
435 // dont let the new type degrade the old type
436 switch (origType) {
437 default:
438 break;
439 case ELF::STT_GNU_IFUNC:
440 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
441 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
442 Type = ELF::STT_GNU_IFUNC;
443 break;
444 case ELF::STT_FUNC:
445 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
446 Type == ELF::STT_TLS)
447 Type = ELF::STT_FUNC;
448 break;
449 case ELF::STT_OBJECT:
450 if (Type == ELF::STT_NOTYPE)
451 Type = ELF::STT_OBJECT;
452 break;
453 case ELF::STT_TLS:
454 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
455 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
456 Type = ELF::STT_TLS;
457 break;
458 }
459
460 return Type;
461}
462
Rafael Espindolae48421f2015-05-28 20:25:29 +0000463void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
464 uint32_t StringIndex, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000465 const MCAsmLayout &Layout) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000466 const auto &Symbol = cast<MCSymbolELF>(*MSD.Symbol);
Rafael Espindolaa8695762015-06-02 00:25:12 +0000467 const MCSymbolELF *Base =
468 cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol));
Rafael Espindola85a84912014-03-26 00:16:43 +0000469
470 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
471 // SHN_COMMON.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000472 bool IsReserved = !Base || Symbol.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000473
Jack Carter2f8d9d92013-02-19 21:57:35 +0000474 // Binding and Type share the same byte as upper and lower nibbles
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000475 uint8_t Binding = Symbol.getBinding();
476 uint8_t Type = Symbol.getType();
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000477 if (Base) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000478 Type = mergeTypeForSet(Type, Base->getType());
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000479 }
Rafael Espindolaf8794ff2015-06-04 00:47:43 +0000480 uint8_t Info = (Binding << 4) | Type;
Jack Carter2f8d9d92013-02-19 21:57:35 +0000481
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000482 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000483 // 2 bits
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000484 uint8_t Visibility = Symbol.getVisibility();
Rafael Espindola8c006ee2015-06-04 05:59:23 +0000485 uint8_t Other = Symbol.getOther() | Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000486
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000487 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000488 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000489
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000490 const MCExpr *ESize = MSD.Symbol->getSize();
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000491 if (!ESize && Base)
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000492 ESize = Base->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000493
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000494 if (ESize) {
495 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000496 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000497 report_fatal_error("Size expression must be absolute.");
498 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000499 }
500
501 // Write out the symbol table entry
Rafael Espindolae48421f2015-05-28 20:25:29 +0000502 Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
503 IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000504}
505
Rafael Espindola5904e122014-03-29 06:26:49 +0000506// It is always valid to create a relocation with a symbol. It is preferable
507// to use a relocation with a section if that is possible. Using the section
508// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000509bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
510 const MCSymbolRefExpr *RefA,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000511 const MCSymbol *S, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000512 unsigned Type) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000513 const auto *Sym = cast_or_null<MCSymbolELF>(S);
Rafael Espindola5904e122014-03-29 06:26:49 +0000514 // A PCRel relocation to an absolute value has no symbol (or section). We
515 // represent that with a relocation to a null section.
516 if (!RefA)
517 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000518
Rafael Espindola5904e122014-03-29 06:26:49 +0000519 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
520 switch (Kind) {
521 default:
522 break;
523 // The .odp creation emits a relocation against the symbol ".TOC." which
524 // create a R_PPC64_TOC relocation. However the relocation symbol name
525 // in final object creation should be NULL, since the symbol does not
526 // really exist, it is just the reference to TOC base for the current
527 // object file. Since the symbol is undefined, returning false results
528 // in a relocation with a null section which is the desired result.
529 case MCSymbolRefExpr::VK_PPC_TOCBASE:
530 return false;
531
532 // These VariantKind cause the relocation to refer to something other than
533 // the symbol itself, like a linker generated table. Since the address of
534 // symbol is not relevant, we cannot replace the symbol with the
535 // section and patch the difference in the addend.
536 case MCSymbolRefExpr::VK_GOT:
537 case MCSymbolRefExpr::VK_PLT:
538 case MCSymbolRefExpr::VK_GOTPCREL:
Rafael Espindola5904e122014-03-29 06:26:49 +0000539 case MCSymbolRefExpr::VK_PPC_GOT_LO:
540 case MCSymbolRefExpr::VK_PPC_GOT_HI:
541 case MCSymbolRefExpr::VK_PPC_GOT_HA:
542 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000543 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000544
Rafael Espindola5904e122014-03-29 06:26:49 +0000545 // An undefined symbol is not in any section, so the relocation has to point
546 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000547 assert(Sym && "Expected a symbol");
548 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000549 return true;
550
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000551 unsigned Binding = Sym->getBinding();
Rafael Espindola5904e122014-03-29 06:26:49 +0000552 switch(Binding) {
553 default:
554 llvm_unreachable("Invalid Binding");
555 case ELF::STB_LOCAL:
556 break;
557 case ELF::STB_WEAK:
558 // If the symbol is weak, it might be overridden by a symbol in another
559 // file. The relocation has to point to the symbol so that the linker
560 // can update it.
561 return true;
562 case ELF::STB_GLOBAL:
563 // Global ELF symbols can be preempted by the dynamic linker. The relocation
564 // has to point to the symbol for a reason analogous to the STB_WEAK case.
565 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000566 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000567
Rafael Espindola5904e122014-03-29 06:26:49 +0000568 // If a relocation points to a mergeable section, we have to be careful.
569 // If the offset is zero, a relocation with the section will encode the
570 // same information. With a non-zero offset, the situation is different.
571 // For example, a relocation can point 42 bytes past the end of a string.
572 // If we change such a relocation to use the section, the linker would think
573 // that it pointed to another string and subtracting 42 at runtime will
574 // produce the wrong value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000575 auto &Sec = cast<MCSectionELF>(Sym->getSection());
Rafael Espindola5904e122014-03-29 06:26:49 +0000576 unsigned Flags = Sec.getFlags();
577 if (Flags & ELF::SHF_MERGE) {
578 if (C != 0)
579 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000580
581 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
582 // only handle section relocations to mergeable sections if using RELA.
583 if (!hasRelocationAddend())
584 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000585 }
586
Rafael Espindola5904e122014-03-29 06:26:49 +0000587 // Most TLS relocations use a got, so they need the symbol. Even those that
Rafael Espindola11527a12014-10-06 12:33:27 +0000588 // are just an offset (@tpoff), require a symbol in gold versions before
589 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
590 // http://sourceware.org/PR16773.
Rafael Espindola5904e122014-03-29 06:26:49 +0000591 if (Flags & ELF::SHF_TLS)
592 return true;
Rafael Espindolad7565c32010-10-05 23:57:26 +0000593
Rafael Espindola9ef84412014-04-11 19:18:01 +0000594 // If the symbol is a thumb function the final relocation must set the lowest
595 // bit. With a symbol that is done by just having the symbol have that bit
596 // set, so we would lose the bit if we relocated with the section.
597 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000598 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000599 return true;
600
Rafael Espindolaece40ca2015-05-29 18:26:09 +0000601 if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000602 return true;
603 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000604}
605
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000606// True if the assembler knows nothing about the final value of the symbol.
607// This doesn't cover the comdat issues, since in those cases the assembler
608// can at least know that all symbols in the section will move together.
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000609static bool isWeak(const MCSymbolELF &Sym) {
610 if (Sym.getType() == ELF::STT_GNU_IFUNC)
Rafael Espindolaa635d832015-04-17 08:46:11 +0000611 return true;
612
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000613 switch (Sym.getBinding()) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000614 default:
615 llvm_unreachable("Unknown binding");
616 case ELF::STB_LOCAL:
617 return false;
618 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000619 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000620 case ELF::STB_WEAK:
621 case ELF::STB_GNU_UNIQUE:
622 return true;
623 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000624}
625
Jim Grosbach36e60e92015-06-04 22:24:41 +0000626void ELFObjectWriter::recordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000627 const MCAsmLayout &Layout,
628 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000629 const MCFixup &Fixup, MCValue Target,
630 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola7549f872015-05-26 00:36:57 +0000631 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000632 uint64_t C = Target.getConstant();
633 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000634 MCContext &Ctx = Asm.getContext();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000635
Rafael Espindola5904e122014-03-29 06:26:49 +0000636 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
637 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
638 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000639
Rafael Espindola5904e122014-03-29 06:26:49 +0000640 // Let A, B and C being the components of Target and R be the location of
641 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
642 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000643
Rafael Espindola5904e122014-03-29 06:26:49 +0000644 // In general, ELF has no relocations for -B. It can only represent (A + C)
645 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
646 // replace B to implement it: (A - R - K + C)
Oliver Stannard9be59af2015-11-17 10:00:43 +0000647 if (IsPCRel) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000648 Ctx.reportError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000649 Fixup.getLoc(),
650 "No relocation available to represent this relative expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000651 return;
652 }
David Majnemera45a1762014-01-06 07:39:46 +0000653
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000654 const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol());
Jason W Kim495c2bb2010-12-06 21:57:34 +0000655
Oliver Stannard9be59af2015-11-17 10:00:43 +0000656 if (SymB.isUndefined()) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000657 Ctx.reportError(Fixup.getLoc(),
658 Twine("symbol '") + SymB.getName() +
659 "' can not be undefined in a subtraction expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000660 return;
661 }
Jason W Kim495c2bb2010-12-06 21:57:34 +0000662
Rafael Espindola5904e122014-03-29 06:26:49 +0000663 assert(!SymB.isAbsolute() && "Should have been folded");
664 const MCSection &SecB = SymB.getSection();
Oliver Stannard9be59af2015-11-17 10:00:43 +0000665 if (&SecB != &FixupSection) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000666 Ctx.reportError(Fixup.getLoc(),
667 "Cannot represent a difference across sections");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000668 return;
669 }
Jason W Kim495c2bb2010-12-06 21:57:34 +0000670
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000671 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000672 uint64_t K = SymBOffset - FixupOffset;
673 IsPCRel = true;
674 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000675 }
676
Rafael Espindola5904e122014-03-29 06:26:49 +0000677 // We either rejected the fixup or folded B into C at this point.
678 const MCSymbolRefExpr *RefA = Target.getSymA();
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000679 const auto *SymA = RefA ? cast<MCSymbolELF>(&RefA->getSymbol()) : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000680
Rafael Espindola212fdde2015-06-03 21:52:06 +0000681 bool ViaWeakRef = false;
682 if (SymA && SymA->isVariable()) {
683 const MCExpr *Expr = SymA->getVariableValue();
684 if (const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr)) {
685 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF) {
686 SymA = cast<MCSymbolELF>(&Inner->getSymbol());
687 ViaWeakRef = true;
688 }
689 }
690 }
691
Rafael Espindola8340f942016-01-13 22:56:57 +0000692 unsigned Type = getRelocType(Ctx, Target, Fixup, IsPCRel);
Daniel Sandersa463d312016-05-06 13:49:25 +0000693 uint64_t OriginalC = C;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000694 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000695 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000696 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000697
698 uint64_t Addend = 0;
699 if (hasRelocationAddend()) {
700 Addend = C;
701 C = 0;
702 }
703
704 FixedValue = C;
705
Rafael Espindola5904e122014-03-29 06:26:49 +0000706 if (!RelocateWithSymbol) {
707 const MCSection *SecA =
708 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000709 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000710 const auto *SectionSymbol =
711 ELFSec ? cast<MCSymbolELF>(ELFSec->getBeginSymbol()) : nullptr;
Rafael Espindolaa401eee2015-06-04 15:33:30 +0000712 if (SectionSymbol)
713 SectionSymbol->setUsedInReloc();
Daniel Sandersa463d312016-05-06 13:49:25 +0000714 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend, SymA,
715 OriginalC);
Rafael Espindola34948e52015-04-30 00:45:46 +0000716 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000717 return;
718 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000719
Daniel Sandersa463d312016-05-06 13:49:25 +0000720 const auto *RenamedSymA = SymA;
Rafael Espindola5904e122014-03-29 06:26:49 +0000721 if (SymA) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000722 if (const MCSymbolELF *R = Renames.lookup(SymA))
Daniel Sandersa463d312016-05-06 13:49:25 +0000723 RenamedSymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000724
Rafael Espindola212fdde2015-06-03 21:52:06 +0000725 if (ViaWeakRef)
Daniel Sandersa463d312016-05-06 13:49:25 +0000726 RenamedSymA->setIsWeakrefUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000727 else
Daniel Sandersa463d312016-05-06 13:49:25 +0000728 RenamedSymA->setUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000729 }
Daniel Sandersa463d312016-05-06 13:49:25 +0000730 ELFRelocationEntry Rec(FixupOffset, RenamedSymA, Type, Addend, SymA,
731 OriginalC);
Rafael Espindola34948e52015-04-30 00:45:46 +0000732 Relocations[&FixupSection].push_back(Rec);
Jason W Kim495c2bb2010-12-06 21:57:34 +0000733}
734
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000735bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000736 const MCSymbolELF &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000737 bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000738 if (Symbol.isVariable()) {
739 const MCExpr *Expr = Symbol.getVariableValue();
740 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
741 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
742 return false;
743 }
744 }
Rafael Espindola16145972010-11-01 14:28:48 +0000745
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000746 if (Used)
747 return true;
748
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000749 if (Renamed)
750 return false;
751
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000752 if (Symbol.isVariable() && Symbol.isUndefined()) {
753 // FIXME: this is here just to diagnose the case of a var = commmon_sym.
754 Layout.getBaseSymbol(Symbol);
755 return false;
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000756 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000757
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000758 if (Symbol.isUndefined() && !Symbol.isBindingSet())
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000759 return false;
760
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000761 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000762 return false;
763
Rafael Espindolaa401eee2015-06-04 15:33:30 +0000764 if (Symbol.getType() == ELF::STT_SECTION)
765 return false;
766
Rafael Espindolab1d07892010-10-05 18:01:23 +0000767 return true;
768}
769
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000770void ELFObjectWriter::computeSymbolTable(
771 MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000772 const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
773 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000774 MCContext &Ctx = Asm.getContext();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000775 SymbolTableWriter Writer(*this, is64Bit());
776
Rafael Espindola5960cee2015-05-22 23:58:30 +0000777 // Symbol table
778 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
779 MCSectionELF *SymtabSection =
780 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
781 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
782 SymbolTableIndex = addToSectionTable(SymtabSection);
783
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000784 align(SymtabSection->getAlignment());
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000785 uint64_t SecStart = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000786
787 // The first entry is the undefined symbol entry.
788 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
789
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000790 std::vector<ELFSymbolData> LocalSymbolData;
791 std::vector<ELFSymbolData> ExternalSymbolData;
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000792
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000793 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000794 bool HasLargeSectionIndex = false;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000795 for (const MCSymbol &S : Asm.symbols()) {
796 const auto &Symbol = cast<MCSymbolELF>(S);
Rafael Espindolaada43f62015-06-03 21:30:10 +0000797 bool Used = Symbol.isUsedInReloc();
Rafael Espindola212fdde2015-06-03 21:52:06 +0000798 bool WeakrefUsed = Symbol.isWeakrefUsedInReloc();
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000799 bool isSignature = Symbol.isSignature();
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000800
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000801 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000802 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000803 continue;
804
Oliver Stannard9be59af2015-11-17 10:00:43 +0000805 if (Symbol.isTemporary() && Symbol.isUndefined()) {
806 Ctx.reportError(SMLoc(), "Undefined temporary symbol");
807 continue;
808 }
Rafael Espindola6dff8142015-06-25 20:10:45 +0000809
Matt Fleming6c1ad482010-08-16 18:57:57 +0000810 ELFSymbolData MSD;
Rafael Espindolaa8695762015-06-02 00:25:12 +0000811 MSD.Symbol = cast<MCSymbolELF>(&Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000812
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000813 bool Local = Symbol.getBinding() == ELF::STB_LOCAL;
Rafael Espindola6dff8142015-06-25 20:10:45 +0000814 assert(Local || !Symbol.isTemporary());
815
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000816 if (Symbol.isAbsolute()) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000817 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola14672502015-05-29 17:48:04 +0000818 } else if (Symbol.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000819 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000820 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000821 } else if (Symbol.isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000822 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000823 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000824 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
825 HasLargeSectionIndex = true;
826 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000827 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000828 }
Matt Fleming6c1ad482010-08-16 18:57:57 +0000829 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000830 const MCSectionELF &Section =
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000831 static_cast<const MCSectionELF &>(Symbol.getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000832 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000833 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000834 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
835 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000836 }
837
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000838 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
839 // in defined ones.
840 //
841 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000842 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000843 // trivial.
844 //
845 // We thus have to be careful to not perform the symbol version replacement
846 // blindly:
847 //
848 // The ELF format is used on Windows by the MCJIT engine. Thus, on
849 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
850 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
851 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
852 // the EFLObjectWriter should not interpret the "@@@" sub-string as
853 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
854 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
855 // "__imp_?" or "__imp_@?".
856 //
857 // It would have been interesting to perform the MS mangling prefix check
858 // only when the target triple is of the form *-pc-windows-elf. But, it
859 // seems that this information is not easily accessible from the
860 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000861 StringRef Name = Symbol.getName();
Evgeniy Stepanov9e0d41a2015-06-22 23:36:03 +0000862 SmallString<32> Buf;
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000863 if (!Name.startswith("?") && !Name.startswith("@?") &&
864 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
865 // This symbol isn't following the MSVC C++ name mangling convention. We
866 // can thus safely interpret the @@@ in symbol names as specifying symbol
867 // versioning.
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000868 size_t Pos = Name.find("@@@");
869 if (Pos != StringRef::npos) {
870 Buf += Name.substr(0, Pos);
871 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
872 Buf += Name.substr(Pos + Skip);
Rafael Espindolafc063e82015-10-22 18:32:06 +0000873 Name = VersionSymSaver.save(Buf.c_str());
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000874 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000875 }
Rafael Espindolab6613022014-10-17 01:48:58 +0000876
877 // Sections have their own string table
Rafael Espindolafc063e82015-10-22 18:32:06 +0000878 if (Symbol.getType() != ELF::STT_SECTION) {
879 MSD.Name = Name;
880 StrTabBuilder.add(Name);
881 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000882
Rafael Espindola10d23872015-05-29 14:20:40 +0000883 if (Local)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000884 LocalSymbolData.push_back(MSD);
885 else
886 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000887 }
888
Rafael Espindola2cd19512015-07-02 16:59:57 +0000889 // This holds the .symtab_shndx section index.
890 unsigned SymtabShndxSectionIndex = 0;
891
Rafael Espindola5960cee2015-05-22 23:58:30 +0000892 if (HasLargeSectionIndex) {
893 MCSectionELF *SymtabShndxSection =
894 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
895 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
896 SymtabShndxSection->setAlignment(4);
897 }
898
Rafael Espindola1fd36272015-05-28 19:29:15 +0000899 ArrayRef<std::string> FileNames = Asm.getFileNames();
900 for (const std::string &Name : FileNames)
Rafael Espindola66f3c9c2015-05-28 18:03:20 +0000901 StrTabBuilder.add(Name);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000902
Rafael Espindola21956e42015-10-23 21:48:05 +0000903 StrTabBuilder.finalize();
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000904
Rafael Espindola0cbea292015-05-28 20:00:13 +0000905 for (const std::string &Name : FileNames)
906 Writer.writeSymbol(StrTabBuilder.getOffset(Name),
907 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
908 ELF::SHN_ABS, true);
909
Matt Fleming6c1ad482010-08-16 18:57:57 +0000910 // Symbols are required to be in lexicographic order.
911 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
912 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000913
914 // Set the symbol indices. Local symbols must come before all other
915 // symbols with non-local bindings.
Rafael Espindola1fd36272015-05-28 19:29:15 +0000916 unsigned Index = FileNames.size() + 1;
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000917
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000918 for (ELFSymbolData &MSD : LocalSymbolData) {
Daniel Jasper41de8022015-06-23 11:31:32 +0000919 unsigned StringIndex = MSD.Symbol->getType() == ELF::STT_SECTION
920 ? 0
921 : StrTabBuilder.getOffset(MSD.Name);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000922 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000923 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000924 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000925
926 // Write the symbol table entries.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000927 LastLocalSymbolIndex = Index;
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000928
Rafael Espindoladcda9972015-05-28 19:43:20 +0000929 for (ELFSymbolData &MSD : ExternalSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000930 unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
Rafael Espindola0cbea292015-05-28 20:00:13 +0000931 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000932 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000933 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000934 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000935
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000936 uint64_t SecEnd = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000937 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
938
939 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
940 if (ShndxIndexes.empty()) {
941 assert(SymtabShndxSectionIndex == 0);
942 return;
943 }
944 assert(SymtabShndxSectionIndex != 0);
945
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000946 SecStart = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000947 const MCSectionELF *SymtabShndxSection =
948 SectionTable[SymtabShndxSectionIndex - 1];
949 for (uint32_t Index : ShndxIndexes)
950 write(Index);
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000951 SecEnd = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000952 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000953}
954
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000955MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000956ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +0000957 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000958 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +0000959 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000960
Rafael Espindola34948e52015-04-30 00:45:46 +0000961 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +0000962 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
963 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +0000964
Rafael Espindolaead85492015-02-17 20:31:13 +0000965 unsigned EntrySize;
966 if (hasRelocationAddend())
967 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
968 else
969 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000970
Rafael Espindolaead85492015-02-17 20:31:13 +0000971 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +0000972 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +0000973 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +0000974
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000975 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +0000976 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +0000977 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000978 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +0000979 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000980}
Matt Fleming6c1ad482010-08-16 18:57:57 +0000981
David Blaikie8019bf82014-04-10 21:53:53 +0000982// Include the debug info compression header:
983// "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
984// useful for consumers to preallocate a buffer to decompress into.
David Blaikie76d3a3c2014-04-18 21:52:26 +0000985static bool
David Blaikiee06e8012014-04-11 22:11:50 +0000986prependCompressionHeader(uint64_t Size,
987 SmallVectorImpl<char> &CompressedContents) {
Benjamin Kramer7149aab2015-03-01 18:09:56 +0000988 const StringRef Magic = "ZLIB";
David Blaikie76d3a3c2014-04-18 21:52:26 +0000989 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
990 return false;
David Blaikie8019bf82014-04-10 21:53:53 +0000991 if (sys::IsLittleEndianHost)
Artyom Skrobov9aea8432014-06-14 13:18:07 +0000992 sys::swapByteOrder(Size);
David Blaikie8019bf82014-04-10 21:53:53 +0000993 CompressedContents.insert(CompressedContents.begin(),
994 Magic.size() + sizeof(Size), 0);
995 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin());
996 std::copy(reinterpret_cast<char *>(&Size),
997 reinterpret_cast<char *>(&Size + 1),
998 CompressedContents.begin() + Magic.size());
David Blaikie76d3a3c2014-04-18 21:52:26 +0000999 return true;
David Blaikie8019bf82014-04-10 21:53:53 +00001000}
1001
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001002void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +00001003 const MCAsmLayout &Layout) {
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001004 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001005 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +00001006
Rafael Espindola868b3f42015-04-30 21:51:58 +00001007 // Compressing debug_frame requires handling alignment fragments which is
1008 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1009 // for writing to arbitrary buffers) for little benefit.
1010 if (!Asm.getContext().getAsmInfo()->compressDebugSections() ||
1011 !SectionName.startswith(".debug_") || SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001012 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001013 return;
1014 }
1015
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001016 SmallVector<char, 128> UncompressedData;
1017 raw_svector_ostream VecOS(UncompressedData);
1018 raw_pwrite_stream &OldStream = getStream();
1019 setStream(VecOS);
1020 Asm.writeSectionData(&Section, Layout);
1021 setStream(OldStream);
David Blaikie8019bf82014-04-10 21:53:53 +00001022
Rafael Espindola868b3f42015-04-30 21:51:58 +00001023 SmallVector<char, 128> CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001024 zlib::Status Success = zlib::compress(
1025 StringRef(UncompressedData.data(), UncompressedData.size()),
1026 CompressedContents);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001027 if (Success != zlib::StatusOK) {
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001028 getStream() << UncompressedData;
David Blaikie8019bf82014-04-10 21:53:53 +00001029 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001030 }
David Blaikie8019bf82014-04-10 21:53:53 +00001031
Rafael Espindola868b3f42015-04-30 21:51:58 +00001032 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) {
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001033 getStream() << UncompressedData;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001034 return;
1035 }
David Blaikie8019bf82014-04-10 21:53:53 +00001036 Asm.getContext().renameELFSection(&Section,
1037 (".z" + SectionName.drop_front(1)).str());
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001038 getStream() << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001039}
1040
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001041void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1042 uint64_t Flags, uint64_t Address,
1043 uint64_t Offset, uint64_t Size,
1044 uint32_t Link, uint32_t Info,
1045 uint64_t Alignment,
1046 uint64_t EntrySize) {
Jim Grosbach36e60e92015-06-04 22:24:41 +00001047 write32(Name); // sh_name: index into string table
1048 write32(Type); // sh_type
Matt Fleming6c1ad482010-08-16 18:57:57 +00001049 WriteWord(Flags); // sh_flags
1050 WriteWord(Address); // sh_addr
1051 WriteWord(Offset); // sh_offset
1052 WriteWord(Size); // sh_size
Jim Grosbach36e60e92015-06-04 22:24:41 +00001053 write32(Link); // sh_link
1054 write32(Info); // sh_info
Matt Fleming6c1ad482010-08-16 18:57:57 +00001055 WriteWord(Alignment); // sh_addralign
1056 WriteWord(EntrySize); // sh_entsize
1057}
1058
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001059void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001060 const MCSectionELF &Sec) {
1061 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001062
Rafael Espindolaf44db242015-12-17 16:22:06 +00001063 // We record relocations by pushing to the end of a vector. Reverse the vector
1064 // to get the relocations in the order they were created.
1065 // In most cases that is not important, but it can be for special sections
1066 // (.eh_frame) or specific relocations (TLS optimizations on SystemZ).
1067 std::reverse(Relocs.begin(), Relocs.end());
Rafael Espindolad0e16522015-12-17 15:08:24 +00001068
Rafael Espindolaf44db242015-12-17 16:22:06 +00001069 // Sort the relocation entries. MIPS needs this.
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001070 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001071
1072 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001073 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001074 unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001075
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001076 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001077 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001078 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001079 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001080
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001081 write(TargetObjectWriter->getRSsym(Entry.Type));
1082 write(TargetObjectWriter->getRType3(Entry.Type));
1083 write(TargetObjectWriter->getRType2(Entry.Type));
1084 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001085 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001086 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001087 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001088 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001089 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001090 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001091 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001092 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001093 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001094
Rafael Espindolabce26a12010-10-05 15:11:03 +00001095 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001096 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001097 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001098
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001099 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001100 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001101 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001102 }
1103}
1104
Rafael Espindolab1863912015-04-30 21:10:06 +00001105const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001106 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001107 getStream() << StrTabBuilder.data();
Rafael Espindolabda19802015-04-30 14:21:49 +00001108 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001109}
1110
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001111void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1112 uint32_t GroupSymbolIndex, uint64_t Offset,
1113 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001114 uint64_t sh_link = 0;
1115 uint64_t sh_info = 0;
1116
1117 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001118 default:
1119 // Nothing to do.
1120 break;
1121
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001122 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001123 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001124
1125 case ELF::SHT_REL:
1126 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001127 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001128 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001129 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001130 sh_info = SectionIndexMap.lookup(InfoSection);
1131 break;
1132 }
1133
1134 case ELF::SHT_SYMTAB:
1135 case ELF::SHT_DYNSYM:
1136 sh_link = StringTableIndex;
1137 sh_info = LastLocalSymbolIndex;
1138 break;
1139
1140 case ELF::SHT_SYMTAB_SHNDX:
1141 sh_link = SymbolTableIndex;
1142 break;
1143
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001144 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001145 sh_link = SymbolTableIndex;
1146 sh_info = GroupSymbolIndex;
1147 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001148 }
1149
Logan Chien4b724422013-02-05 14:18:59 +00001150 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM &&
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001151 Section.getType() == ELF::SHT_ARM_EXIDX)
1152 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001153
Rafael Espindola5960cee2015-05-22 23:58:30 +00001154 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001155 Section.getType(), Section.getFlags(), 0, Offset, Size,
1156 sh_link, sh_info, Section.getAlignment(),
1157 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001158}
1159
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001160void ELFObjectWriter::writeSectionHeader(
Rafael Espindola57c80832015-06-04 20:55:49 +00001161 const MCAsmLayout &Layout, const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001162 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001163 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001164
Matt Fleming6c1ad482010-08-16 18:57:57 +00001165 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001166 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001167 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001168 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001169
Rafael Espindola08850b32015-05-25 21:56:55 +00001170 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001171 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001172 unsigned Type = Section->getType();
1173 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001174 GroupSymbolIndex = 0;
1175 else
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001176 GroupSymbolIndex = Section->getGroup()->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001177
Rafael Espindolabda19802015-04-30 14:21:49 +00001178 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001179 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001180 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001181 if (Type == ELF::SHT_NOBITS)
1182 Size = Layout.getSectionAddressSize(Section);
1183 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001184 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001185
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001186 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001187 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001188 }
1189}
1190
Jim Grosbach36e60e92015-06-04 22:24:41 +00001191void ELFObjectWriter::writeObject(MCAssembler &Asm,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001192 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001193 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001194 MCSectionELF *StrtabSection =
1195 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1196 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001197
Rafael Espindola1557fd62011-03-20 18:44:20 +00001198 RevGroupMapTy RevGroupMap;
1199 SectionIndexMapTy SectionIndexMap;
1200
Rafael Espindolabda19802015-04-30 14:21:49 +00001201 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001202
Rafael Espindola1557fd62011-03-20 18:44:20 +00001203 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001204 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001205
Rafael Espindola7230f802015-04-08 11:41:24 +00001206 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001207 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001208 std::vector<MCSectionELF *> Groups;
1209 std::vector<MCSectionELF *> Relocations;
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001210 for (MCSection &Sec : Asm) {
1211 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindolabda19802015-04-30 14:21:49 +00001212
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001213 align(Section.getAlignment());
Rafael Espindola1557fd62011-03-20 18:44:20 +00001214
Rafael Espindola642a2212015-04-14 22:54:16 +00001215 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001216 uint64_t SecStart = getStream().tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001217
Rafael Espindola0ccf9b72015-06-02 21:30:13 +00001218 const MCSymbolELF *SignatureSymbol = Section.getGroup();
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001219 writeSectionData(Asm, Section, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001220
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001221 uint64_t SecEnd = getStream().tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001222 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1223
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001224 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001225
1226 if (SignatureSymbol) {
Rafael Espindolab5d316b2015-05-29 20:21:02 +00001227 Asm.registerSymbol(*SignatureSymbol);
Rafael Espindolabda19802015-04-30 14:21:49 +00001228 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1229 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001230 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001231 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001232 Group->setAlignment(4);
1233 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001234 }
Rafael Espindola7830fc82015-06-05 17:54:25 +00001235 std::vector<const MCSectionELF *> &Members =
1236 GroupMembers[SignatureSymbol];
1237 Members.push_back(&Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001238 if (RelSection)
Rafael Espindola7830fc82015-06-05 17:54:25 +00001239 Members.push_back(RelSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001240 }
1241
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001242 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001243 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001244 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001245 Relocations.push_back(RelSection);
1246 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001247 }
1248
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001249 for (MCSectionELF *Group : Groups) {
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001250 align(Group->getAlignment());
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001251
1252 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001253 uint64_t SecStart = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001254
1255 const MCSymbol *SignatureSymbol = Group->getGroup();
1256 assert(SignatureSymbol);
1257 write(uint32_t(ELF::GRP_COMDAT));
1258 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1259 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1260 write(SecIndex);
1261 }
1262
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001263 uint64_t SecEnd = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001264 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1265 }
1266
1267 // Compute symbol table information.
Rafael Espindolaaa486e92015-05-28 17:54:01 +00001268 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001269
1270 for (MCSectionELF *RelSection : Relocations) {
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001271 align(RelSection->getAlignment());
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001272
1273 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001274 uint64_t SecStart = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001275
1276 writeRelocations(Asm, *RelSection->getAssociatedSection());
1277
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001278 uint64_t SecEnd = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001279 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001280 }
1281
Rafael Espindola88d1f632015-04-29 20:25:24 +00001282 {
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001283 uint64_t SecStart = getStream().tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001284 const MCSectionELF *Sec = createStringTable(Ctx);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001285 uint64_t SecEnd = getStream().tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001286 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001287 }
1288
Rafael Espindola642a2212015-04-14 22:54:16 +00001289 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001290 align(NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001291
Rafael Espindola5568c832016-01-19 15:19:08 +00001292 const uint64_t SectionHeaderOffset = getStream().tell();
Rafael Espindola642a2212015-04-14 22:54:16 +00001293
Rafael Espindola1557fd62011-03-20 18:44:20 +00001294 // ... then the section header table ...
Rafael Espindola57c80832015-06-04 20:55:49 +00001295 writeSectionHeader(Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001296
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001297 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001298 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001299 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001300 if (sys::IsLittleEndianHost != IsLittleEndian)
1301 sys::swapByteOrder(NumSections);
1302 unsigned NumSectionsOffset;
1303
Rafael Espindola642a2212015-04-14 22:54:16 +00001304 if (is64Bit()) {
1305 uint64_t Val = SectionHeaderOffset;
1306 if (sys::IsLittleEndianHost != IsLittleEndian)
1307 sys::swapByteOrder(Val);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001308 getStream().pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1309 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001310 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001311 } else {
1312 uint32_t Val = SectionHeaderOffset;
1313 if (sys::IsLittleEndianHost != IsLittleEndian)
1314 sys::swapByteOrder(Val);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001315 getStream().pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1316 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001317 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001318 }
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001319 getStream().pwrite(reinterpret_cast<char *>(&NumSections),
1320 sizeof(NumSections), NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001321}
1322
Jim Grosbach36e60e92015-06-04 22:24:41 +00001323bool ELFObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001324 const MCAssembler &Asm, const MCSymbol &SA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001325 bool InSet, bool IsPCRel) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001326 const auto &SymA = cast<MCSymbolELF>(SA);
Rafael Espindola35d61892015-04-17 21:15:17 +00001327 if (IsPCRel) {
1328 assert(!InSet);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001329 if (::isWeak(SymA))
Rafael Espindola35d61892015-04-17 21:15:17 +00001330 return false;
1331 }
Jim Grosbach36e60e92015-06-04 22:24:41 +00001332 return MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001333 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001334}
1335
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001336bool ELFObjectWriter::isWeak(const MCSymbol &S) const {
1337 const auto &Sym = cast<MCSymbolELF>(S);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001338 if (::isWeak(Sym))
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001339 return true;
1340
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001341 // It is invalid to replace a reference to a global in a comdat
1342 // with a reference to a local since out of comdat references
1343 // to a local are forbidden.
1344 // We could try to return false for more cases, like the reference
1345 // being in the same comdat or Sym being an alias to another global,
1346 // but it is not clear if it is worth the effort.
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001347 if (Sym.getBinding() != ELF::STB_GLOBAL)
Rafael Espindola29c82702015-04-20 12:44:06 +00001348 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001349
Rafael Espindola29c82702015-04-20 12:44:06 +00001350 if (!Sym.isInSection())
1351 return false;
1352
1353 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1354 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001355}
1356
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001357MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001358 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001359 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001360 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001361}