]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/COFF/Driver.h
Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / COFF / Driver.h
1 //===- Driver.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_COFF_DRIVER_H
11 #define LLD_COFF_DRIVER_H
12
13 #include "Config.h"
14 #include "SymbolTable.h"
15 #include "lld/Common/LLVM.h"
16 #include "lld/Common/Reproduce.h"
17 #include "llvm/ADT/Optional.h"
18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/ADT/StringSet.h"
20 #include "llvm/Object/Archive.h"
21 #include "llvm/Object/COFF.h"
22 #include "llvm/Option/Arg.h"
23 #include "llvm/Option/ArgList.h"
24 #include "llvm/Support/FileSystem.h"
25 #include "llvm/Support/TarWriter.h"
26 #include <memory>
27 #include <set>
28 #include <vector>
29
30 namespace lld {
31 namespace coff {
32
33 class LinkerDriver;
34 extern LinkerDriver *Driver;
35
36 using llvm::COFF::MachineTypes;
37 using llvm::COFF::WindowsSubsystem;
38 using llvm::Optional;
39
40 class COFFOptTable : public llvm::opt::OptTable {
41 public:
42   COFFOptTable();
43 };
44
45 class ArgParser {
46 public:
47   // Concatenate LINK environment variable and given arguments and parse them.
48   llvm::opt::InputArgList parseLINK(std::vector<const char *> Args);
49
50   // Tokenizes a given string and then parses as command line options.
51   llvm::opt::InputArgList parse(StringRef S) { return parse(tokenize(S)); }
52
53   // Tokenizes a given string and then parses as command line options in
54   // .drectve section. /EXPORT options are returned in second element
55   // to be processed in fastpath.
56   std::pair<llvm::opt::InputArgList, std::vector<StringRef>>
57   parseDirectives(StringRef S);
58
59 private:
60   // Parses command line options.
61   llvm::opt::InputArgList parse(llvm::ArrayRef<const char *> Args);
62
63   std::vector<const char *> tokenize(StringRef S);
64
65   COFFOptTable Table;
66 };
67
68 class LinkerDriver {
69 public:
70   void link(llvm::ArrayRef<const char *> Args);
71
72   // Used by the resolver to parse .drectve section contents.
73   void parseDirectives(StringRef S);
74
75   // Used by ArchiveFile to enqueue members.
76   void enqueueArchiveMember(const Archive::Child &C, StringRef SymName,
77                             StringRef ParentName);
78
79   MemoryBufferRef takeBuffer(std::unique_ptr<MemoryBuffer> MB);
80
81 private:
82   std::unique_ptr<llvm::TarWriter> Tar; // for /linkrepro
83
84   // Opens a file. Path has to be resolved already.
85   MemoryBufferRef openFile(StringRef Path);
86
87   // Searches a file from search paths.
88   Optional<StringRef> findFile(StringRef Filename);
89   Optional<StringRef> findLib(StringRef Filename);
90   StringRef doFindFile(StringRef Filename);
91   StringRef doFindLib(StringRef Filename);
92
93   // Parses LIB environment which contains a list of search paths.
94   void addLibSearchPaths();
95
96   // Library search path. The first element is always "" (current directory).
97   std::vector<StringRef> SearchPaths;
98
99   // We don't want to add the same file more than once.
100   // Files are uniquified by their filesystem and file number.
101   std::set<llvm::sys::fs::UniqueID> VisitedFiles;
102
103   std::set<std::string> VisitedLibs;
104
105   Symbol *addUndefined(StringRef Sym);
106
107   // Windows specific -- "main" is not the only main function in Windows.
108   // You can choose one from these four -- {w,}{WinMain,main}.
109   // There are four different entry point functions for them,
110   // {w,}{WinMain,main}CRTStartup, respectively. The linker needs to
111   // choose the right one depending on which "main" function is defined.
112   // This function looks up the symbol table and resolve corresponding
113   // entry point name.
114   StringRef findDefaultEntry();
115   WindowsSubsystem inferSubsystem();
116
117   void invokeMSVC(llvm::opt::InputArgList &Args);
118
119   void addBuffer(std::unique_ptr<MemoryBuffer> MB, bool WholeArchive);
120   void addArchiveBuffer(MemoryBufferRef MBRef, StringRef SymName,
121                         StringRef ParentName);
122
123   void enqueuePath(StringRef Path, bool WholeArchive);
124
125   void enqueueTask(std::function<void()> Task);
126   bool run();
127
128   std::list<std::function<void()>> TaskQueue;
129   std::vector<StringRef> FilePaths;
130   std::vector<MemoryBufferRef> Resources;
131
132   llvm::StringSet<> DirectivesExports;
133 };
134
135 // Functions below this line are defined in DriverUtils.cpp.
136
137 void printHelp(const char *Argv0);
138
139 // For /machine option.
140 MachineTypes getMachineType(StringRef Arg);
141 StringRef machineToStr(MachineTypes MT);
142
143 // Parses a string in the form of "<integer>[,<integer>]".
144 void parseNumbers(StringRef Arg, uint64_t *Addr, uint64_t *Size = nullptr);
145
146 void parseGuard(StringRef Arg);
147
148 // Parses a string in the form of "<integer>[.<integer>]".
149 // Minor's default value is 0.
150 void parseVersion(StringRef Arg, uint32_t *Major, uint32_t *Minor);
151
152 // Parses a string in the form of "<subsystem>[,<integer>[.<integer>]]".
153 void parseSubsystem(StringRef Arg, WindowsSubsystem *Sys, uint32_t *Major,
154                     uint32_t *Minor);
155
156 void parseAlternateName(StringRef);
157 void parseMerge(StringRef);
158 void parseSection(StringRef);
159 void parseAligncomm(StringRef);
160
161 // Parses a string in the form of "EMBED[,=<integer>]|NO".
162 void parseManifest(StringRef Arg);
163
164 // Parses a string in the form of "level=<string>|uiAccess=<string>"
165 void parseManifestUAC(StringRef Arg);
166
167 // Create a resource file containing a manifest XML.
168 std::unique_ptr<MemoryBuffer> createManifestRes();
169 void createSideBySideManifest();
170
171 // Used for dllexported symbols.
172 Export parseExport(StringRef Arg);
173 void fixupExports();
174 void assignExportOrdinals();
175
176 // Parses a string in the form of "key=value" and check
177 // if value matches previous values for the key.
178 // This feature used in the directive section to reject
179 // incompatible objects.
180 void checkFailIfMismatch(StringRef Arg);
181
182 // Convert Windows resource files (.res files) to a .obj file.
183 MemoryBufferRef convertResToCOFF(ArrayRef<MemoryBufferRef> MBs);
184
185 void runMSVCLinker(std::string Rsp, ArrayRef<StringRef> Objects);
186
187 // Create enum with OPT_xxx values for each option in Options.td
188 enum {
189   OPT_INVALID = 0,
190 #define OPTION(_1, _2, ID, _4, _5, _6, _7, _8, _9, _10, _11, _12) OPT_##ID,
191 #include "Options.inc"
192 #undef OPTION
193 };
194
195 } // namespace coff
196 } // namespace lld
197
198 #endif