]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/ELF/Driver.h
Merge clang 7.0.1 and several follow-up changes
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / ELF / 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_ELF_DRIVER_H
11 #define LLD_ELF_DRIVER_H
12
13 #include "SymbolTable.h"
14 #include "lld/Common/LLVM.h"
15 #include "lld/Common/Reproduce.h"
16 #include "llvm/ADT/Optional.h"
17 #include "llvm/ADT/StringRef.h"
18 #include "llvm/ADT/StringSet.h"
19 #include "llvm/Option/ArgList.h"
20 #include "llvm/Support/raw_ostream.h"
21
22 namespace lld {
23 namespace elf {
24
25 extern class LinkerDriver *Driver;
26
27 class LinkerDriver {
28 public:
29   void main(ArrayRef<const char *> Args);
30   void addFile(StringRef Path, bool WithLOption);
31   void addLibrary(StringRef Name);
32
33 private:
34   void readConfigs(llvm::opt::InputArgList &Args);
35   void createFiles(llvm::opt::InputArgList &Args);
36   void inferMachineType();
37   template <class ELFT> void link(llvm::opt::InputArgList &Args);
38
39   // True if we are in --whole-archive and --no-whole-archive.
40   bool InWholeArchive = false;
41
42   // True if we are in --start-lib and --end-lib.
43   bool InLib = false;
44
45   // True if we are in -format=binary and -format=elf.
46   bool InBinary = false;
47
48   std::vector<InputFile *> Files;
49 };
50
51 // Parses command line options.
52 class ELFOptTable : public llvm::opt::OptTable {
53 public:
54   ELFOptTable();
55   llvm::opt::InputArgList parse(ArrayRef<const char *> Argv);
56 };
57
58 // Create enum with OPT_xxx values for each option in Options.td
59 enum {
60   OPT_INVALID = 0,
61 #define OPTION(_1, _2, ID, _4, _5, _6, _7, _8, _9, _10, _11, _12) OPT_##ID,
62 #include "ELF/Options.inc"
63 #undef OPTION
64 };
65
66 void printHelp();
67 std::string createResponseFile(const llvm::opt::InputArgList &Args);
68
69 llvm::Optional<std::string> findFromSearchPaths(StringRef Path);
70 llvm::Optional<std::string> searchScript(StringRef Path);
71 llvm::Optional<std::string> searchLibrary(StringRef Path);
72
73 } // namespace elf
74 } // namespace lld
75
76 #endif