2015-05-29 03:09:30 +08:00
|
|
|
//===- Driver.h -----------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_COFF_DRIVER_H
|
|
|
|
#define LLD_COFF_DRIVER_H
|
|
|
|
|
2015-06-17 08:16:33 +08:00
|
|
|
#include "Config.h"
|
2015-06-13 20:50:13 +08:00
|
|
|
#include "lld/Core/LLVM.h"
|
2015-06-01 03:17:14 +08:00
|
|
|
#include "llvm/ADT/Optional.h"
|
2015-05-29 03:09:30 +08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2015-05-29 04:30:06 +08:00
|
|
|
#include "llvm/Object/COFF.h"
|
|
|
|
#include "llvm/Option/Arg.h"
|
|
|
|
#include "llvm/Option/ArgList.h"
|
2015-06-13 20:50:13 +08:00
|
|
|
#include "llvm/Support/StringSaver.h"
|
2015-05-29 03:09:30 +08:00
|
|
|
#include <memory>
|
2015-06-01 03:17:09 +08:00
|
|
|
#include <set>
|
2015-05-29 03:09:30 +08:00
|
|
|
#include <system_error>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace coff {
|
|
|
|
|
2015-06-01 03:17:09 +08:00
|
|
|
class LinkerDriver;
|
|
|
|
extern LinkerDriver *Driver;
|
|
|
|
|
2015-05-30 00:06:00 +08:00
|
|
|
using llvm::COFF::MachineTypes;
|
2015-05-30 00:34:31 +08:00
|
|
|
using llvm::COFF::WindowsSubsystem;
|
2015-06-01 03:17:14 +08:00
|
|
|
using llvm::Optional;
|
2015-05-29 03:09:30 +08:00
|
|
|
class InputFile;
|
|
|
|
|
2015-06-01 03:17:09 +08:00
|
|
|
// Entry point of the COFF linker.
|
|
|
|
bool link(int Argc, const char *Argv[]);
|
|
|
|
|
2015-06-07 10:55:19 +08:00
|
|
|
class ArgParser {
|
|
|
|
public:
|
2015-06-13 20:50:13 +08:00
|
|
|
ArgParser() : Alloc(AllocAux) {}
|
2015-06-07 10:55:19 +08:00
|
|
|
// Parses command line options.
|
|
|
|
ErrorOr<std::unique_ptr<llvm::opt::InputArgList>> parse(int Argc,
|
|
|
|
const char *Argv[]);
|
|
|
|
|
|
|
|
// Tokenizes a given string and then parses as command line options.
|
|
|
|
ErrorOr<std::unique_ptr<llvm::opt::InputArgList>> parse(StringRef S) {
|
|
|
|
return parse(tokenize(S));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ErrorOr<std::unique_ptr<llvm::opt::InputArgList>>
|
|
|
|
parse(std::vector<const char *> Argv);
|
|
|
|
|
|
|
|
std::vector<const char *> tokenize(StringRef S);
|
|
|
|
|
|
|
|
ErrorOr<std::vector<const char *>>
|
|
|
|
replaceResponseFiles(std::vector<const char *>);
|
|
|
|
|
2015-06-13 20:50:13 +08:00
|
|
|
llvm::BumpPtrAllocator AllocAux;
|
|
|
|
llvm::BumpPtrStringSaver Alloc;
|
2015-06-07 10:55:19 +08:00
|
|
|
};
|
|
|
|
|
2015-06-01 03:17:09 +08:00
|
|
|
class LinkerDriver {
|
|
|
|
public:
|
2015-06-13 20:50:13 +08:00
|
|
|
LinkerDriver() : Alloc(AllocAux), SearchPaths(getSearchPaths()) {}
|
2015-06-01 03:17:09 +08:00
|
|
|
bool link(int Argc, const char *Argv[]);
|
|
|
|
|
|
|
|
// Used by the resolver to parse .drectve section contents.
|
|
|
|
std::error_code
|
|
|
|
parseDirectives(StringRef S, std::vector<std::unique_ptr<InputFile>> *Res);
|
|
|
|
|
|
|
|
private:
|
2015-06-13 20:50:13 +08:00
|
|
|
llvm::BumpPtrAllocator AllocAux;
|
|
|
|
llvm::BumpPtrStringSaver Alloc;
|
2015-06-07 10:55:19 +08:00
|
|
|
ArgParser Parser;
|
2015-06-01 03:17:09 +08:00
|
|
|
|
2015-06-01 05:04:56 +08:00
|
|
|
// Opens a file. Path has to be resolved already.
|
2015-06-15 05:50:50 +08:00
|
|
|
ErrorOr<MemoryBufferRef> openFile(StringRef Path);
|
2015-06-01 05:04:56 +08:00
|
|
|
|
2015-06-01 03:17:12 +08:00
|
|
|
// Searches a file from search paths.
|
2015-06-01 03:17:14 +08:00
|
|
|
Optional<StringRef> findFile(StringRef Filename);
|
|
|
|
Optional<StringRef> findLib(StringRef Filename);
|
|
|
|
StringRef doFindFile(StringRef Filename);
|
|
|
|
StringRef doFindLib(StringRef Filename);
|
2015-06-01 03:17:12 +08:00
|
|
|
|
|
|
|
// Parses LIB environment which contains a list of search paths.
|
|
|
|
// The returned list always contains "." as the first element.
|
|
|
|
std::vector<StringRef> getSearchPaths();
|
|
|
|
|
|
|
|
std::vector<StringRef> SearchPaths;
|
2015-06-01 03:17:09 +08:00
|
|
|
std::set<std::string> VisitedFiles;
|
2015-06-01 05:04:56 +08:00
|
|
|
|
|
|
|
// Driver is the owner of all opened files.
|
|
|
|
// InputFiles have MemoryBufferRefs to them.
|
|
|
|
std::vector<std::unique_ptr<MemoryBuffer>> OwningMBs;
|
2015-06-01 03:17:09 +08:00
|
|
|
};
|
|
|
|
|
2015-06-18 03:19:25 +08:00
|
|
|
std::error_code parseModuleDefs(MemoryBufferRef MB);
|
2015-06-18 04:40:43 +08:00
|
|
|
std::error_code writeImportLibrary();
|
2015-06-18 03:19:25 +08:00
|
|
|
|
2015-05-29 04:30:06 +08:00
|
|
|
// Functions below this line are defined in DriverUtils.cpp.
|
|
|
|
|
2015-05-30 00:11:52 +08:00
|
|
|
void printHelp(const char *Argv0);
|
|
|
|
|
2015-05-30 00:06:00 +08:00
|
|
|
// For /machine option.
|
|
|
|
ErrorOr<MachineTypes> getMachineType(llvm::opt::InputArgList *Args);
|
|
|
|
|
2015-05-30 00:18:15 +08:00
|
|
|
// Parses a string in the form of "<integer>[,<integer>]".
|
|
|
|
std::error_code parseNumbers(StringRef Arg, uint64_t *Addr,
|
|
|
|
uint64_t *Size = nullptr);
|
|
|
|
|
2015-05-30 00:28:29 +08:00
|
|
|
// Parses a string in the form of "<integer>[.<integer>]".
|
|
|
|
// Minor's default value is 0.
|
|
|
|
std::error_code parseVersion(StringRef Arg, uint32_t *Major, uint32_t *Minor);
|
|
|
|
|
2015-05-30 00:34:31 +08:00
|
|
|
// Parses a string in the form of "<subsystem>[,<integer>[.<integer>]]".
|
|
|
|
std::error_code parseSubsystem(StringRef Arg, WindowsSubsystem *Sys,
|
|
|
|
uint32_t *Major, uint32_t *Minor);
|
|
|
|
|
2015-06-18 08:12:42 +08:00
|
|
|
// Parses a string in the form of "EMBED[,=<integer>]|NO".
|
|
|
|
std::error_code parseManifest(StringRef Arg);
|
|
|
|
|
|
|
|
// Parses a string in the form of "level=<string>|uiAccess=<string>"
|
|
|
|
std::error_code parseManifestUAC(StringRef Arg);
|
|
|
|
|
|
|
|
// Create a resource file containing a manifest XML.
|
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> createManifestRes();
|
|
|
|
std::error_code createSideBySideManifest();
|
|
|
|
|
2015-06-17 08:16:33 +08:00
|
|
|
// Used for dllexported symbols.
|
|
|
|
ErrorOr<Export> parseExport(StringRef Arg);
|
|
|
|
std::error_code fixupExports();
|
|
|
|
|
2015-06-05 03:21:24 +08:00
|
|
|
// Parses a string in the form of "key=value" and check
|
|
|
|
// if value matches previous values for the key.
|
|
|
|
// This feature used in the directive section to reject
|
|
|
|
// incompatible objects.
|
|
|
|
std::error_code checkFailIfMismatch(llvm::opt::InputArgList *Args);
|
|
|
|
|
2015-06-15 05:50:50 +08:00
|
|
|
// Convert Windows resource files (.res files) to a .obj file
|
|
|
|
// using cvtres.exe.
|
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>>
|
|
|
|
convertResToCOFF(const std::vector<MemoryBufferRef> &MBs);
|
|
|
|
|
2015-05-29 04:30:06 +08:00
|
|
|
// 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
|
|
|
|
};
|
|
|
|
|
2015-05-29 03:09:30 +08:00
|
|
|
} // namespace coff
|
|
|
|
} // namespace lld
|
|
|
|
|
|
|
|
#endif
|