blob: 92c1ce6ab6a6adb86a9238d368f16655fe62182f [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"
Benjamin Kramerf57c1972016-01-26 16:44:37 +000022#include "llvm/MC/MCDisassembler/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",
Mehdi Amini732afdd2016-10-08 19:41:06 +000069 "Load, link and verify the resulting memory image.")));
Jim Grosbach0072cdb2011-03-18 17:11:39 +000070
Jim Grosbachd35159a2011-04-13 15:38:30 +000071static cl::opt<std::string>
72EntryPoint("entry",
73 cl::desc("Function to call as entry point."),
74 cl::init("_main"));
75
Lang Hamesd311c0e2014-05-13 22:37:41 +000076static cl::list<std::string>
77Dylibs("dylib",
78 cl::desc("Add library."),
79 cl::ZeroOrMore);
80
Lang Hamese1c11382014-06-27 20:20:57 +000081static cl::opt<std::string>
82TripleName("triple", cl::desc("Target triple for disassembler"));
83
Petar Jovanovic280e5622015-06-23 22:52:19 +000084static cl::opt<std::string>
85MCPU("mcpu",
86 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
87 cl::value_desc("cpu-name"),
88 cl::init(""));
89
Lang Hamese1c11382014-06-27 20:20:57 +000090static cl::list<std::string>
91CheckFiles("check",
92 cl::desc("File containing RuntimeDyld verifier checks."),
93 cl::ZeroOrMore);
94
Lang Hames9cb73532014-07-29 23:43:13 +000095static cl::opt<uint64_t>
Davide Italianob59ea902015-10-21 22:12:03 +000096PreallocMemory("preallocate",
97 cl::desc("Allocate memory upfront rather than on-demand"),
98 cl::init(0));
99
100static cl::opt<uint64_t>
Lang Hames9cb73532014-07-29 23:43:13 +0000101TargetAddrStart("target-addr-start",
102 cl::desc("For -verify only: start of phony target address "
103 "range."),
104 cl::init(4096), // Start at "page 1" - no allocating at "null".
105 cl::Hidden);
106
107static cl::opt<uint64_t>
108TargetAddrEnd("target-addr-end",
109 cl::desc("For -verify only: end of phony target address range."),
110 cl::init(~0ULL),
111 cl::Hidden);
112
113static cl::opt<uint64_t>
114TargetSectionSep("target-section-sep",
115 cl::desc("For -verify only: Separation between sections in "
116 "phony target address space."),
117 cl::init(0),
118 cl::Hidden);
119
Lang Hames778ef5b2014-09-04 04:19:54 +0000120static cl::list<std::string>
121SpecificSectionMappings("map-section",
Lang Hames78937c22015-07-04 01:35:26 +0000122 cl::desc("For -verify only: Map a section to a "
123 "specific address."),
124 cl::ZeroOrMore,
125 cl::Hidden);
126
127static cl::list<std::string>
128DummySymbolMappings("dummy-extern",
129 cl::desc("For -verify only: Inject a symbol into the extern "
130 "symbol table."),
131 cl::ZeroOrMore,
132 cl::Hidden);
Lang Hames778ef5b2014-09-04 04:19:54 +0000133
Sanjoy Dasd5658b02015-11-23 21:47:51 +0000134static cl::opt<bool>
135PrintAllocationRequests("print-alloc-requests",
136 cl::desc("Print allocation requests made to the memory "
137 "manager by RuntimeDyld"),
138 cl::Hidden);
139
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000140/* *** */
141
Jim Grosbach2dcef0502011-04-04 23:04:39 +0000142// A trivial memory manager that doesn't do anything fancy, just uses the
143// support library allocation routines directly.
144class TrivialMemoryManager : public RTDyldMemoryManager {
145public:
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000146 SmallVector<sys::MemoryBlock, 16> FunctionMemory;
Jim Grosbacheff0a402012-01-16 22:26:39 +0000147 SmallVector<sys::MemoryBlock, 16> DataMemory;
148
149 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
Craig Toppere56917c2014-03-08 08:27:28 +0000150 unsigned SectionID,
151 StringRef SectionName) override;
Jim Grosbacheff0a402012-01-16 22:26:39 +0000152 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000153 unsigned SectionID, StringRef SectionName,
Craig Toppere56917c2014-03-08 08:27:28 +0000154 bool IsReadOnly) override;
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000155
Craig Toppere56917c2014-03-08 08:27:28 +0000156 void *getPointerToNamedFunction(const std::string &Name,
157 bool AbortOnFailure = true) override {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000158 return nullptr;
Danil Malyshevbfee5422012-03-28 21:46:36 +0000159 }
160
Craig Toppere56917c2014-03-08 08:27:28 +0000161 bool finalizeMemory(std::string *ErrMsg) override { return false; }
Andrew Kaylora342cb92012-11-15 23:50:01 +0000162
Lang Hames78937c22015-07-04 01:35:26 +0000163 void addDummySymbol(const std::string &Name, uint64_t Addr) {
164 DummyExterns[Name] = Addr;
165 }
166
Lang Hamesad4a9112016-08-01 20:49:11 +0000167 JITSymbol findSymbol(const std::string &Name) override {
Lang Hames78937c22015-07-04 01:35:26 +0000168 auto I = DummyExterns.find(Name);
169
170 if (I != DummyExterns.end())
Lang Hamesad4a9112016-08-01 20:49:11 +0000171 return JITSymbol(I->second, JITSymbolFlags::Exported);
Lang Hames78937c22015-07-04 01:35:26 +0000172
173 return RTDyldMemoryManager::findSymbol(Name);
174 }
175
Tim Northover5af339a2015-06-03 18:26:52 +0000176 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
177 size_t Size) override {}
178 void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr,
179 size_t Size) override {}
Davide Italianob59ea902015-10-21 22:12:03 +0000180
181 void preallocateSlab(uint64_t Size) {
182 std::string Err;
183 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err);
184 if (!MB.base())
185 report_fatal_error("Can't allocate enough memory: " + Err);
186
187 PreallocSlab = MB;
188 UsePreallocation = true;
189 SlabSize = Size;
190 }
191
192 uint8_t *allocateFromSlab(uintptr_t Size, unsigned Alignment, bool isCode) {
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000193 Size = alignTo(Size, Alignment);
Davide Italianob59ea902015-10-21 22:12:03 +0000194 if (CurrentSlabOffset + Size > SlabSize)
195 report_fatal_error("Can't allocate enough memory. Tune --preallocate");
196
197 uintptr_t OldSlabOffset = CurrentSlabOffset;
198 sys::MemoryBlock MB((void *)OldSlabOffset, Size);
199 if (isCode)
200 FunctionMemory.push_back(MB);
201 else
202 DataMemory.push_back(MB);
203 CurrentSlabOffset += Size;
204 return (uint8_t*)OldSlabOffset;
205 }
206
Lang Hames78937c22015-07-04 01:35:26 +0000207private:
208 std::map<std::string, uint64_t> DummyExterns;
Davide Italianob59ea902015-10-21 22:12:03 +0000209 sys::MemoryBlock PreallocSlab;
210 bool UsePreallocation = false;
211 uintptr_t SlabSize = 0;
212 uintptr_t CurrentSlabOffset = 0;
Jim Grosbach2dcef0502011-04-04 23:04:39 +0000213};
214
Jim Grosbacheff0a402012-01-16 22:26:39 +0000215uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size,
216 unsigned Alignment,
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000217 unsigned SectionID,
218 StringRef SectionName) {
Sanjoy Dasd5658b02015-11-23 21:47:51 +0000219 if (PrintAllocationRequests)
220 outs() << "allocateCodeSection(Size = " << Size << ", Alignment = "
221 << Alignment << ", SectionName = " << SectionName << ")\n";
222
Davide Italianob59ea902015-10-21 22:12:03 +0000223 if (UsePreallocation)
224 return allocateFromSlab(Size, Alignment, true /* isCode */);
225
Davide Italiano89151a02015-10-15 00:05:32 +0000226 std::string Err;
227 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err);
228 if (!MB.base())
229 report_fatal_error("MemoryManager allocation failed: " + Err);
Danil Malyshev8c17fbd2012-05-16 18:50:11 +0000230 FunctionMemory.push_back(MB);
231 return (uint8_t*)MB.base();
Jim Grosbacheff0a402012-01-16 22:26:39 +0000232}
233
234uint8_t *TrivialMemoryManager::allocateDataSection(uintptr_t Size,
235 unsigned Alignment,
Andrew Kaylora342cb92012-11-15 23:50:01 +0000236 unsigned SectionID,
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000237 StringRef SectionName,
Andrew Kaylora342cb92012-11-15 23:50:01 +0000238 bool IsReadOnly) {
Sanjoy Dasd5658b02015-11-23 21:47:51 +0000239 if (PrintAllocationRequests)
240 outs() << "allocateDataSection(Size = " << Size << ", Alignment = "
241 << Alignment << ", SectionName = " << SectionName << ")\n";
242
Davide Italianob59ea902015-10-21 22:12:03 +0000243 if (UsePreallocation)
244 return allocateFromSlab(Size, Alignment, false /* isCode */);
245
Davide Italiano89151a02015-10-15 00:05:32 +0000246 std::string Err;
247 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err);
248 if (!MB.base())
249 report_fatal_error("MemoryManager allocation failed: " + Err);
Danil Malyshev8c17fbd2012-05-16 18:50:11 +0000250 DataMemory.push_back(MB);
251 return (uint8_t*)MB.base();
252}
253
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000254static const char *ProgramName;
255
Lang Hamesee5417d2016-04-05 20:11:24 +0000256static void ErrorAndExit(const Twine &Msg) {
Davide Italianoc2e910d2015-11-20 23:12:15 +0000257 errs() << ProgramName << ": error: " << Msg << "\n";
Lang Hames9e964f32016-03-25 17:25:34 +0000258 exit(1);
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000259}
260
Lang Hamesd311c0e2014-05-13 22:37:41 +0000261static void loadDylibs() {
262 for (const std::string &Dylib : Dylibs) {
Davide Italiano5cdf9362015-11-22 01:58:33 +0000263 if (!sys::fs::is_regular_file(Dylib))
Davide Italiano41d0fa72015-11-21 05:58:19 +0000264 report_fatal_error("Dylib not found: '" + Dylib + "'.");
Davide Italiano5cdf9362015-11-22 01:58:33 +0000265 std::string ErrMsg;
266 if (sys::DynamicLibrary::LoadLibraryPermanently(Dylib.c_str(), &ErrMsg))
267 report_fatal_error("Error loading '" + Dylib + "': " + ErrMsg);
Lang Hamesd311c0e2014-05-13 22:37:41 +0000268 }
269}
270
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000271/* *** */
272
Keno Fischerc780e8e2015-05-21 21:24:32 +0000273static int printLineInfoForInput(bool LoadObjects, bool UseDebugObj) {
274 assert(LoadObjects || !UseDebugObj);
275
Lang Hamesd311c0e2014-05-13 22:37:41 +0000276 // Load any dylibs requested on the command line.
277 loadDylibs();
278
Andrew Kaylord55d7012013-01-25 22:50:58 +0000279 // If we don't have any input files, read from stdin.
280 if (!InputFileList.size())
281 InputFileList.push_back("-");
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000282 for (auto &File : InputFileList) {
Andrew Kaylord55d7012013-01-25 22:50:58 +0000283 // Instantiate a dynamic linker.
Benjamin Kramer9ce77082013-08-03 22:16:31 +0000284 TrivialMemoryManager MemMgr;
Lang Hames633fe142015-03-30 03:37:06 +0000285 RuntimeDyld Dyld(MemMgr, MemMgr);
Andrew Kaylord55d7012013-01-25 22:50:58 +0000286
287 // Load the input memory buffer.
Andrew Kaylord55d7012013-01-25 22:50:58 +0000288
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000289 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000290 MemoryBuffer::getFileOrSTDIN(File);
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000291 if (std::error_code EC = InputBuffer.getError())
Lang Hames9e964f32016-03-25 17:25:34 +0000292 ErrorAndExit("unable to read input: '" + EC.message() + "'");
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000293
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000294 Expected<std::unique_ptr<ObjectFile>> MaybeObj(
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000295 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
296
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000297 if (!MaybeObj) {
298 std::string Buf;
299 raw_string_ostream OS(Buf);
300 logAllUnhandledErrors(MaybeObj.takeError(), OS, "");
301 OS.flush();
302 ErrorAndExit("unable to create object file: '" + Buf + "'");
303 }
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000304
305 ObjectFile &Obj = **MaybeObj;
306
Keno Fischerc780e8e2015-05-21 21:24:32 +0000307 OwningBinary<ObjectFile> DebugObj;
308 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> LoadedObjInfo = nullptr;
309 ObjectFile *SymbolObj = &Obj;
310 if (LoadObjects) {
311 // Load the object file
312 LoadedObjInfo =
313 Dyld.loadObject(Obj);
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000314
Keno Fischerc780e8e2015-05-21 21:24:32 +0000315 if (Dyld.hasError())
Lang Hames9e964f32016-03-25 17:25:34 +0000316 ErrorAndExit(Dyld.getErrorString());
Andrew Kaylord55d7012013-01-25 22:50:58 +0000317
Keno Fischerc780e8e2015-05-21 21:24:32 +0000318 // Resolve all the relocations we can.
319 Dyld.resolveRelocations();
Andrew Kaylord55d7012013-01-25 22:50:58 +0000320
Keno Fischerc780e8e2015-05-21 21:24:32 +0000321 if (UseDebugObj) {
322 DebugObj = LoadedObjInfo->getObjectForDebug(Obj);
323 SymbolObj = DebugObj.getBinary();
Lang Hames5c969332015-07-28 20:51:53 +0000324 LoadedObjInfo.reset();
Keno Fischerc780e8e2015-05-21 21:24:32 +0000325 }
326 }
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000327
Ahmed Charles56440fd2014-03-06 05:51:42 +0000328 std::unique_ptr<DIContext> Context(
Keno Fischerc780e8e2015-05-21 21:24:32 +0000329 new DWARFContextInMemory(*SymbolObj,LoadedObjInfo.get()));
Andrew Kaylord55d7012013-01-25 22:50:58 +0000330
Rafael Espindola6bf32212015-06-24 19:57:32 +0000331 std::vector<std::pair<SymbolRef, uint64_t>> SymAddr =
Rafael Espindolab109c032015-06-23 02:08:48 +0000332 object::computeSymbolSizes(*SymbolObj);
Rafael Espindolaa82ce1d2015-05-31 23:15:35 +0000333
Andrew Kaylord55d7012013-01-25 22:50:58 +0000334 // Use symbol info to iterate functions in the object.
Rafael Espindola6bf32212015-06-24 19:57:32 +0000335 for (const auto &P : SymAddr) {
Rafael Espindolab109c032015-06-23 02:08:48 +0000336 object::SymbolRef Sym = P.first;
Kevin Enderby7bd8d992016-05-02 20:28:12 +0000337 Expected<SymbolRef::Type> TypeOrErr = Sym.getType();
338 if (!TypeOrErr) {
339 // TODO: Actually report errors helpfully.
340 consumeError(TypeOrErr.takeError());
Kevin Enderby5afbc1c2016-03-23 20:27:00 +0000341 continue;
Kevin Enderby7bd8d992016-05-02 20:28:12 +0000342 }
Kevin Enderby5afbc1c2016-03-23 20:27:00 +0000343 SymbolRef::Type Type = *TypeOrErr;
344 if (Type == object::SymbolRef::ST_Function) {
Kevin Enderby81e8b7d2016-04-20 21:24:34 +0000345 Expected<StringRef> Name = Sym.getName();
346 if (!Name) {
347 // TODO: Actually report errors helpfully.
348 consumeError(Name.takeError());
Rafael Espindolada176272015-05-31 22:13:51 +0000349 continue;
Kevin Enderby81e8b7d2016-04-20 21:24:34 +0000350 }
Kevin Enderby931cb652016-06-24 18:24:42 +0000351 Expected<uint64_t> AddrOrErr = Sym.getAddress();
352 if (!AddrOrErr) {
353 // TODO: Actually report errors helpfully.
354 consumeError(AddrOrErr.takeError());
Rafael Espindolada176272015-05-31 22:13:51 +0000355 continue;
Kevin Enderby931cb652016-06-24 18:24:42 +0000356 }
Rafael Espindolaed067c42015-07-03 18:19:00 +0000357 uint64_t Addr = *AddrOrErr;
Rafael Espindolaa82ce1d2015-05-31 23:15:35 +0000358
Rafael Espindolab109c032015-06-23 02:08:48 +0000359 uint64_t Size = P.second;
Keno Fischerc780e8e2015-05-21 21:24:32 +0000360 // If we're not using the debug object, compute the address of the
361 // symbol in memory (rather than that in the unrelocated object file)
362 // and use that to query the DWARFContext.
363 if (!UseDebugObj && LoadObjects) {
Kevin Enderby7bd8d992016-05-02 20:28:12 +0000364 auto SecOrErr = Sym.getSection();
365 if (!SecOrErr) {
366 // TODO: Actually report errors helpfully.
367 consumeError(SecOrErr.takeError());
368 continue;
369 }
370 object::section_iterator Sec = *SecOrErr;
Keno Fischerc780e8e2015-05-21 21:24:32 +0000371 StringRef SecName;
372 Sec->getName(SecName);
373 uint64_t SectionLoadAddress =
Lang Hames2e88f4f2015-07-28 17:52:11 +0000374 LoadedObjInfo->getSectionLoadAddress(*Sec);
Keno Fischerc780e8e2015-05-21 21:24:32 +0000375 if (SectionLoadAddress != 0)
376 Addr += SectionLoadAddress - Sec->getAddress();
377 }
378
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000379 outs() << "Function: " << *Name << ", Size = " << Size
380 << ", Addr = " << Addr << "\n";
Andrew Kaylord55d7012013-01-25 22:50:58 +0000381
Andrew Kaylor9a8ff812013-01-26 00:28:05 +0000382 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000383 for (auto &D : Lines) {
384 outs() << " Line info @ " << D.first - Addr << ": "
385 << D.second.FileName << ", line:" << D.second.Line << "\n";
Andrew Kaylor9a8ff812013-01-26 00:28:05 +0000386 }
Andrew Kaylord55d7012013-01-25 22:50:58 +0000387 }
388 }
389 }
390
391 return 0;
392}
393
Davide Italianob59ea902015-10-21 22:12:03 +0000394static void doPreallocation(TrivialMemoryManager &MemMgr) {
395 // Allocate a slab of memory upfront, if required. This is used if
396 // we want to test small code models.
397 if (static_cast<intptr_t>(PreallocMemory) < 0)
398 report_fatal_error("Pre-allocated bytes of memory must be a positive integer.");
399
400 // FIXME: Limit the amount of memory that can be preallocated?
401 if (PreallocMemory != 0)
402 MemMgr.preallocateSlab(PreallocMemory);
403}
404
Jim Grosbach4d5284b2011-03-18 17:24:21 +0000405static int executeInput() {
Lang Hamesd311c0e2014-05-13 22:37:41 +0000406 // Load any dylibs requested on the command line.
407 loadDylibs();
408
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000409 // Instantiate a dynamic linker.
Benjamin Kramer9ce77082013-08-03 22:16:31 +0000410 TrivialMemoryManager MemMgr;
Davide Italianob59ea902015-10-21 22:12:03 +0000411 doPreallocation(MemMgr);
Lang Hames633fe142015-03-30 03:37:06 +0000412 RuntimeDyld Dyld(MemMgr, MemMgr);
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000413
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000414 // If we don't have any input files, read from stdin.
415 if (!InputFileList.size())
416 InputFileList.push_back("-");
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000417 for (auto &File : InputFileList) {
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000418 // Load the input memory buffer.
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000419 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000420 MemoryBuffer::getFileOrSTDIN(File);
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000421 if (std::error_code EC = InputBuffer.getError())
Lang Hames9e964f32016-03-25 17:25:34 +0000422 ErrorAndExit("unable to read input: '" + EC.message() + "'");
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000423 Expected<std::unique_ptr<ObjectFile>> MaybeObj(
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000424 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
425
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000426 if (!MaybeObj) {
427 std::string Buf;
428 raw_string_ostream OS(Buf);
429 logAllUnhandledErrors(MaybeObj.takeError(), OS, "");
430 OS.flush();
431 ErrorAndExit("unable to create object file: '" + Buf + "'");
432 }
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000433
434 ObjectFile &Obj = **MaybeObj;
435
Andrew Kayloradc70562012-10-02 21:18:39 +0000436 // Load the object file
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000437 Dyld.loadObject(Obj);
438 if (Dyld.hasError()) {
Lang Hames9e964f32016-03-25 17:25:34 +0000439 ErrorAndExit(Dyld.getErrorString());
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000440 }
Jim Grosbach40411cc2011-03-22 18:19:42 +0000441 }
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000442
Davide Italianoaf08e1b2015-11-17 16:37:52 +0000443 // Resove all the relocations we can.
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000444 // FIXME: Error out if there are unresolved relocations.
Davide Italianoaf08e1b2015-11-17 16:37:52 +0000445 Dyld.resolveRelocations();
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000446
Jim Grosbachd35159a2011-04-13 15:38:30 +0000447 // Get the address of the entry point (_main by default).
Lang Hamesb1186032015-03-11 00:43:26 +0000448 void *MainAddress = Dyld.getSymbolLocalAddress(EntryPoint);
Craig Toppere6cb63e2014-04-25 04:24:47 +0000449 if (!MainAddress)
Lang Hames9e964f32016-03-25 17:25:34 +0000450 ErrorAndExit("no definition for '" + EntryPoint + "'");
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000451
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000452 // Invalidate the instruction cache for each loaded function.
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000453 for (auto &FM : MemMgr.FunctionMemory) {
Davide Italianoaf08e1b2015-11-17 16:37:52 +0000454
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000455 // Make sure the memory is executable.
Davide Italianoaf08e1b2015-11-17 16:37:52 +0000456 // setExecutable will call InvalidateInstructionCache.
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000457 std::string ErrorStr;
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000458 if (!sys::Memory::setExecutable(FM, &ErrorStr))
Lang Hames9e964f32016-03-25 17:25:34 +0000459 ErrorAndExit("unable to mark function executable: '" + ErrorStr + "'");
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000460 }
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000461
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000462 // Dispatch to _main().
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000463 errs() << "loaded '" << EntryPoint << "' at: " << (void*)MainAddress << "\n";
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000464
465 int (*Main)(int, const char**) =
466 (int(*)(int,const char**)) uintptr_t(MainAddress);
467 const char **Argv = new const char*[2];
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000468 // Use the name of the first input object module as argv[0] for the target.
469 Argv[0] = InputFileList[0].c_str();
Craig Toppere6cb63e2014-04-25 04:24:47 +0000470 Argv[1] = nullptr;
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000471 return Main(1, Argv);
472}
473
Lang Hamese1c11382014-06-27 20:20:57 +0000474static int checkAllExpressions(RuntimeDyldChecker &Checker) {
475 for (const auto& CheckerFileName : CheckFiles) {
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000476 ErrorOr<std::unique_ptr<MemoryBuffer>> CheckerFileBuf =
477 MemoryBuffer::getFileOrSTDIN(CheckerFileName);
478 if (std::error_code EC = CheckerFileBuf.getError())
Lang Hames9e964f32016-03-25 17:25:34 +0000479 ErrorAndExit("unable to read input '" + CheckerFileName + "': " +
Lang Hamese1c11382014-06-27 20:20:57 +0000480 EC.message());
481
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000482 if (!Checker.checkAllRulesInBuffer("# rtdyld-check:",
483 CheckerFileBuf.get().get()))
Lang Hames9e964f32016-03-25 17:25:34 +0000484 ErrorAndExit("some checks in '" + CheckerFileName + "' failed");
Lang Hamese1c11382014-06-27 20:20:57 +0000485 }
486 return 0;
487}
488
Benjamin Kramerf044d3f2015-03-09 16:23:46 +0000489static std::map<void *, uint64_t>
Lang Hames778ef5b2014-09-04 04:19:54 +0000490applySpecificSectionMappings(RuntimeDyldChecker &Checker) {
491
492 std::map<void*, uint64_t> SpecificMappings;
493
494 for (StringRef Mapping : SpecificSectionMappings) {
495
496 size_t EqualsIdx = Mapping.find_first_of("=");
Lang Hames78937c22015-07-04 01:35:26 +0000497 std::string SectionIDStr = Mapping.substr(0, EqualsIdx);
Lang Hames778ef5b2014-09-04 04:19:54 +0000498 size_t ComaIdx = Mapping.find_first_of(",");
499
Davide Italiano07557fc2015-11-21 02:15:51 +0000500 if (ComaIdx == StringRef::npos)
501 report_fatal_error("Invalid section specification '" + Mapping +
502 "'. Should be '<file name>,<section name>=<addr>'");
Lang Hames778ef5b2014-09-04 04:19:54 +0000503
Lang Hames78937c22015-07-04 01:35:26 +0000504 std::string FileName = SectionIDStr.substr(0, ComaIdx);
505 std::string SectionName = SectionIDStr.substr(ComaIdx + 1);
Lang Hames778ef5b2014-09-04 04:19:54 +0000506
507 uint64_t OldAddrInt;
508 std::string ErrorMsg;
509 std::tie(OldAddrInt, ErrorMsg) =
510 Checker.getSectionAddr(FileName, SectionName, true);
511
Davide Italiano07557fc2015-11-21 02:15:51 +0000512 if (ErrorMsg != "")
513 report_fatal_error(ErrorMsg);
Lang Hames778ef5b2014-09-04 04:19:54 +0000514
515 void* OldAddr = reinterpret_cast<void*>(static_cast<uintptr_t>(OldAddrInt));
516
Lang Hames78937c22015-07-04 01:35:26 +0000517 std::string NewAddrStr = Mapping.substr(EqualsIdx + 1);
Lang Hames778ef5b2014-09-04 04:19:54 +0000518 uint64_t NewAddr;
519
Davide Italiano07557fc2015-11-21 02:15:51 +0000520 if (StringRef(NewAddrStr).getAsInteger(0, NewAddr))
521 report_fatal_error("Invalid section address in mapping '" + Mapping +
522 "'.");
Lang Hames778ef5b2014-09-04 04:19:54 +0000523
524 Checker.getRTDyld().mapSectionAddress(OldAddr, NewAddr);
525 SpecificMappings[OldAddr] = NewAddr;
526 }
527
528 return SpecificMappings;
529}
530
Lang Hames9cb73532014-07-29 23:43:13 +0000531// Scatter sections in all directions!
532// Remaps section addresses for -verify mode. The following command line options
533// can be used to customize the layout of the memory within the phony target's
534// address space:
535// -target-addr-start <s> -- Specify where the phony target addres range starts.
536// -target-addr-end <e> -- Specify where the phony target address range ends.
537// -target-section-sep <d> -- Specify how big a gap should be left between the
538// end of one section and the start of the next.
539// Defaults to zero. Set to something big
540// (e.g. 1 << 32) to stress-test stubs, GOTs, etc.
541//
Lang Hames78937c22015-07-04 01:35:26 +0000542static void remapSectionsAndSymbols(const llvm::Triple &TargetTriple,
543 TrivialMemoryManager &MemMgr,
544 RuntimeDyldChecker &Checker) {
Lang Hames778ef5b2014-09-04 04:19:54 +0000545
546 // Set up a work list (section addr/size pairs).
547 typedef std::list<std::pair<void*, uint64_t>> WorklistT;
548 WorklistT Worklist;
549
550 for (const auto& CodeSection : MemMgr.FunctionMemory)
551 Worklist.push_back(std::make_pair(CodeSection.base(), CodeSection.size()));
552 for (const auto& DataSection : MemMgr.DataMemory)
553 Worklist.push_back(std::make_pair(DataSection.base(), DataSection.size()));
554
555 // Apply any section-specific mappings that were requested on the command
556 // line.
557 typedef std::map<void*, uint64_t> AppliedMappingsT;
558 AppliedMappingsT AppliedMappings = applySpecificSectionMappings(Checker);
559
560 // Keep an "already allocated" mapping of section target addresses to sizes.
561 // Sections whose address mappings aren't specified on the command line will
562 // allocated around the explicitly mapped sections while maintaining the
563 // minimum separation.
564 std::map<uint64_t, uint64_t> AlreadyAllocated;
565
566 // Move the previously applied mappings into the already-allocated map.
567 for (WorklistT::iterator I = Worklist.begin(), E = Worklist.end();
568 I != E;) {
569 WorklistT::iterator Tmp = I;
570 ++I;
571 AppliedMappingsT::iterator AI = AppliedMappings.find(Tmp->first);
572
573 if (AI != AppliedMappings.end()) {
574 AlreadyAllocated[AI->second] = Tmp->second;
575 Worklist.erase(Tmp);
576 }
577 }
Lang Hames9cb73532014-07-29 23:43:13 +0000578
579 // If the -target-addr-end option wasn't explicitly passed, then set it to a
580 // sensible default based on the target triple.
581 if (TargetAddrEnd.getNumOccurrences() == 0) {
582 if (TargetTriple.isArch16Bit())
583 TargetAddrEnd = (1ULL << 16) - 1;
584 else if (TargetTriple.isArch32Bit())
585 TargetAddrEnd = (1ULL << 32) - 1;
586 // TargetAddrEnd already has a sensible default for 64-bit systems, so
587 // there's nothing to do in the 64-bit case.
588 }
589
Lang Hames778ef5b2014-09-04 04:19:54 +0000590 // Process any elements remaining in the worklist.
591 while (!Worklist.empty()) {
592 std::pair<void*, uint64_t> CurEntry = Worklist.front();
593 Worklist.pop_front();
Lang Hames9cb73532014-07-29 23:43:13 +0000594
Lang Hames778ef5b2014-09-04 04:19:54 +0000595 uint64_t NextSectionAddr = TargetAddrStart;
596
597 for (const auto &Alloc : AlreadyAllocated)
598 if (NextSectionAddr + CurEntry.second + TargetSectionSep <= Alloc.first)
599 break;
600 else
601 NextSectionAddr = Alloc.first + Alloc.second + TargetSectionSep;
602
603 AlreadyAllocated[NextSectionAddr] = CurEntry.second;
604 Checker.getRTDyld().mapSectionAddress(CurEntry.first, NextSectionAddr);
Lang Hames9cb73532014-07-29 23:43:13 +0000605 }
606
Lang Hames78937c22015-07-04 01:35:26 +0000607 // Add dummy symbols to the memory manager.
608 for (const auto &Mapping : DummySymbolMappings) {
609 size_t EqualsIdx = Mapping.find_first_of("=");
610
Davide Italiano07557fc2015-11-21 02:15:51 +0000611 if (EqualsIdx == StringRef::npos)
612 report_fatal_error("Invalid dummy symbol specification '" + Mapping +
613 "'. Should be '<symbol name>=<addr>'");
Lang Hames78937c22015-07-04 01:35:26 +0000614
615 std::string Symbol = Mapping.substr(0, EqualsIdx);
616 std::string AddrStr = Mapping.substr(EqualsIdx + 1);
617
618 uint64_t Addr;
Davide Italiano07557fc2015-11-21 02:15:51 +0000619 if (StringRef(AddrStr).getAsInteger(0, Addr))
620 report_fatal_error("Invalid symbol mapping '" + Mapping + "'.");
Lang Hames78937c22015-07-04 01:35:26 +0000621
622 MemMgr.addDummySymbol(Symbol, Addr);
623 }
Lang Hames9cb73532014-07-29 23:43:13 +0000624}
625
626// Load and link the objects specified on the command line, but do not execute
627// anything. Instead, attach a RuntimeDyldChecker instance and call it to
628// verify the correctness of the linked memory.
Lang Hamese1c11382014-06-27 20:20:57 +0000629static int linkAndVerify() {
630
631 // Check for missing triple.
Davide Italiano78da7592015-11-21 05:44:41 +0000632 if (TripleName == "")
Lang Hames9e964f32016-03-25 17:25:34 +0000633 ErrorAndExit("-triple required when running in -verify mode.");
Lang Hamese1c11382014-06-27 20:20:57 +0000634
635 // Look up the target and build the disassembler.
636 Triple TheTriple(Triple::normalize(TripleName));
637 std::string ErrorStr;
638 const Target *TheTarget =
639 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
Davide Italiano78da7592015-11-21 05:44:41 +0000640 if (!TheTarget)
Lang Hames9e964f32016-03-25 17:25:34 +0000641 ErrorAndExit("Error accessing target '" + TripleName + "': " + ErrorStr);
Davide Italiano78da7592015-11-21 05:44:41 +0000642
Lang Hamese1c11382014-06-27 20:20:57 +0000643 TripleName = TheTriple.getTriple();
644
645 std::unique_ptr<MCSubtargetInfo> STI(
Petar Jovanovic280e5622015-06-23 22:52:19 +0000646 TheTarget->createMCSubtargetInfo(TripleName, MCPU, ""));
Davide Italianoebb27af2015-11-21 05:49:07 +0000647 if (!STI)
Lang Hames9e964f32016-03-25 17:25:34 +0000648 ErrorAndExit("Unable to create subtarget info!");
Lang Hamese1c11382014-06-27 20:20:57 +0000649
650 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
Davide Italianoebb27af2015-11-21 05:49:07 +0000651 if (!MRI)
Lang Hames9e964f32016-03-25 17:25:34 +0000652 ErrorAndExit("Unable to create target register info!");
Lang Hamese1c11382014-06-27 20:20:57 +0000653
654 std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TripleName));
Davide Italianoebb27af2015-11-21 05:49:07 +0000655 if (!MAI)
Lang Hames9e964f32016-03-25 17:25:34 +0000656 ErrorAndExit("Unable to create target asm info!");
Lang Hamese1c11382014-06-27 20:20:57 +0000657
658 MCContext Ctx(MAI.get(), MRI.get(), nullptr);
659
660 std::unique_ptr<MCDisassembler> Disassembler(
661 TheTarget->createMCDisassembler(*STI, Ctx));
Davide Italianoebb27af2015-11-21 05:49:07 +0000662 if (!Disassembler)
Lang Hames9e964f32016-03-25 17:25:34 +0000663 ErrorAndExit("Unable to create disassembler!");
Lang Hamese1c11382014-06-27 20:20:57 +0000664
665 std::unique_ptr<MCInstrInfo> MII(TheTarget->createMCInstrInfo());
666
Daniel Sanders50f17232015-09-15 16:17:27 +0000667 std::unique_ptr<MCInstPrinter> InstPrinter(
668 TheTarget->createMCInstPrinter(Triple(TripleName), 0, *MAI, *MII, *MRI));
Lang Hamese1c11382014-06-27 20:20:57 +0000669
670 // Load any dylibs requested on the command line.
671 loadDylibs();
672
673 // Instantiate a dynamic linker.
674 TrivialMemoryManager MemMgr;
Davide Italianob59ea902015-10-21 22:12:03 +0000675 doPreallocation(MemMgr);
Lang Hames633fe142015-03-30 03:37:06 +0000676 RuntimeDyld Dyld(MemMgr, MemMgr);
Lang Hames925e51b2014-09-03 05:42:52 +0000677 Dyld.setProcessAllSections(true);
Lang Hamesf7acddd2014-07-22 22:47:39 +0000678 RuntimeDyldChecker Checker(Dyld, Disassembler.get(), InstPrinter.get(),
679 llvm::dbgs());
Lang Hamese1c11382014-06-27 20:20:57 +0000680
681 // If we don't have any input files, read from stdin.
682 if (!InputFileList.size())
683 InputFileList.push_back("-");
Davide Italianod91bf8e2015-10-10 00:45:24 +0000684 for (auto &Filename : InputFileList) {
Lang Hamese1c11382014-06-27 20:20:57 +0000685 // Load the input memory buffer.
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000686 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
Davide Italianod91bf8e2015-10-10 00:45:24 +0000687 MemoryBuffer::getFileOrSTDIN(Filename);
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000688
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000689 if (std::error_code EC = InputBuffer.getError())
Lang Hames9e964f32016-03-25 17:25:34 +0000690 ErrorAndExit("unable to read input: '" + EC.message() + "'");
Lang Hamese1c11382014-06-27 20:20:57 +0000691
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000692 Expected<std::unique_ptr<ObjectFile>> MaybeObj(
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000693 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
694
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000695 if (!MaybeObj) {
696 std::string Buf;
697 raw_string_ostream OS(Buf);
698 logAllUnhandledErrors(MaybeObj.takeError(), OS, "");
699 OS.flush();
700 ErrorAndExit("unable to create object file: '" + Buf + "'");
701 }
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000702
703 ObjectFile &Obj = **MaybeObj;
704
Lang Hamese1c11382014-06-27 20:20:57 +0000705 // Load the object file
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000706 Dyld.loadObject(Obj);
707 if (Dyld.hasError()) {
Lang Hames9e964f32016-03-25 17:25:34 +0000708 ErrorAndExit(Dyld.getErrorString());
Lang Hamese1c11382014-06-27 20:20:57 +0000709 }
710 }
711
Lang Hames78937c22015-07-04 01:35:26 +0000712 // Re-map the section addresses into the phony target address space and add
713 // dummy symbols.
714 remapSectionsAndSymbols(TheTriple, MemMgr, Checker);
Lang Hames375385f2014-07-30 03:12:41 +0000715
Lang Hamese1c11382014-06-27 20:20:57 +0000716 // Resolve all the relocations we can.
717 Dyld.resolveRelocations();
718
Lang Hames925e51b2014-09-03 05:42:52 +0000719 // Register EH frames.
720 Dyld.registerEHFrames();
721
Lang Hamesae172682014-08-05 20:51:46 +0000722 int ErrorCode = checkAllExpressions(Checker);
Davide Italiano78da7592015-11-21 05:44:41 +0000723 if (Dyld.hasError())
Lang Hames9e964f32016-03-25 17:25:34 +0000724 ErrorAndExit("RTDyld reported an error applying relocations:\n " +
Davide Italiano78da7592015-11-21 05:44:41 +0000725 Dyld.getErrorString());
Lang Hamesae172682014-08-05 20:51:46 +0000726
727 return ErrorCode;
Lang Hamese1c11382014-06-27 20:20:57 +0000728}
729
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000730int main(int argc, char **argv) {
Richard Smith2ad6d482016-06-09 00:53:21 +0000731 sys::PrintStackTraceOnErrorSignal(argv[0]);
Alp Toker9f679322013-11-05 09:33:43 +0000732 PrettyStackTraceProgram X(argc, argv);
733
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000734 ProgramName = argv[0];
735 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
736
Lang Hamese1c11382014-06-27 20:20:57 +0000737 llvm::InitializeAllTargetInfos();
738 llvm::InitializeAllTargetMCs();
739 llvm::InitializeAllDisassemblers();
740
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000741 cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n");
742
743 switch (Action) {
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000744 case AC_Execute:
Jim Grosbach4d5284b2011-03-18 17:24:21 +0000745 return executeInput();
Keno Fischerc780e8e2015-05-21 21:24:32 +0000746 case AC_PrintDebugLineInfo:
Keno Fischer281b6942015-05-30 19:44:53 +0000747 return printLineInfoForInput(/* LoadObjects */ true,/* UseDebugObj */ true);
Andrew Kaylord55d7012013-01-25 22:50:58 +0000748 case AC_PrintLineInfo:
Keno Fischer281b6942015-05-30 19:44:53 +0000749 return printLineInfoForInput(/* LoadObjects */ true,/* UseDebugObj */false);
750 case AC_PrintObjectLineInfo:
751 return printLineInfoForInput(/* LoadObjects */false,/* UseDebugObj */false);
Lang Hamese1c11382014-06-27 20:20:57 +0000752 case AC_Verify:
753 return linkAndVerify();
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000754 }
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000755}