Jim Grosbach | 0072cdb | 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 | |
Chandler Carruth | 4d88a1c | 2012-12-04 10:44:52 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/StringMap.h" |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 15 | #include "llvm/DebugInfo/DIContext.h" |
Andrew Kaylor | adc7056 | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 16 | #include "llvm/ExecutionEngine/ObjectBuffer.h" |
Chandler Carruth | 4d88a1c | 2012-12-04 10:44:52 +0000 | [diff] [blame] | 17 | #include "llvm/ExecutionEngine/ObjectImage.h" |
| 18 | #include "llvm/ExecutionEngine/RuntimeDyld.h" |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 19 | #include "llvm/ExecutionEngine/RuntimeDyldChecker.h" |
| 20 | #include "llvm/MC/MCAsmInfo.h" |
| 21 | #include "llvm/MC/MCContext.h" |
| 22 | #include "llvm/MC/MCDisassembler.h" |
| 23 | #include "llvm/MC/MCInstrInfo.h" |
| 24 | #include "llvm/MC/MCInstPrinter.h" |
| 25 | #include "llvm/MC/MCRegisterInfo.h" |
Rafael Espindola | 6e040c0 | 2013-04-26 20:07:33 +0000 | [diff] [blame] | 26 | #include "llvm/Object/MachO.h" |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 27 | #include "llvm/Support/CommandLine.h" |
Lang Hames | d311c0e | 2014-05-13 22:37:41 +0000 | [diff] [blame] | 28 | #include "llvm/Support/DynamicLibrary.h" |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 29 | #include "llvm/Support/ManagedStatic.h" |
| 30 | #include "llvm/Support/Memory.h" |
| 31 | #include "llvm/Support/MemoryBuffer.h" |
Alp Toker | 9f67932 | 2013-11-05 09:33:43 +0000 | [diff] [blame] | 32 | #include "llvm/Support/PrettyStackTrace.h" |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 33 | #include "llvm/Support/raw_ostream.h" |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Signals.h" |
| 35 | #include "llvm/Support/TargetRegistry.h" |
| 36 | #include "llvm/Support/TargetSelect.h" |
Rafael Espindola | a6e9c3e | 2014-06-12 17:38:55 +0000 | [diff] [blame] | 37 | #include <system_error> |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 38 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 39 | using namespace llvm; |
| 40 | using namespace llvm::object; |
| 41 | |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 42 | static cl::list<std::string> |
| 43 | InputFileList(cl::Positional, cl::ZeroOrMore, |
| 44 | cl::desc("<input file>")); |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 45 | |
| 46 | enum ActionType { |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 47 | AC_Execute, |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 48 | AC_PrintLineInfo, |
| 49 | AC_Verify |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | static cl::opt<ActionType> |
| 53 | Action(cl::desc("Action to perform:"), |
| 54 | cl::init(AC_Execute), |
| 55 | cl::values(clEnumValN(AC_Execute, "execute", |
| 56 | "Load, link, and execute the inputs."), |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 57 | clEnumValN(AC_PrintLineInfo, "printline", |
| 58 | "Load, link, and print line information for each function."), |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 59 | clEnumValN(AC_Verify, "verify", |
| 60 | "Load, link and verify the resulting memory image."), |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 61 | clEnumValEnd)); |
| 62 | |
Jim Grosbach | d35159a | 2011-04-13 15:38:30 +0000 | [diff] [blame] | 63 | static cl::opt<std::string> |
| 64 | EntryPoint("entry", |
| 65 | cl::desc("Function to call as entry point."), |
| 66 | cl::init("_main")); |
| 67 | |
Lang Hames | d311c0e | 2014-05-13 22:37:41 +0000 | [diff] [blame] | 68 | static cl::list<std::string> |
| 69 | Dylibs("dylib", |
| 70 | cl::desc("Add library."), |
| 71 | cl::ZeroOrMore); |
| 72 | |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 73 | static cl::opt<std::string> |
| 74 | TripleName("triple", cl::desc("Target triple for disassembler")); |
| 75 | |
| 76 | static cl::list<std::string> |
| 77 | CheckFiles("check", |
| 78 | cl::desc("File containing RuntimeDyld verifier checks."), |
| 79 | cl::ZeroOrMore); |
| 80 | |
Lang Hames | 9cb7353 | 2014-07-29 23:43:13 +0000 | [diff] [blame^] | 81 | static cl::opt<uint64_t> |
| 82 | TargetAddrStart("target-addr-start", |
| 83 | cl::desc("For -verify only: start of phony target address " |
| 84 | "range."), |
| 85 | cl::init(4096), // Start at "page 1" - no allocating at "null". |
| 86 | cl::Hidden); |
| 87 | |
| 88 | static cl::opt<uint64_t> |
| 89 | TargetAddrEnd("target-addr-end", |
| 90 | cl::desc("For -verify only: end of phony target address range."), |
| 91 | cl::init(~0ULL), |
| 92 | cl::Hidden); |
| 93 | |
| 94 | static cl::opt<uint64_t> |
| 95 | TargetSectionSep("target-section-sep", |
| 96 | cl::desc("For -verify only: Separation between sections in " |
| 97 | "phony target address space."), |
| 98 | cl::init(0), |
| 99 | cl::Hidden); |
| 100 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 101 | /* *** */ |
| 102 | |
Jim Grosbach | 2dcef050 | 2011-04-04 23:04:39 +0000 | [diff] [blame] | 103 | // A trivial memory manager that doesn't do anything fancy, just uses the |
| 104 | // support library allocation routines directly. |
| 105 | class TrivialMemoryManager : public RTDyldMemoryManager { |
| 106 | public: |
Jim Grosbach | 3ed03f1 | 2011-04-12 00:23:32 +0000 | [diff] [blame] | 107 | SmallVector<sys::MemoryBlock, 16> FunctionMemory; |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 108 | SmallVector<sys::MemoryBlock, 16> DataMemory; |
| 109 | |
| 110 | uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 111 | unsigned SectionID, |
| 112 | StringRef SectionName) override; |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 113 | uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, |
Filip Pizlo | 7aa695e0 | 2013-10-02 00:59:25 +0000 | [diff] [blame] | 114 | unsigned SectionID, StringRef SectionName, |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 115 | bool IsReadOnly) override; |
Jim Grosbach | 3ed03f1 | 2011-04-12 00:23:32 +0000 | [diff] [blame] | 116 | |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 117 | void *getPointerToNamedFunction(const std::string &Name, |
| 118 | bool AbortOnFailure = true) override { |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 119 | return nullptr; |
Danil Malyshev | bfee542 | 2012-03-28 21:46:36 +0000 | [diff] [blame] | 120 | } |
| 121 | |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 122 | bool finalizeMemory(std::string *ErrMsg) override { return false; } |
Andrew Kaylor | a342cb9 | 2012-11-15 23:50:01 +0000 | [diff] [blame] | 123 | |
Danil Malyshev | 8c17fbd | 2012-05-16 18:50:11 +0000 | [diff] [blame] | 124 | // Invalidate instruction cache for sections with execute permissions. |
| 125 | // Some platforms with separate data cache and instruction cache require |
| 126 | // explicit cache flush, otherwise JIT code manipulations (like resolved |
| 127 | // relocations) will get to the data cache but not to the instruction cache. |
| 128 | virtual void invalidateInstructionCache(); |
Jim Grosbach | 2dcef050 | 2011-04-04 23:04:39 +0000 | [diff] [blame] | 129 | }; |
| 130 | |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 131 | uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size, |
| 132 | unsigned Alignment, |
Filip Pizlo | 7aa695e0 | 2013-10-02 00:59:25 +0000 | [diff] [blame] | 133 | unsigned SectionID, |
| 134 | StringRef SectionName) { |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 135 | sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr); |
Danil Malyshev | 8c17fbd | 2012-05-16 18:50:11 +0000 | [diff] [blame] | 136 | FunctionMemory.push_back(MB); |
| 137 | return (uint8_t*)MB.base(); |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | uint8_t *TrivialMemoryManager::allocateDataSection(uintptr_t Size, |
| 141 | unsigned Alignment, |
Andrew Kaylor | a342cb9 | 2012-11-15 23:50:01 +0000 | [diff] [blame] | 142 | unsigned SectionID, |
Filip Pizlo | 7aa695e0 | 2013-10-02 00:59:25 +0000 | [diff] [blame] | 143 | StringRef SectionName, |
Andrew Kaylor | a342cb9 | 2012-11-15 23:50:01 +0000 | [diff] [blame] | 144 | bool IsReadOnly) { |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 145 | sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr); |
Danil Malyshev | 8c17fbd | 2012-05-16 18:50:11 +0000 | [diff] [blame] | 146 | DataMemory.push_back(MB); |
| 147 | return (uint8_t*)MB.base(); |
| 148 | } |
| 149 | |
| 150 | void TrivialMemoryManager::invalidateInstructionCache() { |
| 151 | for (int i = 0, e = FunctionMemory.size(); i != e; ++i) |
| 152 | sys::Memory::InvalidateInstructionCache(FunctionMemory[i].base(), |
| 153 | FunctionMemory[i].size()); |
| 154 | |
| 155 | for (int i = 0, e = DataMemory.size(); i != e; ++i) |
| 156 | sys::Memory::InvalidateInstructionCache(DataMemory[i].base(), |
| 157 | DataMemory[i].size()); |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 158 | } |
| 159 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 160 | static const char *ProgramName; |
| 161 | |
| 162 | static void Message(const char *Type, const Twine &Msg) { |
| 163 | errs() << ProgramName << ": " << Type << ": " << Msg << "\n"; |
| 164 | } |
| 165 | |
| 166 | static int Error(const Twine &Msg) { |
| 167 | Message("error", Msg); |
| 168 | return 1; |
| 169 | } |
| 170 | |
Lang Hames | d311c0e | 2014-05-13 22:37:41 +0000 | [diff] [blame] | 171 | static void loadDylibs() { |
| 172 | for (const std::string &Dylib : Dylibs) { |
| 173 | if (sys::fs::is_regular_file(Dylib)) { |
| 174 | std::string ErrMsg; |
| 175 | if (sys::DynamicLibrary::LoadLibraryPermanently(Dylib.c_str(), &ErrMsg)) |
| 176 | llvm::errs() << "Error loading '" << Dylib << "': " |
| 177 | << ErrMsg << "\n"; |
| 178 | } else |
| 179 | llvm::errs() << "Dylib not found: '" << Dylib << "'.\n"; |
| 180 | } |
| 181 | } |
| 182 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 183 | /* *** */ |
| 184 | |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 185 | static int printLineInfoForInput() { |
Lang Hames | d311c0e | 2014-05-13 22:37:41 +0000 | [diff] [blame] | 186 | // Load any dylibs requested on the command line. |
| 187 | loadDylibs(); |
| 188 | |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 189 | // If we don't have any input files, read from stdin. |
| 190 | if (!InputFileList.size()) |
| 191 | InputFileList.push_back("-"); |
| 192 | for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) { |
| 193 | // Instantiate a dynamic linker. |
Benjamin Kramer | 9ce7708 | 2013-08-03 22:16:31 +0000 | [diff] [blame] | 194 | TrivialMemoryManager MemMgr; |
| 195 | RuntimeDyld Dyld(&MemMgr); |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 196 | |
| 197 | // Load the input memory buffer. |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 198 | |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 199 | ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer = |
| 200 | MemoryBuffer::getFileOrSTDIN(InputFileList[i]); |
| 201 | if (std::error_code EC = InputBuffer.getError()) |
| 202 | return Error("unable to read input: '" + EC.message() + "'"); |
| 203 | |
| 204 | std::unique_ptr<ObjectImage> LoadedObject; |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 205 | // Load the object file |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 206 | LoadedObject.reset( |
| 207 | Dyld.loadObject(new ObjectBuffer(InputBuffer.get().release()))); |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 208 | if (!LoadedObject) { |
| 209 | return Error(Dyld.getErrorString()); |
| 210 | } |
| 211 | |
| 212 | // Resolve all the relocations we can. |
| 213 | Dyld.resolveRelocations(); |
| 214 | |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 215 | std::unique_ptr<DIContext> Context( |
| 216 | DIContext::getDWARFContext(LoadedObject->getObjectFile())); |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 217 | |
| 218 | // Use symbol info to iterate functions in the object. |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 219 | for (object::symbol_iterator I = LoadedObject->begin_symbols(), |
| 220 | E = LoadedObject->end_symbols(); |
Rafael Espindola | 5e812af | 2014-01-30 02:49:50 +0000 | [diff] [blame] | 221 | I != E; ++I) { |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 222 | object::SymbolRef::Type SymType; |
| 223 | if (I->getType(SymType)) continue; |
| 224 | if (SymType == object::SymbolRef::ST_Function) { |
| 225 | StringRef Name; |
| 226 | uint64_t Addr; |
| 227 | uint64_t Size; |
| 228 | if (I->getName(Name)) continue; |
| 229 | if (I->getAddress(Addr)) continue; |
| 230 | if (I->getSize(Size)) continue; |
| 231 | |
| 232 | outs() << "Function: " << Name << ", Size = " << Size << "\n"; |
| 233 | |
Andrew Kaylor | 9a8ff81 | 2013-01-26 00:28:05 +0000 | [diff] [blame] | 234 | DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); |
| 235 | DILineInfoTable::iterator Begin = Lines.begin(); |
| 236 | DILineInfoTable::iterator End = Lines.end(); |
| 237 | for (DILineInfoTable::iterator It = Begin; It != End; ++It) { |
| 238 | outs() << " Line info @ " << It->first - Addr << ": " |
Alexey Samsonov | d010999 | 2014-04-18 21:36:39 +0000 | [diff] [blame] | 239 | << It->second.FileName << ", line:" << It->second.Line << "\n"; |
Andrew Kaylor | 9a8ff81 | 2013-01-26 00:28:05 +0000 | [diff] [blame] | 240 | } |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 241 | } |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | return 0; |
| 246 | } |
| 247 | |
Jim Grosbach | 4d5284b | 2011-03-18 17:24:21 +0000 | [diff] [blame] | 248 | static int executeInput() { |
Lang Hames | d311c0e | 2014-05-13 22:37:41 +0000 | [diff] [blame] | 249 | // Load any dylibs requested on the command line. |
| 250 | loadDylibs(); |
| 251 | |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 252 | // Instantiate a dynamic linker. |
Benjamin Kramer | 9ce7708 | 2013-08-03 22:16:31 +0000 | [diff] [blame] | 253 | TrivialMemoryManager MemMgr; |
| 254 | RuntimeDyld Dyld(&MemMgr); |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 255 | |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 256 | // If we don't have any input files, read from stdin. |
| 257 | if (!InputFileList.size()) |
| 258 | InputFileList.push_back("-"); |
| 259 | for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) { |
| 260 | // Load the input memory buffer. |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 261 | ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer = |
| 262 | MemoryBuffer::getFileOrSTDIN(InputFileList[i]); |
| 263 | if (std::error_code EC = InputBuffer.getError()) |
| 264 | return Error("unable to read input: '" + EC.message() + "'"); |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 265 | std::unique_ptr<ObjectImage> LoadedObject; |
Andrew Kaylor | adc7056 | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 266 | // Load the object file |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 267 | LoadedObject.reset( |
| 268 | Dyld.loadObject(new ObjectBuffer(InputBuffer.get().release()))); |
Andrew Kaylor | adc7056 | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 269 | if (!LoadedObject) { |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 270 | return Error(Dyld.getErrorString()); |
| 271 | } |
Jim Grosbach | 40411cc | 2011-03-22 18:19:42 +0000 | [diff] [blame] | 272 | } |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 273 | |
Jim Grosbach | 733d305 | 2011-04-12 21:20:41 +0000 | [diff] [blame] | 274 | // Resolve all the relocations we can. |
| 275 | Dyld.resolveRelocations(); |
Danil Malyshev | 8c17fbd | 2012-05-16 18:50:11 +0000 | [diff] [blame] | 276 | // Clear instruction cache before code will be executed. |
Benjamin Kramer | 5d62ad2 | 2013-08-03 22:18:45 +0000 | [diff] [blame] | 277 | MemMgr.invalidateInstructionCache(); |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 278 | |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 279 | // FIXME: Error out if there are unresolved relocations. |
| 280 | |
Jim Grosbach | d35159a | 2011-04-13 15:38:30 +0000 | [diff] [blame] | 281 | // Get the address of the entry point (_main by default). |
| 282 | void *MainAddress = Dyld.getSymbolAddress(EntryPoint); |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 283 | if (!MainAddress) |
Jim Grosbach | d35159a | 2011-04-13 15:38:30 +0000 | [diff] [blame] | 284 | return Error("no definition for '" + EntryPoint + "'"); |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 285 | |
Jim Grosbach | 3ed03f1 | 2011-04-12 00:23:32 +0000 | [diff] [blame] | 286 | // Invalidate the instruction cache for each loaded function. |
Benjamin Kramer | 5d62ad2 | 2013-08-03 22:18:45 +0000 | [diff] [blame] | 287 | for (unsigned i = 0, e = MemMgr.FunctionMemory.size(); i != e; ++i) { |
| 288 | sys::MemoryBlock &Data = MemMgr.FunctionMemory[i]; |
Jim Grosbach | 3ed03f1 | 2011-04-12 00:23:32 +0000 | [diff] [blame] | 289 | // Make sure the memory is executable. |
| 290 | std::string ErrorStr; |
| 291 | sys::Memory::InvalidateInstructionCache(Data.base(), Data.size()); |
| 292 | if (!sys::Memory::setExecutable(Data, &ErrorStr)) |
| 293 | return Error("unable to mark function executable: '" + ErrorStr + "'"); |
| 294 | } |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 295 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 296 | // Dispatch to _main(). |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 297 | errs() << "loaded '" << EntryPoint << "' at: " << (void*)MainAddress << "\n"; |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 298 | |
| 299 | int (*Main)(int, const char**) = |
| 300 | (int(*)(int,const char**)) uintptr_t(MainAddress); |
| 301 | const char **Argv = new const char*[2]; |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 302 | // Use the name of the first input object module as argv[0] for the target. |
| 303 | Argv[0] = InputFileList[0].c_str(); |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 304 | Argv[1] = nullptr; |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 305 | return Main(1, Argv); |
| 306 | } |
| 307 | |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 308 | static int checkAllExpressions(RuntimeDyldChecker &Checker) { |
| 309 | for (const auto& CheckerFileName : CheckFiles) { |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 310 | ErrorOr<std::unique_ptr<MemoryBuffer>> CheckerFileBuf = |
| 311 | MemoryBuffer::getFileOrSTDIN(CheckerFileName); |
| 312 | if (std::error_code EC = CheckerFileBuf.getError()) |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 313 | return Error("unable to read input '" + CheckerFileName + "': " + |
| 314 | EC.message()); |
| 315 | |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 316 | if (!Checker.checkAllRulesInBuffer("# rtdyld-check:", |
| 317 | CheckerFileBuf.get().get())) |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 318 | return Error("some checks in '" + CheckerFileName + "' failed"); |
| 319 | } |
| 320 | return 0; |
| 321 | } |
| 322 | |
Lang Hames | 9cb7353 | 2014-07-29 23:43:13 +0000 | [diff] [blame^] | 323 | // Scatter sections in all directions! |
| 324 | // Remaps section addresses for -verify mode. The following command line options |
| 325 | // can be used to customize the layout of the memory within the phony target's |
| 326 | // address space: |
| 327 | // -target-addr-start <s> -- Specify where the phony target addres range starts. |
| 328 | // -target-addr-end <e> -- Specify where the phony target address range ends. |
| 329 | // -target-section-sep <d> -- Specify how big a gap should be left between the |
| 330 | // end of one section and the start of the next. |
| 331 | // Defaults to zero. Set to something big |
| 332 | // (e.g. 1 << 32) to stress-test stubs, GOTs, etc. |
| 333 | // |
| 334 | void remapSections(const llvm::Triple &TargetTriple, |
| 335 | const TrivialMemoryManager &MemMgr, |
| 336 | RuntimeDyld &RTDyld) { |
| 337 | |
| 338 | // If the -target-addr-end option wasn't explicitly passed, then set it to a |
| 339 | // sensible default based on the target triple. |
| 340 | if (TargetAddrEnd.getNumOccurrences() == 0) { |
| 341 | if (TargetTriple.isArch16Bit()) |
| 342 | TargetAddrEnd = (1ULL << 16) - 1; |
| 343 | else if (TargetTriple.isArch32Bit()) |
| 344 | TargetAddrEnd = (1ULL << 32) - 1; |
| 345 | // TargetAddrEnd already has a sensible default for 64-bit systems, so |
| 346 | // there's nothing to do in the 64-bit case. |
| 347 | } |
| 348 | |
| 349 | uint64_t NextSectionAddress = TargetAddrStart; |
| 350 | |
| 351 | // Remap code sections. |
| 352 | for (const auto& CodeSection : MemMgr.FunctionMemory) { |
| 353 | RTDyld.mapSectionAddress(CodeSection.base(), NextSectionAddress); |
| 354 | NextSectionAddress += CodeSection.size() + TargetSectionSep; |
| 355 | } |
| 356 | |
| 357 | // Remap data sections. |
| 358 | for (const auto& DataSection : MemMgr.DataMemory) { |
| 359 | RTDyld.mapSectionAddress(DataSection.base(), NextSectionAddress); |
| 360 | NextSectionAddress += DataSection.size() + TargetSectionSep; |
| 361 | } |
| 362 | } |
| 363 | |
| 364 | // Load and link the objects specified on the command line, but do not execute |
| 365 | // anything. Instead, attach a RuntimeDyldChecker instance and call it to |
| 366 | // verify the correctness of the linked memory. |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 367 | static int linkAndVerify() { |
| 368 | |
| 369 | // Check for missing triple. |
| 370 | if (TripleName == "") { |
| 371 | llvm::errs() << "Error: -triple required when running in -verify mode.\n"; |
| 372 | return 1; |
| 373 | } |
| 374 | |
| 375 | // Look up the target and build the disassembler. |
| 376 | Triple TheTriple(Triple::normalize(TripleName)); |
| 377 | std::string ErrorStr; |
| 378 | const Target *TheTarget = |
| 379 | TargetRegistry::lookupTarget("", TheTriple, ErrorStr); |
| 380 | if (!TheTarget) { |
| 381 | llvm::errs() << "Error accessing target '" << TripleName << "': " |
| 382 | << ErrorStr << "\n"; |
| 383 | return 1; |
| 384 | } |
| 385 | TripleName = TheTriple.getTriple(); |
| 386 | |
| 387 | std::unique_ptr<MCSubtargetInfo> STI( |
| 388 | TheTarget->createMCSubtargetInfo(TripleName, "", "")); |
| 389 | assert(STI && "Unable to create subtarget info!"); |
| 390 | |
| 391 | std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName)); |
| 392 | assert(MRI && "Unable to create target register info!"); |
| 393 | |
| 394 | std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TripleName)); |
| 395 | assert(MAI && "Unable to create target asm info!"); |
| 396 | |
| 397 | MCContext Ctx(MAI.get(), MRI.get(), nullptr); |
| 398 | |
| 399 | std::unique_ptr<MCDisassembler> Disassembler( |
| 400 | TheTarget->createMCDisassembler(*STI, Ctx)); |
| 401 | assert(Disassembler && "Unable to create disassembler!"); |
| 402 | |
| 403 | std::unique_ptr<MCInstrInfo> MII(TheTarget->createMCInstrInfo()); |
| 404 | |
| 405 | std::unique_ptr<MCInstPrinter> InstPrinter( |
| 406 | TheTarget->createMCInstPrinter(0, *MAI, *MII, *MRI, *STI)); |
| 407 | |
| 408 | // Load any dylibs requested on the command line. |
| 409 | loadDylibs(); |
| 410 | |
| 411 | // Instantiate a dynamic linker. |
| 412 | TrivialMemoryManager MemMgr; |
| 413 | RuntimeDyld Dyld(&MemMgr); |
Lang Hames | f7acddd | 2014-07-22 22:47:39 +0000 | [diff] [blame] | 414 | RuntimeDyldChecker Checker(Dyld, Disassembler.get(), InstPrinter.get(), |
| 415 | llvm::dbgs()); |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 416 | |
| 417 | // If we don't have any input files, read from stdin. |
| 418 | if (!InputFileList.size()) |
| 419 | InputFileList.push_back("-"); |
| 420 | for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) { |
| 421 | // Load the input memory buffer. |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 422 | ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer = |
| 423 | MemoryBuffer::getFileOrSTDIN(InputFileList[i]); |
| 424 | if (std::error_code EC = InputBuffer.getError()) |
| 425 | return Error("unable to read input: '" + EC.message() + "'"); |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 426 | |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 427 | std::unique_ptr<ObjectImage> LoadedObject; |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 428 | // Load the object file |
| 429 | LoadedObject.reset( |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 430 | Dyld.loadObject(new ObjectBuffer(InputBuffer.get().release()))); |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 431 | if (!LoadedObject) { |
| 432 | return Error(Dyld.getErrorString()); |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | // Resolve all the relocations we can. |
| 437 | Dyld.resolveRelocations(); |
| 438 | |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 439 | return checkAllExpressions(Checker); |
| 440 | } |
| 441 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 442 | int main(int argc, char **argv) { |
Alp Toker | 9f67932 | 2013-11-05 09:33:43 +0000 | [diff] [blame] | 443 | sys::PrintStackTraceOnErrorSignal(); |
| 444 | PrettyStackTraceProgram X(argc, argv); |
| 445 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 446 | ProgramName = argv[0]; |
| 447 | llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. |
| 448 | |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 449 | llvm::InitializeAllTargetInfos(); |
| 450 | llvm::InitializeAllTargetMCs(); |
| 451 | llvm::InitializeAllDisassemblers(); |
| 452 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 453 | cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n"); |
| 454 | |
| 455 | switch (Action) { |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 456 | case AC_Execute: |
Jim Grosbach | 4d5284b | 2011-03-18 17:24:21 +0000 | [diff] [blame] | 457 | return executeInput(); |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 458 | case AC_PrintLineInfo: |
| 459 | return printLineInfoForInput(); |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 460 | case AC_Verify: |
| 461 | return linkAndVerify(); |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 462 | } |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 463 | } |