]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/lld/ELF/InputSection.h
Merge ^/vendor/lld/dist up to its last change, and resolve conflicts.
[FreeBSD/FreeBSD.git] / contrib / llvm-project / lld / ELF / InputSection.h
1 //===- InputSection.h -------------------------------------------*- C++ -*-===//
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 #ifndef LLD_ELF_INPUT_SECTION_H
10 #define LLD_ELF_INPUT_SECTION_H
11
12 #include "Config.h"
13 #include "Relocations.h"
14 #include "Thunks.h"
15 #include "lld/Common/LLVM.h"
16 #include "llvm/ADT/CachedHashString.h"
17 #include "llvm/ADT/DenseSet.h"
18 #include "llvm/ADT/TinyPtrVector.h"
19 #include "llvm/Object/ELF.h"
20
21 namespace lld {
22 namespace elf {
23
24 class Symbol;
25 struct SectionPiece;
26
27 class Defined;
28 struct Partition;
29 class SyntheticSection;
30 class MergeSyntheticSection;
31 template <class ELFT> class ObjFile;
32 class OutputSection;
33
34 extern std::vector<Partition> partitions;
35
36 // This is the base class of all sections that lld handles. Some are sections in
37 // input files, some are sections in the produced output file and some exist
38 // just as a convenience for implementing special ways of combining some
39 // sections.
40 class SectionBase {
41 public:
42   enum Kind { Regular, EHFrame, Merge, Synthetic, Output };
43
44   Kind kind() const { return (Kind)sectionKind; }
45
46   StringRef name;
47
48   // This pointer points to the "real" instance of this instance.
49   // Usually Repl == this. However, if ICF merges two sections,
50   // Repl pointer of one section points to another section. So,
51   // if you need to get a pointer to this instance, do not use
52   // this but instead this->Repl.
53   SectionBase *repl;
54
55   unsigned sectionKind : 3;
56
57   // The next two bit fields are only used by InputSectionBase, but we
58   // put them here so the struct packs better.
59
60   unsigned bss : 1;
61
62   // Set for sections that should not be folded by ICF.
63   unsigned keepUnique : 1;
64
65   // The 1-indexed partition that this section is assigned to by the garbage
66   // collector, or 0 if this section is dead. Normally there is only one
67   // partition, so this will either be 0 or 1.
68   uint8_t partition;
69   elf::Partition &getPartition() const;
70
71   // These corresponds to the fields in Elf_Shdr.
72   uint32_t alignment;
73   uint64_t flags;
74   uint64_t entsize;
75   uint32_t type;
76   uint32_t link;
77   uint32_t info;
78
79   OutputSection *getOutputSection();
80   const OutputSection *getOutputSection() const {
81     return const_cast<SectionBase *>(this)->getOutputSection();
82   }
83
84   // Translate an offset in the input section to an offset in the output
85   // section.
86   uint64_t getOffset(uint64_t offset) const;
87
88   uint64_t getVA(uint64_t offset = 0) const;
89
90   bool isLive() const { return partition != 0; }
91   void markLive() { partition = 1; }
92   void markDead() { partition = 0; }
93
94 protected:
95   SectionBase(Kind sectionKind, StringRef name, uint64_t flags,
96               uint64_t entsize, uint64_t alignment, uint32_t type,
97               uint32_t info, uint32_t link)
98       : name(name), repl(this), sectionKind(sectionKind), bss(false),
99         keepUnique(false), partition(0), alignment(alignment), flags(flags),
100         entsize(entsize), type(type), link(link), info(info) {}
101 };
102
103 // This corresponds to a section of an input file.
104 class InputSectionBase : public SectionBase {
105 public:
106   template <class ELFT>
107   InputSectionBase(ObjFile<ELFT> &file, const typename ELFT::Shdr &header,
108                    StringRef name, Kind sectionKind);
109
110   InputSectionBase(InputFile *file, uint64_t flags, uint32_t type,
111                    uint64_t entsize, uint32_t link, uint32_t info,
112                    uint32_t alignment, ArrayRef<uint8_t> data, StringRef name,
113                    Kind sectionKind);
114
115   static bool classof(const SectionBase *s) { return s->kind() != Output; }
116
117   // Relocations that refer to this section.
118   unsigned numRelocations : 31;
119   unsigned areRelocsRela : 1;
120   const void *firstRelocation = nullptr;
121
122   // The file which contains this section. Its dynamic type is always
123   // ObjFile<ELFT>, but in order to avoid ELFT, we use InputFile as
124   // its static type.
125   InputFile *file;
126
127   template <class ELFT> ObjFile<ELFT> *getFile() const {
128     return cast_or_null<ObjFile<ELFT>>(file);
129   }
130
131   ArrayRef<uint8_t> data() const {
132     if (uncompressedSize >= 0)
133       uncompress();
134     return rawData;
135   }
136
137   uint64_t getOffsetInFile() const;
138
139   // Input sections are part of an output section. Special sections
140   // like .eh_frame and merge sections are first combined into a
141   // synthetic section that is then added to an output section. In all
142   // cases this points one level up.
143   SectionBase *parent = nullptr;
144
145   template <class ELFT> ArrayRef<typename ELFT::Rel> rels() const {
146     assert(!areRelocsRela);
147     return llvm::makeArrayRef(
148         static_cast<const typename ELFT::Rel *>(firstRelocation),
149         numRelocations);
150   }
151
152   template <class ELFT> ArrayRef<typename ELFT::Rela> relas() const {
153     assert(areRelocsRela);
154     return llvm::makeArrayRef(
155         static_cast<const typename ELFT::Rela *>(firstRelocation),
156         numRelocations);
157   }
158
159   // InputSections that are dependent on us (reverse dependency for GC)
160   llvm::TinyPtrVector<InputSection *> dependentSections;
161
162   // Returns the size of this section (even if this is a common or BSS.)
163   size_t getSize() const;
164
165   InputSection *getLinkOrderDep() const;
166
167   // Get the function symbol that encloses this offset from within the
168   // section.
169   template <class ELFT>
170   Defined *getEnclosingFunction(uint64_t offset);
171
172   // Returns a source location string. Used to construct an error message.
173   template <class ELFT> std::string getLocation(uint64_t offset);
174   std::string getSrcMsg(const Symbol &sym, uint64_t offset);
175   std::string getObjMsg(uint64_t offset);
176
177   // Each section knows how to relocate itself. These functions apply
178   // relocations, assuming that Buf points to this section's copy in
179   // the mmap'ed output buffer.
180   template <class ELFT> void relocate(uint8_t *buf, uint8_t *bufEnd);
181   void relocateAlloc(uint8_t *buf, uint8_t *bufEnd);
182
183   // The native ELF reloc data type is not very convenient to handle.
184   // So we convert ELF reloc records to our own records in Relocations.cpp.
185   // This vector contains such "cooked" relocations.
186   std::vector<Relocation> relocations;
187
188   // A function compiled with -fsplit-stack calling a function
189   // compiled without -fsplit-stack needs its prologue adjusted. Find
190   // such functions and adjust their prologues.  This is very similar
191   // to relocation. See https://gcc.gnu.org/wiki/SplitStacks for more
192   // information.
193   template <typename ELFT>
194   void adjustSplitStackFunctionPrologues(uint8_t *buf, uint8_t *end);
195
196
197   template <typename T> llvm::ArrayRef<T> getDataAs() const {
198     size_t s = data().size();
199     assert(s % sizeof(T) == 0);
200     return llvm::makeArrayRef<T>((const T *)data().data(), s / sizeof(T));
201   }
202
203 protected:
204   void parseCompressedHeader();
205   void uncompress() const;
206
207   mutable ArrayRef<uint8_t> rawData;
208
209   // This field stores the uncompressed size of the compressed data in rawData,
210   // or -1 if rawData is not compressed (either because the section wasn't
211   // compressed in the first place, or because we ended up uncompressing it).
212   // Since the feature is not used often, this is usually -1.
213   mutable int64_t uncompressedSize = -1;
214 };
215
216 // SectionPiece represents a piece of splittable section contents.
217 // We allocate a lot of these and binary search on them. This means that they
218 // have to be as compact as possible, which is why we don't store the size (can
219 // be found by looking at the next one).
220 struct SectionPiece {
221   SectionPiece(size_t off, uint32_t hash, bool live)
222       : inputOff(off), live(live || !config->gcSections), hash(hash >> 1) {}
223
224   uint32_t inputOff;
225   uint32_t live : 1;
226   uint32_t hash : 31;
227   uint64_t outputOff = 0;
228 };
229
230 static_assert(sizeof(SectionPiece) == 16, "SectionPiece is too big");
231
232 // This corresponds to a SHF_MERGE section of an input file.
233 class MergeInputSection : public InputSectionBase {
234 public:
235   template <class ELFT>
236   MergeInputSection(ObjFile<ELFT> &f, const typename ELFT::Shdr &header,
237                     StringRef name);
238   MergeInputSection(uint64_t flags, uint32_t type, uint64_t entsize,
239                     ArrayRef<uint8_t> data, StringRef name);
240
241   static bool classof(const SectionBase *s) { return s->kind() == Merge; }
242   void splitIntoPieces();
243
244   // Translate an offset in the input section to an offset in the parent
245   // MergeSyntheticSection.
246   uint64_t getParentOffset(uint64_t offset) const;
247
248   // Splittable sections are handled as a sequence of data
249   // rather than a single large blob of data.
250   std::vector<SectionPiece> pieces;
251
252   // Returns I'th piece's data. This function is very hot when
253   // string merging is enabled, so we want to inline.
254   LLVM_ATTRIBUTE_ALWAYS_INLINE
255   llvm::CachedHashStringRef getData(size_t i) const {
256     size_t begin = pieces[i].inputOff;
257     size_t end =
258         (pieces.size() - 1 == i) ? data().size() : pieces[i + 1].inputOff;
259     return {toStringRef(data().slice(begin, end - begin)), pieces[i].hash};
260   }
261
262   // Returns the SectionPiece at a given input section offset.
263   SectionPiece *getSectionPiece(uint64_t offset);
264   const SectionPiece *getSectionPiece(uint64_t offset) const {
265     return const_cast<MergeInputSection *>(this)->getSectionPiece(offset);
266   }
267
268   SyntheticSection *getParent() const;
269
270 private:
271   void splitStrings(ArrayRef<uint8_t> a, size_t size);
272   void splitNonStrings(ArrayRef<uint8_t> a, size_t size);
273 };
274
275 struct EhSectionPiece {
276   EhSectionPiece(size_t off, InputSectionBase *sec, uint32_t size,
277                  unsigned firstRelocation)
278       : inputOff(off), sec(sec), size(size), firstRelocation(firstRelocation) {}
279
280   ArrayRef<uint8_t> data() {
281     return {sec->data().data() + this->inputOff, size};
282   }
283
284   size_t inputOff;
285   ssize_t outputOff = -1;
286   InputSectionBase *sec;
287   uint32_t size;
288   unsigned firstRelocation;
289 };
290
291 // This corresponds to a .eh_frame section of an input file.
292 class EhInputSection : public InputSectionBase {
293 public:
294   template <class ELFT>
295   EhInputSection(ObjFile<ELFT> &f, const typename ELFT::Shdr &header,
296                  StringRef name);
297   static bool classof(const SectionBase *s) { return s->kind() == EHFrame; }
298   template <class ELFT> void split();
299   template <class ELFT, class RelTy> void split(ArrayRef<RelTy> rels);
300
301   // Splittable sections are handled as a sequence of data
302   // rather than a single large blob of data.
303   std::vector<EhSectionPiece> pieces;
304
305   SyntheticSection *getParent() const;
306 };
307
308 // This is a section that is added directly to an output section
309 // instead of needing special combination via a synthetic section. This
310 // includes all input sections with the exceptions of SHF_MERGE and
311 // .eh_frame. It also includes the synthetic sections themselves.
312 class InputSection : public InputSectionBase {
313 public:
314   InputSection(InputFile *f, uint64_t flags, uint32_t type, uint32_t alignment,
315                ArrayRef<uint8_t> data, StringRef name, Kind k = Regular);
316   template <class ELFT>
317   InputSection(ObjFile<ELFT> &f, const typename ELFT::Shdr &header,
318                StringRef name);
319
320   // Write this section to a mmap'ed file, assuming Buf is pointing to
321   // beginning of the output section.
322   template <class ELFT> void writeTo(uint8_t *buf);
323
324   uint64_t getOffset(uint64_t offset) const { return outSecOff + offset; }
325
326   OutputSection *getParent() const;
327
328   // This variable has two usages. Initially, it represents an index in the
329   // OutputSection's InputSection list, and is used when ordering SHF_LINK_ORDER
330   // sections. After assignAddresses is called, it represents the offset from
331   // the beginning of the output section this section was assigned to.
332   uint64_t outSecOff = 0;
333
334   static bool classof(const SectionBase *s);
335
336   InputSectionBase *getRelocatedSection() const;
337
338   template <class ELFT, class RelTy>
339   void relocateNonAlloc(uint8_t *buf, llvm::ArrayRef<RelTy> rels);
340
341   // Used by ICF.
342   uint32_t eqClass[2] = {0, 0};
343
344   // Called by ICF to merge two input sections.
345   void replace(InputSection *other);
346
347   static InputSection discarded;
348
349 private:
350   template <class ELFT, class RelTy>
351   void copyRelocations(uint8_t *buf, llvm::ArrayRef<RelTy> rels);
352
353   template <class ELFT> void copyShtGroup(uint8_t *buf);
354 };
355
356 // The list of all input sections.
357 extern std::vector<InputSectionBase *> inputSections;
358
359 } // namespace elf
360
361 std::string toString(const elf::InputSectionBase *);
362 } // namespace lld
363
364 #endif