Return ErrorOr from getSymbolAddress.
[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("Map a section to a specific address."),
119                         cl::ZeroOrMore);
120
121 /* *** */
122
123 // A trivial memory manager that doesn't do anything fancy, just uses the
124 // support library allocation routines directly.
125 class TrivialMemoryManager : public RTDyldMemoryManager {
126 public:
127   SmallVector<sys::MemoryBlock, 16> FunctionMemory;
128   SmallVector<sys::MemoryBlock, 16> DataMemory;
129
130   uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
131                                unsigned SectionID,
132                                StringRef SectionName) override;
133   uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
134                                unsigned SectionID, StringRef SectionName,
135                                bool IsReadOnly) override;
136
137   void *getPointerToNamedFunction(const std::string &Name,
138                                   bool AbortOnFailure = true) override {
139     return nullptr;
140   }
141
142   bool finalizeMemory(std::string *ErrMsg) override { return false; }
143
144   // 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();
149
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 {}
154 };
155
156 uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size,
157                                                    unsigned Alignment,
158                                                    unsigned SectionID,
159                                                    StringRef SectionName) {
160   sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr);
161   FunctionMemory.push_back(MB);
162   return (uint8_t*)MB.base();
163 }
164
165 uint8_t *TrivialMemoryManager::allocateDataSection(uintptr_t Size,
166                                                    unsigned Alignment,
167                                                    unsigned SectionID,
168                                                    StringRef SectionName,
169                                                    bool IsReadOnly) {
170   sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr);
171   DataMemory.push_back(MB);
172   return (uint8_t*)MB.base();
173 }
174
175 void 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());
183 }
184
185 static const char *ProgramName;
186
187 static void Message(const char *Type, const Twine &Msg) {
188   errs() << ProgramName << ": " << Type << ": " << Msg << "\n";
189 }
190
191 static int Error(const Twine &Msg) {
192   Message("error", Msg);
193   return 1;
194 }
195
196 static 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
208 /* *** */
209
210 static int printLineInfoForInput(bool LoadObjects, bool UseDebugObj) {
211   assert(LoadObjects || !UseDebugObj);
212
213   // Load any dylibs requested on the command line.
214   loadDylibs();
215
216   // 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.
221     TrivialMemoryManager MemMgr;
222     RuntimeDyld Dyld(MemMgr, MemMgr);
223
224     // Load the input memory buffer.
225
226     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
231     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
239     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);
246
247       if (Dyld.hasError())
248         return Error(Dyld.getErrorString());
249
250       // Resolve all the relocations we can.
251       Dyld.resolveRelocations();
252
253       if (UseDebugObj) {
254         DebugObj = LoadedObjInfo->getObjectForDebug(Obj);
255         SymbolObj = DebugObj.getBinary();
256       }
257     }
258
259     std::unique_ptr<DIContext> Context(
260       new DWARFContextInMemory(*SymbolObj,LoadedObjInfo.get()));
261
262     std::vector<std::pair<SymbolRef, uint64_t>> SymAddr =
263         object::computeSymbolSizes(*SymbolObj);
264
265     // Use symbol info to iterate functions in the object.
266     for (const auto &P : SymAddr) {
267       object::SymbolRef Sym = P.first;
268       if (Sym.getType() == object::SymbolRef::ST_Function) {
269         ErrorOr<StringRef> Name = Sym.getName();
270         if (!Name)
271           continue;
272         ErrorOr<uint64_t> AddrOrErr = Sym.getAddress();
273         if (!AddrOrErr)
274           continue;
275         uint64_t Addr = *AddrOrErr;
276
277         uint64_t Size = P.second;
278         // 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());
283           Sym.getSection(Sec);
284           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
292         outs() << "Function: " << *Name << ", Size = " << Size
293                << ", Addr = " << Addr << "\n";
294
295         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 << ": "
300                  << It->second.FileName << ", line:" << It->second.Line << "\n";
301         }
302       }
303     }
304   }
305
306   return 0;
307 }
308
309 static int executeInput() {
310   // Load any dylibs requested on the command line.
311   loadDylibs();
312
313   // Instantiate a dynamic linker.
314   TrivialMemoryManager MemMgr;
315   RuntimeDyld Dyld(MemMgr, MemMgr);
316
317   // 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
322   // 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.
327     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() + "'");
331     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;
338     InputBuffers.push_back(std::move(*InputBuffer));
339
340     // Load the object file
341     Dyld.loadObject(Obj);
342     if (Dyld.hasError()) {
343       return Error(Dyld.getErrorString());
344     }
345   }
346
347   // Resolve all the relocations we can.
348   Dyld.resolveRelocations();
349   // Clear instruction cache before code will be executed.
350   MemMgr.invalidateInstructionCache();
351
352   // FIXME: Error out if there are unresolved relocations.
353
354   // Get the address of the entry point (_main by default).
355   void *MainAddress = Dyld.getSymbolLocalAddress(EntryPoint);
356   if (!MainAddress)
357     return Error("no definition for '" + EntryPoint + "'");
358
359   // Invalidate the instruction cache for each loaded function.
360   for (unsigned i = 0, e = MemMgr.FunctionMemory.size(); i != e; ++i) {
361     sys::MemoryBlock &Data = MemMgr.FunctionMemory[i];
362     // 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   }
368
369   // Dispatch to _main().
370   errs() << "loaded '" << EntryPoint << "' at: " << (void*)MainAddress << "\n";
371
372   int (*Main)(int, const char**) =
373     (int(*)(int,const char**)) uintptr_t(MainAddress);
374   const char **Argv = new const char*[2];
375   // Use the name of the first input object module as argv[0] for the target.
376   Argv[0] = InputFileList[0].c_str();
377   Argv[1] = nullptr;
378   return Main(1, Argv);
379 }
380
381 static int checkAllExpressions(RuntimeDyldChecker &Checker) {
382   for (const auto& CheckerFileName : CheckFiles) {
383     ErrorOr<std::unique_ptr<MemoryBuffer>> CheckerFileBuf =
384         MemoryBuffer::getFileOrSTDIN(CheckerFileName);
385     if (std::error_code EC = CheckerFileBuf.getError())
386       return Error("unable to read input '" + CheckerFileName + "': " +
387                    EC.message());
388
389     if (!Checker.checkAllRulesInBuffer("# rtdyld-check:",
390                                        CheckerFileBuf.get().get()))
391       return Error("some checks in '" + CheckerFileName + "' failed");
392   }
393   return 0;
394 }
395
396 static std::map<void *, uint64_t>
397 applySpecificSectionMappings(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
443 // 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 //
454 static void remapSections(const llvm::Triple &TargetTriple,
455                           const TrivialMemoryManager &MemMgr,
456                           RuntimeDyldChecker &Checker) {
457
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   }
490
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
502   // Process any elements remaining in the worklist.
503   while (!Worklist.empty()) {
504     std::pair<void*, uint64_t> CurEntry = Worklist.front();
505     Worklist.pop_front();
506
507     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);
517   }
518
519 }
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.
524 static 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(
545     TheTarget->createMCSubtargetInfo(TripleName, MCPU, ""));
546   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(
563       TheTarget->createMCInstPrinter(Triple(TripleName), 0, *MAI, *MII, *MRI));
564
565   // Load any dylibs requested on the command line.
566   loadDylibs();
567
568   // Instantiate a dynamic linker.
569   TrivialMemoryManager MemMgr;
570   RuntimeDyld Dyld(MemMgr, MemMgr);
571   Dyld.setProcessAllSections(true);
572   RuntimeDyldChecker Checker(Dyld, Disassembler.get(), InstPrinter.get(),
573                              llvm::dbgs());
574
575   // 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
580   // 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.
585     ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
586         MemoryBuffer::getFileOrSTDIN(InputFileList[i]);
587
588     if (std::error_code EC = InputBuffer.getError())
589       return Error("unable to read input: '" + EC.message() + "'");
590
591     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;
598     InputBuffers.push_back(std::move(*InputBuffer));
599
600     // Load the object file
601     Dyld.loadObject(Obj);
602     if (Dyld.hasError()) {
603       return Error(Dyld.getErrorString());
604     }
605   }
606
607   // Re-map the section addresses into the phony target address space.
608   remapSections(TheTriple, MemMgr, Checker);
609
610   // Resolve all the relocations we can.
611   Dyld.resolveRelocations();
612
613   // Register EH frames.
614   Dyld.registerEHFrames();
615
616   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;
624 }
625
626 int main(int argc, char **argv) {
627   sys::PrintStackTraceOnErrorSignal();
628   PrettyStackTraceProgram X(argc, argv);
629
630   ProgramName = argv[0];
631   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
632
633   llvm::InitializeAllTargetInfos();
634   llvm::InitializeAllTargetMCs();
635   llvm::InitializeAllDisassemblers();
636
637   cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n");
638
639   switch (Action) {
640   case AC_Execute:
641     return executeInput();
642   case AC_PrintDebugLineInfo:
643     return printLineInfoForInput(/* LoadObjects */ true,/* UseDebugObj */ true);
644   case AC_PrintLineInfo:
645     return printLineInfoForInput(/* LoadObjects */ true,/* UseDebugObj */false);
646   case AC_PrintObjectLineInfo:
647     return printLineInfoForInput(/* LoadObjects */false,/* UseDebugObj */false);
648   case AC_Verify:
649     return linkAndVerify();
650   }
651 }