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
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and 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
|
|
|
|
// compiler, or through an intepreter if no JIT is available for this platform.
|
2001-08-23 17:05:04 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-09-05 20:08:15 +00:00
|
|
|
#include "llvm/Module.h"
|
2003-10-14 21:39:53 +00:00
|
|
|
#include "llvm/ModuleProvider.h"
|
2003-12-26 06:49:53 +00:00
|
|
|
#include "llvm/Type.h"
|
2003-09-05 20:08:15 +00:00
|
|
|
#include "llvm/Bytecode/Reader.h"
|
2006-08-01 22:34:35 +00:00
|
|
|
#include "llvm/CodeGen/LinkAllCodegenComponents.h"
|
2006-03-24 02:53:49 +00:00
|
|
|
#include "llvm/ExecutionEngine/JIT.h"
|
|
|
|
#include "llvm/ExecutionEngine/Interpreter.h"
|
2003-09-05 19:42:34 +00:00
|
|
|
#include "llvm/ExecutionEngine/GenericValue.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2007-02-07 21:41:02 +00:00
|
|
|
#include "llvm/Support/Compressor.h"
|
2006-12-06 01:18:01 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/PluginLoader.h"
|
2006-09-14 06:17:09 +00:00
|
|
|
#include "llvm/System/Process.h"
|
2004-05-27 05:41:36 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2004-07-04 12:20:55 +00:00
|
|
|
#include <iostream>
|
2007-04-27 17:02:33 +00:00
|
|
|
#include <cerrno>
|
2003-11-11 22:41:34 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2002-12-23 23:59:41 +00:00
|
|
|
namespace {
|
|
|
|
cl::opt<std::string>
|
|
|
|
InputFile(cl::desc("<input bytecode>"), 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));
|
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"));
|
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"));
|
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() {
|
|
|
|
delete EE;
|
|
|
|
llvm_shutdown();
|
|
|
|
}
|
|
|
|
|
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) {
|
2007-03-03 18:21:44 +00:00
|
|
|
atexit(do_shutdown); // Call llvm_shutdown() on exit.
|
2003-10-14 21:39:53 +00:00
|
|
|
try {
|
2004-12-30 05:36:08 +00:00
|
|
|
cl::ParseCommandLineOptions(argc, argv,
|
|
|
|
" llvm interpreter & dynamic compiler\n");
|
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
|
|
|
|
2006-09-14 06:17:09 +00:00
|
|
|
// If the user doesn't want core files, disable them.
|
|
|
|
if (DisableCoreFiles)
|
|
|
|
sys::Process::PreventCoreFiles();
|
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
// Load the bytecode...
|
|
|
|
std::string ErrorMsg;
|
2007-03-03 18:21:44 +00:00
|
|
|
ModuleProvider *MP = getBytecodeModuleProvider(InputFile,
|
|
|
|
Compressor::decompressToNewBuffer,
|
|
|
|
&ErrorMsg);
|
2006-08-25 17:43:11 +00:00
|
|
|
if (!MP) {
|
2007-03-03 18:21:44 +00:00
|
|
|
std::cerr << argv[0] << ": error loading program '" << InputFile << "': "
|
2006-08-25 17:43:11 +00:00
|
|
|
<< ErrorMsg << "\n";
|
2004-12-30 05:36:08 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2007-03-03 18:21:44 +00:00
|
|
|
// Get the module as the MP could go away once EE takes over.
|
|
|
|
Module *Mod = MP->getModule();
|
|
|
|
|
2005-12-16 05:00:21 +00:00
|
|
|
// If we are supposed to override the target triple, do so now.
|
|
|
|
if (!TargetTriple.empty())
|
2007-03-03 18:21:44 +00:00
|
|
|
Mod->setTargetTriple(TargetTriple);
|
2005-12-16 05:00:21 +00:00
|
|
|
|
2007-03-03 18:21:44 +00:00
|
|
|
EE = ExecutionEngine::create(MP, ForceInterpreter, &ErrorMsg);
|
|
|
|
if (!EE && !ErrorMsg.empty()) {
|
|
|
|
std::cerr << argv[0] << ":error creating EE: " << ErrorMsg << "\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
|
2006-03-08 18:43:36 +00:00
|
|
|
// If the user specifically requested an argv[0] to pass into the program,
|
|
|
|
// do it now.
|
2004-12-30 05:36:08 +00:00
|
|
|
if (!FakeArgv0.empty()) {
|
|
|
|
InputFile = FakeArgv0;
|
|
|
|
} else {
|
|
|
|
// Otherwise, if there is a .bc suffix on the executable strip it off, it
|
|
|
|
// might confuse the program.
|
|
|
|
if (InputFile.rfind(".bc") == InputFile.length() - 3)
|
|
|
|
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.
|
|
|
|
//
|
2007-03-03 18:21:44 +00:00
|
|
|
Function *Fn = Mod->getFunction("main");
|
2005-12-02 19:00:22 +00:00
|
|
|
if (!Fn) {
|
2004-12-30 05:36:08 +00:00
|
|
|
std::cerr << "'main' function not found in module.\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-03-06 03:12:55 +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::VoidTy,
|
|
|
|
Type::Int32Ty, NULL);
|
2007-04-27 17:02:33 +00:00
|
|
|
|
|
|
|
// Reset errno to zero on entry to main.
|
|
|
|
errno = 0;
|
|
|
|
|
2006-03-08 18:43:36 +00:00
|
|
|
// Run static constructors.
|
|
|
|
EE->runStaticConstructorsDestructors(false);
|
|
|
|
|
|
|
|
// Run main.
|
2004-12-30 05:36:08 +00:00
|
|
|
int Result = EE->runFunctionAsMain(Fn, InputArgv, envp);
|
|
|
|
|
2006-03-08 18:43:36 +00:00
|
|
|
// Run static destructors.
|
|
|
|
EE->runStaticConstructorsDestructors(true);
|
|
|
|
|
2007-03-06 03:12:55 +00:00
|
|
|
// If the program didn't call exit explicitly, we should call it now.
|
|
|
|
// This ensures that any atexit handlers get called correctly.
|
2007-01-08 07:36:34 +00:00
|
|
|
if (Function *ExitF = dyn_cast<Function>(Exit)) {
|
|
|
|
std::vector<GenericValue> Args;
|
|
|
|
GenericValue ResultGV;
|
2007-03-06 03:12:55 +00:00
|
|
|
ResultGV.IntVal = APInt(32, Result);
|
2007-01-08 07:36:34 +00:00
|
|
|
Args.push_back(ResultGV);
|
|
|
|
EE->runFunction(ExitF, Args);
|
|
|
|
std::cerr << "ERROR: exit(" << Result << ") returned!\n";
|
|
|
|
abort();
|
|
|
|
} else {
|
|
|
|
std::cerr << "ERROR: exit defined with wrong prototype!\n";
|
|
|
|
abort();
|
|
|
|
}
|
2004-12-30 05:36:08 +00:00
|
|
|
} catch (const std::string& msg) {
|
|
|
|
std::cerr << argv[0] << ": " << msg << "\n";
|
|
|
|
} catch (...) {
|
|
|
|
std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
|
2003-12-26 06:14:47 +00:00
|
|
|
}
|
|
|
|
abort();
|
2001-08-23 17:05:04 +00:00
|
|
|
}
|