1 //===- OutputSections.cpp -------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "OutputSections.h"
10 #include "Config.h"
11 #include "LinkerScript.h"
12 #include "SymbolTable.h"
13 #include "SyntheticSections.h"
14 #include "Target.h"
15 #include "lld/Common/Memory.h"
16 #include "lld/Common/Strings.h"
17 #include "llvm/BinaryFormat/Dwarf.h"
18 #include "llvm/Support/Compression.h"
19 #include "llvm/Support/MD5.h"
20 #include "llvm/Support/MathExtras.h"
21 #include "llvm/Support/Parallel.h"
22 #include "llvm/Support/SHA1.h"
23 #include "llvm/Support/TimeProfiler.h"
24 #include <regex>
25 #include <unordered_set>
26 
27 using namespace llvm;
28 using namespace llvm::dwarf;
29 using namespace llvm::object;
30 using namespace llvm::support::endian;
31 using namespace llvm::ELF;
32 using namespace lld;
33 using namespace lld::elf;
34 
35 uint8_t *Out::bufferStart;
36 uint8_t Out::first;
37 PhdrEntry *Out::tlsPhdr;
38 OutputSection *Out::elfHeader;
39 OutputSection *Out::programHeaders;
40 OutputSection *Out::preinitArray;
41 OutputSection *Out::initArray;
42 OutputSection *Out::finiArray;
43 
44 std::vector<OutputSection *> elf::outputSections;
45 
46 uint32_t OutputSection::getPhdrFlags() const {
47   uint32_t ret = 0;
48   if (config->emachine != EM_ARM || !(flags & SHF_ARM_PURECODE))
49     ret |= PF_R;
50   if (flags & SHF_WRITE)
51     ret |= PF_W;
52   if (flags & SHF_EXECINSTR)
53     ret |= PF_X;
54   return ret;
55 }
56 
57 template <class ELFT>
58 void OutputSection::writeHeaderTo(typename ELFT::Shdr *shdr) {
59   shdr->sh_entsize = entsize;
60   shdr->sh_addralign = alignment;
61   shdr->sh_type = type;
62   shdr->sh_offset = offset;
63   shdr->sh_flags = flags;
64   shdr->sh_info = info;
65   shdr->sh_link = link;
66   shdr->sh_addr = addr;
67   shdr->sh_size = size;
68   shdr->sh_name = shName;
69 }
70 
71 OutputSection::OutputSection(StringRef name, uint32_t type, uint64_t flags)
72     : BaseCommand(OutputSectionKind),
73       SectionBase(Output, name, flags, /*Entsize*/ 0, /*Alignment*/ 1, type,
74                   /*Info*/ 0, /*Link*/ 0) {}
75 
76 // We allow sections of types listed below to merged into a
77 // single progbits section. This is typically done by linker
78 // scripts. Merging nobits and progbits will force disk space
79 // to be allocated for nobits sections. Other ones don't require
80 // any special treatment on top of progbits, so there doesn't
81 // seem to be a harm in merging them.
82 //
83 // NOTE: clang since rL252300 emits SHT_X86_64_UNWIND .eh_frame sections. Allow
84 // them to be merged into SHT_PROGBITS .eh_frame (GNU as .cfi_*).
85 static bool canMergeToProgbits(unsigned type) {
86   return type == SHT_NOBITS || type == SHT_PROGBITS || type == SHT_INIT_ARRAY ||
87          type == SHT_PREINIT_ARRAY || type == SHT_FINI_ARRAY ||
88          type == SHT_NOTE ||
89          (type == SHT_X86_64_UNWIND && config->emachine == EM_X86_64);
90 }
91 
92 // Record that isec will be placed in the OutputSection. isec does not become
93 // permanent until finalizeInputSections() is called. The function should not be
94 // used after finalizeInputSections() is called. If you need to add an
95 // InputSection post finalizeInputSections(), then you must do the following:
96 //
97 // 1. Find or create an InputSectionDescription to hold InputSection.
98 // 2. Add the InputSection to the InputSectionDescription::sections.
99 // 3. Call commitSection(isec).
100 void OutputSection::recordSection(InputSectionBase *isec) {
101   partition = isec->partition;
102   isec->parent = this;
103   if (sectionCommands.empty() ||
104       !isa<InputSectionDescription>(sectionCommands.back()))
105     sectionCommands.push_back(make<InputSectionDescription>(""));
106   auto *isd = cast<InputSectionDescription>(sectionCommands.back());
107   isd->sectionBases.push_back(isec);
108 }
109 
110 // Update fields (type, flags, alignment, etc) according to the InputSection
111 // isec. Also check whether the InputSection flags and type are consistent with
112 // other InputSections.
113 void OutputSection::commitSection(InputSection *isec) {
114   if (!hasInputSections) {
115     // If IS is the first section to be added to this section,
116     // initialize type, entsize and flags from isec.
117     hasInputSections = true;
118     type = isec->type;
119     entsize = isec->entsize;
120     flags = isec->flags;
121   } else {
122     // Otherwise, check if new type or flags are compatible with existing ones.
123     if ((flags ^ isec->flags) & SHF_TLS)
124       error("incompatible section flags for " + name + "\n>>> " + toString(isec) +
125             ": 0x" + utohexstr(isec->flags) + "\n>>> output section " + name +
126             ": 0x" + utohexstr(flags));
127 
128     if (type != isec->type) {
129       if (!canMergeToProgbits(type) || !canMergeToProgbits(isec->type))
130         error("section type mismatch for " + isec->name + "\n>>> " +
131               toString(isec) + ": " +
132               getELFSectionTypeName(config->emachine, isec->type) +
133               "\n>>> output section " + name + ": " +
134               getELFSectionTypeName(config->emachine, type));
135       type = SHT_PROGBITS;
136     }
137   }
138   if (noload)
139     type = SHT_NOBITS;
140 
141   isec->parent = this;
142   uint64_t andMask =
143       config->emachine == EM_ARM ? (uint64_t)SHF_ARM_PURECODE : 0;
144   uint64_t orMask = ~andMask;
145   uint64_t andFlags = (flags & isec->flags) & andMask;
146   uint64_t orFlags = (flags | isec->flags) & orMask;
147   flags = andFlags | orFlags;
148   if (nonAlloc)
149     flags &= ~(uint64_t)SHF_ALLOC;
150 
151   alignment = std::max(alignment, isec->alignment);
152 
153   // If this section contains a table of fixed-size entries, sh_entsize
154   // holds the element size. If it contains elements of different size we
155   // set sh_entsize to 0.
156   if (entsize != isec->entsize)
157     entsize = 0;
158 }
159 
160 // This function scans over the InputSectionBase list sectionBases to create
161 // InputSectionDescription::sections.
162 //
163 // It removes MergeInputSections from the input section array and adds
164 // new synthetic sections at the location of the first input section
165 // that it replaces. It then finalizes each synthetic section in order
166 // to compute an output offset for each piece of each input section.
167 void OutputSection::finalizeInputSections() {
168   std::vector<MergeSyntheticSection *> mergeSections;
169   for (BaseCommand *base : sectionCommands) {
170     auto *cmd = dyn_cast<InputSectionDescription>(base);
171     if (!cmd)
172       continue;
173     cmd->sections.reserve(cmd->sectionBases.size());
174     for (InputSectionBase *s : cmd->sectionBases) {
175       MergeInputSection *ms = dyn_cast<MergeInputSection>(s);
176       if (!ms) {
177         cmd->sections.push_back(cast<InputSection>(s));
178         continue;
179       }
180 
181       // We do not want to handle sections that are not alive, so just remove
182       // them instead of trying to merge.
183       if (!ms->isLive())
184         continue;
185 
186       auto i = llvm::find_if(mergeSections, [=](MergeSyntheticSection *sec) {
187         // While we could create a single synthetic section for two different
188         // values of Entsize, it is better to take Entsize into consideration.
189         //
190         // With a single synthetic section no two pieces with different Entsize
191         // could be equal, so we may as well have two sections.
192         //
193         // Using Entsize in here also allows us to propagate it to the synthetic
194         // section.
195         //
196         // SHF_STRINGS section with different alignments should not be merged.
197         return sec->flags == ms->flags && sec->entsize == ms->entsize &&
198                (sec->alignment == ms->alignment || !(sec->flags & SHF_STRINGS));
199       });
200       if (i == mergeSections.end()) {
201         MergeSyntheticSection *syn =
202             createMergeSynthetic(name, ms->type, ms->flags, ms->alignment);
203         mergeSections.push_back(syn);
204         i = std::prev(mergeSections.end());
205         syn->entsize = ms->entsize;
206         cmd->sections.push_back(syn);
207       }
208       (*i)->addSection(ms);
209     }
210 
211     // sectionBases should not be used from this point onwards. Clear it to
212     // catch misuses.
213     cmd->sectionBases.clear();
214 
215     // Some input sections may be removed from the list after ICF.
216     for (InputSection *s : cmd->sections)
217       commitSection(s);
218   }
219   for (auto *ms : mergeSections)
220     ms->finalizeContents();
221 }
222 
223 static void sortByOrder(MutableArrayRef<InputSection *> in,
224                         llvm::function_ref<int(InputSectionBase *s)> order) {
225   std::vector<std::pair<int, InputSection *>> v;
226   for (InputSection *s : in)
227     v.push_back({order(s), s});
228   llvm::stable_sort(v, less_first());
229 
230   for (size_t i = 0; i < v.size(); ++i)
231     in[i] = v[i].second;
232 }
233 
234 uint64_t elf::getHeaderSize() {
235   if (config->oFormatBinary)
236     return 0;
237   return Out::elfHeader->size + Out::programHeaders->size;
238 }
239 
240 bool OutputSection::classof(const BaseCommand *c) {
241   return c->kind == OutputSectionKind;
242 }
243 
244 void OutputSection::sort(llvm::function_ref<int(InputSectionBase *s)> order) {
245   assert(isLive());
246   for (BaseCommand *b : sectionCommands)
247     if (auto *isd = dyn_cast<InputSectionDescription>(b))
248       sortByOrder(isd->sections, order);
249 }
250 
251 static void nopInstrFill(uint8_t *buf, size_t size) {
252   if (size == 0)
253     return;
254   unsigned i = 0;
255   if (size == 0)
256     return;
257   std::vector<std::vector<uint8_t>> nopFiller = *target->nopInstrs;
258   unsigned num = size / nopFiller.back().size();
259   for (unsigned c = 0; c < num; ++c) {
260     memcpy(buf + i, nopFiller.back().data(), nopFiller.back().size());
261     i += nopFiller.back().size();
262   }
263   unsigned remaining = size - i;
264   if (!remaining)
265     return;
266   assert(nopFiller[remaining - 1].size() == remaining);
267   memcpy(buf + i, nopFiller[remaining - 1].data(), remaining);
268 }
269 
270 // Fill [Buf, Buf + Size) with Filler.
271 // This is used for linker script "=fillexp" command.
272 static void fill(uint8_t *buf, size_t size,
273                  const std::array<uint8_t, 4> &filler) {
274   size_t i = 0;
275   for (; i + 4 < size; i += 4)
276     memcpy(buf + i, filler.data(), 4);
277   memcpy(buf + i, filler.data(), size - i);
278 }
279 
280 // Compress section contents if this section contains debug info.
281 template <class ELFT> void OutputSection::maybeCompress() {
282   using Elf_Chdr = typename ELFT::Chdr;
283 
284   // Compress only DWARF debug sections.
285   if (!config->compressDebugSections || (flags & SHF_ALLOC) ||
286       !name.startswith(".debug_"))
287     return;
288 
289   llvm::TimeTraceScope timeScope("Compress debug sections");
290 
291   // Create a section header.
292   zDebugHeader.resize(sizeof(Elf_Chdr));
293   auto *hdr = reinterpret_cast<Elf_Chdr *>(zDebugHeader.data());
294   hdr->ch_type = ELFCOMPRESS_ZLIB;
295   hdr->ch_size = size;
296   hdr->ch_addralign = alignment;
297 
298   // Write section contents to a temporary buffer and compress it.
299   std::vector<uint8_t> buf(size);
300   writeTo<ELFT>(buf.data());
301   // We chose 1 as the default compression level because it is the fastest. If
302   // -O2 is given, we use level 6 to compress debug info more by ~15%. We found
303   // that level 7 to 9 doesn't make much difference (~1% more compression) while
304   // they take significant amount of time (~2x), so level 6 seems enough.
305   if (Error e = zlib::compress(toStringRef(buf), compressedData,
306                                config->optimize >= 2 ? 6 : 1))
307     fatal("compress failed: " + llvm::toString(std::move(e)));
308 
309   // Update section headers.
310   size = sizeof(Elf_Chdr) + compressedData.size();
311   flags |= SHF_COMPRESSED;
312 }
313 
314 static void writeInt(uint8_t *buf, uint64_t data, uint64_t size) {
315   if (size == 1)
316     *buf = data;
317   else if (size == 2)
318     write16(buf, data);
319   else if (size == 4)
320     write32(buf, data);
321   else if (size == 8)
322     write64(buf, data);
323   else
324     llvm_unreachable("unsupported Size argument");
325 }
326 
327 template <class ELFT> void OutputSection::writeTo(uint8_t *buf) {
328   if (type == SHT_NOBITS)
329     return;
330 
331   // If -compress-debug-section is specified and if this is a debug section,
332   // we've already compressed section contents. If that's the case,
333   // just write it down.
334   if (!compressedData.empty()) {
335     memcpy(buf, zDebugHeader.data(), zDebugHeader.size());
336     memcpy(buf + zDebugHeader.size(), compressedData.data(),
337            compressedData.size());
338     return;
339   }
340 
341   // Write leading padding.
342   std::vector<InputSection *> sections = getInputSections(this);
343   std::array<uint8_t, 4> filler = getFiller();
344   bool nonZeroFiller = read32(filler.data()) != 0;
345   if (nonZeroFiller)
346     fill(buf, sections.empty() ? size : sections[0]->outSecOff, filler);
347 
348   parallelForEachN(0, sections.size(), [&](size_t i) {
349     InputSection *isec = sections[i];
350     isec->writeTo<ELFT>(buf);
351 
352     // Fill gaps between sections.
353     if (nonZeroFiller) {
354       uint8_t *start = buf + isec->outSecOff + isec->getSize();
355       uint8_t *end;
356       if (i + 1 == sections.size())
357         end = buf + size;
358       else
359         end = buf + sections[i + 1]->outSecOff;
360       if (isec->nopFiller) {
361         assert(target->nopInstrs);
362         nopInstrFill(start, end - start);
363       } else
364         fill(start, end - start, filler);
365     }
366   });
367 
368   // Linker scripts may have BYTE()-family commands with which you
369   // can write arbitrary bytes to the output. Process them if any.
370   for (BaseCommand *base : sectionCommands)
371     if (auto *data = dyn_cast<ByteCommand>(base))
372       writeInt(buf + data->offset, data->expression().getValue(), data->size);
373 }
374 
375 static void finalizeShtGroup(OutputSection *os,
376                              InputSection *section) {
377   assert(config->relocatable);
378 
379   // sh_link field for SHT_GROUP sections should contain the section index of
380   // the symbol table.
381   os->link = in.symTab->getParent()->sectionIndex;
382 
383   // sh_info then contain index of an entry in symbol table section which
384   // provides signature of the section group.
385   ArrayRef<Symbol *> symbols = section->file->getSymbols();
386   os->info = in.symTab->getSymbolIndex(symbols[section->info]);
387 
388   // Some group members may be combined or discarded, so we need to compute the
389   // new size. The content will be rewritten in InputSection::copyShtGroup.
390   std::unordered_set<uint32_t> seen;
391   ArrayRef<InputSectionBase *> sections = section->file->getSections();
392   for (const uint32_t &idx : section->getDataAs<uint32_t>().slice(1))
393     if (OutputSection *osec = sections[read32(&idx)]->getOutputSection())
394       seen.insert(osec->sectionIndex);
395   os->size = (1 + seen.size()) * sizeof(uint32_t);
396 }
397 
398 void OutputSection::finalize() {
399   InputSection *first = getFirstInputSection(this);
400 
401   if (flags & SHF_LINK_ORDER) {
402     // We must preserve the link order dependency of sections with the
403     // SHF_LINK_ORDER flag. The dependency is indicated by the sh_link field. We
404     // need to translate the InputSection sh_link to the OutputSection sh_link,
405     // all InputSections in the OutputSection have the same dependency.
406     if (auto *ex = dyn_cast<ARMExidxSyntheticSection>(first))
407       link = ex->getLinkOrderDep()->getParent()->sectionIndex;
408     else if (first->flags & SHF_LINK_ORDER)
409       if (auto *d = first->getLinkOrderDep())
410         link = d->getParent()->sectionIndex;
411   }
412 
413   if (type == SHT_GROUP) {
414     finalizeShtGroup(this, first);
415     return;
416   }
417 
418   if (!config->copyRelocs || (type != SHT_RELA && type != SHT_REL))
419     return;
420 
421   // Skip if 'first' is synthetic, i.e. not a section created by --emit-relocs.
422   // Normally 'type' was changed by 'first' so 'first' should be non-null.
423   // However, if the output section is .rela.dyn, 'type' can be set by the empty
424   // synthetic .rela.plt and first can be null.
425   if (!first || isa<SyntheticSection>(first))
426     return;
427 
428   link = in.symTab->getParent()->sectionIndex;
429   // sh_info for SHT_REL[A] sections should contain the section header index of
430   // the section to which the relocation applies.
431   InputSectionBase *s = first->getRelocatedSection();
432   info = s->getOutputSection()->sectionIndex;
433   flags |= SHF_INFO_LINK;
434 }
435 
436 // Returns true if S is in one of the many forms the compiler driver may pass
437 // crtbegin files.
438 //
439 // Gcc uses any of crtbegin[<empty>|S|T].o.
440 // Clang uses Gcc's plus clang_rt.crtbegin[<empty>|S|T][-<arch>|<empty>].o.
441 
442 static bool isCrtbegin(StringRef s) {
443   static std::regex re(R"((clang_rt\.)?crtbegin[ST]?(-.*)?\.o)");
444   s = sys::path::filename(s);
445   return std::regex_match(s.begin(), s.end(), re);
446 }
447 
448 static bool isCrtend(StringRef s) {
449   static std::regex re(R"((clang_rt\.)?crtend[ST]?(-.*)?\.o)");
450   s = sys::path::filename(s);
451   return std::regex_match(s.begin(), s.end(), re);
452 }
453 
454 // .ctors and .dtors are sorted by this order:
455 //
456 // 1. .ctors/.dtors in crtbegin (which contains a sentinel value -1).
457 // 2. The section is named ".ctors" or ".dtors" (priority: 65536).
458 // 3. The section has an optional priority value in the form of ".ctors.N" or
459 //    ".dtors.N" where N is a number in the form of %05u (priority: 65535-N).
460 // 4. .ctors/.dtors in crtend (which contains a sentinel value 0).
461 //
462 // For 2 and 3, the sections are sorted by priority from high to low, e.g.
463 // .ctors (65536), .ctors.00100 (65436), .ctors.00200 (65336).  In GNU ld's
464 // internal linker scripts, the sorting is by string comparison which can
465 // achieve the same goal given the optional priority values are of the same
466 // length.
467 //
468 // In an ideal world, we don't need this function because .init_array and
469 // .ctors are duplicate features (and .init_array is newer.) However, there
470 // are too many real-world use cases of .ctors, so we had no choice to
471 // support that with this rather ad-hoc semantics.
472 static bool compCtors(const InputSection *a, const InputSection *b) {
473   bool beginA = isCrtbegin(a->file->getName());
474   bool beginB = isCrtbegin(b->file->getName());
475   if (beginA != beginB)
476     return beginA;
477   bool endA = isCrtend(a->file->getName());
478   bool endB = isCrtend(b->file->getName());
479   if (endA != endB)
480     return endB;
481   return getPriority(a->name) > getPriority(b->name);
482 }
483 
484 // Sorts input sections by the special rules for .ctors and .dtors.
485 // Unfortunately, the rules are different from the one for .{init,fini}_array.
486 // Read the comment above.
487 void OutputSection::sortCtorsDtors() {
488   assert(sectionCommands.size() == 1);
489   auto *isd = cast<InputSectionDescription>(sectionCommands[0]);
490   llvm::stable_sort(isd->sections, compCtors);
491 }
492 
493 // If an input string is in the form of "foo.N" where N is a number, return N
494 // (65535-N if .ctors.N or .dtors.N). Otherwise, returns 65536, which is one
495 // greater than the lowest priority.
496 int elf::getPriority(StringRef s) {
497   size_t pos = s.rfind('.');
498   if (pos == StringRef::npos)
499     return 65536;
500   int v = 65536;
501   if (to_integer(s.substr(pos + 1), v, 10) &&
502       (pos == 6 && (s.startswith(".ctors") || s.startswith(".dtors"))))
503     v = 65535 - v;
504   return v;
505 }
506 
507 InputSection *elf::getFirstInputSection(const OutputSection *os) {
508   for (BaseCommand *base : os->sectionCommands)
509     if (auto *isd = dyn_cast<InputSectionDescription>(base))
510       if (!isd->sections.empty())
511         return isd->sections[0];
512   return nullptr;
513 }
514 
515 std::vector<InputSection *> elf::getInputSections(const OutputSection *os) {
516   std::vector<InputSection *> ret;
517   for (BaseCommand *base : os->sectionCommands)
518     if (auto *isd = dyn_cast<InputSectionDescription>(base))
519       ret.insert(ret.end(), isd->sections.begin(), isd->sections.end());
520   return ret;
521 }
522 
523 // Sorts input sections by section name suffixes, so that .foo.N comes
524 // before .foo.M if N < M. Used to sort .{init,fini}_array.N sections.
525 // We want to keep the original order if the priorities are the same
526 // because the compiler keeps the original initialization order in a
527 // translation unit and we need to respect that.
528 // For more detail, read the section of the GCC's manual about init_priority.
529 void OutputSection::sortInitFini() {
530   // Sort sections by priority.
531   sort([](InputSectionBase *s) { return getPriority(s->name); });
532 }
533 
534 std::array<uint8_t, 4> OutputSection::getFiller() {
535   if (filler)
536     return *filler;
537   if (flags & SHF_EXECINSTR)
538     return target->trapInstr;
539   return {0, 0, 0, 0};
540 }
541 
542 void OutputSection::checkDynRelAddends(const uint8_t *bufStart) {
543   assert(config->writeAddends && config->checkDynamicRelocs);
544   assert(type == SHT_REL || type == SHT_RELA);
545   std::vector<InputSection *> sections = getInputSections(this);
546   parallelForEachN(0, sections.size(), [&](size_t i) {
547     // When linking with -r or --emit-relocs we might also call this function
548     // for input .rel[a].<sec> sections which we simply pass through to the
549     // output. We skip over those and only look at the synthetic relocation
550     // sections created during linking.
551     const auto *sec = dyn_cast<RelocationBaseSection>(sections[i]);
552     if (!sec)
553       return;
554     for (const DynamicReloc &rel : sec->relocs) {
555       int64_t addend = rel.computeAddend();
556       const OutputSection *relOsec = rel.inputSec->getOutputSection();
557       assert(relOsec != nullptr && "missing output section for relocation");
558       const uint8_t *relocTarget =
559           bufStart + relOsec->offset + rel.inputSec->getOffset(rel.offsetInSec);
560       // For SHT_NOBITS the written addend is always zero.
561       int64_t writtenAddend =
562           relOsec->type == SHT_NOBITS
563               ? 0
564               : target->getImplicitAddend(relocTarget, rel.type);
565       if (addend != writtenAddend)
566         internalLinkerError(
567             getErrorLocation(relocTarget),
568             "wrote incorrect addend value 0x" + utohexstr(writtenAddend) +
569                 " instead of 0x" + utohexstr(addend) +
570                 " for dynamic relocation " + toString(rel.type) +
571                 " at offset 0x" + utohexstr(rel.getOffset()) +
572                 (rel.sym ? " against symbol " + toString(*rel.sym) : ""));
573     }
574   });
575 }
576 
577 template void OutputSection::writeHeaderTo<ELF32LE>(ELF32LE::Shdr *Shdr);
578 template void OutputSection::writeHeaderTo<ELF32BE>(ELF32BE::Shdr *Shdr);
579 template void OutputSection::writeHeaderTo<ELF64LE>(ELF64LE::Shdr *Shdr);
580 template void OutputSection::writeHeaderTo<ELF64BE>(ELF64BE::Shdr *Shdr);
581 
582 template void OutputSection::writeTo<ELF32LE>(uint8_t *Buf);
583 template void OutputSection::writeTo<ELF32BE>(uint8_t *Buf);
584 template void OutputSection::writeTo<ELF64LE>(uint8_t *Buf);
585 template void OutputSection::writeTo<ELF64BE>(uint8_t *Buf);
586 
587 template void OutputSection::maybeCompress<ELF32LE>();
588 template void OutputSection::maybeCompress<ELF32BE>();
589 template void OutputSection::maybeCompress<ELF64LE>();
590 template void OutputSection::maybeCompress<ELF64BE>();
591