blob: d54b9c4d0c43ae924970c5b4871e6f2835611772 [file] [log] [blame]
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001//===- OutputSections.cpp -------------------------------------------------===//
2//
3// The LLVM Linker
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "OutputSections.h"
11#include "Config.h"
George Rimare2ee72b2016-02-26 14:48:31 +000012#include "LinkerScript.h"
Rafael Espindola5805c4f2015-09-21 21:38:08 +000013#include "SymbolTable.h"
Rafael Espindola01205f72015-09-22 18:19:46 +000014#include "Target.h"
Rui Ueyamae9809502016-03-11 04:23:12 +000015#include "lld/Core/Parallel.h"
George Rimarf6bc65a2016-01-15 13:34:52 +000016#include "llvm/Support/Dwarf.h"
Rui Ueyama3a41be22016-04-07 22:49:21 +000017#include "llvm/Support/MD5.h"
Igor Kudrin1b0d7062015-10-22 08:21:35 +000018#include "llvm/Support/MathExtras.h"
Rui Ueyamad86ec302016-04-07 23:51:56 +000019#include "llvm/Support/SHA1.h"
George Rimarf6bc65a2016-01-15 13:34:52 +000020#include <map>
Rafael Espindola5805c4f2015-09-21 21:38:08 +000021
Rafael Espindola5805c4f2015-09-21 21:38:08 +000022using namespace llvm;
Rui Ueyamadbcfedb2016-02-09 21:46:11 +000023using namespace llvm::dwarf;
Rafael Espindola5805c4f2015-09-21 21:38:08 +000024using namespace llvm::object;
Rafael Espindolaa6627382015-10-06 23:56:53 +000025using namespace llvm::support::endian;
Rafael Espindola5805c4f2015-09-21 21:38:08 +000026using namespace llvm::ELF;
27
28using namespace lld;
Rafael Espindolae0df00b2016-02-28 00:25:54 +000029using namespace lld::elf;
Rafael Espindola5805c4f2015-09-21 21:38:08 +000030
George Rimar12737b72016-02-25 08:40:26 +000031static bool isAlpha(char C) {
32 return ('a' <= C && C <= 'z') || ('A' <= C && C <= 'Z') || C == '_';
33}
34
35static bool isAlnum(char C) { return isAlpha(C) || ('0' <= C && C <= '9'); }
36
37// Returns true if S is valid as a C language identifier.
Rafael Espindolae0df00b2016-02-28 00:25:54 +000038bool elf::isValidCIdentifier(StringRef S) {
Rui Ueyamadad77c52016-02-26 15:42:06 +000039 return !S.empty() && isAlpha(S[0]) &&
40 std::all_of(S.begin() + 1, S.end(), isAlnum);
George Rimar12737b72016-02-25 08:40:26 +000041}
42
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +000043template <class ELFT>
Rui Ueyamad97e5c42016-01-07 18:33:11 +000044OutputSectionBase<ELFT>::OutputSectionBase(StringRef Name, uint32_t Type,
45 uintX_t Flags)
Rafael Espindola5805c4f2015-09-21 21:38:08 +000046 : Name(Name) {
Sean Silva580c1b62016-04-20 04:26:16 +000047 memset(&Header, 0, sizeof(Elf_Shdr));
Rui Ueyamad97e5c42016-01-07 18:33:11 +000048 Header.sh_type = Type;
49 Header.sh_flags = Flags;
Rafael Espindola5805c4f2015-09-21 21:38:08 +000050}
51
Rafael Espindola35c6af32015-09-25 17:19:10 +000052template <class ELFT>
Rui Ueyamac63c1db2016-03-13 06:50:33 +000053void OutputSectionBase<ELFT>::writeHeaderTo(Elf_Shdr *Shdr) {
54 *Shdr = Header;
55}
56
57template <class ELFT>
George Rimar648a2c32015-10-20 08:54:27 +000058GotPltSection<ELFT>::GotPltSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +000059 : OutputSectionBase<ELFT>(".got.plt", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE) {
George Rimar648a2c32015-10-20 08:54:27 +000060 this->Header.sh_addralign = sizeof(uintX_t);
George Rimar648a2c32015-10-20 08:54:27 +000061}
62
Rafael Espindola67d72c02016-03-11 12:06:30 +000063template <class ELFT> void GotPltSection<ELFT>::addEntry(SymbolBody &Sym) {
64 Sym.GotPltIndex = Target->GotPltHeaderEntriesNum + Entries.size();
65 Entries.push_back(&Sym);
George Rimar648a2c32015-10-20 08:54:27 +000066}
67
68template <class ELFT> bool GotPltSection<ELFT>::empty() const {
Igor Kudrin351b41d2015-11-16 17:44:08 +000069 return Entries.empty();
George Rimar648a2c32015-10-20 08:54:27 +000070}
71
George Rimar648a2c32015-10-20 08:54:27 +000072template <class ELFT> void GotPltSection<ELFT>::finalize() {
Igor Kudrin351b41d2015-11-16 17:44:08 +000073 this->Header.sh_size =
Rui Ueyama724d6252016-01-29 01:49:32 +000074 (Target->GotPltHeaderEntriesNum + Entries.size()) * sizeof(uintX_t);
George Rimar648a2c32015-10-20 08:54:27 +000075}
76
77template <class ELFT> void GotPltSection<ELFT>::writeTo(uint8_t *Buf) {
Rui Ueyamac516ae12016-01-29 02:33:45 +000078 Target->writeGotPltHeader(Buf);
Rui Ueyama724d6252016-01-29 01:49:32 +000079 Buf += Target->GotPltHeaderEntriesNum * sizeof(uintX_t);
George Rimar648a2c32015-10-20 08:54:27 +000080 for (const SymbolBody *B : Entries) {
Rui Ueyamab5a69702016-02-01 21:00:35 +000081 Target->writeGotPlt(Buf, B->getPltVA<ELFT>());
George Rimar648a2c32015-10-20 08:54:27 +000082 Buf += sizeof(uintX_t);
83 }
84}
85
86template <class ELFT>
Rui Ueyama15ef5e12015-10-07 19:18:16 +000087GotSection<ELFT>::GotSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +000088 : OutputSectionBase<ELFT>(".got", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE) {
Igor Kudrin15cd9ff2015-11-06 07:43:03 +000089 if (Config->EMachine == EM_MIPS)
Rui Ueyamacf07a312016-01-06 22:53:58 +000090 this->Header.sh_flags |= SHF_MIPS_GPREL;
Rui Ueyama5f551ae2015-10-14 14:02:06 +000091 this->Header.sh_addralign = sizeof(uintX_t);
Rafael Espindola35c6af32015-09-25 17:19:10 +000092}
93
Rafael Espindola67d72c02016-03-11 12:06:30 +000094template <class ELFT> void GotSection<ELFT>::addEntry(SymbolBody &Sym) {
Simon Atanasyanf3ec3be2016-03-22 08:36:48 +000095 if (Config->EMachine == EM_MIPS) {
Simon Atanasyanbea20c32016-03-23 09:28:02 +000096 // For "true" local symbols which can be referenced from the same module
97 // only compiler creates two instructions for address loading:
98 //
99 // lw $8, 0($gp) # R_MIPS_GOT16
100 // addi $8, $8, 0 # R_MIPS_LO16
101 //
102 // The first instruction loads high 16 bits of the symbol address while
103 // the second adds an offset. That allows to reduce number of required
104 // GOT entries because only one global offset table entry is necessary
105 // for every 64 KBytes of local data. So for local symbols we need to
106 // allocate number of GOT entries to hold all required "page" addresses.
107 //
108 // All global symbols (hidden and regular) considered by compiler uniformly.
109 // It always generates a single `lw` instruction and R_MIPS_GOT16 relocation
110 // to load address of the symbol. So for each such symbol we need to
111 // allocate dedicated GOT entry to store its address.
112 //
113 // If a symbol is preemptible we need help of dynamic linker to get its
114 // final address. The corresponding GOT entries are allocated in the
115 // "global" part of GOT. Entries for non preemptible global symbol allocated
116 // in the "local" part of GOT.
117 //
118 // See "Global Offset Table" in Chapter 5:
119 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
Simon Atanasyand2980d32016-03-29 14:07:22 +0000120 if (Sym.isLocal()) {
121 // At this point we do not know final symbol value so to reduce number
122 // of allocated GOT entries do the following trick. Save all output
123 // sections referenced by GOT relocations. Then later in the `finalize`
124 // method calculate number of "pages" required to cover all saved output
125 // section and allocate appropriate number of GOT entries.
126 auto *OutSec = cast<DefinedRegular<ELFT>>(&Sym)->Section->OutSec;
127 MipsOutSections.insert(OutSec);
128 return;
129 }
130 if (!Sym.isPreemptible()) {
131 // In case of non-local symbols require an entry in the local part
132 // of MIPS GOT, we set GotIndex to 1 just to accent that this symbol
133 // has the GOT entry and escape creation more redundant GOT entries.
134 // FIXME (simon): We can try to store such symbols in the `Entries`
135 // container. But in that case we have to sort out that container
136 // and update GotIndex assigned to symbols.
137 Sym.GotIndex = 1;
Simon Atanasyanf3ec3be2016-03-22 08:36:48 +0000138 ++MipsLocalEntries;
139 return;
140 }
141 }
Rafael Espindola67d72c02016-03-11 12:06:30 +0000142 Sym.GotIndex = Entries.size();
143 Entries.push_back(&Sym);
George Rimar687138c2015-11-13 16:28:53 +0000144}
145
Rafael Espindola67d72c02016-03-11 12:06:30 +0000146template <class ELFT> bool GotSection<ELFT>::addDynTlsEntry(SymbolBody &Sym) {
Peter Collingbourne4f952702016-05-01 04:55:03 +0000147 if (Sym.symbol()->GlobalDynIndex != -1U)
George Rimar90cd0a82015-12-01 19:20:26 +0000148 return false;
Peter Collingbourne4f952702016-05-01 04:55:03 +0000149 Sym.symbol()->GlobalDynIndex = Entries.size();
Michael J. Spencer627ae702015-11-13 00:28:34 +0000150 // Global Dynamic TLS entries take two GOT slots.
Rafael Espindola67d72c02016-03-11 12:06:30 +0000151 Entries.push_back(&Sym);
George Rimar687138c2015-11-13 16:28:53 +0000152 Entries.push_back(nullptr);
George Rimar90cd0a82015-12-01 19:20:26 +0000153 return true;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000154}
155
Rui Ueyama0e53c7d2016-02-05 00:10:02 +0000156// Reserves TLS entries for a TLS module ID and a TLS block offset.
157// In total it takes two GOT slots.
158template <class ELFT> bool GotSection<ELFT>::addTlsIndex() {
159 if (TlsIndexOff != uint32_t(-1))
George Rimarb17f7392015-12-01 18:24:07 +0000160 return false;
Rui Ueyama0e53c7d2016-02-05 00:10:02 +0000161 TlsIndexOff = Entries.size() * sizeof(uintX_t);
Michael J. Spencer1e225612015-11-11 01:00:24 +0000162 Entries.push_back(nullptr);
163 Entries.push_back(nullptr);
George Rimarb17f7392015-12-01 18:24:07 +0000164 return true;
Michael J. Spencer1e225612015-11-11 01:00:24 +0000165}
166
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000167template <class ELFT>
168typename GotSection<ELFT>::uintX_t
Rafael Espindola58cd5db2016-04-19 22:46:03 +0000169GotSection<ELFT>::getMipsLocalPageOffset(uintX_t EntryValue) {
Simon Atanasyan56ab5f02016-01-21 05:33:23 +0000170 // Initialize the entry by the %hi(EntryValue) expression
171 // but without right-shifting.
Rafael Espindola58cd5db2016-04-19 22:46:03 +0000172 return getMipsLocalEntryOffset((EntryValue + 0x8000) & ~0xffff);
Simon Atanasyan56ab5f02016-01-21 05:33:23 +0000173}
174
175template <class ELFT>
176typename GotSection<ELFT>::uintX_t
Rafael Espindola58cd5db2016-04-19 22:46:03 +0000177GotSection<ELFT>::getMipsLocalEntryOffset(uintX_t EntryValue) {
Simon Atanasyan1ef1bf82016-04-25 20:25:05 +0000178 // Take into account MIPS GOT header.
179 // See comment in the GotSection::writeTo.
180 size_t NewIndex = MipsLocalGotPos.size() + 2;
Simon Atanasyan56ab5f02016-01-21 05:33:23 +0000181 auto P = MipsLocalGotPos.insert(std::make_pair(EntryValue, NewIndex));
182 assert(!P.second || MipsLocalGotPos.size() <= MipsLocalEntries);
George Rimar71e64b22016-05-11 09:41:15 +0000183 return (uintX_t)P.first->second * sizeof(uintX_t) - MipsGPOffset;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000184}
185
Igor Kudrin304860a2015-11-12 04:39:49 +0000186template <class ELFT>
George Rimar90cd0a82015-12-01 19:20:26 +0000187typename GotSection<ELFT>::uintX_t
188GotSection<ELFT>::getGlobalDynAddr(const SymbolBody &B) const {
Peter Collingbourne4f952702016-05-01 04:55:03 +0000189 return this->getVA() + B.symbol()->GlobalDynIndex * sizeof(uintX_t);
George Rimar90cd0a82015-12-01 19:20:26 +0000190}
191
192template <class ELFT>
Rafael Espindola74031ba2016-04-07 15:20:56 +0000193typename GotSection<ELFT>::uintX_t
194GotSection<ELFT>::getGlobalDynOffset(const SymbolBody &B) const {
Peter Collingbourne4f952702016-05-01 04:55:03 +0000195 return B.symbol()->GlobalDynIndex * sizeof(uintX_t);
Rafael Espindola74031ba2016-04-07 15:20:56 +0000196}
197
198template <class ELFT>
Igor Kudrin304860a2015-11-12 04:39:49 +0000199const SymbolBody *GotSection<ELFT>::getMipsFirstGlobalEntry() const {
200 return Entries.empty() ? nullptr : Entries.front();
201}
202
203template <class ELFT>
204unsigned GotSection<ELFT>::getMipsLocalEntriesNum() const {
Simon Atanasyan1ef1bf82016-04-25 20:25:05 +0000205 return MipsLocalEntries;
Igor Kudrin304860a2015-11-12 04:39:49 +0000206}
207
Igor Kudrin15cd9ff2015-11-06 07:43:03 +0000208template <class ELFT> void GotSection<ELFT>::finalize() {
Simon Atanasyan1ef1bf82016-04-25 20:25:05 +0000209 if (Config->EMachine == EM_MIPS)
210 // Take into account MIPS GOT header.
211 // See comment in the GotSection::writeTo.
212 MipsLocalEntries += 2;
Simon Atanasyand2980d32016-03-29 14:07:22 +0000213 for (const OutputSectionBase<ELFT> *OutSec : MipsOutSections) {
214 // Calculate an upper bound of MIPS GOT entries required to store page
215 // addresses of local symbols. We assume the worst case - each 64kb
216 // page of the output section has at least one GOT relocation against it.
217 // Add 0x8000 to the section's size because the page address stored
218 // in the GOT entry is calculated as (value + 0x8000) & ~0xffff.
219 MipsLocalEntries += (OutSec->getSize() + 0x8000 + 0xfffe) / 0xffff;
220 }
Simon Atanasyan1ef1bf82016-04-25 20:25:05 +0000221 this->Header.sh_size = (MipsLocalEntries + Entries.size()) * sizeof(uintX_t);
Igor Kudrin15cd9ff2015-11-06 07:43:03 +0000222}
223
Rafael Espindolaa6627382015-10-06 23:56:53 +0000224template <class ELFT> void GotSection<ELFT>::writeTo(uint8_t *Buf) {
Simon Atanasyan1ef1bf82016-04-25 20:25:05 +0000225 if (Config->EMachine == EM_MIPS) {
226 // Set the MSB of the second GOT slot. This is not required by any
227 // MIPS ABI documentation, though.
228 //
229 // There is a comment in glibc saying that "The MSB of got[1] of a
230 // gnu object is set to identify gnu objects," and in GNU gold it
231 // says "the second entry will be used by some runtime loaders".
232 // But how this field is being used is unclear.
233 //
234 // We are not really willing to mimic other linkers behaviors
235 // without understanding why they do that, but because all files
236 // generated by GNU tools have this special GOT value, and because
237 // we've been doing this for years, it is probably a safe bet to
238 // keep doing this for now. We really need to revisit this to see
239 // if we had to do this.
240 auto *P = reinterpret_cast<typename ELFT::Off *>(Buf);
241 P[1] = uintX_t(1) << (ELFT::Is64Bits ? 63 : 31);
242 }
Rui Ueyama5cbf5d22016-02-02 02:29:03 +0000243 for (std::pair<uintX_t, size_t> &L : MipsLocalGotPos) {
Simon Atanasyan56ab5f02016-01-21 05:33:23 +0000244 uint8_t *Entry = Buf + L.second * sizeof(uintX_t);
245 write<uintX_t, ELFT::TargetEndianness, sizeof(uintX_t)>(Entry, L.first);
246 }
Simon Atanasyan56ab5f02016-01-21 05:33:23 +0000247 Buf += MipsLocalEntries * sizeof(uintX_t);
Rafael Espindolaa6627382015-10-06 23:56:53 +0000248 for (const SymbolBody *B : Entries) {
Rafael Espindolae782f672015-10-07 03:56:05 +0000249 uint8_t *Entry = Buf;
250 Buf += sizeof(uintX_t);
Michael J. Spencer1e225612015-11-11 01:00:24 +0000251 if (!B)
252 continue;
Igor Kudrin15cd9ff2015-11-06 07:43:03 +0000253 // MIPS has special rules to fill up GOT entries.
254 // See "Global Offset Table" in Chapter 5 in the following document
255 // for detailed description:
256 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
257 // As the first approach, we can just store addresses for all symbols.
Rui Ueyamac4466602016-03-13 19:48:18 +0000258 if (Config->EMachine != EM_MIPS && B->isPreemptible())
Rafael Espindolaa6627382015-10-06 23:56:53 +0000259 continue; // The dynamic linker will take care of it.
Rui Ueyamab5a69702016-02-01 21:00:35 +0000260 uintX_t VA = B->getVA<ELFT>();
Rafael Espindolae782f672015-10-07 03:56:05 +0000261 write<uintX_t, ELFT::TargetEndianness, sizeof(uintX_t)>(Entry, VA);
Rafael Espindolaa6627382015-10-06 23:56:53 +0000262 }
263}
264
Rafael Espindola35c6af32015-09-25 17:19:10 +0000265template <class ELFT>
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000266PltSection<ELFT>::PltSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +0000267 : OutputSectionBase<ELFT>(".plt", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR) {
Rafael Espindola35c6af32015-09-25 17:19:10 +0000268 this->Header.sh_addralign = 16;
269}
270
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000271template <class ELFT> void PltSection<ELFT>::writeTo(uint8_t *Buf) {
Rafael Espindolae4c86d832016-05-18 21:03:36 +0000272 // At beginning of PLT, we have code to call the dynamic linker
273 // to resolve dynsyms at runtime. Write such code.
274 Target->writePltZero(Buf);
Rui Ueyamaf57a5902016-05-20 21:39:07 +0000275 size_t Off = Target->PltZeroSize;
276
George Rimarfb5d7f22015-11-26 19:58:51 +0000277 for (auto &I : Entries) {
Rui Ueyama9398f862016-01-29 04:15:02 +0000278 const SymbolBody *B = I.first;
George Rimar77b77792015-11-25 22:15:01 +0000279 unsigned RelOff = I.second;
Rafael Espindolae4c86d832016-05-18 21:03:36 +0000280 uint64_t Got = B->getGotPltVA<ELFT>();
Rui Ueyama242ddf42015-10-12 18:56:36 +0000281 uint64_t Plt = this->getVA() + Off;
Rui Ueyama9398f862016-01-29 04:15:02 +0000282 Target->writePlt(Buf + Off, Got, Plt, B->PltIndex, RelOff);
Rui Ueyama724d6252016-01-29 01:49:32 +0000283 Off += Target->PltEntrySize;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000284 }
285}
286
Rafael Espindola67d72c02016-03-11 12:06:30 +0000287template <class ELFT> void PltSection<ELFT>::addEntry(SymbolBody &Sym) {
288 Sym.PltIndex = Entries.size();
Rafael Espindolae4c86d832016-05-18 21:03:36 +0000289 unsigned RelOff = Out<ELFT>::RelaPlt->getRelocOffset();
Rafael Espindola67d72c02016-03-11 12:06:30 +0000290 Entries.push_back(std::make_pair(&Sym, RelOff));
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000291}
292
George Rimar648a2c32015-10-20 08:54:27 +0000293template <class ELFT> void PltSection<ELFT>::finalize() {
Rui Ueyama724d6252016-01-29 01:49:32 +0000294 this->Header.sh_size =
Rui Ueyama62515452016-01-29 03:00:32 +0000295 Target->PltZeroSize + Entries.size() * Target->PltEntrySize;
Hal Finkel6c2a3b82015-10-08 21:51:31 +0000296}
297
298template <class ELFT>
George Rimarc191acf2016-05-10 15:47:57 +0000299RelocationSection<ELFT>::RelocationSection(StringRef Name, bool Sort)
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000300 : OutputSectionBase<ELFT>(Name, Config->Rela ? SHT_RELA : SHT_REL,
George Rimarc191acf2016-05-10 15:47:57 +0000301 SHF_ALLOC),
302 Sort(Sort) {
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000303 this->Header.sh_entsize = Config->Rela ? sizeof(Elf_Rela) : sizeof(Elf_Rel);
Rui Ueyama5e378dd2016-01-29 22:18:57 +0000304 this->Header.sh_addralign = sizeof(uintX_t);
Rafael Espindola35c6af32015-09-25 17:19:10 +0000305}
306
George Rimar5828c232015-11-30 17:49:19 +0000307template <class ELFT>
Rafael Espindolad30eb7d2016-02-05 15:03:10 +0000308void RelocationSection<ELFT>::addReloc(const DynamicReloc<ELFT> &Reloc) {
Rafael Espindolad30eb7d2016-02-05 15:03:10 +0000309 Relocs.push_back(Reloc);
310}
311
George Rimarc191acf2016-05-10 15:47:57 +0000312template <class ELFT, class RelTy>
313static bool compRelocations(const RelTy &A, const RelTy &B) {
314 return A.getSymbol(Config->Mips64EL) < B.getSymbol(Config->Mips64EL);
315}
316
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000317template <class ELFT> void RelocationSection<ELFT>::writeTo(uint8_t *Buf) {
George Rimarc191acf2016-05-10 15:47:57 +0000318 uint8_t *BufBegin = Buf;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000319 for (const DynamicReloc<ELFT> &Rel : Relocs) {
Rui Ueyama614be592016-03-13 05:23:40 +0000320 auto *P = reinterpret_cast<Elf_Rela *>(Buf);
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000321 Buf += Config->Rela ? sizeof(Elf_Rela) : sizeof(Elf_Rel);
Rafael Espindolade9857e2016-02-04 21:33:05 +0000322 SymbolBody *Sym = Rel.Sym;
Rui Ueyamab0210e832016-01-26 00:24:57 +0000323
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000324 if (Config->Rela)
Rui Ueyama614be592016-03-13 05:23:40 +0000325 P->r_addend = Rel.UseSymVA ? Sym->getVA<ELFT>(Rel.Addend) : Rel.Addend;
Rafael Espindola74031ba2016-04-07 15:20:56 +0000326 P->r_offset = Rel.OffsetInSec + Rel.OffsetSec->getVA();
Rafael Espindolade9857e2016-02-04 21:33:05 +0000327 uint32_t SymIdx = (!Rel.UseSymVA && Sym) ? Sym->DynsymIndex : 0;
328 P->setSymbolAndType(SymIdx, Rel.Type, Config->Mips64EL);
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000329 }
George Rimarc191acf2016-05-10 15:47:57 +0000330
331 if (Sort) {
332 if (Config->Rela)
333 std::stable_sort((Elf_Rela *)BufBegin,
334 (Elf_Rela *)BufBegin + Relocs.size(),
335 compRelocations<ELFT, Elf_Rela>);
336 else
337 std::stable_sort((Elf_Rel *)BufBegin, (Elf_Rel *)BufBegin + Relocs.size(),
338 compRelocations<ELFT, Elf_Rel>);
339 }
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000340}
341
George Rimar77b77792015-11-25 22:15:01 +0000342template <class ELFT> unsigned RelocationSection<ELFT>::getRelocOffset() {
Rui Ueyama5a0b2f72016-02-05 19:13:18 +0000343 return this->Header.sh_entsize * Relocs.size();
George Rimar77b77792015-11-25 22:15:01 +0000344}
345
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000346template <class ELFT> void RelocationSection<ELFT>::finalize() {
George Rimara07ff662015-12-21 10:12:06 +0000347 this->Header.sh_link = Static ? Out<ELFT>::SymTab->SectionIndex
348 : Out<ELFT>::DynSymTab->SectionIndex;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000349 this->Header.sh_size = Relocs.size() * this->Header.sh_entsize;
350}
351
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +0000352template <class ELFT>
353InterpSection<ELFT>::InterpSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +0000354 : OutputSectionBase<ELFT>(".interp", SHT_PROGBITS, SHF_ALLOC) {
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000355 this->Header.sh_size = Config->DynamicLinker.size() + 1;
356 this->Header.sh_addralign = 1;
357}
358
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +0000359template <class ELFT> void InterpSection<ELFT>::writeTo(uint8_t *Buf) {
Rui Ueyama1e720b92016-03-13 06:50:34 +0000360 StringRef S = Config->DynamicLinker;
361 memcpy(Buf, S.data(), S.size());
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000362}
363
Rafael Espindola35c6af32015-09-25 17:19:10 +0000364template <class ELFT>
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000365HashTableSection<ELFT>::HashTableSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +0000366 : OutputSectionBase<ELFT>(".hash", SHT_HASH, SHF_ALLOC) {
Rafael Espindola35c6af32015-09-25 17:19:10 +0000367 this->Header.sh_entsize = sizeof(Elf_Word);
368 this->Header.sh_addralign = sizeof(Elf_Word);
369}
370
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000371static uint32_t hashSysv(StringRef Name) {
Rui Ueyama5f1eee1a2015-10-15 21:27:17 +0000372 uint32_t H = 0;
373 for (char C : Name) {
374 H = (H << 4) + C;
375 uint32_t G = H & 0xf0000000;
376 if (G)
377 H ^= G >> 24;
378 H &= ~G;
379 }
380 return H;
381}
382
Rui Ueyama0db335f2015-10-07 16:58:54 +0000383template <class ELFT> void HashTableSection<ELFT>::finalize() {
Rui Ueyama2317d0d2015-10-15 20:55:22 +0000384 this->Header.sh_link = Out<ELFT>::DynSymTab->SectionIndex;
Rui Ueyama0db335f2015-10-07 16:58:54 +0000385
George Rimare9e1d322016-02-18 15:17:01 +0000386 unsigned NumEntries = 2; // nbucket and nchain.
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000387 NumEntries += Out<ELFT>::DynSymTab->getNumSymbols(); // The chain entries.
Rui Ueyama0db335f2015-10-07 16:58:54 +0000388
389 // Create as many buckets as there are symbols.
390 // FIXME: This is simplistic. We can try to optimize it, but implementing
391 // support for SHT_GNU_HASH is probably even more profitable.
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000392 NumEntries += Out<ELFT>::DynSymTab->getNumSymbols();
Rui Ueyama0db335f2015-10-07 16:58:54 +0000393 this->Header.sh_size = NumEntries * sizeof(Elf_Word);
394}
395
396template <class ELFT> void HashTableSection<ELFT>::writeTo(uint8_t *Buf) {
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000397 unsigned NumSymbols = Out<ELFT>::DynSymTab->getNumSymbols();
Rui Ueyama0db335f2015-10-07 16:58:54 +0000398 auto *P = reinterpret_cast<Elf_Word *>(Buf);
399 *P++ = NumSymbols; // nbucket
400 *P++ = NumSymbols; // nchain
401
402 Elf_Word *Buckets = P;
403 Elf_Word *Chains = P + NumSymbols;
404
Rafael Espindolae2c24612016-01-29 01:24:25 +0000405 for (const std::pair<SymbolBody *, unsigned> &P :
406 Out<ELFT>::DynSymTab->getSymbols()) {
407 SymbolBody *Body = P.first;
Igor Kudrinab665fc2015-10-20 21:47:58 +0000408 StringRef Name = Body->getName();
Rui Ueyama572a6f72016-01-29 01:49:33 +0000409 unsigned I = Body->DynsymIndex;
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000410 uint32_t Hash = hashSysv(Name) % NumSymbols;
Rui Ueyama0db335f2015-10-07 16:58:54 +0000411 Chains[I] = Buckets[Hash];
412 Buckets[Hash] = I;
413 }
414}
415
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000416static uint32_t hashGnu(StringRef Name) {
417 uint32_t H = 5381;
418 for (uint8_t C : Name)
419 H = (H << 5) + H + C;
420 return H;
421}
422
423template <class ELFT>
424GnuHashTableSection<ELFT>::GnuHashTableSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +0000425 : OutputSectionBase<ELFT>(".gnu.hash", SHT_GNU_HASH, SHF_ALLOC) {
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000426 this->Header.sh_entsize = ELFT::Is64Bits ? 0 : 4;
Rui Ueyama5e378dd2016-01-29 22:18:57 +0000427 this->Header.sh_addralign = sizeof(uintX_t);
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000428}
429
430template <class ELFT>
431unsigned GnuHashTableSection<ELFT>::calcNBuckets(unsigned NumHashed) {
432 if (!NumHashed)
433 return 0;
434
435 // These values are prime numbers which are not greater than 2^(N-1) + 1.
436 // In result, for any particular NumHashed we return a prime number
437 // which is not greater than NumHashed.
438 static const unsigned Primes[] = {
439 1, 1, 3, 3, 7, 13, 31, 61, 127, 251,
440 509, 1021, 2039, 4093, 8191, 16381, 32749, 65521, 131071};
441
442 return Primes[std::min<unsigned>(Log2_32_Ceil(NumHashed),
443 array_lengthof(Primes) - 1)];
444}
445
446// Bloom filter estimation: at least 8 bits for each hashed symbol.
447// GNU Hash table requirement: it should be a power of 2,
448// the minimum value is 1, even for an empty table.
449// Expected results for a 32-bit target:
450// calcMaskWords(0..4) = 1
451// calcMaskWords(5..8) = 2
452// calcMaskWords(9..16) = 4
453// For a 64-bit target:
454// calcMaskWords(0..8) = 1
455// calcMaskWords(9..16) = 2
456// calcMaskWords(17..32) = 4
457template <class ELFT>
458unsigned GnuHashTableSection<ELFT>::calcMaskWords(unsigned NumHashed) {
459 if (!NumHashed)
460 return 1;
461 return NextPowerOf2((NumHashed - 1) / sizeof(Elf_Off));
462}
463
464template <class ELFT> void GnuHashTableSection<ELFT>::finalize() {
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000465 unsigned NumHashed = Symbols.size();
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000466 NBuckets = calcNBuckets(NumHashed);
467 MaskWords = calcMaskWords(NumHashed);
468 // Second hash shift estimation: just predefined values.
469 Shift2 = ELFT::Is64Bits ? 6 : 5;
470
471 this->Header.sh_link = Out<ELFT>::DynSymTab->SectionIndex;
472 this->Header.sh_size = sizeof(Elf_Word) * 4 // Header
473 + sizeof(Elf_Off) * MaskWords // Bloom Filter
474 + sizeof(Elf_Word) * NBuckets // Hash Buckets
475 + sizeof(Elf_Word) * NumHashed; // Hash Values
476}
477
478template <class ELFT> void GnuHashTableSection<ELFT>::writeTo(uint8_t *Buf) {
479 writeHeader(Buf);
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000480 if (Symbols.empty())
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000481 return;
482 writeBloomFilter(Buf);
483 writeHashTable(Buf);
484}
485
486template <class ELFT>
487void GnuHashTableSection<ELFT>::writeHeader(uint8_t *&Buf) {
488 auto *P = reinterpret_cast<Elf_Word *>(Buf);
489 *P++ = NBuckets;
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000490 *P++ = Out<ELFT>::DynSymTab->getNumSymbols() - Symbols.size();
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000491 *P++ = MaskWords;
492 *P++ = Shift2;
493 Buf = reinterpret_cast<uint8_t *>(P);
494}
495
496template <class ELFT>
497void GnuHashTableSection<ELFT>::writeBloomFilter(uint8_t *&Buf) {
498 unsigned C = sizeof(Elf_Off) * 8;
499
500 auto *Masks = reinterpret_cast<Elf_Off *>(Buf);
Rui Ueyama861c7312016-02-17 05:40:03 +0000501 for (const SymbolData &Sym : Symbols) {
502 size_t Pos = (Sym.Hash / C) & (MaskWords - 1);
503 uintX_t V = (uintX_t(1) << (Sym.Hash % C)) |
504 (uintX_t(1) << ((Sym.Hash >> Shift2) % C));
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000505 Masks[Pos] |= V;
506 }
507 Buf += sizeof(Elf_Off) * MaskWords;
508}
509
510template <class ELFT>
511void GnuHashTableSection<ELFT>::writeHashTable(uint8_t *Buf) {
512 Elf_Word *Buckets = reinterpret_cast<Elf_Word *>(Buf);
513 Elf_Word *Values = Buckets + NBuckets;
514
515 int PrevBucket = -1;
516 int I = 0;
Rui Ueyama861c7312016-02-17 05:40:03 +0000517 for (const SymbolData &Sym : Symbols) {
518 int Bucket = Sym.Hash % NBuckets;
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000519 assert(PrevBucket <= Bucket);
520 if (Bucket != PrevBucket) {
Rui Ueyama861c7312016-02-17 05:40:03 +0000521 Buckets[Bucket] = Sym.Body->DynsymIndex;
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000522 PrevBucket = Bucket;
523 if (I > 0)
524 Values[I - 1] |= 1;
525 }
Rui Ueyama861c7312016-02-17 05:40:03 +0000526 Values[I] = Sym.Hash & ~1;
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000527 ++I;
528 }
529 if (I > 0)
530 Values[I - 1] |= 1;
531}
532
Rafael Espindola31f88882015-11-02 14:33:11 +0000533static bool includeInGnuHashTable(SymbolBody *B) {
Rui Ueyamac112c1b2016-01-29 02:17:01 +0000534 // Assume that includeInDynsym() is already checked.
Rafael Espindola31f88882015-11-02 14:33:11 +0000535 return !B->isUndefined();
536}
537
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000538// Add symbols to this symbol hash table. Note that this function
539// destructively sort a given vector -- which is needed because
540// GNU-style hash table places some sorting requirements.
Rafael Espindola35c6af32015-09-25 17:19:10 +0000541template <class ELFT>
Rafael Espindolae2c24612016-01-29 01:24:25 +0000542void GnuHashTableSection<ELFT>::addSymbols(
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000543 std::vector<std::pair<SymbolBody *, size_t>> &V) {
544 auto Mid = std::stable_partition(V.begin(), V.end(),
545 [](std::pair<SymbolBody *, size_t> &P) {
546 return !includeInGnuHashTable(P.first);
547 });
548 if (Mid == V.end())
Igor Kudrinf1d60292015-10-28 07:05:56 +0000549 return;
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000550 for (auto I = Mid, E = V.end(); I != E; ++I) {
551 SymbolBody *B = I->first;
552 size_t StrOff = I->second;
553 Symbols.push_back({B, StrOff, hashGnu(B->getName())});
554 }
Igor Kudrinf1d60292015-10-28 07:05:56 +0000555
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000556 unsigned NBuckets = calcNBuckets(Symbols.size());
557 std::stable_sort(Symbols.begin(), Symbols.end(),
Rui Ueyama861c7312016-02-17 05:40:03 +0000558 [&](const SymbolData &L, const SymbolData &R) {
Igor Kudrinf1d60292015-10-28 07:05:56 +0000559 return L.Hash % NBuckets < R.Hash % NBuckets;
560 });
561
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000562 V.erase(Mid, V.end());
Rui Ueyama861c7312016-02-17 05:40:03 +0000563 for (const SymbolData &Sym : Symbols)
564 V.push_back({Sym.Body, Sym.STName});
Igor Kudrinf1d60292015-10-28 07:05:56 +0000565}
566
567template <class ELFT>
Rui Ueyama3ce825e2015-10-09 21:07:25 +0000568DynamicSection<ELFT>::DynamicSection(SymbolTable<ELFT> &SymTab)
Rui Ueyamacf07a312016-01-06 22:53:58 +0000569 : OutputSectionBase<ELFT>(".dynamic", SHT_DYNAMIC, SHF_ALLOC | SHF_WRITE),
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000570 SymTab(SymTab) {
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +0000571 Elf_Shdr &Header = this->Header;
Rui Ueyama5e378dd2016-01-29 22:18:57 +0000572 Header.sh_addralign = sizeof(uintX_t);
Rafael Espindola35c6af32015-09-25 17:19:10 +0000573 Header.sh_entsize = ELFT::Is64Bits ? 16 : 8;
Igor Kudrin304860a2015-11-12 04:39:49 +0000574
575 // .dynamic section is not writable on MIPS.
576 // See "Special Section" in Chapter 4 in the following document:
577 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
578 if (Config->EMachine == EM_MIPS)
Rui Ueyamacf07a312016-01-06 22:53:58 +0000579 Header.sh_flags = SHF_ALLOC;
Rafael Espindola35c6af32015-09-25 17:19:10 +0000580}
581
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000582template <class ELFT> void DynamicSection<ELFT>::finalize() {
Michael J. Spencer52bf0eb2015-10-01 21:15:02 +0000583 if (this->Header.sh_size)
584 return; // Already finalized.
585
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +0000586 Elf_Shdr &Header = this->Header;
Rui Ueyama2317d0d2015-10-15 20:55:22 +0000587 Header.sh_link = Out<ELFT>::DynStrTab->SectionIndex;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000588
Rafael Espindolae2c24612016-01-29 01:24:25 +0000589 auto Add = [=](Entry E) { Entries.push_back(E); };
590
591 // Add strings. We know that these are the last strings to be added to
Rafael Espindolade069362016-01-25 21:32:04 +0000592 // DynStrTab and doing this here allows this function to set DT_STRSZ.
593 if (!Config->RPath.empty())
Rafael Espindolae2c24612016-01-29 01:24:25 +0000594 Add({Config->EnableNewDtags ? DT_RUNPATH : DT_RPATH,
595 Out<ELFT>::DynStrTab->addString(Config->RPath)});
Rafael Espindolade069362016-01-25 21:32:04 +0000596 for (const std::unique_ptr<SharedFile<ELFT>> &F : SymTab.getSharedFiles())
597 if (F->isNeeded())
Rafael Espindolae2c24612016-01-29 01:24:25 +0000598 Add({DT_NEEDED, Out<ELFT>::DynStrTab->addString(F->getSoName())});
599 if (!Config->SoName.empty())
600 Add({DT_SONAME, Out<ELFT>::DynStrTab->addString(Config->SoName)});
601
Rafael Espindolade069362016-01-25 21:32:04 +0000602 Out<ELFT>::DynStrTab->finalize();
603
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000604 if (Out<ELFT>::RelaDyn->hasRelocs()) {
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000605 bool IsRela = Config->Rela;
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000606 Add({IsRela ? DT_RELA : DT_REL, Out<ELFT>::RelaDyn});
607 Add({IsRela ? DT_RELASZ : DT_RELSZ, Out<ELFT>::RelaDyn->getSize()});
608 Add({IsRela ? DT_RELAENT : DT_RELENT,
609 uintX_t(IsRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel))});
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000610 }
George Rimar648a2c32015-10-20 08:54:27 +0000611 if (Out<ELFT>::RelaPlt && Out<ELFT>::RelaPlt->hasRelocs()) {
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000612 Add({DT_JMPREL, Out<ELFT>::RelaPlt});
613 Add({DT_PLTRELSZ, Out<ELFT>::RelaPlt->getSize()});
614 Add({Config->EMachine == EM_MIPS ? DT_MIPS_PLTGOT : DT_PLTGOT,
615 Out<ELFT>::GotPlt});
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000616 Add({DT_PLTREL, uint64_t(Config->Rela ? DT_RELA : DT_REL)});
George Rimar648a2c32015-10-20 08:54:27 +0000617 }
618
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000619 Add({DT_SYMTAB, Out<ELFT>::DynSymTab});
620 Add({DT_SYMENT, sizeof(Elf_Sym)});
621 Add({DT_STRTAB, Out<ELFT>::DynStrTab});
622 Add({DT_STRSZ, Out<ELFT>::DynStrTab->getSize()});
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000623 if (Out<ELFT>::GnuHashTab)
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000624 Add({DT_GNU_HASH, Out<ELFT>::GnuHashTab});
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000625 if (Out<ELFT>::HashTab)
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000626 Add({DT_HASH, Out<ELFT>::HashTab});
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000627
Rafael Espindolade069362016-01-25 21:32:04 +0000628 if (PreInitArraySec) {
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000629 Add({DT_PREINIT_ARRAY, PreInitArraySec});
630 Add({DT_PREINIT_ARRAYSZ, PreInitArraySec->getSize()});
Rafael Espindolade069362016-01-25 21:32:04 +0000631 }
632 if (InitArraySec) {
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000633 Add({DT_INIT_ARRAY, InitArraySec});
634 Add({DT_INIT_ARRAYSZ, (uintX_t)InitArraySec->getSize()});
Rafael Espindolade069362016-01-25 21:32:04 +0000635 }
636 if (FiniArraySec) {
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000637 Add({DT_FINI_ARRAY, FiniArraySec});
638 Add({DT_FINI_ARRAYSZ, (uintX_t)FiniArraySec->getSize()});
Rui Ueyama7de3f372015-10-01 19:36:04 +0000639 }
640
Rui Ueyama304d1352016-01-25 21:47:25 +0000641 if (SymbolBody *B = SymTab.find(Config->Init))
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000642 Add({DT_INIT, B});
Rui Ueyama304d1352016-01-25 21:47:25 +0000643 if (SymbolBody *B = SymTab.find(Config->Fini))
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000644 Add({DT_FINI, B});
Rui Ueyamac96d0dd2015-10-21 17:47:10 +0000645
Rafael Espindolade069362016-01-25 21:32:04 +0000646 uint32_t DtFlags = 0;
647 uint32_t DtFlags1 = 0;
Rui Ueyamac96d0dd2015-10-21 17:47:10 +0000648 if (Config->Bsymbolic)
649 DtFlags |= DF_SYMBOLIC;
650 if (Config->ZNodelete)
651 DtFlags1 |= DF_1_NODELETE;
652 if (Config->ZNow) {
653 DtFlags |= DF_BIND_NOW;
654 DtFlags1 |= DF_1_NOW;
655 }
656 if (Config->ZOrigin) {
657 DtFlags |= DF_ORIGIN;
658 DtFlags1 |= DF_1_ORIGIN;
659 }
660
661 if (DtFlags)
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000662 Add({DT_FLAGS, DtFlags});
Rui Ueyamac96d0dd2015-10-21 17:47:10 +0000663 if (DtFlags1)
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000664 Add({DT_FLAGS_1, DtFlags1});
Igor Kudrin304860a2015-11-12 04:39:49 +0000665
Ed Mastef5d3cf62016-01-06 15:52:27 +0000666 if (!Config->Entry.empty())
Rafael Espindolacc3ae412016-01-26 01:30:07 +0000667 Add({DT_DEBUG, (uint64_t)0});
Ed Mastef5d3cf62016-01-06 15:52:27 +0000668
Peter Collingbourne21a12fc2016-04-27 20:22:31 +0000669 if (size_t NeedNum = Out<ELFT>::VerNeed->getNeedNum()) {
670 Add({DT_VERSYM, Out<ELFT>::VerSym});
671 Add({DT_VERNEED, Out<ELFT>::VerNeed});
672 Add({DT_VERNEEDNUM, NeedNum});
673 }
674
Igor Kudrin304860a2015-11-12 04:39:49 +0000675 if (Config->EMachine == EM_MIPS) {
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000676 Add({DT_MIPS_RLD_VERSION, 1});
677 Add({DT_MIPS_FLAGS, RHF_NOTPOT});
678 Add({DT_MIPS_BASE_ADDRESS, (uintX_t)Target->getVAStart()});
679 Add({DT_MIPS_SYMTABNO, Out<ELFT>::DynSymTab->getNumSymbols()});
680 Add({DT_MIPS_LOCAL_GOTNO, Out<ELFT>::Got->getMipsLocalEntriesNum()});
Rafael Espindolade069362016-01-25 21:32:04 +0000681 if (const SymbolBody *B = Out<ELFT>::Got->getMipsFirstGlobalEntry())
Rui Ueyama572a6f72016-01-29 01:49:33 +0000682 Add({DT_MIPS_GOTSYM, B->DynsymIndex});
Rafael Espindolade069362016-01-25 21:32:04 +0000683 else
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000684 Add({DT_MIPS_GOTSYM, Out<ELFT>::DynSymTab->getNumSymbols()});
685 Add({DT_PLTGOT, Out<ELFT>::Got});
Igor Kudrin304860a2015-11-12 04:39:49 +0000686 if (Out<ELFT>::MipsRldMap)
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000687 Add({DT_MIPS_RLD_MAP, Out<ELFT>::MipsRldMap});
Igor Kudrin304860a2015-11-12 04:39:49 +0000688 }
689
Rafael Espindolade069362016-01-25 21:32:04 +0000690 // +1 for DT_NULL
691 Header.sh_size = (Entries.size() + 1) * Header.sh_entsize;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000692}
693
694template <class ELFT> void DynamicSection<ELFT>::writeTo(uint8_t *Buf) {
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000695 auto *P = reinterpret_cast<Elf_Dyn *>(Buf);
696
Rafael Espindolade069362016-01-25 21:32:04 +0000697 for (const Entry &E : Entries) {
698 P->d_tag = E.Tag;
699 switch (E.Kind) {
700 case Entry::SecAddr:
701 P->d_un.d_ptr = E.OutSec->getVA();
702 break;
703 case Entry::SymAddr:
Rui Ueyamab5a69702016-02-01 21:00:35 +0000704 P->d_un.d_ptr = E.Sym->template getVA<ELFT>();
Rafael Espindolade069362016-01-25 21:32:04 +0000705 break;
706 case Entry::PlainInt:
707 P->d_un.d_val = E.Val;
708 break;
709 }
Rui Ueyama8c205d52015-10-02 01:33:31 +0000710 ++P;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000711 }
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000712}
713
714template <class ELFT>
George Rimarf6bc65a2016-01-15 13:34:52 +0000715EhFrameHeader<ELFT>::EhFrameHeader()
716 : OutputSectionBase<ELFT>(".eh_frame_hdr", llvm::ELF::SHT_PROGBITS,
717 SHF_ALLOC) {
718 // It's a 4 bytes of header + pointer to the contents of the .eh_frame section
719 // + the number of FDE pointers in the table.
720 this->Header.sh_size = 12;
721}
722
723// We have to get PC values of FDEs. They depend on relocations
724// which are target specific, so we run this code after performing
725// all relocations. We read the values from ouput buffer according to the
726// encoding given for FDEs. Return value is an offset to the initial PC value
727// for the FDE.
728template <class ELFT>
729typename EhFrameHeader<ELFT>::uintX_t
730EhFrameHeader<ELFT>::getFdePc(uintX_t EhVA, const FdeData &F) {
731 const endianness E = ELFT::TargetEndianness;
Simon Atanasyanea423e22016-03-02 05:38:42 +0000732 uint8_t Size = F.Enc & 0x7;
733 if (Size == DW_EH_PE_absptr)
734 Size = sizeof(uintX_t) == 8 ? DW_EH_PE_udata8 : DW_EH_PE_udata4;
735 uint64_t PC;
736 switch (Size) {
Rui Ueyamadbcfedb2016-02-09 21:46:11 +0000737 case DW_EH_PE_udata2:
Simon Atanasyanea423e22016-03-02 05:38:42 +0000738 PC = read16<E>(F.PCRel);
739 break;
Rui Ueyamadbcfedb2016-02-09 21:46:11 +0000740 case DW_EH_PE_udata4:
Simon Atanasyanea423e22016-03-02 05:38:42 +0000741 PC = read32<E>(F.PCRel);
742 break;
Rui Ueyamadbcfedb2016-02-09 21:46:11 +0000743 case DW_EH_PE_udata8:
Simon Atanasyanea423e22016-03-02 05:38:42 +0000744 PC = read64<E>(F.PCRel);
745 break;
746 default:
George Rimar57610422016-03-11 14:43:02 +0000747 fatal("unknown FDE size encoding");
George Rimarf6bc65a2016-01-15 13:34:52 +0000748 }
Simon Atanasyanea423e22016-03-02 05:38:42 +0000749 switch (F.Enc & 0x70) {
750 case DW_EH_PE_absptr:
751 return PC;
752 case DW_EH_PE_pcrel:
753 return PC + EhVA + F.Off + 8;
754 default:
George Rimar57610422016-03-11 14:43:02 +0000755 fatal("unknown FDE size relative encoding");
Simon Atanasyanea423e22016-03-02 05:38:42 +0000756 }
George Rimarf6bc65a2016-01-15 13:34:52 +0000757}
758
759template <class ELFT> void EhFrameHeader<ELFT>::writeTo(uint8_t *Buf) {
760 const endianness E = ELFT::TargetEndianness;
761
Peter Collingbournec98de132016-04-11 16:40:08 +0000762 uintX_t EhVA = Sec->getVA();
763 uintX_t VA = this->getVA();
764
765 // InitialPC -> Offset in .eh_frame, sorted by InitialPC, and deduplicate PCs.
766 // FIXME: Deduplication leaves unneeded null bytes at the end of the section.
767 std::map<uintX_t, size_t> PcToOffset;
768 for (const FdeData &F : FdeList)
769 PcToOffset[getFdePc(EhVA, F)] = F.Off;
770
Rui Ueyamadbcfedb2016-02-09 21:46:11 +0000771 const uint8_t Header[] = {1, DW_EH_PE_pcrel | DW_EH_PE_sdata4,
772 DW_EH_PE_udata4,
773 DW_EH_PE_datarel | DW_EH_PE_sdata4};
George Rimarf6bc65a2016-01-15 13:34:52 +0000774 memcpy(Buf, Header, sizeof(Header));
775
George Rimarf6bc65a2016-01-15 13:34:52 +0000776 uintX_t EhOff = EhVA - VA - 4;
777 write32<E>(Buf + 4, EhOff);
Peter Collingbournec98de132016-04-11 16:40:08 +0000778 write32<E>(Buf + 8, PcToOffset.size());
George Rimarf6bc65a2016-01-15 13:34:52 +0000779 Buf += 12;
780
George Rimarf6bc65a2016-01-15 13:34:52 +0000781 for (auto &I : PcToOffset) {
782 // The first four bytes are an offset to the initial PC value for the FDE.
783 write32<E>(Buf, I.first - VA);
784 // The last four bytes are an offset to the FDE data itself.
785 write32<E>(Buf + 4, EhVA + I.second - VA);
786 Buf += 8;
787 }
788}
789
790template <class ELFT>
791void EhFrameHeader<ELFT>::assignEhFrame(EHOutputSection<ELFT> *Sec) {
George Rimar45ca88d2016-01-25 19:27:50 +0000792 assert((!this->Sec || this->Sec == Sec) &&
793 "multiple .eh_frame sections not supported for .eh_frame_hdr");
George Rimarf6bc65a2016-01-15 13:34:52 +0000794 Live = Config->EhFrameHdr;
795 this->Sec = Sec;
796}
797
798template <class ELFT>
799void EhFrameHeader<ELFT>::addFde(uint8_t Enc, size_t Off, uint8_t *PCRel) {
Rui Ueyamadbcfedb2016-02-09 21:46:11 +0000800 if (Live && (Enc & 0xF0) == DW_EH_PE_datarel)
Rui Ueyama64cfffd2016-01-28 18:40:06 +0000801 fatal("DW_EH_PE_datarel encoding unsupported for FDEs by .eh_frame_hdr");
George Rimarf6bc65a2016-01-15 13:34:52 +0000802 FdeList.push_back(FdeData{Enc, Off, PCRel});
803}
804
805template <class ELFT> void EhFrameHeader<ELFT>::reserveFde() {
806 // Each FDE entry is 8 bytes long:
807 // The first four bytes are an offset to the initial PC value for the FDE. The
808 // last four byte are an offset to the FDE data itself.
809 this->Header.sh_size += 8;
810}
811
812template <class ELFT>
George Rimar58941ee2016-02-25 08:23:37 +0000813OutputSection<ELFT>::OutputSection(StringRef Name, uint32_t Type, uintX_t Flags)
814 : OutputSectionBase<ELFT>(Name, Type, Flags) {
815 if (Type == SHT_RELA)
816 this->Header.sh_entsize = sizeof(Elf_Rela);
817 else if (Type == SHT_REL)
818 this->Header.sh_entsize = sizeof(Elf_Rel);
819}
820
821template <class ELFT> void OutputSection<ELFT>::finalize() {
822 uint32_t Type = this->Header.sh_type;
823 if (Type != SHT_RELA && Type != SHT_REL)
824 return;
825 this->Header.sh_link = Out<ELFT>::SymTab->SectionIndex;
826 // sh_info for SHT_REL[A] sections should contain the section header index of
827 // the section to which the relocation applies.
828 InputSectionBase<ELFT> *S = Sections[0]->getRelocatedSection();
829 this->Header.sh_info = S->OutSec->SectionIndex;
830}
Rafael Espindola35c6af32015-09-25 17:19:10 +0000831
832template <class ELFT>
Rui Ueyama40845e62015-12-26 05:51:07 +0000833void OutputSection<ELFT>::addSection(InputSectionBase<ELFT> *C) {
Rui Ueyama0b289522016-02-25 18:43:51 +0000834 assert(C->Live);
Rui Ueyama40845e62015-12-26 05:51:07 +0000835 auto *S = cast<InputSection<ELFT>>(C);
836 Sections.push_back(S);
837 S->OutSec = this;
Rui Ueyama5ac58912016-02-24 00:38:18 +0000838 this->updateAlign(S->Align);
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000839}
840
Rui Ueyamac4185702016-02-10 23:20:42 +0000841// If an input string is in the form of "foo.N" where N is a number,
842// return N. Otherwise, returns 65536, which is one greater than the
843// lowest priority.
844static int getPriority(StringRef S) {
845 size_t Pos = S.rfind('.');
846 if (Pos == StringRef::npos)
847 return 65536;
848 int V;
849 if (S.substr(Pos + 1).getAsInteger(10, V))
850 return 65536;
851 return V;
852}
853
Rafael Espindola56004c52016-04-07 14:22:09 +0000854template <class ELFT>
855void OutputSection<ELFT>::forEachInputSection(
Rui Ueyama10803512016-05-22 00:25:30 +0000856 std::function<void(InputSectionBase<ELFT> *)> F) {
Rafael Espindola56004c52016-04-07 14:22:09 +0000857 for (InputSection<ELFT> *S : Sections)
858 F(S);
Rui Ueyama5af83682016-02-11 23:41:38 +0000859}
860
Rui Ueyamac4185702016-02-10 23:20:42 +0000861// Sorts input sections by section name suffixes, so that .foo.N comes
862// before .foo.M if N < M. Used to sort .{init,fini}_array.N sections.
Rui Ueyama5af83682016-02-11 23:41:38 +0000863// We want to keep the original order if the priorities are the same
864// because the compiler keeps the original initialization order in a
865// translation unit and we need to respect that.
Rui Ueyamac4185702016-02-10 23:20:42 +0000866// For more detail, read the section of the GCC's manual about init_priority.
Rui Ueyama5af83682016-02-11 23:41:38 +0000867template <class ELFT> void OutputSection<ELFT>::sortInitFini() {
Rui Ueyamac4185702016-02-10 23:20:42 +0000868 // Sort sections by priority.
869 typedef std::pair<int, InputSection<ELFT> *> Pair;
Rui Ueyama704da022016-02-10 23:43:16 +0000870 auto Comp = [](const Pair &A, const Pair &B) { return A.first < B.first; };
871
Rui Ueyamac4185702016-02-10 23:20:42 +0000872 std::vector<Pair> V;
873 for (InputSection<ELFT> *S : Sections)
874 V.push_back({getPriority(S->getSectionName()), S});
Rui Ueyama704da022016-02-10 23:43:16 +0000875 std::stable_sort(V.begin(), V.end(), Comp);
Rui Ueyamac4185702016-02-10 23:20:42 +0000876 Sections.clear();
877 for (Pair &P : V)
878 Sections.push_back(P.second);
Rui Ueyama5af83682016-02-11 23:41:38 +0000879}
Rui Ueyamac4185702016-02-10 23:20:42 +0000880
Rui Ueyama5af83682016-02-11 23:41:38 +0000881// Returns true if S matches /Filename.?\.o$/.
882static bool isCrtBeginEnd(StringRef S, StringRef Filename) {
883 if (!S.endswith(".o"))
884 return false;
885 S = S.drop_back(2);
886 if (S.endswith(Filename))
887 return true;
888 return !S.empty() && S.drop_back().endswith(Filename);
889}
890
891static bool isCrtbegin(StringRef S) { return isCrtBeginEnd(S, "crtbegin"); }
892static bool isCrtend(StringRef S) { return isCrtBeginEnd(S, "crtend"); }
893
894// .ctors and .dtors are sorted by this priority from highest to lowest.
895//
896// 1. The section was contained in crtbegin (crtbegin contains
897// some sentinel value in its .ctors and .dtors so that the runtime
898// can find the beginning of the sections.)
899//
900// 2. The section has an optional priority value in the form of ".ctors.N"
901// or ".dtors.N" where N is a number. Unlike .{init,fini}_array,
902// they are compared as string rather than number.
903//
904// 3. The section is just ".ctors" or ".dtors".
905//
906// 4. The section was contained in crtend, which contains an end marker.
907//
908// In an ideal world, we don't need this function because .init_array and
909// .ctors are duplicate features (and .init_array is newer.) However, there
910// are too many real-world use cases of .ctors, so we had no choice to
911// support that with this rather ad-hoc semantics.
912template <class ELFT>
913static bool compCtors(const InputSection<ELFT> *A,
914 const InputSection<ELFT> *B) {
915 bool BeginA = isCrtbegin(A->getFile()->getName());
916 bool BeginB = isCrtbegin(B->getFile()->getName());
917 if (BeginA != BeginB)
918 return BeginA;
919 bool EndA = isCrtend(A->getFile()->getName());
920 bool EndB = isCrtend(B->getFile()->getName());
921 if (EndA != EndB)
922 return EndB;
923 StringRef X = A->getSectionName();
924 StringRef Y = B->getSectionName();
925 assert(X.startswith(".ctors") || X.startswith(".dtors"));
926 assert(Y.startswith(".ctors") || Y.startswith(".dtors"));
927 X = X.substr(6);
928 Y = Y.substr(6);
Rui Ueyama24b794e2016-02-12 00:38:46 +0000929 if (X.empty() && Y.empty())
930 return false;
Rui Ueyama5af83682016-02-11 23:41:38 +0000931 return X < Y;
932}
933
934// Sorts input sections by the special rules for .ctors and .dtors.
935// Unfortunately, the rules are different from the one for .{init,fini}_array.
936// Read the comment above.
937template <class ELFT> void OutputSection<ELFT>::sortCtorsDtors() {
938 std::stable_sort(Sections.begin(), Sections.end(), compCtors<ELFT>);
Rui Ueyamac4185702016-02-10 23:20:42 +0000939}
940
George Rimare2ee72b2016-02-26 14:48:31 +0000941static void fill(uint8_t *Buf, size_t Size, ArrayRef<uint8_t> A) {
942 size_t I = 0;
943 for (; I + A.size() < Size; I += A.size())
944 memcpy(Buf + I, A.data(), A.size());
945 memcpy(Buf + I, A.data(), Size - I);
946}
947
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000948template <class ELFT> void OutputSection<ELFT>::writeTo(uint8_t *Buf) {
Rui Ueyama07320e42016-04-20 20:13:41 +0000949 ArrayRef<uint8_t> Filler = Script<ELFT>::X->getFiller(this->Name);
George Rimare2ee72b2016-02-26 14:48:31 +0000950 if (!Filler.empty())
951 fill(Buf, this->getSize(), Filler);
Rui Ueyamae9809502016-03-11 04:23:12 +0000952 if (Config->Threads) {
953 parallel_for_each(Sections.begin(), Sections.end(),
954 [=](InputSection<ELFT> *C) { C->writeTo(Buf); });
955 } else {
956 for (InputSection<ELFT> *C : Sections)
957 C->writeTo(Buf);
958 }
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000959}
960
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +0000961template <class ELFT>
Rui Ueyamad97e5c42016-01-07 18:33:11 +0000962EHOutputSection<ELFT>::EHOutputSection(StringRef Name, uint32_t Type,
963 uintX_t Flags)
George Rimarf6bc65a2016-01-15 13:34:52 +0000964 : OutputSectionBase<ELFT>(Name, Type, Flags) {
965 Out<ELFT>::EhFrameHdr->assignEhFrame(this);
966}
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000967
968template <class ELFT>
Rafael Espindola56004c52016-04-07 14:22:09 +0000969void EHOutputSection<ELFT>::forEachInputSection(
970 std::function<void(InputSectionBase<ELFT> *)> F) {
971 for (EHInputSection<ELFT> *S : Sections)
972 F(S);
973}
974
975template <class ELFT>
Rui Ueyama10803512016-05-22 00:25:30 +0000976EHRegion<ELFT>::EHRegion(EHInputSection<ELFT> *Sec, unsigned Index)
977 : Sec(Sec), Index(Index) {}
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000978
Rui Ueyama644ac652016-05-22 00:17:11 +0000979template <class ELFT> ArrayRef<uint8_t> EHRegion<ELFT>::data() const {
Rui Ueyama10803512016-05-22 00:25:30 +0000980 ArrayRef<uint8_t> SecData = Sec->getSectionData();
981 size_t Start = Sec->Pieces[Index].InputOff;
982 size_t End = (Index == Sec->Pieces.size() - 1)
983 ? SecData.size()
984 : Sec->Pieces[Index + 1].InputOff;
Rui Ueyama644ac652016-05-22 00:17:11 +0000985 return SecData.slice(Start, End - Start);
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000986}
987
988template <class ELFT>
Rui Ueyama10803512016-05-22 00:25:30 +0000989CieRecord<ELFT>::CieRecord(EHInputSection<ELFT> *Sec, unsigned Index)
990 : EHRegion<ELFT>(Sec, Index) {}
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000991
George Rimarf6bc65a2016-01-15 13:34:52 +0000992// Read a byte and advance D by one byte.
993static uint8_t readByte(ArrayRef<uint8_t> &D) {
994 if (D.empty())
George Rimar57610422016-03-11 14:43:02 +0000995 fatal("corrupted or unsupported CIE information");
George Rimarf6bc65a2016-01-15 13:34:52 +0000996 uint8_t B = D.front();
997 D = D.slice(1);
998 return B;
999}
1000
1001static void skipLeb128(ArrayRef<uint8_t> &D) {
1002 while (!D.empty()) {
1003 uint8_t Val = D.front();
1004 D = D.slice(1);
1005 if ((Val & 0x80) == 0)
1006 return;
1007 }
George Rimar57610422016-03-11 14:43:02 +00001008 fatal("corrupted or unsupported CIE information");
George Rimarf6bc65a2016-01-15 13:34:52 +00001009}
1010
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001011template <class ELFT> static size_t getAugPSize(unsigned Enc) {
1012 switch (Enc & 0x0f) {
Rui Ueyamadbcfedb2016-02-09 21:46:11 +00001013 case DW_EH_PE_absptr:
1014 case DW_EH_PE_signed:
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001015 return ELFT::Is64Bits ? 8 : 4;
Rui Ueyamadbcfedb2016-02-09 21:46:11 +00001016 case DW_EH_PE_udata2:
1017 case DW_EH_PE_sdata2:
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001018 return 2;
Rui Ueyamadbcfedb2016-02-09 21:46:11 +00001019 case DW_EH_PE_udata4:
1020 case DW_EH_PE_sdata4:
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001021 return 4;
Rui Ueyamadbcfedb2016-02-09 21:46:11 +00001022 case DW_EH_PE_udata8:
1023 case DW_EH_PE_sdata8:
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001024 return 8;
1025 }
George Rimar57610422016-03-11 14:43:02 +00001026 fatal("unknown FDE encoding");
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001027}
1028
1029template <class ELFT> static void skipAugP(ArrayRef<uint8_t> &D) {
1030 uint8_t Enc = readByte(D);
Rui Ueyamadbcfedb2016-02-09 21:46:11 +00001031 if ((Enc & 0xf0) == DW_EH_PE_aligned)
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001032 fatal("DW_EH_PE_aligned encoding is not supported");
1033 size_t Size = getAugPSize<ELFT>(Enc);
Rafael Espindola9e072d32016-02-09 22:47:34 +00001034 if (Size >= D.size())
George Rimar57610422016-03-11 14:43:02 +00001035 fatal("corrupted CIE");
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001036 D = D.slice(Size);
1037}
1038
George Rimarf6bc65a2016-01-15 13:34:52 +00001039template <class ELFT>
1040uint8_t EHOutputSection<ELFT>::getFdeEncoding(ArrayRef<uint8_t> D) {
Rui Ueyamabe748c22016-02-08 05:18:44 +00001041 if (D.size() < 8)
1042 fatal("CIE too small");
George Rimarf6bc65a2016-01-15 13:34:52 +00001043 D = D.slice(8);
1044
1045 uint8_t Version = readByte(D);
1046 if (Version != 1 && Version != 3)
Rui Ueyama64cfffd2016-01-28 18:40:06 +00001047 fatal("FDE version 1 or 3 expected, but got " + Twine((unsigned)Version));
George Rimarf6bc65a2016-01-15 13:34:52 +00001048
Saleem Abdulrasoolc0571e12016-02-15 03:45:18 +00001049 const unsigned char *AugEnd = std::find(D.begin() + 1, D.end(), '\0');
Rui Ueyamabe748c22016-02-08 05:18:44 +00001050 if (AugEnd == D.end())
George Rimar57610422016-03-11 14:43:02 +00001051 fatal("corrupted CIE");
Saleem Abdulrasoolc0571e12016-02-15 03:45:18 +00001052 StringRef Aug(reinterpret_cast<const char *>(D.begin()), AugEnd - D.begin());
Rui Ueyamabe748c22016-02-08 05:18:44 +00001053 D = D.slice(Aug.size() + 1);
George Rimarf6bc65a2016-01-15 13:34:52 +00001054
1055 // Code alignment factor should always be 1 for .eh_frame.
1056 if (readByte(D) != 1)
Rui Ueyama64cfffd2016-01-28 18:40:06 +00001057 fatal("CIE code alignment must be 1");
Rui Ueyamabe748c22016-02-08 05:18:44 +00001058
1059 // Skip data alignment factor.
George Rimarf6bc65a2016-01-15 13:34:52 +00001060 skipLeb128(D);
1061
1062 // Skip the return address register. In CIE version 1 this is a single
1063 // byte. In CIE version 3 this is an unsigned LEB128.
1064 if (Version == 1)
1065 readByte(D);
1066 else
1067 skipLeb128(D);
1068
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001069 // We only care about an 'R' value, but other records may precede an 'R'
1070 // record. Records are not in TLV (type-length-value) format, so we need
1071 // to teach the linker how to skip records for each type.
Rui Ueyamad3bd97a2016-02-09 23:11:21 +00001072 for (char C : Aug) {
1073 if (C == 'R')
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001074 return readByte(D);
Rui Ueyamad3bd97a2016-02-09 23:11:21 +00001075 if (C == 'z') {
1076 skipLeb128(D);
1077 continue;
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001078 }
Rui Ueyamad3bd97a2016-02-09 23:11:21 +00001079 if (C == 'P') {
1080 skipAugP<ELFT>(D);
1081 continue;
1082 }
Simon Atanasyanea423e22016-03-02 05:38:42 +00001083 if (C == 'L') {
1084 readByte(D);
Rui Ueyamad3bd97a2016-02-09 23:11:21 +00001085 continue;
Simon Atanasyanea423e22016-03-02 05:38:42 +00001086 }
George Rimar57610422016-03-11 14:43:02 +00001087 fatal("unknown .eh_frame augmentation string: " + Aug);
Rui Ueyama6448f8a2016-02-09 21:41:01 +00001088 }
Rui Ueyamadbcfedb2016-02-09 21:46:11 +00001089 return DW_EH_PE_absptr;
George Rimarf6bc65a2016-01-15 13:34:52 +00001090}
1091
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001092template <class ELFT>
Rui Ueyama9328b2c2016-03-14 23:16:09 +00001093static typename ELFT::uint readEntryLength(ArrayRef<uint8_t> D) {
Rui Ueyamac0c92602016-02-05 22:56:03 +00001094 const endianness E = ELFT::TargetEndianness;
Rui Ueyamac0c92602016-02-05 22:56:03 +00001095 if (D.size() < 4)
Rui Ueyama1b45cca2016-02-05 23:24:05 +00001096 fatal("CIE/FDE too small");
1097
1098 // First 4 bytes of CIE/FDE is the size of the record.
1099 // If it is 0xFFFFFFFF, the next 8 bytes contain the size instead.
1100 uint64_t V = read32<E>(D.data());
1101 if (V < UINT32_MAX) {
1102 uint64_t Len = V + 4;
1103 if (Len > D.size())
Rui Ueyamac0c92602016-02-05 22:56:03 +00001104 fatal("CIE/FIE ends past the end of the section");
Rui Ueyama1b45cca2016-02-05 23:24:05 +00001105 return Len;
Rui Ueyamac0c92602016-02-05 22:56:03 +00001106 }
1107
1108 if (D.size() < 12)
Rui Ueyama1b45cca2016-02-05 23:24:05 +00001109 fatal("CIE/FDE too small");
1110 V = read64<E>(D.data() + 4);
1111 uint64_t Len = V + 12;
1112 if (Len < V || D.size() < Len)
Rui Ueyamac0c92602016-02-05 22:56:03 +00001113 fatal("CIE/FIE ends past the end of the section");
Rui Ueyama1b45cca2016-02-05 23:24:05 +00001114 return Len;
Rui Ueyamac0c92602016-02-05 22:56:03 +00001115}
1116
Rui Ueyama6bf7d912016-05-21 19:06:33 +00001117// Returns the first relocation that points to a region
1118// between Begin and Begin+Size.
1119template <class IntTy, class RelTy>
1120static const RelTy *getReloc(IntTy Begin, IntTy Size, ArrayRef<RelTy> Rels) {
1121 size_t I = 0;
1122 size_t E = Rels.size();
1123 while (I != E && Rels[I].r_offset < Begin)
1124 ++I;
1125 if (I == E || Begin + Size <= Rels[I].r_offset)
1126 return nullptr;
1127 return &Rels[I];
1128}
1129
Rui Ueyamac0c92602016-02-05 22:56:03 +00001130template <class ELFT>
Rui Ueyamafc467e72016-03-13 05:06:50 +00001131template <class RelTy>
Rui Ueyama10803512016-05-22 00:25:30 +00001132void EHOutputSection<ELFT>::addSectionAux(EHInputSection<ELFT> *Sec,
Rafael Espindola0f7ccc32016-04-05 14:47:28 +00001133 ArrayRef<RelTy> Rels) {
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001134 const endianness E = ELFT::TargetEndianness;
1135
Rui Ueyama10803512016-05-22 00:25:30 +00001136 Sec->OutSec = this;
1137 this->updateAlign(Sec->Align);
1138 Sections.push_back(Sec);
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001139
Rui Ueyama10803512016-05-22 00:25:30 +00001140 ArrayRef<uint8_t> D = Sec->getSectionData();
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001141 uintX_t Offset = 0;
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001142
Rui Ueyama4f798fc2016-05-21 19:22:46 +00001143 DenseMap<uintX_t, uintX_t> OffsetToIndex;
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001144 while (!D.empty()) {
Rui Ueyama10803512016-05-22 00:25:30 +00001145 unsigned Index = Sec->Pieces.size();
1146 Sec->Pieces.emplace_back(Offset);
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001147
Rui Ueyamac0c92602016-02-05 22:56:03 +00001148 uintX_t Length = readEntryLength<ELFT>(D);
George Rimarf6bc65a2016-01-15 13:34:52 +00001149 // If CIE/FDE data length is zero then Length is 4, this
1150 // shall be considered a terminator and processing shall end.
1151 if (Length == 4)
1152 break;
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001153 StringRef Entry((const char *)D.data(), Length);
1154
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001155 uint32_t ID = read32<E>(D.data() + 4);
1156 if (ID == 0) {
1157 // CIE
Rui Ueyama10803512016-05-22 00:25:30 +00001158 CieRecord<ELFT> Cie(Sec, Index);
George Rimarf6bc65a2016-01-15 13:34:52 +00001159 if (Config->EhFrameHdr)
Rui Ueyama10803512016-05-22 00:25:30 +00001160 Cie.FdeEncoding = getFdeEncoding(D);
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001161
Rafael Espindola156ed8d2016-02-10 13:19:32 +00001162 SymbolBody *Personality = nullptr;
Rui Ueyama6bf7d912016-05-21 19:06:33 +00001163 if (const RelTy *Rel = getReloc(Offset, Length, Rels))
Rui Ueyama10803512016-05-22 00:25:30 +00001164 Personality = &Sec->getFile()->getRelocTargetSym(*Rel);
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001165
Rafael Espindola156ed8d2016-02-10 13:19:32 +00001166 std::pair<StringRef, SymbolBody *> CieInfo(Entry, Personality);
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001167 auto P = CieMap.insert(std::make_pair(CieInfo, Cies.size()));
George Rimar147747a2016-01-02 16:55:01 +00001168 if (P.second) {
Rui Ueyama10803512016-05-22 00:25:30 +00001169 Cies.push_back(Cie);
Rui Ueyama489a8062016-01-14 20:53:50 +00001170 this->Header.sh_size += alignTo(Length, sizeof(uintX_t));
George Rimar147747a2016-01-02 16:55:01 +00001171 }
1172 OffsetToIndex[Offset] = P.first->second;
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001173 } else {
Rui Ueyama6bf7d912016-05-21 19:06:33 +00001174 const RelTy *Rel = getReloc(Offset, Length, Rels);
1175 if (!Rel)
Rui Ueyama64cfffd2016-01-28 18:40:06 +00001176 fatal("FDE doesn't reference another section");
Rui Ueyama10803512016-05-22 00:25:30 +00001177 SymbolBody &B = Sec->getFile()->getRelocTargetSym(*Rel);
Rui Ueyama6bf7d912016-05-21 19:06:33 +00001178
Peter Collingbourne676c7cd2016-04-26 23:52:44 +00001179 auto *D = dyn_cast<DefinedRegular<ELFT>>(&B);
1180 if (D && D->Section) {
1181 InputSectionBase<ELFT> *Target = D->Section->Repl;
1182 if (Target && Target->Live) {
1183 uint32_t CieOffset = Offset + 4 - ID;
1184 auto I = OffsetToIndex.find(CieOffset);
1185 if (I == OffsetToIndex.end())
1186 fatal("invalid CIE reference");
Rui Ueyama10803512016-05-22 00:25:30 +00001187 Cies[I->second].Fdes.push_back(EHRegion<ELFT>(Sec, Index));
Peter Collingbourne676c7cd2016-04-26 23:52:44 +00001188 Out<ELFT>::EhFrameHdr->reserveFde();
1189 this->Header.sh_size += alignTo(Length, sizeof(uintX_t));
1190 }
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001191 }
1192 }
1193
Rui Ueyama6bf7d912016-05-21 19:06:33 +00001194 Offset += Length;
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001195 D = D.slice(Length);
1196 }
1197}
1198
1199template <class ELFT>
Rui Ueyama40845e62015-12-26 05:51:07 +00001200void EHOutputSection<ELFT>::addSection(InputSectionBase<ELFT> *C) {
Rui Ueyama10803512016-05-22 00:25:30 +00001201 auto *Sec = cast<EHInputSection<ELFT>>(C);
1202 const Elf_Shdr *RelSec = Sec->RelocSection;
Rui Ueyama0de86c12016-01-27 22:23:44 +00001203 if (!RelSec) {
Rui Ueyama10803512016-05-22 00:25:30 +00001204 addSectionAux(Sec, makeArrayRef<Elf_Rela>(nullptr, nullptr));
Rui Ueyama0de86c12016-01-27 22:23:44 +00001205 return;
1206 }
Rui Ueyama10803512016-05-22 00:25:30 +00001207 ELFFile<ELFT> &Obj = Sec->getFile()->getObj();
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001208 if (RelSec->sh_type == SHT_RELA)
Rui Ueyama10803512016-05-22 00:25:30 +00001209 addSectionAux(Sec, Obj.relas(RelSec));
Rui Ueyama0de86c12016-01-27 22:23:44 +00001210 else
Rui Ueyama10803512016-05-22 00:25:30 +00001211 addSectionAux(Sec, Obj.rels(RelSec));
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001212}
1213
Rafael Espindola91bd48a2015-12-24 20:44:06 +00001214template <class ELFT>
Rui Ueyama644ac652016-05-22 00:17:11 +00001215static void writeCieFde(uint8_t *Buf, ArrayRef<uint8_t> D) {
1216 memcpy(Buf, D.data(), D.size());
Rui Ueyamac0449a62016-05-21 18:10:13 +00001217
1218 // Fix the size field. -4 since size does not include the size field itself.
Rafael Espindola91bd48a2015-12-24 20:44:06 +00001219 const endianness E = ELFT::TargetEndianness;
Rui Ueyama644ac652016-05-22 00:17:11 +00001220 write32<E>(Buf, alignTo(D.size(), sizeof(typename ELFT::uint)) - 4);
Rafael Espindola56004c52016-04-07 14:22:09 +00001221}
1222
1223template <class ELFT> void EHOutputSection<ELFT>::finalize() {
1224 if (Finalized)
1225 return;
1226 Finalized = true;
1227
1228 size_t Offset = 0;
Rui Ueyama10803512016-05-22 00:25:30 +00001229 for (const CieRecord<ELFT> &Cie : Cies) {
1230 Cie.Sec->Pieces[Cie.Index].OutputOff = Offset;
1231 Offset += alignTo(Cie.data().size(), sizeof(uintX_t));
Rafael Espindola56004c52016-04-07 14:22:09 +00001232
Rui Ueyama10803512016-05-22 00:25:30 +00001233 for (const EHRegion<ELFT> &Fde : Cie.Fdes) {
1234 Fde.Sec->Pieces[Fde.Index].OutputOff = Offset;
1235 Offset += alignTo(Fde.data().size(), sizeof(uintX_t));
Rafael Espindola56004c52016-04-07 14:22:09 +00001236 }
1237 }
Rafael Espindola91bd48a2015-12-24 20:44:06 +00001238}
1239
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001240template <class ELFT> void EHOutputSection<ELFT>::writeTo(uint8_t *Buf) {
1241 const endianness E = ELFT::TargetEndianness;
Rui Ueyama10803512016-05-22 00:25:30 +00001242 for (const CieRecord<ELFT> &Cie : Cies) {
1243 size_t CieOffset = Cie.Sec->Pieces[Cie.Index].OutputOff;
1244 writeCieFde<ELFT>(Buf + CieOffset, Cie.data());
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001245
Rui Ueyama10803512016-05-22 00:25:30 +00001246 for (const EHRegion<ELFT> &Fde : Cie.Fdes) {
1247 size_t Offset = Fde.Sec->Pieces[Fde.Index].OutputOff;
1248 writeCieFde<ELFT>(Buf + Offset, Fde.data());
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001249 write32<E>(Buf + Offset + 4, Offset + 4 - CieOffset); // Pointer
Rafael Espindola56004c52016-04-07 14:22:09 +00001250
Rui Ueyama10803512016-05-22 00:25:30 +00001251 Out<ELFT>::EhFrameHdr->addFde(Cie.FdeEncoding, Offset, Buf + Offset + 8);
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001252 }
1253 }
1254
Rafael Espindola22ef9562016-04-13 01:40:19 +00001255 for (EHInputSection<ELFT> *S : Sections)
1256 S->relocate(Buf, nullptr);
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001257}
1258
1259template <class ELFT>
Rui Ueyamad97e5c42016-01-07 18:33:11 +00001260MergeOutputSection<ELFT>::MergeOutputSection(StringRef Name, uint32_t Type,
Rafael Espindola7efa5be2016-02-19 14:17:40 +00001261 uintX_t Flags, uintX_t Alignment)
1262 : OutputSectionBase<ELFT>(Name, Type, Flags),
1263 Builder(llvm::StringTableBuilder::RAW, Alignment) {}
Rafael Espindolac159c962015-10-19 21:00:02 +00001264
1265template <class ELFT> void MergeOutputSection<ELFT>::writeTo(uint8_t *Buf) {
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001266 if (shouldTailMerge()) {
1267 StringRef Data = Builder.data();
Rafael Espindolac159c962015-10-19 21:00:02 +00001268 memcpy(Buf, Data.data(), Data.size());
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001269 return;
Rafael Espindolac159c962015-10-19 21:00:02 +00001270 }
Rui Ueyama31f9f612016-05-06 00:52:08 +00001271 for (const std::pair<CachedHash<StringRef>, size_t> &P : Builder.getMap()) {
1272 StringRef Data = P.first.Val;
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001273 memcpy(Buf + P.second, Data.data(), Data.size());
1274 }
1275}
1276
Rafael Espindolac159c962015-10-19 21:00:02 +00001277template <class ELFT>
Rui Ueyama40845e62015-12-26 05:51:07 +00001278void MergeOutputSection<ELFT>::addSection(InputSectionBase<ELFT> *C) {
Rui Ueyama10803512016-05-22 00:25:30 +00001279 auto *Sec = cast<MergeInputSection<ELFT>>(C);
1280 Sec->OutSec = this;
1281 this->updateAlign(Sec->Align);
Rafael Espindolac159c962015-10-19 21:00:02 +00001282
Rui Ueyama10803512016-05-22 00:25:30 +00001283 ArrayRef<uint8_t> D = Sec->getSectionData();
George Rimarf940d592015-10-25 20:14:07 +00001284 StringRef Data((const char *)D.data(), D.size());
Rui Ueyama10803512016-05-22 00:25:30 +00001285 uintX_t EntSize = Sec->getSectionHdr()->sh_entsize;
George Rimar0baa1d32016-03-18 09:28:39 +00001286 this->Header.sh_entsize = EntSize;
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001287
Rui Ueyamaead75fc2016-01-29 22:18:55 +00001288 // If this is of type string, the contents are null-terminated strings.
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001289 if (this->Header.sh_flags & SHF_STRINGS) {
Rui Ueyama10803512016-05-22 00:25:30 +00001290 for (unsigned I = 0, N = Sec->Pieces.size(); I != N; ++I) {
1291 SectionPiece &Piece = Sec->Pieces[I];
Rui Ueyama3ea87272016-05-22 00:13:04 +00001292 if (!Piece.Live)
Rafael Espindola0b9531c2016-04-22 22:09:35 +00001293 continue;
1294
Rui Ueyama3ea87272016-05-22 00:13:04 +00001295 uintX_t Start = Piece.InputOff;
Rui Ueyama10803512016-05-22 00:25:30 +00001296 uintX_t End = (I == N - 1) ? Data.size() : Sec->Pieces[I + 1].InputOff;
Rafael Espindola0b9531c2016-04-22 22:09:35 +00001297 StringRef Entry = Data.substr(Start, End - Start);
George Rimar4b40ebc2015-11-13 13:44:59 +00001298 uintX_t OutputOffset = Builder.add(Entry);
Rui Ueyama3ea87272016-05-22 00:13:04 +00001299 if (!shouldTailMerge())
1300 Piece.OutputOff = OutputOffset;
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001301 }
Rui Ueyamaead75fc2016-01-29 22:18:55 +00001302 return;
1303 }
1304
1305 // If this is not of type string, every entry has the same size.
Rui Ueyama10803512016-05-22 00:25:30 +00001306 for (SectionPiece &Piece : Sec->Pieces) {
Rui Ueyama3ea87272016-05-22 00:13:04 +00001307 if (!Piece.Live)
Rafael Espindola0b9531c2016-04-22 22:09:35 +00001308 continue;
Rui Ueyama3ea87272016-05-22 00:13:04 +00001309 StringRef Entry = Data.substr(Piece.InputOff, EntSize);
1310 Piece.OutputOff = Builder.add(Entry);
Rafael Espindolac159c962015-10-19 21:00:02 +00001311 }
Rafael Espindolac159c962015-10-19 21:00:02 +00001312}
1313
1314template <class ELFT>
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001315unsigned MergeOutputSection<ELFT>::getOffset(StringRef Val) {
1316 return Builder.getOffset(Val);
1317}
1318
1319template <class ELFT> bool MergeOutputSection<ELFT>::shouldTailMerge() const {
1320 return Config->Optimize >= 2 && this->Header.sh_flags & SHF_STRINGS;
1321}
1322
1323template <class ELFT> void MergeOutputSection<ELFT>::finalize() {
1324 if (shouldTailMerge())
1325 Builder.finalize();
1326 this->Header.sh_size = Builder.getSize();
Rafael Espindolac159c962015-10-19 21:00:02 +00001327}
1328
1329template <class ELFT>
George Rimar0f5ac9f2015-10-20 17:21:35 +00001330StringTableSection<ELFT>::StringTableSection(StringRef Name, bool Dynamic)
Rui Ueyama6ffb42a2016-01-07 20:53:30 +00001331 : OutputSectionBase<ELFT>(Name, SHT_STRTAB,
1332 Dynamic ? (uintX_t)SHF_ALLOC : 0),
Rafael Espindola35c6af32015-09-25 17:19:10 +00001333 Dynamic(Dynamic) {
1334 this->Header.sh_addralign = 1;
1335}
1336
Rafael Espindolae2c24612016-01-29 01:24:25 +00001337// Adds a string to the string table. If HashIt is true we hash and check for
1338// duplicates. It is optional because the name of global symbols are already
1339// uniqued and hashing them again has a big cost for a small value: uniquing
1340// them with some other string that happens to be the same.
1341template <class ELFT>
1342unsigned StringTableSection<ELFT>::addString(StringRef S, bool HashIt) {
1343 if (HashIt) {
1344 auto R = StringMap.insert(std::make_pair(S, Size));
1345 if (!R.second)
1346 return R.first->second;
1347 }
1348 unsigned Ret = Size;
1349 Size += S.size() + 1;
Rui Ueyama76c00632016-01-07 02:35:32 +00001350 Strings.push_back(S);
Rafael Espindolae2c24612016-01-29 01:24:25 +00001351 return Ret;
Rui Ueyama76c00632016-01-07 02:35:32 +00001352}
1353
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +00001354template <class ELFT> void StringTableSection<ELFT>::writeTo(uint8_t *Buf) {
Rui Ueyama76c00632016-01-07 02:35:32 +00001355 // ELF string tables start with NUL byte, so advance the pointer by one.
1356 ++Buf;
1357 for (StringRef S : Strings) {
1358 memcpy(Buf, S.data(), S.size());
1359 Buf += S.size() + 1;
1360 }
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001361}
1362
Rafael Espindolad1cf4212015-10-05 16:25:43 +00001363template <class ELFT>
Rafael Espindola35c6af32015-09-25 17:19:10 +00001364SymbolTableSection<ELFT>::SymbolTableSection(
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +00001365 SymbolTable<ELFT> &Table, StringTableSection<ELFT> &StrTabSec)
Rui Ueyamacf07a312016-01-06 22:53:58 +00001366 : OutputSectionBase<ELFT>(StrTabSec.isDynamic() ? ".dynsym" : ".symtab",
1367 StrTabSec.isDynamic() ? SHT_DYNSYM : SHT_SYMTAB,
Rui Ueyama6ffb42a2016-01-07 20:53:30 +00001368 StrTabSec.isDynamic() ? (uintX_t)SHF_ALLOC : 0),
Rafael Espindolae2c24612016-01-29 01:24:25 +00001369 StrTabSec(StrTabSec), Table(Table) {
Rui Ueyamad1e92aa2016-01-07 18:20:02 +00001370 this->Header.sh_entsize = sizeof(Elf_Sym);
Rui Ueyama5e378dd2016-01-29 22:18:57 +00001371 this->Header.sh_addralign = sizeof(uintX_t);
Rafael Espindola35c6af32015-09-25 17:19:10 +00001372}
1373
Igor Kudrinf4cdfe882015-11-12 04:08:12 +00001374// Orders symbols according to their positions in the GOT,
1375// in compliance with MIPS ABI rules.
1376// See "Global Offset Table" in Chapter 5 in the following document
1377// for detailed description:
1378// ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
Rafael Espindolae2c24612016-01-29 01:24:25 +00001379static bool sortMipsSymbols(const std::pair<SymbolBody *, unsigned> &L,
1380 const std::pair<SymbolBody *, unsigned> &R) {
Simon Atanasyand2980d32016-03-29 14:07:22 +00001381 // Sort entries related to non-local preemptible symbols by GOT indexes.
1382 // All other entries go to the first part of GOT in arbitrary order.
1383 bool LIsInLocalGot = !L.first->isInGot() || !L.first->isPreemptible();
1384 bool RIsInLocalGot = !R.first->isInGot() || !R.first->isPreemptible();
1385 if (LIsInLocalGot || RIsInLocalGot)
1386 return !RIsInLocalGot;
Rafael Espindolae2c24612016-01-29 01:24:25 +00001387 return L.first->GotIndex < R.first->GotIndex;
Igor Kudrinf4cdfe882015-11-12 04:08:12 +00001388}
1389
Rafael Espindolabadd3972016-04-08 15:30:56 +00001390static uint8_t getSymbolBinding(SymbolBody *Body) {
Peter Collingbourne4f952702016-05-01 04:55:03 +00001391 Symbol *S = Body->symbol();
Rafael Espindola9e32e4f2016-04-26 13:50:46 +00001392 uint8_t Visibility = S->Visibility;
Rafael Espindolabadd3972016-04-08 15:30:56 +00001393 if (Visibility != STV_DEFAULT && Visibility != STV_PROTECTED)
1394 return STB_LOCAL;
Rafael Espindola9e32e4f2016-04-26 13:50:46 +00001395 if (Config->NoGnuUnique && S->Binding == STB_GNU_UNIQUE)
Rafael Espindolabadd3972016-04-08 15:30:56 +00001396 return STB_GLOBAL;
Rafael Espindola9e32e4f2016-04-26 13:50:46 +00001397 return S->Binding;
Rafael Espindolabadd3972016-04-08 15:30:56 +00001398}
1399
Rui Ueyama0db335f2015-10-07 16:58:54 +00001400template <class ELFT> void SymbolTableSection<ELFT>::finalize() {
Igor Kudrin2169b1b2015-11-02 10:46:14 +00001401 if (this->Header.sh_size)
1402 return; // Already finalized.
1403
Rui Ueyama0db335f2015-10-07 16:58:54 +00001404 this->Header.sh_size = getNumSymbols() * sizeof(Elf_Sym);
Rui Ueyama2317d0d2015-10-15 20:55:22 +00001405 this->Header.sh_link = StrTabSec.SectionIndex;
Rui Ueyama0db335f2015-10-07 16:58:54 +00001406 this->Header.sh_info = NumLocals + 1;
Igor Kudrinab665fc2015-10-20 21:47:58 +00001407
George Rimar58941ee2016-02-25 08:23:37 +00001408 if (Config->Relocatable) {
1409 size_t I = NumLocals;
1410 for (const std::pair<SymbolBody *, size_t> &P : Symbols)
1411 P.first->DynsymIndex = ++I;
1412 return;
1413 }
1414
Igor Kudrinab665fc2015-10-20 21:47:58 +00001415 if (!StrTabSec.isDynamic()) {
1416 std::stable_sort(Symbols.begin(), Symbols.end(),
Rafael Espindolae2c24612016-01-29 01:24:25 +00001417 [](const std::pair<SymbolBody *, unsigned> &L,
1418 const std::pair<SymbolBody *, unsigned> &R) {
1419 return getSymbolBinding(L.first) == STB_LOCAL &&
1420 getSymbolBinding(R.first) != STB_LOCAL;
Igor Kudrinab665fc2015-10-20 21:47:58 +00001421 });
1422 return;
1423 }
Igor Kudrinf1d60292015-10-28 07:05:56 +00001424 if (Out<ELFT>::GnuHashTab)
1425 // NB: It also sorts Symbols to meet the GNU hash table requirements.
1426 Out<ELFT>::GnuHashTab->addSymbols(Symbols);
Igor Kudrinf4cdfe882015-11-12 04:08:12 +00001427 else if (Config->EMachine == EM_MIPS)
1428 std::stable_sort(Symbols.begin(), Symbols.end(), sortMipsSymbols);
Igor Kudrinab665fc2015-10-20 21:47:58 +00001429 size_t I = 0;
Rui Ueyamac2e863a2016-02-17 05:06:40 +00001430 for (const std::pair<SymbolBody *, size_t> &P : Symbols)
Rui Ueyama572a6f72016-01-29 01:49:33 +00001431 P.first->DynsymIndex = ++I;
Igor Kudrinab665fc2015-10-20 21:47:58 +00001432}
1433
1434template <class ELFT>
Rui Ueyamac2e863a2016-02-17 05:06:40 +00001435void SymbolTableSection<ELFT>::addSymbol(SymbolBody *B) {
1436 Symbols.push_back({B, StrTabSec.addString(B->getName(), false)});
Rui Ueyama0db335f2015-10-07 16:58:54 +00001437}
1438
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001439template <class ELFT> void SymbolTableSection<ELFT>::writeTo(uint8_t *Buf) {
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001440 Buf += sizeof(Elf_Sym);
1441
1442 // All symbols with STB_LOCAL binding precede the weak and global symbols.
1443 // .dynsym only contains global symbols.
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001444 if (!Config->DiscardAll && !StrTabSec.isDynamic())
1445 writeLocalSymbols(Buf);
1446
1447 writeGlobalSymbols(Buf);
1448}
1449
1450template <class ELFT>
1451void SymbolTableSection<ELFT>::writeLocalSymbols(uint8_t *&Buf) {
1452 // Iterate over all input object files to copy their local symbols
1453 // to the output symbol table pointed by Buf.
Rui Ueyama3ce825e2015-10-09 21:07:25 +00001454 for (const std::unique_ptr<ObjectFile<ELFT>> &File : Table.getObjectFiles()) {
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001455 for (const std::pair<const DefinedRegular<ELFT> *, size_t> &P :
1456 File->KeptLocalSyms) {
1457 const DefinedRegular<ELFT> &Body = *P.first;
1458 InputSectionBase<ELFT> *Section = Body.Section;
Rui Ueyamac55733e2015-09-30 00:54:29 +00001459 auto *ESym = reinterpret_cast<Elf_Sym *>(Buf);
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001460
1461 if (!Section) {
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001462 ESym->st_shndx = SHN_ABS;
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001463 ESym->st_value = Body.Value;
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001464 } else {
Rafael Espindolac159c962015-10-19 21:00:02 +00001465 const OutputSectionBase<ELFT> *OutSec = Section->OutSec;
1466 ESym->st_shndx = OutSec->SectionIndex;
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001467 ESym->st_value = OutSec->getVA() + Section->getOffset(Body);
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001468 }
Rafael Espindolae2c24612016-01-29 01:24:25 +00001469 ESym->st_name = P.second;
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001470 ESym->st_size = Body.template getSize<ELFT>();
Rafael Espindola9e32e4f2016-04-26 13:50:46 +00001471 ESym->setBindingAndType(STB_LOCAL, Body.Type);
Rui Ueyamac4aaed92015-10-22 18:49:53 +00001472 Buf += sizeof(*ESym);
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001473 }
1474 }
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001475}
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001476
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001477template <class ELFT>
Igor Kudrinea6a8352015-10-19 08:01:51 +00001478void SymbolTableSection<ELFT>::writeGlobalSymbols(uint8_t *Buf) {
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001479 // Write the internal symbol table contents to the output symbol table
1480 // pointed by Buf.
Igor Kudrinab665fc2015-10-20 21:47:58 +00001481 auto *ESym = reinterpret_cast<Elf_Sym *>(Buf);
Rui Ueyamac2e863a2016-02-17 05:06:40 +00001482 for (const std::pair<SymbolBody *, size_t> &P : Symbols) {
Rafael Espindolae2c24612016-01-29 01:24:25 +00001483 SymbolBody *Body = P.first;
Rui Ueyamac2e863a2016-02-17 05:06:40 +00001484 size_t StrOff = P.second;
Rui Ueyamac4aaed92015-10-22 18:49:53 +00001485
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001486 uint8_t Type = Body->Type;
1487 uintX_t Size = Body->getSize<ELFT>();
Rafael Espindola8614c562015-10-06 14:33:58 +00001488
Igor Kudrin853b88d2015-10-20 20:52:14 +00001489 ESym->setBindingAndType(getSymbolBinding(Body), Type);
Rafael Espindola8614c562015-10-06 14:33:58 +00001490 ESym->st_size = Size;
Rui Ueyamac2e863a2016-02-17 05:06:40 +00001491 ESym->st_name = StrOff;
Peter Collingbourne4f952702016-05-01 04:55:03 +00001492 ESym->setVisibility(Body->symbol()->Visibility);
Rui Ueyamab5a69702016-02-01 21:00:35 +00001493 ESym->st_value = Body->getVA<ELFT>();
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001494
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001495 if (const OutputSectionBase<ELFT> *OutSec = getOutputSection(Body))
Rui Ueyama2317d0d2015-10-15 20:55:22 +00001496 ESym->st_shndx = OutSec->SectionIndex;
Rafael Espindola02ce26a2015-12-24 14:22:24 +00001497 else if (isa<DefinedRegular<ELFT>>(Body))
1498 ESym->st_shndx = SHN_ABS;
Simon Atanasyand040a582016-02-25 16:19:15 +00001499
1500 // On MIPS we need to mark symbol which has a PLT entry and requires pointer
1501 // equality by STO_MIPS_PLT flag. That is necessary to help dynamic linker
1502 // distinguish such symbols and MIPS lazy-binding stubs.
1503 // https://sourceware.org/ml/binutils/2008-07/txt00000.txt
1504 if (Config->EMachine == EM_MIPS && Body->isInPlt() &&
1505 Body->NeedsCopyOrPltAddr)
Simon Atanasyanbea96982016-02-25 21:09:05 +00001506 ESym->st_other |= STO_MIPS_PLT;
Igor Kudrinab665fc2015-10-20 21:47:58 +00001507 ++ESym;
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001508 }
1509}
1510
Igor Kudrin853b88d2015-10-20 20:52:14 +00001511template <class ELFT>
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001512const OutputSectionBase<ELFT> *
1513SymbolTableSection<ELFT>::getOutputSection(SymbolBody *Sym) {
1514 switch (Sym->kind()) {
1515 case SymbolBody::DefinedSyntheticKind:
Peter Collingbourne6a422592016-05-03 01:21:08 +00001516 return cast<DefinedSynthetic<ELFT>>(Sym)->Section;
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001517 case SymbolBody::DefinedRegularKind: {
Rafael Espindola5ffa13c2016-04-15 00:15:02 +00001518 auto &D = cast<DefinedRegular<ELFT>>(*Sym);
Rafael Espindola67d72c02016-03-11 12:06:30 +00001519 if (D.Section)
1520 return D.Section->OutSec;
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001521 break;
1522 }
1523 case SymbolBody::DefinedCommonKind:
1524 return Out<ELFT>::Bss;
1525 case SymbolBody::SharedKind:
1526 if (cast<SharedSymbol<ELFT>>(Sym)->needsCopy())
1527 return Out<ELFT>::Bss;
1528 break;
Peter Collingbourne60976ed2016-04-27 00:05:06 +00001529 case SymbolBody::UndefinedKind:
Rui Ueyamaf8baa662016-04-07 19:24:51 +00001530 case SymbolBody::LazyArchiveKind:
1531 case SymbolBody::LazyObjectKind:
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001532 break;
1533 case SymbolBody::DefinedBitcodeKind:
Davide Italianof6523ae2016-03-29 02:20:10 +00001534 llvm_unreachable("should have been replaced");
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001535 }
1536 return nullptr;
1537}
1538
1539template <class ELFT>
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001540VersionTableSection<ELFT>::VersionTableSection()
Rafael Espindolaeaaec4a2016-04-29 17:19:45 +00001541 : OutputSectionBase<ELFT>(".gnu.version", SHT_GNU_versym, SHF_ALLOC) {
Rafael Espindolaaae59562016-04-29 23:20:30 +00001542 this->Header.sh_addralign = sizeof(uint16_t);
Rafael Espindolaeaaec4a2016-04-29 17:19:45 +00001543}
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001544
1545template <class ELFT> void VersionTableSection<ELFT>::finalize() {
1546 this->Header.sh_size =
1547 sizeof(Elf_Versym) * (Out<ELFT>::DynSymTab->getSymbols().size() + 1);
1548 this->Header.sh_entsize = sizeof(Elf_Versym);
1549}
1550
1551template <class ELFT> void VersionTableSection<ELFT>::writeTo(uint8_t *Buf) {
1552 auto *OutVersym = reinterpret_cast<Elf_Versym *>(Buf) + 1;
1553 for (const std::pair<SymbolBody *, size_t> &P :
1554 Out<ELFT>::DynSymTab->getSymbols()) {
1555 if (auto *SS = dyn_cast<SharedSymbol<ELFT>>(P.first))
1556 OutVersym->vs_index = SS->VersionId;
1557 else
1558 // The reserved identifier for a non-versioned global symbol.
1559 OutVersym->vs_index = 1;
1560 ++OutVersym;
1561 }
1562}
1563
1564template <class ELFT>
1565VersionNeedSection<ELFT>::VersionNeedSection()
Rafael Espindolaeaaec4a2016-04-29 17:19:45 +00001566 : OutputSectionBase<ELFT>(".gnu.version_r", SHT_GNU_verneed, SHF_ALLOC) {
Rafael Espindolaaae59562016-04-29 23:20:30 +00001567 this->Header.sh_addralign = sizeof(uint32_t);
Rafael Espindolaeaaec4a2016-04-29 17:19:45 +00001568}
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001569
1570template <class ELFT>
1571void VersionNeedSection<ELFT>::addSymbol(SharedSymbol<ELFT> *SS) {
1572 if (!SS->Verdef) {
1573 // The reserved identifier for a non-versioned global symbol.
1574 SS->VersionId = 1;
1575 return;
1576 }
1577 SharedFile<ELFT> *F = SS->File;
1578 // If we don't already know that we need an Elf_Verneed for this DSO, prepare
1579 // to create one by adding it to our needed list and creating a dynstr entry
1580 // for the soname.
1581 if (F->VerdefMap.empty())
1582 Needed.push_back({F, Out<ELFT>::DynStrTab->addString(F->getSoName())});
1583 typename SharedFile<ELFT>::NeededVer &NV = F->VerdefMap[SS->Verdef];
1584 // If we don't already know that we need an Elf_Vernaux for this Elf_Verdef,
1585 // prepare to create one by allocating a version identifier and creating a
1586 // dynstr entry for the version name.
1587 if (NV.Index == 0) {
1588 NV.StrTab = Out<ELFT>::DynStrTab->addString(
1589 SS->File->getStringTable().data() + SS->Verdef->getAux()->vda_name);
1590 NV.Index = NextIndex++;
1591 }
1592 SS->VersionId = NV.Index;
1593}
1594
1595template <class ELFT> void VersionNeedSection<ELFT>::writeTo(uint8_t *Buf) {
1596 // The Elf_Verneeds need to appear first, followed by the Elf_Vernauxs.
1597 auto *Verneed = reinterpret_cast<Elf_Verneed *>(Buf);
1598 auto *Vernaux = reinterpret_cast<Elf_Vernaux *>(Verneed + Needed.size());
1599
1600 for (std::pair<SharedFile<ELFT> *, size_t> &P : Needed) {
1601 // Create an Elf_Verneed for this DSO.
1602 Verneed->vn_version = 1;
1603 Verneed->vn_cnt = P.first->VerdefMap.size();
1604 Verneed->vn_file = P.second;
1605 Verneed->vn_aux =
1606 reinterpret_cast<char *>(Vernaux) - reinterpret_cast<char *>(Verneed);
1607 Verneed->vn_next = sizeof(Elf_Verneed);
1608 ++Verneed;
1609
1610 // Create the Elf_Vernauxs for this Elf_Verneed. The loop iterates over
1611 // VerdefMap, which will only contain references to needed version
1612 // definitions. Each Elf_Vernaux is based on the information contained in
1613 // the Elf_Verdef in the source DSO. This loop iterates over a std::map of
1614 // pointers, but is deterministic because the pointers refer to Elf_Verdef
1615 // data structures within a single input file.
1616 for (auto &NV : P.first->VerdefMap) {
1617 Vernaux->vna_hash = NV.first->vd_hash;
1618 Vernaux->vna_flags = 0;
1619 Vernaux->vna_other = NV.second.Index;
1620 Vernaux->vna_name = NV.second.StrTab;
1621 Vernaux->vna_next = sizeof(Elf_Vernaux);
1622 ++Vernaux;
1623 }
1624
1625 Vernaux[-1].vna_next = 0;
1626 }
1627 Verneed[-1].vn_next = 0;
1628}
1629
1630template <class ELFT> void VersionNeedSection<ELFT>::finalize() {
1631 this->Header.sh_link = Out<ELFT>::DynStrTab->SectionIndex;
1632 this->Header.sh_info = Needed.size();
1633 unsigned Size = Needed.size() * sizeof(Elf_Verneed);
1634 for (std::pair<SharedFile<ELFT> *, size_t> &P : Needed)
1635 Size += P.first->VerdefMap.size() * sizeof(Elf_Vernaux);
1636 this->Header.sh_size = Size;
1637}
1638
1639template <class ELFT>
Rui Ueyama3a41be22016-04-07 22:49:21 +00001640BuildIdSection<ELFT>::BuildIdSection(size_t HashSize)
1641 : OutputSectionBase<ELFT>(".note.gnu.build-id", SHT_NOTE, SHF_ALLOC),
1642 HashSize(HashSize) {
1643 // 16 bytes for the note section header.
1644 this->Header.sh_size = 16 + HashSize;
Rui Ueyama634ddf02016-03-11 20:51:53 +00001645}
1646
1647template <class ELFT> void BuildIdSection<ELFT>::writeTo(uint8_t *Buf) {
1648 const endianness E = ELFT::TargetEndianness;
1649 write32<E>(Buf, 4); // Name size
Rui Ueyama3a41be22016-04-07 22:49:21 +00001650 write32<E>(Buf + 4, HashSize); // Content size
Rui Ueyama634ddf02016-03-11 20:51:53 +00001651 write32<E>(Buf + 8, NT_GNU_BUILD_ID); // Type
1652 memcpy(Buf + 12, "GNU", 4); // Name string
1653 HashBuf = Buf + 16;
1654}
1655
Rui Ueyamadd368fc2016-05-02 23:35:59 +00001656template <class ELFT>
1657void BuildIdFnv1<ELFT>::writeBuildId(ArrayRef<ArrayRef<uint8_t>> Bufs) {
Rui Ueyama634ddf02016-03-11 20:51:53 +00001658 const endianness E = ELFT::TargetEndianness;
Rui Ueyamadd368fc2016-05-02 23:35:59 +00001659
1660 // 64-bit FNV-1 hash
1661 uint64_t Hash = 0xcbf29ce484222325;
1662 for (ArrayRef<uint8_t> Buf : Bufs) {
1663 for (uint8_t B : Buf) {
1664 Hash *= 0x100000001b3;
1665 Hash ^= B;
1666 }
1667 }
Rui Ueyama3a41be22016-04-07 22:49:21 +00001668 write64<E>(this->HashBuf, Hash);
1669}
1670
Rui Ueyamadd368fc2016-05-02 23:35:59 +00001671template <class ELFT>
1672void BuildIdMd5<ELFT>::writeBuildId(ArrayRef<ArrayRef<uint8_t>> Bufs) {
1673 llvm::MD5 Hash;
1674 for (ArrayRef<uint8_t> Buf : Bufs)
1675 Hash.update(Buf);
Rui Ueyama3a41be22016-04-07 22:49:21 +00001676 MD5::MD5Result Res;
1677 Hash.final(Res);
1678 memcpy(this->HashBuf, Res, 16);
Rui Ueyama634ddf02016-03-11 20:51:53 +00001679}
1680
Rui Ueyamadd368fc2016-05-02 23:35:59 +00001681template <class ELFT>
1682void BuildIdSha1<ELFT>::writeBuildId(ArrayRef<ArrayRef<uint8_t>> Bufs) {
1683 llvm::SHA1 Hash;
1684 for (ArrayRef<uint8_t> Buf : Bufs)
1685 Hash.update(Buf);
Rui Ueyamad86ec302016-04-07 23:51:56 +00001686 memcpy(this->HashBuf, Hash.final().data(), 20);
1687}
1688
Rui Ueyama634ddf02016-03-11 20:51:53 +00001689template <class ELFT>
Rui Ueyama9194db72016-05-13 21:55:56 +00001690BuildIdHexstring<ELFT>::BuildIdHexstring()
1691 : BuildIdSection<ELFT>(Config->BuildIdVector.size()) {}
1692
1693template <class ELFT>
1694void BuildIdHexstring<ELFT>::writeBuildId(ArrayRef<ArrayRef<uint8_t>> Bufs) {
1695 memcpy(this->HashBuf, Config->BuildIdVector.data(),
1696 Config->BuildIdVector.size());
1697}
1698
1699template <class ELFT>
Simon Atanasyan1d7df402015-12-20 10:57:34 +00001700MipsReginfoOutputSection<ELFT>::MipsReginfoOutputSection()
1701 : OutputSectionBase<ELFT>(".reginfo", SHT_MIPS_REGINFO, SHF_ALLOC) {
1702 this->Header.sh_addralign = 4;
1703 this->Header.sh_entsize = sizeof(Elf_Mips_RegInfo);
1704 this->Header.sh_size = sizeof(Elf_Mips_RegInfo);
1705}
1706
1707template <class ELFT>
1708void MipsReginfoOutputSection<ELFT>::writeTo(uint8_t *Buf) {
1709 auto *R = reinterpret_cast<Elf_Mips_RegInfo *>(Buf);
Simon Atanasyan4ee29182016-04-27 05:31:28 +00001710 R->ri_gp_value = Out<ELFT>::Got->getVA() + MipsGPOffset;
Rui Ueyama70eed362016-01-06 22:42:43 +00001711 R->ri_gprmask = GprMask;
Simon Atanasyan1d7df402015-12-20 10:57:34 +00001712}
1713
1714template <class ELFT>
Rui Ueyama40845e62015-12-26 05:51:07 +00001715void MipsReginfoOutputSection<ELFT>::addSection(InputSectionBase<ELFT> *C) {
Rui Ueyama70eed362016-01-06 22:42:43 +00001716 // Copy input object file's .reginfo gprmask to output.
Rui Ueyama40845e62015-12-26 05:51:07 +00001717 auto *S = cast<MipsReginfoInputSection<ELFT>>(C);
Rui Ueyama70eed362016-01-06 22:42:43 +00001718 GprMask |= S->Reginfo->ri_gprmask;
Simon Atanasyan1d7df402015-12-20 10:57:34 +00001719}
1720
Simon Atanasyanadd74f32016-05-04 10:07:38 +00001721template <class ELFT>
1722MipsOptionsOutputSection<ELFT>::MipsOptionsOutputSection()
1723 : OutputSectionBase<ELFT>(".MIPS.options", SHT_MIPS_OPTIONS,
1724 SHF_ALLOC | SHF_MIPS_NOSTRIP) {
1725 this->Header.sh_addralign = 8;
1726 this->Header.sh_entsize = 1;
1727 this->Header.sh_size = sizeof(Elf_Mips_Options) + sizeof(Elf_Mips_RegInfo);
1728}
1729
1730template <class ELFT>
1731void MipsOptionsOutputSection<ELFT>::writeTo(uint8_t *Buf) {
1732 auto *Opt = reinterpret_cast<Elf_Mips_Options *>(Buf);
1733 Opt->kind = ODK_REGINFO;
1734 Opt->size = this->Header.sh_size;
1735 Opt->section = 0;
1736 Opt->info = 0;
1737 auto *Reg = reinterpret_cast<Elf_Mips_RegInfo *>(Buf + sizeof(*Opt));
1738 Reg->ri_gp_value = Out<ELFT>::Got->getVA() + MipsGPOffset;
1739 Reg->ri_gprmask = GprMask;
1740}
1741
1742template <class ELFT>
1743void MipsOptionsOutputSection<ELFT>::addSection(InputSectionBase<ELFT> *C) {
1744 auto *S = cast<MipsOptionsInputSection<ELFT>>(C);
1745 if (S->Reginfo)
1746 GprMask |= S->Reginfo->ri_gprmask;
1747}
1748
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001749namespace lld {
Rafael Espindolae0df00b2016-02-28 00:25:54 +00001750namespace elf {
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +00001751template class OutputSectionBase<ELF32LE>;
1752template class OutputSectionBase<ELF32BE>;
1753template class OutputSectionBase<ELF64LE>;
1754template class OutputSectionBase<ELF64BE>;
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001755
George Rimarf6bc65a2016-01-15 13:34:52 +00001756template class EhFrameHeader<ELF32LE>;
1757template class EhFrameHeader<ELF32BE>;
1758template class EhFrameHeader<ELF64LE>;
1759template class EhFrameHeader<ELF64BE>;
1760
George Rimar648a2c32015-10-20 08:54:27 +00001761template class GotPltSection<ELF32LE>;
1762template class GotPltSection<ELF32BE>;
1763template class GotPltSection<ELF64LE>;
1764template class GotPltSection<ELF64BE>;
1765
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001766template class GotSection<ELF32LE>;
1767template class GotSection<ELF32BE>;
1768template class GotSection<ELF64LE>;
1769template class GotSection<ELF64BE>;
1770
1771template class PltSection<ELF32LE>;
1772template class PltSection<ELF32BE>;
1773template class PltSection<ELF64LE>;
1774template class PltSection<ELF64BE>;
1775
1776template class RelocationSection<ELF32LE>;
1777template class RelocationSection<ELF32BE>;
1778template class RelocationSection<ELF64LE>;
1779template class RelocationSection<ELF64BE>;
1780
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +00001781template class InterpSection<ELF32LE>;
1782template class InterpSection<ELF32BE>;
1783template class InterpSection<ELF64LE>;
1784template class InterpSection<ELF64BE>;
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001785
Igor Kudrin1b0d7062015-10-22 08:21:35 +00001786template class GnuHashTableSection<ELF32LE>;
1787template class GnuHashTableSection<ELF32BE>;
1788template class GnuHashTableSection<ELF64LE>;
1789template class GnuHashTableSection<ELF64BE>;
1790
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001791template class HashTableSection<ELF32LE>;
1792template class HashTableSection<ELF32BE>;
1793template class HashTableSection<ELF64LE>;
1794template class HashTableSection<ELF64BE>;
1795
1796template class DynamicSection<ELF32LE>;
1797template class DynamicSection<ELF32BE>;
1798template class DynamicSection<ELF64LE>;
1799template class DynamicSection<ELF64BE>;
1800
1801template class OutputSection<ELF32LE>;
1802template class OutputSection<ELF32BE>;
1803template class OutputSection<ELF64LE>;
1804template class OutputSection<ELF64BE>;
1805
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001806template class EHOutputSection<ELF32LE>;
1807template class EHOutputSection<ELF32BE>;
1808template class EHOutputSection<ELF64LE>;
1809template class EHOutputSection<ELF64BE>;
1810
Simon Atanasyan1d7df402015-12-20 10:57:34 +00001811template class MipsReginfoOutputSection<ELF32LE>;
1812template class MipsReginfoOutputSection<ELF32BE>;
1813template class MipsReginfoOutputSection<ELF64LE>;
1814template class MipsReginfoOutputSection<ELF64BE>;
1815
Simon Atanasyanadd74f32016-05-04 10:07:38 +00001816template class MipsOptionsOutputSection<ELF32LE>;
1817template class MipsOptionsOutputSection<ELF32BE>;
1818template class MipsOptionsOutputSection<ELF64LE>;
1819template class MipsOptionsOutputSection<ELF64BE>;
1820
Rafael Espindolac159c962015-10-19 21:00:02 +00001821template class MergeOutputSection<ELF32LE>;
1822template class MergeOutputSection<ELF32BE>;
1823template class MergeOutputSection<ELF64LE>;
1824template class MergeOutputSection<ELF64BE>;
1825
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +00001826template class StringTableSection<ELF32LE>;
1827template class StringTableSection<ELF32BE>;
1828template class StringTableSection<ELF64LE>;
1829template class StringTableSection<ELF64BE>;
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001830
1831template class SymbolTableSection<ELF32LE>;
1832template class SymbolTableSection<ELF32BE>;
1833template class SymbolTableSection<ELF64LE>;
1834template class SymbolTableSection<ELF64BE>;
Rui Ueyama634ddf02016-03-11 20:51:53 +00001835
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001836template class VersionTableSection<ELF32LE>;
1837template class VersionTableSection<ELF32BE>;
1838template class VersionTableSection<ELF64LE>;
1839template class VersionTableSection<ELF64BE>;
1840
1841template class VersionNeedSection<ELF32LE>;
1842template class VersionNeedSection<ELF32BE>;
1843template class VersionNeedSection<ELF64LE>;
1844template class VersionNeedSection<ELF64BE>;
1845
Rui Ueyama634ddf02016-03-11 20:51:53 +00001846template class BuildIdSection<ELF32LE>;
1847template class BuildIdSection<ELF32BE>;
1848template class BuildIdSection<ELF64LE>;
1849template class BuildIdSection<ELF64BE>;
Rui Ueyama3a41be22016-04-07 22:49:21 +00001850
1851template class BuildIdFnv1<ELF32LE>;
1852template class BuildIdFnv1<ELF32BE>;
1853template class BuildIdFnv1<ELF64LE>;
1854template class BuildIdFnv1<ELF64BE>;
1855
1856template class BuildIdMd5<ELF32LE>;
1857template class BuildIdMd5<ELF32BE>;
1858template class BuildIdMd5<ELF64LE>;
1859template class BuildIdMd5<ELF64BE>;
Rui Ueyamad86ec302016-04-07 23:51:56 +00001860
1861template class BuildIdSha1<ELF32LE>;
1862template class BuildIdSha1<ELF32BE>;
1863template class BuildIdSha1<ELF64LE>;
1864template class BuildIdSha1<ELF64BE>;
Rui Ueyama9194db72016-05-13 21:55:56 +00001865
1866template class BuildIdHexstring<ELF32LE>;
1867template class BuildIdHexstring<ELF32BE>;
1868template class BuildIdHexstring<ELF64LE>;
1869template class BuildIdHexstring<ELF64BE>;
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001870}
1871}