mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-22 13:05:52 -04:00

to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
180 lines
5.5 KiB
C++
180 lines
5.5 KiB
C++
//===- DlltoolDriver.cpp - dlltool.exe-compatible driver ------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Defines an interface to a dlltool.exe-compatible driver.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h"
|
|
#include "llvm/Object/COFF.h"
|
|
#include "llvm/Object/COFFImportFile.h"
|
|
#include "llvm/Object/COFFModuleDefinition.h"
|
|
#include "llvm/Option/Arg.h"
|
|
#include "llvm/Option/ArgList.h"
|
|
#include "llvm/Option/Option.h"
|
|
#include "llvm/Support/Path.h"
|
|
|
|
#include <vector>
|
|
|
|
using namespace llvm;
|
|
using namespace llvm::object;
|
|
using namespace llvm::COFF;
|
|
|
|
namespace {
|
|
|
|
enum {
|
|
OPT_INVALID = 0,
|
|
#define OPTION(_1, _2, ID, _4, _5, _6, _7, _8, _9, _10, _11, _12) OPT_##ID,
|
|
#include "Options.inc"
|
|
#undef OPTION
|
|
};
|
|
|
|
#define PREFIX(NAME, VALUE) const char *const NAME[] = VALUE;
|
|
#include "Options.inc"
|
|
#undef PREFIX
|
|
|
|
static const llvm::opt::OptTable::Info InfoTable[] = {
|
|
#define OPTION(X1, X2, ID, KIND, GROUP, ALIAS, X7, X8, X9, X10, X11, X12) \
|
|
{X1, X2, X10, X11, OPT_##ID, llvm::opt::Option::KIND##Class, \
|
|
X9, X8, OPT_##GROUP, OPT_##ALIAS, X7, X12},
|
|
#include "Options.inc"
|
|
#undef OPTION
|
|
};
|
|
|
|
class DllOptTable : public llvm::opt::OptTable {
|
|
public:
|
|
DllOptTable() : OptTable(InfoTable, false) {}
|
|
};
|
|
|
|
} // namespace
|
|
|
|
// Opens a file. Path has to be resolved already.
|
|
static std::unique_ptr<MemoryBuffer> openFile(const Twine &Path) {
|
|
ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> MB = MemoryBuffer::getFile(Path);
|
|
|
|
if (std::error_code EC = MB.getError()) {
|
|
llvm::errs() << "cannot open file " << Path << ": " << EC.message() << "\n";
|
|
return nullptr;
|
|
}
|
|
|
|
return std::move(*MB);
|
|
}
|
|
|
|
static MachineTypes getEmulation(StringRef S) {
|
|
return StringSwitch<MachineTypes>(S)
|
|
.Case("i386", IMAGE_FILE_MACHINE_I386)
|
|
.Case("i386:x86-64", IMAGE_FILE_MACHINE_AMD64)
|
|
.Case("arm", IMAGE_FILE_MACHINE_ARMNT)
|
|
.Case("arm64", IMAGE_FILE_MACHINE_ARM64)
|
|
.Default(IMAGE_FILE_MACHINE_UNKNOWN);
|
|
}
|
|
|
|
static std::string getImplibPath(StringRef Path) {
|
|
SmallString<128> Out = StringRef("lib");
|
|
Out.append(Path);
|
|
sys::path::replace_extension(Out, ".a");
|
|
return Out.str();
|
|
}
|
|
|
|
int llvm::dlltoolDriverMain(llvm::ArrayRef<const char *> ArgsArr) {
|
|
DllOptTable Table;
|
|
unsigned MissingIndex;
|
|
unsigned MissingCount;
|
|
llvm::opt::InputArgList Args =
|
|
Table.ParseArgs(ArgsArr.slice(1), MissingIndex, MissingCount);
|
|
if (MissingCount) {
|
|
llvm::errs() << Args.getArgString(MissingIndex) << ": missing argument\n";
|
|
return 1;
|
|
}
|
|
|
|
// Handle when no input or output is specified
|
|
if (Args.hasArgNoClaim(OPT_INPUT) ||
|
|
(!Args.hasArgNoClaim(OPT_d) && !Args.hasArgNoClaim(OPT_l))) {
|
|
Table.PrintHelp(outs(), "llvm-dlltool [options] file...", "llvm-dlltool",
|
|
false);
|
|
llvm::outs() << "\nTARGETS: i386, i386:x86-64, arm, arm64\n";
|
|
return 1;
|
|
}
|
|
|
|
if (!Args.hasArgNoClaim(OPT_m) && Args.hasArgNoClaim(OPT_d)) {
|
|
llvm::errs() << "error: no target machine specified\n"
|
|
<< "supported targets: i386, i386:x86-64, arm, arm64\n";
|
|
return 1;
|
|
}
|
|
|
|
for (auto *Arg : Args.filtered(OPT_UNKNOWN))
|
|
llvm::errs() << "ignoring unknown argument: " << Arg->getSpelling() << "\n";
|
|
|
|
if (!Args.hasArg(OPT_d)) {
|
|
llvm::errs() << "no definition file specified\n";
|
|
return 1;
|
|
}
|
|
|
|
std::unique_ptr<MemoryBuffer> MB =
|
|
openFile(Args.getLastArg(OPT_d)->getValue());
|
|
if (!MB)
|
|
return 1;
|
|
|
|
if (!MB->getBufferSize()) {
|
|
llvm::errs() << "definition file empty\n";
|
|
return 1;
|
|
}
|
|
|
|
COFF::MachineTypes Machine = IMAGE_FILE_MACHINE_UNKNOWN;
|
|
if (auto *Arg = Args.getLastArg(OPT_m))
|
|
Machine = getEmulation(Arg->getValue());
|
|
|
|
if (Machine == IMAGE_FILE_MACHINE_UNKNOWN) {
|
|
llvm::errs() << "unknown target\n";
|
|
return 1;
|
|
}
|
|
|
|
Expected<COFFModuleDefinition> Def =
|
|
parseCOFFModuleDefinition(*MB, Machine, true);
|
|
|
|
if (!Def) {
|
|
llvm::errs() << "error parsing definition\n"
|
|
<< errorToErrorCode(Def.takeError()).message();
|
|
return 1;
|
|
}
|
|
|
|
// Do this after the parser because parseCOFFModuleDefinition sets OutputFile.
|
|
if (auto *Arg = Args.getLastArg(OPT_D))
|
|
Def->OutputFile = Arg->getValue();
|
|
|
|
if (Def->OutputFile.empty()) {
|
|
llvm::errs() << "no output file specified\n";
|
|
return 1;
|
|
}
|
|
|
|
std::string Path = Args.getLastArgValue(OPT_l);
|
|
if (Path.empty())
|
|
Path = getImplibPath(Def->OutputFile);
|
|
|
|
if (Machine == IMAGE_FILE_MACHINE_I386 && Args.getLastArg(OPT_k)) {
|
|
for (COFFShortExport& E : Def->Exports) {
|
|
if (!E.AliasTarget.empty() || (!E.Name.empty() && E.Name[0] == '?'))
|
|
continue;
|
|
E.SymbolName = E.Name;
|
|
// Trim off the trailing decoration. Symbols will always have a
|
|
// starting prefix here (either _ for cdecl/stdcall, @ for fastcall
|
|
// or ? for C++ functions). Vectorcall functions won't have any
|
|
// fixed prefix, but the function base name will still be at least
|
|
// one char.
|
|
E.Name = E.Name.substr(0, E.Name.find('@', 1));
|
|
// By making sure E.SymbolName != E.Name for decorated symbols,
|
|
// writeImportLibrary writes these symbols with the type
|
|
// IMPORT_NAME_UNDECORATE.
|
|
}
|
|
}
|
|
|
|
if (writeImportLibrary(Def->OutputFile, Path, Def->Exports, Machine, true))
|
|
return 1;
|
|
return 0;
|
|
}
|