blob: b1460e35de80fbdb7735121f85e88242306f67a2 [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",
69 "Load, link and verify the resulting memory image."),
Jim Grosbach0072cdb2011-03-18 17:11:39 +000070 clEnumValEnd));
71
Jim Grosbachd35159a2011-04-13 15:38:30 +000072static cl::opt<std::string>
73EntryPoint("entry",
74 cl::desc("Function to call as entry point."),
75 cl::init("_main"));
76
Lang Hamesd311c0e2014-05-13 22:37:41 +000077static cl::list<std::string>
78Dylibs("dylib",
79 cl::desc("Add library."),
80 cl::ZeroOrMore);
81
Lang Hamese1c11382014-06-27 20:20:57 +000082static cl::opt<std::string>
83TripleName("triple", cl::desc("Target triple for disassembler"));
84
Petar Jovanovic280e5622015-06-23 22:52:19 +000085static cl::opt<std::string>
86MCPU("mcpu",
87 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
88 cl::value_desc("cpu-name"),
89 cl::init(""));
90
Lang Hamese1c11382014-06-27 20:20:57 +000091static cl::list<std::string>
92CheckFiles("check",
93 cl::desc("File containing RuntimeDyld verifier checks."),
94 cl::ZeroOrMore);
95
Lang Hames9cb73532014-07-29 23:43:13 +000096static cl::opt<uint64_t>
Davide Italianob59ea902015-10-21 22:12:03 +000097PreallocMemory("preallocate",
98 cl::desc("Allocate memory upfront rather than on-demand"),
99 cl::init(0));
100
101static cl::opt<uint64_t>
Lang Hames9cb73532014-07-29 23:43:13 +0000102TargetAddrStart("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
108static cl::opt<uint64_t>
109TargetAddrEnd("target-addr-end",
110 cl::desc("For -verify only: end of phony target address range."),
111 cl::init(~0ULL),
112 cl::Hidden);
113
114static cl::opt<uint64_t>
115TargetSectionSep("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
Lang Hames778ef5b2014-09-04 04:19:54 +0000121static cl::list<std::string>
122SpecificSectionMappings("map-section",
Lang Hames78937c22015-07-04 01:35:26 +0000123 cl::desc("For -verify only: Map a section to a "
124 "specific address."),
125 cl::ZeroOrMore,
126 cl::Hidden);
127
128static cl::list<std::string>
129DummySymbolMappings("dummy-extern",
130 cl::desc("For -verify only: Inject a symbol into the extern "
131 "symbol table."),
132 cl::ZeroOrMore,
133 cl::Hidden);
Lang Hames778ef5b2014-09-04 04:19:54 +0000134
Sanjoy Dasd5658b02015-11-23 21:47:51 +0000135static cl::opt<bool>
136PrintAllocationRequests("print-alloc-requests",
137 cl::desc("Print allocation requests made to the memory "
138 "manager by RuntimeDyld"),
139 cl::Hidden);
140
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000141/* *** */
142
Jim Grosbach2dcef0502011-04-04 23:04:39 +0000143// A trivial memory manager that doesn't do anything fancy, just uses the
144// support library allocation routines directly.
145class TrivialMemoryManager : public RTDyldMemoryManager {
146public:
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000147 SmallVector<sys::MemoryBlock, 16> FunctionMemory;
Jim Grosbacheff0a402012-01-16 22:26:39 +0000148 SmallVector<sys::MemoryBlock, 16> DataMemory;
149
150 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
Craig Toppere56917c2014-03-08 08:27:28 +0000151 unsigned SectionID,
152 StringRef SectionName) override;
Jim Grosbacheff0a402012-01-16 22:26:39 +0000153 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000154 unsigned SectionID, StringRef SectionName,
Craig Toppere56917c2014-03-08 08:27:28 +0000155 bool IsReadOnly) override;
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000156
Craig Toppere56917c2014-03-08 08:27:28 +0000157 void *getPointerToNamedFunction(const std::string &Name,
158 bool AbortOnFailure = true) override {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000159 return nullptr;
Danil Malyshevbfee5422012-03-28 21:46:36 +0000160 }
161
Craig Toppere56917c2014-03-08 08:27:28 +0000162 bool finalizeMemory(std::string *ErrMsg) override { return false; }
Andrew Kaylora342cb92012-11-15 23:50:01 +0000163
Lang Hames78937c22015-07-04 01:35:26 +0000164 void addDummySymbol(const std::string &Name, uint64_t Addr) {
165 DummyExterns[Name] = Addr;
166 }
167
168 RuntimeDyld::SymbolInfo findSymbol(const std::string &Name) override {
169 auto I = DummyExterns.find(Name);
170
171 if (I != DummyExterns.end())
172 return RuntimeDyld::SymbolInfo(I->second, JITSymbolFlags::Exported);
173
174 return RTDyldMemoryManager::findSymbol(Name);
175 }
176
Tim Northover5af339a2015-06-03 18:26:52 +0000177 void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr,
178 size_t Size) override {}
179 void deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr,
180 size_t Size) override {}
Davide Italianob59ea902015-10-21 22:12:03 +0000181
182 void preallocateSlab(uint64_t Size) {
183 std::string Err;
184 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err);
185 if (!MB.base())
186 report_fatal_error("Can't allocate enough memory: " + Err);
187
188 PreallocSlab = MB;
189 UsePreallocation = true;
190 SlabSize = Size;
191 }
192
193 uint8_t *allocateFromSlab(uintptr_t Size, unsigned Alignment, bool isCode) {
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000194 Size = alignTo(Size, Alignment);
Davide Italianob59ea902015-10-21 22:12:03 +0000195 if (CurrentSlabOffset + Size > SlabSize)
196 report_fatal_error("Can't allocate enough memory. Tune --preallocate");
197
198 uintptr_t OldSlabOffset = CurrentSlabOffset;
199 sys::MemoryBlock MB((void *)OldSlabOffset, Size);
200 if (isCode)
201 FunctionMemory.push_back(MB);
202 else
203 DataMemory.push_back(MB);
204 CurrentSlabOffset += Size;
205 return (uint8_t*)OldSlabOffset;
206 }
207
Lang Hames78937c22015-07-04 01:35:26 +0000208private:
209 std::map<std::string, uint64_t> DummyExterns;
Davide Italianob59ea902015-10-21 22:12:03 +0000210 sys::MemoryBlock PreallocSlab;
211 bool UsePreallocation = false;
212 uintptr_t SlabSize = 0;
213 uintptr_t CurrentSlabOffset = 0;
Jim Grosbach2dcef0502011-04-04 23:04:39 +0000214};
215
Jim Grosbacheff0a402012-01-16 22:26:39 +0000216uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size,
217 unsigned Alignment,
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000218 unsigned SectionID,
219 StringRef SectionName) {
Sanjoy Dasd5658b02015-11-23 21:47:51 +0000220 if (PrintAllocationRequests)
221 outs() << "allocateCodeSection(Size = " << Size << ", Alignment = "
222 << Alignment << ", SectionName = " << SectionName << ")\n";
223
Davide Italianob59ea902015-10-21 22:12:03 +0000224 if (UsePreallocation)
225 return allocateFromSlab(Size, Alignment, true /* isCode */);
226
Davide Italiano89151a02015-10-15 00:05:32 +0000227 std::string Err;
228 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err);
229 if (!MB.base())
230 report_fatal_error("MemoryManager allocation failed: " + Err);
Danil Malyshev8c17fbd2012-05-16 18:50:11 +0000231 FunctionMemory.push_back(MB);
232 return (uint8_t*)MB.base();
Jim Grosbacheff0a402012-01-16 22:26:39 +0000233}
234
235uint8_t *TrivialMemoryManager::allocateDataSection(uintptr_t Size,
236 unsigned Alignment,
Andrew Kaylora342cb92012-11-15 23:50:01 +0000237 unsigned SectionID,
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000238 StringRef SectionName,
Andrew Kaylora342cb92012-11-15 23:50:01 +0000239 bool IsReadOnly) {
Sanjoy Dasd5658b02015-11-23 21:47:51 +0000240 if (PrintAllocationRequests)
241 outs() << "allocateDataSection(Size = " << Size << ", Alignment = "
242 << Alignment << ", SectionName = " << SectionName << ")\n";
243
Davide Italianob59ea902015-10-21 22:12:03 +0000244 if (UsePreallocation)
245 return allocateFromSlab(Size, Alignment, false /* isCode */);
246
Davide Italiano89151a02015-10-15 00:05:32 +0000247 std::string Err;
248 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, &Err);
249 if (!MB.base())
250 report_fatal_error("MemoryManager allocation failed: " + Err);
Danil Malyshev8c17fbd2012-05-16 18:50:11 +0000251 DataMemory.push_back(MB);
252 return (uint8_t*)MB.base();
253}
254
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000255static const char *ProgramName;
256
Lang Hamesee5417d2016-04-05 20:11:24 +0000257static void ErrorAndExit(const Twine &Msg) {
Davide Italianoc2e910d2015-11-20 23:12:15 +0000258 errs() << ProgramName << ": error: " << Msg << "\n";
Lang Hames9e964f32016-03-25 17:25:34 +0000259 exit(1);
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000260}
261
Lang Hamesd311c0e2014-05-13 22:37:41 +0000262static void loadDylibs() {
263 for (const std::string &Dylib : Dylibs) {
Davide Italiano5cdf9362015-11-22 01:58:33 +0000264 if (!sys::fs::is_regular_file(Dylib))
Davide Italiano41d0fa72015-11-21 05:58:19 +0000265 report_fatal_error("Dylib not found: '" + Dylib + "'.");
Davide Italiano5cdf9362015-11-22 01:58:33 +0000266 std::string ErrMsg;
267 if (sys::DynamicLibrary::LoadLibraryPermanently(Dylib.c_str(), &ErrMsg))
268 report_fatal_error("Error loading '" + Dylib + "': " + ErrMsg);
Lang Hamesd311c0e2014-05-13 22:37:41 +0000269 }
270}
271
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000272/* *** */
273
Keno Fischerc780e8e2015-05-21 21:24:32 +0000274static int printLineInfoForInput(bool LoadObjects, bool UseDebugObj) {
275 assert(LoadObjects || !UseDebugObj);
276
Lang Hamesd311c0e2014-05-13 22:37:41 +0000277 // Load any dylibs requested on the command line.
278 loadDylibs();
279
Andrew Kaylord55d7012013-01-25 22:50:58 +0000280 // If we don't have any input files, read from stdin.
281 if (!InputFileList.size())
282 InputFileList.push_back("-");
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000283 for (auto &File : InputFileList) {
Andrew Kaylord55d7012013-01-25 22:50:58 +0000284 // Instantiate a dynamic linker.
Benjamin Kramer9ce77082013-08-03 22:16:31 +0000285 TrivialMemoryManager MemMgr;
Lang Hames633fe142015-03-30 03:37:06 +0000286 RuntimeDyld Dyld(MemMgr, MemMgr);
Andrew Kaylord55d7012013-01-25 22:50:58 +0000287
288 // Load the input memory buffer.
Andrew Kaylord55d7012013-01-25 22:50:58 +0000289
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000290 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000291 MemoryBuffer::getFileOrSTDIN(File);
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000292 if (std::error_code EC = InputBuffer.getError())
Lang Hames9e964f32016-03-25 17:25:34 +0000293 ErrorAndExit("unable to read input: '" + EC.message() + "'");
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000294
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000295 Expected<std::unique_ptr<ObjectFile>> MaybeObj(
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000296 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
297
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000298 if (!MaybeObj) {
299 std::string Buf;
300 raw_string_ostream OS(Buf);
301 logAllUnhandledErrors(MaybeObj.takeError(), OS, "");
302 OS.flush();
303 ErrorAndExit("unable to create object file: '" + Buf + "'");
304 }
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000305
306 ObjectFile &Obj = **MaybeObj;
307
Keno Fischerc780e8e2015-05-21 21:24:32 +0000308 OwningBinary<ObjectFile> DebugObj;
309 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> LoadedObjInfo = nullptr;
310 ObjectFile *SymbolObj = &Obj;
311 if (LoadObjects) {
312 // Load the object file
313 LoadedObjInfo =
314 Dyld.loadObject(Obj);
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000315
Keno Fischerc780e8e2015-05-21 21:24:32 +0000316 if (Dyld.hasError())
Lang Hames9e964f32016-03-25 17:25:34 +0000317 ErrorAndExit(Dyld.getErrorString());
Andrew Kaylord55d7012013-01-25 22:50:58 +0000318
Keno Fischerc780e8e2015-05-21 21:24:32 +0000319 // Resolve all the relocations we can.
320 Dyld.resolveRelocations();
Andrew Kaylord55d7012013-01-25 22:50:58 +0000321
Keno Fischerc780e8e2015-05-21 21:24:32 +0000322 if (UseDebugObj) {
323 DebugObj = LoadedObjInfo->getObjectForDebug(Obj);
324 SymbolObj = DebugObj.getBinary();
Lang Hames5c969332015-07-28 20:51:53 +0000325 LoadedObjInfo.reset();
Keno Fischerc780e8e2015-05-21 21:24:32 +0000326 }
327 }
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000328
Ahmed Charles56440fd2014-03-06 05:51:42 +0000329 std::unique_ptr<DIContext> Context(
Keno Fischerc780e8e2015-05-21 21:24:32 +0000330 new DWARFContextInMemory(*SymbolObj,LoadedObjInfo.get()));
Andrew Kaylord55d7012013-01-25 22:50:58 +0000331
Rafael Espindola6bf32212015-06-24 19:57:32 +0000332 std::vector<std::pair<SymbolRef, uint64_t>> SymAddr =
Rafael Espindolab109c032015-06-23 02:08:48 +0000333 object::computeSymbolSizes(*SymbolObj);
Rafael Espindolaa82ce1d2015-05-31 23:15:35 +0000334
Andrew Kaylord55d7012013-01-25 22:50:58 +0000335 // Use symbol info to iterate functions in the object.
Rafael Espindola6bf32212015-06-24 19:57:32 +0000336 for (const auto &P : SymAddr) {
Rafael Espindolab109c032015-06-23 02:08:48 +0000337 object::SymbolRef Sym = P.first;
Kevin Enderby7bd8d992016-05-02 20:28:12 +0000338 Expected<SymbolRef::Type> TypeOrErr = Sym.getType();
339 if (!TypeOrErr) {
340 // TODO: Actually report errors helpfully.
341 consumeError(TypeOrErr.takeError());
Kevin Enderby5afbc1c2016-03-23 20:27:00 +0000342 continue;
Kevin Enderby7bd8d992016-05-02 20:28:12 +0000343 }
Kevin Enderby5afbc1c2016-03-23 20:27:00 +0000344 SymbolRef::Type Type = *TypeOrErr;
345 if (Type == object::SymbolRef::ST_Function) {
Kevin Enderby81e8b7d2016-04-20 21:24:34 +0000346 Expected<StringRef> Name = Sym.getName();
347 if (!Name) {
348 // TODO: Actually report errors helpfully.
349 consumeError(Name.takeError());
Rafael Espindolada176272015-05-31 22:13:51 +0000350 continue;
Kevin Enderby81e8b7d2016-04-20 21:24:34 +0000351 }
Kevin Enderby931cb652016-06-24 18:24:42 +0000352 Expected<uint64_t> AddrOrErr = Sym.getAddress();
353 if (!AddrOrErr) {
354 // TODO: Actually report errors helpfully.
355 consumeError(AddrOrErr.takeError());
Rafael Espindolada176272015-05-31 22:13:51 +0000356 continue;
Kevin Enderby931cb652016-06-24 18:24:42 +0000357 }
Rafael Espindolaed067c42015-07-03 18:19:00 +0000358 uint64_t Addr = *AddrOrErr;
Rafael Espindolaa82ce1d2015-05-31 23:15:35 +0000359
Rafael Espindolab109c032015-06-23 02:08:48 +0000360 uint64_t Size = P.second;
Keno Fischerc780e8e2015-05-21 21:24:32 +0000361 // If we're not using the debug object, compute the address of the
362 // symbol in memory (rather than that in the unrelocated object file)
363 // and use that to query the DWARFContext.
364 if (!UseDebugObj && LoadObjects) {
Kevin Enderby7bd8d992016-05-02 20:28:12 +0000365 auto SecOrErr = Sym.getSection();
366 if (!SecOrErr) {
367 // TODO: Actually report errors helpfully.
368 consumeError(SecOrErr.takeError());
369 continue;
370 }
371 object::section_iterator Sec = *SecOrErr;
Keno Fischerc780e8e2015-05-21 21:24:32 +0000372 StringRef SecName;
373 Sec->getName(SecName);
374 uint64_t SectionLoadAddress =
Lang Hames2e88f4f2015-07-28 17:52:11 +0000375 LoadedObjInfo->getSectionLoadAddress(*Sec);
Keno Fischerc780e8e2015-05-21 21:24:32 +0000376 if (SectionLoadAddress != 0)
377 Addr += SectionLoadAddress - Sec->getAddress();
378 }
379
Rafael Espindola5d0c2ff2015-07-02 20:55:21 +0000380 outs() << "Function: " << *Name << ", Size = " << Size
381 << ", Addr = " << Addr << "\n";
Andrew Kaylord55d7012013-01-25 22:50:58 +0000382
Andrew Kaylor9a8ff812013-01-26 00:28:05 +0000383 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000384 for (auto &D : Lines) {
385 outs() << " Line info @ " << D.first - Addr << ": "
386 << D.second.FileName << ", line:" << D.second.Line << "\n";
Andrew Kaylor9a8ff812013-01-26 00:28:05 +0000387 }
Andrew Kaylord55d7012013-01-25 22:50:58 +0000388 }
389 }
390 }
391
392 return 0;
393}
394
Davide Italianob59ea902015-10-21 22:12:03 +0000395static void doPreallocation(TrivialMemoryManager &MemMgr) {
396 // Allocate a slab of memory upfront, if required. This is used if
397 // we want to test small code models.
398 if (static_cast<intptr_t>(PreallocMemory) < 0)
399 report_fatal_error("Pre-allocated bytes of memory must be a positive integer.");
400
401 // FIXME: Limit the amount of memory that can be preallocated?
402 if (PreallocMemory != 0)
403 MemMgr.preallocateSlab(PreallocMemory);
404}
405
Jim Grosbach4d5284b2011-03-18 17:24:21 +0000406static int executeInput() {
Lang Hamesd311c0e2014-05-13 22:37:41 +0000407 // Load any dylibs requested on the command line.
408 loadDylibs();
409
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000410 // Instantiate a dynamic linker.
Benjamin Kramer9ce77082013-08-03 22:16:31 +0000411 TrivialMemoryManager MemMgr;
Davide Italianob59ea902015-10-21 22:12:03 +0000412 doPreallocation(MemMgr);
Lang Hames633fe142015-03-30 03:37:06 +0000413 RuntimeDyld Dyld(MemMgr, MemMgr);
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000414
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000415 // If we don't have any input files, read from stdin.
416 if (!InputFileList.size())
417 InputFileList.push_back("-");
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000418 for (auto &File : InputFileList) {
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000419 // Load the input memory buffer.
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000420 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000421 MemoryBuffer::getFileOrSTDIN(File);
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000422 if (std::error_code EC = InputBuffer.getError())
Lang Hames9e964f32016-03-25 17:25:34 +0000423 ErrorAndExit("unable to read input: '" + EC.message() + "'");
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000424 Expected<std::unique_ptr<ObjectFile>> MaybeObj(
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000425 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
426
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000427 if (!MaybeObj) {
428 std::string Buf;
429 raw_string_ostream OS(Buf);
430 logAllUnhandledErrors(MaybeObj.takeError(), OS, "");
431 OS.flush();
432 ErrorAndExit("unable to create object file: '" + Buf + "'");
433 }
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000434
435 ObjectFile &Obj = **MaybeObj;
436
Andrew Kayloradc70562012-10-02 21:18:39 +0000437 // Load the object file
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000438 Dyld.loadObject(Obj);
439 if (Dyld.hasError()) {
Lang Hames9e964f32016-03-25 17:25:34 +0000440 ErrorAndExit(Dyld.getErrorString());
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000441 }
Jim Grosbach40411cc2011-03-22 18:19:42 +0000442 }
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000443
Davide Italianoaf08e1b2015-11-17 16:37:52 +0000444 // Resove all the relocations we can.
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000445 // FIXME: Error out if there are unresolved relocations.
Davide Italianoaf08e1b2015-11-17 16:37:52 +0000446 Dyld.resolveRelocations();
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000447
Jim Grosbachd35159a2011-04-13 15:38:30 +0000448 // Get the address of the entry point (_main by default).
Lang Hamesb1186032015-03-11 00:43:26 +0000449 void *MainAddress = Dyld.getSymbolLocalAddress(EntryPoint);
Craig Toppere6cb63e2014-04-25 04:24:47 +0000450 if (!MainAddress)
Lang Hames9e964f32016-03-25 17:25:34 +0000451 ErrorAndExit("no definition for '" + EntryPoint + "'");
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000452
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000453 // Invalidate the instruction cache for each loaded function.
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000454 for (auto &FM : MemMgr.FunctionMemory) {
Davide Italianoaf08e1b2015-11-17 16:37:52 +0000455
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000456 // Make sure the memory is executable.
Davide Italianoaf08e1b2015-11-17 16:37:52 +0000457 // setExecutable will call InvalidateInstructionCache.
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000458 std::string ErrorStr;
Davide Italiano5d7e8fd2015-10-12 00:57:29 +0000459 if (!sys::Memory::setExecutable(FM, &ErrorStr))
Lang Hames9e964f32016-03-25 17:25:34 +0000460 ErrorAndExit("unable to mark function executable: '" + ErrorStr + "'");
Jim Grosbach3ed03f12011-04-12 00:23:32 +0000461 }
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000462
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000463 // Dispatch to _main().
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000464 errs() << "loaded '" << EntryPoint << "' at: " << (void*)MainAddress << "\n";
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000465
466 int (*Main)(int, const char**) =
467 (int(*)(int,const char**)) uintptr_t(MainAddress);
468 const char **Argv = new const char*[2];
Jim Grosbach7cb41d72011-04-13 15:49:40 +0000469 // Use the name of the first input object module as argv[0] for the target.
470 Argv[0] = InputFileList[0].c_str();
Craig Toppere6cb63e2014-04-25 04:24:47 +0000471 Argv[1] = nullptr;
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000472 return Main(1, Argv);
473}
474
Lang Hamese1c11382014-06-27 20:20:57 +0000475static int checkAllExpressions(RuntimeDyldChecker &Checker) {
476 for (const auto& CheckerFileName : CheckFiles) {
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000477 ErrorOr<std::unique_ptr<MemoryBuffer>> CheckerFileBuf =
478 MemoryBuffer::getFileOrSTDIN(CheckerFileName);
479 if (std::error_code EC = CheckerFileBuf.getError())
Lang Hames9e964f32016-03-25 17:25:34 +0000480 ErrorAndExit("unable to read input '" + CheckerFileName + "': " +
Lang Hamese1c11382014-06-27 20:20:57 +0000481 EC.message());
482
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000483 if (!Checker.checkAllRulesInBuffer("# rtdyld-check:",
484 CheckerFileBuf.get().get()))
Lang Hames9e964f32016-03-25 17:25:34 +0000485 ErrorAndExit("some checks in '" + CheckerFileName + "' failed");
Lang Hamese1c11382014-06-27 20:20:57 +0000486 }
487 return 0;
488}
489
Benjamin Kramerf044d3f2015-03-09 16:23:46 +0000490static std::map<void *, uint64_t>
Lang Hames778ef5b2014-09-04 04:19:54 +0000491applySpecificSectionMappings(RuntimeDyldChecker &Checker) {
492
493 std::map<void*, uint64_t> SpecificMappings;
494
495 for (StringRef Mapping : SpecificSectionMappings) {
496
497 size_t EqualsIdx = Mapping.find_first_of("=");
Lang Hames78937c22015-07-04 01:35:26 +0000498 std::string SectionIDStr = Mapping.substr(0, EqualsIdx);
Lang Hames778ef5b2014-09-04 04:19:54 +0000499 size_t ComaIdx = Mapping.find_first_of(",");
500
Davide Italiano07557fc2015-11-21 02:15:51 +0000501 if (ComaIdx == StringRef::npos)
502 report_fatal_error("Invalid section specification '" + Mapping +
503 "'. Should be '<file name>,<section name>=<addr>'");
Lang Hames778ef5b2014-09-04 04:19:54 +0000504
Lang Hames78937c22015-07-04 01:35:26 +0000505 std::string FileName = SectionIDStr.substr(0, ComaIdx);
506 std::string SectionName = SectionIDStr.substr(ComaIdx + 1);
Lang Hames778ef5b2014-09-04 04:19:54 +0000507
508 uint64_t OldAddrInt;
509 std::string ErrorMsg;
510 std::tie(OldAddrInt, ErrorMsg) =
511 Checker.getSectionAddr(FileName, SectionName, true);
512
Davide Italiano07557fc2015-11-21 02:15:51 +0000513 if (ErrorMsg != "")
514 report_fatal_error(ErrorMsg);
Lang Hames778ef5b2014-09-04 04:19:54 +0000515
516 void* OldAddr = reinterpret_cast<void*>(static_cast<uintptr_t>(OldAddrInt));
517
Lang Hames78937c22015-07-04 01:35:26 +0000518 std::string NewAddrStr = Mapping.substr(EqualsIdx + 1);
Lang Hames778ef5b2014-09-04 04:19:54 +0000519 uint64_t NewAddr;
520
Davide Italiano07557fc2015-11-21 02:15:51 +0000521 if (StringRef(NewAddrStr).getAsInteger(0, NewAddr))
522 report_fatal_error("Invalid section address in mapping '" + Mapping +
523 "'.");
Lang Hames778ef5b2014-09-04 04:19:54 +0000524
525 Checker.getRTDyld().mapSectionAddress(OldAddr, NewAddr);
526 SpecificMappings[OldAddr] = NewAddr;
527 }
528
529 return SpecificMappings;
530}
531
Lang Hames9cb73532014-07-29 23:43:13 +0000532// Scatter sections in all directions!
533// Remaps section addresses for -verify mode. The following command line options
534// can be used to customize the layout of the memory within the phony target's
535// address space:
536// -target-addr-start <s> -- Specify where the phony target addres range starts.
537// -target-addr-end <e> -- Specify where the phony target address range ends.
538// -target-section-sep <d> -- Specify how big a gap should be left between the
539// end of one section and the start of the next.
540// Defaults to zero. Set to something big
541// (e.g. 1 << 32) to stress-test stubs, GOTs, etc.
542//
Lang Hames78937c22015-07-04 01:35:26 +0000543static void remapSectionsAndSymbols(const llvm::Triple &TargetTriple,
544 TrivialMemoryManager &MemMgr,
545 RuntimeDyldChecker &Checker) {
Lang Hames778ef5b2014-09-04 04:19:54 +0000546
547 // Set up a work list (section addr/size pairs).
548 typedef std::list<std::pair<void*, uint64_t>> WorklistT;
549 WorklistT Worklist;
550
551 for (const auto& CodeSection : MemMgr.FunctionMemory)
552 Worklist.push_back(std::make_pair(CodeSection.base(), CodeSection.size()));
553 for (const auto& DataSection : MemMgr.DataMemory)
554 Worklist.push_back(std::make_pair(DataSection.base(), DataSection.size()));
555
556 // Apply any section-specific mappings that were requested on the command
557 // line.
558 typedef std::map<void*, uint64_t> AppliedMappingsT;
559 AppliedMappingsT AppliedMappings = applySpecificSectionMappings(Checker);
560
561 // Keep an "already allocated" mapping of section target addresses to sizes.
562 // Sections whose address mappings aren't specified on the command line will
563 // allocated around the explicitly mapped sections while maintaining the
564 // minimum separation.
565 std::map<uint64_t, uint64_t> AlreadyAllocated;
566
567 // Move the previously applied mappings into the already-allocated map.
568 for (WorklistT::iterator I = Worklist.begin(), E = Worklist.end();
569 I != E;) {
570 WorklistT::iterator Tmp = I;
571 ++I;
572 AppliedMappingsT::iterator AI = AppliedMappings.find(Tmp->first);
573
574 if (AI != AppliedMappings.end()) {
575 AlreadyAllocated[AI->second] = Tmp->second;
576 Worklist.erase(Tmp);
577 }
578 }
Lang Hames9cb73532014-07-29 23:43:13 +0000579
580 // If the -target-addr-end option wasn't explicitly passed, then set it to a
581 // sensible default based on the target triple.
582 if (TargetAddrEnd.getNumOccurrences() == 0) {
583 if (TargetTriple.isArch16Bit())
584 TargetAddrEnd = (1ULL << 16) - 1;
585 else if (TargetTriple.isArch32Bit())
586 TargetAddrEnd = (1ULL << 32) - 1;
587 // TargetAddrEnd already has a sensible default for 64-bit systems, so
588 // there's nothing to do in the 64-bit case.
589 }
590
Lang Hames778ef5b2014-09-04 04:19:54 +0000591 // Process any elements remaining in the worklist.
592 while (!Worklist.empty()) {
593 std::pair<void*, uint64_t> CurEntry = Worklist.front();
594 Worklist.pop_front();
Lang Hames9cb73532014-07-29 23:43:13 +0000595
Lang Hames778ef5b2014-09-04 04:19:54 +0000596 uint64_t NextSectionAddr = TargetAddrStart;
597
598 for (const auto &Alloc : AlreadyAllocated)
599 if (NextSectionAddr + CurEntry.second + TargetSectionSep <= Alloc.first)
600 break;
601 else
602 NextSectionAddr = Alloc.first + Alloc.second + TargetSectionSep;
603
604 AlreadyAllocated[NextSectionAddr] = CurEntry.second;
605 Checker.getRTDyld().mapSectionAddress(CurEntry.first, NextSectionAddr);
Lang Hames9cb73532014-07-29 23:43:13 +0000606 }
607
Lang Hames78937c22015-07-04 01:35:26 +0000608 // Add dummy symbols to the memory manager.
609 for (const auto &Mapping : DummySymbolMappings) {
610 size_t EqualsIdx = Mapping.find_first_of("=");
611
Davide Italiano07557fc2015-11-21 02:15:51 +0000612 if (EqualsIdx == StringRef::npos)
613 report_fatal_error("Invalid dummy symbol specification '" + Mapping +
614 "'. Should be '<symbol name>=<addr>'");
Lang Hames78937c22015-07-04 01:35:26 +0000615
616 std::string Symbol = Mapping.substr(0, EqualsIdx);
617 std::string AddrStr = Mapping.substr(EqualsIdx + 1);
618
619 uint64_t Addr;
Davide Italiano07557fc2015-11-21 02:15:51 +0000620 if (StringRef(AddrStr).getAsInteger(0, Addr))
621 report_fatal_error("Invalid symbol mapping '" + Mapping + "'.");
Lang Hames78937c22015-07-04 01:35:26 +0000622
623 MemMgr.addDummySymbol(Symbol, Addr);
624 }
Lang Hames9cb73532014-07-29 23:43:13 +0000625}
626
627// Load and link the objects specified on the command line, but do not execute
628// anything. Instead, attach a RuntimeDyldChecker instance and call it to
629// verify the correctness of the linked memory.
Lang Hamese1c11382014-06-27 20:20:57 +0000630static int linkAndVerify() {
631
632 // Check for missing triple.
Davide Italiano78da7592015-11-21 05:44:41 +0000633 if (TripleName == "")
Lang Hames9e964f32016-03-25 17:25:34 +0000634 ErrorAndExit("-triple required when running in -verify mode.");
Lang Hamese1c11382014-06-27 20:20:57 +0000635
636 // Look up the target and build the disassembler.
637 Triple TheTriple(Triple::normalize(TripleName));
638 std::string ErrorStr;
639 const Target *TheTarget =
640 TargetRegistry::lookupTarget("", TheTriple, ErrorStr);
Davide Italiano78da7592015-11-21 05:44:41 +0000641 if (!TheTarget)
Lang Hames9e964f32016-03-25 17:25:34 +0000642 ErrorAndExit("Error accessing target '" + TripleName + "': " + ErrorStr);
Davide Italiano78da7592015-11-21 05:44:41 +0000643
Lang Hamese1c11382014-06-27 20:20:57 +0000644 TripleName = TheTriple.getTriple();
645
646 std::unique_ptr<MCSubtargetInfo> STI(
Petar Jovanovic280e5622015-06-23 22:52:19 +0000647 TheTarget->createMCSubtargetInfo(TripleName, MCPU, ""));
Davide Italianoebb27af2015-11-21 05:49:07 +0000648 if (!STI)
Lang Hames9e964f32016-03-25 17:25:34 +0000649 ErrorAndExit("Unable to create subtarget info!");
Lang Hamese1c11382014-06-27 20:20:57 +0000650
651 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
Davide Italianoebb27af2015-11-21 05:49:07 +0000652 if (!MRI)
Lang Hames9e964f32016-03-25 17:25:34 +0000653 ErrorAndExit("Unable to create target register info!");
Lang Hamese1c11382014-06-27 20:20:57 +0000654
655 std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TripleName));
Davide Italianoebb27af2015-11-21 05:49:07 +0000656 if (!MAI)
Lang Hames9e964f32016-03-25 17:25:34 +0000657 ErrorAndExit("Unable to create target asm info!");
Lang Hamese1c11382014-06-27 20:20:57 +0000658
659 MCContext Ctx(MAI.get(), MRI.get(), nullptr);
660
661 std::unique_ptr<MCDisassembler> Disassembler(
662 TheTarget->createMCDisassembler(*STI, Ctx));
Davide Italianoebb27af2015-11-21 05:49:07 +0000663 if (!Disassembler)
Lang Hames9e964f32016-03-25 17:25:34 +0000664 ErrorAndExit("Unable to create disassembler!");
Lang Hamese1c11382014-06-27 20:20:57 +0000665
666 std::unique_ptr<MCInstrInfo> MII(TheTarget->createMCInstrInfo());
667
Daniel Sanders50f17232015-09-15 16:17:27 +0000668 std::unique_ptr<MCInstPrinter> InstPrinter(
669 TheTarget->createMCInstPrinter(Triple(TripleName), 0, *MAI, *MII, *MRI));
Lang Hamese1c11382014-06-27 20:20:57 +0000670
671 // Load any dylibs requested on the command line.
672 loadDylibs();
673
674 // Instantiate a dynamic linker.
675 TrivialMemoryManager MemMgr;
Davide Italianob59ea902015-10-21 22:12:03 +0000676 doPreallocation(MemMgr);
Lang Hames633fe142015-03-30 03:37:06 +0000677 RuntimeDyld Dyld(MemMgr, MemMgr);
Lang Hames925e51b2014-09-03 05:42:52 +0000678 Dyld.setProcessAllSections(true);
Lang Hamesf7acddd2014-07-22 22:47:39 +0000679 RuntimeDyldChecker Checker(Dyld, Disassembler.get(), InstPrinter.get(),
680 llvm::dbgs());
Lang Hamese1c11382014-06-27 20:20:57 +0000681
682 // If we don't have any input files, read from stdin.
683 if (!InputFileList.size())
684 InputFileList.push_back("-");
Davide Italianod91bf8e2015-10-10 00:45:24 +0000685 for (auto &Filename : InputFileList) {
Lang Hamese1c11382014-06-27 20:20:57 +0000686 // Load the input memory buffer.
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000687 ErrorOr<std::unique_ptr<MemoryBuffer>> InputBuffer =
Davide Italianod91bf8e2015-10-10 00:45:24 +0000688 MemoryBuffer::getFileOrSTDIN(Filename);
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000689
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000690 if (std::error_code EC = InputBuffer.getError())
Lang Hames9e964f32016-03-25 17:25:34 +0000691 ErrorAndExit("unable to read input: '" + EC.message() + "'");
Lang Hamese1c11382014-06-27 20:20:57 +0000692
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000693 Expected<std::unique_ptr<ObjectFile>> MaybeObj(
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000694 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
695
Kevin Enderby3fcdf6a2016-04-06 22:14:09 +0000696 if (!MaybeObj) {
697 std::string Buf;
698 raw_string_ostream OS(Buf);
699 logAllUnhandledErrors(MaybeObj.takeError(), OS, "");
700 OS.flush();
701 ErrorAndExit("unable to create object file: '" + Buf + "'");
702 }
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000703
704 ObjectFile &Obj = **MaybeObj;
705
Lang Hamese1c11382014-06-27 20:20:57 +0000706 // Load the object file
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000707 Dyld.loadObject(Obj);
708 if (Dyld.hasError()) {
Lang Hames9e964f32016-03-25 17:25:34 +0000709 ErrorAndExit(Dyld.getErrorString());
Lang Hamese1c11382014-06-27 20:20:57 +0000710 }
711 }
712
Lang Hames78937c22015-07-04 01:35:26 +0000713 // Re-map the section addresses into the phony target address space and add
714 // dummy symbols.
715 remapSectionsAndSymbols(TheTriple, MemMgr, Checker);
Lang Hames375385f2014-07-30 03:12:41 +0000716
Lang Hamese1c11382014-06-27 20:20:57 +0000717 // Resolve all the relocations we can.
718 Dyld.resolveRelocations();
719
Lang Hames925e51b2014-09-03 05:42:52 +0000720 // Register EH frames.
721 Dyld.registerEHFrames();
722
Lang Hamesae172682014-08-05 20:51:46 +0000723 int ErrorCode = checkAllExpressions(Checker);
Davide Italiano78da7592015-11-21 05:44:41 +0000724 if (Dyld.hasError())
Lang Hames9e964f32016-03-25 17:25:34 +0000725 ErrorAndExit("RTDyld reported an error applying relocations:\n " +
Davide Italiano78da7592015-11-21 05:44:41 +0000726 Dyld.getErrorString());
Lang Hamesae172682014-08-05 20:51:46 +0000727
728 return ErrorCode;
Lang Hamese1c11382014-06-27 20:20:57 +0000729}
730
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000731int main(int argc, char **argv) {
Richard Smith2ad6d482016-06-09 00:53:21 +0000732 sys::PrintStackTraceOnErrorSignal(argv[0]);
Alp Toker9f679322013-11-05 09:33:43 +0000733 PrettyStackTraceProgram X(argc, argv);
734
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000735 ProgramName = argv[0];
736 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
737
Lang Hamese1c11382014-06-27 20:20:57 +0000738 llvm::InitializeAllTargetInfos();
739 llvm::InitializeAllTargetMCs();
740 llvm::InitializeAllDisassemblers();
741
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000742 cl::ParseCommandLineOptions(argc, argv, "llvm MC-JIT tool\n");
743
744 switch (Action) {
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000745 case AC_Execute:
Jim Grosbach4d5284b2011-03-18 17:24:21 +0000746 return executeInput();
Keno Fischerc780e8e2015-05-21 21:24:32 +0000747 case AC_PrintDebugLineInfo:
Keno Fischer281b6942015-05-30 19:44:53 +0000748 return printLineInfoForInput(/* LoadObjects */ true,/* UseDebugObj */ true);
Andrew Kaylord55d7012013-01-25 22:50:58 +0000749 case AC_PrintLineInfo:
Keno Fischer281b6942015-05-30 19:44:53 +0000750 return printLineInfoForInput(/* LoadObjects */ true,/* UseDebugObj */false);
751 case AC_PrintObjectLineInfo:
752 return printLineInfoForInput(/* LoadObjects */false,/* UseDebugObj */false);
Lang Hamese1c11382014-06-27 20:20:57 +0000753 case AC_Verify:
754 return linkAndVerify();
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000755 }
Jim Grosbach0072cdb2011-03-18 17:11:39 +0000756}