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" |
Zachary Turner | 6489d7b | 2015-04-23 17:37:47 +0000 | [diff] [blame] | 15 | #include "llvm/DebugInfo/DIContext.h" |
| 16 | #include "llvm/DebugInfo/DWARF/DWARFContext.h" |
Lang Hames | 633fe14 | 2015-03-30 03:37:06 +0000 | [diff] [blame] | 17 | #include "llvm/ExecutionEngine/RTDyldMemoryManager.h" |
Chandler Carruth | 4d88a1c | 2012-12-04 10:44:52 +0000 | [diff] [blame] | 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" |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 23 | #include "llvm/MC/MCInstPrinter.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 24 | #include "llvm/MC/MCInstrInfo.h" |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 25 | #include "llvm/MC/MCRegisterInfo.h" |
Pete Cooper | 3de83e4 | 2015-05-15 21:58:42 +0000 | [diff] [blame] | 26 | #include "llvm/MC/MCSubtargetInfo.h" |
Rafael Espindola | 6e040c0 | 2013-04-26 20:07:33 +0000 | [diff] [blame] | 27 | #include "llvm/Object/MachO.h" |
Rafael Espindola | b109c03 | 2015-06-23 02:08:48 +0000 | [diff] [blame] | 28 | #include "llvm/Object/SymbolSize.h" |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 29 | #include "llvm/Support/CommandLine.h" |
Lang Hames | d311c0e | 2014-05-13 22:37:41 +0000 | [diff] [blame] | 30 | #include "llvm/Support/DynamicLibrary.h" |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 31 | #include "llvm/Support/ManagedStatic.h" |
| 32 | #include "llvm/Support/Memory.h" |
| 33 | #include "llvm/Support/MemoryBuffer.h" |
Alp Toker | 9f67932 | 2013-11-05 09:33:43 +0000 | [diff] [blame] | 34 | #include "llvm/Support/PrettyStackTrace.h" |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 35 | #include "llvm/Support/Signals.h" |
| 36 | #include "llvm/Support/TargetRegistry.h" |
| 37 | #include "llvm/Support/TargetSelect.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 38 | #include "llvm/Support/raw_ostream.h" |
Lang Hames | 778ef5b | 2014-09-04 04:19:54 +0000 | [diff] [blame] | 39 | #include <list> |
Rafael Espindola | a6e9c3e | 2014-06-12 17:38:55 +0000 | [diff] [blame] | 40 | #include <system_error> |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 41 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 42 | using namespace llvm; |
| 43 | using namespace llvm::object; |
| 44 | |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 45 | static cl::list<std::string> |
| 46 | InputFileList(cl::Positional, cl::ZeroOrMore, |
| 47 | cl::desc("<input file>")); |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 48 | |
| 49 | enum ActionType { |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 50 | AC_Execute, |
Keno Fischer | 281b694 | 2015-05-30 19:44:53 +0000 | [diff] [blame] | 51 | AC_PrintObjectLineInfo, |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 52 | AC_PrintLineInfo, |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 53 | AC_PrintDebugLineInfo, |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 54 | AC_Verify |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | static cl::opt<ActionType> |
| 58 | Action(cl::desc("Action to perform:"), |
| 59 | cl::init(AC_Execute), |
| 60 | cl::values(clEnumValN(AC_Execute, "execute", |
| 61 | "Load, link, and execute the inputs."), |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 62 | clEnumValN(AC_PrintLineInfo, "printline", |
| 63 | "Load, link, and print line information for each function."), |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 64 | clEnumValN(AC_PrintDebugLineInfo, "printdebugline", |
| 65 | "Load, link, and print line information for each function using the debug object"), |
Keno Fischer | 281b694 | 2015-05-30 19:44:53 +0000 | [diff] [blame] | 66 | clEnumValN(AC_PrintObjectLineInfo, "printobjline", |
| 67 | "Like -printlineinfo but does not load the object first"), |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 68 | clEnumValN(AC_Verify, "verify", |
| 69 | "Load, link and verify the resulting memory image."), |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 70 | clEnumValEnd)); |
| 71 | |
Jim Grosbach | d35159a | 2011-04-13 15:38:30 +0000 | [diff] [blame] | 72 | static cl::opt<std::string> |
| 73 | EntryPoint("entry", |
| 74 | cl::desc("Function to call as entry point."), |
| 75 | cl::init("_main")); |
| 76 | |
Lang Hames | d311c0e | 2014-05-13 22:37:41 +0000 | [diff] [blame] | 77 | static cl::list<std::string> |
| 78 | Dylibs("dylib", |
| 79 | cl::desc("Add library."), |
| 80 | cl::ZeroOrMore); |
| 81 | |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 82 | static cl::opt<std::string> |
| 83 | TripleName("triple", cl::desc("Target triple for disassembler")); |
| 84 | |
| 85 | static cl::list<std::string> |
| 86 | CheckFiles("check", |
| 87 | cl::desc("File containing RuntimeDyld verifier checks."), |
| 88 | cl::ZeroOrMore); |
| 89 | |
Lang Hames | 9cb7353 | 2014-07-29 23:43:13 +0000 | [diff] [blame] | 90 | static cl::opt<uint64_t> |
| 91 | TargetAddrStart("target-addr-start", |
| 92 | cl::desc("For -verify only: start of phony target address " |
| 93 | "range."), |
| 94 | cl::init(4096), // Start at "page 1" - no allocating at "null". |
| 95 | cl::Hidden); |
| 96 | |
| 97 | static cl::opt<uint64_t> |
| 98 | TargetAddrEnd("target-addr-end", |
| 99 | cl::desc("For -verify only: end of phony target address range."), |
| 100 | cl::init(~0ULL), |
| 101 | cl::Hidden); |
| 102 | |
| 103 | static cl::opt<uint64_t> |
| 104 | TargetSectionSep("target-section-sep", |
| 105 | cl::desc("For -verify only: Separation between sections in " |
| 106 | "phony target address space."), |
| 107 | cl::init(0), |
| 108 | cl::Hidden); |
| 109 | |
Lang Hames | 778ef5b | 2014-09-04 04:19:54 +0000 | [diff] [blame] | 110 | static cl::list<std::string> |
| 111 | SpecificSectionMappings("map-section", |
| 112 | cl::desc("Map a section to a specific address."), |
| 113 | cl::ZeroOrMore); |
| 114 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 115 | /* *** */ |
| 116 | |
Jim Grosbach | 2dcef050 | 2011-04-04 23:04:39 +0000 | [diff] [blame] | 117 | // A trivial memory manager that doesn't do anything fancy, just uses the |
| 118 | // support library allocation routines directly. |
| 119 | class TrivialMemoryManager : public RTDyldMemoryManager { |
| 120 | public: |
Jim Grosbach | 3ed03f1 | 2011-04-12 00:23:32 +0000 | [diff] [blame] | 121 | SmallVector<sys::MemoryBlock, 16> FunctionMemory; |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 122 | SmallVector<sys::MemoryBlock, 16> DataMemory; |
| 123 | |
| 124 | uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 125 | unsigned SectionID, |
| 126 | StringRef SectionName) override; |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 127 | uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, |
Filip Pizlo | 7aa695e0 | 2013-10-02 00:59:25 +0000 | [diff] [blame] | 128 | unsigned SectionID, StringRef SectionName, |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 129 | bool IsReadOnly) override; |
Jim Grosbach | 3ed03f1 | 2011-04-12 00:23:32 +0000 | [diff] [blame] | 130 | |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 131 | void *getPointerToNamedFunction(const std::string &Name, |
| 132 | bool AbortOnFailure = true) override { |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 133 | return nullptr; |
Danil Malyshev | bfee542 | 2012-03-28 21:46:36 +0000 | [diff] [blame] | 134 | } |
| 135 | |
Craig Topper | e56917c | 2014-03-08 08:27:28 +0000 | [diff] [blame] | 136 | bool finalizeMemory(std::string *ErrMsg) override { return false; } |
Andrew Kaylor | a342cb9 | 2012-11-15 23:50:01 +0000 | [diff] [blame] | 137 | |
Danil Malyshev | 8c17fbd | 2012-05-16 18:50:11 +0000 | [diff] [blame] | 138 | // Invalidate instruction cache for sections with execute permissions. |
| 139 | // Some platforms with separate data cache and instruction cache require |
| 140 | // explicit cache flush, otherwise JIT code manipulations (like resolved |
| 141 | // relocations) will get to the data cache but not to the instruction cache. |
| 142 | virtual void invalidateInstructionCache(); |
Tim Northover | 5af339a | 2015-06-03 18:26:52 +0000 | [diff] [blame] | 143 | |
| 144 | void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, |
| 145 | size_t Size) override {} |
| 146 | void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, |
| 147 | size_t Size) override {} |
Jim Grosbach | 2dcef050 | 2011-04-04 23:04:39 +0000 | [diff] [blame] | 148 | }; |
| 149 | |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 150 | uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size, |
| 151 | unsigned Alignment, |
Filip Pizlo | 7aa695e0 | 2013-10-02 00:59:25 +0000 | [diff] [blame] | 152 | unsigned SectionID, |
| 153 | StringRef SectionName) { |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 154 | sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr); |
Danil Malyshev | 8c17fbd | 2012-05-16 18:50:11 +0000 | [diff] [blame] | 155 | FunctionMemory.push_back(MB); |
| 156 | return (uint8_t*)MB.base(); |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | uint8_t *TrivialMemoryManager::allocateDataSection(uintptr_t Size, |
| 160 | unsigned Alignment, |
Andrew Kaylor | a342cb9 | 2012-11-15 23:50:01 +0000 | [diff] [blame] | 161 | unsigned SectionID, |
Filip Pizlo | 7aa695e0 | 2013-10-02 00:59:25 +0000 | [diff] [blame] | 162 | StringRef SectionName, |
Andrew Kaylor | a342cb9 | 2012-11-15 23:50:01 +0000 | [diff] [blame] | 163 | bool IsReadOnly) { |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 164 | sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr); |
Danil Malyshev | 8c17fbd | 2012-05-16 18:50:11 +0000 | [diff] [blame] | 165 | DataMemory.push_back(MB); |
| 166 | return (uint8_t*)MB.base(); |
| 167 | } |
| 168 | |
| 169 | void TrivialMemoryManager::invalidateInstructionCache() { |
| 170 | for (int i = 0, e = FunctionMemory.size(); i != e; ++i) |
| 171 | sys::Memory::InvalidateInstructionCache(FunctionMemory[i].base(), |
| 172 | FunctionMemory[i].size()); |
| 173 | |
| 174 | for (int i = 0, e = DataMemory.size(); i != e; ++i) |
| 175 | sys::Memory::InvalidateInstructionCache(DataMemory[i].base(), |
| 176 | DataMemory[i].size()); |
Jim Grosbach | eff0a40 | 2012-01-16 22:26:39 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 179 | static const char *ProgramName; |
| 180 | |
| 181 | static void Message(const char *Type, const Twine &Msg) { |
| 182 | errs() << ProgramName << ": " << Type << ": " << Msg << "\n"; |
| 183 | } |
| 184 | |
| 185 | static int Error(const Twine &Msg) { |
| 186 | Message("error", Msg); |
| 187 | return 1; |
| 188 | } |
| 189 | |
Lang Hames | d311c0e | 2014-05-13 22:37:41 +0000 | [diff] [blame] | 190 | static void loadDylibs() { |
| 191 | for (const std::string &Dylib : Dylibs) { |
| 192 | if (sys::fs::is_regular_file(Dylib)) { |
| 193 | std::string ErrMsg; |
| 194 | if (sys::DynamicLibrary::LoadLibraryPermanently(Dylib.c_str(), &ErrMsg)) |
| 195 | llvm::errs() << "Error loading '" << Dylib << "': " |
| 196 | << ErrMsg << "\n"; |
| 197 | } else |
| 198 | llvm::errs() << "Dylib not found: '" << Dylib << "'.\n"; |
| 199 | } |
| 200 | } |
| 201 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 202 | /* *** */ |
| 203 | |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 204 | static int printLineInfoForInput(bool LoadObjects, bool UseDebugObj) { |
| 205 | assert(LoadObjects || !UseDebugObj); |
| 206 | |
Lang Hames | d311c0e | 2014-05-13 22:37:41 +0000 | [diff] [blame] | 207 | // Load any dylibs requested on the command line. |
| 208 | loadDylibs(); |
| 209 | |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 210 | // If we don't have any input files, read from stdin. |
| 211 | if (!InputFileList.size()) |
| 212 | InputFileList.push_back("-"); |
| 213 | for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) { |
| 214 | // Instantiate a dynamic linker. |
Benjamin Kramer | 9ce7708 | 2013-08-03 22:16:31 +0000 | [diff] [blame] | 215 | TrivialMemoryManager MemMgr; |
Lang Hames | 633fe14 | 2015-03-30 03:37:06 +0000 | [diff] [blame] | 216 | RuntimeDyld Dyld(MemMgr, MemMgr); |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 217 | |
| 218 | // Load the input memory buffer. |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 219 | |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 220 | ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer = |
| 221 | MemoryBuffer::getFileOrSTDIN(InputFileList[i]); |
| 222 | if (std::error_code EC = InputBuffer.getError()) |
| 223 | return Error("unable to read input: '" + EC.message() + "'"); |
| 224 | |
Lang Hames | b5c7b1f | 2014-11-26 16:54:40 +0000 | [diff] [blame] | 225 | ErrorOr<std::unique_ptr<ObjectFile>> MaybeObj( |
| 226 | ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef())); |
| 227 | |
| 228 | if (std::error_code EC = MaybeObj.getError()) |
| 229 | return Error("unable to create object file: '" + EC.message() + "'"); |
| 230 | |
| 231 | ObjectFile &Obj = **MaybeObj; |
| 232 | |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 233 | OwningBinary<ObjectFile> DebugObj; |
| 234 | std::unique_ptr<RuntimeDyld::LoadedObjectInfo> LoadedObjInfo = nullptr; |
| 235 | ObjectFile *SymbolObj = &Obj; |
| 236 | if (LoadObjects) { |
| 237 | // Load the object file |
| 238 | LoadedObjInfo = |
| 239 | Dyld.loadObject(Obj); |
Lang Hames | b5c7b1f | 2014-11-26 16:54:40 +0000 | [diff] [blame] | 240 | |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 241 | if (Dyld.hasError()) |
| 242 | return Error(Dyld.getErrorString()); |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 243 | |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 244 | // Resolve all the relocations we can. |
| 245 | Dyld.resolveRelocations(); |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 246 | |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 247 | if (UseDebugObj) { |
| 248 | DebugObj = LoadedObjInfo->getObjectForDebug(Obj); |
| 249 | SymbolObj = DebugObj.getBinary(); |
| 250 | } |
| 251 | } |
Lang Hames | b5c7b1f | 2014-11-26 16:54:40 +0000 | [diff] [blame] | 252 | |
Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 253 | std::unique_ptr<DIContext> Context( |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 254 | new DWARFContextInMemory(*SymbolObj,LoadedObjInfo.get())); |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 255 | |
Rafael Espindola | b109c03 | 2015-06-23 02:08:48 +0000 | [diff] [blame] | 256 | ErrorOr<std::vector<std::pair<SymbolRef, uint64_t>>> SymAddrOrErr = |
| 257 | object::computeSymbolSizes(*SymbolObj); |
| 258 | if (std::error_code EC = SymAddrOrErr.getError()) |
| 259 | return Error(EC.message()); |
Rafael Espindola | a82ce1d | 2015-05-31 23:15:35 +0000 | [diff] [blame] | 260 | |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 261 | // Use symbol info to iterate functions in the object. |
Rafael Espindola | b109c03 | 2015-06-23 02:08:48 +0000 | [diff] [blame] | 262 | for (const auto &P : *SymAddrOrErr) { |
| 263 | object::SymbolRef Sym = P.first; |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 264 | object::SymbolRef::Type SymType; |
Rafael Espindola | da17627 | 2015-05-31 22:13:51 +0000 | [diff] [blame] | 265 | if (Sym.getType(SymType)) |
| 266 | continue; |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 267 | if (SymType == object::SymbolRef::ST_Function) { |
| 268 | StringRef Name; |
| 269 | uint64_t Addr; |
Rafael Espindola | da17627 | 2015-05-31 22:13:51 +0000 | [diff] [blame] | 270 | if (Sym.getName(Name)) |
| 271 | continue; |
| 272 | if (Sym.getAddress(Addr)) |
| 273 | continue; |
Rafael Espindola | a82ce1d | 2015-05-31 23:15:35 +0000 | [diff] [blame] | 274 | |
Rafael Espindola | b109c03 | 2015-06-23 02:08:48 +0000 | [diff] [blame] | 275 | uint64_t Size = P.second; |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 276 | // If we're not using the debug object, compute the address of the |
| 277 | // symbol in memory (rather than that in the unrelocated object file) |
| 278 | // and use that to query the DWARFContext. |
| 279 | if (!UseDebugObj && LoadObjects) { |
| 280 | object::section_iterator Sec(SymbolObj->section_end()); |
Rafael Espindola | da17627 | 2015-05-31 22:13:51 +0000 | [diff] [blame] | 281 | Sym.getSection(Sec); |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 282 | StringRef SecName; |
| 283 | Sec->getName(SecName); |
| 284 | uint64_t SectionLoadAddress = |
| 285 | LoadedObjInfo->getSectionLoadAddress(SecName); |
| 286 | if (SectionLoadAddress != 0) |
| 287 | Addr += SectionLoadAddress - Sec->getAddress(); |
| 288 | } |
| 289 | |
| 290 | outs() << "Function: " << Name << ", Size = " << Size << ", Addr = " << Addr << "\n"; |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 291 | |
Andrew Kaylor | 9a8ff81 | 2013-01-26 00:28:05 +0000 | [diff] [blame] | 292 | DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); |
| 293 | DILineInfoTable::iterator Begin = Lines.begin(); |
| 294 | DILineInfoTable::iterator End = Lines.end(); |
| 295 | for (DILineInfoTable::iterator It = Begin; It != End; ++It) { |
| 296 | outs() << " Line info @ " << It->first - Addr << ": " |
Alexey Samsonov | d010999 | 2014-04-18 21:36:39 +0000 | [diff] [blame] | 297 | << It->second.FileName << ", line:" << It->second.Line << "\n"; |
Andrew Kaylor | 9a8ff81 | 2013-01-26 00:28:05 +0000 | [diff] [blame] | 298 | } |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 299 | } |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | return 0; |
| 304 | } |
| 305 | |
Jim Grosbach | 4d5284b | 2011-03-18 17:24:21 +0000 | [diff] [blame] | 306 | static int executeInput() { |
Lang Hames | d311c0e | 2014-05-13 22:37:41 +0000 | [diff] [blame] | 307 | // Load any dylibs requested on the command line. |
| 308 | loadDylibs(); |
| 309 | |
Jim Grosbach | f016b0a | 2011-03-21 22:15:52 +0000 | [diff] [blame] | 310 | // Instantiate a dynamic linker. |
Benjamin Kramer | 9ce7708 | 2013-08-03 22:16:31 +0000 | [diff] [blame] | 311 | TrivialMemoryManager MemMgr; |
Lang Hames | 633fe14 | 2015-03-30 03:37:06 +0000 | [diff] [blame] | 312 | RuntimeDyld Dyld(MemMgr, MemMgr); |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 313 | |
Lang Hames | c3246ad | 2015-04-15 21:18:41 +0000 | [diff] [blame] | 314 | // FIXME: Preserve buffers until resolveRelocations time to work around a bug |
| 315 | // in RuntimeDyldELF. |
| 316 | // This fixme should be fixed ASAP. This is a very brittle workaround. |
| 317 | std::vector<std::unique_ptr<MemoryBuffer>> InputBuffers; |
| 318 | |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 319 | // If we don't have any input files, read from stdin. |
| 320 | if (!InputFileList.size()) |
| 321 | InputFileList.push_back("-"); |
| 322 | for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) { |
| 323 | // Load the input memory buffer. |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 324 | ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer = |
| 325 | MemoryBuffer::getFileOrSTDIN(InputFileList[i]); |
| 326 | if (std::error_code EC = InputBuffer.getError()) |
| 327 | return Error("unable to read input: '" + EC.message() + "'"); |
Lang Hames | b5c7b1f | 2014-11-26 16:54:40 +0000 | [diff] [blame] | 328 | ErrorOr<std::unique_ptr<ObjectFile>> MaybeObj( |
| 329 | ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef())); |
| 330 | |
| 331 | if (std::error_code EC = MaybeObj.getError()) |
| 332 | return Error("unable to create object file: '" + EC.message() + "'"); |
| 333 | |
| 334 | ObjectFile &Obj = **MaybeObj; |
Lang Hames | c3246ad | 2015-04-15 21:18:41 +0000 | [diff] [blame] | 335 | InputBuffers.push_back(std::move(*InputBuffer)); |
Lang Hames | b5c7b1f | 2014-11-26 16:54:40 +0000 | [diff] [blame] | 336 | |
Andrew Kaylor | adc7056 | 2012-10-02 21:18:39 +0000 | [diff] [blame] | 337 | // Load the object file |
Lang Hames | b5c7b1f | 2014-11-26 16:54:40 +0000 | [diff] [blame] | 338 | Dyld.loadObject(Obj); |
| 339 | if (Dyld.hasError()) { |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 340 | return Error(Dyld.getErrorString()); |
| 341 | } |
Jim Grosbach | 40411cc | 2011-03-22 18:19:42 +0000 | [diff] [blame] | 342 | } |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 343 | |
Jim Grosbach | 733d305 | 2011-04-12 21:20:41 +0000 | [diff] [blame] | 344 | // Resolve all the relocations we can. |
| 345 | Dyld.resolveRelocations(); |
Danil Malyshev | 8c17fbd | 2012-05-16 18:50:11 +0000 | [diff] [blame] | 346 | // Clear instruction cache before code will be executed. |
Benjamin Kramer | 5d62ad2 | 2013-08-03 22:18:45 +0000 | [diff] [blame] | 347 | MemMgr.invalidateInstructionCache(); |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 348 | |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 349 | // FIXME: Error out if there are unresolved relocations. |
| 350 | |
Jim Grosbach | d35159a | 2011-04-13 15:38:30 +0000 | [diff] [blame] | 351 | // Get the address of the entry point (_main by default). |
Lang Hames | b118603 | 2015-03-11 00:43:26 +0000 | [diff] [blame] | 352 | void *MainAddress = Dyld.getSymbolLocalAddress(EntryPoint); |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 353 | if (!MainAddress) |
Jim Grosbach | d35159a | 2011-04-13 15:38:30 +0000 | [diff] [blame] | 354 | return Error("no definition for '" + EntryPoint + "'"); |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 355 | |
Jim Grosbach | 3ed03f1 | 2011-04-12 00:23:32 +0000 | [diff] [blame] | 356 | // Invalidate the instruction cache for each loaded function. |
Benjamin Kramer | 5d62ad2 | 2013-08-03 22:18:45 +0000 | [diff] [blame] | 357 | for (unsigned i = 0, e = MemMgr.FunctionMemory.size(); i != e; ++i) { |
| 358 | sys::MemoryBlock &Data = MemMgr.FunctionMemory[i]; |
Jim Grosbach | 3ed03f1 | 2011-04-12 00:23:32 +0000 | [diff] [blame] | 359 | // Make sure the memory is executable. |
| 360 | std::string ErrorStr; |
| 361 | sys::Memory::InvalidateInstructionCache(Data.base(), Data.size()); |
| 362 | if (!sys::Memory::setExecutable(Data, &ErrorStr)) |
| 363 | return Error("unable to mark function executable: '" + ErrorStr + "'"); |
| 364 | } |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 365 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 366 | // Dispatch to _main(). |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 367 | errs() << "loaded '" << EntryPoint << "' at: " << (void*)MainAddress << "\n"; |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 368 | |
| 369 | int (*Main)(int, const char**) = |
| 370 | (int(*)(int,const char**)) uintptr_t(MainAddress); |
| 371 | const char **Argv = new const char*[2]; |
Jim Grosbach | 7cb41d7 | 2011-04-13 15:49:40 +0000 | [diff] [blame] | 372 | // Use the name of the first input object module as argv[0] for the target. |
| 373 | Argv[0] = InputFileList[0].c_str(); |
Craig Topper | e6cb63e | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 374 | Argv[1] = nullptr; |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 375 | return Main(1, Argv); |
| 376 | } |
| 377 | |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 378 | static int checkAllExpressions(RuntimeDyldChecker &Checker) { |
| 379 | for (const auto& CheckerFileName : CheckFiles) { |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 380 | ErrorOr<std::unique_ptr<MemoryBuffer>> CheckerFileBuf = |
| 381 | MemoryBuffer::getFileOrSTDIN(CheckerFileName); |
| 382 | if (std::error_code EC = CheckerFileBuf.getError()) |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 383 | return Error("unable to read input '" + CheckerFileName + "': " + |
| 384 | EC.message()); |
| 385 | |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 386 | if (!Checker.checkAllRulesInBuffer("# rtdyld-check:", |
| 387 | CheckerFileBuf.get().get())) |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 388 | return Error("some checks in '" + CheckerFileName + "' failed"); |
| 389 | } |
| 390 | return 0; |
| 391 | } |
| 392 | |
Benjamin Kramer | f044d3f | 2015-03-09 16:23:46 +0000 | [diff] [blame] | 393 | static std::map<void *, uint64_t> |
Lang Hames | 778ef5b | 2014-09-04 04:19:54 +0000 | [diff] [blame] | 394 | applySpecificSectionMappings(RuntimeDyldChecker &Checker) { |
| 395 | |
| 396 | std::map<void*, uint64_t> SpecificMappings; |
| 397 | |
| 398 | for (StringRef Mapping : SpecificSectionMappings) { |
| 399 | |
| 400 | size_t EqualsIdx = Mapping.find_first_of("="); |
| 401 | StringRef SectionIDStr = Mapping.substr(0, EqualsIdx); |
| 402 | size_t ComaIdx = Mapping.find_first_of(","); |
| 403 | |
| 404 | if (ComaIdx == StringRef::npos) { |
| 405 | errs() << "Invalid section specification '" << Mapping |
| 406 | << "'. Should be '<file name>,<section name>=<addr>'\n"; |
| 407 | exit(1); |
| 408 | } |
| 409 | |
| 410 | StringRef FileName = SectionIDStr.substr(0, ComaIdx); |
| 411 | StringRef SectionName = SectionIDStr.substr(ComaIdx + 1); |
| 412 | |
| 413 | uint64_t OldAddrInt; |
| 414 | std::string ErrorMsg; |
| 415 | std::tie(OldAddrInt, ErrorMsg) = |
| 416 | Checker.getSectionAddr(FileName, SectionName, true); |
| 417 | |
| 418 | if (ErrorMsg != "") { |
| 419 | errs() << ErrorMsg; |
| 420 | exit(1); |
| 421 | } |
| 422 | |
| 423 | void* OldAddr = reinterpret_cast<void*>(static_cast<uintptr_t>(OldAddrInt)); |
| 424 | |
| 425 | StringRef NewAddrStr = Mapping.substr(EqualsIdx + 1); |
| 426 | uint64_t NewAddr; |
| 427 | |
| 428 | if (NewAddrStr.getAsInteger(0, NewAddr)) { |
| 429 | errs() << "Invalid section address in mapping: " << Mapping << "\n"; |
| 430 | exit(1); |
| 431 | } |
| 432 | |
| 433 | Checker.getRTDyld().mapSectionAddress(OldAddr, NewAddr); |
| 434 | SpecificMappings[OldAddr] = NewAddr; |
| 435 | } |
| 436 | |
| 437 | return SpecificMappings; |
| 438 | } |
| 439 | |
Lang Hames | 9cb7353 | 2014-07-29 23:43:13 +0000 | [diff] [blame] | 440 | // Scatter sections in all directions! |
| 441 | // Remaps section addresses for -verify mode. The following command line options |
| 442 | // can be used to customize the layout of the memory within the phony target's |
| 443 | // address space: |
| 444 | // -target-addr-start <s> -- Specify where the phony target addres range starts. |
| 445 | // -target-addr-end <e> -- Specify where the phony target address range ends. |
| 446 | // -target-section-sep <d> -- Specify how big a gap should be left between the |
| 447 | // end of one section and the start of the next. |
| 448 | // Defaults to zero. Set to something big |
| 449 | // (e.g. 1 << 32) to stress-test stubs, GOTs, etc. |
| 450 | // |
Benjamin Kramer | f044d3f | 2015-03-09 16:23:46 +0000 | [diff] [blame] | 451 | static void remapSections(const llvm::Triple &TargetTriple, |
| 452 | const TrivialMemoryManager &MemMgr, |
| 453 | RuntimeDyldChecker &Checker) { |
Lang Hames | 778ef5b | 2014-09-04 04:19:54 +0000 | [diff] [blame] | 454 | |
| 455 | // Set up a work list (section addr/size pairs). |
| 456 | typedef std::list<std::pair<void*, uint64_t>> WorklistT; |
| 457 | WorklistT Worklist; |
| 458 | |
| 459 | for (const auto& CodeSection : MemMgr.FunctionMemory) |
| 460 | Worklist.push_back(std::make_pair(CodeSection.base(), CodeSection.size())); |
| 461 | for (const auto& DataSection : MemMgr.DataMemory) |
| 462 | Worklist.push_back(std::make_pair(DataSection.base(), DataSection.size())); |
| 463 | |
| 464 | // Apply any section-specific mappings that were requested on the command |
| 465 | // line. |
| 466 | typedef std::map<void*, uint64_t> AppliedMappingsT; |
| 467 | AppliedMappingsT AppliedMappings = applySpecificSectionMappings(Checker); |
| 468 | |
| 469 | // Keep an "already allocated" mapping of section target addresses to sizes. |
| 470 | // Sections whose address mappings aren't specified on the command line will |
| 471 | // allocated around the explicitly mapped sections while maintaining the |
| 472 | // minimum separation. |
| 473 | std::map<uint64_t, uint64_t> AlreadyAllocated; |
| 474 | |
| 475 | // Move the previously applied mappings into the already-allocated map. |
| 476 | for (WorklistT::iterator I = Worklist.begin(), E = Worklist.end(); |
| 477 | I != E;) { |
| 478 | WorklistT::iterator Tmp = I; |
| 479 | ++I; |
| 480 | AppliedMappingsT::iterator AI = AppliedMappings.find(Tmp->first); |
| 481 | |
| 482 | if (AI != AppliedMappings.end()) { |
| 483 | AlreadyAllocated[AI->second] = Tmp->second; |
| 484 | Worklist.erase(Tmp); |
| 485 | } |
| 486 | } |
Lang Hames | 9cb7353 | 2014-07-29 23:43:13 +0000 | [diff] [blame] | 487 | |
| 488 | // If the -target-addr-end option wasn't explicitly passed, then set it to a |
| 489 | // sensible default based on the target triple. |
| 490 | if (TargetAddrEnd.getNumOccurrences() == 0) { |
| 491 | if (TargetTriple.isArch16Bit()) |
| 492 | TargetAddrEnd = (1ULL << 16) - 1; |
| 493 | else if (TargetTriple.isArch32Bit()) |
| 494 | TargetAddrEnd = (1ULL << 32) - 1; |
| 495 | // TargetAddrEnd already has a sensible default for 64-bit systems, so |
| 496 | // there's nothing to do in the 64-bit case. |
| 497 | } |
| 498 | |
Lang Hames | 778ef5b | 2014-09-04 04:19:54 +0000 | [diff] [blame] | 499 | // Process any elements remaining in the worklist. |
| 500 | while (!Worklist.empty()) { |
| 501 | std::pair<void*, uint64_t> CurEntry = Worklist.front(); |
| 502 | Worklist.pop_front(); |
Lang Hames | 9cb7353 | 2014-07-29 23:43:13 +0000 | [diff] [blame] | 503 | |
Lang Hames | 778ef5b | 2014-09-04 04:19:54 +0000 | [diff] [blame] | 504 | uint64_t NextSectionAddr = TargetAddrStart; |
| 505 | |
| 506 | for (const auto &Alloc : AlreadyAllocated) |
| 507 | if (NextSectionAddr + CurEntry.second + TargetSectionSep <= Alloc.first) |
| 508 | break; |
| 509 | else |
| 510 | NextSectionAddr = Alloc.first + Alloc.second + TargetSectionSep; |
| 511 | |
| 512 | AlreadyAllocated[NextSectionAddr] = CurEntry.second; |
| 513 | Checker.getRTDyld().mapSectionAddress(CurEntry.first, NextSectionAddr); |
Lang Hames | 9cb7353 | 2014-07-29 23:43:13 +0000 | [diff] [blame] | 514 | } |
| 515 | |
Lang Hames | 9cb7353 | 2014-07-29 23:43:13 +0000 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | // Load and link the objects specified on the command line, but do not execute |
| 519 | // anything. Instead, attach a RuntimeDyldChecker instance and call it to |
| 520 | // verify the correctness of the linked memory. |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 521 | static int linkAndVerify() { |
| 522 | |
| 523 | // Check for missing triple. |
| 524 | if (TripleName == "") { |
| 525 | llvm::errs() << "Error: -triple required when running in -verify mode.\n"; |
| 526 | return 1; |
| 527 | } |
| 528 | |
| 529 | // Look up the target and build the disassembler. |
| 530 | Triple TheTriple(Triple::normalize(TripleName)); |
| 531 | std::string ErrorStr; |
| 532 | const Target *TheTarget = |
| 533 | TargetRegistry::lookupTarget("", TheTriple, ErrorStr); |
| 534 | if (!TheTarget) { |
| 535 | llvm::errs() << "Error accessing target '" << TripleName << "': " |
| 536 | << ErrorStr << "\n"; |
| 537 | return 1; |
| 538 | } |
| 539 | TripleName = TheTriple.getTriple(); |
| 540 | |
| 541 | std::unique_ptr<MCSubtargetInfo> STI( |
| 542 | TheTarget->createMCSubtargetInfo(TripleName, "", "")); |
| 543 | assert(STI && "Unable to create subtarget info!"); |
| 544 | |
| 545 | std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName)); |
| 546 | assert(MRI && "Unable to create target register info!"); |
| 547 | |
| 548 | std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TripleName)); |
| 549 | assert(MAI && "Unable to create target asm info!"); |
| 550 | |
| 551 | MCContext Ctx(MAI.get(), MRI.get(), nullptr); |
| 552 | |
| 553 | std::unique_ptr<MCDisassembler> Disassembler( |
| 554 | TheTarget->createMCDisassembler(*STI, Ctx)); |
| 555 | assert(Disassembler && "Unable to create disassembler!"); |
| 556 | |
| 557 | std::unique_ptr<MCInstrInfo> MII(TheTarget->createMCInstrInfo()); |
| 558 | |
| 559 | std::unique_ptr<MCInstPrinter> InstPrinter( |
Eric Christopher | f801940 | 2015-03-31 00:10:04 +0000 | [diff] [blame] | 560 | TheTarget->createMCInstPrinter(Triple(TripleName), 0, *MAI, *MII, *MRI)); |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 561 | |
| 562 | // Load any dylibs requested on the command line. |
| 563 | loadDylibs(); |
| 564 | |
| 565 | // Instantiate a dynamic linker. |
| 566 | TrivialMemoryManager MemMgr; |
Lang Hames | 633fe14 | 2015-03-30 03:37:06 +0000 | [diff] [blame] | 567 | RuntimeDyld Dyld(MemMgr, MemMgr); |
Lang Hames | 925e51b | 2014-09-03 05:42:52 +0000 | [diff] [blame] | 568 | Dyld.setProcessAllSections(true); |
Lang Hames | f7acddd | 2014-07-22 22:47:39 +0000 | [diff] [blame] | 569 | RuntimeDyldChecker Checker(Dyld, Disassembler.get(), InstPrinter.get(), |
| 570 | llvm::dbgs()); |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 571 | |
Lang Hames | c3246ad | 2015-04-15 21:18:41 +0000 | [diff] [blame] | 572 | // FIXME: Preserve buffers until resolveRelocations time to work around a bug |
| 573 | // in RuntimeDyldELF. |
| 574 | // This fixme should be fixed ASAP. This is a very brittle workaround. |
| 575 | std::vector<std::unique_ptr<MemoryBuffer>> InputBuffers; |
| 576 | |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 577 | // If we don't have any input files, read from stdin. |
| 578 | if (!InputFileList.size()) |
| 579 | InputFileList.push_back("-"); |
| 580 | for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) { |
| 581 | // Load the input memory buffer. |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 582 | ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer = |
| 583 | MemoryBuffer::getFileOrSTDIN(InputFileList[i]); |
Lang Hames | b5c7b1f | 2014-11-26 16:54:40 +0000 | [diff] [blame] | 584 | |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 585 | if (std::error_code EC = InputBuffer.getError()) |
| 586 | return Error("unable to read input: '" + EC.message() + "'"); |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 587 | |
Lang Hames | b5c7b1f | 2014-11-26 16:54:40 +0000 | [diff] [blame] | 588 | ErrorOr<std::unique_ptr<ObjectFile>> MaybeObj( |
| 589 | ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef())); |
| 590 | |
| 591 | if (std::error_code EC = MaybeObj.getError()) |
| 592 | return Error("unable to create object file: '" + EC.message() + "'"); |
| 593 | |
| 594 | ObjectFile &Obj = **MaybeObj; |
Lang Hames | c3246ad | 2015-04-15 21:18:41 +0000 | [diff] [blame] | 595 | InputBuffers.push_back(std::move(*InputBuffer)); |
Lang Hames | b5c7b1f | 2014-11-26 16:54:40 +0000 | [diff] [blame] | 596 | |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 597 | // Load the object file |
Lang Hames | b5c7b1f | 2014-11-26 16:54:40 +0000 | [diff] [blame] | 598 | Dyld.loadObject(Obj); |
| 599 | if (Dyld.hasError()) { |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 600 | return Error(Dyld.getErrorString()); |
| 601 | } |
| 602 | } |
| 603 | |
Lang Hames | 375385f | 2014-07-30 03:12:41 +0000 | [diff] [blame] | 604 | // Re-map the section addresses into the phony target address space. |
Lang Hames | 778ef5b | 2014-09-04 04:19:54 +0000 | [diff] [blame] | 605 | remapSections(TheTriple, MemMgr, Checker); |
Lang Hames | 375385f | 2014-07-30 03:12:41 +0000 | [diff] [blame] | 606 | |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 607 | // Resolve all the relocations we can. |
| 608 | Dyld.resolveRelocations(); |
| 609 | |
Lang Hames | 925e51b | 2014-09-03 05:42:52 +0000 | [diff] [blame] | 610 | // Register EH frames. |
| 611 | Dyld.registerEHFrames(); |
| 612 | |
Lang Hames | ae17268 | 2014-08-05 20:51:46 +0000 | [diff] [blame] | 613 | int ErrorCode = checkAllExpressions(Checker); |
| 614 | if (Dyld.hasError()) { |
| 615 | errs() << "RTDyld reported an error applying relocations:\n " |
| 616 | << Dyld.getErrorString() << "\n"; |
| 617 | ErrorCode = 1; |
| 618 | } |
| 619 | |
| 620 | return ErrorCode; |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 621 | } |
| 622 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 623 | int main(int argc, char **argv) { |
Alp Toker | 9f67932 | 2013-11-05 09:33:43 +0000 | [diff] [blame] | 624 | sys::PrintStackTraceOnErrorSignal(); |
| 625 | PrettyStackTraceProgram X(argc, argv); |
| 626 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 627 | ProgramName = argv[0]; |
| 628 | llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. |
| 629 | |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 630 | llvm::InitializeAllTargetInfos(); |
| 631 | llvm::InitializeAllTargetMCs(); |
| 632 | llvm::InitializeAllDisassemblers(); |
| 633 | |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 634 | cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n"); |
| 635 | |
| 636 | switch (Action) { |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 637 | case AC_Execute: |
Jim Grosbach | 4d5284b | 2011-03-18 17:24:21 +0000 | [diff] [blame] | 638 | return executeInput(); |
Keno Fischer | c780e8e | 2015-05-21 21:24:32 +0000 | [diff] [blame] | 639 | case AC_PrintDebugLineInfo: |
Keno Fischer | 281b694 | 2015-05-30 19:44:53 +0000 | [diff] [blame] | 640 | return printLineInfoForInput(/* LoadObjects */ true,/* UseDebugObj */ true); |
Andrew Kaylor | d55d701 | 2013-01-25 22:50:58 +0000 | [diff] [blame] | 641 | case AC_PrintLineInfo: |
Keno Fischer | 281b694 | 2015-05-30 19:44:53 +0000 | [diff] [blame] | 642 | return printLineInfoForInput(/* LoadObjects */ true,/* UseDebugObj */false); |
| 643 | case AC_PrintObjectLineInfo: |
| 644 | return printLineInfoForInput(/* LoadObjects */false,/* UseDebugObj */false); |
Lang Hames | e1c1138 | 2014-06-27 20:20:57 +0000 | [diff] [blame] | 645 | case AC_Verify: |
| 646 | return linkAndVerify(); |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 647 | } |
Jim Grosbach | 0072cdb | 2011-03-18 17:11:39 +0000 | [diff] [blame] | 648 | } |