blob: 812e52c8a963dd23a6ba623a23226aa29993a738 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- lli.cpp - LLVM Interpreter / Dynamic compiler ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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/Bitcode/ReaderWriter.h"
20#include "llvm/CodeGen/LinkAllCodegenComponents.h"
21#include "llvm/ExecutionEngine/JIT.h"
22#include "llvm/ExecutionEngine/Interpreter.h"
23#include "llvm/ExecutionEngine/GenericValue.h"
24#include "llvm/Support/CommandLine.h"
25#include "llvm/Support/ManagedStatic.h"
26#include "llvm/Support/MemoryBuffer.h"
27#include "llvm/Support/PluginLoader.h"
Chris Lattnere6012df2009-03-06 05:34:10 +000028#include "llvm/Support/PrettyStackTrace.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029#include "llvm/System/Process.h"
30#include "llvm/System/Signals.h"
31#include <iostream>
32#include <cerrno>
33using namespace llvm;
34
35namespace {
36 cl::opt<std::string>
37 InputFile(cl::desc("<input bitcode>"), cl::Positional, cl::init("-"));
38
39 cl::list<std::string>
40 InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
41
42 cl::opt<bool> ForceInterpreter("force-interpreter",
43 cl::desc("Force interpretation: disable JIT"),
44 cl::init(false));
Evan Cheng209e6d22008-08-08 08:12:06 +000045
46 cl::opt<bool> Fast("fast",
47 cl::desc("Generate code quickly, "
48 "potentially sacrificing code quality"),
49 cl::init(false));
50
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051 cl::opt<std::string>
52 TargetTriple("mtriple", cl::desc("Override target triple for module"));
Evan Chengd2294242008-11-05 23:21:52 +000053
54 cl::opt<std::string>
55 EntryFunc("entry-function",
56 cl::desc("Specify the entry function (default = 'main') "
57 "of the executable"),
58 cl::value_desc("function"),
59 cl::init("main"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060
61 cl::opt<std::string>
62 FakeArgv0("fake-argv0",
63 cl::desc("Override the 'argv[0]' value passed into the executing"
64 " program"), cl::value_desc("executable"));
65
66 cl::opt<bool>
67 DisableCoreFiles("disable-core-files", cl::Hidden,
68 cl::desc("Disable emission of core files if possible"));
Evan Chengdb7d42d2008-04-22 06:51:41 +000069
70 cl::opt<bool>
Evan Cheng15e26e42008-05-21 18:20:21 +000071 NoLazyCompilation("disable-lazy-compilation",
Evan Chengdb7d42d2008-04-22 06:51:41 +000072 cl::desc("Disable JIT lazy compilation"),
73 cl::init(false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074}
75
76static ExecutionEngine *EE = 0;
77
78static void do_shutdown() {
79 delete EE;
80 llvm_shutdown();
81}
82
83//===----------------------------------------------------------------------===//
84// main Driver function
85//
86int main(int argc, char **argv, char * const *envp) {
Chris Lattnere6012df2009-03-06 05:34:10 +000087 sys::PrintStackTraceOnErrorSignal();
88 PrettyStackTraceProgram X(argc, argv);
89
Dan Gohmanf17a25c2007-07-18 16:29:46 +000090 atexit(do_shutdown); // Call llvm_shutdown() on exit.
91 cl::ParseCommandLineOptions(argc, argv,
Dan Gohman6099df82007-10-08 15:45:12 +000092 "llvm interpreter & dynamic compiler\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093
94 // If the user doesn't want core files, disable them.
95 if (DisableCoreFiles)
96 sys::Process::PreventCoreFiles();
97
98 // Load the bitcode...
99 std::string ErrorMsg;
Evan Chengdb7d42d2008-04-22 06:51:41 +0000100 ModuleProvider *MP = NULL;
101 if (MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(InputFile,&ErrorMsg)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102 MP = getBitcodeModuleProvider(Buffer, &ErrorMsg);
103 if (!MP) delete Buffer;
104 }
105
106 if (!MP) {
107 std::cerr << argv[0] << ": error loading program '" << InputFile << "': "
108 << ErrorMsg << "\n";
109 exit(1);
110 }
111
112 // Get the module as the MP could go away once EE takes over.
Evan Chengdb7d42d2008-04-22 06:51:41 +0000113 Module *Mod = NoLazyCompilation
114 ? MP->materializeModule(&ErrorMsg) : MP->getModule();
115 if (!Mod) {
116 std::cerr << argv[0] << ": bitcode didn't read correctly.\n";
117 std::cerr << "Reason: " << ErrorMsg << "\n";
118 exit(1);
119 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120
121 // If we are supposed to override the target triple, do so now.
122 if (!TargetTriple.empty())
123 Mod->setTargetTriple(TargetTriple);
Evan Chengdb7d42d2008-04-22 06:51:41 +0000124
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000125 EE = ExecutionEngine::create(MP, ForceInterpreter, &ErrorMsg,
126 Fast ?
127 CodeGenOpt::None : CodeGenOpt::Aggressive);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 if (!EE && !ErrorMsg.empty()) {
129 std::cerr << argv[0] << ":error creating EE: " << ErrorMsg << "\n";
130 exit(1);
131 }
132
Evan Chengdb7d42d2008-04-22 06:51:41 +0000133 if (NoLazyCompilation)
134 EE->DisableLazyCompilation();
135
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 // If the user specifically requested an argv[0] to pass into the program,
137 // do it now.
138 if (!FakeArgv0.empty()) {
139 InputFile = FakeArgv0;
140 } else {
141 // Otherwise, if there is a .bc suffix on the executable strip it off, it
142 // might confuse the program.
143 if (InputFile.rfind(".bc") == InputFile.length() - 3)
144 InputFile.erase(InputFile.length() - 3);
145 }
146
147 // Add the module's name to the start of the vector of arguments to main().
148 InputArgv.insert(InputArgv.begin(), InputFile);
149
150 // Call the main function from M as if its signature were:
151 // int main (int argc, char **argv, const char **envp)
152 // using the contents of Args to determine argc & argv, and the contents of
153 // EnvVars to determine envp.
154 //
Evan Chengd2294242008-11-05 23:21:52 +0000155 Function *EntryFn = Mod->getFunction(EntryFunc);
156 if (!EntryFn) {
157 std::cerr << '\'' << EntryFunc << "\' function not found in module.\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 return -1;
159 }
160
161 // If the program doesn't explicitly call exit, we will need the Exit
162 // function later on to make an explicit call, so get the function now.
163 Constant *Exit = Mod->getOrInsertFunction("exit", Type::VoidTy,
164 Type::Int32Ty, NULL);
165
166 // Reset errno to zero on entry to main.
167 errno = 0;
168
169 // Run static constructors.
170 EE->runStaticConstructorsDestructors(false);
Evan Chengdb7d42d2008-04-22 06:51:41 +0000171
172 if (NoLazyCompilation) {
173 for (Module::iterator I = Mod->begin(), E = Mod->end(); I != E; ++I) {
174 Function *Fn = &*I;
Evan Chengd2294242008-11-05 23:21:52 +0000175 if (Fn != EntryFn && !Fn->isDeclaration())
Evan Chengdb7d42d2008-04-22 06:51:41 +0000176 EE->getPointerToFunction(Fn);
177 }
178 }
179
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 // Run main.
Evan Chengd2294242008-11-05 23:21:52 +0000181 int Result = EE->runFunctionAsMain(EntryFn, InputArgv, envp);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182
183 // Run static destructors.
184 EE->runStaticConstructorsDestructors(true);
185
186 // If the program didn't call exit explicitly, we should call it now.
187 // This ensures that any atexit handlers get called correctly.
188 if (Function *ExitF = dyn_cast<Function>(Exit)) {
189 std::vector<GenericValue> Args;
190 GenericValue ResultGV;
191 ResultGV.IntVal = APInt(32, Result);
192 Args.push_back(ResultGV);
193 EE->runFunction(ExitF, Args);
194 std::cerr << "ERROR: exit(" << Result << ") returned!\n";
195 abort();
196 } else {
197 std::cerr << "ERROR: exit defined with wrong prototype!\n";
198 abort();
199 }
200}