#ifndef LLD_MACHO_DRIVER_H
#define LLD_MACHO_DRIVER_H
#include "lld/Common/LLVM.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/BinaryFormat/MachO.h"
#include "llvm/Option/OptTable.h"
#include "llvm/Support/MemoryBuffer.h"
#include <optional>
#include <set>
#include <type_traits>
namespace lld::macho {
class DylibFile;
class InputFile;
class MachOOptTable : public llvm::opt::GenericOptTable {
public:
MachOOptTable();
llvm::opt::InputArgList parse(ArrayRef<const char *> argv);
void printHelp(const char *argv0, bool showHidden) const;
};
enum {
OPT_INVALID = 0,
#define OPTION(...) LLVM_MAKE_OPT_ID(__VA_ARGS__),
#include "Options.inc"
#undef OPTION
};
void parseLCLinkerOption(llvm::SmallVectorImpl<StringRef> &LCLinkerOptions,
InputFile *f, unsigned argc, StringRef data);
void resolveLCLinkerOptions();
std::string createResponseFile(const llvm::opt::InputArgList &args);
std::optional<StringRef> resolveDylibPath(llvm::StringRef path);
DylibFile *loadDylib(llvm::MemoryBufferRef mbref, DylibFile *umbrella = nullptr,
bool isBundleLoader = false,
bool explicitlyLinked = false);
void resetLoadedDylibs();
std::optional<llvm::StringRef>
findPathCombination(const llvm::Twine &name,
const std::vector<llvm::StringRef> &roots,
ArrayRef<llvm::StringRef> extensions = {""});
llvm::StringRef rerootPath(llvm::StringRef path);
uint32_t getModTime(llvm::StringRef path);
void printArchiveMemberLoad(StringRef reason, const InputFile *);
llvm::MachO::PlatformType removeSimulator(llvm::MachO::PlatformType platform);
class DependencyTracker {
public:
explicit DependencyTracker(llvm::StringRef path);
inline void logFileNotFound(const Twine &path) {
if (active)
notFounds.insert(path.str());
}
void write(llvm::StringRef version,
const llvm::SetVector<InputFile *> &inputs,
llvm::StringRef output);
private:
enum DepOpCode : uint8_t {
Version = 0x00,
Input = 0x10,
NotFound = 0x11,
Output = 0x40,
};
const llvm::StringRef path;
bool active;
std::set<std::string> notFounds;
};
extern std::unique_ptr<DependencyTracker> depTracker;
}
#endif