blob: 4b71874511f45d11b2bebd4d60160a3737b8dc61 [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"
Rui Ueyamaf5febef2016-05-24 02:55:45 +000012#include "EhFrame.h"
George Rimare2ee72b2016-02-26 14:48:31 +000013#include "LinkerScript.h"
Rafael Espindola5805c4f2015-09-21 21:38:08 +000014#include "SymbolTable.h"
Rafael Espindola01205f72015-09-22 18:19:46 +000015#include "Target.h"
Rui Ueyamae9809502016-03-11 04:23:12 +000016#include "lld/Core/Parallel.h"
George Rimarf6bc65a2016-01-15 13:34:52 +000017#include "llvm/Support/Dwarf.h"
Rui Ueyama3a41be22016-04-07 22:49:21 +000018#include "llvm/Support/MD5.h"
Igor Kudrin1b0d7062015-10-22 08:21:35 +000019#include "llvm/Support/MathExtras.h"
Rui Ueyamad86ec302016-04-07 23:51:56 +000020#include "llvm/Support/SHA1.h"
George Rimarf6bc65a2016-01-15 13:34:52 +000021#include <map>
Rafael Espindola5805c4f2015-09-21 21:38:08 +000022
Rafael Espindola5805c4f2015-09-21 21:38:08 +000023using namespace llvm;
Rui Ueyamadbcfedb2016-02-09 21:46:11 +000024using namespace llvm::dwarf;
Rafael Espindola5805c4f2015-09-21 21:38:08 +000025using namespace llvm::object;
Rafael Espindolaa6627382015-10-06 23:56:53 +000026using namespace llvm::support::endian;
Rafael Espindola5805c4f2015-09-21 21:38:08 +000027using namespace llvm::ELF;
28
29using namespace lld;
Rafael Espindolae0df00b2016-02-28 00:25:54 +000030using namespace lld::elf;
Rafael Espindola5805c4f2015-09-21 21:38:08 +000031
George Rimar12737b72016-02-25 08:40:26 +000032static bool isAlpha(char C) {
33 return ('a' <= C && C <= 'z') || ('A' <= C && C <= 'Z') || C == '_';
34}
35
36static bool isAlnum(char C) { return isAlpha(C) || ('0' <= C && C <= '9'); }
37
38// Returns true if S is valid as a C language identifier.
Rafael Espindolae0df00b2016-02-28 00:25:54 +000039bool elf::isValidCIdentifier(StringRef S) {
Rui Ueyamadad77c52016-02-26 15:42:06 +000040 return !S.empty() && isAlpha(S[0]) &&
41 std::all_of(S.begin() + 1, S.end(), isAlnum);
George Rimar12737b72016-02-25 08:40:26 +000042}
43
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +000044template <class ELFT>
Rui Ueyamad97e5c42016-01-07 18:33:11 +000045OutputSectionBase<ELFT>::OutputSectionBase(StringRef Name, uint32_t Type,
46 uintX_t Flags)
Rafael Espindola5805c4f2015-09-21 21:38:08 +000047 : Name(Name) {
Sean Silva580c1b62016-04-20 04:26:16 +000048 memset(&Header, 0, sizeof(Elf_Shdr));
Rui Ueyamad97e5c42016-01-07 18:33:11 +000049 Header.sh_type = Type;
50 Header.sh_flags = Flags;
Rafael Espindola5805c4f2015-09-21 21:38:08 +000051}
52
Rafael Espindola35c6af32015-09-25 17:19:10 +000053template <class ELFT>
Rui Ueyamac63c1db2016-03-13 06:50:33 +000054void OutputSectionBase<ELFT>::writeHeaderTo(Elf_Shdr *Shdr) {
55 *Shdr = Header;
56}
57
58template <class ELFT>
George Rimar648a2c32015-10-20 08:54:27 +000059GotPltSection<ELFT>::GotPltSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +000060 : OutputSectionBase<ELFT>(".got.plt", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE) {
George Rimar648a2c32015-10-20 08:54:27 +000061 this->Header.sh_addralign = sizeof(uintX_t);
George Rimar648a2c32015-10-20 08:54:27 +000062}
63
Rafael Espindola67d72c02016-03-11 12:06:30 +000064template <class ELFT> void GotPltSection<ELFT>::addEntry(SymbolBody &Sym) {
65 Sym.GotPltIndex = Target->GotPltHeaderEntriesNum + Entries.size();
66 Entries.push_back(&Sym);
George Rimar648a2c32015-10-20 08:54:27 +000067}
68
69template <class ELFT> bool GotPltSection<ELFT>::empty() const {
Igor Kudrin351b41d2015-11-16 17:44:08 +000070 return Entries.empty();
George Rimar648a2c32015-10-20 08:54:27 +000071}
72
George Rimar648a2c32015-10-20 08:54:27 +000073template <class ELFT> void GotPltSection<ELFT>::finalize() {
Igor Kudrin351b41d2015-11-16 17:44:08 +000074 this->Header.sh_size =
Rui Ueyama724d6252016-01-29 01:49:32 +000075 (Target->GotPltHeaderEntriesNum + Entries.size()) * sizeof(uintX_t);
George Rimar648a2c32015-10-20 08:54:27 +000076}
77
78template <class ELFT> void GotPltSection<ELFT>::writeTo(uint8_t *Buf) {
Rui Ueyamac516ae12016-01-29 02:33:45 +000079 Target->writeGotPltHeader(Buf);
Rui Ueyama724d6252016-01-29 01:49:32 +000080 Buf += Target->GotPltHeaderEntriesNum * sizeof(uintX_t);
George Rimar648a2c32015-10-20 08:54:27 +000081 for (const SymbolBody *B : Entries) {
Rui Ueyamac9fee5f2016-06-16 16:14:50 +000082 Target->writeGotPlt(Buf, *B);
George Rimar648a2c32015-10-20 08:54:27 +000083 Buf += sizeof(uintX_t);
84 }
85}
86
87template <class ELFT>
Rui Ueyama15ef5e12015-10-07 19:18:16 +000088GotSection<ELFT>::GotSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +000089 : OutputSectionBase<ELFT>(".got", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE) {
Igor Kudrin15cd9ff2015-11-06 07:43:03 +000090 if (Config->EMachine == EM_MIPS)
Rui Ueyamacf07a312016-01-06 22:53:58 +000091 this->Header.sh_flags |= SHF_MIPS_GPREL;
Rui Ueyama5f551ae2015-10-14 14:02:06 +000092 this->Header.sh_addralign = sizeof(uintX_t);
Rafael Espindola35c6af32015-09-25 17:19:10 +000093}
94
Simon Atanasyan41325112016-06-19 21:39:37 +000095template <class ELFT>
96void GotSection<ELFT>::addEntry(SymbolBody &Sym) {
Rafael Espindola67d72c02016-03-11 12:06:30 +000097 Sym.GotIndex = Entries.size();
98 Entries.push_back(&Sym);
George Rimar687138c2015-11-13 16:28:53 +000099}
100
Simon Atanasyan41325112016-06-19 21:39:37 +0000101template <class ELFT>
102void GotSection<ELFT>::addMipsEntry(SymbolBody &Sym, uintX_t Addend,
103 RelExpr Expr) {
104 // For "true" local symbols which can be referenced from the same module
105 // only compiler creates two instructions for address loading:
106 //
107 // lw $8, 0($gp) # R_MIPS_GOT16
108 // addi $8, $8, 0 # R_MIPS_LO16
109 //
110 // The first instruction loads high 16 bits of the symbol address while
111 // the second adds an offset. That allows to reduce number of required
112 // GOT entries because only one global offset table entry is necessary
113 // for every 64 KBytes of local data. So for local symbols we need to
114 // allocate number of GOT entries to hold all required "page" addresses.
115 //
116 // All global symbols (hidden and regular) considered by compiler uniformly.
117 // It always generates a single `lw` instruction and R_MIPS_GOT16 relocation
118 // to load address of the symbol. So for each such symbol we need to
119 // allocate dedicated GOT entry to store its address.
120 //
121 // If a symbol is preemptible we need help of dynamic linker to get its
122 // final address. The corresponding GOT entries are allocated in the
123 // "global" part of GOT. Entries for non preemptible global symbol allocated
124 // in the "local" part of GOT.
125 //
126 // See "Global Offset Table" in Chapter 5:
127 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
128 if (Expr == R_MIPS_GOT_LOCAL_PAGE) {
129 // At this point we do not know final symbol value so to reduce number
130 // of allocated GOT entries do the following trick. Save all output
131 // sections referenced by GOT relocations. Then later in the `finalize`
132 // method calculate number of "pages" required to cover all saved output
133 // section and allocate appropriate number of GOT entries.
134 auto *OutSec = cast<DefinedRegular<ELFT>>(&Sym)->Section->OutSec;
135 MipsOutSections.insert(OutSec);
136 return;
137 }
138 auto AddEntry = [&](SymbolBody &S, uintX_t A, MipsGotEntries &Items) {
139 if (S.isInGot() && !A)
140 return;
141 size_t NewIndex = Items.size();
142 if (!MipsGotMap.insert({{&S, A}, NewIndex}).second)
143 return;
144 Items.emplace_back(&S, A);
145 if (!A)
146 S.GotIndex = NewIndex;
147 };
148 if (Sym.isPreemptible()) {
149 // Ignore addends for preemptible symbols. They got single GOT entry anyway.
150 AddEntry(Sym, 0, MipsGlobal);
151 Sym.IsInGlobalMipsGot = true;
152 } else
153 AddEntry(Sym, Addend, MipsLocal);
154}
155
Rafael Espindola67d72c02016-03-11 12:06:30 +0000156template <class ELFT> bool GotSection<ELFT>::addDynTlsEntry(SymbolBody &Sym) {
Rafael Espindola6211d9a2016-06-05 19:03:28 +0000157 if (Sym.GlobalDynIndex != -1U)
George Rimar90cd0a82015-12-01 19:20:26 +0000158 return false;
Rafael Espindola6211d9a2016-06-05 19:03:28 +0000159 Sym.GlobalDynIndex = Entries.size();
Michael J. Spencer627ae702015-11-13 00:28:34 +0000160 // Global Dynamic TLS entries take two GOT slots.
George Rimar687138c2015-11-13 16:28:53 +0000161 Entries.push_back(nullptr);
Rafael Espindolaa8777c22016-06-08 21:31:59 +0000162 Entries.push_back(&Sym);
George Rimar90cd0a82015-12-01 19:20:26 +0000163 return true;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000164}
165
Rui Ueyama0e53c7d2016-02-05 00:10:02 +0000166// Reserves TLS entries for a TLS module ID and a TLS block offset.
167// In total it takes two GOT slots.
168template <class ELFT> bool GotSection<ELFT>::addTlsIndex() {
169 if (TlsIndexOff != uint32_t(-1))
George Rimarb17f7392015-12-01 18:24:07 +0000170 return false;
Rui Ueyama0e53c7d2016-02-05 00:10:02 +0000171 TlsIndexOff = Entries.size() * sizeof(uintX_t);
Michael J. Spencer1e225612015-11-11 01:00:24 +0000172 Entries.push_back(nullptr);
173 Entries.push_back(nullptr);
George Rimarb17f7392015-12-01 18:24:07 +0000174 return true;
Michael J. Spencer1e225612015-11-11 01:00:24 +0000175}
176
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000177template <class ELFT>
178typename GotSection<ELFT>::uintX_t
Rafael Espindola58cd5db2016-04-19 22:46:03 +0000179GotSection<ELFT>::getMipsLocalPageOffset(uintX_t EntryValue) {
Simon Atanasyan56ab5f02016-01-21 05:33:23 +0000180 // Initialize the entry by the %hi(EntryValue) expression
181 // but without right-shifting.
Simon Atanasyan41325112016-06-19 21:39:37 +0000182 EntryValue = (EntryValue + 0x8000) & ~0xffff;
Simon Atanasyan1ef1bf82016-04-25 20:25:05 +0000183 // Take into account MIPS GOT header.
184 // See comment in the GotSection::writeTo.
185 size_t NewIndex = MipsLocalGotPos.size() + 2;
Simon Atanasyan56ab5f02016-01-21 05:33:23 +0000186 auto P = MipsLocalGotPos.insert(std::make_pair(EntryValue, NewIndex));
Simon Atanasyan41325112016-06-19 21:39:37 +0000187 assert(!P.second || MipsLocalGotPos.size() <= MipsPageEntries);
George Rimar71e64b22016-05-11 09:41:15 +0000188 return (uintX_t)P.first->second * sizeof(uintX_t) - MipsGPOffset;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000189}
190
Igor Kudrin304860a2015-11-12 04:39:49 +0000191template <class ELFT>
George Rimar90cd0a82015-12-01 19:20:26 +0000192typename GotSection<ELFT>::uintX_t
Simon Atanasyan41325112016-06-19 21:39:37 +0000193GotSection<ELFT>::getMipsGotOffset(const SymbolBody &B, uintX_t Addend) const {
194 uintX_t Off = MipsPageEntries;
195 if (B.IsInGlobalMipsGot)
196 Off += MipsLocal.size() + B.GotIndex;
197 else if (B.isInGot())
198 Off += B.GotIndex;
199 else {
200 auto It = MipsGotMap.find({&B, Addend});
201 assert(It != MipsGotMap.end());
202 Off += It->second;
203 }
204 return Off * sizeof(uintX_t) - MipsGPOffset;
205}
206
207template <class ELFT>
208typename GotSection<ELFT>::uintX_t
George Rimar90cd0a82015-12-01 19:20:26 +0000209GotSection<ELFT>::getGlobalDynAddr(const SymbolBody &B) const {
Rafael Espindola6211d9a2016-06-05 19:03:28 +0000210 return this->getVA() + B.GlobalDynIndex * sizeof(uintX_t);
George Rimar90cd0a82015-12-01 19:20:26 +0000211}
212
213template <class ELFT>
Rafael Espindola74031ba2016-04-07 15:20:56 +0000214typename GotSection<ELFT>::uintX_t
215GotSection<ELFT>::getGlobalDynOffset(const SymbolBody &B) const {
Rafael Espindola6211d9a2016-06-05 19:03:28 +0000216 return B.GlobalDynIndex * sizeof(uintX_t);
Rafael Espindola74031ba2016-04-07 15:20:56 +0000217}
218
219template <class ELFT>
Igor Kudrin304860a2015-11-12 04:39:49 +0000220const SymbolBody *GotSection<ELFT>::getMipsFirstGlobalEntry() const {
Simon Atanasyan41325112016-06-19 21:39:37 +0000221 return MipsGlobal.empty() ? nullptr : MipsGlobal.front().first;
Igor Kudrin304860a2015-11-12 04:39:49 +0000222}
223
224template <class ELFT>
225unsigned GotSection<ELFT>::getMipsLocalEntriesNum() const {
Simon Atanasyan41325112016-06-19 21:39:37 +0000226 return MipsPageEntries + MipsLocal.size();
Igor Kudrin304860a2015-11-12 04:39:49 +0000227}
228
Igor Kudrin15cd9ff2015-11-06 07:43:03 +0000229template <class ELFT> void GotSection<ELFT>::finalize() {
Simon Atanasyan311b4b12016-06-10 12:26:28 +0000230 size_t EntriesNum = Entries.size();
231 if (Config->EMachine == EM_MIPS) {
Simon Atanasyan1ef1bf82016-04-25 20:25:05 +0000232 // Take into account MIPS GOT header.
233 // See comment in the GotSection::writeTo.
Simon Atanasyan41325112016-06-19 21:39:37 +0000234 MipsPageEntries += 2;
Simon Atanasyan311b4b12016-06-10 12:26:28 +0000235 for (const OutputSectionBase<ELFT> *OutSec : MipsOutSections) {
236 // Calculate an upper bound of MIPS GOT entries required to store page
237 // addresses of local symbols. We assume the worst case - each 64kb
238 // page of the output section has at least one GOT relocation against it.
239 // Add 0x8000 to the section's size because the page address stored
240 // in the GOT entry is calculated as (value + 0x8000) & ~0xffff.
Simon Atanasyan41325112016-06-19 21:39:37 +0000241 MipsPageEntries += (OutSec->getSize() + 0x8000 + 0xfffe) / 0xffff;
Simon Atanasyan311b4b12016-06-10 12:26:28 +0000242 }
Simon Atanasyan41325112016-06-19 21:39:37 +0000243 EntriesNum += MipsPageEntries + MipsLocal.size() + MipsGlobal.size();
Simon Atanasyand2980d32016-03-29 14:07:22 +0000244 }
Simon Atanasyan311b4b12016-06-10 12:26:28 +0000245 this->Header.sh_size = EntriesNum * sizeof(uintX_t);
Igor Kudrin15cd9ff2015-11-06 07:43:03 +0000246}
247
Simon Atanasyan41325112016-06-19 21:39:37 +0000248template <class ELFT> void GotSection<ELFT>::writeMipsGot(uint8_t *&Buf) {
249 // Set the MSB of the second GOT slot. This is not required by any
250 // MIPS ABI documentation, though.
251 //
252 // There is a comment in glibc saying that "The MSB of got[1] of a
253 // gnu object is set to identify gnu objects," and in GNU gold it
254 // says "the second entry will be used by some runtime loaders".
255 // But how this field is being used is unclear.
256 //
257 // We are not really willing to mimic other linkers behaviors
258 // without understanding why they do that, but because all files
259 // generated by GNU tools have this special GOT value, and because
260 // we've been doing this for years, it is probably a safe bet to
261 // keep doing this for now. We really need to revisit this to see
262 // if we had to do this.
263 auto *P = reinterpret_cast<typename ELFT::Off *>(Buf);
264 P[1] = uintX_t(1) << (ELFT::Is64Bits ? 63 : 31);
265 // Write 'page address' entries to the local part of the GOT.
266 for (std::pair<uintX_t, size_t> &L : MipsLocalGotPos) {
267 uint8_t *Entry = Buf + L.second * sizeof(uintX_t);
268 write<uintX_t, ELFT::TargetEndianness, sizeof(uintX_t)>(Entry, L.first);
Simon Atanasyan1ef1bf82016-04-25 20:25:05 +0000269 }
Simon Atanasyan41325112016-06-19 21:39:37 +0000270 Buf += MipsPageEntries * sizeof(uintX_t);
271 auto AddEntry = [&](const MipsGotEntry &SA) {
272 uint8_t *Entry = Buf;
273 Buf += sizeof(uintX_t);
George Rimar06e930d2016-06-20 10:01:50 +0000274 const SymbolBody* Body = SA.first;
275 uintX_t VA = Body->template getVA<ELFT>(SA.second);
Simon Atanasyan41325112016-06-19 21:39:37 +0000276 write<uintX_t, ELFT::TargetEndianness, sizeof(uintX_t)>(Entry, VA);
277 };
278 std::for_each(std::begin(MipsLocal), std::end(MipsLocal), AddEntry);
279 std::for_each(std::begin(MipsGlobal), std::end(MipsGlobal), AddEntry);
280}
281
282template <class ELFT> void GotSection<ELFT>::writeTo(uint8_t *Buf) {
283 if (Config->EMachine == EM_MIPS)
284 writeMipsGot(Buf);
Rafael Espindolaa6627382015-10-06 23:56:53 +0000285 for (const SymbolBody *B : Entries) {
Rafael Espindolae782f672015-10-07 03:56:05 +0000286 uint8_t *Entry = Buf;
287 Buf += sizeof(uintX_t);
Michael J. Spencer1e225612015-11-11 01:00:24 +0000288 if (!B)
289 continue;
Simon Atanasyan41325112016-06-19 21:39:37 +0000290 if (B->isPreemptible())
Rafael Espindolaa6627382015-10-06 23:56:53 +0000291 continue; // The dynamic linker will take care of it.
Rui Ueyamab5a69702016-02-01 21:00:35 +0000292 uintX_t VA = B->getVA<ELFT>();
Rafael Espindolae782f672015-10-07 03:56:05 +0000293 write<uintX_t, ELFT::TargetEndianness, sizeof(uintX_t)>(Entry, VA);
Rafael Espindolaa6627382015-10-06 23:56:53 +0000294 }
295}
296
Rafael Espindola35c6af32015-09-25 17:19:10 +0000297template <class ELFT>
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000298PltSection<ELFT>::PltSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +0000299 : OutputSectionBase<ELFT>(".plt", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR) {
Rafael Espindola35c6af32015-09-25 17:19:10 +0000300 this->Header.sh_addralign = 16;
301}
302
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000303template <class ELFT> void PltSection<ELFT>::writeTo(uint8_t *Buf) {
Rafael Espindolae4c86d832016-05-18 21:03:36 +0000304 // At beginning of PLT, we have code to call the dynamic linker
305 // to resolve dynsyms at runtime. Write such code.
Rui Ueyama4a90f572016-06-16 16:28:50 +0000306 Target->writePltHeader(Buf);
307 size_t Off = Target->PltHeaderSize;
Rui Ueyamaf57a5902016-05-20 21:39:07 +0000308
George Rimarfb5d7f22015-11-26 19:58:51 +0000309 for (auto &I : Entries) {
Rui Ueyama9398f862016-01-29 04:15:02 +0000310 const SymbolBody *B = I.first;
George Rimar77b77792015-11-25 22:15:01 +0000311 unsigned RelOff = I.second;
Rafael Espindolae4c86d832016-05-18 21:03:36 +0000312 uint64_t Got = B->getGotPltVA<ELFT>();
Rui Ueyama242ddf42015-10-12 18:56:36 +0000313 uint64_t Plt = this->getVA() + Off;
Rui Ueyama9398f862016-01-29 04:15:02 +0000314 Target->writePlt(Buf + Off, Got, Plt, B->PltIndex, RelOff);
Rui Ueyama724d6252016-01-29 01:49:32 +0000315 Off += Target->PltEntrySize;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000316 }
317}
318
Rafael Espindola67d72c02016-03-11 12:06:30 +0000319template <class ELFT> void PltSection<ELFT>::addEntry(SymbolBody &Sym) {
320 Sym.PltIndex = Entries.size();
Rafael Espindolae4c86d832016-05-18 21:03:36 +0000321 unsigned RelOff = Out<ELFT>::RelaPlt->getRelocOffset();
Rafael Espindola67d72c02016-03-11 12:06:30 +0000322 Entries.push_back(std::make_pair(&Sym, RelOff));
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000323}
324
George Rimar648a2c32015-10-20 08:54:27 +0000325template <class ELFT> void PltSection<ELFT>::finalize() {
Rui Ueyama724d6252016-01-29 01:49:32 +0000326 this->Header.sh_size =
Rui Ueyama4a90f572016-06-16 16:28:50 +0000327 Target->PltHeaderSize + Entries.size() * Target->PltEntrySize;
Hal Finkel6c2a3b82015-10-08 21:51:31 +0000328}
329
330template <class ELFT>
George Rimarc191acf2016-05-10 15:47:57 +0000331RelocationSection<ELFT>::RelocationSection(StringRef Name, bool Sort)
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000332 : OutputSectionBase<ELFT>(Name, Config->Rela ? SHT_RELA : SHT_REL,
George Rimarc191acf2016-05-10 15:47:57 +0000333 SHF_ALLOC),
334 Sort(Sort) {
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000335 this->Header.sh_entsize = Config->Rela ? sizeof(Elf_Rela) : sizeof(Elf_Rel);
Rui Ueyama5e378dd2016-01-29 22:18:57 +0000336 this->Header.sh_addralign = sizeof(uintX_t);
Rafael Espindola35c6af32015-09-25 17:19:10 +0000337}
338
George Rimar5828c232015-11-30 17:49:19 +0000339template <class ELFT>
Rafael Espindolad30eb7d2016-02-05 15:03:10 +0000340void RelocationSection<ELFT>::addReloc(const DynamicReloc<ELFT> &Reloc) {
Rafael Espindolad30eb7d2016-02-05 15:03:10 +0000341 Relocs.push_back(Reloc);
342}
343
George Rimarc191acf2016-05-10 15:47:57 +0000344template <class ELFT, class RelTy>
345static bool compRelocations(const RelTy &A, const RelTy &B) {
346 return A.getSymbol(Config->Mips64EL) < B.getSymbol(Config->Mips64EL);
347}
348
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000349template <class ELFT> void RelocationSection<ELFT>::writeTo(uint8_t *Buf) {
George Rimarc191acf2016-05-10 15:47:57 +0000350 uint8_t *BufBegin = Buf;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000351 for (const DynamicReloc<ELFT> &Rel : Relocs) {
Rui Ueyama614be592016-03-13 05:23:40 +0000352 auto *P = reinterpret_cast<Elf_Rela *>(Buf);
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000353 Buf += Config->Rela ? sizeof(Elf_Rela) : sizeof(Elf_Rel);
Rafael Espindolade9857e2016-02-04 21:33:05 +0000354 SymbolBody *Sym = Rel.Sym;
Rui Ueyamab0210e832016-01-26 00:24:57 +0000355
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000356 if (Config->Rela)
Rui Ueyama614be592016-03-13 05:23:40 +0000357 P->r_addend = Rel.UseSymVA ? Sym->getVA<ELFT>(Rel.Addend) : Rel.Addend;
Rafael Espindola74031ba2016-04-07 15:20:56 +0000358 P->r_offset = Rel.OffsetInSec + Rel.OffsetSec->getVA();
Rafael Espindolade9857e2016-02-04 21:33:05 +0000359 uint32_t SymIdx = (!Rel.UseSymVA && Sym) ? Sym->DynsymIndex : 0;
360 P->setSymbolAndType(SymIdx, Rel.Type, Config->Mips64EL);
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000361 }
George Rimarc191acf2016-05-10 15:47:57 +0000362
363 if (Sort) {
364 if (Config->Rela)
365 std::stable_sort((Elf_Rela *)BufBegin,
366 (Elf_Rela *)BufBegin + Relocs.size(),
367 compRelocations<ELFT, Elf_Rela>);
368 else
369 std::stable_sort((Elf_Rel *)BufBegin, (Elf_Rel *)BufBegin + Relocs.size(),
370 compRelocations<ELFT, Elf_Rel>);
371 }
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000372}
373
George Rimar77b77792015-11-25 22:15:01 +0000374template <class ELFT> unsigned RelocationSection<ELFT>::getRelocOffset() {
Rui Ueyama5a0b2f72016-02-05 19:13:18 +0000375 return this->Header.sh_entsize * Relocs.size();
George Rimar77b77792015-11-25 22:15:01 +0000376}
377
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000378template <class ELFT> void RelocationSection<ELFT>::finalize() {
George Rimara07ff662015-12-21 10:12:06 +0000379 this->Header.sh_link = Static ? Out<ELFT>::SymTab->SectionIndex
380 : Out<ELFT>::DynSymTab->SectionIndex;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000381 this->Header.sh_size = Relocs.size() * this->Header.sh_entsize;
382}
383
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +0000384template <class ELFT>
385InterpSection<ELFT>::InterpSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +0000386 : OutputSectionBase<ELFT>(".interp", SHT_PROGBITS, SHF_ALLOC) {
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000387 this->Header.sh_size = Config->DynamicLinker.size() + 1;
388 this->Header.sh_addralign = 1;
389}
390
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +0000391template <class ELFT> void InterpSection<ELFT>::writeTo(uint8_t *Buf) {
Rui Ueyama1e720b92016-03-13 06:50:34 +0000392 StringRef S = Config->DynamicLinker;
393 memcpy(Buf, S.data(), S.size());
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000394}
395
Rafael Espindola35c6af32015-09-25 17:19:10 +0000396template <class ELFT>
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000397HashTableSection<ELFT>::HashTableSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +0000398 : OutputSectionBase<ELFT>(".hash", SHT_HASH, SHF_ALLOC) {
Rafael Espindola35c6af32015-09-25 17:19:10 +0000399 this->Header.sh_entsize = sizeof(Elf_Word);
400 this->Header.sh_addralign = sizeof(Elf_Word);
401}
402
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000403static uint32_t hashSysv(StringRef Name) {
Rui Ueyama5f1eee1a2015-10-15 21:27:17 +0000404 uint32_t H = 0;
405 for (char C : Name) {
406 H = (H << 4) + C;
407 uint32_t G = H & 0xf0000000;
408 if (G)
409 H ^= G >> 24;
410 H &= ~G;
411 }
412 return H;
413}
414
Rui Ueyama0db335f2015-10-07 16:58:54 +0000415template <class ELFT> void HashTableSection<ELFT>::finalize() {
Rui Ueyama2317d0d2015-10-15 20:55:22 +0000416 this->Header.sh_link = Out<ELFT>::DynSymTab->SectionIndex;
Rui Ueyama0db335f2015-10-07 16:58:54 +0000417
George Rimare9e1d322016-02-18 15:17:01 +0000418 unsigned NumEntries = 2; // nbucket and nchain.
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000419 NumEntries += Out<ELFT>::DynSymTab->getNumSymbols(); // The chain entries.
Rui Ueyama0db335f2015-10-07 16:58:54 +0000420
421 // Create as many buckets as there are symbols.
422 // FIXME: This is simplistic. We can try to optimize it, but implementing
423 // support for SHT_GNU_HASH is probably even more profitable.
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000424 NumEntries += Out<ELFT>::DynSymTab->getNumSymbols();
Rui Ueyama0db335f2015-10-07 16:58:54 +0000425 this->Header.sh_size = NumEntries * sizeof(Elf_Word);
426}
427
428template <class ELFT> void HashTableSection<ELFT>::writeTo(uint8_t *Buf) {
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000429 unsigned NumSymbols = Out<ELFT>::DynSymTab->getNumSymbols();
Rui Ueyama0db335f2015-10-07 16:58:54 +0000430 auto *P = reinterpret_cast<Elf_Word *>(Buf);
431 *P++ = NumSymbols; // nbucket
432 *P++ = NumSymbols; // nchain
433
434 Elf_Word *Buckets = P;
435 Elf_Word *Chains = P + NumSymbols;
436
Rafael Espindolae2c24612016-01-29 01:24:25 +0000437 for (const std::pair<SymbolBody *, unsigned> &P :
438 Out<ELFT>::DynSymTab->getSymbols()) {
439 SymbolBody *Body = P.first;
Igor Kudrinab665fc2015-10-20 21:47:58 +0000440 StringRef Name = Body->getName();
Rui Ueyama572a6f72016-01-29 01:49:33 +0000441 unsigned I = Body->DynsymIndex;
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000442 uint32_t Hash = hashSysv(Name) % NumSymbols;
Rui Ueyama0db335f2015-10-07 16:58:54 +0000443 Chains[I] = Buckets[Hash];
444 Buckets[Hash] = I;
445 }
446}
447
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000448static uint32_t hashGnu(StringRef Name) {
449 uint32_t H = 5381;
450 for (uint8_t C : Name)
451 H = (H << 5) + H + C;
452 return H;
453}
454
455template <class ELFT>
456GnuHashTableSection<ELFT>::GnuHashTableSection()
Rui Ueyamacf07a312016-01-06 22:53:58 +0000457 : OutputSectionBase<ELFT>(".gnu.hash", SHT_GNU_HASH, SHF_ALLOC) {
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000458 this->Header.sh_entsize = ELFT::Is64Bits ? 0 : 4;
Rui Ueyama5e378dd2016-01-29 22:18:57 +0000459 this->Header.sh_addralign = sizeof(uintX_t);
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000460}
461
462template <class ELFT>
463unsigned GnuHashTableSection<ELFT>::calcNBuckets(unsigned NumHashed) {
464 if (!NumHashed)
465 return 0;
466
467 // These values are prime numbers which are not greater than 2^(N-1) + 1.
468 // In result, for any particular NumHashed we return a prime number
469 // which is not greater than NumHashed.
470 static const unsigned Primes[] = {
471 1, 1, 3, 3, 7, 13, 31, 61, 127, 251,
472 509, 1021, 2039, 4093, 8191, 16381, 32749, 65521, 131071};
473
474 return Primes[std::min<unsigned>(Log2_32_Ceil(NumHashed),
475 array_lengthof(Primes) - 1)];
476}
477
478// Bloom filter estimation: at least 8 bits for each hashed symbol.
479// GNU Hash table requirement: it should be a power of 2,
480// the minimum value is 1, even for an empty table.
481// Expected results for a 32-bit target:
482// calcMaskWords(0..4) = 1
483// calcMaskWords(5..8) = 2
484// calcMaskWords(9..16) = 4
485// For a 64-bit target:
486// calcMaskWords(0..8) = 1
487// calcMaskWords(9..16) = 2
488// calcMaskWords(17..32) = 4
489template <class ELFT>
490unsigned GnuHashTableSection<ELFT>::calcMaskWords(unsigned NumHashed) {
491 if (!NumHashed)
492 return 1;
493 return NextPowerOf2((NumHashed - 1) / sizeof(Elf_Off));
494}
495
496template <class ELFT> void GnuHashTableSection<ELFT>::finalize() {
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000497 unsigned NumHashed = Symbols.size();
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000498 NBuckets = calcNBuckets(NumHashed);
499 MaskWords = calcMaskWords(NumHashed);
500 // Second hash shift estimation: just predefined values.
501 Shift2 = ELFT::Is64Bits ? 6 : 5;
502
503 this->Header.sh_link = Out<ELFT>::DynSymTab->SectionIndex;
504 this->Header.sh_size = sizeof(Elf_Word) * 4 // Header
505 + sizeof(Elf_Off) * MaskWords // Bloom Filter
506 + sizeof(Elf_Word) * NBuckets // Hash Buckets
507 + sizeof(Elf_Word) * NumHashed; // Hash Values
508}
509
510template <class ELFT> void GnuHashTableSection<ELFT>::writeTo(uint8_t *Buf) {
511 writeHeader(Buf);
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000512 if (Symbols.empty())
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000513 return;
514 writeBloomFilter(Buf);
515 writeHashTable(Buf);
516}
517
518template <class ELFT>
519void GnuHashTableSection<ELFT>::writeHeader(uint8_t *&Buf) {
520 auto *P = reinterpret_cast<Elf_Word *>(Buf);
521 *P++ = NBuckets;
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000522 *P++ = Out<ELFT>::DynSymTab->getNumSymbols() - Symbols.size();
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000523 *P++ = MaskWords;
524 *P++ = Shift2;
525 Buf = reinterpret_cast<uint8_t *>(P);
526}
527
528template <class ELFT>
529void GnuHashTableSection<ELFT>::writeBloomFilter(uint8_t *&Buf) {
530 unsigned C = sizeof(Elf_Off) * 8;
531
532 auto *Masks = reinterpret_cast<Elf_Off *>(Buf);
Rui Ueyama861c7312016-02-17 05:40:03 +0000533 for (const SymbolData &Sym : Symbols) {
534 size_t Pos = (Sym.Hash / C) & (MaskWords - 1);
535 uintX_t V = (uintX_t(1) << (Sym.Hash % C)) |
536 (uintX_t(1) << ((Sym.Hash >> Shift2) % C));
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000537 Masks[Pos] |= V;
538 }
539 Buf += sizeof(Elf_Off) * MaskWords;
540}
541
542template <class ELFT>
543void GnuHashTableSection<ELFT>::writeHashTable(uint8_t *Buf) {
544 Elf_Word *Buckets = reinterpret_cast<Elf_Word *>(Buf);
545 Elf_Word *Values = Buckets + NBuckets;
546
547 int PrevBucket = -1;
548 int I = 0;
Rui Ueyama861c7312016-02-17 05:40:03 +0000549 for (const SymbolData &Sym : Symbols) {
550 int Bucket = Sym.Hash % NBuckets;
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000551 assert(PrevBucket <= Bucket);
552 if (Bucket != PrevBucket) {
Rui Ueyama861c7312016-02-17 05:40:03 +0000553 Buckets[Bucket] = Sym.Body->DynsymIndex;
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000554 PrevBucket = Bucket;
555 if (I > 0)
556 Values[I - 1] |= 1;
557 }
Rui Ueyama861c7312016-02-17 05:40:03 +0000558 Values[I] = Sym.Hash & ~1;
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000559 ++I;
560 }
561 if (I > 0)
562 Values[I - 1] |= 1;
563}
564
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000565// Add symbols to this symbol hash table. Note that this function
566// destructively sort a given vector -- which is needed because
567// GNU-style hash table places some sorting requirements.
Rafael Espindola35c6af32015-09-25 17:19:10 +0000568template <class ELFT>
Rafael Espindolae2c24612016-01-29 01:24:25 +0000569void GnuHashTableSection<ELFT>::addSymbols(
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000570 std::vector<std::pair<SymbolBody *, size_t>> &V) {
571 auto Mid = std::stable_partition(V.begin(), V.end(),
572 [](std::pair<SymbolBody *, size_t> &P) {
George Rimar71a0a402016-06-08 12:57:14 +0000573 return P.first->isUndefined();
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000574 });
575 if (Mid == V.end())
Igor Kudrinf1d60292015-10-28 07:05:56 +0000576 return;
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000577 for (auto I = Mid, E = V.end(); I != E; ++I) {
578 SymbolBody *B = I->first;
579 size_t StrOff = I->second;
580 Symbols.push_back({B, StrOff, hashGnu(B->getName())});
581 }
Igor Kudrinf1d60292015-10-28 07:05:56 +0000582
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000583 unsigned NBuckets = calcNBuckets(Symbols.size());
584 std::stable_sort(Symbols.begin(), Symbols.end(),
Rui Ueyama861c7312016-02-17 05:40:03 +0000585 [&](const SymbolData &L, const SymbolData &R) {
Igor Kudrinf1d60292015-10-28 07:05:56 +0000586 return L.Hash % NBuckets < R.Hash % NBuckets;
587 });
588
Rui Ueyama91c0a5d2016-02-17 05:40:01 +0000589 V.erase(Mid, V.end());
Rui Ueyama861c7312016-02-17 05:40:03 +0000590 for (const SymbolData &Sym : Symbols)
591 V.push_back({Sym.Body, Sym.STName});
Igor Kudrinf1d60292015-10-28 07:05:56 +0000592}
593
594template <class ELFT>
Rui Ueyamaace4f902016-05-24 04:25:47 +0000595DynamicSection<ELFT>::DynamicSection()
596 : OutputSectionBase<ELFT>(".dynamic", SHT_DYNAMIC, SHF_ALLOC | SHF_WRITE) {
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +0000597 Elf_Shdr &Header = this->Header;
Rui Ueyama5e378dd2016-01-29 22:18:57 +0000598 Header.sh_addralign = sizeof(uintX_t);
Rafael Espindola35c6af32015-09-25 17:19:10 +0000599 Header.sh_entsize = ELFT::Is64Bits ? 16 : 8;
Igor Kudrin304860a2015-11-12 04:39:49 +0000600
601 // .dynamic section is not writable on MIPS.
602 // See "Special Section" in Chapter 4 in the following document:
603 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
604 if (Config->EMachine == EM_MIPS)
Rui Ueyamacf07a312016-01-06 22:53:58 +0000605 Header.sh_flags = SHF_ALLOC;
Rafael Espindola35c6af32015-09-25 17:19:10 +0000606}
607
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000608template <class ELFT> void DynamicSection<ELFT>::finalize() {
Michael J. Spencer52bf0eb2015-10-01 21:15:02 +0000609 if (this->Header.sh_size)
610 return; // Already finalized.
611
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +0000612 Elf_Shdr &Header = this->Header;
Rui Ueyama2317d0d2015-10-15 20:55:22 +0000613 Header.sh_link = Out<ELFT>::DynStrTab->SectionIndex;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000614
Rafael Espindolae2c24612016-01-29 01:24:25 +0000615 auto Add = [=](Entry E) { Entries.push_back(E); };
616
617 // Add strings. We know that these are the last strings to be added to
Rafael Espindolade069362016-01-25 21:32:04 +0000618 // DynStrTab and doing this here allows this function to set DT_STRSZ.
619 if (!Config->RPath.empty())
Rafael Espindolae2c24612016-01-29 01:24:25 +0000620 Add({Config->EnableNewDtags ? DT_RUNPATH : DT_RPATH,
621 Out<ELFT>::DynStrTab->addString(Config->RPath)});
Rui Ueyamaace4f902016-05-24 04:25:47 +0000622 for (const std::unique_ptr<SharedFile<ELFT>> &F :
623 Symtab<ELFT>::X->getSharedFiles())
Rafael Espindolade069362016-01-25 21:32:04 +0000624 if (F->isNeeded())
Rafael Espindolae2c24612016-01-29 01:24:25 +0000625 Add({DT_NEEDED, Out<ELFT>::DynStrTab->addString(F->getSoName())});
626 if (!Config->SoName.empty())
627 Add({DT_SONAME, Out<ELFT>::DynStrTab->addString(Config->SoName)});
628
Rafael Espindolade069362016-01-25 21:32:04 +0000629 Out<ELFT>::DynStrTab->finalize();
630
Rui Ueyama15ef5e12015-10-07 19:18:16 +0000631 if (Out<ELFT>::RelaDyn->hasRelocs()) {
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000632 bool IsRela = Config->Rela;
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000633 Add({IsRela ? DT_RELA : DT_REL, Out<ELFT>::RelaDyn});
634 Add({IsRela ? DT_RELASZ : DT_RELSZ, Out<ELFT>::RelaDyn->getSize()});
635 Add({IsRela ? DT_RELAENT : DT_RELENT,
636 uintX_t(IsRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel))});
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000637 }
George Rimar648a2c32015-10-20 08:54:27 +0000638 if (Out<ELFT>::RelaPlt && Out<ELFT>::RelaPlt->hasRelocs()) {
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000639 Add({DT_JMPREL, Out<ELFT>::RelaPlt});
640 Add({DT_PLTRELSZ, Out<ELFT>::RelaPlt->getSize()});
641 Add({Config->EMachine == EM_MIPS ? DT_MIPS_PLTGOT : DT_PLTGOT,
642 Out<ELFT>::GotPlt});
Rui Ueyama6c5638b2016-03-13 20:10:20 +0000643 Add({DT_PLTREL, uint64_t(Config->Rela ? DT_RELA : DT_REL)});
George Rimar648a2c32015-10-20 08:54:27 +0000644 }
645
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000646 Add({DT_SYMTAB, Out<ELFT>::DynSymTab});
647 Add({DT_SYMENT, sizeof(Elf_Sym)});
648 Add({DT_STRTAB, Out<ELFT>::DynStrTab});
649 Add({DT_STRSZ, Out<ELFT>::DynStrTab->getSize()});
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000650 if (Out<ELFT>::GnuHashTab)
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000651 Add({DT_GNU_HASH, Out<ELFT>::GnuHashTab});
Igor Kudrin1b0d7062015-10-22 08:21:35 +0000652 if (Out<ELFT>::HashTab)
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000653 Add({DT_HASH, Out<ELFT>::HashTab});
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000654
Rafael Espindolade069362016-01-25 21:32:04 +0000655 if (PreInitArraySec) {
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000656 Add({DT_PREINIT_ARRAY, PreInitArraySec});
657 Add({DT_PREINIT_ARRAYSZ, PreInitArraySec->getSize()});
Rafael Espindolade069362016-01-25 21:32:04 +0000658 }
659 if (InitArraySec) {
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000660 Add({DT_INIT_ARRAY, InitArraySec});
661 Add({DT_INIT_ARRAYSZ, (uintX_t)InitArraySec->getSize()});
Rafael Espindolade069362016-01-25 21:32:04 +0000662 }
663 if (FiniArraySec) {
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000664 Add({DT_FINI_ARRAY, FiniArraySec});
665 Add({DT_FINI_ARRAYSZ, (uintX_t)FiniArraySec->getSize()});
Rui Ueyama7de3f372015-10-01 19:36:04 +0000666 }
667
Rui Ueyamaace4f902016-05-24 04:25:47 +0000668 if (SymbolBody *B = Symtab<ELFT>::X->find(Config->Init))
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000669 Add({DT_INIT, B});
Rui Ueyamaace4f902016-05-24 04:25:47 +0000670 if (SymbolBody *B = Symtab<ELFT>::X->find(Config->Fini))
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000671 Add({DT_FINI, B});
Rui Ueyamac96d0dd2015-10-21 17:47:10 +0000672
Rafael Espindolade069362016-01-25 21:32:04 +0000673 uint32_t DtFlags = 0;
674 uint32_t DtFlags1 = 0;
Rui Ueyamac96d0dd2015-10-21 17:47:10 +0000675 if (Config->Bsymbolic)
676 DtFlags |= DF_SYMBOLIC;
677 if (Config->ZNodelete)
678 DtFlags1 |= DF_1_NODELETE;
679 if (Config->ZNow) {
680 DtFlags |= DF_BIND_NOW;
681 DtFlags1 |= DF_1_NOW;
682 }
683 if (Config->ZOrigin) {
684 DtFlags |= DF_ORIGIN;
685 DtFlags1 |= DF_1_ORIGIN;
686 }
687
688 if (DtFlags)
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000689 Add({DT_FLAGS, DtFlags});
Rui Ueyamac96d0dd2015-10-21 17:47:10 +0000690 if (DtFlags1)
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000691 Add({DT_FLAGS_1, DtFlags1});
Igor Kudrin304860a2015-11-12 04:39:49 +0000692
Ed Mastef5d3cf62016-01-06 15:52:27 +0000693 if (!Config->Entry.empty())
Rafael Espindolacc3ae412016-01-26 01:30:07 +0000694 Add({DT_DEBUG, (uint64_t)0});
Ed Mastef5d3cf62016-01-06 15:52:27 +0000695
George Rimard03f9722016-06-20 10:29:53 +0000696 if (size_t NeedNum = Out<ELFT>::VerNeed->getNeedNum()) {
Peter Collingbourne21a12fc2016-04-27 20:22:31 +0000697 Add({DT_VERSYM, Out<ELFT>::VerSym});
698 Add({DT_VERNEED, Out<ELFT>::VerNeed});
George Rimard03f9722016-06-20 10:29:53 +0000699 Add({DT_VERNEEDNUM, NeedNum});
Peter Collingbourne21a12fc2016-04-27 20:22:31 +0000700 }
701
Igor Kudrin304860a2015-11-12 04:39:49 +0000702 if (Config->EMachine == EM_MIPS) {
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000703 Add({DT_MIPS_RLD_VERSION, 1});
704 Add({DT_MIPS_FLAGS, RHF_NOTPOT});
705 Add({DT_MIPS_BASE_ADDRESS, (uintX_t)Target->getVAStart()});
706 Add({DT_MIPS_SYMTABNO, Out<ELFT>::DynSymTab->getNumSymbols()});
707 Add({DT_MIPS_LOCAL_GOTNO, Out<ELFT>::Got->getMipsLocalEntriesNum()});
Rafael Espindolade069362016-01-25 21:32:04 +0000708 if (const SymbolBody *B = Out<ELFT>::Got->getMipsFirstGlobalEntry())
Rui Ueyama572a6f72016-01-29 01:49:33 +0000709 Add({DT_MIPS_GOTSYM, B->DynsymIndex});
Rafael Espindolade069362016-01-25 21:32:04 +0000710 else
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000711 Add({DT_MIPS_GOTSYM, Out<ELFT>::DynSymTab->getNumSymbols()});
712 Add({DT_PLTGOT, Out<ELFT>::Got});
Igor Kudrin304860a2015-11-12 04:39:49 +0000713 if (Out<ELFT>::MipsRldMap)
Rui Ueyamaac9fb452016-01-25 23:38:34 +0000714 Add({DT_MIPS_RLD_MAP, Out<ELFT>::MipsRldMap});
Igor Kudrin304860a2015-11-12 04:39:49 +0000715 }
716
Rafael Espindolade069362016-01-25 21:32:04 +0000717 // +1 for DT_NULL
718 Header.sh_size = (Entries.size() + 1) * Header.sh_entsize;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000719}
720
721template <class ELFT> void DynamicSection<ELFT>::writeTo(uint8_t *Buf) {
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000722 auto *P = reinterpret_cast<Elf_Dyn *>(Buf);
723
Rafael Espindolade069362016-01-25 21:32:04 +0000724 for (const Entry &E : Entries) {
725 P->d_tag = E.Tag;
726 switch (E.Kind) {
727 case Entry::SecAddr:
728 P->d_un.d_ptr = E.OutSec->getVA();
729 break;
730 case Entry::SymAddr:
Rui Ueyamab5a69702016-02-01 21:00:35 +0000731 P->d_un.d_ptr = E.Sym->template getVA<ELFT>();
Rafael Espindolade069362016-01-25 21:32:04 +0000732 break;
733 case Entry::PlainInt:
734 P->d_un.d_val = E.Val;
735 break;
736 }
Rui Ueyama8c205d52015-10-02 01:33:31 +0000737 ++P;
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000738 }
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000739}
740
741template <class ELFT>
George Rimarf6bc65a2016-01-15 13:34:52 +0000742EhFrameHeader<ELFT>::EhFrameHeader()
Rui Ueyamade9777a2016-05-23 16:30:41 +0000743 : OutputSectionBase<ELFT>(".eh_frame_hdr", SHT_PROGBITS, SHF_ALLOC) {}
George Rimarf6bc65a2016-01-15 13:34:52 +0000744
Rui Ueyama95a232e2016-05-23 01:45:05 +0000745// .eh_frame_hdr contains a binary search table of pointers to FDEs.
746// Each entry of the search table consists of two values,
747// the starting PC from where FDEs covers, and the FDE's address.
748// It is sorted by PC.
George Rimarf6bc65a2016-01-15 13:34:52 +0000749template <class ELFT> void EhFrameHeader<ELFT>::writeTo(uint8_t *Buf) {
750 const endianness E = ELFT::TargetEndianness;
751
Rui Ueyamae75e9332016-05-23 03:00:33 +0000752 // Sort the FDE list by their PC and uniqueify. Usually there is only
753 // one FDE for a PC (i.e. function), but if ICF merges two functions
754 // into one, there can be more than one FDEs pointing to the address.
755 auto Less = [](const FdeData &A, const FdeData &B) { return A.Pc < B.Pc; };
756 std::stable_sort(Fdes.begin(), Fdes.end(), Less);
757 auto Eq = [](const FdeData &A, const FdeData &B) { return A.Pc == B.Pc; };
758 Fdes.erase(std::unique(Fdes.begin(), Fdes.end(), Eq), Fdes.end());
Peter Collingbournec98de132016-04-11 16:40:08 +0000759
Rui Ueyama1b2936f2016-05-23 01:31:10 +0000760 Buf[0] = 1;
761 Buf[1] = DW_EH_PE_pcrel | DW_EH_PE_sdata4;
762 Buf[2] = DW_EH_PE_udata4;
763 Buf[3] = DW_EH_PE_datarel | DW_EH_PE_sdata4;
Rui Ueyama3b31e672016-05-23 16:24:16 +0000764 write32<E>(Buf + 4, Out<ELFT>::EhFrame->getVA() - this->getVA() - 4);
Rui Ueyamae75e9332016-05-23 03:00:33 +0000765 write32<E>(Buf + 8, Fdes.size());
George Rimarf6bc65a2016-01-15 13:34:52 +0000766 Buf += 12;
767
Rui Ueyamae75e9332016-05-23 03:00:33 +0000768 uintX_t VA = this->getVA();
769 for (FdeData &Fde : Fdes) {
770 write32<E>(Buf, Fde.Pc - VA);
771 write32<E>(Buf + 4, Fde.FdeVA - VA);
George Rimarf6bc65a2016-01-15 13:34:52 +0000772 Buf += 8;
773 }
774}
775
Rui Ueyamade9777a2016-05-23 16:30:41 +0000776template <class ELFT> void EhFrameHeader<ELFT>::finalize() {
777 // .eh_frame_hdr has a 12 bytes header followed by an array of FDEs.
778 this->Header.sh_size = 12 + Out<ELFT>::EhFrame->NumFdes * 8;
779}
780
George Rimarf6bc65a2016-01-15 13:34:52 +0000781template <class ELFT>
Rui Ueyamae75e9332016-05-23 03:00:33 +0000782void EhFrameHeader<ELFT>::addFde(uint32_t Pc, uint32_t FdeVA) {
783 Fdes.push_back({Pc, FdeVA});
George Rimarf6bc65a2016-01-15 13:34:52 +0000784}
785
George Rimarf6bc65a2016-01-15 13:34:52 +0000786template <class ELFT>
George Rimar58941ee2016-02-25 08:23:37 +0000787OutputSection<ELFT>::OutputSection(StringRef Name, uint32_t Type, uintX_t Flags)
788 : OutputSectionBase<ELFT>(Name, Type, Flags) {
789 if (Type == SHT_RELA)
790 this->Header.sh_entsize = sizeof(Elf_Rela);
791 else if (Type == SHT_REL)
792 this->Header.sh_entsize = sizeof(Elf_Rel);
793}
794
795template <class ELFT> void OutputSection<ELFT>::finalize() {
796 uint32_t Type = this->Header.sh_type;
797 if (Type != SHT_RELA && Type != SHT_REL)
798 return;
799 this->Header.sh_link = Out<ELFT>::SymTab->SectionIndex;
800 // sh_info for SHT_REL[A] sections should contain the section header index of
801 // the section to which the relocation applies.
802 InputSectionBase<ELFT> *S = Sections[0]->getRelocatedSection();
803 this->Header.sh_info = S->OutSec->SectionIndex;
804}
Rafael Espindola35c6af32015-09-25 17:19:10 +0000805
806template <class ELFT>
Rui Ueyama40845e62015-12-26 05:51:07 +0000807void OutputSection<ELFT>::addSection(InputSectionBase<ELFT> *C) {
Rui Ueyama0b289522016-02-25 18:43:51 +0000808 assert(C->Live);
Rui Ueyama40845e62015-12-26 05:51:07 +0000809 auto *S = cast<InputSection<ELFT>>(C);
810 Sections.push_back(S);
811 S->OutSec = this;
Rui Ueyama424b4082016-06-17 01:18:46 +0000812 this->updateAlignment(S->Alignment);
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000813}
814
Rui Ueyamac4185702016-02-10 23:20:42 +0000815// If an input string is in the form of "foo.N" where N is a number,
816// return N. Otherwise, returns 65536, which is one greater than the
817// lowest priority.
818static int getPriority(StringRef S) {
819 size_t Pos = S.rfind('.');
820 if (Pos == StringRef::npos)
821 return 65536;
822 int V;
823 if (S.substr(Pos + 1).getAsInteger(10, V))
824 return 65536;
825 return V;
826}
827
Rafael Espindola56004c52016-04-07 14:22:09 +0000828template <class ELFT>
829void OutputSection<ELFT>::forEachInputSection(
Rui Ueyama10803512016-05-22 00:25:30 +0000830 std::function<void(InputSectionBase<ELFT> *)> F) {
Rafael Espindola56004c52016-04-07 14:22:09 +0000831 for (InputSection<ELFT> *S : Sections)
832 F(S);
Rui Ueyama5af83682016-02-11 23:41:38 +0000833}
834
Rui Ueyamac4185702016-02-10 23:20:42 +0000835// Sorts input sections by section name suffixes, so that .foo.N comes
836// before .foo.M if N < M. Used to sort .{init,fini}_array.N sections.
Rui Ueyama5af83682016-02-11 23:41:38 +0000837// We want to keep the original order if the priorities are the same
838// because the compiler keeps the original initialization order in a
839// translation unit and we need to respect that.
Rui Ueyamac4185702016-02-10 23:20:42 +0000840// For more detail, read the section of the GCC's manual about init_priority.
Rui Ueyama5af83682016-02-11 23:41:38 +0000841template <class ELFT> void OutputSection<ELFT>::sortInitFini() {
Rui Ueyamac4185702016-02-10 23:20:42 +0000842 // Sort sections by priority.
843 typedef std::pair<int, InputSection<ELFT> *> Pair;
Rui Ueyama704da022016-02-10 23:43:16 +0000844 auto Comp = [](const Pair &A, const Pair &B) { return A.first < B.first; };
845
Rui Ueyamac4185702016-02-10 23:20:42 +0000846 std::vector<Pair> V;
847 for (InputSection<ELFT> *S : Sections)
848 V.push_back({getPriority(S->getSectionName()), S});
Rui Ueyama704da022016-02-10 23:43:16 +0000849 std::stable_sort(V.begin(), V.end(), Comp);
Rui Ueyamac4185702016-02-10 23:20:42 +0000850 Sections.clear();
851 for (Pair &P : V)
852 Sections.push_back(P.second);
Rui Ueyama5af83682016-02-11 23:41:38 +0000853}
Rui Ueyamac4185702016-02-10 23:20:42 +0000854
Rui Ueyama5af83682016-02-11 23:41:38 +0000855// Returns true if S matches /Filename.?\.o$/.
856static bool isCrtBeginEnd(StringRef S, StringRef Filename) {
857 if (!S.endswith(".o"))
858 return false;
859 S = S.drop_back(2);
860 if (S.endswith(Filename))
861 return true;
862 return !S.empty() && S.drop_back().endswith(Filename);
863}
864
865static bool isCrtbegin(StringRef S) { return isCrtBeginEnd(S, "crtbegin"); }
866static bool isCrtend(StringRef S) { return isCrtBeginEnd(S, "crtend"); }
867
868// .ctors and .dtors are sorted by this priority from highest to lowest.
869//
870// 1. The section was contained in crtbegin (crtbegin contains
871// some sentinel value in its .ctors and .dtors so that the runtime
872// can find the beginning of the sections.)
873//
874// 2. The section has an optional priority value in the form of ".ctors.N"
875// or ".dtors.N" where N is a number. Unlike .{init,fini}_array,
876// they are compared as string rather than number.
877//
878// 3. The section is just ".ctors" or ".dtors".
879//
880// 4. The section was contained in crtend, which contains an end marker.
881//
882// In an ideal world, we don't need this function because .init_array and
883// .ctors are duplicate features (and .init_array is newer.) However, there
884// are too many real-world use cases of .ctors, so we had no choice to
885// support that with this rather ad-hoc semantics.
886template <class ELFT>
887static bool compCtors(const InputSection<ELFT> *A,
888 const InputSection<ELFT> *B) {
889 bool BeginA = isCrtbegin(A->getFile()->getName());
890 bool BeginB = isCrtbegin(B->getFile()->getName());
891 if (BeginA != BeginB)
892 return BeginA;
893 bool EndA = isCrtend(A->getFile()->getName());
894 bool EndB = isCrtend(B->getFile()->getName());
895 if (EndA != EndB)
896 return EndB;
897 StringRef X = A->getSectionName();
898 StringRef Y = B->getSectionName();
899 assert(X.startswith(".ctors") || X.startswith(".dtors"));
900 assert(Y.startswith(".ctors") || Y.startswith(".dtors"));
901 X = X.substr(6);
902 Y = Y.substr(6);
Rui Ueyama24b794e2016-02-12 00:38:46 +0000903 if (X.empty() && Y.empty())
904 return false;
Rui Ueyama5af83682016-02-11 23:41:38 +0000905 return X < Y;
906}
907
908// Sorts input sections by the special rules for .ctors and .dtors.
909// Unfortunately, the rules are different from the one for .{init,fini}_array.
910// Read the comment above.
911template <class ELFT> void OutputSection<ELFT>::sortCtorsDtors() {
912 std::stable_sort(Sections.begin(), Sections.end(), compCtors<ELFT>);
Rui Ueyamac4185702016-02-10 23:20:42 +0000913}
914
George Rimare2ee72b2016-02-26 14:48:31 +0000915static void fill(uint8_t *Buf, size_t Size, ArrayRef<uint8_t> A) {
916 size_t I = 0;
917 for (; I + A.size() < Size; I += A.size())
918 memcpy(Buf + I, A.data(), A.size());
919 memcpy(Buf + I, A.data(), Size - I);
920}
921
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000922template <class ELFT> void OutputSection<ELFT>::writeTo(uint8_t *Buf) {
Rui Ueyama07320e42016-04-20 20:13:41 +0000923 ArrayRef<uint8_t> Filler = Script<ELFT>::X->getFiller(this->Name);
George Rimare2ee72b2016-02-26 14:48:31 +0000924 if (!Filler.empty())
925 fill(Buf, this->getSize(), Filler);
Rui Ueyamae9809502016-03-11 04:23:12 +0000926 if (Config->Threads) {
927 parallel_for_each(Sections.begin(), Sections.end(),
928 [=](InputSection<ELFT> *C) { C->writeTo(Buf); });
929 } else {
930 for (InputSection<ELFT> *C : Sections)
931 C->writeTo(Buf);
932 }
Rafael Espindola5805c4f2015-09-21 21:38:08 +0000933}
934
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +0000935template <class ELFT>
Rui Ueyamaf86cb902016-05-23 15:12:41 +0000936EhOutputSection<ELFT>::EhOutputSection()
Rui Ueyama3b31e672016-05-23 16:24:16 +0000937 : OutputSectionBase<ELFT>(".eh_frame", SHT_PROGBITS, SHF_ALLOC) {}
Rafael Espindola0c6a4f12015-11-11 19:54:14 +0000938
939template <class ELFT>
Rui Ueyama1e479c22016-05-23 15:07:59 +0000940void EhOutputSection<ELFT>::forEachInputSection(
Rafael Espindola56004c52016-04-07 14:22:09 +0000941 std::function<void(InputSectionBase<ELFT> *)> F) {
Rui Ueyama0b9a9032016-05-24 04:19:20 +0000942 for (EhInputSection<ELFT> *S : Sections)
Rafael Espindola56004c52016-04-07 14:22:09 +0000943 F(S);
944}
945
Rui Ueyama6bf7d912016-05-21 19:06:33 +0000946// Returns the first relocation that points to a region
947// between Begin and Begin+Size.
948template <class IntTy, class RelTy>
Rui Ueyama19ccffe2016-05-24 15:40:46 +0000949static const RelTy *getReloc(IntTy Begin, IntTy Size, ArrayRef<RelTy> &Rels) {
950 for (auto I = Rels.begin(), E = Rels.end(); I != E; ++I) {
951 if (I->r_offset < Begin)
952 continue;
953
954 // Truncate Rels for fast access. That means we expect that the
955 // relocations are sorted and we are looking up symbols in
956 // sequential order. It is naturally satisfied for .eh_frame.
957 Rels = Rels.slice(I - Rels.begin());
958 if (I->r_offset < Begin + Size)
959 return I;
Rui Ueyama6bf7d912016-05-21 19:06:33 +0000960 return nullptr;
Rui Ueyama19ccffe2016-05-24 15:40:46 +0000961 }
962 Rels = ArrayRef<RelTy>();
963 return nullptr;
Rui Ueyama6bf7d912016-05-21 19:06:33 +0000964}
965
Rui Ueyamaf8b285c2016-05-22 23:16:14 +0000966// Search for an existing CIE record or create a new one.
967// CIE records from input object files are uniquified by their contents
968// and where their relocations point to.
969template <class ELFT>
970template <class RelTy>
Rui Ueyama1e479c22016-05-23 15:07:59 +0000971CieRecord *EhOutputSection<ELFT>::addCie(SectionPiece &Piece,
Rui Ueyama0b9a9032016-05-24 04:19:20 +0000972 EhInputSection<ELFT> *Sec,
Rui Ueyama19ccffe2016-05-24 15:40:46 +0000973 ArrayRef<RelTy> &Rels) {
Rui Ueyamaf8b285c2016-05-22 23:16:14 +0000974 const endianness E = ELFT::TargetEndianness;
Rui Ueyamad8849272016-05-25 16:37:01 +0000975 if (read32<E>(Piece.data().data() + 4) != 0)
Rui Ueyamaf8b285c2016-05-22 23:16:14 +0000976 fatal("CIE expected at beginning of .eh_frame: " + Sec->getSectionName());
977
978 SymbolBody *Personality = nullptr;
979 if (const RelTy *Rel = getReloc(Piece.InputOff, Piece.size(), Rels))
980 Personality = &Sec->getFile()->getRelocTargetSym(*Rel);
981
982 // Search for an existing CIE by CIE contents/relocation target pair.
Rui Ueyamad8849272016-05-25 16:37:01 +0000983 CieRecord *Cie = &CieMap[{Piece.data(), Personality}];
Rui Ueyamaf8b285c2016-05-22 23:16:14 +0000984
985 // If not found, create a new one.
Rui Ueyamae2060aa2016-05-22 23:52:56 +0000986 if (Cie->Piece == nullptr) {
987 Cie->Piece = &Piece;
Rui Ueyamae2060aa2016-05-22 23:52:56 +0000988 Cies.push_back(Cie);
Rui Ueyamaf8b285c2016-05-22 23:16:14 +0000989 }
990 return Cie;
991}
992
Rui Ueyamaf8b285c2016-05-22 23:16:14 +0000993// There is one FDE per function. Returns true if a given FDE
994// points to a live function.
995template <class ELFT>
996template <class RelTy>
Rui Ueyama1e479c22016-05-23 15:07:59 +0000997bool EhOutputSection<ELFT>::isFdeLive(SectionPiece &Piece,
Rui Ueyama0b9a9032016-05-24 04:19:20 +0000998 EhInputSection<ELFT> *Sec,
Rui Ueyama19ccffe2016-05-24 15:40:46 +0000999 ArrayRef<RelTy> &Rels) {
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001000 const RelTy *Rel = getReloc(Piece.InputOff, Piece.size(), Rels);
1001 if (!Rel)
1002 fatal("FDE doesn't reference another section");
1003 SymbolBody &B = Sec->getFile()->getRelocTargetSym(*Rel);
1004 auto *D = dyn_cast<DefinedRegular<ELFT>>(&B);
1005 if (!D || !D->Section)
1006 return false;
1007 InputSectionBase<ELFT> *Target = D->Section->Repl;
1008 return Target && Target->Live;
1009}
1010
1011// .eh_frame is a sequence of CIE or FDE records. In general, there
1012// is one CIE record per input object file which is followed by
1013// a list of FDEs. This function searches an existing CIE or create a new
1014// one and associates FDEs to the CIE.
Rui Ueyamac0c92602016-02-05 22:56:03 +00001015template <class ELFT>
Rui Ueyamafc467e72016-03-13 05:06:50 +00001016template <class RelTy>
Rui Ueyama0b9a9032016-05-24 04:19:20 +00001017void EhOutputSection<ELFT>::addSectionAux(EhInputSection<ELFT> *Sec,
Rafael Espindola0f7ccc32016-04-05 14:47:28 +00001018 ArrayRef<RelTy> Rels) {
Rafael Espindola1f5696f2016-05-24 16:03:27 +00001019 const endianness E = ELFT::TargetEndianness;
Rafael Espindola820f4bb2016-05-24 15:17:47 +00001020
Rafael Espindola1f5696f2016-05-24 16:03:27 +00001021 DenseMap<size_t, CieRecord *> OffsetToCie;
Rafael Espindola5ee9e7f2016-05-24 19:14:09 +00001022 for (SectionPiece &Piece : Sec->Pieces) {
Rafael Espindola1f5696f2016-05-24 16:03:27 +00001023 // The empty record is the end marker.
Rui Ueyamad8849272016-05-25 16:37:01 +00001024 if (Piece.size() == 4)
Rafael Espindola5ee9e7f2016-05-24 19:14:09 +00001025 return;
Rafael Espindola1f5696f2016-05-24 16:03:27 +00001026
1027 size_t Offset = Piece.InputOff;
Rui Ueyamad8849272016-05-25 16:37:01 +00001028 uint32_t ID = read32<E>(Piece.data().data() + 4);
Rafael Espindola1f5696f2016-05-24 16:03:27 +00001029 if (ID == 0) {
1030 OffsetToCie[Offset] = addCie(Piece, Sec, Rels);
1031 continue;
1032 }
1033
1034 uint32_t CieOffset = Offset + 4 - ID;
1035 CieRecord *Cie = OffsetToCie[CieOffset];
1036 if (!Cie)
1037 fatal("invalid CIE reference");
1038
1039 if (!isFdeLive(Piece, Sec, Rels))
1040 continue;
1041 Cie->FdePieces.push_back(&Piece);
Rui Ueyamade9777a2016-05-23 16:30:41 +00001042 NumFdes++;
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001043 }
1044}
1045
1046template <class ELFT>
Rui Ueyama1e479c22016-05-23 15:07:59 +00001047void EhOutputSection<ELFT>::addSection(InputSectionBase<ELFT> *C) {
Rui Ueyama0b9a9032016-05-24 04:19:20 +00001048 auto *Sec = cast<EhInputSection<ELFT>>(C);
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001049 Sec->OutSec = this;
Rui Ueyama424b4082016-06-17 01:18:46 +00001050 this->updateAlignment(Sec->Alignment);
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001051 Sections.push_back(Sec);
1052
1053 // .eh_frame is a sequence of CIE or FDE records. This function
1054 // splits it into pieces so that we can call
1055 // SplitInputSection::getSectionPiece on the section.
Rui Ueyama88abd9b2016-05-22 23:53:00 +00001056 Sec->split();
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001057 if (Sec->Pieces.empty())
1058 return;
1059
1060 if (const Elf_Shdr *RelSec = Sec->RelocSection) {
1061 ELFFile<ELFT> &Obj = Sec->getFile()->getObj();
1062 if (RelSec->sh_type == SHT_RELA)
1063 addSectionAux(Sec, Obj.relas(RelSec));
1064 else
1065 addSectionAux(Sec, Obj.rels(RelSec));
Rui Ueyama0de86c12016-01-27 22:23:44 +00001066 return;
1067 }
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001068 addSectionAux(Sec, makeArrayRef<Elf_Rela>(nullptr, nullptr));
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001069}
1070
Rafael Espindola91bd48a2015-12-24 20:44:06 +00001071template <class ELFT>
Rui Ueyama644ac652016-05-22 00:17:11 +00001072static void writeCieFde(uint8_t *Buf, ArrayRef<uint8_t> D) {
1073 memcpy(Buf, D.data(), D.size());
Rui Ueyamac0449a62016-05-21 18:10:13 +00001074
1075 // Fix the size field. -4 since size does not include the size field itself.
Rafael Espindola91bd48a2015-12-24 20:44:06 +00001076 const endianness E = ELFT::TargetEndianness;
Rui Ueyama644ac652016-05-22 00:17:11 +00001077 write32<E>(Buf, alignTo(D.size(), sizeof(typename ELFT::uint)) - 4);
Rafael Espindola56004c52016-04-07 14:22:09 +00001078}
1079
Rui Ueyama1e479c22016-05-23 15:07:59 +00001080template <class ELFT> void EhOutputSection<ELFT>::finalize() {
Rafael Espindola56004c52016-04-07 14:22:09 +00001081 if (Finalized)
1082 return;
1083 Finalized = true;
1084
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001085 size_t Off = 0;
1086 for (CieRecord *Cie : Cies) {
1087 Cie->Piece->OutputOff = Off;
1088 Off += alignTo(Cie->Piece->size(), sizeof(uintX_t));
Rafael Espindola56004c52016-04-07 14:22:09 +00001089
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001090 for (SectionPiece *Fde : Cie->FdePieces) {
1091 Fde->OutputOff = Off;
1092 Off += alignTo(Fde->size(), sizeof(uintX_t));
Rafael Espindola56004c52016-04-07 14:22:09 +00001093 }
1094 }
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001095 this->Header.sh_size = Off;
Rafael Espindola91bd48a2015-12-24 20:44:06 +00001096}
1097
Rui Ueyamae75e9332016-05-23 03:00:33 +00001098template <class ELFT> static uint64_t readFdeAddr(uint8_t *Buf, int Size) {
1099 const endianness E = ELFT::TargetEndianness;
1100 switch (Size) {
1101 case DW_EH_PE_udata2:
1102 return read16<E>(Buf);
1103 case DW_EH_PE_udata4:
1104 return read32<E>(Buf);
1105 case DW_EH_PE_udata8:
1106 return read64<E>(Buf);
1107 case DW_EH_PE_absptr:
1108 if (ELFT::Is64Bits)
1109 return read64<E>(Buf);
1110 return read32<E>(Buf);
1111 }
1112 fatal("unknown FDE size encoding");
1113}
1114
1115// Returns the VA to which a given FDE (on a mmap'ed buffer) is applied to.
1116// We need it to create .eh_frame_hdr section.
1117template <class ELFT>
Rui Ueyama1e479c22016-05-23 15:07:59 +00001118typename ELFT::uint EhOutputSection<ELFT>::getFdePc(uint8_t *Buf, size_t FdeOff,
Rui Ueyamae75e9332016-05-23 03:00:33 +00001119 uint8_t Enc) {
Rui Ueyama2ab3d202016-05-23 16:36:47 +00001120 // The starting address to which this FDE applies is
Rui Ueyamae75e9332016-05-23 03:00:33 +00001121 // stored at FDE + 8 byte.
1122 size_t Off = FdeOff + 8;
1123 uint64_t Addr = readFdeAddr<ELFT>(Buf + Off, Enc & 0x7);
1124 if ((Enc & 0x70) == DW_EH_PE_absptr)
1125 return Addr;
1126 if ((Enc & 0x70) == DW_EH_PE_pcrel)
1127 return Addr + this->getVA() + Off;
1128 fatal("unknown FDE size relative encoding");
1129}
1130
Rui Ueyama1e479c22016-05-23 15:07:59 +00001131template <class ELFT> void EhOutputSection<ELFT>::writeTo(uint8_t *Buf) {
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001132 const endianness E = ELFT::TargetEndianness;
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001133 for (CieRecord *Cie : Cies) {
1134 size_t CieOffset = Cie->Piece->OutputOff;
Rui Ueyamad8849272016-05-25 16:37:01 +00001135 writeCieFde<ELFT>(Buf + CieOffset, Cie->Piece->data());
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001136
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001137 for (SectionPiece *Fde : Cie->FdePieces) {
1138 size_t Off = Fde->OutputOff;
Rui Ueyamad8849272016-05-25 16:37:01 +00001139 writeCieFde<ELFT>(Buf + Off, Fde->data());
Rafael Espindola56004c52016-04-07 14:22:09 +00001140
Rui Ueyamaf8b285c2016-05-22 23:16:14 +00001141 // FDE's second word should have the offset to an associated CIE.
1142 // Write it.
1143 write32<E>(Buf + Off + 4, Off + 4 - CieOffset);
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001144 }
1145 }
1146
Rui Ueyama0b9a9032016-05-24 04:19:20 +00001147 for (EhInputSection<ELFT> *S : Sections)
Rafael Espindola22ef9562016-04-13 01:40:19 +00001148 S->relocate(Buf, nullptr);
Rui Ueyamae75e9332016-05-23 03:00:33 +00001149
1150 // Construct .eh_frame_hdr. .eh_frame_hdr is a binary search table
Rui Ueyama2ab3d202016-05-23 16:36:47 +00001151 // to get a FDE from an address to which FDE is applied. So here
Rui Ueyamae75e9332016-05-23 03:00:33 +00001152 // we obtain two addresses and pass them to EhFrameHdr object.
Rui Ueyama3b31e672016-05-23 16:24:16 +00001153 if (Out<ELFT>::EhFrameHdr) {
1154 for (CieRecord *Cie : Cies) {
Rui Ueyamad8849272016-05-25 16:37:01 +00001155 uint8_t Enc = getFdeEncoding<ELFT>(Cie->Piece->data());
Rui Ueyama3b31e672016-05-23 16:24:16 +00001156 for (SectionPiece *Fde : Cie->FdePieces) {
Rui Ueyama6de2e682016-05-24 02:08:38 +00001157 uintX_t Pc = getFdePc(Buf, Fde->OutputOff, Enc);
Rui Ueyama3b31e672016-05-23 16:24:16 +00001158 uintX_t FdeVA = this->getVA() + Fde->OutputOff;
1159 Out<ELFT>::EhFrameHdr->addFde(Pc, FdeVA);
1160 }
Rui Ueyamae75e9332016-05-23 03:00:33 +00001161 }
1162 }
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001163}
1164
1165template <class ELFT>
Rui Ueyamad97e5c42016-01-07 18:33:11 +00001166MergeOutputSection<ELFT>::MergeOutputSection(StringRef Name, uint32_t Type,
Rafael Espindola7efa5be2016-02-19 14:17:40 +00001167 uintX_t Flags, uintX_t Alignment)
1168 : OutputSectionBase<ELFT>(Name, Type, Flags),
1169 Builder(llvm::StringTableBuilder::RAW, Alignment) {}
Rafael Espindolac159c962015-10-19 21:00:02 +00001170
1171template <class ELFT> void MergeOutputSection<ELFT>::writeTo(uint8_t *Buf) {
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001172 if (shouldTailMerge()) {
1173 StringRef Data = Builder.data();
Rafael Espindolac159c962015-10-19 21:00:02 +00001174 memcpy(Buf, Data.data(), Data.size());
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001175 return;
Rafael Espindolac159c962015-10-19 21:00:02 +00001176 }
Rui Ueyama31f9f612016-05-06 00:52:08 +00001177 for (const std::pair<CachedHash<StringRef>, size_t> &P : Builder.getMap()) {
1178 StringRef Data = P.first.Val;
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001179 memcpy(Buf + P.second, Data.data(), Data.size());
1180 }
1181}
1182
Rui Ueyama34dc99e2016-05-22 01:15:32 +00001183static StringRef toStringRef(ArrayRef<uint8_t> A) {
1184 return {(const char *)A.data(), A.size()};
1185}
1186
Rafael Espindolac159c962015-10-19 21:00:02 +00001187template <class ELFT>
Rui Ueyama40845e62015-12-26 05:51:07 +00001188void MergeOutputSection<ELFT>::addSection(InputSectionBase<ELFT> *C) {
Rui Ueyama10803512016-05-22 00:25:30 +00001189 auto *Sec = cast<MergeInputSection<ELFT>>(C);
1190 Sec->OutSec = this;
Rui Ueyama424b4082016-06-17 01:18:46 +00001191 this->updateAlignment(Sec->Alignment);
Rui Ueyamac6ebb022016-05-22 01:03:41 +00001192 this->Header.sh_entsize = Sec->getSectionHdr()->sh_entsize;
Rui Ueyama406b4692016-05-27 14:39:13 +00001193 Sections.push_back(Sec);
Rafael Espindolac159c962015-10-19 21:00:02 +00001194
Rui Ueyamac6ebb022016-05-22 01:03:41 +00001195 bool IsString = this->Header.sh_flags & SHF_STRINGS;
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001196
Rui Ueyamab7eda282016-05-24 02:10:28 +00001197 for (SectionPiece &Piece : Sec->Pieces) {
Rui Ueyama3ea87272016-05-22 00:13:04 +00001198 if (!Piece.Live)
Rafael Espindola0b9531c2016-04-22 22:09:35 +00001199 continue;
Rui Ueyamad8849272016-05-25 16:37:01 +00001200 uintX_t OutputOffset = Builder.add(toStringRef(Piece.data()));
Rui Ueyamac6ebb022016-05-22 01:03:41 +00001201 if (!IsString || !shouldTailMerge())
1202 Piece.OutputOff = OutputOffset;
Rafael Espindolac159c962015-10-19 21:00:02 +00001203 }
Rafael Espindolac159c962015-10-19 21:00:02 +00001204}
1205
1206template <class ELFT>
Rafael Espindolaf82ed2a2015-10-24 22:51:01 +00001207unsigned MergeOutputSection<ELFT>::getOffset(StringRef Val) {
1208 return Builder.getOffset(Val);
1209}
1210
1211template <class ELFT> bool MergeOutputSection<ELFT>::shouldTailMerge() const {
1212 return Config->Optimize >= 2 && this->Header.sh_flags & SHF_STRINGS;
1213}
1214
1215template <class ELFT> void MergeOutputSection<ELFT>::finalize() {
1216 if (shouldTailMerge())
1217 Builder.finalize();
1218 this->Header.sh_size = Builder.getSize();
Rafael Espindolac159c962015-10-19 21:00:02 +00001219}
1220
Rui Ueyama406b4692016-05-27 14:39:13 +00001221template <class ELFT> void MergeOutputSection<ELFT>::finalizePieces() {
1222 for (MergeInputSection<ELFT> *Sec : Sections)
1223 Sec->finalizePieces();
1224}
1225
Rafael Espindolac159c962015-10-19 21:00:02 +00001226template <class ELFT>
George Rimar0f5ac9f2015-10-20 17:21:35 +00001227StringTableSection<ELFT>::StringTableSection(StringRef Name, bool Dynamic)
Rui Ueyama6ffb42a2016-01-07 20:53:30 +00001228 : OutputSectionBase<ELFT>(Name, SHT_STRTAB,
1229 Dynamic ? (uintX_t)SHF_ALLOC : 0),
Rafael Espindola35c6af32015-09-25 17:19:10 +00001230 Dynamic(Dynamic) {
1231 this->Header.sh_addralign = 1;
1232}
1233
Rafael Espindolae2c24612016-01-29 01:24:25 +00001234// Adds a string to the string table. If HashIt is true we hash and check for
1235// duplicates. It is optional because the name of global symbols are already
1236// uniqued and hashing them again has a big cost for a small value: uniquing
1237// them with some other string that happens to be the same.
1238template <class ELFT>
1239unsigned StringTableSection<ELFT>::addString(StringRef S, bool HashIt) {
1240 if (HashIt) {
1241 auto R = StringMap.insert(std::make_pair(S, Size));
1242 if (!R.second)
1243 return R.first->second;
1244 }
1245 unsigned Ret = Size;
1246 Size += S.size() + 1;
Rui Ueyama76c00632016-01-07 02:35:32 +00001247 Strings.push_back(S);
Rafael Espindolae2c24612016-01-29 01:24:25 +00001248 return Ret;
Rui Ueyama76c00632016-01-07 02:35:32 +00001249}
1250
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +00001251template <class ELFT> void StringTableSection<ELFT>::writeTo(uint8_t *Buf) {
Rui Ueyama76c00632016-01-07 02:35:32 +00001252 // ELF string tables start with NUL byte, so advance the pointer by one.
1253 ++Buf;
1254 for (StringRef S : Strings) {
1255 memcpy(Buf, S.data(), S.size());
1256 Buf += S.size() + 1;
1257 }
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001258}
1259
Rafael Espindolad1cf4212015-10-05 16:25:43 +00001260template <class ELFT>
Rafael Espindola35c6af32015-09-25 17:19:10 +00001261SymbolTableSection<ELFT>::SymbolTableSection(
Rui Ueyamaace4f902016-05-24 04:25:47 +00001262 StringTableSection<ELFT> &StrTabSec)
Rui Ueyamacf07a312016-01-06 22:53:58 +00001263 : OutputSectionBase<ELFT>(StrTabSec.isDynamic() ? ".dynsym" : ".symtab",
1264 StrTabSec.isDynamic() ? SHT_DYNSYM : SHT_SYMTAB,
Rui Ueyama6ffb42a2016-01-07 20:53:30 +00001265 StrTabSec.isDynamic() ? (uintX_t)SHF_ALLOC : 0),
Rui Ueyamaace4f902016-05-24 04:25:47 +00001266 StrTabSec(StrTabSec) {
Rui Ueyamad1e92aa2016-01-07 18:20:02 +00001267 this->Header.sh_entsize = sizeof(Elf_Sym);
Rui Ueyama5e378dd2016-01-29 22:18:57 +00001268 this->Header.sh_addralign = sizeof(uintX_t);
Rafael Espindola35c6af32015-09-25 17:19:10 +00001269}
1270
Igor Kudrinf4cdfe882015-11-12 04:08:12 +00001271// Orders symbols according to their positions in the GOT,
1272// in compliance with MIPS ABI rules.
1273// See "Global Offset Table" in Chapter 5 in the following document
1274// for detailed description:
1275// ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
Rafael Espindolae2c24612016-01-29 01:24:25 +00001276static bool sortMipsSymbols(const std::pair<SymbolBody *, unsigned> &L,
1277 const std::pair<SymbolBody *, unsigned> &R) {
Simon Atanasyand2980d32016-03-29 14:07:22 +00001278 // Sort entries related to non-local preemptible symbols by GOT indexes.
1279 // All other entries go to the first part of GOT in arbitrary order.
Simon Atanasyan7b8481b2016-06-20 11:37:56 +00001280 bool LIsInLocalGot = !L.first->IsInGlobalMipsGot;
1281 bool RIsInLocalGot = !R.first->IsInGlobalMipsGot;
1282 if (LIsInLocalGot || RIsInLocalGot)
1283 return !RIsInLocalGot;
Rafael Espindolae2c24612016-01-29 01:24:25 +00001284 return L.first->GotIndex < R.first->GotIndex;
Igor Kudrinf4cdfe882015-11-12 04:08:12 +00001285}
1286
Rafael Espindolabadd3972016-04-08 15:30:56 +00001287static uint8_t getSymbolBinding(SymbolBody *Body) {
Peter Collingbourne4f952702016-05-01 04:55:03 +00001288 Symbol *S = Body->symbol();
Rafael Espindola9e32e4f2016-04-26 13:50:46 +00001289 uint8_t Visibility = S->Visibility;
Rafael Espindolabadd3972016-04-08 15:30:56 +00001290 if (Visibility != STV_DEFAULT && Visibility != STV_PROTECTED)
1291 return STB_LOCAL;
Rafael Espindola9e32e4f2016-04-26 13:50:46 +00001292 if (Config->NoGnuUnique && S->Binding == STB_GNU_UNIQUE)
Rafael Espindolabadd3972016-04-08 15:30:56 +00001293 return STB_GLOBAL;
Rafael Espindola9e32e4f2016-04-26 13:50:46 +00001294 return S->Binding;
Rafael Espindolabadd3972016-04-08 15:30:56 +00001295}
1296
Rui Ueyama0db335f2015-10-07 16:58:54 +00001297template <class ELFT> void SymbolTableSection<ELFT>::finalize() {
Igor Kudrin2169b1b2015-11-02 10:46:14 +00001298 if (this->Header.sh_size)
1299 return; // Already finalized.
1300
Rui Ueyama0db335f2015-10-07 16:58:54 +00001301 this->Header.sh_size = getNumSymbols() * sizeof(Elf_Sym);
Rui Ueyama2317d0d2015-10-15 20:55:22 +00001302 this->Header.sh_link = StrTabSec.SectionIndex;
Rui Ueyama0db335f2015-10-07 16:58:54 +00001303 this->Header.sh_info = NumLocals + 1;
Igor Kudrinab665fc2015-10-20 21:47:58 +00001304
George Rimar58941ee2016-02-25 08:23:37 +00001305 if (Config->Relocatable) {
1306 size_t I = NumLocals;
1307 for (const std::pair<SymbolBody *, size_t> &P : Symbols)
1308 P.first->DynsymIndex = ++I;
1309 return;
1310 }
1311
Igor Kudrinab665fc2015-10-20 21:47:58 +00001312 if (!StrTabSec.isDynamic()) {
1313 std::stable_sort(Symbols.begin(), Symbols.end(),
Rafael Espindolae2c24612016-01-29 01:24:25 +00001314 [](const std::pair<SymbolBody *, unsigned> &L,
1315 const std::pair<SymbolBody *, unsigned> &R) {
1316 return getSymbolBinding(L.first) == STB_LOCAL &&
1317 getSymbolBinding(R.first) != STB_LOCAL;
Igor Kudrinab665fc2015-10-20 21:47:58 +00001318 });
1319 return;
1320 }
Igor Kudrinf1d60292015-10-28 07:05:56 +00001321 if (Out<ELFT>::GnuHashTab)
1322 // NB: It also sorts Symbols to meet the GNU hash table requirements.
1323 Out<ELFT>::GnuHashTab->addSymbols(Symbols);
Igor Kudrinf4cdfe882015-11-12 04:08:12 +00001324 else if (Config->EMachine == EM_MIPS)
1325 std::stable_sort(Symbols.begin(), Symbols.end(), sortMipsSymbols);
Igor Kudrinab665fc2015-10-20 21:47:58 +00001326 size_t I = 0;
Rui Ueyamac2e863a2016-02-17 05:06:40 +00001327 for (const std::pair<SymbolBody *, size_t> &P : Symbols)
Rui Ueyama572a6f72016-01-29 01:49:33 +00001328 P.first->DynsymIndex = ++I;
Igor Kudrinab665fc2015-10-20 21:47:58 +00001329}
1330
1331template <class ELFT>
Rui Ueyamac2e863a2016-02-17 05:06:40 +00001332void SymbolTableSection<ELFT>::addSymbol(SymbolBody *B) {
1333 Symbols.push_back({B, StrTabSec.addString(B->getName(), false)});
Rui Ueyama0db335f2015-10-07 16:58:54 +00001334}
1335
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001336template <class ELFT> void SymbolTableSection<ELFT>::writeTo(uint8_t *Buf) {
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001337 Buf += sizeof(Elf_Sym);
1338
1339 // All symbols with STB_LOCAL binding precede the weak and global symbols.
1340 // .dynsym only contains global symbols.
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001341 if (!Config->DiscardAll && !StrTabSec.isDynamic())
1342 writeLocalSymbols(Buf);
1343
1344 writeGlobalSymbols(Buf);
1345}
1346
1347template <class ELFT>
1348void SymbolTableSection<ELFT>::writeLocalSymbols(uint8_t *&Buf) {
1349 // Iterate over all input object files to copy their local symbols
1350 // to the output symbol table pointed by Buf.
Rui Ueyamaace4f902016-05-24 04:25:47 +00001351 for (const std::unique_ptr<ObjectFile<ELFT>> &File :
1352 Symtab<ELFT>::X->getObjectFiles()) {
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001353 for (const std::pair<const DefinedRegular<ELFT> *, size_t> &P :
1354 File->KeptLocalSyms) {
1355 const DefinedRegular<ELFT> &Body = *P.first;
1356 InputSectionBase<ELFT> *Section = Body.Section;
Rui Ueyamac55733e2015-09-30 00:54:29 +00001357 auto *ESym = reinterpret_cast<Elf_Sym *>(Buf);
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001358
1359 if (!Section) {
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001360 ESym->st_shndx = SHN_ABS;
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001361 ESym->st_value = Body.Value;
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001362 } else {
Rafael Espindolac159c962015-10-19 21:00:02 +00001363 const OutputSectionBase<ELFT> *OutSec = Section->OutSec;
1364 ESym->st_shndx = OutSec->SectionIndex;
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001365 ESym->st_value = OutSec->getVA() + Section->getOffset(Body);
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001366 }
Rafael Espindolae2c24612016-01-29 01:24:25 +00001367 ESym->st_name = P.second;
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001368 ESym->st_size = Body.template getSize<ELFT>();
Rafael Espindola9e32e4f2016-04-26 13:50:46 +00001369 ESym->setBindingAndType(STB_LOCAL, Body.Type);
Rui Ueyamac4aaed92015-10-22 18:49:53 +00001370 Buf += sizeof(*ESym);
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001371 }
1372 }
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001373}
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001374
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001375template <class ELFT>
Igor Kudrinea6a8352015-10-19 08:01:51 +00001376void SymbolTableSection<ELFT>::writeGlobalSymbols(uint8_t *Buf) {
Rui Ueyama8ddfa812015-09-30 00:32:10 +00001377 // Write the internal symbol table contents to the output symbol table
1378 // pointed by Buf.
Igor Kudrinab665fc2015-10-20 21:47:58 +00001379 auto *ESym = reinterpret_cast<Elf_Sym *>(Buf);
Rui Ueyamac2e863a2016-02-17 05:06:40 +00001380 for (const std::pair<SymbolBody *, size_t> &P : Symbols) {
Rafael Espindolae2c24612016-01-29 01:24:25 +00001381 SymbolBody *Body = P.first;
Rui Ueyamac2e863a2016-02-17 05:06:40 +00001382 size_t StrOff = P.second;
Rui Ueyamac4aaed92015-10-22 18:49:53 +00001383
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +00001384 uint8_t Type = Body->Type;
1385 uintX_t Size = Body->getSize<ELFT>();
Rafael Espindola8614c562015-10-06 14:33:58 +00001386
Igor Kudrin853b88d2015-10-20 20:52:14 +00001387 ESym->setBindingAndType(getSymbolBinding(Body), Type);
Rafael Espindola8614c562015-10-06 14:33:58 +00001388 ESym->st_size = Size;
Rui Ueyamac2e863a2016-02-17 05:06:40 +00001389 ESym->st_name = StrOff;
Peter Collingbourne4f952702016-05-01 04:55:03 +00001390 ESym->setVisibility(Body->symbol()->Visibility);
Rui Ueyamab5a69702016-02-01 21:00:35 +00001391 ESym->st_value = Body->getVA<ELFT>();
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001392
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001393 if (const OutputSectionBase<ELFT> *OutSec = getOutputSection(Body))
Rui Ueyama2317d0d2015-10-15 20:55:22 +00001394 ESym->st_shndx = OutSec->SectionIndex;
Rafael Espindola02ce26a2015-12-24 14:22:24 +00001395 else if (isa<DefinedRegular<ELFT>>(Body))
1396 ESym->st_shndx = SHN_ABS;
Simon Atanasyand040a582016-02-25 16:19:15 +00001397
1398 // On MIPS we need to mark symbol which has a PLT entry and requires pointer
1399 // equality by STO_MIPS_PLT flag. That is necessary to help dynamic linker
1400 // distinguish such symbols and MIPS lazy-binding stubs.
1401 // https://sourceware.org/ml/binutils/2008-07/txt00000.txt
1402 if (Config->EMachine == EM_MIPS && Body->isInPlt() &&
1403 Body->NeedsCopyOrPltAddr)
Simon Atanasyanbea96982016-02-25 21:09:05 +00001404 ESym->st_other |= STO_MIPS_PLT;
Igor Kudrinab665fc2015-10-20 21:47:58 +00001405 ++ESym;
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001406 }
1407}
1408
Igor Kudrin853b88d2015-10-20 20:52:14 +00001409template <class ELFT>
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001410const OutputSectionBase<ELFT> *
1411SymbolTableSection<ELFT>::getOutputSection(SymbolBody *Sym) {
1412 switch (Sym->kind()) {
1413 case SymbolBody::DefinedSyntheticKind:
Peter Collingbourne6a422592016-05-03 01:21:08 +00001414 return cast<DefinedSynthetic<ELFT>>(Sym)->Section;
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001415 case SymbolBody::DefinedRegularKind: {
Rafael Espindola5ffa13c2016-04-15 00:15:02 +00001416 auto &D = cast<DefinedRegular<ELFT>>(*Sym);
Rafael Espindola67d72c02016-03-11 12:06:30 +00001417 if (D.Section)
1418 return D.Section->OutSec;
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001419 break;
1420 }
1421 case SymbolBody::DefinedCommonKind:
1422 return Out<ELFT>::Bss;
1423 case SymbolBody::SharedKind:
1424 if (cast<SharedSymbol<ELFT>>(Sym)->needsCopy())
1425 return Out<ELFT>::Bss;
1426 break;
Peter Collingbourne60976ed2016-04-27 00:05:06 +00001427 case SymbolBody::UndefinedKind:
Rui Ueyamaf8baa662016-04-07 19:24:51 +00001428 case SymbolBody::LazyArchiveKind:
1429 case SymbolBody::LazyObjectKind:
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001430 break;
1431 case SymbolBody::DefinedBitcodeKind:
Davide Italianof6523ae2016-03-29 02:20:10 +00001432 llvm_unreachable("should have been replaced");
Rui Ueyama874e7ae2016-02-17 04:56:44 +00001433 }
1434 return nullptr;
1435}
1436
1437template <class ELFT>
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001438VersionTableSection<ELFT>::VersionTableSection()
Rafael Espindolaeaaec4a2016-04-29 17:19:45 +00001439 : OutputSectionBase<ELFT>(".gnu.version", SHT_GNU_versym, SHF_ALLOC) {
Rafael Espindolaaae59562016-04-29 23:20:30 +00001440 this->Header.sh_addralign = sizeof(uint16_t);
Rafael Espindolaeaaec4a2016-04-29 17:19:45 +00001441}
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001442
1443template <class ELFT> void VersionTableSection<ELFT>::finalize() {
1444 this->Header.sh_size =
1445 sizeof(Elf_Versym) * (Out<ELFT>::DynSymTab->getSymbols().size() + 1);
1446 this->Header.sh_entsize = sizeof(Elf_Versym);
George Rimar8b3c5f22016-06-06 08:04:53 +00001447 // At the moment of june 2016 GNU docs does not mention that sh_link field
1448 // should be set, but Sun docs do. Also readelf relies on this field.
1449 this->Header.sh_link = Out<ELFT>::DynSymTab->SectionIndex;
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001450}
1451
1452template <class ELFT> void VersionTableSection<ELFT>::writeTo(uint8_t *Buf) {
1453 auto *OutVersym = reinterpret_cast<Elf_Versym *>(Buf) + 1;
1454 for (const std::pair<SymbolBody *, size_t> &P :
1455 Out<ELFT>::DynSymTab->getSymbols()) {
George Rimard03f9722016-06-20 10:29:53 +00001456 if (auto *SS = dyn_cast<SharedSymbol<ELFT>>(P.first))
1457 OutVersym->vs_index = SS->VersionId;
1458 else
1459 OutVersym->vs_index = VER_NDX_GLOBAL;
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001460 ++OutVersym;
1461 }
1462}
1463
1464template <class ELFT>
1465VersionNeedSection<ELFT>::VersionNeedSection()
Rafael Espindolaeaaec4a2016-04-29 17:19:45 +00001466 : OutputSectionBase<ELFT>(".gnu.version_r", SHT_GNU_verneed, SHF_ALLOC) {
Rafael Espindolaaae59562016-04-29 23:20:30 +00001467 this->Header.sh_addralign = sizeof(uint32_t);
Rafael Espindolaeaaec4a2016-04-29 17:19:45 +00001468}
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001469
1470template <class ELFT>
1471void VersionNeedSection<ELFT>::addSymbol(SharedSymbol<ELFT> *SS) {
1472 if (!SS->Verdef) {
George Rimard03f9722016-06-20 10:29:53 +00001473 SS->VersionId = VER_NDX_GLOBAL;
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001474 return;
1475 }
1476 SharedFile<ELFT> *F = SS->File;
1477 // If we don't already know that we need an Elf_Verneed for this DSO, prepare
1478 // to create one by adding it to our needed list and creating a dynstr entry
1479 // for the soname.
1480 if (F->VerdefMap.empty())
1481 Needed.push_back({F, Out<ELFT>::DynStrTab->addString(F->getSoName())});
1482 typename SharedFile<ELFT>::NeededVer &NV = F->VerdefMap[SS->Verdef];
1483 // If we don't already know that we need an Elf_Vernaux for this Elf_Verdef,
1484 // prepare to create one by allocating a version identifier and creating a
1485 // dynstr entry for the version name.
1486 if (NV.Index == 0) {
1487 NV.StrTab = Out<ELFT>::DynStrTab->addString(
1488 SS->File->getStringTable().data() + SS->Verdef->getAux()->vda_name);
1489 NV.Index = NextIndex++;
1490 }
George Rimard03f9722016-06-20 10:29:53 +00001491 SS->VersionId = NV.Index;
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001492}
1493
1494template <class ELFT> void VersionNeedSection<ELFT>::writeTo(uint8_t *Buf) {
1495 // The Elf_Verneeds need to appear first, followed by the Elf_Vernauxs.
1496 auto *Verneed = reinterpret_cast<Elf_Verneed *>(Buf);
1497 auto *Vernaux = reinterpret_cast<Elf_Vernaux *>(Verneed + Needed.size());
1498
1499 for (std::pair<SharedFile<ELFT> *, size_t> &P : Needed) {
1500 // Create an Elf_Verneed for this DSO.
1501 Verneed->vn_version = 1;
1502 Verneed->vn_cnt = P.first->VerdefMap.size();
1503 Verneed->vn_file = P.second;
1504 Verneed->vn_aux =
1505 reinterpret_cast<char *>(Vernaux) - reinterpret_cast<char *>(Verneed);
1506 Verneed->vn_next = sizeof(Elf_Verneed);
1507 ++Verneed;
1508
1509 // Create the Elf_Vernauxs for this Elf_Verneed. The loop iterates over
1510 // VerdefMap, which will only contain references to needed version
1511 // definitions. Each Elf_Vernaux is based on the information contained in
1512 // the Elf_Verdef in the source DSO. This loop iterates over a std::map of
1513 // pointers, but is deterministic because the pointers refer to Elf_Verdef
1514 // data structures within a single input file.
1515 for (auto &NV : P.first->VerdefMap) {
1516 Vernaux->vna_hash = NV.first->vd_hash;
1517 Vernaux->vna_flags = 0;
1518 Vernaux->vna_other = NV.second.Index;
1519 Vernaux->vna_name = NV.second.StrTab;
1520 Vernaux->vna_next = sizeof(Elf_Vernaux);
1521 ++Vernaux;
1522 }
1523
1524 Vernaux[-1].vna_next = 0;
1525 }
1526 Verneed[-1].vn_next = 0;
1527}
1528
1529template <class ELFT> void VersionNeedSection<ELFT>::finalize() {
1530 this->Header.sh_link = Out<ELFT>::DynStrTab->SectionIndex;
1531 this->Header.sh_info = Needed.size();
1532 unsigned Size = Needed.size() * sizeof(Elf_Verneed);
1533 for (std::pair<SharedFile<ELFT> *, size_t> &P : Needed)
1534 Size += P.first->VerdefMap.size() * sizeof(Elf_Vernaux);
1535 this->Header.sh_size = Size;
1536}
1537
1538template <class ELFT>
Rui Ueyama3a41be22016-04-07 22:49:21 +00001539BuildIdSection<ELFT>::BuildIdSection(size_t HashSize)
1540 : OutputSectionBase<ELFT>(".note.gnu.build-id", SHT_NOTE, SHF_ALLOC),
1541 HashSize(HashSize) {
1542 // 16 bytes for the note section header.
1543 this->Header.sh_size = 16 + HashSize;
Rui Ueyama634ddf02016-03-11 20:51:53 +00001544}
1545
1546template <class ELFT> void BuildIdSection<ELFT>::writeTo(uint8_t *Buf) {
1547 const endianness E = ELFT::TargetEndianness;
1548 write32<E>(Buf, 4); // Name size
Rui Ueyama3a41be22016-04-07 22:49:21 +00001549 write32<E>(Buf + 4, HashSize); // Content size
Rui Ueyama634ddf02016-03-11 20:51:53 +00001550 write32<E>(Buf + 8, NT_GNU_BUILD_ID); // Type
1551 memcpy(Buf + 12, "GNU", 4); // Name string
1552 HashBuf = Buf + 16;
1553}
1554
Rui Ueyamadd368fc2016-05-02 23:35:59 +00001555template <class ELFT>
1556void BuildIdFnv1<ELFT>::writeBuildId(ArrayRef<ArrayRef<uint8_t>> Bufs) {
Rui Ueyama634ddf02016-03-11 20:51:53 +00001557 const endianness E = ELFT::TargetEndianness;
Rui Ueyamadd368fc2016-05-02 23:35:59 +00001558
1559 // 64-bit FNV-1 hash
1560 uint64_t Hash = 0xcbf29ce484222325;
1561 for (ArrayRef<uint8_t> Buf : Bufs) {
1562 for (uint8_t B : Buf) {
1563 Hash *= 0x100000001b3;
1564 Hash ^= B;
1565 }
1566 }
Rui Ueyama3a41be22016-04-07 22:49:21 +00001567 write64<E>(this->HashBuf, Hash);
1568}
1569
Rui Ueyamadd368fc2016-05-02 23:35:59 +00001570template <class ELFT>
1571void BuildIdMd5<ELFT>::writeBuildId(ArrayRef<ArrayRef<uint8_t>> Bufs) {
1572 llvm::MD5 Hash;
1573 for (ArrayRef<uint8_t> Buf : Bufs)
1574 Hash.update(Buf);
Rui Ueyama3a41be22016-04-07 22:49:21 +00001575 MD5::MD5Result Res;
1576 Hash.final(Res);
1577 memcpy(this->HashBuf, Res, 16);
Rui Ueyama634ddf02016-03-11 20:51:53 +00001578}
1579
Rui Ueyamadd368fc2016-05-02 23:35:59 +00001580template <class ELFT>
1581void BuildIdSha1<ELFT>::writeBuildId(ArrayRef<ArrayRef<uint8_t>> Bufs) {
1582 llvm::SHA1 Hash;
1583 for (ArrayRef<uint8_t> Buf : Bufs)
1584 Hash.update(Buf);
Rui Ueyamad86ec302016-04-07 23:51:56 +00001585 memcpy(this->HashBuf, Hash.final().data(), 20);
1586}
1587
Rui Ueyama634ddf02016-03-11 20:51:53 +00001588template <class ELFT>
Rui Ueyama9194db72016-05-13 21:55:56 +00001589BuildIdHexstring<ELFT>::BuildIdHexstring()
1590 : BuildIdSection<ELFT>(Config->BuildIdVector.size()) {}
1591
1592template <class ELFT>
1593void BuildIdHexstring<ELFT>::writeBuildId(ArrayRef<ArrayRef<uint8_t>> Bufs) {
1594 memcpy(this->HashBuf, Config->BuildIdVector.data(),
1595 Config->BuildIdVector.size());
1596}
1597
1598template <class ELFT>
Simon Atanasyan1d7df402015-12-20 10:57:34 +00001599MipsReginfoOutputSection<ELFT>::MipsReginfoOutputSection()
1600 : OutputSectionBase<ELFT>(".reginfo", SHT_MIPS_REGINFO, SHF_ALLOC) {
1601 this->Header.sh_addralign = 4;
1602 this->Header.sh_entsize = sizeof(Elf_Mips_RegInfo);
1603 this->Header.sh_size = sizeof(Elf_Mips_RegInfo);
1604}
1605
1606template <class ELFT>
1607void MipsReginfoOutputSection<ELFT>::writeTo(uint8_t *Buf) {
1608 auto *R = reinterpret_cast<Elf_Mips_RegInfo *>(Buf);
Simon Atanasyan4ee29182016-04-27 05:31:28 +00001609 R->ri_gp_value = Out<ELFT>::Got->getVA() + MipsGPOffset;
Rui Ueyama70eed362016-01-06 22:42:43 +00001610 R->ri_gprmask = GprMask;
Simon Atanasyan1d7df402015-12-20 10:57:34 +00001611}
1612
1613template <class ELFT>
Rui Ueyama40845e62015-12-26 05:51:07 +00001614void MipsReginfoOutputSection<ELFT>::addSection(InputSectionBase<ELFT> *C) {
Rui Ueyama70eed362016-01-06 22:42:43 +00001615 // Copy input object file's .reginfo gprmask to output.
Rui Ueyama40845e62015-12-26 05:51:07 +00001616 auto *S = cast<MipsReginfoInputSection<ELFT>>(C);
Rui Ueyama70eed362016-01-06 22:42:43 +00001617 GprMask |= S->Reginfo->ri_gprmask;
Simon Atanasyan84bb3552016-05-26 20:46:01 +00001618 S->OutSec = this;
Simon Atanasyan1d7df402015-12-20 10:57:34 +00001619}
1620
Simon Atanasyanadd74f32016-05-04 10:07:38 +00001621template <class ELFT>
1622MipsOptionsOutputSection<ELFT>::MipsOptionsOutputSection()
1623 : OutputSectionBase<ELFT>(".MIPS.options", SHT_MIPS_OPTIONS,
1624 SHF_ALLOC | SHF_MIPS_NOSTRIP) {
1625 this->Header.sh_addralign = 8;
1626 this->Header.sh_entsize = 1;
1627 this->Header.sh_size = sizeof(Elf_Mips_Options) + sizeof(Elf_Mips_RegInfo);
1628}
1629
1630template <class ELFT>
1631void MipsOptionsOutputSection<ELFT>::writeTo(uint8_t *Buf) {
1632 auto *Opt = reinterpret_cast<Elf_Mips_Options *>(Buf);
1633 Opt->kind = ODK_REGINFO;
1634 Opt->size = this->Header.sh_size;
1635 Opt->section = 0;
1636 Opt->info = 0;
1637 auto *Reg = reinterpret_cast<Elf_Mips_RegInfo *>(Buf + sizeof(*Opt));
1638 Reg->ri_gp_value = Out<ELFT>::Got->getVA() + MipsGPOffset;
1639 Reg->ri_gprmask = GprMask;
1640}
1641
1642template <class ELFT>
1643void MipsOptionsOutputSection<ELFT>::addSection(InputSectionBase<ELFT> *C) {
1644 auto *S = cast<MipsOptionsInputSection<ELFT>>(C);
1645 if (S->Reginfo)
1646 GprMask |= S->Reginfo->ri_gprmask;
Simon Atanasyan84bb3552016-05-26 20:46:01 +00001647 S->OutSec = this;
Simon Atanasyanadd74f32016-05-04 10:07:38 +00001648}
1649
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001650namespace lld {
Rafael Espindolae0df00b2016-02-28 00:25:54 +00001651namespace elf {
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +00001652template class OutputSectionBase<ELF32LE>;
1653template class OutputSectionBase<ELF32BE>;
1654template class OutputSectionBase<ELF64LE>;
1655template class OutputSectionBase<ELF64BE>;
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001656
George Rimarf6bc65a2016-01-15 13:34:52 +00001657template class EhFrameHeader<ELF32LE>;
1658template class EhFrameHeader<ELF32BE>;
1659template class EhFrameHeader<ELF64LE>;
1660template class EhFrameHeader<ELF64BE>;
1661
George Rimar648a2c32015-10-20 08:54:27 +00001662template class GotPltSection<ELF32LE>;
1663template class GotPltSection<ELF32BE>;
1664template class GotPltSection<ELF64LE>;
1665template class GotPltSection<ELF64BE>;
1666
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001667template class GotSection<ELF32LE>;
1668template class GotSection<ELF32BE>;
1669template class GotSection<ELF64LE>;
1670template class GotSection<ELF64BE>;
1671
1672template class PltSection<ELF32LE>;
1673template class PltSection<ELF32BE>;
1674template class PltSection<ELF64LE>;
1675template class PltSection<ELF64BE>;
1676
1677template class RelocationSection<ELF32LE>;
1678template class RelocationSection<ELF32BE>;
1679template class RelocationSection<ELF64LE>;
1680template class RelocationSection<ELF64BE>;
1681
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +00001682template class InterpSection<ELF32LE>;
1683template class InterpSection<ELF32BE>;
1684template class InterpSection<ELF64LE>;
1685template class InterpSection<ELF64BE>;
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001686
Igor Kudrin1b0d7062015-10-22 08:21:35 +00001687template class GnuHashTableSection<ELF32LE>;
1688template class GnuHashTableSection<ELF32BE>;
1689template class GnuHashTableSection<ELF64LE>;
1690template class GnuHashTableSection<ELF64BE>;
1691
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001692template class HashTableSection<ELF32LE>;
1693template class HashTableSection<ELF32BE>;
1694template class HashTableSection<ELF64LE>;
1695template class HashTableSection<ELF64BE>;
1696
1697template class DynamicSection<ELF32LE>;
1698template class DynamicSection<ELF32BE>;
1699template class DynamicSection<ELF64LE>;
1700template class DynamicSection<ELF64BE>;
1701
1702template class OutputSection<ELF32LE>;
1703template class OutputSection<ELF32BE>;
1704template class OutputSection<ELF64LE>;
1705template class OutputSection<ELF64BE>;
1706
Rui Ueyama1e479c22016-05-23 15:07:59 +00001707template class EhOutputSection<ELF32LE>;
1708template class EhOutputSection<ELF32BE>;
1709template class EhOutputSection<ELF64LE>;
1710template class EhOutputSection<ELF64BE>;
Rafael Espindola0c6a4f12015-11-11 19:54:14 +00001711
Simon Atanasyan1d7df402015-12-20 10:57:34 +00001712template class MipsReginfoOutputSection<ELF32LE>;
1713template class MipsReginfoOutputSection<ELF32BE>;
1714template class MipsReginfoOutputSection<ELF64LE>;
1715template class MipsReginfoOutputSection<ELF64BE>;
1716
Simon Atanasyanadd74f32016-05-04 10:07:38 +00001717template class MipsOptionsOutputSection<ELF32LE>;
1718template class MipsOptionsOutputSection<ELF32BE>;
1719template class MipsOptionsOutputSection<ELF64LE>;
1720template class MipsOptionsOutputSection<ELF64BE>;
1721
Rafael Espindolac159c962015-10-19 21:00:02 +00001722template class MergeOutputSection<ELF32LE>;
1723template class MergeOutputSection<ELF32BE>;
1724template class MergeOutputSection<ELF64LE>;
1725template class MergeOutputSection<ELF64BE>;
1726
Rui Ueyamac7cc6ec2015-10-15 22:27:29 +00001727template class StringTableSection<ELF32LE>;
1728template class StringTableSection<ELF32BE>;
1729template class StringTableSection<ELF64LE>;
1730template class StringTableSection<ELF64BE>;
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001731
1732template class SymbolTableSection<ELF32LE>;
1733template class SymbolTableSection<ELF32BE>;
1734template class SymbolTableSection<ELF64LE>;
1735template class SymbolTableSection<ELF64BE>;
Rui Ueyama634ddf02016-03-11 20:51:53 +00001736
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001737template class VersionTableSection<ELF32LE>;
1738template class VersionTableSection<ELF32BE>;
1739template class VersionTableSection<ELF64LE>;
1740template class VersionTableSection<ELF64BE>;
1741
1742template class VersionNeedSection<ELF32LE>;
1743template class VersionNeedSection<ELF32BE>;
1744template class VersionNeedSection<ELF64LE>;
1745template class VersionNeedSection<ELF64BE>;
1746
Rui Ueyama634ddf02016-03-11 20:51:53 +00001747template class BuildIdSection<ELF32LE>;
1748template class BuildIdSection<ELF32BE>;
1749template class BuildIdSection<ELF64LE>;
1750template class BuildIdSection<ELF64BE>;
Rui Ueyama3a41be22016-04-07 22:49:21 +00001751
1752template class BuildIdFnv1<ELF32LE>;
1753template class BuildIdFnv1<ELF32BE>;
1754template class BuildIdFnv1<ELF64LE>;
1755template class BuildIdFnv1<ELF64BE>;
1756
1757template class BuildIdMd5<ELF32LE>;
1758template class BuildIdMd5<ELF32BE>;
1759template class BuildIdMd5<ELF64LE>;
1760template class BuildIdMd5<ELF64BE>;
Rui Ueyamad86ec302016-04-07 23:51:56 +00001761
1762template class BuildIdSha1<ELF32LE>;
1763template class BuildIdSha1<ELF32BE>;
1764template class BuildIdSha1<ELF64LE>;
1765template class BuildIdSha1<ELF64BE>;
Rui Ueyama9194db72016-05-13 21:55:56 +00001766
1767template class BuildIdHexstring<ELF32LE>;
1768template class BuildIdHexstring<ELF32BE>;
1769template class BuildIdHexstring<ELF64LE>;
1770template class BuildIdHexstring<ELF64BE>;
Rafael Espindola5805c4f2015-09-21 21:38:08 +00001771}
1772}