73dfa11e5dd0477d129a48a9cbed7d471ed9c4c4
[oota-llvm.git] / tools / lli / lli.cpp
1 //===- lli.cpp - LLVM Interpreter / Dynamic compiler ----------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This utility provides a simple wrapper around the LLVM Execution Engines,
11 // which allow the direct execution of LLVM programs through a Just-In-Time
12 // compiler, or through an intepreter if no JIT is available for this platform.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "llvm/Module.h"
17 #include "llvm/ModuleProvider.h"
18 #include "llvm/Type.h"
19 #include "llvm/Bytecode/Reader.h"
20 #include "llvm/ExecutionEngine/ExecutionEngine.h"
21 #include "llvm/ExecutionEngine/GenericValue.h"
22 #include "llvm/Support/CommandLine.h"
23 #include "llvm/Support/PluginLoader.h"
24 #include "llvm/System/Signals.h"
25 #include <iostream>
26
27 using namespace llvm;
28
29 namespace {
30   cl::opt<std::string>
31   InputFile(cl::desc("<input bytecode>"), cl::Positional, cl::init("-"));
32
33   cl::list<std::string>
34   InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
35
36   cl::opt<bool> ForceInterpreter("force-interpreter",
37                                  cl::desc("Force interpretation: disable JIT"),
38                                  cl::init(false));
39   cl::opt<std::string>
40   TargetTriple("mtriple", cl::desc("Override target triple for module"));
41   
42   cl::opt<std::string>
43   FakeArgv0("fake-argv0",
44             cl::desc("Override the 'argv[0]' value passed into the executing"
45                      " program"), cl::value_desc("executable"));
46 }
47
48 //===----------------------------------------------------------------------===//
49 // main Driver function
50 //
51 int main(int argc, char **argv, char * const *envp) {
52   try {
53     cl::ParseCommandLineOptions(argc, argv,
54                                 " llvm interpreter & dynamic compiler\n");
55     sys::PrintStackTraceOnErrorSignal();
56
57     // Load the bytecode...
58     std::string ErrorMsg;
59     ModuleProvider *MP = 0;
60     try {
61       MP = getBytecodeModuleProvider(InputFile);
62     } catch (std::string &err) {
63       std::cerr << "Error loading program '" << InputFile << "': " << err << "\n";
64       exit(1);
65     }
66
67     // If we are supposed to override the target triple, do so now.
68     if (!TargetTriple.empty())
69       MP->getModule()->setTargetTriple(TargetTriple);
70     
71     ExecutionEngine *EE = ExecutionEngine::create(MP, ForceInterpreter);
72     assert(EE && "Couldn't create an ExecutionEngine, not even an interpreter?");
73
74     // If the user specifically requested an argv[0] to pass into the program, do
75     // it now.
76     if (!FakeArgv0.empty()) {
77       InputFile = FakeArgv0;
78     } else {
79       // Otherwise, if there is a .bc suffix on the executable strip it off, it
80       // might confuse the program.
81       if (InputFile.rfind(".bc") == InputFile.length() - 3)
82         InputFile.erase(InputFile.length() - 3);
83     }
84
85     // Add the module's name to the start of the vector of arguments to main().
86     InputArgv.insert(InputArgv.begin(), InputFile);
87
88     // Call the main function from M as if its signature were:
89     //   int main (int argc, char **argv, const char **envp)
90     // using the contents of Args to determine argc & argv, and the contents of
91     // EnvVars to determine envp.
92     //
93     Function *Fn = MP->getModule()->getMainFunction();
94     if (!Fn) {
95       std::cerr << "'main' function not found in module.\n";
96       return -1;
97     }
98
99     // Run main...
100     int Result = EE->runFunctionAsMain(Fn, InputArgv, envp);
101
102     // If the program didn't explicitly call exit, call exit now, for the program.
103     // This ensures that any atexit handlers get called correctly.
104     Function *Exit = MP->getModule()->getOrInsertFunction("exit", Type::VoidTy,
105                                                           Type::IntTy,
106                                                           (Type *)0);
107
108     std::vector<GenericValue> Args;
109     GenericValue ResultGV;
110     ResultGV.IntVal = Result;
111     Args.push_back(ResultGV);
112     EE->runFunction(Exit, Args);
113
114     std::cerr << "ERROR: exit(" << Result << ") returned!\n";
115     abort();
116   } catch (const std::string& msg) {
117     std::cerr << argv[0] << ": " << msg << "\n";
118   } catch (...) {
119     std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
120   }
121   abort();
122 }