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