blob: f061bea158a3f90d70bf88ed4ac728440989e850 [file] [log] [blame]
Chris Lattnerfe11a972002-12-23 23:59:41 +00001//===- lli.cpp - LLVM Interpreter / Dynamic compiler ----------------------===//
John Criswell7c0e0222003-10-20 17:47:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner92101ac2001-08-23 17:05:04 +00009//
Chris Lattner7efea1d2003-12-26 05:07:35 +000010// 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.
Chris Lattner92101ac2001-08-23 17:05:04 +000013//
14//===----------------------------------------------------------------------===//
15
Chris Lattnerfd131292003-09-05 20:08:15 +000016#include "llvm/DerivedTypes.h"
17#include "llvm/Module.h"
Misha Brukmanc4fb6fd2003-10-14 21:39:53 +000018#include "llvm/ModuleProvider.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000019#include "llvm/Bytecode/Reader.h"
Brian Gaeked1cab3e2003-09-05 19:42:34 +000020#include "llvm/ExecutionEngine/ExecutionEngine.h"
21#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattnerfe11a972002-12-23 23:59:41 +000022#include "llvm/Target/TargetMachineImpls.h"
Brian Gaeke70975ee2003-09-05 18:42:01 +000023#include "llvm/Target/TargetData.h"
Chris Lattnerfd131292003-09-05 20:08:15 +000024#include "Support/CommandLine.h"
25#include "Support/Debug.h"
Misha Brukmanc4fb6fd2003-10-14 21:39:53 +000026#include "Support/SystemUtils.h"
Chris Lattner92101ac2001-08-23 17:05:04 +000027
Brian Gaeked0fde302003-11-11 22:41:34 +000028using namespace llvm;
29
Chris Lattnerfe11a972002-12-23 23:59:41 +000030namespace {
31 cl::opt<std::string>
32 InputFile(cl::desc("<input bytecode>"), cl::Positional, cl::init("-"));
Chris Lattner5ff62e92002-07-22 02:10:13 +000033
Chris Lattnerfe11a972002-12-23 23:59:41 +000034 cl::list<std::string>
35 InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
Chris Lattner5ff62e92002-07-22 02:10:13 +000036
Chris Lattnerfe11a972002-12-23 23:59:41 +000037 cl::opt<bool> ForceInterpreter("force-interpreter",
Misha Brukman3d8a54d2003-09-25 18:10:34 +000038 cl::desc("Force interpretation: disable JIT"),
39 cl::init(false));
Chris Lattnere69671d2003-10-28 22:51:44 +000040
41 cl::opt<std::string>
42 FakeArgv0("fake-argv0",
43 cl::desc("Override the 'argv[0]' value passed into the executing"
44 " program"), cl::value_desc("executable"));
Chris Lattnerfe11a972002-12-23 23:59:41 +000045}
Chris Lattner43e3f7c2001-10-27 08:43:52 +000046
Misha Brukmanc4fb6fd2003-10-14 21:39:53 +000047static std::vector<std::string> makeStringVector(char * const *envp) {
Brian Gaeke70975ee2003-09-05 18:42:01 +000048 std::vector<std::string> rv;
49 for (unsigned i = 0; envp[i]; ++i)
Misha Brukman3d8a54d2003-09-25 18:10:34 +000050 rv.push_back(envp[i]);
Brian Gaeke70975ee2003-09-05 18:42:01 +000051 return rv;
52}
53
54static void *CreateArgv(ExecutionEngine *EE,
Misha Brukman3d8a54d2003-09-25 18:10:34 +000055 const std::vector<std::string> &InputArgv) {
Brian Gaeke70975ee2003-09-05 18:42:01 +000056 if (EE->getTargetData().getPointerSize() == 8) { // 64 bit target?
57 PointerTy *Result = new PointerTy[InputArgv.size()+1];
58 DEBUG(std::cerr << "ARGV = " << (void*)Result << "\n");
59
60 for (unsigned i = 0; i < InputArgv.size(); ++i) {
61 unsigned Size = InputArgv[i].size()+1;
62 char *Dest = new char[Size];
63 DEBUG(std::cerr << "ARGV[" << i << "] = " << (void*)Dest << "\n");
64
65 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
66 Dest[Size-1] = 0;
67
68 // Endian safe: Result[i] = (PointerTy)Dest;
69 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Result+i),
Misha Brukman3d8a54d2003-09-25 18:10:34 +000070 Type::LongTy);
Brian Gaeke70975ee2003-09-05 18:42:01 +000071 }
72 Result[InputArgv.size()] = 0;
73 return Result;
74 } else { // 32 bit target?
75 int *Result = new int[InputArgv.size()+1];
76 DEBUG(std::cerr << "ARGV = " << (void*)Result << "\n");
77
78 for (unsigned i = 0; i < InputArgv.size(); ++i) {
79 unsigned Size = InputArgv[i].size()+1;
80 char *Dest = new char[Size];
81 DEBUG(std::cerr << "ARGV[" << i << "] = " << (void*)Dest << "\n");
82
83 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
84 Dest[Size-1] = 0;
85
86 // Endian safe: Result[i] = (PointerTy)Dest;
87 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Result+i),
Misha Brukman3d8a54d2003-09-25 18:10:34 +000088 Type::IntTy);
Brian Gaeke70975ee2003-09-05 18:42:01 +000089 }
90 Result[InputArgv.size()] = 0; // null terminate it
91 return Result;
92 }
93}
94
Chris Lattner92101ac2001-08-23 17:05:04 +000095//===----------------------------------------------------------------------===//
Chris Lattner92101ac2001-08-23 17:05:04 +000096// main Driver function
97//
Misha Brukmanc4fb6fd2003-10-14 21:39:53 +000098int main(int argc, char **argv, char * const *envp) {
Chris Lattnerfe11a972002-12-23 23:59:41 +000099 cl::ParseCommandLineOptions(argc, argv,
Misha Brukman3d8a54d2003-09-25 18:10:34 +0000100 " llvm interpreter & dynamic compiler\n");
Chris Lattner92101ac2001-08-23 17:05:04 +0000101
Chris Lattnerfe11a972002-12-23 23:59:41 +0000102 // Load the bytecode...
Chris Lattnerd6840ac2002-12-24 00:39:16 +0000103 std::string ErrorMsg;
Misha Brukmanc4fb6fd2003-10-14 21:39:53 +0000104 ModuleProvider *MP = 0;
105 try {
106 MP = getBytecodeModuleProvider(InputFile);
107 } catch (std::string &err) {
Brian Gaeke3f6e7982003-12-12 00:47:19 +0000108 std::cerr << "Error loading program '" << InputFile << "': " << err << "\n";
Chris Lattnerfe11a972002-12-23 23:59:41 +0000109 exit(1);
Chris Lattner92101ac2001-08-23 17:05:04 +0000110 }
111
Brian Gaeke82d82772003-09-03 20:34:19 +0000112 ExecutionEngine *EE =
Brian Gaeke2f828c32003-10-24 20:00:17 +0000113 ExecutionEngine::create(MP, ForceInterpreter);
Misha Brukman3d8a54d2003-09-25 18:10:34 +0000114 assert(EE && "Couldn't create an ExecutionEngine, not even an interpreter?");
Chris Lattnerfe11a972002-12-23 23:59:41 +0000115
Chris Lattnere69671d2003-10-28 22:51:44 +0000116 // If the user specifically requested an argv[0] to pass into the program, do
117 // it now.
118 if (!FakeArgv0.empty()) {
119 InputFile = FakeArgv0;
120 } else {
121 // Otherwise, if there is a .bc suffix on the executable strip it off, it
122 // might confuse the program.
123 if (InputFile.rfind(".bc") == InputFile.length() - 3)
124 InputFile.erase(InputFile.length() - 3);
Brian Gaeke6ae73dc2003-05-23 20:28:07 +0000125 }
Chris Lattnere69671d2003-10-28 22:51:44 +0000126
127 // Add the module's name to the start of the vector of arguments to main().
Chris Lattnerfe11a972002-12-23 23:59:41 +0000128 InputArgv.insert(InputArgv.begin(), InputFile);
129
Chris Lattnerefec9662003-12-26 06:14:47 +0000130 // Call the main function from M as if its signature were:
131 // int main (int argc, char **argv, const char **envp)
132 // using the contents of Args to determine argc & argv, and the contents of
133 // EnvVars to determine envp.
134 //
135 Function *Fn = MP->getModule()->getMainFunction();
136 if (!Fn) {
137 std::cerr << "'main' function not found in module.\n";
138 return -1;
139 }
Chris Lattnerfe11a972002-12-23 23:59:41 +0000140
Chris Lattnerefec9662003-12-26 06:14:47 +0000141 std::vector<GenericValue> GVArgs;
142 GenericValue GVArgc;
143 GVArgc.IntVal = InputArgv.size();
144 GVArgs.push_back(GVArgc); // Arg #0 = argc.
145 GVArgs.push_back(PTOGV(CreateArgv(EE, InputArgv))); // Arg #1 = argv.
146 assert(((char **)GVTOP(GVArgs[1]))[0] && "argv[0] was null after CreateArgv");
147
148 std::vector<std::string> EnvVars = makeStringVector(envp);
149 GVArgs.push_back(PTOGV(CreateArgv(EE, EnvVars))); // Arg #2 = envp.
150 GenericValue Result = EE->runFunction(Fn, GVArgs);
151
152 // If the program didn't explicitly call exit, call exit now, for the program.
153 // This ensures that any atexit handlers get called correctly.
154 Function *Exit = MP->getModule()->getOrInsertFunction("exit", Type::VoidTy,
155 Type::IntTy, 0);
156
157 GVArgs.clear();
158 GVArgs.push_back(Result);
159 EE->runFunction(Exit, GVArgs);
160
161 std::cerr << "ERROR: exit(" << Result.IntVal << ") returned!\n";
162 abort();
Chris Lattner92101ac2001-08-23 17:05:04 +0000163}