2017-04-22 01:30:29 +08:00
|
|
|
//===- llvm-cvtres.cpp - Serialize .res files into .obj ---------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Serialize .res files into .obj files. This is intended to be a
|
|
|
|
// platform-independent port of Microsoft's cvtres.exe.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm-cvtres.h"
|
|
|
|
|
2017-05-20 09:49:19 +08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
|
|
|
#include "llvm/Object/Binary.h"
|
|
|
|
#include "llvm/Object/WindowsResource.h"
|
2017-04-22 01:30:29 +08:00
|
|
|
#include "llvm/Option/Arg.h"
|
|
|
|
#include "llvm/Option/ArgList.h"
|
|
|
|
#include "llvm/Option/Option.h"
|
2017-05-20 09:49:19 +08:00
|
|
|
#include "llvm/Support/BinaryStreamError.h"
|
2017-04-22 01:30:29 +08:00
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2017-05-20 09:49:19 +08:00
|
|
|
#include "llvm/Support/Path.h"
|
2017-04-22 01:30:29 +08:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
|
|
|
#include "llvm/Support/Process.h"
|
|
|
|
#include "llvm/Support/Signals.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
2017-05-20 09:49:19 +08:00
|
|
|
using namespace object;
|
2017-04-22 01:30:29 +08:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
enum ID {
|
|
|
|
OPT_INVALID = 0, // This is not an option ID.
|
|
|
|
#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
|
|
|
|
HELPTEXT, METAVAR) \
|
|
|
|
OPT_##ID,
|
|
|
|
#include "Opts.inc"
|
|
|
|
#undef OPTION
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PREFIX(NAME, VALUE) const char *const NAME[] = VALUE;
|
|
|
|
#include "Opts.inc"
|
|
|
|
#undef PREFIX
|
|
|
|
|
|
|
|
static const opt::OptTable::Info InfoTable[] = {
|
|
|
|
#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
|
|
|
|
HELPTEXT, METAVAR) \
|
|
|
|
{ \
|
|
|
|
PREFIX, NAME, HELPTEXT, \
|
|
|
|
METAVAR, OPT_##ID, opt::Option::KIND##Class, \
|
|
|
|
PARAM, FLAGS, OPT_##GROUP, \
|
|
|
|
OPT_##ALIAS, ALIASARGS},
|
|
|
|
#include "Opts.inc"
|
|
|
|
#undef OPTION
|
|
|
|
};
|
|
|
|
|
|
|
|
class CvtResOptTable : public opt::OptTable {
|
|
|
|
public:
|
|
|
|
CvtResOptTable() : OptTable(InfoTable, true) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
static ExitOnError ExitOnErr;
|
|
|
|
}
|
|
|
|
|
2017-05-20 09:49:19 +08:00
|
|
|
LLVM_ATTRIBUTE_NORETURN void reportError(Twine Msg) {
|
|
|
|
errs() << Msg;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void reportError(StringRef Input, std::error_code EC) {
|
|
|
|
reportError(Twine(Input) + ": " + EC.message() + ".\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void error(std::error_code EC) {
|
|
|
|
if (!EC)
|
|
|
|
return;
|
|
|
|
reportError(EC.message() + ".\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void error(Error EC) {
|
|
|
|
if (!EC)
|
|
|
|
return;
|
|
|
|
handleAllErrors(std::move(EC),
|
|
|
|
[&](const ErrorInfoBase &EI) { reportError(EI.message()); });
|
|
|
|
}
|
|
|
|
|
2017-04-22 01:30:29 +08:00
|
|
|
int main(int argc_, const char *argv_[]) {
|
|
|
|
sys::PrintStackTraceOnErrorSignal(argv_[0]);
|
|
|
|
PrettyStackTraceProgram X(argc_, argv_);
|
|
|
|
|
|
|
|
ExitOnErr.setBanner("llvm-cvtres: ");
|
|
|
|
|
|
|
|
SmallVector<const char *, 256> argv;
|
|
|
|
SpecificBumpPtrAllocator<char> ArgAllocator;
|
|
|
|
ExitOnErr(errorCodeToError(sys::Process::GetArgumentVector(
|
|
|
|
argv, makeArrayRef(argv_, argc_), ArgAllocator)));
|
|
|
|
|
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
|
|
|
|
|
|
|
CvtResOptTable T;
|
|
|
|
unsigned MAI, MAC;
|
2017-05-20 09:49:19 +08:00
|
|
|
ArrayRef<const char *> ArgsArr = makeArrayRef(argv_ + 1, argc_);
|
2017-04-22 01:30:29 +08:00
|
|
|
opt::InputArgList InputArgs = T.ParseArgs(ArgsArr, MAI, MAC);
|
|
|
|
|
2017-05-20 09:49:19 +08:00
|
|
|
if (InputArgs.hasArg(OPT_HELP)) {
|
2017-04-22 01:30:29 +08:00
|
|
|
T.PrintHelp(outs(), "cvtres", "Resource Converter", false);
|
2017-05-20 09:49:19 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-10 01:34:30 +08:00
|
|
|
bool Verbose = InputArgs.hasArg(OPT_VERBOSE);
|
|
|
|
|
|
|
|
Machine MachineType;
|
2017-05-20 09:49:19 +08:00
|
|
|
|
|
|
|
if (InputArgs.hasArg(OPT_MACHINE)) {
|
|
|
|
std::string MachineString = InputArgs.getLastArgValue(OPT_MACHINE).upper();
|
2017-06-10 01:34:30 +08:00
|
|
|
MachineType = StringSwitch<Machine>(MachineString)
|
|
|
|
.Case("ARM", Machine::ARM)
|
|
|
|
.Case("X64", Machine::X64)
|
|
|
|
.Case("X86", Machine::X86)
|
|
|
|
.Default(Machine::UNKNOWN);
|
|
|
|
if (MachineType == Machine::UNKNOWN)
|
2017-05-20 09:49:19 +08:00
|
|
|
reportError("Unsupported machine architecture");
|
|
|
|
} else {
|
2017-06-10 01:34:30 +08:00
|
|
|
if (Verbose)
|
|
|
|
outs() << "Machine architecture not specified; assumed X64.\n";
|
|
|
|
MachineType = Machine::X64;
|
2017-05-20 09:49:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> InputFiles = InputArgs.getAllArgValues(OPT_INPUT);
|
|
|
|
|
|
|
|
if (InputFiles.size() == 0) {
|
2017-05-31 02:19:06 +08:00
|
|
|
reportError("No input file specified.\n");
|
2017-05-20 09:49:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SmallString<128> OutputFile;
|
|
|
|
|
|
|
|
if (InputArgs.hasArg(OPT_OUT)) {
|
|
|
|
OutputFile = InputArgs.getLastArgValue(OPT_OUT);
|
|
|
|
} else {
|
2017-06-10 01:34:30 +08:00
|
|
|
OutputFile = llvm::sys::path::filename(StringRef(InputFiles[0]));
|
2017-05-20 09:49:19 +08:00
|
|
|
llvm::sys::path::replace_extension(OutputFile, ".obj");
|
|
|
|
}
|
|
|
|
|
2017-06-10 01:34:30 +08:00
|
|
|
if (Verbose) {
|
|
|
|
outs() << "Machine: ";
|
|
|
|
switch (MachineType) {
|
|
|
|
case Machine::ARM:
|
|
|
|
outs() << "ARM\n";
|
|
|
|
break;
|
|
|
|
case Machine::X86:
|
|
|
|
outs() << "X86\n";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
outs() << "X64\n";
|
|
|
|
}
|
2017-05-31 02:19:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
WindowsResourceParser Parser;
|
|
|
|
|
2017-05-20 09:49:19 +08:00
|
|
|
for (const auto &File : InputFiles) {
|
|
|
|
Expected<object::OwningBinary<object::Binary>> BinaryOrErr =
|
|
|
|
object::createBinary(File);
|
|
|
|
if (!BinaryOrErr)
|
|
|
|
reportError(File, errorToErrorCode(BinaryOrErr.takeError()));
|
|
|
|
|
|
|
|
Binary &Binary = *BinaryOrErr.get().getBinary();
|
|
|
|
|
|
|
|
WindowsResource *RF = dyn_cast<WindowsResource>(&Binary);
|
|
|
|
if (!RF)
|
|
|
|
reportError(File + ": unrecognized file format.\n");
|
|
|
|
|
2017-06-10 01:34:30 +08:00
|
|
|
if (Verbose) {
|
|
|
|
int EntryNumber = 0;
|
|
|
|
Expected<ResourceEntryRef> EntryOrErr = RF->getHeadEntry();
|
|
|
|
if (!EntryOrErr)
|
|
|
|
error(EntryOrErr.takeError());
|
|
|
|
ResourceEntryRef Entry = EntryOrErr.get();
|
|
|
|
bool End = false;
|
|
|
|
while (!End) {
|
|
|
|
error(Entry.moveNext(End));
|
|
|
|
EntryNumber++;
|
|
|
|
}
|
|
|
|
outs() << "Number of resources: " << EntryNumber << "\n";
|
2017-05-20 09:49:19 +08:00
|
|
|
}
|
2017-05-31 02:19:06 +08:00
|
|
|
|
|
|
|
error(Parser.parse(RF));
|
2017-05-20 09:49:19 +08:00
|
|
|
}
|
2017-05-31 02:19:06 +08:00
|
|
|
|
2017-06-10 01:34:30 +08:00
|
|
|
if (Verbose)
|
|
|
|
Parser.printTree();
|
|
|
|
|
|
|
|
error(
|
|
|
|
llvm::object::writeWindowsResourceCOFF(OutputFile, MachineType, Parser));
|
2017-05-31 02:19:06 +08:00
|
|
|
|
2017-04-22 01:30:29 +08:00
|
|
|
return 0;
|
|
|
|
}
|