mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-13 05:40:59 +00:00
![Rafael Espindola](/assets/img/avatar_default.png)
We want --reproduce to * not rewrite scripts and thin archives * work with absolute paths Given that, it pretty much has to create a full directory tree. On windows that is problematic because of the very short maximum path limit. On most cases users can still work around it with "--repro c:\r", but that is annoying and not viable for automated testing. We then need to produce some form of archive with the files. The first option that comes to mind is .a files since we already have code for writing them. There are a few problems with them The format has a dedicated string table, so we cannot start writing it until all members are known. Regular implementations don't support creating directories. We could make llvm-ar support that, but that is probably not a good idea. The next natural option would be tar. The problem is that to support long path names (which is how this started) it needs a "pax extended header" making this an annoying format to write. The next option I looked at seems a natural fit: cpio files. They are available on pretty much every unix, support directories and long path names and are really easy to write. The only slightly annoying part is a terminator, but at least gnu cpio only prints a warning if it is missing, which is handy for crashes. This patch still makes an effort to always create it. llvm-svn: 268404
87 lines
2.3 KiB
C++
87 lines
2.3 KiB
C++
//===- Driver.h -------------------------------------------------*- C++ -*-===//
|
|
//
|
|
// 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 "SymbolTable.h"
|
|
#include "lld/Core/LLVM.h"
|
|
#include "llvm/ADT/Optional.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/ADT/StringSet.h"
|
|
#include "llvm/Option/ArgList.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
namespace lld {
|
|
namespace elf {
|
|
|
|
extern class LinkerDriver *Driver;
|
|
|
|
class LinkerDriver {
|
|
public:
|
|
void main(ArrayRef<const char *> Args);
|
|
void addFile(StringRef Path);
|
|
void addLibrary(StringRef Name);
|
|
llvm::LLVMContext Context;
|
|
|
|
// for --reproduce
|
|
std::unique_ptr<llvm::raw_fd_ostream> ReproduceArchive;
|
|
llvm::StringSet<> IncludedFiles;
|
|
|
|
private:
|
|
std::vector<MemoryBufferRef> getArchiveMembers(MemoryBufferRef MB);
|
|
llvm::Optional<MemoryBufferRef> readFile(StringRef Path);
|
|
void readConfigs(llvm::opt::InputArgList &Args);
|
|
void createFiles(llvm::opt::InputArgList &Args);
|
|
template <class ELFT> void link(llvm::opt::InputArgList &Args);
|
|
|
|
// True if we are in --whole-archive and --no-whole-archive.
|
|
bool WholeArchive = false;
|
|
|
|
// True if we are in --start-lib and --end-lib.
|
|
bool InLib = false;
|
|
|
|
llvm::BumpPtrAllocator Alloc;
|
|
std::vector<std::unique_ptr<InputFile>> Files;
|
|
std::vector<std::unique_ptr<MemoryBuffer>> OwningMBs;
|
|
};
|
|
|
|
// Parses command line options.
|
|
class ELFOptTable : public llvm::opt::OptTable {
|
|
public:
|
|
ELFOptTable();
|
|
llvm::opt::InputArgList parse(ArrayRef<const char *> Argv);
|
|
|
|
private:
|
|
llvm::BumpPtrAllocator Alloc;
|
|
};
|
|
|
|
// 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
|
|
};
|
|
|
|
void printHelp(const char *Argv0);
|
|
void printVersion();
|
|
|
|
void createResponseFile(const llvm::opt::InputArgList &Args);
|
|
void maybeCopyInputFile(StringRef Path, StringRef Buffer);
|
|
|
|
std::string findFromSearchPaths(StringRef Path);
|
|
std::string searchLibrary(StringRef Path);
|
|
std::string buildSysrootedPath(llvm::StringRef Dir, llvm::StringRef File);
|
|
|
|
} // namespace elf
|
|
} // namespace lld
|
|
|
|
#endif
|