blob: 0065880bcbb50eedd88355bc730d5837877679cb [file] [log] [blame]
Jim Grosbach1cb19a42011-03-18 17:11:39 +00001//===-- llvm-rtdyld.cpp - MCJIT Testing Tool ------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This is a testing tool for use with the MC-JIT LLVM components.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/ADT/StringMap.h"
15#include "llvm/ADT/OwningPtr.h"
Jim Grosbach6e563312011-03-21 22:15:52 +000016#include "llvm/ExecutionEngine/RuntimeDyld.h"
Jim Grosbach1cb19a42011-03-18 17:11:39 +000017#include "llvm/Object/MachOObject.h"
18#include "llvm/Support/CommandLine.h"
19#include "llvm/Support/ManagedStatic.h"
20#include "llvm/Support/Memory.h"
21#include "llvm/Support/MemoryBuffer.h"
22#include "llvm/Support/raw_ostream.h"
23#include "llvm/Support/system_error.h"
24using namespace llvm;
25using namespace llvm::object;
26
Jim Grosbach4f9f41f2011-04-13 15:49:40 +000027static cl::list<std::string>
28InputFileList(cl::Positional, cl::ZeroOrMore,
29 cl::desc("<input file>"));
Jim Grosbach1cb19a42011-03-18 17:11:39 +000030
31enum ActionType {
32 AC_Execute
33};
34
35static cl::opt<ActionType>
36Action(cl::desc("Action to perform:"),
37 cl::init(AC_Execute),
38 cl::values(clEnumValN(AC_Execute, "execute",
39 "Load, link, and execute the inputs."),
40 clEnumValEnd));
41
Jim Grosbach6b32e7e2011-04-13 15:38:30 +000042static cl::opt<std::string>
43EntryPoint("entry",
44 cl::desc("Function to call as entry point."),
45 cl::init("_main"));
46
Jim Grosbach1cb19a42011-03-18 17:11:39 +000047/* *** */
48
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000049// A trivial memory manager that doesn't do anything fancy, just uses the
50// support library allocation routines directly.
51class TrivialMemoryManager : public RTDyldMemoryManager {
52public:
Jim Grosbach7cbf92d2011-04-12 00:23:32 +000053 SmallVector<sys::MemoryBlock, 16> FunctionMemory;
54
Jim Grosbachc41ab782011-04-06 01:11:05 +000055 uint8_t *startFunctionBody(const char *Name, uintptr_t &Size);
56 void endFunctionBody(const char *Name, uint8_t *FunctionStart,
Jim Grosbach7cbf92d2011-04-12 00:23:32 +000057 uint8_t *FunctionEnd);
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000058};
59
Jim Grosbachc41ab782011-04-06 01:11:05 +000060uint8_t *TrivialMemoryManager::startFunctionBody(const char *Name,
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000061 uintptr_t &Size) {
Jim Grosbachc41ab782011-04-06 01:11:05 +000062 return (uint8_t*)sys::Memory::AllocateRWX(Size, 0, 0).base();
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000063}
64
Jim Grosbach7cbf92d2011-04-12 00:23:32 +000065void TrivialMemoryManager::endFunctionBody(const char *Name,
66 uint8_t *FunctionStart,
67 uint8_t *FunctionEnd) {
68 uintptr_t Size = FunctionEnd - FunctionStart + 1;
69 FunctionMemory.push_back(sys::MemoryBlock(FunctionStart, Size));
70}
71
Jim Grosbach1cb19a42011-03-18 17:11:39 +000072static const char *ProgramName;
73
74static void Message(const char *Type, const Twine &Msg) {
75 errs() << ProgramName << ": " << Type << ": " << Msg << "\n";
76}
77
78static int Error(const Twine &Msg) {
79 Message("error", Msg);
80 return 1;
81}
82
83/* *** */
84
Jim Grosbach82c25b42011-03-18 17:24:21 +000085static int executeInput() {
Jim Grosbach6e563312011-03-21 22:15:52 +000086 // Instantiate a dynamic linker.
Jim Grosbach7cbf92d2011-04-12 00:23:32 +000087 TrivialMemoryManager *MemMgr = new TrivialMemoryManager;
88 RuntimeDyld Dyld(MemMgr);
Jim Grosbach1cb19a42011-03-18 17:11:39 +000089
Jim Grosbach4f9f41f2011-04-13 15:49:40 +000090 // If we don't have any input files, read from stdin.
91 if (!InputFileList.size())
92 InputFileList.push_back("-");
93 for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) {
94 // Load the input memory buffer.
95 OwningPtr<MemoryBuffer> InputBuffer;
96 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFileList[i],
97 InputBuffer))
98 return Error("unable to read input: '" + ec.message() + "'");
99
100 // Load the object file into it.
101 if (Dyld.loadObject(InputBuffer.take())) {
102 return Error(Dyld.getErrorString());
103 }
Jim Grosbachb3eecaf2011-03-22 18:19:42 +0000104 }
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000105
Jim Grosbachf8c1c842011-04-12 21:20:41 +0000106 // Resolve all the relocations we can.
107 Dyld.resolveRelocations();
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000108
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000109 // FIXME: Error out if there are unresolved relocations.
110
Jim Grosbach6b32e7e2011-04-13 15:38:30 +0000111 // Get the address of the entry point (_main by default).
112 void *MainAddress = Dyld.getSymbolAddress(EntryPoint);
Jim Grosbach6e563312011-03-21 22:15:52 +0000113 if (MainAddress == 0)
Jim Grosbach6b32e7e2011-04-13 15:38:30 +0000114 return Error("no definition for '" + EntryPoint + "'");
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000115
Jim Grosbach7cbf92d2011-04-12 00:23:32 +0000116 // Invalidate the instruction cache for each loaded function.
117 for (unsigned i = 0, e = MemMgr->FunctionMemory.size(); i != e; ++i) {
118 sys::MemoryBlock &Data = MemMgr->FunctionMemory[i];
119 // Make sure the memory is executable.
120 std::string ErrorStr;
121 sys::Memory::InvalidateInstructionCache(Data.base(), Data.size());
122 if (!sys::Memory::setExecutable(Data, &ErrorStr))
123 return Error("unable to mark function executable: '" + ErrorStr + "'");
124 }
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000125
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000126 // Dispatch to _main().
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000127 errs() << "loaded '" << EntryPoint << "' at: " << (void*)MainAddress << "\n";
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000128
129 int (*Main)(int, const char**) =
130 (int(*)(int,const char**)) uintptr_t(MainAddress);
131 const char **Argv = new const char*[2];
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000132 // Use the name of the first input object module as argv[0] for the target.
133 Argv[0] = InputFileList[0].c_str();
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000134 Argv[1] = 0;
135 return Main(1, Argv);
136}
137
138int main(int argc, char **argv) {
139 ProgramName = argv[0];
140 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
141
142 cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n");
143
144 switch (Action) {
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000145 case AC_Execute:
Jim Grosbach82c25b42011-03-18 17:24:21 +0000146 return executeInput();
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000147 }
148
149 return 0;
150}