]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/ELF/Config.h
Merge ^/head r320398 through r320572.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / ELF / Config.h
1 //===- Config.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 #ifndef LLD_ELF_CONFIG_H
11 #define LLD_ELF_CONFIG_H
12
13 #include "llvm/ADT/MapVector.h"
14 #include "llvm/ADT/StringRef.h"
15 #include "llvm/ADT/StringSet.h"
16 #include "llvm/BinaryFormat/ELF.h"
17 #include "llvm/Support/CachePruning.h"
18 #include "llvm/Support/CodeGen.h"
19 #include "llvm/Support/Endian.h"
20
21 #include <vector>
22
23 namespace lld {
24 namespace elf {
25
26 class InputFile;
27 struct Symbol;
28
29 enum ELFKind {
30   ELFNoneKind,
31   ELF32LEKind,
32   ELF32BEKind,
33   ELF64LEKind,
34   ELF64BEKind
35 };
36
37 // For --build-id.
38 enum class BuildIdKind { None, Fast, Md5, Sha1, Hexstring, Uuid };
39
40 // For --discard-{all,locals,none}.
41 enum class DiscardPolicy { Default, All, Locals, None };
42
43 // For --strip-{all,debug}.
44 enum class StripPolicy { None, All, Debug };
45
46 // For --unresolved-symbols.
47 enum class UnresolvedPolicy { ReportError, Warn, WarnAll, Ignore, IgnoreAll };
48
49 // For --sort-section and linkerscript sorting rules.
50 enum class SortSectionPolicy { Default, None, Alignment, Name, Priority };
51
52 // For --target2
53 enum class Target2Policy { Abs, Rel, GotRel };
54
55 struct SymbolVersion {
56   llvm::StringRef Name;
57   bool IsExternCpp;
58   bool HasWildcard;
59 };
60
61 // This struct contains symbols version definition that
62 // can be found in version script if it is used for link.
63 struct VersionDefinition {
64   llvm::StringRef Name;
65   uint16_t Id = 0;
66   std::vector<SymbolVersion> Globals;
67   size_t NameOff = 0; // Offset in the string table
68 };
69
70 // Structure for mapping renamed symbols
71 struct RenamedSymbol {
72   Symbol *Target;
73   uint8_t OriginalBinding;
74 };
75
76 // This struct contains the global configuration for the linker.
77 // Most fields are direct mapping from the command line options
78 // and such fields have the same name as the corresponding options.
79 // Most fields are initialized by the driver.
80 struct Configuration {
81   InputFile *FirstElf = nullptr;
82   uint8_t OSABI = 0;
83   llvm::CachePruningPolicy ThinLTOCachePolicy;
84   llvm::StringMap<uint64_t> SectionStartMap;
85   llvm::StringRef DynamicLinker;
86   llvm::StringRef Entry;
87   llvm::StringRef Emulation;
88   llvm::StringRef Fini;
89   llvm::StringRef Init;
90   llvm::StringRef LTOAAPipeline;
91   llvm::StringRef LTONewPmPasses;
92   llvm::StringRef MapFile;
93   llvm::StringRef OutputFile;
94   llvm::StringRef OptRemarksFilename;
95   llvm::StringRef SoName;
96   llvm::StringRef Sysroot;
97   llvm::StringRef ThinLTOCacheDir;
98   std::string Rpath;
99   std::vector<VersionDefinition> VersionDefinitions;
100   std::vector<llvm::StringRef> AuxiliaryList;
101   std::vector<llvm::StringRef> SearchPaths;
102   std::vector<llvm::StringRef> SymbolOrderingFile;
103   std::vector<llvm::StringRef> Undefined;
104   std::vector<SymbolVersion> VersionScriptGlobals;
105   std::vector<SymbolVersion> VersionScriptLocals;
106   std::vector<uint8_t> BuildIdVector;
107   llvm::MapVector<Symbol *, RenamedSymbol> RenamedSymbols;
108   bool AllowMultipleDefinition;
109   bool AsNeeded = false;
110   bool Bsymbolic;
111   bool BsymbolicFunctions;
112   bool ColorDiagnostics = false;
113   bool CompressDebugSections;
114   bool DefineCommon;
115   bool Demangle = true;
116   bool DisableVerify;
117   bool EhFrameHdr;
118   bool EmitRelocs;
119   bool EnableNewDtags;
120   bool ExportDynamic;
121   bool FatalWarnings;
122   bool GcSections;
123   bool GdbIndex;
124   bool GnuHash;
125   bool ICF;
126   bool MipsN32Abi = false;
127   bool NoGnuUnique;
128   bool NoUndefinedVersion;
129   bool Nostdlib;
130   bool OFormatBinary;
131   bool Omagic;
132   bool OptRemarksWithHotness;
133   bool Pie;
134   bool PrintGcSections;
135   bool Relocatable;
136   bool SaveTemps;
137   bool SingleRoRx;
138   bool Shared;
139   bool Static = false;
140   bool SysvHash;
141   bool Target1Rel;
142   bool Threads;
143   bool Trace;
144   bool Verbose;
145   bool WarnCommon;
146   bool WarnMissingEntry;
147   bool ZCombreloc;
148   bool ZExecstack;
149   bool ZNocopyreloc;
150   bool ZNodelete;
151   bool ZNodlopen;
152   bool ZNow;
153   bool ZOrigin;
154   bool ZRelro;
155   bool ZRodynamic;
156   bool ZText;
157   bool ExitEarly;
158   bool ZWxneeded;
159   DiscardPolicy Discard;
160   SortSectionPolicy SortSection;
161   StripPolicy Strip;
162   UnresolvedPolicy UnresolvedSymbols;
163   Target2Policy Target2;
164   BuildIdKind BuildId = BuildIdKind::None;
165   ELFKind EKind = ELFNoneKind;
166   uint16_t DefaultSymbolVersion = llvm::ELF::VER_NDX_GLOBAL;
167   uint16_t EMachine = llvm::ELF::EM_NONE;
168   uint64_t ErrorLimit = 20;
169   uint64_t ImageBase;
170   uint64_t MaxPageSize;
171   uint64_t ZStackSize;
172   unsigned LTOPartitions;
173   unsigned LTOO;
174   unsigned Optimize;
175   unsigned ThinLTOJobs;
176
177   // The following config options do not directly correspond to any
178   // particualr command line options.
179
180   // True if we need to pass through relocations in input files to the
181   // output file. Usually false because we consume relocations.
182   bool CopyRelocs;
183
184   // True if the target is ELF64. False if ELF32.
185   bool Is64;
186
187   // True if the target is little-endian. False if big-endian.
188   bool IsLE;
189
190   // endianness::little if IsLE is true. endianness::big otherwise.
191   llvm::support::endianness Endianness;
192
193   // True if the target is the little-endian MIPS64.
194   //
195   // The reason why we have this variable only for the MIPS is because
196   // we use this often.  Some ELF headers for MIPS64EL are in a
197   // mixed-endian (which is horrible and I'd say that's a serious spec
198   // bug), and we need to know whether we are reading MIPS ELF files or
199   // not in various places.
200   //
201   // (Note that MIPS64EL is not a typo for MIPS64LE. This is the official
202   // name whatever that means. A fun hypothesis is that "EL" is short for
203   // little-endian written in the little-endian order, but I don't know
204   // if that's true.)
205   bool IsMips64EL;
206
207   // The ELF spec defines two types of relocation table entries, RELA and
208   // REL. RELA is a triplet of (offset, info, addend) while REL is a
209   // tuple of (offset, info). Addends for REL are implicit and read from
210   // the location where the relocations are applied. So, REL is more
211   // compact than RELA but requires a bit of more work to process.
212   //
213   // (From the linker writer's view, this distinction is not necessary.
214   // If the ELF had chosen whichever and sticked with it, it would have
215   // been easier to write code to process relocations, but it's too late
216   // to change the spec.)
217   //
218   // Each ABI defines its relocation type. IsRela is true if target
219   // uses RELA. As far as we know, all 64-bit ABIs are using RELA. A
220   // few 32-bit ABIs are using RELA too.
221   bool IsRela;
222
223   // True if we are creating position-independent code.
224   bool Pic;
225
226   // 4 for ELF32, 8 for ELF64.
227   int Wordsize;
228 };
229
230 // The only instance of Configuration struct.
231 extern Configuration *Config;
232
233 } // namespace elf
234 } // namespace lld
235
236 #endif