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