blob: 74ea3dd415424077b19f2535f64b2aa092d73c8c [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"
28#include "llvm/System/Process.h"
29#include "llvm/System/Signals.h"
30#include <iostream>
31#include <cerrno>
32using namespace llvm;
33
34namespace {
35 cl::opt<std::string>
36 InputFile(cl::desc("<input bitcode>"), cl::Positional, cl::init("-"));
37
38 cl::list<std::string>
39 InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
40
41 cl::opt<bool> ForceInterpreter("force-interpreter",
42 cl::desc("Force interpretation: disable JIT"),
43 cl::init(false));
Evan Cheng209e6d22008-08-08 08:12:06 +000044
45 cl::opt<bool> Fast("fast",
46 cl::desc("Generate code quickly, "
47 "potentially sacrificing code quality"),
48 cl::init(false));
49
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050 cl::opt<std::string>
51 TargetTriple("mtriple", cl::desc("Override target triple for module"));
52
53 cl::opt<std::string>
54 FakeArgv0("fake-argv0",
55 cl::desc("Override the 'argv[0]' value passed into the executing"
56 " program"), cl::value_desc("executable"));
57
58 cl::opt<bool>
59 DisableCoreFiles("disable-core-files", cl::Hidden,
60 cl::desc("Disable emission of core files if possible"));
Evan Chengdb7d42d2008-04-22 06:51:41 +000061
62 cl::opt<bool>
Evan Cheng15e26e42008-05-21 18:20:21 +000063 NoLazyCompilation("disable-lazy-compilation",
Evan Chengdb7d42d2008-04-22 06:51:41 +000064 cl::desc("Disable JIT lazy compilation"),
65 cl::init(false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066}
67
68static ExecutionEngine *EE = 0;
69
70static void do_shutdown() {
71 delete EE;
72 llvm_shutdown();
73}
74
75//===----------------------------------------------------------------------===//
76// main Driver function
77//
78int main(int argc, char **argv, char * const *envp) {
79 atexit(do_shutdown); // Call llvm_shutdown() on exit.
80 cl::ParseCommandLineOptions(argc, argv,
Dan Gohman6099df82007-10-08 15:45:12 +000081 "llvm interpreter & dynamic compiler\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082 sys::PrintStackTraceOnErrorSignal();
83
84 // If the user doesn't want core files, disable them.
85 if (DisableCoreFiles)
86 sys::Process::PreventCoreFiles();
87
88 // Load the bitcode...
89 std::string ErrorMsg;
Evan Chengdb7d42d2008-04-22 06:51:41 +000090 ModuleProvider *MP = NULL;
91 if (MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(InputFile,&ErrorMsg)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092 MP = getBitcodeModuleProvider(Buffer, &ErrorMsg);
93 if (!MP) delete Buffer;
94 }
95
96 if (!MP) {
97 std::cerr << argv[0] << ": error loading program '" << InputFile << "': "
98 << ErrorMsg << "\n";
99 exit(1);
100 }
101
102 // Get the module as the MP could go away once EE takes over.
Evan Chengdb7d42d2008-04-22 06:51:41 +0000103 Module *Mod = NoLazyCompilation
104 ? MP->materializeModule(&ErrorMsg) : MP->getModule();
105 if (!Mod) {
106 std::cerr << argv[0] << ": bitcode didn't read correctly.\n";
107 std::cerr << "Reason: " << ErrorMsg << "\n";
108 exit(1);
109 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110
111 // If we are supposed to override the target triple, do so now.
112 if (!TargetTriple.empty())
113 Mod->setTargetTriple(TargetTriple);
Evan Chengdb7d42d2008-04-22 06:51:41 +0000114
Evan Cheng209e6d22008-08-08 08:12:06 +0000115 EE = ExecutionEngine::create(MP, ForceInterpreter, &ErrorMsg, Fast);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116 if (!EE && !ErrorMsg.empty()) {
117 std::cerr << argv[0] << ":error creating EE: " << ErrorMsg << "\n";
118 exit(1);
119 }
120
Evan Chengdb7d42d2008-04-22 06:51:41 +0000121 if (NoLazyCompilation)
122 EE->DisableLazyCompilation();
123
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 // If the user specifically requested an argv[0] to pass into the program,
125 // do it now.
126 if (!FakeArgv0.empty()) {
127 InputFile = FakeArgv0;
128 } else {
129 // Otherwise, if there is a .bc suffix on the executable strip it off, it
130 // might confuse the program.
131 if (InputFile.rfind(".bc") == InputFile.length() - 3)
132 InputFile.erase(InputFile.length() - 3);
133 }
134
135 // Add the module's name to the start of the vector of arguments to main().
136 InputArgv.insert(InputArgv.begin(), InputFile);
137
138 // Call the main function from M as if its signature were:
139 // int main (int argc, char **argv, const char **envp)
140 // using the contents of Args to determine argc & argv, and the contents of
141 // EnvVars to determine envp.
142 //
Evan Chengdb7d42d2008-04-22 06:51:41 +0000143 Function *MainFn = Mod->getFunction("main");
144 if (!MainFn) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 std::cerr << "'main' function not found in module.\n";
146 return -1;
147 }
148
149 // If the program doesn't explicitly call exit, we will need the Exit
150 // function later on to make an explicit call, so get the function now.
151 Constant *Exit = Mod->getOrInsertFunction("exit", Type::VoidTy,
152 Type::Int32Ty, NULL);
153
154 // Reset errno to zero on entry to main.
155 errno = 0;
156
157 // Run static constructors.
158 EE->runStaticConstructorsDestructors(false);
Evan Chengdb7d42d2008-04-22 06:51:41 +0000159
160 if (NoLazyCompilation) {
161 for (Module::iterator I = Mod->begin(), E = Mod->end(); I != E; ++I) {
162 Function *Fn = &*I;
163 if (Fn != MainFn && !Fn->isDeclaration())
164 EE->getPointerToFunction(Fn);
165 }
166 }
167
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 // Run main.
Evan Chengdb7d42d2008-04-22 06:51:41 +0000169 int Result = EE->runFunctionAsMain(MainFn, InputArgv, envp);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170
171 // Run static destructors.
172 EE->runStaticConstructorsDestructors(true);
173
174 // If the program didn't call exit explicitly, we should call it now.
175 // This ensures that any atexit handlers get called correctly.
176 if (Function *ExitF = dyn_cast<Function>(Exit)) {
177 std::vector<GenericValue> Args;
178 GenericValue ResultGV;
179 ResultGV.IntVal = APInt(32, Result);
180 Args.push_back(ResultGV);
181 EE->runFunction(ExitF, Args);
182 std::cerr << "ERROR: exit(" << Result << ") returned!\n";
183 abort();
184 } else {
185 std::cerr << "ERROR: exit defined with wrong prototype!\n";
186 abort();
187 }
188}