1 //===- Driver.h -------------------------------------------------*- C++ -*-===//
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
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"
21 #include <type_traits>
23 namespace lld::macho
{
28 class MachOOptTable
: public llvm::opt::OptTable
{
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
38 #define OPTION(_1, _2, ID, _4, _5, _6, _7, _8, _9, _10, _11, _12) OPT_##ID,
39 #include "Options.inc"
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
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
{
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
) {
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
);
91 enum DepOpCode
: uint8_t {
92 // Denotes the linker version.
94 // Denotes the input files.
96 // Denotes the files that do not exist(?)
98 // Denotes the output files.
102 const llvm::StringRef path
;
105 // The paths need to be alphabetically ordered.
106 // We need to own the paths because some of them are temporarily
108 std::set
<std::string
> notFounds
;
111 extern std::unique_ptr
<DependencyTracker
> depTracker
;
113 } // namespace lld::macho