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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-01 16:58:40 +00:00
|
|
|
#include "llvm/LLVMContext.h"
|
2003-09-05 20:08:15 +00:00
|
|
|
#include "llvm/Module.h"
|
2003-12-26 06:49:53 +00:00
|
|
|
#include "llvm/Type.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"
|
2010-11-17 16:06:43 +00:00
|
|
|
#include "llvm/ExecutionEngine/MCJIT.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2010-11-13 00:28:01 +00:00
|
|
|
#include "llvm/Support/IRReader.h"
|
2006-12-06 01:18:01 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.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"
|
2009-08-23 22:45:37 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Process.h"
|
|
|
|
#include "llvm/Support/Signals.h"
|
2009-06-17 16:42:19 +00:00
|
|
|
#include "llvm/Target/TargetSelect.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));
|
|
|
|
|
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"));
|
2005-12-16 05:00:21 +00:00
|
|
|
|
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"));
|
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));
|
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);
|
|
|
|
|
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();
|
|
|
|
|
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();
|
|
|
|
|
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) {
|
2010-11-13 00:28:01 +00:00
|
|
|
Err.Print(argv[0], errs());
|
|
|
|
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
|
|
|
|
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);
|
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
|
|
|
|
2010-11-17 16:06:37 +00:00
|
|
|
// Enable MCJIT, if desired.
|
|
|
|
if (UseMCJIT)
|
|
|
|
builder.setUseMCJIT(true);
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
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
|
|
|
|
2009-07-10 21:08:20 +00:00
|
|
|
EE->RegisterJITEventListener(createOProfileJITEventListener());
|
2009-06-25 02:04:04 +00:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
2009-08-13 21:58:54 +00:00
|
|
|
Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context),
|
|
|
|
Type::getInt32Ty(Context),
|
|
|
|
NULL);
|
2007-05-06 04:58:26 +00:00
|
|
|
|
|
|
|
// Reset errno to zero on entry to main.
|
|
|
|
errno = 0;
|
|
|
|
|
|
|
|
// Run static constructors.
|
|
|
|
EE->runStaticConstructorsDestructors(false);
|
2008-04-22 06:51:41 +00:00
|
|
|
|
|
|
|
if (NoLazyCompilation) {
|
|
|
|
for (Module::iterator I = Mod->begin(), E = Mod->end(); I != E; ++I) {
|
|
|
|
Function *Fn = &*I;
|
2008-11-05 23:21:52 +00:00
|
|
|
if (Fn != EntryFn && !Fn->isDeclaration())
|
2008-04-22 06:51:41 +00:00
|
|
|
EE->getPointerToFunction(Fn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-06 04:58:26 +00:00
|
|
|
// Run main.
|
2008-11-05 23:21:52 +00:00
|
|
|
int Result = EE->runFunctionAsMain(EntryFn, InputArgv, envp);
|
2007-05-06 04:58:26 +00:00
|
|
|
|
|
|
|
// 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);
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << "ERROR: exit(" << Result << ") returned!\n";
|
2007-05-06 04:58:26 +00:00
|
|
|
abort();
|
|
|
|
} else {
|
2009-07-15 16:35:29 +00:00
|
|
|
errs() << "ERROR: exit defined with wrong prototype!\n";
|
2007-05-06 04:58:26 +00:00
|
|
|
abort();
|
2003-12-26 06:14:47 +00:00
|
|
|
}
|
2001-08-23 17:05:04 +00:00
|
|
|
}
|