blob: 50eb87ab934a1fdc0e710f53f2857c3e63f59ea0 [file] [log] [blame]
Jim Grosbach0072cdb2011-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
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000014#include "llvm/ADT/StringMap.h"
Zachary Turner6489d7b2015-04-23 17:37:47 +000015#include "llvm/DebugInfo/DIContext.h"
16#include "llvm/DebugInfo/DWARF/DWARFContext.h"
Lang Hames633fe142015-03-30 03:37:06 +000017#include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000018#include "llvm/ExecutionEngine/RuntimeDyld.h"
Lang Hamese1c11382014-06-27 20:20:57 +000019#include "llvm/ExecutionEngine/RuntimeDyldChecker.h"
20#include "llvm/MC/MCAsmInfo.h"
21#include "llvm/MC/MCContext.h"
22#include "llvm/MC/MCDisassembler.h"
Lang Hamese1c11382014-06-27 20:20:57 +000023#include "llvm/MC/MCInstPrinter.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000024#include "llvm/MC/MCInstrInfo.h"
Lang Hamese1c11382014-06-27 20:20:57 +000025#include "llvm/MC/MCRegisterInfo.h"
Pete Cooper3de83e42015-05-15 21:58:42 +000026#include "llvm/MC/MCSubtargetInfo.h"
Rafael Espindola6e040c02013-04-26 20:07:33 +000027#include "llvm/Object/MachO.h"
Rafael Espindolab109c032015-06-23 02:08:48 +000028#include "llvm/Object/SymbolSize.h"
Jim Grosbach0072cdb2011-03-18 17:11:39 +000029#include "llvm/Support/CommandLine.h"
Lang Hamesd311c0e2014-05-13 22:37:41 +000030#include "llvm/Support/DynamicLibrary.h"
Jim Grosbach0072cdb2011-03-18 17:11:39 +000031#include "llvm/Support/ManagedStatic.h"
32#include "llvm/Support/Memory.h"
33#include "llvm/Support/MemoryBuffer.h"
Alp Toker9f679322013-11-05 09:33:43 +000034#include "llvm/Support/PrettyStackTrace.h"
Lang Hamese1c11382014-06-27 20:20:57 +000035#include "llvm/Support/Signals.h"
36#include "llvm/Support/TargetRegistry.h"
37#include "llvm/Support/TargetSelect.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000038#include "llvm/Support/raw_ostream.h"
Lang Hames778ef5b2014-09-04 04:19:54 +000039#include <list>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000040#include <system_error>
Lang Hamese1c11382014-06-27 20:20:57 +000041
Jim Grosbach0072cdb2011-03-18 17:11:39 +000042using namespace llvm;
43using namespace llvm::object;
44
Jim Grosbach7cb41d72011-04-13 15:49:40 +000045static cl::list<std::string>
46InputFileList(cl::Positional, cl::ZeroOrMore,
47 cl::desc("<input file>"));
Jim Grosbach0072cdb2011-03-18 17:11:39 +000048
49enum ActionType {
Andrew Kaylord55d7012013-01-25 22:50:58 +000050 AC_Execute,
Keno Fischer281b6942015-05-30 19:44:53 +000051 AC_PrintObjectLineInfo,
Lang Hamese1c11382014-06-27 20:20:57 +000052 AC_PrintLineInfo,
Keno Fischerc780e8e2015-05-21 21:24:32 +000053 AC_PrintDebugLineInfo,
Lang Hamese1c11382014-06-27 20:20:57 +000054 AC_Verify
Jim Grosbach0072cdb2011-03-18 17:11:39 +000055};
56
57static cl::opt<ActionType>
58Action(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 Kaylord55d7012013-01-25 22:50:58 +000062 clEnumValN(AC_PrintLineInfo, "printline",
63 "Load, link, and print line information for each function."),
Keno Fischerc780e8e2015-05-21 21:24:32 +000064 clEnumValN(AC_PrintDebugLineInfo, "printdebugline",
65 "Load, link, and print line information for each function using the debug object"),
Keno Fischer281b6942015-05-30 19:44:53 +000066 clEnumValN(AC_PrintObjectLineInfo, "printobjline",
67 "Like -printlineinfo but does not load the object first"),
Lang Hamese1c11382014-06-27 20:20:57 +000068 clEnumValN(AC_Verify, "verify",
69 "Load, link and verify the resulting memory image."),
Jim Grosbach0072cdb2011-03-18 17:11:39 +000070 clEnumValEnd));
71
Jim Grosbachd35159a2011-04-13 15:38:30 +000072static cl::opt<std::string>
73EntryPoint("entry",
74 cl::desc("Function to call as entry point."),
75 cl::init("_main"));
76
Lang Hamesd311c0e2014-05-13 22:37:41 +000077static cl::list<std::string>
78Dylibs("dylib",
79 cl::desc("Add library."),
80 cl::ZeroOrMore);
81
Lang Hamese1c11382014-06-27 20:20:57 +000082static cl::opt<std::string>
83TripleName("triple", cl::desc("Target triple for disassembler"));
84
Petar Jovanovic280e5622015-06-23 22:52:19 +000085static cl::opt<std::string>
86MCPU("mcpu",
87 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
88 cl::value_desc("cpu-name"),
89 cl::init(""));
90
Lang Hamese1c11382014-06-27 20:20:57 +000091static cl::list<std::string>
92CheckFiles("check",
93 cl::desc("File containing RuntimeDyld verifier checks."),
94 cl::ZeroOrMore);
95
Lang Hames9cb73532014-07-29 23:43:13 +000096static cl::opt<uint64_t>
97TargetAddrStart("target-addr-start",
98 cl::desc("For -verify only: start of phony target address "
99 "range."),
100 cl::init(4096), // Start at "page 1" - no allocating at "null".
101 cl::Hidden);
102
103static cl::opt<uint64_t>
104TargetAddrEnd("target-addr-end",
105 cl::desc("For -verify only: end of phony target address range."),
106 cl::init(~0ULL),
107 cl::Hidden);
108
109static cl::opt<uint64_t>
110TargetSectionSep("target-section-sep",
111 cl::desc("For -verify only: Separation between sections in "
112 "phony target address space."),
113 cl::init(0),
114 cl::Hidden);
115
Lang Hames778ef5b2014-09-04 04:19:54 +0000116static cl::list<std::string>
117SpecificSectionMappings("map-section",
118 cl::desc("Map a section to a specific address."),
119 cl::ZeroOrMore);
120
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000121/* *** */
122
Jim Grosbach2dcef0502011-04-04 23:04:39 +0000123// A trivial memory manager that doesn't do anything fancy, just uses the
124// support library allocation routines directly.
125class TrivialMemoryManager : public RTDyldMemoryManager {
126public:
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000127 SmallVector<sys::MemoryBlock, 16> FunctionMemory;
Jim Grosbacheff0a402012-01-16 22:26:39 +0000128 SmallVector<sys::MemoryBlock, 16> DataMemory;
129
130 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
Craig Toppere56917c2014-03-08 08:27:28 +0000131 unsigned SectionID,
132 StringRef SectionName) override;
Jim Grosbacheff0a402012-01-16 22:26:39 +0000133 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000134 unsigned SectionID, StringRef SectionName,
Craig Toppere56917c2014-03-08 08:27:28 +0000135 bool IsReadOnly) override;
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000136
Craig Toppere56917c2014-03-08 08:27:28 +0000137 void *getPointerToNamedFunction(const std::string &Name,
138 bool AbortOnFailure = true) override {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000139 return nullptr;
Danil Malyshevbfee5422012-03-28 21:46:36 +0000140 }
141
Craig Toppere56917c2014-03-08 08:27:28 +0000142 bool finalizeMemory(std::string *ErrMsg) override { return false; }
Andrew Kaylora342cb92012-11-15 23:50:01 +0000143
Danil Malyshev8c17fbd2012-05-16 18:50:11 +0000144 // Invalidate instruction cache for sections with execute permissions.
145 // Some platforms with separate data cache and instruction cache require
146 // explicit cache flush, otherwise JIT code manipulations (like resolved
147 // relocations) will get to the data cache but not to the instruction cache.
148 virtual void invalidateInstructionCache();
Tim Northover5af339a2015-06-03 18:26:52 +0000149
150 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
151 size_t Size) override {}
152 void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr,
153 size_t Size) override {}
Jim Grosbach2dcef0502011-04-04 23:04:39 +0000154};
155
Jim Grosbacheff0a402012-01-16 22:26:39 +0000156uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size,
157 unsigned Alignment,
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000158 unsigned SectionID,
159 StringRef SectionName) {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000160 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr);
Danil Malyshev8c17fbd2012-05-16 18:50:11 +0000161 FunctionMemory.push_back(MB);
162 return (uint8_t*)MB.base();
Jim Grosbacheff0a402012-01-16 22:26:39 +0000163}
164
165uint8_t *TrivialMemoryManager::allocateDataSection(uintptr_t Size,
166 unsigned Alignment,
Andrew Kaylora342cb92012-11-15 23:50:01 +0000167 unsigned SectionID,
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000168 StringRef SectionName,
Andrew Kaylora342cb92012-11-15 23:50:01 +0000169 bool IsReadOnly) {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000170 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr);
Danil Malyshev8c17fbd2012-05-16 18:50:11 +0000171 DataMemory.push_back(MB);
172 return (uint8_t*)MB.base();
173}
174
175void TrivialMemoryManager::invalidateInstructionCache() {
176 for (int i = 0, e = FunctionMemory.size(); i != e; ++i)
177 sys::Memory::InvalidateInstructionCache(FunctionMemory[i].base(),
178 FunctionMemory[i].size());
179
180 for (int i = 0, e = DataMemory.size(); i != e; ++i)
181 sys::Memory::InvalidateInstructionCache(DataMemory[i].base(),
182 DataMemory[i].size());
Jim Grosbacheff0a402012-01-16 22:26:39 +0000183}
184
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000185static const char *ProgramName;
186
187static void Message(const char *Type, const Twine &Msg) {
188 errs() << ProgramName << ": " << Type << ": " << Msg << "\n";
189}
190
191static int Error(const Twine &Msg) {
192 Message("error", Msg);
193 return 1;
194}
195
Lang Hamesd311c0e2014-05-13 22:37:41 +0000196static void loadDylibs() {
197 for (const std::string &Dylib : Dylibs) {
198 if (sys::fs::is_regular_file(Dylib)) {
199 std::string ErrMsg;
200 if (sys::DynamicLibrary::LoadLibraryPermanently(Dylib.c_str(), &ErrMsg))
201 llvm::errs() << "Error loading '" << Dylib << "': "
202 << ErrMsg << "\n";
203 } else
204 llvm::errs() << "Dylib not found: '" << Dylib << "'.\n";
205 }
206}
207
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000208/* *** */
209
Keno Fischerc780e8e2015-05-21 21:24:32 +0000210static int printLineInfoForInput(bool LoadObjects, bool UseDebugObj) {
211 assert(LoadObjects || !UseDebugObj);
212
Lang Hamesd311c0e2014-05-13 22:37:41 +0000213 // Load any dylibs requested on the command line.
214 loadDylibs();
215
Andrew Kaylord55d7012013-01-25 22:50:58 +0000216 // If we don't have any input files, read from stdin.
217 if (!InputFileList.size())
218 InputFileList.push_back("-");
219 for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) {
220 // Instantiate a dynamic linker.
Benjamin Kramer9ce77082013-08-03 22:16:31 +0000221 TrivialMemoryManager MemMgr;
Lang Hames633fe142015-03-30 03:37:06 +0000222 RuntimeDyld Dyld(MemMgr, MemMgr);
Andrew Kaylord55d7012013-01-25 22:50:58 +0000223
224 // Load the input memory buffer.
Andrew Kaylord55d7012013-01-25 22:50:58 +0000225
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000226 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
227 MemoryBuffer::getFileOrSTDIN(InputFileList[i]);
228 if (std::error_code EC = InputBuffer.getError())
229 return Error("unable to read input: '" + EC.message() + "'");
230
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000231 ErrorOr<std::unique_ptr<ObjectFile>> MaybeObj(
232 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
233
234 if (std::error_code EC = MaybeObj.getError())
235 return Error("unable to create object file: '" + EC.message() + "'");
236
237 ObjectFile &Obj = **MaybeObj;
238
Keno Fischerc780e8e2015-05-21 21:24:32 +0000239 OwningBinary<ObjectFile> DebugObj;
240 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> LoadedObjInfo = nullptr;
241 ObjectFile *SymbolObj = &Obj;
242 if (LoadObjects) {
243 // Load the object file
244 LoadedObjInfo =
245 Dyld.loadObject(Obj);
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000246
Keno Fischerc780e8e2015-05-21 21:24:32 +0000247 if (Dyld.hasError())
248 return Error(Dyld.getErrorString());
Andrew Kaylord55d7012013-01-25 22:50:58 +0000249
Keno Fischerc780e8e2015-05-21 21:24:32 +0000250 // Resolve all the relocations we can.
251 Dyld.resolveRelocations();
Andrew Kaylord55d7012013-01-25 22:50:58 +0000252
Keno Fischerc780e8e2015-05-21 21:24:32 +0000253 if (UseDebugObj) {
254 DebugObj = LoadedObjInfo->getObjectForDebug(Obj);
255 SymbolObj = DebugObj.getBinary();
256 }
257 }
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000258
Ahmed Charles56440fd2014-03-06 05:51:42 +0000259 std::unique_ptr<DIContext> Context(
Keno Fischerc780e8e2015-05-21 21:24:32 +0000260 new DWARFContextInMemory(*SymbolObj,LoadedObjInfo.get()));
Andrew Kaylord55d7012013-01-25 22:50:58 +0000261
Rafael Espindola6bf32212015-06-24 19:57:32 +0000262 std::vector<std::pair<SymbolRef, uint64_t>> SymAddr =
Rafael Espindolab109c032015-06-23 02:08:48 +0000263 object::computeSymbolSizes(*SymbolObj);
Rafael Espindolaa82ce1d2015-05-31 23:15:35 +0000264
Andrew Kaylord55d7012013-01-25 22:50:58 +0000265 // Use symbol info to iterate functions in the object.
Rafael Espindola6bf32212015-06-24 19:57:32 +0000266 for (const auto &P : SymAddr) {
Rafael Espindolab109c032015-06-23 02:08:48 +0000267 object::SymbolRef Sym = P.first;
Rafael Espindola2fa80cc2015-06-26 12:18:49 +0000268 if (Sym.getType() == object::SymbolRef::ST_Function) {
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000269 ErrorOr<StringRef> Name = Sym.getName();
270 if (!Name)
Rafael Espindolada176272015-05-31 22:13:51 +0000271 continue;
Rafael Espindolaed067c42015-07-03 18:19:00 +0000272 ErrorOr<uint64_t> AddrOrErr = Sym.getAddress();
273 if (!AddrOrErr)
Rafael Espindolada176272015-05-31 22:13:51 +0000274 continue;
Rafael Espindolaed067c42015-07-03 18:19:00 +0000275 uint64_t Addr = *AddrOrErr;
Rafael Espindolaa82ce1d2015-05-31 23:15:35 +0000276
Rafael Espindolab109c032015-06-23 02:08:48 +0000277 uint64_t Size = P.second;
Keno Fischerc780e8e2015-05-21 21:24:32 +0000278 // If we're not using the debug object, compute the address of the
279 // symbol in memory (rather than that in the unrelocated object file)
280 // and use that to query the DWARFContext.
281 if (!UseDebugObj && LoadObjects) {
282 object::section_iterator Sec(SymbolObj->section_end());
Rafael Espindolada176272015-05-31 22:13:51 +0000283 Sym.getSection(Sec);
Keno Fischerc780e8e2015-05-21 21:24:32 +0000284 StringRef SecName;
285 Sec->getName(SecName);
286 uint64_t SectionLoadAddress =
287 LoadedObjInfo->getSectionLoadAddress(SecName);
288 if (SectionLoadAddress != 0)
289 Addr += SectionLoadAddress - Sec->getAddress();
290 }
291
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000292 outs() << "Function: " << *Name << ", Size = " << Size
293 << ", Addr = " << Addr << "\n";
Andrew Kaylord55d7012013-01-25 22:50:58 +0000294
Andrew Kaylor9a8ff812013-01-26 00:28:05 +0000295 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
296 DILineInfoTable::iterator Begin = Lines.begin();
297 DILineInfoTable::iterator End = Lines.end();
298 for (DILineInfoTable::iterator It = Begin; It != End; ++It) {
299 outs() << " Line info @ " << It->first - Addr << ": "
Alexey Samsonovd0109992014-04-18 21:36:39 +0000300 << It->second.FileName << ", line:" << It->second.Line << "\n";
Andrew Kaylor9a8ff812013-01-26 00:28:05 +0000301 }
Andrew Kaylord55d7012013-01-25 22:50:58 +0000302 }
303 }
304 }
305
306 return 0;
307}
308
Jim Grosbach4d5284b2011-03-18 17:24:21 +0000309static int executeInput() {
Lang Hamesd311c0e2014-05-13 22:37:41 +0000310 // Load any dylibs requested on the command line.
311 loadDylibs();
312
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000313 // Instantiate a dynamic linker.
Benjamin Kramer9ce77082013-08-03 22:16:31 +0000314 TrivialMemoryManager MemMgr;
Lang Hames633fe142015-03-30 03:37:06 +0000315 RuntimeDyld Dyld(MemMgr, MemMgr);
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000316
Lang Hamesc3246ad2015-04-15 21:18:41 +0000317 // FIXME: Preserve buffers until resolveRelocations time to work around a bug
318 // in RuntimeDyldELF.
319 // This fixme should be fixed ASAP. This is a very brittle workaround.
320 std::vector<std::unique_ptr<MemoryBuffer>> InputBuffers;
321
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000322 // If we don't have any input files, read from stdin.
323 if (!InputFileList.size())
324 InputFileList.push_back("-");
325 for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) {
326 // Load the input memory buffer.
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000327 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
328 MemoryBuffer::getFileOrSTDIN(InputFileList[i]);
329 if (std::error_code EC = InputBuffer.getError())
330 return Error("unable to read input: '" + EC.message() + "'");
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000331 ErrorOr<std::unique_ptr<ObjectFile>> MaybeObj(
332 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
333
334 if (std::error_code EC = MaybeObj.getError())
335 return Error("unable to create object file: '" + EC.message() + "'");
336
337 ObjectFile &Obj = **MaybeObj;
Lang Hamesc3246ad2015-04-15 21:18:41 +0000338 InputBuffers.push_back(std::move(*InputBuffer));
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000339
Andrew Kayloradc70562012-10-02 21:18:39 +0000340 // Load the object file
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000341 Dyld.loadObject(Obj);
342 if (Dyld.hasError()) {
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000343 return Error(Dyld.getErrorString());
344 }
Jim Grosbach40411cc2011-03-22 18:19:42 +0000345 }
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000346
Jim Grosbach733d3052011-04-12 21:20:41 +0000347 // Resolve all the relocations we can.
348 Dyld.resolveRelocations();
Danil Malyshev8c17fbd2012-05-16 18:50:11 +0000349 // Clear instruction cache before code will be executed.
Benjamin Kramer5d62ad22013-08-03 22:18:45 +0000350 MemMgr.invalidateInstructionCache();
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000351
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000352 // FIXME: Error out if there are unresolved relocations.
353
Jim Grosbachd35159a2011-04-13 15:38:30 +0000354 // Get the address of the entry point (_main by default).
Lang Hamesb1186032015-03-11 00:43:26 +0000355 void *MainAddress = Dyld.getSymbolLocalAddress(EntryPoint);
Craig Toppere6cb63e2014-04-25 04:24:47 +0000356 if (!MainAddress)
Jim Grosbachd35159a2011-04-13 15:38:30 +0000357 return Error("no definition for '" + EntryPoint + "'");
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000358
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000359 // Invalidate the instruction cache for each loaded function.
Benjamin Kramer5d62ad22013-08-03 22:18:45 +0000360 for (unsigned i = 0, e = MemMgr.FunctionMemory.size(); i != e; ++i) {
361 sys::MemoryBlock &Data = MemMgr.FunctionMemory[i];
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000362 // Make sure the memory is executable.
363 std::string ErrorStr;
364 sys::Memory::InvalidateInstructionCache(Data.base(), Data.size());
365 if (!sys::Memory::setExecutable(Data, &ErrorStr))
366 return Error("unable to mark function executable: '" + ErrorStr + "'");
367 }
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000368
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000369 // Dispatch to _main().
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000370 errs() << "loaded '" << EntryPoint << "' at: " << (void*)MainAddress << "\n";
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000371
372 int (*Main)(int, const char**) =
373 (int(*)(int,const char**)) uintptr_t(MainAddress);
374 const char **Argv = new const char*[2];
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000375 // Use the name of the first input object module as argv[0] for the target.
376 Argv[0] = InputFileList[0].c_str();
Craig Toppere6cb63e2014-04-25 04:24:47 +0000377 Argv[1] = nullptr;
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000378 return Main(1, Argv);
379}
380
Lang Hamese1c11382014-06-27 20:20:57 +0000381static int checkAllExpressions(RuntimeDyldChecker &Checker) {
382 for (const auto& CheckerFileName : CheckFiles) {
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000383 ErrorOr<std::unique_ptr<MemoryBuffer>> CheckerFileBuf =
384 MemoryBuffer::getFileOrSTDIN(CheckerFileName);
385 if (std::error_code EC = CheckerFileBuf.getError())
Lang Hamese1c11382014-06-27 20:20:57 +0000386 return Error("unable to read input '" + CheckerFileName + "': " +
387 EC.message());
388
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000389 if (!Checker.checkAllRulesInBuffer("# rtdyld-check:",
390 CheckerFileBuf.get().get()))
Lang Hamese1c11382014-06-27 20:20:57 +0000391 return Error("some checks in '" + CheckerFileName + "' failed");
392 }
393 return 0;
394}
395
Benjamin Kramerf044d3f2015-03-09 16:23:46 +0000396static std::map<void *, uint64_t>
Lang Hames778ef5b2014-09-04 04:19:54 +0000397applySpecificSectionMappings(RuntimeDyldChecker &Checker) {
398
399 std::map<void*, uint64_t> SpecificMappings;
400
401 for (StringRef Mapping : SpecificSectionMappings) {
402
403 size_t EqualsIdx = Mapping.find_first_of("=");
404 StringRef SectionIDStr = Mapping.substr(0, EqualsIdx);
405 size_t ComaIdx = Mapping.find_first_of(",");
406
407 if (ComaIdx == StringRef::npos) {
408 errs() << "Invalid section specification '" << Mapping
409 << "'. Should be '<file name>,<section name>=<addr>'\n";
410 exit(1);
411 }
412
413 StringRef FileName = SectionIDStr.substr(0, ComaIdx);
414 StringRef SectionName = SectionIDStr.substr(ComaIdx + 1);
415
416 uint64_t OldAddrInt;
417 std::string ErrorMsg;
418 std::tie(OldAddrInt, ErrorMsg) =
419 Checker.getSectionAddr(FileName, SectionName, true);
420
421 if (ErrorMsg != "") {
422 errs() << ErrorMsg;
423 exit(1);
424 }
425
426 void* OldAddr = reinterpret_cast<void*>(static_cast<uintptr_t>(OldAddrInt));
427
428 StringRef NewAddrStr = Mapping.substr(EqualsIdx + 1);
429 uint64_t NewAddr;
430
431 if (NewAddrStr.getAsInteger(0, NewAddr)) {
432 errs() << "Invalid section address in mapping: " << Mapping << "\n";
433 exit(1);
434 }
435
436 Checker.getRTDyld().mapSectionAddress(OldAddr, NewAddr);
437 SpecificMappings[OldAddr] = NewAddr;
438 }
439
440 return SpecificMappings;
441}
442
Lang Hames9cb73532014-07-29 23:43:13 +0000443// Scatter sections in all directions!
444// Remaps section addresses for -verify mode. The following command line options
445// can be used to customize the layout of the memory within the phony target's
446// address space:
447// -target-addr-start <s> -- Specify where the phony target addres range starts.
448// -target-addr-end <e> -- Specify where the phony target address range ends.
449// -target-section-sep <d> -- Specify how big a gap should be left between the
450// end of one section and the start of the next.
451// Defaults to zero. Set to something big
452// (e.g. 1 << 32) to stress-test stubs, GOTs, etc.
453//
Benjamin Kramerf044d3f2015-03-09 16:23:46 +0000454static void remapSections(const llvm::Triple &TargetTriple,
455 const TrivialMemoryManager &MemMgr,
456 RuntimeDyldChecker &Checker) {
Lang Hames778ef5b2014-09-04 04:19:54 +0000457
458 // Set up a work list (section addr/size pairs).
459 typedef std::list<std::pair<void*, uint64_t>> WorklistT;
460 WorklistT Worklist;
461
462 for (const auto& CodeSection : MemMgr.FunctionMemory)
463 Worklist.push_back(std::make_pair(CodeSection.base(), CodeSection.size()));
464 for (const auto& DataSection : MemMgr.DataMemory)
465 Worklist.push_back(std::make_pair(DataSection.base(), DataSection.size()));
466
467 // Apply any section-specific mappings that were requested on the command
468 // line.
469 typedef std::map<void*, uint64_t> AppliedMappingsT;
470 AppliedMappingsT AppliedMappings = applySpecificSectionMappings(Checker);
471
472 // Keep an "already allocated" mapping of section target addresses to sizes.
473 // Sections whose address mappings aren't specified on the command line will
474 // allocated around the explicitly mapped sections while maintaining the
475 // minimum separation.
476 std::map<uint64_t, uint64_t> AlreadyAllocated;
477
478 // Move the previously applied mappings into the already-allocated map.
479 for (WorklistT::iterator I = Worklist.begin(), E = Worklist.end();
480 I != E;) {
481 WorklistT::iterator Tmp = I;
482 ++I;
483 AppliedMappingsT::iterator AI = AppliedMappings.find(Tmp->first);
484
485 if (AI != AppliedMappings.end()) {
486 AlreadyAllocated[AI->second] = Tmp->second;
487 Worklist.erase(Tmp);
488 }
489 }
Lang Hames9cb73532014-07-29 23:43:13 +0000490
491 // If the -target-addr-end option wasn't explicitly passed, then set it to a
492 // sensible default based on the target triple.
493 if (TargetAddrEnd.getNumOccurrences() == 0) {
494 if (TargetTriple.isArch16Bit())
495 TargetAddrEnd = (1ULL << 16) - 1;
496 else if (TargetTriple.isArch32Bit())
497 TargetAddrEnd = (1ULL << 32) - 1;
498 // TargetAddrEnd already has a sensible default for 64-bit systems, so
499 // there's nothing to do in the 64-bit case.
500 }
501
Lang Hames778ef5b2014-09-04 04:19:54 +0000502 // Process any elements remaining in the worklist.
503 while (!Worklist.empty()) {
504 std::pair<void*, uint64_t> CurEntry = Worklist.front();
505 Worklist.pop_front();
Lang Hames9cb73532014-07-29 23:43:13 +0000506
Lang Hames778ef5b2014-09-04 04:19:54 +0000507 uint64_t NextSectionAddr = TargetAddrStart;
508
509 for (const auto &Alloc : AlreadyAllocated)
510 if (NextSectionAddr + CurEntry.second + TargetSectionSep <= Alloc.first)
511 break;
512 else
513 NextSectionAddr = Alloc.first + Alloc.second + TargetSectionSep;
514
515 AlreadyAllocated[NextSectionAddr] = CurEntry.second;
516 Checker.getRTDyld().mapSectionAddress(CurEntry.first, NextSectionAddr);
Lang Hames9cb73532014-07-29 23:43:13 +0000517 }
518
Lang Hames9cb73532014-07-29 23:43:13 +0000519}
520
521// Load and link the objects specified on the command line, but do not execute
522// anything. Instead, attach a RuntimeDyldChecker instance and call it to
523// verify the correctness of the linked memory.
Lang Hamese1c11382014-06-27 20:20:57 +0000524static int linkAndVerify() {
525
526 // Check for missing triple.
527 if (TripleName == "") {
528 llvm::errs() << "Error: -triple required when running in -verify mode.\n";
529 return 1;
530 }
531
532 // Look up the target and build the disassembler.
533 Triple TheTriple(Triple::normalize(TripleName));
534 std::string ErrorStr;
535 const Target *TheTarget =
536 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
537 if (!TheTarget) {
538 llvm::errs() << "Error accessing target '" << TripleName << "': "
539 << ErrorStr << "\n";
540 return 1;
541 }
542 TripleName = TheTriple.getTriple();
543
544 std::unique_ptr<MCSubtargetInfo> STI(
Petar Jovanovic280e5622015-06-23 22:52:19 +0000545 TheTarget->createMCSubtargetInfo(TripleName, MCPU, ""));
Lang Hamese1c11382014-06-27 20:20:57 +0000546 assert(STI && "Unable to create subtarget info!");
547
548 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
549 assert(MRI && "Unable to create target register info!");
550
551 std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TripleName));
552 assert(MAI && "Unable to create target asm info!");
553
554 MCContext Ctx(MAI.get(), MRI.get(), nullptr);
555
556 std::unique_ptr<MCDisassembler> Disassembler(
557 TheTarget->createMCDisassembler(*STI, Ctx));
558 assert(Disassembler && "Unable to create disassembler!");
559
560 std::unique_ptr<MCInstrInfo> MII(TheTarget->createMCInstrInfo());
561
562 std::unique_ptr<MCInstPrinter> InstPrinter(
Eric Christopherf8019402015-03-31 00:10:04 +0000563 TheTarget->createMCInstPrinter(Triple(TripleName), 0, *MAI, *MII, *MRI));
Lang Hamese1c11382014-06-27 20:20:57 +0000564
565 // Load any dylibs requested on the command line.
566 loadDylibs();
567
568 // Instantiate a dynamic linker.
569 TrivialMemoryManager MemMgr;
Lang Hames633fe142015-03-30 03:37:06 +0000570 RuntimeDyld Dyld(MemMgr, MemMgr);
Lang Hames925e51b2014-09-03 05:42:52 +0000571 Dyld.setProcessAllSections(true);
Lang Hamesf7acddd2014-07-22 22:47:39 +0000572 RuntimeDyldChecker Checker(Dyld, Disassembler.get(), InstPrinter.get(),
573 llvm::dbgs());
Lang Hamese1c11382014-06-27 20:20:57 +0000574
Lang Hamesc3246ad2015-04-15 21:18:41 +0000575 // FIXME: Preserve buffers until resolveRelocations time to work around a bug
576 // in RuntimeDyldELF.
577 // This fixme should be fixed ASAP. This is a very brittle workaround.
578 std::vector<std::unique_ptr<MemoryBuffer>> InputBuffers;
579
Lang Hamese1c11382014-06-27 20:20:57 +0000580 // If we don't have any input files, read from stdin.
581 if (!InputFileList.size())
582 InputFileList.push_back("-");
583 for(unsigned i = 0, e = InputFileList.size(); i != e; ++i) {
584 // Load the input memory buffer.
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000585 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
586 MemoryBuffer::getFileOrSTDIN(InputFileList[i]);
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000587
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000588 if (std::error_code EC = InputBuffer.getError())
589 return Error("unable to read input: '" + EC.message() + "'");
Lang Hamese1c11382014-06-27 20:20:57 +0000590
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000591 ErrorOr<std::unique_ptr<ObjectFile>> MaybeObj(
592 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
593
594 if (std::error_code EC = MaybeObj.getError())
595 return Error("unable to create object file: '" + EC.message() + "'");
596
597 ObjectFile &Obj = **MaybeObj;
Lang Hamesc3246ad2015-04-15 21:18:41 +0000598 InputBuffers.push_back(std::move(*InputBuffer));
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000599
Lang Hamese1c11382014-06-27 20:20:57 +0000600 // Load the object file
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000601 Dyld.loadObject(Obj);
602 if (Dyld.hasError()) {
Lang Hamese1c11382014-06-27 20:20:57 +0000603 return Error(Dyld.getErrorString());
604 }
605 }
606
Lang Hames375385f2014-07-30 03:12:41 +0000607 // Re-map the section addresses into the phony target address space.
Lang Hames778ef5b2014-09-04 04:19:54 +0000608 remapSections(TheTriple, MemMgr, Checker);
Lang Hames375385f2014-07-30 03:12:41 +0000609
Lang Hamese1c11382014-06-27 20:20:57 +0000610 // Resolve all the relocations we can.
611 Dyld.resolveRelocations();
612
Lang Hames925e51b2014-09-03 05:42:52 +0000613 // Register EH frames.
614 Dyld.registerEHFrames();
615
Lang Hamesae172682014-08-05 20:51:46 +0000616 int ErrorCode = checkAllExpressions(Checker);
617 if (Dyld.hasError()) {
618 errs() << "RTDyld reported an error applying relocations:\n "
619 << Dyld.getErrorString() << "\n";
620 ErrorCode = 1;
621 }
622
623 return ErrorCode;
Lang Hamese1c11382014-06-27 20:20:57 +0000624}
625
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000626int main(int argc, char **argv) {
Alp Toker9f679322013-11-05 09:33:43 +0000627 sys::PrintStackTraceOnErrorSignal();
628 PrettyStackTraceProgram X(argc, argv);
629
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000630 ProgramName = argv[0];
631 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
632
Lang Hamese1c11382014-06-27 20:20:57 +0000633 llvm::InitializeAllTargetInfos();
634 llvm::InitializeAllTargetMCs();
635 llvm::InitializeAllDisassemblers();
636
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000637 cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n");
638
639 switch (Action) {
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000640 case AC_Execute:
Jim Grosbach4d5284b2011-03-18 17:24:21 +0000641 return executeInput();
Keno Fischerc780e8e2015-05-21 21:24:32 +0000642 case AC_PrintDebugLineInfo:
Keno Fischer281b6942015-05-30 19:44:53 +0000643 return printLineInfoForInput(/* LoadObjects */ true,/* UseDebugObj */ true);
Andrew Kaylord55d7012013-01-25 22:50:58 +0000644 case AC_PrintLineInfo:
Keno Fischer281b6942015-05-30 19:44:53 +0000645 return printLineInfoForInput(/* LoadObjects */ true,/* UseDebugObj */false);
646 case AC_PrintObjectLineInfo:
647 return printLineInfoForInput(/* LoadObjects */false,/* UseDebugObj */false);
Lang Hamese1c11382014-06-27 20:20:57 +0000648 case AC_Verify:
649 return linkAndVerify();
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000650 }
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000651}