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