blob: 3d1a16c904c9e0bb7edaef836186092cc318ac56 [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"
George Rimar167ca4a2017-01-17 15:45:07 +000035#include "llvm/Support/Error.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/Support/ErrorHandling.h"
Rafael Espindolafc063e82015-10-22 18:32:06 +000037#include "llvm/Support/StringSaver.h"
Matt Fleming6c1ad482010-08-16 18:57:57 +000038#include <vector>
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +000039
Matt Fleming6c1ad482010-08-16 18:57:57 +000040using namespace llvm;
41
Jason W Kimc09e7262011-05-11 22:53:06 +000042#undef DEBUG_TYPE
43#define DEBUG_TYPE "reloc-info"
44
Rafael Espindola29abd972011-12-22 03:38:00 +000045namespace {
Rafael Espindola10be0832014-03-25 23:44:25 +000046typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy;
47
Rafael Espindola91fd2772015-04-29 21:09:32 +000048class ELFObjectWriter;
49
Rafael Espindola10be0832014-03-25 23:44:25 +000050class SymbolTableWriter {
Rafael Espindola91fd2772015-04-29 21:09:32 +000051 ELFObjectWriter &EWriter;
Rafael Espindola10be0832014-03-25 23:44:25 +000052 bool Is64Bit;
Rafael Espindola10be0832014-03-25 23:44:25 +000053
Rafael Espindola91fd2772015-04-29 21:09:32 +000054 // indexes we are going to write to .symtab_shndx.
55 std::vector<uint32_t> ShndxIndexes;
Rafael Espindola10be0832014-03-25 23:44:25 +000056
57 // The numbel of symbols written so far.
58 unsigned NumWritten;
59
60 void createSymtabShndx();
61
Rafael Espindola91fd2772015-04-29 21:09:32 +000062 template <typename T> void write(T Value);
Rafael Espindola10be0832014-03-25 23:44:25 +000063
64public:
Rafael Espindola91fd2772015-04-29 21:09:32 +000065 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
Rafael Espindola10be0832014-03-25 23:44:25 +000066
67 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
68 uint8_t other, uint32_t shndx, bool Reserved);
Rafael Espindola91fd2772015-04-29 21:09:32 +000069
70 ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; }
Rafael Espindola10be0832014-03-25 23:44:25 +000071};
72
Rafael Espindola29abd972011-12-22 03:38:00 +000073class ELFObjectWriter : public MCObjectWriter {
David Blaikiea0fa2622016-04-12 21:45:53 +000074 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
George Rimarc91e38c2016-05-27 12:27:32 +0000139 bool maybeWriteCompression(uint64_t Size,
140 SmallVectorImpl<char> &CompressedContents,
141 bool ZLibStyle, unsigned Alignment);
142
David Blaikiea0fa2622016-04-12 21:45:53 +0000143public:
144 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS,
145 bool IsLittleEndian)
146 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW) {}
147
148 void reset() override {
149 Renames.clear();
150 Relocations.clear();
151 StrTabBuilder.clear();
152 SectionTable.clear();
153 MCObjectWriter::reset();
154 }
155
156 ~ELFObjectWriter() override;
157
158 void WriteWord(uint64_t W) {
159 if (is64Bit())
160 write64(W);
161 else
162 write32(W);
163 }
164
165 template <typename T> void write(T Val) {
166 if (IsLittleEndian)
167 support::endian::Writer<support::little>(getStream()).write(Val);
168 else
169 support::endian::Writer<support::big>(getStream()).write(Val);
170 }
171
172 void writeHeader(const MCAssembler &Asm);
173
174 void writeSymbol(SymbolTableWriter &Writer, uint32_t StringIndex,
175 ELFSymbolData &MSD, const MCAsmLayout &Layout);
176
177 // Start and end offset of each section
178 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>
179 SectionOffsetsTy;
180
181 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
182 const MCSymbolRefExpr *RefA,
183 const MCSymbol *Sym, uint64_t C,
184 unsigned Type) const;
185
186 void recordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
187 const MCFragment *Fragment, const MCFixup &Fixup,
188 MCValue Target, bool &IsPCRel,
189 uint64_t &FixedValue) override;
190
191 // Map from a signature symbol to the group section index
192 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy;
193
194 /// Compute the symbol table data
195 ///
196 /// \param Asm - The assembler.
197 /// \param SectionIndexMap - Maps a section to its index.
198 /// \param RevGroupMap - Maps a signature symbol to the group section.
199 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout,
200 const SectionIndexMapTy &SectionIndexMap,
201 const RevGroupMapTy &RevGroupMap,
202 SectionOffsetsTy &SectionOffsets);
203
204 MCSectionELF *createRelocationSection(MCContext &Ctx,
205 const MCSectionELF &Sec);
206
207 const MCSectionELF *createStringTable(MCContext &Ctx);
208
209 void executePostLayoutBinding(MCAssembler &Asm,
210 const MCAsmLayout &Layout) override;
211
212 void writeSectionHeader(const MCAsmLayout &Layout,
213 const SectionIndexMapTy &SectionIndexMap,
214 const SectionOffsetsTy &SectionOffsets);
215
216 void writeSectionData(const MCAssembler &Asm, MCSection &Sec,
217 const MCAsmLayout &Layout);
218
219 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
220 uint64_t Address, uint64_t Offset, uint64_t Size,
221 uint32_t Link, uint32_t Info, uint64_t Alignment,
222 uint64_t EntrySize);
223
224 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
225
226 bool isSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
227 const MCSymbol &SymA,
228 const MCFragment &FB, bool InSet,
229 bool IsPCRel) const override;
230
231 bool isWeak(const MCSymbol &Sym) const override;
232
233 void writeObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
234 void writeSection(const SectionIndexMapTy &SectionIndexMap,
235 uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size,
236 const MCSectionELF &Section);
237};
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000238} // end anonymous namespace
Rafael Espindola29abd972011-12-22 03:38:00 +0000239
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000240void ELFObjectWriter::align(unsigned Alignment) {
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000241 uint64_t Padding = OffsetToAlignment(getStream().tell(), Alignment);
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000242 WriteZeros(Padding);
243}
244
Rafael Espindola08850b32015-05-25 21:56:55 +0000245unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000246 SectionTable.push_back(Sec);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000247 StrTabBuilder.add(Sec->getSectionName());
Rafael Espindola03d7abb2015-04-30 20:53:27 +0000248 return SectionTable.size();
249}
250
Rafael Espindola10be0832014-03-25 23:44:25 +0000251void SymbolTableWriter::createSymtabShndx() {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000252 if (!ShndxIndexes.empty())
Rafael Espindola10be0832014-03-25 23:44:25 +0000253 return;
254
Rafael Espindola91fd2772015-04-29 21:09:32 +0000255 ShndxIndexes.resize(NumWritten);
Rafael Espindola10be0832014-03-25 23:44:25 +0000256}
257
Rafael Espindola91fd2772015-04-29 21:09:32 +0000258template <typename T> void SymbolTableWriter::write(T Value) {
259 EWriter.write(Value);
Rafael Espindola10be0832014-03-25 23:44:25 +0000260}
261
Rafael Espindola91fd2772015-04-29 21:09:32 +0000262SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
263 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
Rafael Espindola10be0832014-03-25 23:44:25 +0000264
265void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
266 uint64_t size, uint8_t other,
267 uint32_t shndx, bool Reserved) {
268 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
269
270 if (LargeIndex)
271 createSymtabShndx();
272
Rafael Espindola91fd2772015-04-29 21:09:32 +0000273 if (!ShndxIndexes.empty()) {
Rafael Espindola10be0832014-03-25 23:44:25 +0000274 if (LargeIndex)
Rafael Espindola91fd2772015-04-29 21:09:32 +0000275 ShndxIndexes.push_back(shndx);
Rafael Espindola10be0832014-03-25 23:44:25 +0000276 else
Rafael Espindola91fd2772015-04-29 21:09:32 +0000277 ShndxIndexes.push_back(0);
Rafael Espindola10be0832014-03-25 23:44:25 +0000278 }
279
280 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx;
281
Rafael Espindola10be0832014-03-25 23:44:25 +0000282 if (Is64Bit) {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000283 write(name); // st_name
284 write(info); // st_info
285 write(other); // st_other
286 write(Index); // st_shndx
287 write(value); // st_value
288 write(size); // st_size
Rafael Espindola10be0832014-03-25 23:44:25 +0000289 } else {
Rafael Espindola91fd2772015-04-29 21:09:32 +0000290 write(name); // st_name
291 write(uint32_t(value)); // st_value
292 write(uint32_t(size)); // st_size
293 write(info); // st_info
294 write(other); // st_other
295 write(Index); // st_shndx
Rafael Espindola10be0832014-03-25 23:44:25 +0000296 }
297
298 ++NumWritten;
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
Jim Grosbach36e60e92015-06-04 22:24:41 +0000314 writeBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000315
Jim Grosbach36e60e92015-06-04 22:24:41 +0000316 write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000317
318 // e_ident[EI_DATA]
Jim Grosbach36e60e92015-06-04 22:24:41 +0000319 write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000320
Jim Grosbach36e60e92015-06-04 22:24:41 +0000321 write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky3b727f52010-09-09 17:57:50 +0000322 // e_ident[EI_OSABI]
Jim Grosbach36e60e92015-06-04 22:24:41 +0000323 write8(TargetObjectWriter->getOSABI());
324 write8(0); // e_ident[EI_ABIVERSION]
Matt Fleming6c1ad482010-08-16 18:57:57 +0000325
326 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
327
Jim Grosbach36e60e92015-06-04 22:24:41 +0000328 write16(ELF::ET_REL); // e_type
Matt Fleming6c1ad482010-08-16 18:57:57 +0000329
Jim Grosbach36e60e92015-06-04 22:24:41 +0000330 write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming6c1ad482010-08-16 18:57:57 +0000331
Jim Grosbach36e60e92015-06-04 22:24:41 +0000332 write32(ELF::EV_CURRENT); // e_version
Matt Fleming6c1ad482010-08-16 18:57:57 +0000333 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
Jim Grosbach36e60e92015-06-04 22:24:41 +0000338 write32(Asm.getELFHeaderEFlags());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000339
340 // e_ehsize = ELF header size
Jim Grosbach36e60e92015-06-04 22:24:41 +0000341 write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming6c1ad482010-08-16 18:57:57 +0000342
Jim Grosbach36e60e92015-06-04 22:24:41 +0000343 write16(0); // e_phentsize = prog header entry size
344 write16(0); // e_phnum = # prog header entries = 0
Matt Fleming6c1ad482010-08-16 18:57:57 +0000345
346 // e_shentsize = Section header entry size
Jim Grosbach36e60e92015-06-04 22:24:41 +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
Jim Grosbach36e60e92015-06-04 22:24:41 +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);
Jim Grosbach36e60e92015-06-04 22:24:41 +0000354 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
Jim Grosbach56ed0bb2015-06-04 23:25:54 +0000372void ELFObjectWriter::executePostLayoutBinding(MCAssembler &Asm,
Rafael Espindola93e3cf02010-12-07 00:27:36 +0000373 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.
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000376 for (const MCSymbol &A : Asm.symbols()) {
377 const auto &Alias = cast<MCSymbolELF>(A);
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000378 // Not an alias.
Rafael Espindola6efaf112014-04-28 17:05:36 +0000379 if (!Alias.isVariable())
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000380 continue;
Rafael Espindola6efaf112014-04-28 17:05:36 +0000381 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
382 if (!Ref)
383 continue;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000384 const auto &Symbol = cast<MCSymbolELF>(Ref->getSymbol());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000385
Benjamin Kramer14807272010-10-27 19:53:52 +0000386 StringRef AliasName = Alias.getName();
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000387 size_t Pos = AliasName.find('@');
388 if (Pos == StringRef::npos)
389 continue;
390
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000391 // Aliases defined with .symvar copy the binding from the symbol they alias.
392 // This is the first place we are able to copy this information.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000393 Alias.setExternal(Symbol.isExternal());
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000394 Alias.setBinding(Symbol.getBinding());
Rafael Espindola6cd76e62010-10-28 18:33:03 +0000395
Benjamin Kramer14807272010-10-27 19:53:52 +0000396 StringRef Rest = AliasName.substr(Pos);
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000397 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
398 continue;
399
Rafael Espindola26496e62010-10-27 17:56:18 +0000400 // FIXME: produce a better error message.
401 if (Symbol.isUndefined() && Rest.startswith("@@") &&
402 !Rest.startswith("@@@"))
403 report_fatal_error("A @@ version cannot be undefined");
404
Benjamin Kramer14807272010-10-27 19:53:52 +0000405 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000406 }
407}
408
Roman Divacky5a1c5492014-01-07 20:17:03 +0000409static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
410 uint8_t Type = newType;
411
412 // Propagation rules:
413 // IFUNC > FUNC > OBJECT > NOTYPE
414 // TLS_OBJECT > OBJECT > NOTYPE
415 //
416 // dont let the new type degrade the old type
417 switch (origType) {
418 default:
419 break;
420 case ELF::STT_GNU_IFUNC:
421 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
422 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS)
423 Type = ELF::STT_GNU_IFUNC;
424 break;
425 case ELF::STT_FUNC:
426 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
427 Type == ELF::STT_TLS)
428 Type = ELF::STT_FUNC;
429 break;
430 case ELF::STT_OBJECT:
431 if (Type == ELF::STT_NOTYPE)
432 Type = ELF::STT_OBJECT;
433 break;
434 case ELF::STT_TLS:
435 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
436 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC)
437 Type = ELF::STT_TLS;
438 break;
439 }
440
441 return Type;
442}
443
Rafael Espindolae48421f2015-05-28 20:25:29 +0000444void ELFObjectWriter::writeSymbol(SymbolTableWriter &Writer,
445 uint32_t StringIndex, ELFSymbolData &MSD,
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +0000446 const MCAsmLayout &Layout) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000447 const auto &Symbol = cast<MCSymbolELF>(*MSD.Symbol);
Rafael Espindolaa8695762015-06-02 00:25:12 +0000448 const MCSymbolELF *Base =
449 cast_or_null<MCSymbolELF>(Layout.getBaseSymbol(Symbol));
Rafael Espindola85a84912014-03-26 00:16:43 +0000450
451 // This has to be in sync with when computeSymbolTable uses SHN_ABS or
452 // SHN_COMMON.
Rafael Espindola4d37b2a2015-05-29 21:45:01 +0000453 bool IsReserved = !Base || Symbol.isCommon();
Rafael Espindola3fe87a12010-10-31 00:16:26 +0000454
Jack Carter2f8d9d92013-02-19 21:57:35 +0000455 // Binding and Type share the same byte as upper and lower nibbles
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000456 uint8_t Binding = Symbol.getBinding();
457 uint8_t Type = Symbol.getType();
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000458 if (Base) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000459 Type = mergeTypeForSet(Type, Base->getType());
Rafael Espindolaa6e3a592014-03-23 03:33:20 +0000460 }
Rafael Espindolaf8794ff2015-06-04 00:47:43 +0000461 uint8_t Info = (Binding << 4) | Type;
Jack Carter2f8d9d92013-02-19 21:57:35 +0000462
Joerg Sonnenbergerfc184732013-10-29 01:06:17 +0000463 // Other and Visibility share the same byte with Visibility using the lower
Jack Carter2f8d9d92013-02-19 21:57:35 +0000464 // 2 bits
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000465 uint8_t Visibility = Symbol.getVisibility();
Rafael Espindola8c006ee2015-06-04 05:59:23 +0000466 uint8_t Other = Symbol.getOther() | Visibility;
Rafael Espindola5f2d6a52010-10-06 21:02:29 +0000467
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000468 uint64_t Value = SymbolValue(*MSD.Symbol, Layout);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000469 uint64_t Size = 0;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000470
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000471 const MCExpr *ESize = MSD.Symbol->getSize();
Rafael Espindolaa041ef12014-03-27 00:28:24 +0000472 if (!ESize && Base)
Rafael Espindola7c23cba2015-05-29 17:24:52 +0000473 ESize = Base->getSize();
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000474
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000475 if (ESize) {
476 int64_t Res;
Rafael Espindola94a88d72015-04-06 15:27:57 +0000477 if (!ESize->evaluateKnownAbsolute(Res, Layout))
Rafael Espindola73c0ae72010-12-22 16:03:00 +0000478 report_fatal_error("Size expression must be absolute.");
479 Size = Res;
Matt Fleming6c1ad482010-08-16 18:57:57 +0000480 }
481
482 // Write out the symbol table entry
Rafael Espindolae48421f2015-05-28 20:25:29 +0000483 Writer.writeSymbol(StringIndex, Info, Value, Size, Other, MSD.SectionIndex,
484 IsReserved);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000485}
486
Rafael Espindola5904e122014-03-29 06:26:49 +0000487// It is always valid to create a relocation with a symbol. It is preferable
488// to use a relocation with a section if that is possible. Using the section
489// allows us to omit some local symbols from the symbol table.
Rafael Espindolab60c8292014-04-29 12:46:50 +0000490bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm,
491 const MCSymbolRefExpr *RefA,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000492 const MCSymbol *S, uint64_t C,
Rafael Espindola5904e122014-03-29 06:26:49 +0000493 unsigned Type) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000494 const auto *Sym = cast_or_null<MCSymbolELF>(S);
Rafael Espindola5904e122014-03-29 06:26:49 +0000495 // A PCRel relocation to an absolute value has no symbol (or section). We
496 // represent that with a relocation to a null section.
497 if (!RefA)
498 return false;
Rafael Espindola240028d2010-11-14 23:53:26 +0000499
Rafael Espindola5904e122014-03-29 06:26:49 +0000500 MCSymbolRefExpr::VariantKind Kind = RefA->getKind();
501 switch (Kind) {
502 default:
503 break;
504 // The .odp creation emits a relocation against the symbol ".TOC." which
505 // create a R_PPC64_TOC relocation. However the relocation symbol name
506 // in final object creation should be NULL, since the symbol does not
507 // really exist, it is just the reference to TOC base for the current
508 // object file. Since the symbol is undefined, returning false results
509 // in a relocation with a null section which is the desired result.
510 case MCSymbolRefExpr::VK_PPC_TOCBASE:
511 return false;
512
513 // These VariantKind cause the relocation to refer to something other than
514 // the symbol itself, like a linker generated table. Since the address of
515 // symbol is not relevant, we cannot replace the symbol with the
516 // section and patch the difference in the addend.
517 case MCSymbolRefExpr::VK_GOT:
518 case MCSymbolRefExpr::VK_PLT:
519 case MCSymbolRefExpr::VK_GOTPCREL:
Rafael Espindola5904e122014-03-29 06:26:49 +0000520 case MCSymbolRefExpr::VK_PPC_GOT_LO:
521 case MCSymbolRefExpr::VK_PPC_GOT_HI:
522 case MCSymbolRefExpr::VK_PPC_GOT_HA:
523 return true;
Rafael Espindola240028d2010-11-14 23:53:26 +0000524 }
Rafael Espindola240028d2010-11-14 23:53:26 +0000525
Rafael Espindola5904e122014-03-29 06:26:49 +0000526 // An undefined symbol is not in any section, so the relocation has to point
527 // to the symbol itself.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000528 assert(Sym && "Expected a symbol");
529 if (Sym->isUndefined())
Rafael Espindola5904e122014-03-29 06:26:49 +0000530 return true;
531
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000532 unsigned Binding = Sym->getBinding();
Rafael Espindola5904e122014-03-29 06:26:49 +0000533 switch(Binding) {
534 default:
535 llvm_unreachable("Invalid Binding");
536 case ELF::STB_LOCAL:
537 break;
538 case ELF::STB_WEAK:
539 // If the symbol is weak, it might be overridden by a symbol in another
540 // file. The relocation has to point to the symbol so that the linker
541 // can update it.
542 return true;
543 case ELF::STB_GLOBAL:
544 // Global ELF symbols can be preempted by the dynamic linker. The relocation
545 // has to point to the symbol for a reason analogous to the STB_WEAK case.
546 return true;
Rafael Espindola8c3039b2010-11-15 16:33:49 +0000547 }
Rafael Espindola75d65b92010-09-25 05:42:19 +0000548
Rafael Espindola5904e122014-03-29 06:26:49 +0000549 // If a relocation points to a mergeable section, we have to be careful.
550 // If the offset is zero, a relocation with the section will encode the
551 // same information. With a non-zero offset, the situation is different.
552 // For example, a relocation can point 42 bytes past the end of a string.
553 // If we change such a relocation to use the section, the linker would think
554 // that it pointed to another string and subtracting 42 at runtime will
555 // produce the wrong value.
Saleem Abdulrasool9b106ea2016-11-22 04:32:54 +0000556 if (Sym->isInSection()) {
557 auto &Sec = cast<MCSectionELF>(Sym->getSection());
558 unsigned Flags = Sec.getFlags();
559 if (Flags & ELF::SHF_MERGE) {
560 if (C != 0)
561 return true;
Rafael Espindolab1b49782014-04-02 12:15:20 +0000562
Saleem Abdulrasool9b106ea2016-11-22 04:32:54 +0000563 // It looks like gold has a bug (http://sourceware.org/PR16794) and can
564 // only handle section relocations to mergeable sections if using RELA.
565 if (!hasRelocationAddend())
566 return true;
567 }
568
569 // Most TLS relocations use a got, so they need the symbol. Even those that
570 // are just an offset (@tpoff), require a symbol in gold versions before
571 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed
572 // http://sourceware.org/PR16773.
573 if (Flags & ELF::SHF_TLS)
Rafael Espindolab1b49782014-04-02 12:15:20 +0000574 return true;
Rafael Espindola9f75d5d2010-11-24 21:57:39 +0000575 }
576
Rafael Espindola9ef84412014-04-11 19:18:01 +0000577 // If the symbol is a thumb function the final relocation must set the lowest
578 // bit. With a symbol that is done by just having the symbol have that bit
579 // set, so we would lose the bit if we relocated with the section.
580 // FIXME: We could use the section but add the bit to the relocation value.
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000581 if (Asm.isThumbFunc(Sym))
Rafael Espindola9ef84412014-04-11 19:18:01 +0000582 return true;
583
Rafael Espindolaece40ca2015-05-29 18:26:09 +0000584 if (TargetObjectWriter->needsRelocateWithSymbol(*Sym, Type))
Rafael Espindola5904e122014-03-29 06:26:49 +0000585 return true;
586 return false;
Rafael Espindola75d65b92010-09-25 05:42:19 +0000587}
588
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000589// True if the assembler knows nothing about the final value of the symbol.
590// This doesn't cover the comdat issues, since in those cases the assembler
591// can at least know that all symbols in the section will move together.
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000592static bool isWeak(const MCSymbolELF &Sym) {
593 if (Sym.getType() == ELF::STT_GNU_IFUNC)
Rafael Espindolaa635d832015-04-17 08:46:11 +0000594 return true;
595
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000596 switch (Sym.getBinding()) {
Rafael Espindolaa635d832015-04-17 08:46:11 +0000597 default:
598 llvm_unreachable("Unknown binding");
599 case ELF::STB_LOCAL:
600 return false;
601 case ELF::STB_GLOBAL:
Rafael Espindoladb8a5862015-04-17 20:05:17 +0000602 return false;
Rafael Espindolaa635d832015-04-17 08:46:11 +0000603 case ELF::STB_WEAK:
604 case ELF::STB_GNU_UNIQUE:
605 return true;
606 }
Rafael Espindolac9e70682015-03-24 23:48:44 +0000607}
608
Jim Grosbach36e60e92015-06-04 22:24:41 +0000609void ELFObjectWriter::recordRelocation(MCAssembler &Asm,
Jason W Kim495c2bb2010-12-06 21:57:34 +0000610 const MCAsmLayout &Layout,
611 const MCFragment *Fragment,
Rafael Espindola26585542015-01-19 21:11:14 +0000612 const MCFixup &Fixup, MCValue Target,
613 bool &IsPCRel, uint64_t &FixedValue) {
Rafael Espindola7549f872015-05-26 00:36:57 +0000614 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent());
Rafael Espindola5904e122014-03-29 06:26:49 +0000615 uint64_t C = Target.getConstant();
616 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000617 MCContext &Ctx = Asm.getContext();
Jason W Kim495c2bb2010-12-06 21:57:34 +0000618
Rafael Espindola5904e122014-03-29 06:26:49 +0000619 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
620 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
621 "Should not have constructed this");
Jason W Kim495c2bb2010-12-06 21:57:34 +0000622
Rafael Espindola5904e122014-03-29 06:26:49 +0000623 // Let A, B and C being the components of Target and R be the location of
624 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
625 // If it is pcrel, we want to compute (A - B + C - R).
Jason W Kim495c2bb2010-12-06 21:57:34 +0000626
Rafael Espindola5904e122014-03-29 06:26:49 +0000627 // In general, ELF has no relocations for -B. It can only represent (A + C)
628 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
629 // replace B to implement it: (A - R - K + C)
Oliver Stannard9be59af2015-11-17 10:00:43 +0000630 if (IsPCRel) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000631 Ctx.reportError(
Rafael Espindola5904e122014-03-29 06:26:49 +0000632 Fixup.getLoc(),
633 "No relocation available to represent this relative expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000634 return;
635 }
David Majnemera45a1762014-01-06 07:39:46 +0000636
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000637 const auto &SymB = cast<MCSymbolELF>(RefB->getSymbol());
Jason W Kim495c2bb2010-12-06 21:57:34 +0000638
Oliver Stannard9be59af2015-11-17 10:00:43 +0000639 if (SymB.isUndefined()) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000640 Ctx.reportError(Fixup.getLoc(),
641 Twine("symbol '") + SymB.getName() +
642 "' can not be undefined in a subtraction expression");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000643 return;
644 }
Jason W Kim495c2bb2010-12-06 21:57:34 +0000645
Rafael Espindola5904e122014-03-29 06:26:49 +0000646 assert(!SymB.isAbsolute() && "Should have been folded");
647 const MCSection &SecB = SymB.getSection();
Oliver Stannard9be59af2015-11-17 10:00:43 +0000648 if (&SecB != &FixupSection) {
Rafael Espindola00ebfd42016-01-13 22:23:36 +0000649 Ctx.reportError(Fixup.getLoc(),
650 "Cannot represent a difference across sections");
Oliver Stannard9be59af2015-11-17 10:00:43 +0000651 return;
652 }
Jason W Kim495c2bb2010-12-06 21:57:34 +0000653
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000654 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
Rafael Espindola5904e122014-03-29 06:26:49 +0000655 uint64_t K = SymBOffset - FixupOffset;
656 IsPCRel = true;
657 C -= K;
Jason W Kim495c2bb2010-12-06 21:57:34 +0000658 }
659
Rafael Espindola5904e122014-03-29 06:26:49 +0000660 // We either rejected the fixup or folded B into C at this point.
661 const MCSymbolRefExpr *RefA = Target.getSymA();
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000662 const auto *SymA = RefA ? cast<MCSymbolELF>(&RefA->getSymbol()) : nullptr;
Rafael Espindola5904e122014-03-29 06:26:49 +0000663
Rafael Espindola212fdde2015-06-03 21:52:06 +0000664 bool ViaWeakRef = false;
665 if (SymA && SymA->isVariable()) {
666 const MCExpr *Expr = SymA->getVariableValue();
667 if (const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr)) {
668 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF) {
669 SymA = cast<MCSymbolELF>(&Inner->getSymbol());
670 ViaWeakRef = true;
671 }
672 }
673 }
674
Rafael Espindola8340f942016-01-13 22:56:57 +0000675 unsigned Type = getRelocType(Ctx, Target, Fixup, IsPCRel);
Daniel Sandersa463d312016-05-06 13:49:25 +0000676 uint64_t OriginalC = C;
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000677 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymA, C, Type);
Rafael Espindola5904e122014-03-29 06:26:49 +0000678 if (!RelocateWithSymbol && SymA && !SymA->isUndefined())
Duncan P. N. Exon Smith2a404832015-05-19 23:53:20 +0000679 C += Layout.getSymbolOffset(*SymA);
Rafael Espindola5904e122014-03-29 06:26:49 +0000680
681 uint64_t Addend = 0;
682 if (hasRelocationAddend()) {
683 Addend = C;
684 C = 0;
685 }
686
687 FixedValue = C;
688
Rafael Espindola5904e122014-03-29 06:26:49 +0000689 if (!RelocateWithSymbol) {
690 const MCSection *SecA =
691 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
Rafael Espindolab6613022014-10-17 01:48:58 +0000692 auto *ELFSec = cast_or_null<MCSectionELF>(SecA);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000693 const auto *SectionSymbol =
694 ELFSec ? cast<MCSymbolELF>(ELFSec->getBeginSymbol()) : nullptr;
Rafael Espindolaa401eee2015-06-04 15:33:30 +0000695 if (SectionSymbol)
696 SectionSymbol->setUsedInReloc();
Daniel Sandersa463d312016-05-06 13:49:25 +0000697 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend, SymA,
698 OriginalC);
Rafael Espindola34948e52015-04-30 00:45:46 +0000699 Relocations[&FixupSection].push_back(Rec);
Rafael Espindola5904e122014-03-29 06:26:49 +0000700 return;
701 }
Roman Divackydfbecd12011-08-04 19:08:19 +0000702
Daniel Sandersa463d312016-05-06 13:49:25 +0000703 const auto *RenamedSymA = SymA;
Rafael Espindola5904e122014-03-29 06:26:49 +0000704 if (SymA) {
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000705 if (const MCSymbolELF *R = Renames.lookup(SymA))
Daniel Sandersa463d312016-05-06 13:49:25 +0000706 RenamedSymA = R;
Rafael Espindolad7facaf2011-08-04 13:05:26 +0000707
Rafael Espindola212fdde2015-06-03 21:52:06 +0000708 if (ViaWeakRef)
Daniel Sandersa463d312016-05-06 13:49:25 +0000709 RenamedSymA->setIsWeakrefUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000710 else
Daniel Sandersa463d312016-05-06 13:49:25 +0000711 RenamedSymA->setUsedInReloc();
Rafael Espindola5904e122014-03-29 06:26:49 +0000712 }
Daniel Sandersa463d312016-05-06 13:49:25 +0000713 ELFRelocationEntry Rec(FixupOffset, RenamedSymA, Type, Addend, SymA,
714 OriginalC);
Rafael Espindola34948e52015-04-30 00:45:46 +0000715 Relocations[&FixupSection].push_back(Rec);
Jason W Kim495c2bb2010-12-06 21:57:34 +0000716}
717
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000718bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout,
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000719 const MCSymbolELF &Symbol, bool Used,
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000720 bool Renamed) {
Rafael Espindola7fadc0e2014-03-20 02:12:01 +0000721 if (Symbol.isVariable()) {
722 const MCExpr *Expr = Symbol.getVariableValue();
723 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) {
724 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF)
725 return false;
726 }
727 }
Rafael Espindola16145972010-11-01 14:28:48 +0000728
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000729 if (Used)
730 return true;
731
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000732 if (Renamed)
733 return false;
734
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000735 if (Symbol.isVariable() && Symbol.isUndefined()) {
736 // FIXME: this is here just to diagnose the case of a var = commmon_sym.
737 Layout.getBaseSymbol(Symbol);
738 return false;
Rafael Espindola3b5ee552014-04-28 13:39:57 +0000739 }
Rafael Espindola9e18e962011-02-23 20:22:07 +0000740
Rafael Espindolaef1e8632015-06-03 21:23:21 +0000741 if (Symbol.isUndefined() && !Symbol.isBindingSet())
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000742 return false;
743
Rafael Espindolaee8d1512010-10-19 19:31:37 +0000744 if (Symbol.isTemporary())
Rafael Espindolab1d07892010-10-05 18:01:23 +0000745 return false;
746
Rafael Espindolaa401eee2015-06-04 15:33:30 +0000747 if (Symbol.getType() == ELF::STT_SECTION)
748 return false;
749
Rafael Espindolab1d07892010-10-05 18:01:23 +0000750 return true;
751}
752
Rafael Espindolaea1b3942015-04-07 19:00:17 +0000753void ELFObjectWriter::computeSymbolTable(
754 MCAssembler &Asm, const MCAsmLayout &Layout,
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000755 const SectionIndexMapTy &SectionIndexMap, const RevGroupMapTy &RevGroupMap,
756 SectionOffsetsTy &SectionOffsets) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000757 MCContext &Ctx = Asm.getContext();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000758 SymbolTableWriter Writer(*this, is64Bit());
759
Rafael Espindola5960cee2015-05-22 23:58:30 +0000760 // Symbol table
761 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
762 MCSectionELF *SymtabSection =
763 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, "");
764 SymtabSection->setAlignment(is64Bit() ? 8 : 4);
765 SymbolTableIndex = addToSectionTable(SymtabSection);
766
Rafael Espindolab20fbb82015-06-05 18:21:00 +0000767 align(SymtabSection->getAlignment());
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000768 uint64_t SecStart = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000769
770 // The first entry is the undefined symbol entry.
771 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false);
772
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000773 std::vector<ELFSymbolData> LocalSymbolData;
774 std::vector<ELFSymbolData> ExternalSymbolData;
Rafael Espindolacfbd35c2015-05-28 20:11:34 +0000775
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000776 // Add the data for the symbols.
Rafael Espindola5960cee2015-05-22 23:58:30 +0000777 bool HasLargeSectionIndex = false;
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000778 for (const MCSymbol &S : Asm.symbols()) {
779 const auto &Symbol = cast<MCSymbolELF>(S);
Rafael Espindolaada43f62015-06-03 21:30:10 +0000780 bool Used = Symbol.isUsedInReloc();
Rafael Espindola212fdde2015-06-03 21:52:06 +0000781 bool WeakrefUsed = Symbol.isWeakrefUsedInReloc();
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000782 bool isSignature = Symbol.isSignature();
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000783
Duncan P. N. Exon Smith469f9db2015-05-20 04:39:01 +0000784 if (!isInSymtab(Layout, Symbol, Used || WeakrefUsed || isSignature,
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000785 Renames.count(&Symbol)))
Matt Fleming6c1ad482010-08-16 18:57:57 +0000786 continue;
787
Oliver Stannard9be59af2015-11-17 10:00:43 +0000788 if (Symbol.isTemporary() && Symbol.isUndefined()) {
789 Ctx.reportError(SMLoc(), "Undefined temporary symbol");
790 continue;
791 }
Rafael Espindola6dff8142015-06-25 20:10:45 +0000792
Matt Fleming6c1ad482010-08-16 18:57:57 +0000793 ELFSymbolData MSD;
Rafael Espindolaa8695762015-06-02 00:25:12 +0000794 MSD.Symbol = cast<MCSymbolELF>(&Symbol);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000795
Rafael Espindola8c52a9b2015-06-03 21:41:59 +0000796 bool Local = Symbol.getBinding() == ELF::STB_LOCAL;
Rafael Espindola6dff8142015-06-25 20:10:45 +0000797 assert(Local || !Symbol.isTemporary());
798
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000799 if (Symbol.isAbsolute()) {
Rafael Espindola022bb762014-03-24 03:43:21 +0000800 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola14672502015-05-29 17:48:04 +0000801 } else if (Symbol.isCommon()) {
Rafael Espindolabee6e9f2010-10-14 16:34:44 +0000802 assert(!Local);
Rafael Espindolaf0591c12010-09-21 00:24:38 +0000803 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000804 } else if (Symbol.isUndefined()) {
Rafael Espindola5960cee2015-05-22 23:58:30 +0000805 if (isSignature && !Used) {
Rafael Espindola89feff32015-04-28 22:59:58 +0000806 MSD.SectionIndex = RevGroupMap.lookup(&Symbol);
Rafael Espindola5960cee2015-05-22 23:58:30 +0000807 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
808 HasLargeSectionIndex = true;
809 } else {
Rafael Espindola7d0ba342010-11-14 04:17:37 +0000810 MSD.SectionIndex = ELF::SHN_UNDEF;
Rafael Espindola5960cee2015-05-22 23:58:30 +0000811 }
Matt Fleming6c1ad482010-08-16 18:57:57 +0000812 } else {
Rafael Espindolad6340032010-11-10 21:51:05 +0000813 const MCSectionELF &Section =
Rafael Espindolaf4b44302015-05-29 15:07:27 +0000814 static_cast<const MCSectionELF &>(Symbol.getSection());
Rafael Espindolad6340032010-11-10 21:51:05 +0000815 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000816 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5960cee2015-05-22 23:58:30 +0000817 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
818 HasLargeSectionIndex = true;
Rafael Espindolafbcf0db2010-10-15 15:39:06 +0000819 }
820
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000821 // The @@@ in symbol version is replaced with @ in undefined symbols and @@
822 // in defined ones.
823 //
824 // FIXME: All name handling should be done before we get to the writer,
NAKAMURA Takumib01d86b2015-02-25 11:02:00 +0000825 // including dealing with GNU-style version suffixes. Fixing this isn't
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000826 // trivial.
827 //
828 // We thus have to be careful to not perform the symbol version replacement
829 // blindly:
830 //
831 // The ELF format is used on Windows by the MCJIT engine. Thus, on
832 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS
833 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC
834 // C++ name mangling can legally have "@@@" as a sub-string. In that case,
835 // the EFLObjectWriter should not interpret the "@@@" sub-string as
836 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore
837 // checks for the MSVC C++ name mangling prefix which is either "?", "@?",
838 // "__imp_?" or "__imp_@?".
839 //
840 // It would have been interesting to perform the MS mangling prefix check
841 // only when the target triple is of the form *-pc-windows-elf. But, it
842 // seems that this information is not easily accessible from the
843 // ELFObjectWriter.
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000844 StringRef Name = Symbol.getName();
Evgeniy Stepanov9e0d41a2015-06-22 23:36:03 +0000845 SmallString<32> Buf;
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000846 if (!Name.startswith("?") && !Name.startswith("@?") &&
847 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) {
848 // This symbol isn't following the MSVC C++ name mangling convention. We
849 // can thus safely interpret the @@@ in symbol names as specifying symbol
850 // versioning.
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000851 size_t Pos = Name.find("@@@");
852 if (Pos != StringRef::npos) {
853 Buf += Name.substr(0, Pos);
854 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
855 Buf += Name.substr(Pos + Skip);
Rafael Espindolafc063e82015-10-22 18:32:06 +0000856 Name = VersionSymSaver.save(Buf.c_str());
Rafael Espindola5a67ed12015-01-22 14:20:45 +0000857 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000858 }
Rafael Espindolab6613022014-10-17 01:48:58 +0000859
860 // Sections have their own string table
Rafael Espindolafc063e82015-10-22 18:32:06 +0000861 if (Symbol.getType() != ELF::STT_SECTION) {
862 MSD.Name = Name;
863 StrTabBuilder.add(Name);
864 }
Rafael Espindolaeb0c2c12010-10-27 15:18:17 +0000865
Rafael Espindola10d23872015-05-29 14:20:40 +0000866 if (Local)
Rafael Espindolaa5efd6a2010-10-27 14:44:52 +0000867 LocalSymbolData.push_back(MSD);
868 else
869 ExternalSymbolData.push_back(MSD);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000870 }
871
Rafael Espindola2cd19512015-07-02 16:59:57 +0000872 // This holds the .symtab_shndx section index.
873 unsigned SymtabShndxSectionIndex = 0;
874
Rafael Espindola5960cee2015-05-22 23:58:30 +0000875 if (HasLargeSectionIndex) {
876 MCSectionELF *SymtabShndxSection =
877 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, "");
878 SymtabShndxSectionIndex = addToSectionTable(SymtabShndxSection);
879 SymtabShndxSection->setAlignment(4);
880 }
881
Rafael Espindola1fd36272015-05-28 19:29:15 +0000882 ArrayRef<std::string> FileNames = Asm.getFileNames();
883 for (const std::string &Name : FileNames)
Rafael Espindola66f3c9c2015-05-28 18:03:20 +0000884 StrTabBuilder.add(Name);
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000885
Rafael Espindola21956e42015-10-23 21:48:05 +0000886 StrTabBuilder.finalize();
Hans Wennborg83e6e1e2014-04-30 16:25:02 +0000887
Rafael Espindola0cbea292015-05-28 20:00:13 +0000888 for (const std::string &Name : FileNames)
889 Writer.writeSymbol(StrTabBuilder.getOffset(Name),
890 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
891 ELF::SHN_ABS, true);
892
Matt Fleming6c1ad482010-08-16 18:57:57 +0000893 // Symbols are required to be in lexicographic order.
894 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
895 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
Matt Fleming6c1ad482010-08-16 18:57:57 +0000896
897 // Set the symbol indices. Local symbols must come before all other
898 // symbols with non-local bindings.
Rafael Espindola1fd36272015-05-28 19:29:15 +0000899 unsigned Index = FileNames.size() + 1;
Rafael Espindola0e3decf2010-11-14 03:12:24 +0000900
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000901 for (ELFSymbolData &MSD : LocalSymbolData) {
Daniel Jasper41de8022015-06-23 11:31:32 +0000902 unsigned StringIndex = MSD.Symbol->getType() == ELF::STT_SECTION
903 ? 0
904 : StrTabBuilder.getOffset(MSD.Name);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000905 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000906 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000907 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000908
909 // Write the symbol table entries.
Rafael Espindola0cbea292015-05-28 20:00:13 +0000910 LastLocalSymbolIndex = Index;
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000911
Rafael Espindoladcda9972015-05-28 19:43:20 +0000912 for (ELFSymbolData &MSD : ExternalSymbolData) {
Rafael Espindolae48421f2015-05-28 20:25:29 +0000913 unsigned StringIndex = StrTabBuilder.getOffset(MSD.Name);
Rafael Espindola0cbea292015-05-28 20:00:13 +0000914 MSD.Symbol->setIndex(Index++);
Rafael Espindolae48421f2015-05-28 20:25:29 +0000915 writeSymbol(Writer, StringIndex, MSD, Layout);
Rafael Espindola95fb9b92015-06-02 20:38:46 +0000916 assert(MSD.Symbol->getBinding() != ELF::STB_LOCAL);
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000917 }
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000918
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000919 uint64_t SecEnd = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000920 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd);
921
922 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes();
923 if (ShndxIndexes.empty()) {
924 assert(SymtabShndxSectionIndex == 0);
925 return;
926 }
927 assert(SymtabShndxSectionIndex != 0);
928
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000929 SecStart = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000930 const MCSectionELF *SymtabShndxSection =
931 SectionTable[SymtabShndxSectionIndex - 1];
932 for (uint32_t Index : ShndxIndexes)
933 write(Index);
David Majnemerabdb2d2a2015-09-01 16:19:03 +0000934 SecEnd = getStream().tell();
Rafael Espindolaaa486e92015-05-28 17:54:01 +0000935 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000936}
937
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000938MCSectionELF *
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000939ELFObjectWriter::createRelocationSection(MCContext &Ctx,
Rafael Espindolabda19802015-04-30 14:21:49 +0000940 const MCSectionELF &Sec) {
Rafael Espindola34948e52015-04-30 00:45:46 +0000941 if (Relocations[&Sec].empty())
Rafael Espindolabda19802015-04-30 14:21:49 +0000942 return nullptr;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000943
Rafael Espindola34948e52015-04-30 00:45:46 +0000944 const StringRef SectionName = Sec.getSectionName();
Rafael Espindolaead85492015-02-17 20:31:13 +0000945 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
946 RelaSectionName += SectionName;
Benjamin Kramerfd054152010-08-17 17:56:13 +0000947
Rafael Espindolaead85492015-02-17 20:31:13 +0000948 unsigned EntrySize;
949 if (hasRelocationAddend())
950 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
951 else
952 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming6c1ad482010-08-16 18:57:57 +0000953
Rafael Espindolaead85492015-02-17 20:31:13 +0000954 unsigned Flags = 0;
Rafael Espindola34948e52015-04-30 00:45:46 +0000955 if (Sec.getFlags() & ELF::SHF_GROUP)
Rafael Espindolaead85492015-02-17 20:31:13 +0000956 Flags = ELF::SHF_GROUP;
Rafael Espindolaead85492015-02-17 20:31:13 +0000957
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000958 MCSectionELF *RelaSection = Ctx.createELFRelSection(
Rafael Espindolaead85492015-02-17 20:31:13 +0000959 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
Rafael Espindola34948e52015-04-30 00:45:46 +0000960 Flags, EntrySize, Sec.getGroup(), &Sec);
Rafael Espindola0a82ad72015-05-21 20:43:13 +0000961 RelaSection->setAlignment(is64Bit() ? 8 : 4);
Rafael Espindolabda19802015-04-30 14:21:49 +0000962 return RelaSection;
Rafael Espindola1557fd62011-03-20 18:44:20 +0000963}
Matt Fleming6c1ad482010-08-16 18:57:57 +0000964
George Rimarc91e38c2016-05-27 12:27:32 +0000965// Include the debug info compression header.
966bool ELFObjectWriter::maybeWriteCompression(
967 uint64_t Size, SmallVectorImpl<char> &CompressedContents, bool ZLibStyle,
968 unsigned Alignment) {
969 if (ZLibStyle) {
970 uint64_t HdrSize =
971 is64Bit() ? sizeof(ELF::Elf32_Chdr) : sizeof(ELF::Elf64_Chdr);
972 if (Size <= HdrSize + CompressedContents.size())
973 return false;
974 // Platform specific header is followed by compressed data.
975 if (is64Bit()) {
976 // Write Elf64_Chdr header.
977 write(static_cast<ELF::Elf64_Word>(ELF::ELFCOMPRESS_ZLIB));
978 write(static_cast<ELF::Elf64_Word>(0)); // ch_reserved field.
979 write(static_cast<ELF::Elf64_Xword>(Size));
980 write(static_cast<ELF::Elf64_Xword>(Alignment));
981 } else {
982 // Write Elf32_Chdr header otherwise.
983 write(static_cast<ELF::Elf32_Word>(ELF::ELFCOMPRESS_ZLIB));
984 write(static_cast<ELF::Elf32_Word>(Size));
985 write(static_cast<ELF::Elf32_Word>(Alignment));
986 }
987 return true;
988 }
989
990 // "ZLIB" followed by 8 bytes representing the uncompressed size of the section,
991 // useful for consumers to preallocate a buffer to decompress into.
Richard Smithb910e562016-05-25 00:14:12 +0000992 const StringRef Magic = "ZLIB";
993 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size())
994 return false;
George Rimarc91e38c2016-05-27 12:27:32 +0000995 write(ArrayRef<char>(Magic.begin(), Magic.size()));
996 writeBE64(Size);
Richard Smithb910e562016-05-25 00:14:12 +0000997 return true;
998}
999
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001000void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, MCSection &Sec,
Rafael Espindola868b3f42015-04-30 21:51:58 +00001001 const MCAsmLayout &Layout) {
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001002 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001003 StringRef SectionName = Section.getSectionName();
David Blaikie8019bf82014-04-10 21:53:53 +00001004
Rafael Espindola868b3f42015-04-30 21:51:58 +00001005 // Compressing debug_frame requires handling alignment fragments which is
1006 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow
1007 // for writing to arbitrary buffers) for little benefit.
George Rimarc91e38c2016-05-27 12:27:32 +00001008 bool CompressionEnabled =
1009 Asm.getContext().getAsmInfo()->compressDebugSections() !=
1010 DebugCompressionType::DCT_None;
1011 if (!CompressionEnabled || !SectionName.startswith(".debug_") ||
1012 SectionName == ".debug_frame") {
Rafael Espindola64acc7f2015-05-26 02:17:21 +00001013 Asm.writeSectionData(&Section, Layout);
Rafael Espindola868b3f42015-04-30 21:51:58 +00001014 return;
1015 }
1016
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001017 SmallVector<char, 128> UncompressedData;
1018 raw_svector_ostream VecOS(UncompressedData);
1019 raw_pwrite_stream &OldStream = getStream();
1020 setStream(VecOS);
1021 Asm.writeSectionData(&Section, Layout);
1022 setStream(OldStream);
David Blaikie8019bf82014-04-10 21:53:53 +00001023
Rafael Espindola868b3f42015-04-30 21:51:58 +00001024 SmallVector<char, 128> CompressedContents;
George Rimar167ca4a2017-01-17 15:45:07 +00001025 if (Error E = zlib::compress(
1026 StringRef(UncompressedData.data(), UncompressedData.size()),
1027 CompressedContents)) {
1028 consumeError(std::move(E));
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001029 getStream() << UncompressedData;
David Blaikie8019bf82014-04-10 21:53:53 +00001030 return;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001031 }
David Blaikie8019bf82014-04-10 21:53:53 +00001032
George Rimarc91e38c2016-05-27 12:27:32 +00001033 bool ZlibStyle = Asm.getContext().getAsmInfo()->compressDebugSections() ==
1034 DebugCompressionType::DCT_Zlib;
1035 if (!maybeWriteCompression(UncompressedData.size(), CompressedContents,
1036 ZlibStyle, Sec.getAlignment())) {
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001037 getStream() << UncompressedData;
Rafael Espindola868b3f42015-04-30 21:51:58 +00001038 return;
1039 }
George Rimarc91e38c2016-05-27 12:27:32 +00001040
1041 if (ZlibStyle)
1042 // Set the compressed flag. That is zlib style.
1043 Section.setFlags(Section.getFlags() | ELF::SHF_COMPRESSED);
1044 else
1045 // Add "z" prefix to section name. This is zlib-gnu style.
1046 Asm.getContext().renameELFSection(&Section,
1047 (".z" + SectionName.drop_front(1)).str());
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001048 getStream() << CompressedContents;
David Blaikie8019bf82014-04-10 21:53:53 +00001049}
1050
Daniel Dunbarfe0c28f2010-11-13 07:33:40 +00001051void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
1052 uint64_t Flags, uint64_t Address,
1053 uint64_t Offset, uint64_t Size,
1054 uint32_t Link, uint32_t Info,
1055 uint64_t Alignment,
1056 uint64_t EntrySize) {
Jim Grosbach36e60e92015-06-04 22:24:41 +00001057 write32(Name); // sh_name: index into string table
1058 write32(Type); // sh_type
Matt Fleming6c1ad482010-08-16 18:57:57 +00001059 WriteWord(Flags); // sh_flags
1060 WriteWord(Address); // sh_addr
1061 WriteWord(Offset); // sh_offset
1062 WriteWord(Size); // sh_size
Jim Grosbach36e60e92015-06-04 22:24:41 +00001063 write32(Link); // sh_link
1064 write32(Info); // sh_info
Matt Fleming6c1ad482010-08-16 18:57:57 +00001065 WriteWord(Alignment); // sh_addralign
1066 WriteWord(EntrySize); // sh_entsize
1067}
1068
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001069void ELFObjectWriter::writeRelocations(const MCAssembler &Asm,
Rafael Espindola34948e52015-04-30 00:45:46 +00001070 const MCSectionELF &Sec) {
1071 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec];
Akira Hatanaka64ad2cf2012-03-23 23:06:45 +00001072
Rafael Espindolaf44db242015-12-17 16:22:06 +00001073 // We record relocations by pushing to the end of a vector. Reverse the vector
1074 // to get the relocations in the order they were created.
1075 // In most cases that is not important, but it can be for special sections
1076 // (.eh_frame) or specific relocations (TLS optimizations on SystemZ).
1077 std::reverse(Relocs.begin(), Relocs.end());
Rafael Espindolad0e16522015-12-17 15:08:24 +00001078
Rafael Espindolaf44db242015-12-17 16:22:06 +00001079 // Sort the relocation entries. MIPS needs this.
Petar Jovanovic0380d0b2015-04-14 13:23:34 +00001080 TargetObjectWriter->sortRelocs(Asm, Relocs);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001081
1082 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindola5904e122014-03-29 06:26:49 +00001083 const ELFRelocationEntry &Entry = Relocs[e - i - 1];
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001084 unsigned Index = Entry.Symbol ? Entry.Symbol->getIndex() : 0;
Rafael Espindola5904e122014-03-29 06:26:49 +00001085
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001086 if (is64Bit()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001087 write(Entry.Offset);
Jack Carter8ad0c272012-06-27 22:28:30 +00001088 if (TargetObjectWriter->isN64()) {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001089 write(uint32_t(Index));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001090
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001091 write(TargetObjectWriter->getRSsym(Entry.Type));
1092 write(TargetObjectWriter->getRType3(Entry.Type));
1093 write(TargetObjectWriter->getRType2(Entry.Type));
1094 write(TargetObjectWriter->getRType(Entry.Type));
Rafael Espindola5904e122014-03-29 06:26:49 +00001095 } else {
Jack Carter8ad0c272012-06-27 22:28:30 +00001096 struct ELF::Elf64_Rela ERE64;
Rafael Espindola5904e122014-03-29 06:26:49 +00001097 ERE64.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001098 write(ERE64.r_info);
Jack Carter8ad0c272012-06-27 22:28:30 +00001099 }
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001100 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001101 write(Entry.Addend);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001102 } else {
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001103 write(uint32_t(Entry.Offset));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001104
Rafael Espindolabce26a12010-10-05 15:11:03 +00001105 struct ELF::Elf32_Rela ERE32;
Rafael Espindola5904e122014-03-29 06:26:49 +00001106 ERE32.setSymbolAndType(Index, Entry.Type);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001107 write(ERE32.r_info);
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001108
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001109 if (hasRelocationAddend())
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001110 write(uint32_t(Entry.Addend));
Benjamin Kramer6c3c3492010-09-09 18:01:29 +00001111 }
Matt Fleming6c1ad482010-08-16 18:57:57 +00001112 }
1113}
1114
Rafael Espindolab1863912015-04-30 21:10:06 +00001115const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) {
Rafael Espindola08850b32015-05-25 21:56:55 +00001116 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1];
Rafael Espindola39751af2016-10-04 22:43:25 +00001117 StrTabBuilder.write(getStream());
Rafael Espindolabda19802015-04-30 14:21:49 +00001118 return StrtabSection;
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001119}
1120
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001121void ELFObjectWriter::writeSection(const SectionIndexMapTy &SectionIndexMap,
1122 uint32_t GroupSymbolIndex, uint64_t Offset,
1123 uint64_t Size, const MCSectionELF &Section) {
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001124 uint64_t sh_link = 0;
1125 uint64_t sh_info = 0;
1126
1127 switch(Section.getType()) {
Rafael Espindola86fe2fe2015-04-06 03:16:51 +00001128 default:
1129 // Nothing to do.
1130 break;
1131
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001132 case ELF::SHT_DYNAMIC:
Rafael Espindola74ef4802015-04-30 21:20:06 +00001133 llvm_unreachable("SHT_DYNAMIC in a relocatable object");
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001134
1135 case ELF::SHT_REL:
1136 case ELF::SHT_RELA: {
Rafael Espindola3a7c0eb2015-02-17 20:37:50 +00001137 sh_link = SymbolTableIndex;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001138 assert(sh_link && ".symtab not found");
Rafael Espindolab73b70e2015-04-06 03:09:30 +00001139 const MCSectionELF *InfoSection = Section.getAssociatedSection();
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001140 sh_info = SectionIndexMap.lookup(InfoSection);
1141 break;
1142 }
1143
1144 case ELF::SHT_SYMTAB:
1145 case ELF::SHT_DYNSYM:
1146 sh_link = StringTableIndex;
1147 sh_info = LastLocalSymbolIndex;
1148 break;
1149
1150 case ELF::SHT_SYMTAB_SHNDX:
1151 sh_link = SymbolTableIndex;
1152 break;
1153
Nick Lewyckyc6ac5f72011-10-07 23:28:32 +00001154 case ELF::SHT_GROUP:
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001155 sh_link = SymbolTableIndex;
1156 sh_info = GroupSymbolIndex;
1157 break;
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001158 }
1159
Rafael Espindoladc1c3012017-02-09 14:59:20 +00001160 if (Section.getFlags() & ELF::SHF_LINK_ORDER)
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001161 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection());
Logan Chien4b724422013-02-05 14:18:59 +00001162
Rafael Espindola5960cee2015-05-22 23:58:30 +00001163 WriteSecHdrEntry(StrTabBuilder.getOffset(Section.getSectionName()),
Rafael Espindola28687582015-05-21 19:36:43 +00001164 Section.getType(), Section.getFlags(), 0, Offset, Size,
1165 sh_link, sh_info, Section.getAlignment(),
1166 Section.getEntrySize());
Rafael Espindola5a8d7812010-11-10 23:36:59 +00001167}
1168
Rafael Espindola7fe7e052015-02-17 20:40:59 +00001169void ELFObjectWriter::writeSectionHeader(
Rafael Espindola57c80832015-06-04 20:55:49 +00001170 const MCAsmLayout &Layout, const SectionIndexMapTy &SectionIndexMap,
Rafael Espindolaa8201692015-04-28 15:26:21 +00001171 const SectionOffsetsTy &SectionOffsets) {
Rafael Espindolab1863912015-04-30 21:10:06 +00001172 const unsigned NumSections = SectionTable.size();
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001173
Matt Fleming6c1ad482010-08-16 18:57:57 +00001174 // Null section first.
Rafael Espindola3fe87a12010-10-31 00:16:26 +00001175 uint64_t FirstSectionSize =
Rafael Espindolabf0db6c2015-04-15 13:07:47 +00001176 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0;
Rafael Espindola88d1f632015-04-29 20:25:24 +00001177 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001178
Rafael Espindola08850b32015-05-25 21:56:55 +00001179 for (const MCSectionELF *Section : SectionTable) {
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001180 uint32_t GroupSymbolIndex;
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001181 unsigned Type = Section->getType();
1182 if (Type != ELF::SHT_GROUP)
Rafael Espindolaa3e9a222010-11-11 18:13:52 +00001183 GroupSymbolIndex = 0;
1184 else
Rafael Espindola5e9ed902015-05-28 20:53:09 +00001185 GroupSymbolIndex = Section->getGroup()->getIndex();
Matt Fleming6c1ad482010-08-16 18:57:57 +00001186
Rafael Espindolabda19802015-04-30 14:21:49 +00001187 const std::pair<uint64_t, uint64_t> &Offsets =
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001188 SectionOffsets.find(Section)->second;
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001189 uint64_t Size;
Rafael Espindola5a1e80b2015-05-26 02:00:36 +00001190 if (Type == ELF::SHT_NOBITS)
1191 Size = Layout.getSectionAddressSize(Section);
1192 else
Rafael Espindola1aa20fc2015-05-21 19:46:39 +00001193 Size = Offsets.second - Offsets.first;
Rafael Espindola60ebca92010-12-02 03:09:06 +00001194
Rafael Espindolae92c1bf2015-05-21 19:42:35 +00001195 writeSection(SectionIndexMap, GroupSymbolIndex, Offsets.first, Size,
Rafael Espindola28687582015-05-21 19:36:43 +00001196 *Section);
Matt Fleming6c1ad482010-08-16 18:57:57 +00001197 }
1198}
1199
Jim Grosbach36e60e92015-06-04 22:24:41 +00001200void ELFObjectWriter::writeObject(MCAssembler &Asm,
Rafael Espindola1557fd62011-03-20 18:44:20 +00001201 const MCAsmLayout &Layout) {
Rafael Espindolabda19802015-04-30 14:21:49 +00001202 MCContext &Ctx = Asm.getContext();
Rafael Espindola5960cee2015-05-22 23:58:30 +00001203 MCSectionELF *StrtabSection =
1204 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0);
1205 StringTableIndex = addToSectionTable(StrtabSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001206
Rafael Espindola1557fd62011-03-20 18:44:20 +00001207 RevGroupMapTy RevGroupMap;
1208 SectionIndexMapTy SectionIndexMap;
1209
Rafael Espindolabda19802015-04-30 14:21:49 +00001210 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers;
Rafael Espindola1557fd62011-03-20 18:44:20 +00001211
Rafael Espindola1557fd62011-03-20 18:44:20 +00001212 // Write out the ELF header ...
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001213 writeHeader(Asm);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001214
Rafael Espindola7230f802015-04-08 11:41:24 +00001215 // ... then the sections ...
Rafael Espindolabda19802015-04-30 14:21:49 +00001216 SectionOffsetsTy SectionOffsets;
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001217 std::vector<MCSectionELF *> Groups;
1218 std::vector<MCSectionELF *> Relocations;
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001219 for (MCSection &Sec : Asm) {
1220 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec);
Rafael Espindolabda19802015-04-30 14:21:49 +00001221
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001222 align(Section.getAlignment());
Rafael Espindola1557fd62011-03-20 18:44:20 +00001223
Rafael Espindola642a2212015-04-14 22:54:16 +00001224 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001225 uint64_t SecStart = getStream().tell();
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001226
Rafael Espindola0ccf9b72015-06-02 21:30:13 +00001227 const MCSymbolELF *SignatureSymbol = Section.getGroup();
Rafael Espindolae15b1b72015-05-27 13:30:50 +00001228 writeSectionData(Asm, Section, Layout);
Rafael Espindolab8cbb262015-04-30 00:30:40 +00001229
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001230 uint64_t SecEnd = getStream().tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001231 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd);
1232
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001233 MCSectionELF *RelSection = createRelocationSection(Ctx, Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001234
1235 if (SignatureSymbol) {
Rafael Espindolab5d316b2015-05-29 20:21:02 +00001236 Asm.registerSymbol(*SignatureSymbol);
Rafael Espindolabda19802015-04-30 14:21:49 +00001237 unsigned &GroupIdx = RevGroupMap[SignatureSymbol];
1238 if (!GroupIdx) {
Rafael Espindola0709a7b2015-05-21 19:20:38 +00001239 MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol);
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001240 GroupIdx = addToSectionTable(Group);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001241 Group->setAlignment(4);
1242 Groups.push_back(Group);
Rafael Espindolabda19802015-04-30 14:21:49 +00001243 }
Rafael Espindola7830fc82015-06-05 17:54:25 +00001244 std::vector<const MCSectionELF *> &Members =
1245 GroupMembers[SignatureSymbol];
1246 Members.push_back(&Section);
Rafael Espindolabda19802015-04-30 14:21:49 +00001247 if (RelSection)
Rafael Espindola7830fc82015-06-05 17:54:25 +00001248 Members.push_back(RelSection);
Rafael Espindolabda19802015-04-30 14:21:49 +00001249 }
1250
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001251 SectionIndexMap[&Section] = addToSectionTable(&Section);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001252 if (RelSection) {
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001253 SectionIndexMap[RelSection] = addToSectionTable(RelSection);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001254 Relocations.push_back(RelSection);
1255 }
Rafael Espindolabda19802015-04-30 14:21:49 +00001256 }
1257
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001258 for (MCSectionELF *Group : Groups) {
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001259 align(Group->getAlignment());
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001260
1261 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001262 uint64_t SecStart = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001263
1264 const MCSymbol *SignatureSymbol = Group->getGroup();
1265 assert(SignatureSymbol);
1266 write(uint32_t(ELF::GRP_COMDAT));
1267 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) {
1268 uint32_t SecIndex = SectionIndexMap.lookup(Member);
1269 write(SecIndex);
1270 }
1271
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001272 uint64_t SecEnd = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001273 SectionOffsets[Group] = std::make_pair(SecStart, SecEnd);
1274 }
1275
1276 // Compute symbol table information.
Rafael Espindolaaa486e92015-05-28 17:54:01 +00001277 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap, SectionOffsets);
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001278
1279 for (MCSectionELF *RelSection : Relocations) {
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001280 align(RelSection->getAlignment());
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001281
1282 // Remember the offset into the file for this section.
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001283 uint64_t SecStart = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001284
1285 writeRelocations(Asm, *RelSection->getAssociatedSection());
1286
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001287 uint64_t SecEnd = getStream().tell();
Rafael Espindola0a82ad72015-05-21 20:43:13 +00001288 SectionOffsets[RelSection] = std::make_pair(SecStart, SecEnd);
Rafael Espindola642a2212015-04-14 22:54:16 +00001289 }
1290
Rafael Espindola88d1f632015-04-29 20:25:24 +00001291 {
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001292 uint64_t SecStart = getStream().tell();
Rafael Espindolab1863912015-04-30 21:10:06 +00001293 const MCSectionELF *Sec = createStringTable(Ctx);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001294 uint64_t SecEnd = getStream().tell();
Rafael Espindolabda19802015-04-30 14:21:49 +00001295 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd);
Rafael Espindola88abc392015-04-29 20:34:31 +00001296 }
1297
Rafael Espindola642a2212015-04-14 22:54:16 +00001298 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
Rafael Espindolab20fbb82015-06-05 18:21:00 +00001299 align(NaturalAlignment);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001300
Rafael Espindola5568c832016-01-19 15:19:08 +00001301 const uint64_t SectionHeaderOffset = getStream().tell();
Rafael Espindola642a2212015-04-14 22:54:16 +00001302
Rafael Espindola1557fd62011-03-20 18:44:20 +00001303 // ... then the section header table ...
Rafael Espindola57c80832015-06-04 20:55:49 +00001304 writeSectionHeader(Layout, SectionIndexMap, SectionOffsets);
Rafael Espindola642a2212015-04-14 22:54:16 +00001305
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001306 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE)
Aaron Ballman9cab7322015-04-30 14:03:12 +00001307 ? (uint16_t)ELF::SHN_UNDEF
Rafael Espindola03d7abb2015-04-30 20:53:27 +00001308 : SectionTable.size() + 1;
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001309 if (sys::IsLittleEndianHost != IsLittleEndian)
1310 sys::swapByteOrder(NumSections);
1311 unsigned NumSectionsOffset;
1312
Rafael Espindola642a2212015-04-14 22:54:16 +00001313 if (is64Bit()) {
1314 uint64_t Val = SectionHeaderOffset;
1315 if (sys::IsLittleEndianHost != IsLittleEndian)
1316 sys::swapByteOrder(Val);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001317 getStream().pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1318 offsetof(ELF::Elf64_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001319 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001320 } else {
1321 uint32_t Val = SectionHeaderOffset;
1322 if (sys::IsLittleEndianHost != IsLittleEndian)
1323 sys::swapByteOrder(Val);
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001324 getStream().pwrite(reinterpret_cast<char *>(&Val), sizeof(Val),
1325 offsetof(ELF::Elf32_Ehdr, e_shoff));
Rafael Espindola8c7829b2015-04-29 20:39:37 +00001326 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum);
Rafael Espindola642a2212015-04-14 22:54:16 +00001327 }
David Majnemerabdb2d2a2015-09-01 16:19:03 +00001328 getStream().pwrite(reinterpret_cast<char *>(&NumSections),
1329 sizeof(NumSections), NumSectionsOffset);
Rafael Espindola1557fd62011-03-20 18:44:20 +00001330}
1331
Jim Grosbach36e60e92015-06-04 22:24:41 +00001332bool ELFObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001333 const MCAssembler &Asm, const MCSymbol &SA, const MCFragment &FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001334 bool InSet, bool IsPCRel) const {
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001335 const auto &SymA = cast<MCSymbolELF>(SA);
Rafael Espindola35d61892015-04-17 21:15:17 +00001336 if (IsPCRel) {
1337 assert(!InSet);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001338 if (::isWeak(SymA))
Rafael Espindola35d61892015-04-17 21:15:17 +00001339 return false;
1340 }
Jim Grosbach36e60e92015-06-04 22:24:41 +00001341 return MCObjectWriter::isSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB,
Rafael Espindola35d61892015-04-17 21:15:17 +00001342 InSet, IsPCRel);
Eli Friedmand92d17b2011-03-03 07:24:36 +00001343}
1344
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001345bool ELFObjectWriter::isWeak(const MCSymbol &S) const {
1346 const auto &Sym = cast<MCSymbolELF>(S);
Rafael Espindolae3b2acf2015-05-29 18:47:23 +00001347 if (::isWeak(Sym))
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001348 return true;
1349
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001350 // It is invalid to replace a reference to a global in a comdat
1351 // with a reference to a local since out of comdat references
1352 // to a local are forbidden.
1353 // We could try to return false for more cases, like the reference
1354 // being in the same comdat or Sym being an alias to another global,
1355 // but it is not clear if it is worth the effort.
Rafael Espindola95fb9b92015-06-02 20:38:46 +00001356 if (Sym.getBinding() != ELF::STB_GLOBAL)
Rafael Espindola29c82702015-04-20 12:44:06 +00001357 return false;
Rafael Espindoladb8a5862015-04-17 20:05:17 +00001358
Rafael Espindola29c82702015-04-20 12:44:06 +00001359 if (!Sym.isInSection())
1360 return false;
1361
1362 const auto &Sec = cast<MCSectionELF>(Sym.getSection());
1363 return Sec.getGroup();
Rafael Espindolaf275ad82015-03-25 13:16:53 +00001364}
1365
Rafael Espindola6b5e56c2010-12-17 17:45:22 +00001366MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001367 raw_pwrite_stream &OS,
Rafael Espindolafdaae0d2010-12-18 03:27:34 +00001368 bool IsLittleEndian) {
Rafael Espindola34a68af2011-12-22 03:24:43 +00001369 return new ELFObjectWriter(MOTW, OS, IsLittleEndian);
Rafael Espindolab264d332011-12-21 17:30:17 +00001370}