Jim Grosbach | 1cb19a4 | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 1 | //===-- 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 Grosbach | 5acfa9f | 2011-03-29 21:03:05 +0000 | [diff] [blame] | 16 | #include "llvm/ExecutionEngine/JITMemoryManager.h" |
Jim Grosbach | 6e56331 | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 17 | #include "llvm/ExecutionEngine/RuntimeDyld.h" |
Jim Grosbach | 1cb19a4 | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 18 | #include "llvm/Object/MachOObject.h" |
| 19 | #include "llvm/Support/CommandLine.h" |
| 20 | #include "llvm/Support/ManagedStatic.h" |
| 21 | #include "llvm/Support/Memory.h" |
| 22 | #include "llvm/Support/MemoryBuffer.h" |
| 23 | #include "llvm/Support/raw_ostream.h" |
| 24 | #include "llvm/Support/system_error.h" |
| 25 | using namespace llvm; |
| 26 | using namespace llvm::object; |
| 27 | |
| 28 | static cl::opt<std::string> |
| 29 | InputFile(cl::Positional, cl::desc("<input file>"), cl::init("-")); |
| 30 | |
| 31 | enum ActionType { |
| 32 | AC_Execute |
| 33 | }; |
| 34 | |
| 35 | static cl::opt<ActionType> |
| 36 | Action(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 | |
| 42 | /* *** */ |
| 43 | |
| 44 | static const char *ProgramName; |
| 45 | |
| 46 | static void Message(const char *Type, const Twine &Msg) { |
| 47 | errs() << ProgramName << ": " << Type << ": " << Msg << "\n"; |
| 48 | } |
| 49 | |
| 50 | static int Error(const Twine &Msg) { |
| 51 | Message("error", Msg); |
| 52 | return 1; |
| 53 | } |
| 54 | |
| 55 | /* *** */ |
| 56 | |
Jim Grosbach | 82c25b4 | 2011-03-18 17:24:21 +0000 | [diff] [blame] | 57 | static int executeInput() { |
Jim Grosbach | 1cb19a4 | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 58 | // Load the input memory buffer. |
| 59 | OwningPtr<MemoryBuffer> InputBuffer; |
| 60 | if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFile, InputBuffer)) |
| 61 | return Error("unable to read input: '" + ec.message() + "'"); |
| 62 | |
Jim Grosbach | 6e56331 | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 63 | // Instantiate a dynamic linker. |
Jim Grosbach | 5acfa9f | 2011-03-29 21:03:05 +0000 | [diff] [blame] | 64 | RuntimeDyld Dyld(JITMemoryManager::CreateDefaultMemManager()); |
Jim Grosbach | 1cb19a4 | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 65 | |
Jim Grosbach | 6e56331 | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 66 | // Load the object file into it. |
Jim Grosbach | b3eecaf | 2011-03-22 18:19:42 +0000 | [diff] [blame] | 67 | if (Dyld.loadObject(InputBuffer.take())) { |
| 68 | return Error(Dyld.getErrorString()); |
| 69 | } |
Jim Grosbach | 1cb19a4 | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 70 | |
| 71 | // Get the address of "_main". |
Jim Grosbach | 6e56331 | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 72 | void *MainAddress = Dyld.getSymbolAddress("_main"); |
| 73 | if (MainAddress == 0) |
Jim Grosbach | 1cb19a4 | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 74 | return Error("no definition for '_main'"); |
| 75 | |
| 76 | // Invalidate the instruction cache. |
Jim Grosbach | 6e56331 | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 77 | sys::MemoryBlock Data = Dyld.getMemoryBlock(); |
Jim Grosbach | 1cb19a4 | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 78 | sys::Memory::InvalidateInstructionCache(Data.base(), Data.size()); |
| 79 | |
| 80 | // Make sure the memory is executable. |
Jim Grosbach | 6e56331 | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 81 | std::string ErrorStr; |
Jim Grosbach | 1cb19a4 | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 82 | if (!sys::Memory::setExecutable(Data, &ErrorStr)) |
| 83 | return Error("unable to mark function executable: '" + ErrorStr + "'"); |
| 84 | |
| 85 | // Dispatch to _main(). |
Jim Grosbach | 1cb19a4 | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 86 | errs() << "loaded '_main' at: " << MainAddress << "\n"; |
| 87 | |
| 88 | int (*Main)(int, const char**) = |
| 89 | (int(*)(int,const char**)) uintptr_t(MainAddress); |
| 90 | const char **Argv = new const char*[2]; |
| 91 | Argv[0] = InputFile.c_str(); |
| 92 | Argv[1] = 0; |
| 93 | return Main(1, Argv); |
| 94 | } |
| 95 | |
| 96 | int main(int argc, char **argv) { |
| 97 | ProgramName = argv[0]; |
| 98 | llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. |
| 99 | |
| 100 | cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n"); |
| 101 | |
| 102 | switch (Action) { |
| 103 | default: |
| 104 | case AC_Execute: |
Jim Grosbach | 82c25b4 | 2011-03-18 17:24:21 +0000 | [diff] [blame] | 105 | return executeInput(); |
Jim Grosbach | 1cb19a4 | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | return 0; |
| 109 | } |