[LLD][COFF] Ignore DEBUG_S_XFGHASH_TYPE/VIRTUAL
[llvm-project.git] / lld / MachO / Driver.h
blob7249fe3b45203915685f229c322cd0228b4fb4b2
1 //===- Driver.h -------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLD_MACHO_DRIVER_H
10 #define LLD_MACHO_DRIVER_H
12 #include "lld/Common/LLVM.h"
13 #include "llvm/ADT/Optional.h"
14 #include "llvm/ADT/SetVector.h"
15 #include "llvm/ADT/StringRef.h"
16 #include "llvm/BinaryFormat/MachO.h"
17 #include "llvm/Option/OptTable.h"
18 #include "llvm/Support/MemoryBuffer.h"
20 #include <set>
21 #include <type_traits>
23 namespace lld::macho {
25 class DylibFile;
26 class InputFile;
28 class MachOOptTable : public llvm::opt::OptTable {
29 public:
30 MachOOptTable();
31 llvm::opt::InputArgList parse(ArrayRef<const char *> argv);
32 void printHelp(const char *argv0, bool showHidden) const;
35 // Create enum with OPT_xxx values for each option in Options.td
36 enum {
37 OPT_INVALID = 0,
38 #define OPTION(_1, _2, ID, _4, _5, _6, _7, _8, _9, _10, _11, _12) OPT_##ID,
39 #include "Options.inc"
40 #undef OPTION
43 void parseLCLinkerOption(InputFile *, unsigned argc, StringRef data);
45 std::string createResponseFile(const llvm::opt::InputArgList &args);
47 // Check for both libfoo.dylib and libfoo.tbd (in that order).
48 llvm::Optional<StringRef> resolveDylibPath(llvm::StringRef path);
50 DylibFile *loadDylib(llvm::MemoryBufferRef mbref, DylibFile *umbrella = nullptr,
51 bool isBundleLoader = false,
52 bool explicitlyLinked = false);
53 void resetLoadedDylibs();
55 // Search for all possible combinations of `{root}/{name}.{extension}`.
56 // If \p extensions are not specified, then just search for `{root}/{name}`.
57 llvm::Optional<llvm::StringRef>
58 findPathCombination(const llvm::Twine &name,
59 const std::vector<llvm::StringRef> &roots,
60 ArrayRef<llvm::StringRef> extensions = {""});
62 // If -syslibroot is specified, absolute paths to non-object files may be
63 // rerooted.
64 llvm::StringRef rerootPath(llvm::StringRef path);
66 uint32_t getModTime(llvm::StringRef path);
68 void printArchiveMemberLoad(StringRef reason, const InputFile *);
70 // Map simulator platforms to their underlying device platform.
71 llvm::MachO::PlatformType removeSimulator(llvm::MachO::PlatformType platform);
73 // Helper class to export dependency info.
74 class DependencyTracker {
75 public:
76 explicit DependencyTracker(llvm::StringRef path);
78 // Adds the given path to the set of not-found files.
79 inline void logFileNotFound(const Twine &path) {
80 if (active)
81 notFounds.insert(path.str());
84 // Writes the dependencies to specified path. The content is first sorted by
85 // OpCode and then by the filename (in alphabetical order).
86 void write(llvm::StringRef version,
87 const llvm::SetVector<InputFile *> &inputs,
88 llvm::StringRef output);
90 private:
91 enum DepOpCode : uint8_t {
92 // Denotes the linker version.
93 Version = 0x00,
94 // Denotes the input files.
95 Input = 0x10,
96 // Denotes the files that do not exist(?)
97 NotFound = 0x11,
98 // Denotes the output files.
99 Output = 0x40,
102 const llvm::StringRef path;
103 bool active;
105 // The paths need to be alphabetically ordered.
106 // We need to own the paths because some of them are temporarily
107 // constructed.
108 std::set<std::string> notFounds;
111 extern std::unique_ptr<DependencyTracker> depTracker;
113 } // namespace lld::macho
115 #endif