blob: 8b71a4f364128f2c9c647661739f34f36003f076 [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
Jim Grosbach1cb19a42011-03-18 17:11:39 +000014#include "llvm/ADT/OwningPtr.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000015#include "llvm/ADT/StringMap.h"
Andrew Kayloree7c0d22013-01-25 22:50:58 +000016#include "llvm/DebugInfo/DIContext.h"
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000017#include "llvm/ExecutionEngine/ObjectBuffer.h"
Chandler Carruthf010c462012-12-04 10:44:52 +000018#include "llvm/ExecutionEngine/ObjectImage.h"
19#include "llvm/ExecutionEngine/RuntimeDyld.h"
Jim Grosbach1cb19a42011-03-18 17:11:39 +000020#include "llvm/Object/MachOObject.h"
21#include "llvm/Support/CommandLine.h"
22#include "llvm/Support/ManagedStatic.h"
23#include "llvm/Support/Memory.h"
24#include "llvm/Support/MemoryBuffer.h"
25#include "llvm/Support/raw_ostream.h"
26#include "llvm/Support/system_error.h"
27using namespace llvm;
28using namespace llvm::object;
29
Jim Grosbach4f9f41f2011-04-13 15:49:40 +000030static cl::list<std::string>
31InputFileList(cl::Positional, cl::ZeroOrMore,
32 cl::desc("<input file>"));
Jim Grosbach1cb19a42011-03-18 17:11:39 +000033
34enum ActionType {
Andrew Kayloree7c0d22013-01-25 22:50:58 +000035 AC_Execute,
36 AC_PrintLineInfo
Jim Grosbach1cb19a42011-03-18 17:11:39 +000037};
38
39static cl::opt<ActionType>
40Action(cl::desc("Action to perform:"),
41 cl::init(AC_Execute),
42 cl::values(clEnumValN(AC_Execute, "execute",
43 "Load, link, and execute the inputs."),
Andrew Kayloree7c0d22013-01-25 22:50:58 +000044 clEnumValN(AC_PrintLineInfo, "printline",
45 "Load, link, and print line information for each function."),
Jim Grosbach1cb19a42011-03-18 17:11:39 +000046 clEnumValEnd));
47
Jim Grosbach6b32e7e2011-04-13 15:38:30 +000048static cl::opt<std::string>
49EntryPoint("entry",
50 cl::desc("Function to call as entry point."),
51 cl::init("_main"));
52
Jim Grosbach1cb19a42011-03-18 17:11:39 +000053/* *** */
54
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000055// A trivial memory manager that doesn't do anything fancy, just uses the
56// support library allocation routines directly.
57class TrivialMemoryManager : public RTDyldMemoryManager {
58public:
Jim Grosbach7cbf92d2011-04-12 00:23:32 +000059 SmallVector<sys::MemoryBlock, 16> FunctionMemory;
Jim Grosbach61425c02012-01-16 22:26:39 +000060 SmallVector<sys::MemoryBlock, 16> DataMemory;
61
62 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
63 unsigned SectionID);
64 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
Andrew Kaylor53608a32012-11-15 23:50:01 +000065 unsigned SectionID, bool IsReadOnly);
Jim Grosbach7cbf92d2011-04-12 00:23:32 +000066
Danil Malyshev30b9e322012-03-28 21:46:36 +000067 virtual void *getPointerToNamedFunction(const std::string &Name,
68 bool AbortOnFailure = true) {
69 return 0;
70 }
71
Andrew Kaylor53608a32012-11-15 23:50:01 +000072 bool applyPermissions(std::string *ErrMsg) { return false; }
73
Danil Malyshev068c65b2012-05-16 18:50:11 +000074 // Invalidate instruction cache for sections with execute permissions.
75 // Some platforms with separate data cache and instruction cache require
76 // explicit cache flush, otherwise JIT code manipulations (like resolved
77 // relocations) will get to the data cache but not to the instruction cache.
78 virtual void invalidateInstructionCache();
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000079};
80
Jim Grosbach61425c02012-01-16 22:26:39 +000081uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size,
82 unsigned Alignment,
83 unsigned SectionID) {
Danil Malyshev068c65b2012-05-16 18:50:11 +000084 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, 0, 0);
85 FunctionMemory.push_back(MB);
86 return (uint8_t*)MB.base();
Jim Grosbach61425c02012-01-16 22:26:39 +000087}
88
89uint8_t *TrivialMemoryManager::allocateDataSection(uintptr_t Size,
90 unsigned Alignment,
Andrew Kaylor53608a32012-11-15 23:50:01 +000091 unsigned SectionID,
92 bool IsReadOnly) {
Danil Malyshev068c65b2012-05-16 18:50:11 +000093 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, 0, 0);
94 DataMemory.push_back(MB);
95 return (uint8_t*)MB.base();
96}
97
98void TrivialMemoryManager::invalidateInstructionCache() {
99 for (int i = 0, e = FunctionMemory.size(); i != e; ++i)
100 sys::Memory::InvalidateInstructionCache(FunctionMemory[i].base(),
101 FunctionMemory[i].size());
102
103 for (int i = 0, e = DataMemory.size(); i != e; ++i)
104 sys::Memory::InvalidateInstructionCache(DataMemory[i].base(),
105 DataMemory[i].size());
Jim Grosbach61425c02012-01-16 22:26:39 +0000106}
107
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000108static const char *ProgramName;
109
110static void Message(const char *Type, const Twine &Msg) {
111 errs() << ProgramName << ": " << Type << ": " << Msg << "\n";
112}
113
114static int Error(const Twine &Msg) {
115 Message("error", Msg);
116 return 1;
117}
118
119/* *** */
120
Andrew Kayloree7c0d22013-01-25 22:50:58 +0000121static int printLineInfoForInput() {
122 // If we don't have any input files, read from stdin.
123 if (!InputFileList.size())
124 InputFileList.push_back("-");
125 for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) {
126 // Instantiate a dynamic linker.
127 TrivialMemoryManager *MemMgr = new TrivialMemoryManager;
128 RuntimeDyld Dyld(MemMgr);
129
130 // Load the input memory buffer.
131 OwningPtr<MemoryBuffer> InputBuffer;
132 OwningPtr<ObjectImage> LoadedObject;
133 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFileList[i],
134 InputBuffer))
135 return Error("unable to read input: '" + ec.message() + "'");
136
137 // Load the object file
138 LoadedObject.reset(Dyld.loadObject(new ObjectBuffer(InputBuffer.take())));
139 if (!LoadedObject) {
140 return Error(Dyld.getErrorString());
141 }
142
143 // Resolve all the relocations we can.
144 Dyld.resolveRelocations();
145
146 OwningPtr<DIContext> Context(DIContext::getDWARFContext(LoadedObject->getObjectFile()));
147
148 // Use symbol info to iterate functions in the object.
149 error_code ec;
150 for (object::symbol_iterator I = LoadedObject->begin_symbols(),
151 E = LoadedObject->end_symbols();
152 I != E && !ec;
153 I.increment(ec)) {
154 object::SymbolRef::Type SymType;
155 if (I->getType(SymType)) continue;
156 if (SymType == object::SymbolRef::ST_Function) {
157 StringRef Name;
158 uint64_t Addr;
159 uint64_t Size;
160 if (I->getName(Name)) continue;
161 if (I->getAddress(Addr)) continue;
162 if (I->getSize(Size)) continue;
163
164 outs() << "Function: " << Name << ", Size = " << Size << "\n";
165
166 DILineInfo Result = Context->getLineInfoForAddress(Addr);
167 outs() << " Line info:" << Result.getFileName() << ", line:" << Result.getLine() << "\n";
168 }
169 }
170 }
171
172 return 0;
173}
174
Jim Grosbach82c25b42011-03-18 17:24:21 +0000175static int executeInput() {
Jim Grosbach6e563312011-03-21 22:15:52 +0000176 // Instantiate a dynamic linker.
Jim Grosbach7cbf92d2011-04-12 00:23:32 +0000177 TrivialMemoryManager *MemMgr = new TrivialMemoryManager;
178 RuntimeDyld Dyld(MemMgr);
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000179
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000180 // If we don't have any input files, read from stdin.
181 if (!InputFileList.size())
182 InputFileList.push_back("-");
183 for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) {
184 // Load the input memory buffer.
185 OwningPtr<MemoryBuffer> InputBuffer;
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000186 OwningPtr<ObjectImage> LoadedObject;
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000187 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFileList[i],
188 InputBuffer))
189 return Error("unable to read input: '" + ec.message() + "'");
190
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000191 // Load the object file
192 LoadedObject.reset(Dyld.loadObject(new ObjectBuffer(InputBuffer.take())));
193 if (!LoadedObject) {
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000194 return Error(Dyld.getErrorString());
195 }
Jim Grosbachb3eecaf2011-03-22 18:19:42 +0000196 }
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000197
Jim Grosbachf8c1c842011-04-12 21:20:41 +0000198 // Resolve all the relocations we can.
199 Dyld.resolveRelocations();
Danil Malyshev068c65b2012-05-16 18:50:11 +0000200 // Clear instruction cache before code will be executed.
201 MemMgr->invalidateInstructionCache();
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000202
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000203 // FIXME: Error out if there are unresolved relocations.
204
Jim Grosbach6b32e7e2011-04-13 15:38:30 +0000205 // Get the address of the entry point (_main by default).
206 void *MainAddress = Dyld.getSymbolAddress(EntryPoint);
Jim Grosbach6e563312011-03-21 22:15:52 +0000207 if (MainAddress == 0)
Jim Grosbach6b32e7e2011-04-13 15:38:30 +0000208 return Error("no definition for '" + EntryPoint + "'");
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000209
Jim Grosbach7cbf92d2011-04-12 00:23:32 +0000210 // Invalidate the instruction cache for each loaded function.
211 for (unsigned i = 0, e = MemMgr->FunctionMemory.size(); i != e; ++i) {
212 sys::MemoryBlock &Data = MemMgr->FunctionMemory[i];
213 // Make sure the memory is executable.
214 std::string ErrorStr;
215 sys::Memory::InvalidateInstructionCache(Data.base(), Data.size());
216 if (!sys::Memory::setExecutable(Data, &ErrorStr))
217 return Error("unable to mark function executable: '" + ErrorStr + "'");
218 }
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000219
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000220 // Dispatch to _main().
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000221 errs() << "loaded '" << EntryPoint << "' at: " << (void*)MainAddress << "\n";
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000222
223 int (*Main)(int, const char**) =
224 (int(*)(int,const char**)) uintptr_t(MainAddress);
225 const char **Argv = new const char*[2];
Jim Grosbach4f9f41f2011-04-13 15:49:40 +0000226 // Use the name of the first input object module as argv[0] for the target.
227 Argv[0] = InputFileList[0].c_str();
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000228 Argv[1] = 0;
229 return Main(1, Argv);
230}
231
232int main(int argc, char **argv) {
233 ProgramName = argv[0];
234 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
235
236 cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n");
237
238 switch (Action) {
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000239 case AC_Execute:
Jim Grosbach82c25b42011-03-18 17:24:21 +0000240 return executeInput();
Andrew Kayloree7c0d22013-01-25 22:50:58 +0000241 case AC_PrintLineInfo:
242 return printLineInfoForInput();
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000243 }
Jim Grosbach1cb19a42011-03-18 17:11:39 +0000244}