2011-03-18 17:11:39 +00:00
|
|
|
//===-- llvm-rtdyld.cpp - MCJIT Testing Tool ------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This is a testing tool for use with the MC-JIT LLVM components.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/StringMap.h"
|
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2011-03-29 21:03:05 +00:00
|
|
|
#include "llvm/ExecutionEngine/JITMemoryManager.h"
|
2011-03-21 22:15:52 +00:00
|
|
|
#include "llvm/ExecutionEngine/RuntimeDyld.h"
|
2011-03-18 17:11:39 +00:00
|
|
|
#include "llvm/Object/MachOObject.h"
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
|
|
|
#include "llvm/Support/Memory.h"
|
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "llvm/Support/system_error.h"
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace llvm::object;
|
|
|
|
|
|
|
|
static cl::opt<std::string>
|
|
|
|
InputFile(cl::Positional, cl::desc("<input file>"), cl::init("-"));
|
|
|
|
|
|
|
|
enum ActionType {
|
|
|
|
AC_Execute
|
|
|
|
};
|
|
|
|
|
|
|
|
static cl::opt<ActionType>
|
|
|
|
Action(cl::desc("Action to perform:"),
|
|
|
|
cl::init(AC_Execute),
|
|
|
|
cl::values(clEnumValN(AC_Execute, "execute",
|
|
|
|
"Load, link, and execute the inputs."),
|
|
|
|
clEnumValEnd));
|
|
|
|
|
|
|
|
/* *** */
|
|
|
|
|
|
|
|
static const char *ProgramName;
|
|
|
|
|
|
|
|
static void Message(const char *Type, const Twine &Msg) {
|
|
|
|
errs() << ProgramName << ": " << Type << ": " << Msg << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
static int Error(const Twine &Msg) {
|
|
|
|
Message("error", Msg);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* *** */
|
2011-03-18 18:54:32 +00:00
|
|
|
|
|
|
|
static int executeInput() {
|
|
|
|
// Load the input memory buffer.
|
|
|
|
OwningPtr<MemoryBuffer> InputBuffer;
|
|
|
|
if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFile, InputBuffer))
|
|
|
|
return Error("unable to read input: '" + ec.message() + "'");
|
|
|
|
|
2011-03-21 22:15:52 +00:00
|
|
|
// Instantiate a dynamic linker.
|
2011-03-29 21:03:05 +00:00
|
|
|
RuntimeDyld Dyld(JITMemoryManager::CreateDefaultMemManager());
|
2011-03-18 18:54:32 +00:00
|
|
|
|
2011-03-21 22:15:52 +00:00
|
|
|
// Load the object file into it.
|
2011-03-22 18:19:42 +00:00
|
|
|
if (Dyld.loadObject(InputBuffer.take())) {
|
|
|
|
return Error(Dyld.getErrorString());
|
|
|
|
}
|
2011-03-18 18:54:32 +00:00
|
|
|
|
2011-03-18 17:11:39 +00:00
|
|
|
// Get the address of "_main".
|
2011-03-21 22:15:52 +00:00
|
|
|
void *MainAddress = Dyld.getSymbolAddress("_main");
|
|
|
|
if (MainAddress == 0)
|
2011-03-18 17:11:39 +00:00
|
|
|
return Error("no definition for '_main'");
|
|
|
|
|
|
|
|
// Invalidate the instruction cache.
|
2011-03-21 22:15:52 +00:00
|
|
|
sys::MemoryBlock Data = Dyld.getMemoryBlock();
|
2011-03-18 17:11:39 +00:00
|
|
|
sys::Memory::InvalidateInstructionCache(Data.base(), Data.size());
|
|
|
|
|
|
|
|
// Make sure the memory is executable.
|
2011-03-21 22:15:52 +00:00
|
|
|
std::string ErrorStr;
|
2011-03-18 17:11:39 +00:00
|
|
|
if (!sys::Memory::setExecutable(Data, &ErrorStr))
|
|
|
|
return Error("unable to mark function executable: '" + ErrorStr + "'");
|
|
|
|
|
|
|
|
// Dispatch to _main().
|
|
|
|
errs() << "loaded '_main' at: " << MainAddress << "\n";
|
|
|
|
|
|
|
|
int (*Main)(int, const char**) =
|
|
|
|
(int(*)(int,const char**)) uintptr_t(MainAddress);
|
|
|
|
const char **Argv = new const char*[2];
|
|
|
|
Argv[0] = InputFile.c_str();
|
|
|
|
Argv[1] = 0;
|
|
|
|
return Main(1, Argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
ProgramName = argv[0];
|
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
|
|
|
|
|
|
|
cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n");
|
|
|
|
|
|
|
|
switch (Action) {
|
|
|
|
default:
|
|
|
|
case AC_Execute:
|
2011-03-18 17:24:21 +00:00
|
|
|
return executeInput();
|
2011-03-18 17:11:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|