hanchenye-llvm-project/lld/ELF/Driver.h

68 lines
1.6 KiB
C++

//===- Driver.h -----------------------------------------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_ELF_DRIVER_H
#define LLD_ELF_DRIVER_H
#include "lld/Core/LLVM.h"
#include "llvm/Option/ArgList.h"
namespace lld {
namespace elf2 {
class LinkerDriver;
extern LinkerDriver *Driver;
class InputFile;
// Entry point of the ELF linker.
void link(ArrayRef<const char *> Args);
void error(Twine Msg);
void error(std::error_code EC, Twine Prefix);
void error(std::error_code EC);
template <typename T> void error(const ErrorOr<T> &V, Twine Prefix) {
error(V.getError(), Prefix);
}
template <typename T> void error(const ErrorOr<T> &V) { error(V.getError()); }
class ArgParser {
public:
// Parses command line options.
llvm::opt::InputArgList parse(ArrayRef<const char *> Args);
};
class LinkerDriver {
public:
void link(ArrayRef<const char *> Args);
private:
ArgParser Parser;
// Opens a file. Path has to be resolved already.
MemoryBufferRef openFile(StringRef Path);
// Driver is the owner of all opened files.
// InputFiles have MemoryBufferRefs to them.
std::vector<std::unique_ptr<MemoryBuffer>> OwningMBs;
};
// Create enum with OPT_xxx values for each option in Options.td
enum {
OPT_INVALID = 0,
#define OPTION(_1, _2, ID, _4, _5, _6, _7, _8, _9, _10, _11) OPT_##ID,
#include "Options.inc"
#undef OPTION
};
} // namespace elf2
} // namespace lld
#endif