2002-12-23 23:59:41 +00:00
|
|
|
//===- lli.cpp - LLVM Interpreter / Dynamic compiler ----------------------===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:44:31 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-08-23 17:05:04 +00:00
|
|
|
//
|
2003-12-26 05:07:35 +00:00
|
|
|
// This utility provides a simple wrapper around the LLVM Execution Engines,
|
|
|
|
// which allow the direct execution of LLVM programs through a Just-In-Time
|
2009-07-03 12:11:32 +00:00
|
|
|
// compiler, or through an interpreter if no JIT is available for this platform.
|
2001-08-23 17:05:04 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-09-05 16:50:34 +00:00
|
|
|
#define DEBUG_TYPE "lli"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2013-10-04 00:49:38 +00:00
|
|
|
#include "RemoteMemoryManager.h"
|
2012-09-05 16:50:34 +00:00
|
|
|
#include "RemoteTarget.h"
|
2010-08-28 01:30:02 +00:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2007-05-06 04:58:26 +00:00
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
2006-08-01 22:34:35 +00:00
|
|
|
#include "llvm/CodeGen/LinkAllCodegenComponents.h"
|
2003-09-05 19:42:34 +00:00
|
|
|
#include "llvm/ExecutionEngine/GenericValue.h"
|
2009-06-25 02:04:04 +00:00
|
|
|
#include "llvm/ExecutionEngine/Interpreter.h"
|
|
|
|
#include "llvm/ExecutionEngine/JIT.h"
|
|
|
|
#include "llvm/ExecutionEngine/JITEventListener.h"
|
2012-01-11 21:12:51 +00:00
|
|
|
#include "llvm/ExecutionEngine/JITMemoryManager.h"
|
2010-11-17 16:06:43 +00:00
|
|
|
#include "llvm/ExecutionEngine/MCJIT.h"
|
2012-11-27 19:49:00 +00:00
|
|
|
#include "llvm/ExecutionEngine/SectionMemoryManager.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/IR/Type.h"
|
2013-03-26 02:25:37 +00:00
|
|
|
#include "llvm/IRReader/IRReader.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/DynamicLibrary.h"
|
|
|
|
#include "llvm/Support/Format.h"
|
2006-12-06 01:18:01 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
|
|
|
#include "llvm/Support/Memory.h"
|
2007-05-06 04:58:26 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/PluginLoader.h"
|
2009-03-06 05:34:10 +00:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Process.h"
|
2013-10-02 17:12:36 +00:00
|
|
|
#include "llvm/Support/Program.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Signals.h"
|
2013-03-26 02:25:37 +00:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2011-08-24 18:08:43 +00:00
|
|
|
#include "llvm/Support/TargetSelect.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2013-06-28 19:11:40 +00:00
|
|
|
#include "llvm/Transforms/Instrumentation.h"
|
2007-04-27 17:02:33 +00:00
|
|
|
#include <cerrno>
|
2010-10-22 14:53:59 +00:00
|
|
|
|
|
|
|
#ifdef __CYGWIN__
|
|
|
|
#include <cygwin/version.h>
|
|
|
|
#if defined(CYGWIN_VERSION_DLL_MAJOR) && CYGWIN_VERSION_DLL_MAJOR<1007
|
|
|
|
#define DO_NOTHING_ATEXIT 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2002-12-23 23:59:41 +00:00
|
|
|
namespace {
|
|
|
|
cl::opt<std::string>
|
2007-07-05 17:07:56 +00:00
|
|
|
InputFile(cl::desc("<input bitcode>"), cl::Positional, cl::init("-"));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
2002-12-23 23:59:41 +00:00
|
|
|
cl::list<std::string>
|
|
|
|
InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
2002-12-23 23:59:41 +00:00
|
|
|
cl::opt<bool> ForceInterpreter("force-interpreter",
|
2003-09-25 18:10:34 +00:00
|
|
|
cl::desc("Force interpretation: disable JIT"),
|
|
|
|
cl::init(false));
|
2008-08-08 08:12:06 +00:00
|
|
|
|
2010-11-17 16:06:37 +00:00
|
|
|
cl::opt<bool> UseMCJIT(
|
|
|
|
"use-mcjit", cl::desc("Enable use of the MC-based JIT (if available)"),
|
|
|
|
cl::init(false));
|
|
|
|
|
2013-06-28 19:11:40 +00:00
|
|
|
cl::opt<bool> DebugIR(
|
|
|
|
"debug-ir", cl::desc("Generate debug information to allow debugging IR."),
|
|
|
|
cl::init(false));
|
|
|
|
|
2012-09-05 16:50:34 +00:00
|
|
|
// The MCJIT supports building for a target address space separate from
|
|
|
|
// the JIT compilation process. Use a forked process and a copying
|
|
|
|
// memory manager with IPC to execute using this functionality.
|
|
|
|
cl::opt<bool> RemoteMCJIT("remote-mcjit",
|
|
|
|
cl::desc("Execute MCJIT'ed code in a separate process."),
|
|
|
|
cl::init(false));
|
|
|
|
|
2013-10-02 17:12:36 +00:00
|
|
|
// Manually specify the child process for remote execution. This overrides
|
|
|
|
// the simulated remote execution that allocates address space for child
|
|
|
|
// execution. The child process resides in the disk and communicates with lli
|
|
|
|
// via stdin/stdout pipes.
|
|
|
|
cl::opt<std::string>
|
|
|
|
MCJITRemoteProcess("mcjit-remote-process",
|
|
|
|
cl::desc("Specify the filename of the process to launch "
|
|
|
|
"for remote MCJIT execution. If none is specified,"
|
|
|
|
"\n\tremote execution will be simulated in-process."),
|
|
|
|
cl::value_desc("filename"),
|
|
|
|
cl::init(""));
|
|
|
|
|
2009-05-04 23:05:19 +00:00
|
|
|
// Determine optimization level.
|
|
|
|
cl::opt<char>
|
|
|
|
OptLevel("O",
|
|
|
|
cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
|
|
|
|
"(default = '-O2')"),
|
|
|
|
cl::Prefix,
|
|
|
|
cl::ZeroOrMore,
|
|
|
|
cl::init(' '));
|
2008-08-08 08:12:06 +00:00
|
|
|
|
2005-12-16 05:00:21 +00:00
|
|
|
cl::opt<std::string>
|
2005-12-16 05:19:18 +00:00
|
|
|
TargetTriple("mtriple", cl::desc("Override target triple for module"));
|
2008-11-05 23:21:52 +00:00
|
|
|
|
2010-02-05 16:19:36 +00:00
|
|
|
cl::opt<std::string>
|
|
|
|
MArch("march",
|
|
|
|
cl::desc("Architecture to generate assembly for (see --version)"));
|
|
|
|
|
|
|
|
cl::opt<std::string>
|
|
|
|
MCPU("mcpu",
|
|
|
|
cl::desc("Target a specific cpu type (-mcpu=help for details)"),
|
|
|
|
cl::value_desc("cpu-name"),
|
|
|
|
cl::init(""));
|
|
|
|
|
|
|
|
cl::list<std::string>
|
|
|
|
MAttrs("mattr",
|
|
|
|
cl::CommaSeparated,
|
|
|
|
cl::desc("Target specific attributes (-mattr=help for details)"),
|
|
|
|
cl::value_desc("a1,+a2,-a3,..."));
|
|
|
|
|
2008-11-05 23:21:52 +00:00
|
|
|
cl::opt<std::string>
|
|
|
|
EntryFunc("entry-function",
|
|
|
|
cl::desc("Specify the entry function (default = 'main') "
|
|
|
|
"of the executable"),
|
|
|
|
cl::value_desc("function"),
|
|
|
|
cl::init("main"));
|
2012-01-16 08:56:09 +00:00
|
|
|
|
2013-10-04 00:49:38 +00:00
|
|
|
cl::list<std::string>
|
2013-10-28 21:58:15 +00:00
|
|
|
ExtraModules("extra-module",
|
2013-10-04 00:49:38 +00:00
|
|
|
cl::desc("Extra modules to be loaded"),
|
|
|
|
cl::value_desc("<input bitcode 2>,<input bitcode 3>,..."));
|
|
|
|
|
2003-10-28 22:51:44 +00:00
|
|
|
cl::opt<std::string>
|
|
|
|
FakeArgv0("fake-argv0",
|
|
|
|
cl::desc("Override the 'argv[0]' value passed into the executing"
|
|
|
|
" program"), cl::value_desc("executable"));
|
2012-01-16 08:56:09 +00:00
|
|
|
|
2006-09-14 06:17:09 +00:00
|
|
|
cl::opt<bool>
|
|
|
|
DisableCoreFiles("disable-core-files", cl::Hidden,
|
|
|
|
cl::desc("Disable emission of core files if possible"));
|
2008-04-22 06:51:41 +00:00
|
|
|
|
|
|
|
cl::opt<bool>
|
2008-05-21 18:20:21 +00:00
|
|
|
NoLazyCompilation("disable-lazy-compilation",
|
2008-04-22 06:51:41 +00:00
|
|
|
cl::desc("Disable JIT lazy compilation"),
|
|
|
|
cl::init(false));
|
2011-07-19 06:37:02 +00:00
|
|
|
|
|
|
|
cl::opt<Reloc::Model>
|
|
|
|
RelocModel("relocation-model",
|
|
|
|
cl::desc("Choose relocation model"),
|
|
|
|
cl::init(Reloc::Default),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(Reloc::Default, "default",
|
|
|
|
"Target default relocation model"),
|
|
|
|
clEnumValN(Reloc::Static, "static",
|
|
|
|
"Non-relocatable code"),
|
|
|
|
clEnumValN(Reloc::PIC_, "pic",
|
|
|
|
"Fully relocatable, position independent code"),
|
|
|
|
clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
|
|
|
|
"Relocatable external references, non-relocatable code"),
|
|
|
|
clEnumValEnd));
|
2011-07-20 07:51:56 +00:00
|
|
|
|
|
|
|
cl::opt<llvm::CodeModel::Model>
|
|
|
|
CMModel("code-model",
|
|
|
|
cl::desc("Choose code model"),
|
|
|
|
cl::init(CodeModel::JITDefault),
|
|
|
|
cl::values(clEnumValN(CodeModel::JITDefault, "default",
|
|
|
|
"Target default JIT code model"),
|
|
|
|
clEnumValN(CodeModel::Small, "small",
|
|
|
|
"Small code model"),
|
|
|
|
clEnumValN(CodeModel::Kernel, "kernel",
|
|
|
|
"Kernel code model"),
|
|
|
|
clEnumValN(CodeModel::Medium, "medium",
|
|
|
|
"Medium code model"),
|
|
|
|
clEnumValN(CodeModel::Large, "large",
|
|
|
|
"Large code model"),
|
|
|
|
clEnumValEnd));
|
|
|
|
|
2012-04-18 08:34:12 +00:00
|
|
|
cl::opt<bool>
|
2012-10-12 09:55:13 +00:00
|
|
|
GenerateSoftFloatCalls("soft-float",
|
|
|
|
cl::desc("Generate software floating point library calls"),
|
|
|
|
cl::init(false));
|
|
|
|
|
|
|
|
cl::opt<llvm::FloatABI::ABIType>
|
|
|
|
FloatABIForCalls("float-abi",
|
|
|
|
cl::desc("Choose float ABI type"),
|
|
|
|
cl::init(FloatABI::Default),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(FloatABI::Default, "default",
|
|
|
|
"Target default float ABI type"),
|
|
|
|
clEnumValN(FloatABI::Soft, "soft",
|
|
|
|
"Soft float ABI (implied by -soft-float)"),
|
|
|
|
clEnumValN(FloatABI::Hard, "hard",
|
|
|
|
"Hard float ABI (uses FP registers)"),
|
|
|
|
clEnumValEnd));
|
|
|
|
cl::opt<bool>
|
2012-04-18 08:34:12 +00:00
|
|
|
// In debug builds, make this default to true.
|
|
|
|
#ifdef NDEBUG
|
|
|
|
#define EMIT_DEBUG false
|
|
|
|
#else
|
|
|
|
#define EMIT_DEBUG true
|
|
|
|
#endif
|
|
|
|
EmitJitDebugInfo("jit-emit-debug",
|
|
|
|
cl::desc("Emit debug information to debugger"),
|
|
|
|
cl::init(EMIT_DEBUG));
|
|
|
|
#undef EMIT_DEBUG
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
EmitJitDebugInfoToDisk("jit-emit-debug-to-disk",
|
|
|
|
cl::Hidden,
|
|
|
|
cl::desc("Emit debug info objfiles to disk"),
|
|
|
|
cl::init(false));
|
2002-12-23 23:59:41 +00:00
|
|
|
}
|
2001-10-27 08:43:52 +00:00
|
|
|
|
2007-03-03 18:21:44 +00:00
|
|
|
static ExecutionEngine *EE = 0;
|
|
|
|
|
|
|
|
static void do_shutdown() {
|
2010-10-22 14:53:59 +00:00
|
|
|
// Cygwin-1.5 invokes DLL's dtors before atexit handler.
|
|
|
|
#ifndef DO_NOTHING_ATEXIT
|
2007-03-03 18:21:44 +00:00
|
|
|
delete EE;
|
|
|
|
llvm_shutdown();
|
2010-10-22 14:53:59 +00:00
|
|
|
#endif
|
2007-03-03 18:21:44 +00:00
|
|
|
}
|
|
|
|
|
2001-08-23 17:05:04 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// main Driver function
|
|
|
|
//
|
2003-10-14 21:39:53 +00:00
|
|
|
int main(int argc, char **argv, char * const *envp) {
|
2009-03-06 05:34:10 +00:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
|
|
|
PrettyStackTraceProgram X(argc, argv);
|
2012-01-16 08:56:09 +00:00
|
|
|
|
2009-07-15 22:16:10 +00:00
|
|
|
LLVMContext &Context = getGlobalContext();
|
2007-03-03 18:21:44 +00:00
|
|
|
atexit(do_shutdown); // Call llvm_shutdown() on exit.
|
2009-07-16 02:04:54 +00:00
|
|
|
|
|
|
|
// If we have a native target, initialize it to ensure it is linked in and
|
|
|
|
// usable by the JIT.
|
|
|
|
InitializeNativeTarget();
|
2011-03-18 22:48:41 +00:00
|
|
|
InitializeNativeTargetAsmPrinter();
|
2012-11-05 19:06:05 +00:00
|
|
|
InitializeNativeTargetAsmParser();
|
2009-07-16 02:04:54 +00:00
|
|
|
|
2007-05-06 04:58:26 +00:00
|
|
|
cl::ParseCommandLineOptions(argc, argv,
|
2007-10-08 15:45:12 +00:00
|
|
|
"llvm interpreter & dynamic compiler\n");
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2007-05-06 04:58:26 +00:00
|
|
|
// If the user doesn't want core files, disable them.
|
|
|
|
if (DisableCoreFiles)
|
|
|
|
sys::Process::PreventCoreFiles();
|
2012-01-16 08:56:09 +00:00
|
|
|
|
2007-07-05 17:07:56 +00:00
|
|
|
// Load the bitcode...
|
2010-11-13 00:28:01 +00:00
|
|
|
SMDiagnostic Err;
|
|
|
|
Module *Mod = ParseIRFile(InputFile, Err, Context);
|
2010-01-27 20:34:15 +00:00
|
|
|
if (!Mod) {
|
2011-10-16 04:47:35 +00:00
|
|
|
Err.print(argv[0], errs());
|
2010-11-13 00:28:01 +00:00
|
|
|
return 1;
|
2007-05-06 04:58:26 +00:00
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2010-01-27 20:34:15 +00:00
|
|
|
// If not jitting lazily, load the whole bitcode file eagerly too.
|
2010-11-13 00:28:01 +00:00
|
|
|
std::string ErrorMsg;
|
2010-01-27 20:34:15 +00:00
|
|
|
if (NoLazyCompilation) {
|
|
|
|
if (Mod->MaterializeAllPermanently(&ErrorMsg)) {
|
|
|
|
errs() << argv[0] << ": bitcode didn't read correctly.\n";
|
|
|
|
errs() << "Reason: " << ErrorMsg << "\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-04-22 06:51:41 +00:00
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2013-06-28 19:11:40 +00:00
|
|
|
if (DebugIR) {
|
|
|
|
if (!UseMCJIT) {
|
|
|
|
errs() << "warning: -debug-ir used without -use-mcjit. Only partial debug"
|
|
|
|
<< " information will be emitted by the non-MC JIT engine. To see full"
|
|
|
|
<< " source debug information, enable the flag '-use-mcjit'.\n";
|
|
|
|
|
|
|
|
}
|
|
|
|
ModulePass *DebugIRPass = createDebugIRPass();
|
|
|
|
DebugIRPass->runOnModule(*Mod);
|
|
|
|
}
|
|
|
|
|
2010-01-27 20:34:15 +00:00
|
|
|
EngineBuilder builder(Mod);
|
2010-02-05 16:19:36 +00:00
|
|
|
builder.setMArch(MArch);
|
|
|
|
builder.setMCPU(MCPU);
|
|
|
|
builder.setMAttrs(MAttrs);
|
2011-07-19 06:37:02 +00:00
|
|
|
builder.setRelocationModel(RelocModel);
|
2011-07-20 07:51:56 +00:00
|
|
|
builder.setCodeModel(CMModel);
|
2009-07-18 08:07:13 +00:00
|
|
|
builder.setErrorStr(&ErrorMsg);
|
|
|
|
builder.setEngineKind(ForceInterpreter
|
2009-07-18 00:42:18 +00:00
|
|
|
? EngineKind::Interpreter
|
|
|
|
: EngineKind::JIT);
|
|
|
|
|
2007-05-06 04:58:26 +00:00
|
|
|
// If we are supposed to override the target triple, do so now.
|
|
|
|
if (!TargetTriple.empty())
|
2010-08-28 01:30:02 +00:00
|
|
|
Mod->setTargetTriple(Triple::normalize(TargetTriple));
|
2008-04-22 06:51:41 +00:00
|
|
|
|
2012-01-16 08:56:09 +00:00
|
|
|
// Enable MCJIT if desired.
|
2013-05-14 19:29:00 +00:00
|
|
|
RTDyldMemoryManager *RTDyldMM = 0;
|
2012-01-16 08:56:09 +00:00
|
|
|
if (UseMCJIT && !ForceInterpreter) {
|
2010-11-17 16:06:37 +00:00
|
|
|
builder.setUseMCJIT(true);
|
2012-09-05 16:50:34 +00:00
|
|
|
if (RemoteMCJIT)
|
2013-10-04 00:49:38 +00:00
|
|
|
RTDyldMM = new RemoteMemoryManager();
|
2012-09-05 16:50:34 +00:00
|
|
|
else
|
2013-05-14 19:29:00 +00:00
|
|
|
RTDyldMM = new SectionMemoryManager();
|
|
|
|
builder.setMCJITMemoryManager(RTDyldMM);
|
2012-05-20 17:24:08 +00:00
|
|
|
} else {
|
2012-09-05 16:50:34 +00:00
|
|
|
if (RemoteMCJIT) {
|
|
|
|
errs() << "error: Remote process execution requires -use-mcjit\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
2012-05-20 17:24:08 +00:00
|
|
|
builder.setJITMemoryManager(ForceInterpreter ? 0 :
|
|
|
|
JITMemoryManager::CreateDefaultMemManager());
|
2012-01-16 08:56:09 +00:00
|
|
|
}
|
2010-11-17 16:06:37 +00:00
|
|
|
|
2009-05-04 23:05:19 +00:00
|
|
|
CodeGenOpt::Level OLvl = CodeGenOpt::Default;
|
|
|
|
switch (OptLevel) {
|
|
|
|
default:
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << argv[0] << ": invalid optimization level.\n";
|
2009-05-04 23:05:19 +00:00
|
|
|
return 1;
|
|
|
|
case ' ': break;
|
|
|
|
case '0': OLvl = CodeGenOpt::None; break;
|
2009-10-16 21:02:20 +00:00
|
|
|
case '1': OLvl = CodeGenOpt::Less; break;
|
2009-05-04 23:05:19 +00:00
|
|
|
case '2': OLvl = CodeGenOpt::Default; break;
|
|
|
|
case '3': OLvl = CodeGenOpt::Aggressive; break;
|
|
|
|
}
|
2009-07-18 00:42:18 +00:00
|
|
|
builder.setOptLevel(OLvl);
|
|
|
|
|
2012-10-12 09:55:13 +00:00
|
|
|
TargetOptions Options;
|
|
|
|
Options.UseSoftFloat = GenerateSoftFloatCalls;
|
|
|
|
if (FloatABIForCalls != FloatABI::Default)
|
|
|
|
Options.FloatABIType = FloatABIForCalls;
|
|
|
|
if (GenerateSoftFloatCalls)
|
|
|
|
FloatABIForCalls = FloatABI::Soft;
|
|
|
|
|
2012-09-05 16:50:34 +00:00
|
|
|
// Remote target execution doesn't handle EH or debug registration.
|
|
|
|
if (!RemoteMCJIT) {
|
|
|
|
Options.JITEmitDebugInfo = EmitJitDebugInfo;
|
|
|
|
Options.JITEmitDebugInfoToDisk = EmitJitDebugInfoToDisk;
|
|
|
|
}
|
2012-04-18 08:34:12 +00:00
|
|
|
|
2012-10-12 09:55:13 +00:00
|
|
|
builder.setTargetOptions(Options);
|
|
|
|
|
2009-07-18 00:42:18 +00:00
|
|
|
EE = builder.create();
|
2009-07-07 18:31:09 +00:00
|
|
|
if (!EE) {
|
|
|
|
if (!ErrorMsg.empty())
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
|
2009-07-07 18:31:09 +00:00
|
|
|
else
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << argv[0] << ": unknown error creating EE!\n";
|
2007-05-06 04:58:26 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2013-10-04 00:49:38 +00:00
|
|
|
// Load any additional modules specified on the command line.
|
|
|
|
for (unsigned i = 0, e = ExtraModules.size(); i != e; ++i) {
|
|
|
|
Module *XMod = ParseIRFile(ExtraModules[i], Err, Context);
|
|
|
|
if (!XMod) {
|
|
|
|
Err.print(argv[0], errs());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
EE->addModule(XMod);
|
|
|
|
}
|
|
|
|
|
2012-03-13 08:33:15 +00:00
|
|
|
// The following functions have no effect if their respective profiling
|
|
|
|
// support wasn't enabled in the build configuration.
|
|
|
|
EE->RegisterJITEventListener(
|
|
|
|
JITEventListener::createOProfileJITEventListener());
|
|
|
|
EE->RegisterJITEventListener(
|
|
|
|
JITEventListener::createIntelJITEventListener());
|
2009-06-25 02:04:04 +00:00
|
|
|
|
2012-09-05 16:50:34 +00:00
|
|
|
if (!NoLazyCompilation && RemoteMCJIT) {
|
|
|
|
errs() << "warning: remote mcjit does not support lazy compilation\n";
|
|
|
|
NoLazyCompilation = true;
|
|
|
|
}
|
2009-10-27 22:39:42 +00:00
|
|
|
EE->DisableLazyCompilation(NoLazyCompilation);
|
2008-04-22 06:51:41 +00:00
|
|
|
|
2007-05-06 04:58:26 +00:00
|
|
|
// If the user specifically requested an argv[0] to pass into the program,
|
|
|
|
// do it now.
|
|
|
|
if (!FakeArgv0.empty()) {
|
|
|
|
InputFile = FakeArgv0;
|
|
|
|
} else {
|
|
|
|
// Otherwise, if there is a .bc suffix on the executable strip it off, it
|
|
|
|
// might confuse the program.
|
2010-04-15 11:33:14 +00:00
|
|
|
if (StringRef(InputFile).endswith(".bc"))
|
2007-05-06 04:58:26 +00:00
|
|
|
InputFile.erase(InputFile.length() - 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the module's name to the start of the vector of arguments to main().
|
|
|
|
InputArgv.insert(InputArgv.begin(), InputFile);
|
|
|
|
|
|
|
|
// Call the main function from M as if its signature were:
|
|
|
|
// int main (int argc, char **argv, const char **envp)
|
|
|
|
// using the contents of Args to determine argc & argv, and the contents of
|
|
|
|
// EnvVars to determine envp.
|
|
|
|
//
|
2008-11-05 23:21:52 +00:00
|
|
|
Function *EntryFn = Mod->getFunction(EntryFunc);
|
|
|
|
if (!EntryFn) {
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << '\'' << EntryFunc << "\' function not found in module.\n";
|
2007-05-06 04:58:26 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset errno to zero on entry to main.
|
|
|
|
errno = 0;
|
2012-01-16 08:56:09 +00:00
|
|
|
|
2013-10-02 18:04:40 +00:00
|
|
|
int Result;
|
|
|
|
|
2012-11-27 19:49:00 +00:00
|
|
|
if (!RemoteMCJIT) {
|
2013-10-11 22:47:10 +00:00
|
|
|
// If the program doesn't explicitly call exit, we will need the Exit
|
|
|
|
// function later on to make an explicit call, so get the function now.
|
|
|
|
Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context),
|
|
|
|
Type::getInt32Ty(Context),
|
|
|
|
NULL);
|
|
|
|
|
2013-10-02 18:04:40 +00:00
|
|
|
// Run static constructors.
|
2013-10-01 01:47:35 +00:00
|
|
|
if (UseMCJIT && !ForceInterpreter) {
|
|
|
|
// Give MCJIT a chance to apply relocations and set page permissions.
|
|
|
|
EE->finalizeObject();
|
|
|
|
}
|
|
|
|
EE->runStaticConstructorsDestructors(false);
|
2008-04-22 06:51:41 +00:00
|
|
|
|
2013-10-01 01:47:35 +00:00
|
|
|
if (!UseMCJIT && NoLazyCompilation) {
|
|
|
|
for (Module::iterator I = Mod->begin(), E = Mod->end(); I != E; ++I) {
|
|
|
|
Function *Fn = &*I;
|
|
|
|
if (Fn != EntryFn && !Fn->isDeclaration())
|
|
|
|
EE->getPointerToFunction(Fn);
|
|
|
|
}
|
2008-04-22 06:51:41 +00:00
|
|
|
}
|
|
|
|
|
2013-10-02 18:04:40 +00:00
|
|
|
// Trigger compilation separately so code regions that need to be
|
|
|
|
// invalidated will be known.
|
|
|
|
(void)EE->getPointerToFunction(EntryFn);
|
|
|
|
// Clear instruction cache before code will be executed.
|
|
|
|
if (RTDyldMM)
|
|
|
|
static_cast<SectionMemoryManager*>(RTDyldMM)->invalidateInstructionCache();
|
|
|
|
|
|
|
|
// Run main.
|
|
|
|
Result = EE->runFunctionAsMain(EntryFn, InputArgv, envp);
|
|
|
|
|
|
|
|
// Run static destructors.
|
|
|
|
EE->runStaticConstructorsDestructors(true);
|
|
|
|
|
|
|
|
// If the program didn't call exit explicitly, we should call it now.
|
|
|
|
// This ensures that any atexit handlers get called correctly.
|
|
|
|
if (Function *ExitF = dyn_cast<Function>(Exit)) {
|
|
|
|
std::vector<GenericValue> Args;
|
|
|
|
GenericValue ResultGV;
|
|
|
|
ResultGV.IntVal = APInt(32, Result);
|
|
|
|
Args.push_back(ResultGV);
|
|
|
|
EE->runFunction(ExitF, Args);
|
|
|
|
errs() << "ERROR: exit(" << Result << ") returned!\n";
|
|
|
|
abort();
|
|
|
|
} else {
|
|
|
|
errs() << "ERROR: exit defined with wrong prototype!\n";
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// else == "if (RemoteMCJIT)"
|
|
|
|
|
|
|
|
// Remote target MCJIT doesn't (yet) support static constructors. No reason
|
|
|
|
// it couldn't. This is a limitation of the LLI implemantation, not the
|
|
|
|
// MCJIT itself. FIXME.
|
|
|
|
//
|
2013-10-04 00:49:38 +00:00
|
|
|
RemoteMemoryManager *MM = static_cast<RemoteMemoryManager*>(RTDyldMM);
|
2012-09-05 16:50:34 +00:00
|
|
|
// Everything is prepared now, so lay out our program for the target
|
|
|
|
// address space, assign the section addresses to resolve any relocations,
|
|
|
|
// and send it to the target.
|
2013-10-02 17:12:36 +00:00
|
|
|
|
|
|
|
OwningPtr<RemoteTarget> Target;
|
|
|
|
if (!MCJITRemoteProcess.empty()) { // Remote execution on a child process
|
|
|
|
if (!RemoteTarget::hostSupportsExternalRemoteTarget()) {
|
|
|
|
errs() << "Warning: host does not support external remote targets.\n"
|
|
|
|
<< " Defaulting to simulated remote execution\n";
|
|
|
|
Target.reset(RemoteTarget::createRemoteTarget());
|
|
|
|
} else {
|
|
|
|
std::string ChildEXE = sys::FindProgramByName(MCJITRemoteProcess);
|
|
|
|
if (ChildEXE == "") {
|
|
|
|
errs() << "Unable to find child target: '\''" << MCJITRemoteProcess << "\'\n";
|
|
|
|
return -1;
|
|
|
|
}
|
2013-10-02 21:33:12 +00:00
|
|
|
Target.reset(RemoteTarget::createExternalRemoteTarget(ChildEXE));
|
2013-10-02 17:12:36 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// No child process name provided, use simulated remote execution.
|
|
|
|
Target.reset(RemoteTarget::createRemoteTarget());
|
|
|
|
}
|
|
|
|
|
2013-10-04 00:49:38 +00:00
|
|
|
// Give the memory manager a pointer to our remote target interface object.
|
|
|
|
MM->setRemoteTarget(Target.get());
|
|
|
|
|
|
|
|
// Create the remote target.
|
2013-10-02 17:12:36 +00:00
|
|
|
Target->create();
|
2012-09-05 16:50:34 +00:00
|
|
|
|
|
|
|
// Since we're executing in a (at least simulated) remote address space,
|
|
|
|
// we can't use the ExecutionEngine::runFunctionAsMain(). We have to
|
|
|
|
// grab the function address directly here and tell the remote target
|
|
|
|
// to execute the function.
|
2013-10-04 00:49:38 +00:00
|
|
|
//
|
|
|
|
// Our memory manager will map generated code into the remote address
|
|
|
|
// space as it is loaded and copy the bits over during the finalizeMemory
|
|
|
|
// operation.
|
|
|
|
//
|
2012-09-05 16:50:34 +00:00
|
|
|
// FIXME: argv and envp handling.
|
2013-10-02 17:12:36 +00:00
|
|
|
uint64_t Entry = EE->getFunctionAddress(EntryFn->getName().str());
|
2012-09-05 16:50:34 +00:00
|
|
|
|
2013-05-19 09:55:06 +00:00
|
|
|
DEBUG(dbgs() << "Executing '" << EntryFn->getName() << "' at 0x"
|
|
|
|
<< format("%llx", Entry) << "\n");
|
2012-09-05 16:50:34 +00:00
|
|
|
|
2013-10-02 17:12:36 +00:00
|
|
|
if (Target->executeCode(Entry, Result))
|
|
|
|
errs() << "ERROR: " << Target->getErrorMsg() << "\n";
|
2012-09-05 16:50:34 +00:00
|
|
|
|
2013-10-02 18:04:40 +00:00
|
|
|
// Like static constructors, the remote target MCJIT support doesn't handle
|
|
|
|
// this yet. It could. FIXME.
|
2007-05-06 04:58:26 +00:00
|
|
|
|
2013-10-02 18:04:40 +00:00
|
|
|
// Stop the remote target
|
|
|
|
Target->stop();
|
2012-09-05 16:50:34 +00:00
|
|
|
}
|
2012-01-16 08:56:09 +00:00
|
|
|
|
2012-09-05 16:50:34 +00:00
|
|
|
return Result;
|
2001-08-23 17:05:04 +00:00
|
|
|
}
|