]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/ELF/Symbols.h
Update lldb to trunk r290819 and resolve conflicts.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / ELF / Symbols.h
1 //===- Symbols.h ------------------------------------------------*- C++ -*-===//
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 // All symbols are handled as SymbolBodies regardless of their types.
11 // This file defines various types of SymbolBodies.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLD_ELF_SYMBOLS_H
16 #define LLD_ELF_SYMBOLS_H
17
18 #include "InputSection.h"
19 #include "Strings.h"
20
21 #include "lld/Core/LLVM.h"
22 #include "llvm/Object/Archive.h"
23 #include "llvm/Object/ELF.h"
24
25 namespace lld {
26 namespace elf {
27
28 class ArchiveFile;
29 class BitcodeFile;
30 class InputFile;
31 class LazyObjectFile;
32 template <class ELFT> class ObjectFile;
33 template <class ELFT> class OutputSection;
34 class OutputSectionBase;
35 template <class ELFT> class SharedFile;
36
37 struct Symbol;
38
39 // The base class for real symbol classes.
40 class SymbolBody {
41 public:
42   enum Kind {
43     DefinedFirst,
44     DefinedRegularKind = DefinedFirst,
45     SharedKind,
46     DefinedCommonKind,
47     DefinedSyntheticKind,
48     DefinedLast = DefinedSyntheticKind,
49     UndefinedKind,
50     LazyArchiveKind,
51     LazyObjectKind,
52   };
53
54   SymbolBody(Kind K) : SymbolKind(K) {}
55
56   Symbol *symbol();
57   const Symbol *symbol() const {
58     return const_cast<SymbolBody *>(this)->symbol();
59   }
60
61   Kind kind() const { return static_cast<Kind>(SymbolKind); }
62
63   bool isUndefined() const { return SymbolKind == UndefinedKind; }
64   bool isDefined() const { return SymbolKind <= DefinedLast; }
65   bool isCommon() const { return SymbolKind == DefinedCommonKind; }
66   bool isLazy() const {
67     return SymbolKind == LazyArchiveKind || SymbolKind == LazyObjectKind;
68   }
69   bool isShared() const { return SymbolKind == SharedKind; }
70   bool isLocal() const { return IsLocal; }
71   bool isPreemptible() const;
72   StringRef getName() const { return Name; }
73   uint8_t getVisibility() const { return StOther & 0x3; }
74   void parseSymbolVersion();
75
76   bool isInGot() const { return GotIndex != -1U; }
77   bool isInPlt() const { return PltIndex != -1U; }
78   template <class ELFT> bool hasThunk() const;
79
80   template <class ELFT>
81   typename ELFT::uint getVA(typename ELFT::uint Addend = 0) const;
82
83   template <class ELFT> typename ELFT::uint getGotOffset() const;
84   template <class ELFT> typename ELFT::uint getGotVA() const;
85   template <class ELFT> typename ELFT::uint getGotPltOffset() const;
86   template <class ELFT> typename ELFT::uint getGotPltVA() const;
87   template <class ELFT> typename ELFT::uint getPltVA() const;
88   template <class ELFT> typename ELFT::uint getThunkVA() const;
89   template <class ELFT> typename ELFT::uint getSize() const;
90
91   // The file from which this symbol was created.
92   InputFile *File = nullptr;
93
94   uint32_t DynsymIndex = 0;
95   uint32_t GotIndex = -1;
96   uint32_t GotPltIndex = -1;
97   uint32_t PltIndex = -1;
98   uint32_t GlobalDynIndex = -1;
99
100 protected:
101   SymbolBody(Kind K, StringRefZ Name, bool IsLocal, uint8_t StOther,
102              uint8_t Type);
103
104   const unsigned SymbolKind : 8;
105
106 public:
107   // True if the linker has to generate a copy relocation for this shared
108   // symbol or if the symbol should point to its plt entry.
109   unsigned NeedsCopyOrPltAddr : 1;
110
111   // True if this is a local symbol.
112   unsigned IsLocal : 1;
113
114   // True if this symbol has an entry in the global part of MIPS GOT.
115   unsigned IsInGlobalMipsGot : 1;
116
117   // True if this symbol is referenced by 32-bit GOT relocations.
118   unsigned Is32BitMipsGot : 1;
119
120   // True if this symbol is in the Iplt sub-section of the Plt.
121   unsigned IsInIplt : 1;
122
123   // True if this symbol is in the Igot sub-section of the .got.plt or .got.
124   unsigned IsInIgot : 1;
125
126   // The following fields have the same meaning as the ELF symbol attributes.
127   uint8_t Type;    // symbol type
128   uint8_t StOther; // st_other field value
129
130   // The Type field may also have this value. It means that we have not yet seen
131   // a non-Lazy symbol with this name, so we don't know what its type is. The
132   // Type field is normally set to this value for Lazy symbols unless we saw a
133   // weak undefined symbol first, in which case we need to remember the original
134   // symbol's type in order to check for TLS mismatches.
135   enum { UnknownType = 255 };
136
137   bool isSection() const { return Type == llvm::ELF::STT_SECTION; }
138   bool isTls() const { return Type == llvm::ELF::STT_TLS; }
139   bool isFunc() const { return Type == llvm::ELF::STT_FUNC; }
140   bool isGnuIFunc() const { return Type == llvm::ELF::STT_GNU_IFUNC; }
141   bool isObject() const { return Type == llvm::ELF::STT_OBJECT; }
142   bool isFile() const { return Type == llvm::ELF::STT_FILE; }
143
144 protected:
145   StringRefZ Name;
146 };
147
148 // The base class for any defined symbols.
149 class Defined : public SymbolBody {
150 public:
151   Defined(Kind K, StringRefZ Name, bool IsLocal, uint8_t StOther, uint8_t Type);
152   static bool classof(const SymbolBody *S) { return S->isDefined(); }
153 };
154
155 class DefinedCommon : public Defined {
156 public:
157   DefinedCommon(StringRef N, uint64_t Size, uint64_t Alignment, uint8_t StOther,
158                 uint8_t Type, InputFile *File);
159
160   static bool classof(const SymbolBody *S) {
161     return S->kind() == SymbolBody::DefinedCommonKind;
162   }
163
164   // The output offset of this common symbol in the output bss. Computed by the
165   // writer.
166   uint64_t Offset;
167
168   // The maximum alignment we have seen for this symbol.
169   uint64_t Alignment;
170
171   uint64_t Size;
172 };
173
174 // Regular defined symbols read from object file symbol tables.
175 template <class ELFT> class DefinedRegular : public Defined {
176   typedef typename ELFT::Sym Elf_Sym;
177   typedef typename ELFT::uint uintX_t;
178
179 public:
180   DefinedRegular(StringRefZ Name, bool IsLocal, uint8_t StOther, uint8_t Type,
181                  uintX_t Value, uintX_t Size, InputSectionBase<ELFT> *Section,
182                  InputFile *File)
183       : Defined(SymbolBody::DefinedRegularKind, Name, IsLocal, StOther, Type),
184         Value(Value), Size(Size),
185         Section(Section ? Section->Repl : NullInputSection) {
186     this->File = File;
187   }
188
189   // Return true if the symbol is a PIC function.
190   bool isMipsPIC() const;
191
192   static bool classof(const SymbolBody *S) {
193     return S->kind() == SymbolBody::DefinedRegularKind;
194   }
195
196   uintX_t Value;
197   uintX_t Size;
198
199   // The input section this symbol belongs to. Notice that this is
200   // a reference to a pointer. We are using two levels of indirections
201   // because of ICF. If ICF decides two sections need to be merged, it
202   // manipulates this Section pointers so that they point to the same
203   // section. This is a bit tricky, so be careful to not be confused.
204   // If this is null, the symbol is an absolute symbol.
205   InputSectionBase<ELFT> *&Section;
206
207   // If non-null the symbol has a Thunk that may be used as an alternative
208   // destination for callers of this Symbol.
209   Thunk<ELFT> *ThunkData = nullptr;
210
211 private:
212   static InputSectionBase<ELFT> *NullInputSection;
213 };
214
215 template <class ELFT>
216 InputSectionBase<ELFT> *DefinedRegular<ELFT>::NullInputSection;
217
218 // DefinedSynthetic is a class to represent linker-generated ELF symbols.
219 // The difference from the regular symbol is that DefinedSynthetic symbols
220 // don't belong to any input files or sections. Thus, its constructor
221 // takes an output section to calculate output VA, etc.
222 // If Section is null, this symbol is relative to the image base.
223 class DefinedSynthetic : public Defined {
224 public:
225   DefinedSynthetic(StringRef Name, uint64_t Value,
226                    const OutputSectionBase *Section)
227       : Defined(SymbolBody::DefinedSyntheticKind, Name, /*IsLocal=*/false,
228                 llvm::ELF::STV_HIDDEN, 0 /* Type */),
229         Value(Value), Section(Section) {}
230
231   static bool classof(const SymbolBody *S) {
232     return S->kind() == SymbolBody::DefinedSyntheticKind;
233   }
234
235   uint64_t Value;
236   const OutputSectionBase *Section;
237 };
238
239 class Undefined : public SymbolBody {
240 public:
241   Undefined(StringRefZ Name, bool IsLocal, uint8_t StOther, uint8_t Type,
242             InputFile *F);
243
244   static bool classof(const SymbolBody *S) {
245     return S->kind() == UndefinedKind;
246   }
247
248   InputFile *file() { return this->File; }
249 };
250
251 template <class ELFT> class SharedSymbol : public Defined {
252   typedef typename ELFT::Sym Elf_Sym;
253   typedef typename ELFT::Verdef Elf_Verdef;
254   typedef typename ELFT::uint uintX_t;
255
256 public:
257   static bool classof(const SymbolBody *S) {
258     return S->kind() == SymbolBody::SharedKind;
259   }
260
261   SharedSymbol(SharedFile<ELFT> *F, StringRef Name, const Elf_Sym &Sym,
262                const Elf_Verdef *Verdef)
263       : Defined(SymbolBody::SharedKind, Name, /*IsLocal=*/false, Sym.st_other,
264                 Sym.getType()),
265         Sym(Sym), Verdef(Verdef) {
266     // IFuncs defined in DSOs are treated as functions by the static linker.
267     if (isGnuIFunc())
268       Type = llvm::ELF::STT_FUNC;
269     this->File = F;
270   }
271
272   SharedFile<ELFT> *file() { return (SharedFile<ELFT> *)this->File; }
273
274   const Elf_Sym &Sym;
275
276   // This field is a pointer to the symbol's version definition.
277   const Elf_Verdef *Verdef;
278
279   // OffsetInBss is significant only when needsCopy() is true.
280   uintX_t OffsetInBss = 0;
281
282   // If non-null the symbol has a Thunk that may be used as an alternative
283   // destination for callers of this Symbol.
284   Thunk<ELFT> *ThunkData = nullptr;
285   bool needsCopy() const { return this->NeedsCopyOrPltAddr && !this->isFunc(); }
286 };
287
288 // This class represents a symbol defined in an archive file. It is
289 // created from an archive file header, and it knows how to load an
290 // object file from an archive to replace itself with a defined
291 // symbol. If the resolver finds both Undefined and Lazy for
292 // the same name, it will ask the Lazy to load a file.
293 class Lazy : public SymbolBody {
294 public:
295   static bool classof(const SymbolBody *S) { return S->isLazy(); }
296
297   // Returns an object file for this symbol, or a nullptr if the file
298   // was already returned.
299   InputFile *fetch();
300
301 protected:
302   Lazy(SymbolBody::Kind K, StringRef Name, uint8_t Type)
303       : SymbolBody(K, Name, /*IsLocal=*/false, llvm::ELF::STV_DEFAULT, Type) {}
304 };
305
306 // LazyArchive symbols represents symbols in archive files.
307 class LazyArchive : public Lazy {
308 public:
309   LazyArchive(ArchiveFile &File, const llvm::object::Archive::Symbol S,
310               uint8_t Type);
311
312   static bool classof(const SymbolBody *S) {
313     return S->kind() == LazyArchiveKind;
314   }
315
316   ArchiveFile *file() { return (ArchiveFile *)this->File; }
317   InputFile *fetch();
318
319 private:
320   const llvm::object::Archive::Symbol Sym;
321 };
322
323 // LazyObject symbols represents symbols in object files between
324 // --start-lib and --end-lib options.
325 class LazyObject : public Lazy {
326 public:
327   LazyObject(StringRef Name, LazyObjectFile &File, uint8_t Type);
328
329   static bool classof(const SymbolBody *S) {
330     return S->kind() == LazyObjectKind;
331   }
332
333   LazyObjectFile *file() { return (LazyObjectFile *)this->File; }
334   InputFile *fetch();
335 };
336
337 // Some linker-generated symbols need to be created as
338 // DefinedRegular symbols.
339 template <class ELFT> struct ElfSym {
340   // The content for __ehdr_start symbol.
341   static DefinedRegular<ELFT> *EhdrStart;
342
343   // The content for _etext and etext symbols.
344   static DefinedRegular<ELFT> *Etext;
345   static DefinedRegular<ELFT> *Etext2;
346
347   // The content for _edata and edata symbols.
348   static DefinedRegular<ELFT> *Edata;
349   static DefinedRegular<ELFT> *Edata2;
350
351   // The content for _end and end symbols.
352   static DefinedRegular<ELFT> *End;
353   static DefinedRegular<ELFT> *End2;
354
355   // The content for _gp_disp/__gnu_local_gp symbols for MIPS target.
356   static DefinedRegular<ELFT> *MipsGpDisp;
357   static DefinedRegular<ELFT> *MipsLocalGp;
358   static DefinedRegular<ELFT> *MipsGp;
359 };
360
361 template <class ELFT> DefinedRegular<ELFT> *ElfSym<ELFT>::EhdrStart;
362 template <class ELFT> DefinedRegular<ELFT> *ElfSym<ELFT>::Etext;
363 template <class ELFT> DefinedRegular<ELFT> *ElfSym<ELFT>::Etext2;
364 template <class ELFT> DefinedRegular<ELFT> *ElfSym<ELFT>::Edata;
365 template <class ELFT> DefinedRegular<ELFT> *ElfSym<ELFT>::Edata2;
366 template <class ELFT> DefinedRegular<ELFT> *ElfSym<ELFT>::End;
367 template <class ELFT> DefinedRegular<ELFT> *ElfSym<ELFT>::End2;
368 template <class ELFT> DefinedRegular<ELFT> *ElfSym<ELFT>::MipsGpDisp;
369 template <class ELFT> DefinedRegular<ELFT> *ElfSym<ELFT>::MipsLocalGp;
370 template <class ELFT> DefinedRegular<ELFT> *ElfSym<ELFT>::MipsGp;
371
372 // A real symbol object, SymbolBody, is usually stored within a Symbol. There's
373 // always one Symbol for each symbol name. The resolver updates the SymbolBody
374 // stored in the Body field of this object as it resolves symbols. Symbol also
375 // holds computed properties of symbol names.
376 struct Symbol {
377   // Symbol binding. This is on the Symbol to track changes during resolution.
378   // In particular:
379   // An undefined weak is still weak when it resolves to a shared library.
380   // An undefined weak will not fetch archive members, but we have to remember
381   // it is weak.
382   uint8_t Binding;
383
384   // Version definition index.
385   uint16_t VersionId;
386
387   // Symbol visibility. This is the computed minimum visibility of all
388   // observed non-DSO symbols.
389   unsigned Visibility : 2;
390
391   // True if the symbol was used for linking and thus need to be added to the
392   // output file's symbol table. This is true for all symbols except for
393   // unreferenced DSO symbols and bitcode symbols that are unreferenced except
394   // by other bitcode objects.
395   unsigned IsUsedInRegularObj : 1;
396
397   // If this flag is true and the symbol has protected or default visibility, it
398   // will appear in .dynsym. This flag is set by interposable DSO symbols in
399   // executables, by most symbols in DSOs and executables built with
400   // --export-dynamic, and by dynamic lists.
401   unsigned ExportDynamic : 1;
402
403   // True if this symbol is specified by --trace-symbol option.
404   unsigned Traced : 1;
405
406   // This symbol version was found in a version script.
407   unsigned InVersionScript : 1;
408
409   bool includeInDynsym() const;
410   bool isWeak() const { return Binding == llvm::ELF::STB_WEAK; }
411
412   // This field is used to store the Symbol's SymbolBody. This instantiation of
413   // AlignedCharArrayUnion gives us a struct with a char array field that is
414   // large and aligned enough to store any derived class of SymbolBody. We
415   // assume that the size and alignment of ELF64LE symbols is sufficient for any
416   // ELFT, and we verify this with the static_asserts in replaceBody.
417   llvm::AlignedCharArrayUnion<
418       DefinedCommon, DefinedRegular<llvm::object::ELF64LE>, DefinedSynthetic,
419       Undefined, SharedSymbol<llvm::object::ELF64LE>, LazyArchive, LazyObject>
420       Body;
421
422   SymbolBody *body() { return reinterpret_cast<SymbolBody *>(Body.buffer); }
423   const SymbolBody *body() const { return const_cast<Symbol *>(this)->body(); }
424 };
425
426 void printTraceSymbol(Symbol *Sym);
427
428 template <typename T, typename... ArgT>
429 void replaceBody(Symbol *S, ArgT &&... Arg) {
430   static_assert(sizeof(T) <= sizeof(S->Body), "Body too small");
431   static_assert(alignof(T) <= alignof(decltype(S->Body)),
432                 "Body not aligned enough");
433   assert(static_cast<SymbolBody *>(static_cast<T *>(nullptr)) == nullptr &&
434          "Not a SymbolBody");
435
436   new (S->Body.buffer) T(std::forward<ArgT>(Arg)...);
437
438   // Print out a log message if --trace-symbol was specified.
439   // This is for debugging.
440   if (S->Traced)
441     printTraceSymbol(S);
442 }
443
444 inline Symbol *SymbolBody::symbol() {
445   assert(!isLocal());
446   return reinterpret_cast<Symbol *>(reinterpret_cast<char *>(this) -
447                                     offsetof(Symbol, Body));
448 }
449
450 std::string toString(const SymbolBody &B);
451
452 } // namespace elf
453 } // namespace lld
454
455 #endif