1 //===- lli.cpp - LLVM Interpreter / Dynamic compiler ----------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This utility provides a simple wrapper around the LLVM Execution Engines,
10 // which allow the direct execution of LLVM programs through a Just-In-Time
11 // compiler, or through an interpreter if no JIT is available for this platform.
13 //===----------------------------------------------------------------------===//
15 #include "ForwardingMemoryManager.h"
16 #include "llvm/ADT/StringExtras.h"
17 #include "llvm/Bitcode/BitcodeReader.h"
18 #include "llvm/CodeGen/CommandFlags.h"
19 #include "llvm/CodeGen/LinkAllCodegenComponents.h"
20 #include "llvm/Config/llvm-config.h"
21 #include "llvm/ExecutionEngine/GenericValue.h"
22 #include "llvm/ExecutionEngine/Interpreter.h"
23 #include "llvm/ExecutionEngine/JITEventListener.h"
24 #include "llvm/ExecutionEngine/JITSymbol.h"
25 #include "llvm/ExecutionEngine/MCJIT.h"
26 #include "llvm/ExecutionEngine/ObjectCache.h"
27 #include "llvm/ExecutionEngine/Orc/DebugUtils.h"
28 #include "llvm/ExecutionEngine/Orc/Debugging/DebuggerSupport.h"
29 #include "llvm/ExecutionEngine/Orc/EPCDynamicLibrarySearchGenerator.h"
30 #include "llvm/ExecutionEngine/Orc/EPCEHFrameRegistrar.h"
31 #include "llvm/ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.h"
32 #include "llvm/ExecutionEngine/Orc/ExecutionUtils.h"
33 #include "llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h"
34 #include "llvm/ExecutionEngine/Orc/LLJIT.h"
35 #include "llvm/ExecutionEngine/Orc/ObjectTransformLayer.h"
36 #include "llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h"
37 #include "llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h"
38 #include "llvm/ExecutionEngine/Orc/SymbolStringPool.h"
39 #include "llvm/ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.h"
40 #include "llvm/ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.h"
41 #include "llvm/ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.h"
42 #include "llvm/ExecutionEngine/SectionMemoryManager.h"
43 #include "llvm/IR/IRBuilder.h"
44 #include "llvm/IR/LLVMContext.h"
45 #include "llvm/IR/Module.h"
46 #include "llvm/IR/Type.h"
47 #include "llvm/IR/Verifier.h"
48 #include "llvm/IRReader/IRReader.h"
49 #include "llvm/Object/Archive.h"
50 #include "llvm/Object/ObjectFile.h"
51 #include "llvm/Support/CommandLine.h"
52 #include "llvm/Support/Debug.h"
53 #include "llvm/Support/DynamicLibrary.h"
54 #include "llvm/Support/Format.h"
55 #include "llvm/Support/InitLLVM.h"
56 #include "llvm/Support/MathExtras.h"
57 #include "llvm/Support/Memory.h"
58 #include "llvm/Support/MemoryBuffer.h"
59 #include "llvm/Support/Path.h"
60 #include "llvm/Support/PluginLoader.h"
61 #include "llvm/Support/Process.h"
62 #include "llvm/Support/Program.h"
63 #include "llvm/Support/SourceMgr.h"
64 #include "llvm/Support/TargetSelect.h"
65 #include "llvm/Support/ToolOutputFile.h"
66 #include "llvm/Support/WithColor.h"
67 #include "llvm/Support/raw_ostream.h"
68 #include "llvm/TargetParser/Triple.h"
69 #include "llvm/Transforms/Instrumentation.h"
73 #if !defined(_MSC_VER) && !defined(__MINGW32__)
80 #include <cygwin/version.h>
81 #if defined(CYGWIN_VERSION_DLL_MAJOR) && CYGWIN_VERSION_DLL_MAJOR<1007
82 #define DO_NOTHING_ATEXIT 1
88 static codegen::RegisterCodeGenFlags CGF
;
90 #define DEBUG_TYPE "lli"
94 enum class JITKind
{ MCJIT
, Orc
, OrcLazy
};
95 enum class JITLinkerKind
{ Default
, RuntimeDyld
, JITLink
};
98 InputFile(cl::desc("<input bitcode>"), cl::Positional
, cl::init("-"));
100 cl::list
<std::string
>
101 InputArgv(cl::ConsumeAfter
, cl::desc("<program arguments>..."));
103 cl::opt
<bool> ForceInterpreter("force-interpreter",
104 cl::desc("Force interpretation: disable JIT"),
107 cl::opt
<JITKind
> UseJITKind(
108 "jit-kind", cl::desc("Choose underlying JIT kind."),
109 cl::init(JITKind::Orc
),
110 cl::values(clEnumValN(JITKind::MCJIT
, "mcjit", "MCJIT"),
111 clEnumValN(JITKind::Orc
, "orc", "Orc JIT"),
112 clEnumValN(JITKind::OrcLazy
, "orc-lazy",
113 "Orc-based lazy JIT.")));
115 cl::opt
<JITLinkerKind
>
116 JITLinker("jit-linker", cl::desc("Choose the dynamic linker/loader."),
117 cl::init(JITLinkerKind::Default
),
118 cl::values(clEnumValN(JITLinkerKind::Default
, "default",
119 "Default for platform and JIT-kind"),
120 clEnumValN(JITLinkerKind::RuntimeDyld
, "rtdyld",
122 clEnumValN(JITLinkerKind::JITLink
, "jitlink",
123 "Orc-specific linker")));
124 cl::opt
<std::string
> OrcRuntime("orc-runtime",
125 cl::desc("Use ORC runtime from given path"),
129 LazyJITCompileThreads("compile-threads",
130 cl::desc("Choose the number of compile threads "
131 "(jit-kind=orc-lazy only)"),
134 cl::list
<std::string
>
135 ThreadEntryPoints("thread-entry",
136 cl::desc("calls the given entry-point on a new thread "
137 "(jit-kind=orc-lazy only)"));
139 cl::opt
<bool> PerModuleLazy(
141 cl::desc("Performs lazy compilation on whole module boundaries "
142 "rather than individual functions"),
145 cl::list
<std::string
>
147 cl::desc("Specifies the JITDylib to be used for any subsequent "
148 "-extra-module arguments."));
150 cl::list
<std::string
>
151 Dylibs("dlopen", cl::desc("Dynamic libraries to load before linking"));
153 // The MCJIT supports building for a target address space separate from
154 // the JIT compilation process. Use a forked process and a copying
155 // memory manager with IPC to execute using this functionality.
156 cl::opt
<bool> RemoteMCJIT("remote-mcjit",
157 cl::desc("Execute MCJIT'ed code in a separate process."),
160 // Manually specify the child process for remote execution. This overrides
161 // the simulated remote execution that allocates address space for child
162 // execution. The child process will be executed and will communicate with
163 // lli via stdin/stdout pipes.
165 ChildExecPath("mcjit-remote-process",
166 cl::desc("Specify the filename of the process to launch "
167 "for remote MCJIT execution. If none is specified,"
168 "\n\tremote execution will be simulated in-process."),
169 cl::value_desc("filename"), cl::init(""));
171 // Determine optimization level.
172 cl::opt
<char> OptLevel("O",
173 cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] "
174 "(default = '-O2')"),
175 cl::Prefix
, cl::init('2'));
178 TargetTriple("mtriple", cl::desc("Override target triple for module"));
181 EntryFunc("entry-function",
182 cl::desc("Specify the entry function (default = 'main') "
183 "of the executable"),
184 cl::value_desc("function"),
187 cl::list
<std::string
>
188 ExtraModules("extra-module",
189 cl::desc("Extra modules to be loaded"),
190 cl::value_desc("input bitcode"));
192 cl::list
<std::string
>
193 ExtraObjects("extra-object",
194 cl::desc("Extra object files to be loaded"),
195 cl::value_desc("input object"));
197 cl::list
<std::string
>
198 ExtraArchives("extra-archive",
199 cl::desc("Extra archive files to be loaded"),
200 cl::value_desc("input archive"));
203 EnableCacheManager("enable-cache-manager",
204 cl::desc("Use cache manager to save/load modules"),
208 ObjectCacheDir("object-cache-dir",
209 cl::desc("Directory to store cached object files "
210 "(must be user writable)"),
214 FakeArgv0("fake-argv0",
215 cl::desc("Override the 'argv[0]' value passed into the executing"
216 " program"), cl::value_desc("executable"));
219 DisableCoreFiles("disable-core-files", cl::Hidden
,
220 cl::desc("Disable emission of core files if possible"));
223 NoLazyCompilation("disable-lazy-compilation",
224 cl::desc("Disable JIT lazy compilation"),
228 GenerateSoftFloatCalls("soft-float",
229 cl::desc("Generate software floating point library calls"),
232 cl::opt
<bool> NoProcessSymbols(
234 cl::desc("Do not resolve lli process symbols in JIT'd code"),
237 enum class LLJITPlatform
{ Inactive
, Auto
, ExecutorNative
, GenericIR
};
239 cl::opt
<LLJITPlatform
> Platform(
240 "lljit-platform", cl::desc("Platform to use with LLJIT"),
241 cl::init(LLJITPlatform::Auto
),
242 cl::values(clEnumValN(LLJITPlatform::Auto
, "Auto",
243 "Like 'ExecutorNative' if ORC runtime "
244 "provided, otherwise like 'GenericIR'"),
245 clEnumValN(LLJITPlatform::ExecutorNative
, "ExecutorNative",
246 "Use the native platform for the executor."
247 "Requires -orc-runtime"),
248 clEnumValN(LLJITPlatform::GenericIR
, "GenericIR",
249 "Use LLJITGenericIRPlatform"),
250 clEnumValN(LLJITPlatform::Inactive
, "Inactive",
251 "Disable platform support explicitly")),
254 enum class DumpKind
{
263 cl::opt
<DumpKind
> OrcDumpKind(
264 "orc-lazy-debug", cl::desc("Debug dumping for the orc-lazy JIT."),
265 cl::init(DumpKind::NoDump
),
267 clEnumValN(DumpKind::NoDump
, "no-dump", "Don't dump anything."),
268 clEnumValN(DumpKind::DumpFuncsToStdOut
, "funcs-to-stdout",
269 "Dump function names to stdout."),
270 clEnumValN(DumpKind::DumpModsToStdOut
, "mods-to-stdout",
271 "Dump modules to stdout."),
272 clEnumValN(DumpKind::DumpModsToDisk
, "mods-to-disk",
273 "Dump modules to the current "
274 "working directory. (WARNING: "
275 "will overwrite existing files)."),
276 clEnumValN(DumpKind::DumpDebugDescriptor
, "jit-debug-descriptor",
277 "Dump __jit_debug_descriptor contents to stdout"),
278 clEnumValN(DumpKind::DumpDebugObjects
, "jit-debug-objects",
279 "Dump __jit_debug_descriptor in-memory debug "
280 "objects as tool output")),
283 ExitOnError ExitOnErr
;
286 LLVM_ATTRIBUTE_USED
void linkComponents() {
287 errs() << (void *)&llvm_orc_registerEHFrameSectionWrapper
288 << (void *)&llvm_orc_deregisterEHFrameSectionWrapper
289 << (void *)&llvm_orc_registerJITLoaderGDBWrapper
290 << (void *)&llvm_orc_registerJITLoaderGDBAllocAction
;
293 //===----------------------------------------------------------------------===//
296 // This object cache implementation writes cached objects to disk to the
297 // directory specified by CacheDir, using a filename provided in the module
298 // descriptor. The cache tries to load a saved object using that path if the
299 // file exists. CacheDir defaults to "", in which case objects are cached
300 // alongside their originating bitcodes.
302 class LLIObjectCache
: public ObjectCache
{
304 LLIObjectCache(const std::string
& CacheDir
) : CacheDir(CacheDir
) {
305 // Add trailing '/' to cache dir if necessary.
306 if (!this->CacheDir
.empty() &&
307 this->CacheDir
[this->CacheDir
.size() - 1] != '/')
308 this->CacheDir
+= '/';
310 ~LLIObjectCache() override
{}
312 void notifyObjectCompiled(const Module
*M
, MemoryBufferRef Obj
) override
{
313 const std::string
&ModuleID
= M
->getModuleIdentifier();
314 std::string CacheName
;
315 if (!getCacheFilename(ModuleID
, CacheName
))
317 if (!CacheDir
.empty()) { // Create user-defined cache dir.
318 SmallString
<128> dir(sys::path::parent_path(CacheName
));
319 sys::fs::create_directories(Twine(dir
));
323 raw_fd_ostream
outfile(CacheName
, EC
, sys::fs::OF_None
);
324 outfile
.write(Obj
.getBufferStart(), Obj
.getBufferSize());
328 std::unique_ptr
<MemoryBuffer
> getObject(const Module
* M
) override
{
329 const std::string
&ModuleID
= M
->getModuleIdentifier();
330 std::string CacheName
;
331 if (!getCacheFilename(ModuleID
, CacheName
))
333 // Load the object from the cache filename
334 ErrorOr
<std::unique_ptr
<MemoryBuffer
>> IRObjectBuffer
=
335 MemoryBuffer::getFile(CacheName
, /*IsText=*/false,
336 /*RequiresNullTerminator=*/false);
337 // If the file isn't there, that's OK.
340 // MCJIT will want to write into this buffer, and we don't want that
341 // because the file has probably just been mmapped. Instead we make
342 // a copy. The filed-based buffer will be released when it goes
344 return MemoryBuffer::getMemBufferCopy(IRObjectBuffer
.get()->getBuffer());
348 std::string CacheDir
;
350 bool getCacheFilename(const std::string
&ModID
, std::string
&CacheName
) {
351 std::string
Prefix("file:");
352 size_t PrefixLength
= Prefix
.length();
353 if (ModID
.substr(0, PrefixLength
) != Prefix
)
356 std::string CacheSubdir
= ModID
.substr(PrefixLength
);
357 // Transform "X:\foo" => "/X\foo" for convenience on Windows.
358 if (is_style_windows(llvm::sys::path::Style::native
) &&
359 isalpha(CacheSubdir
[0]) && CacheSubdir
[1] == ':') {
360 CacheSubdir
[1] = CacheSubdir
[0];
361 CacheSubdir
[0] = '/';
364 CacheName
= CacheDir
+ CacheSubdir
;
365 size_t pos
= CacheName
.rfind('.');
366 CacheName
.replace(pos
, CacheName
.length() - pos
, ".o");
371 // On Mingw and Cygwin, an external symbol named '__main' is called from the
372 // generated 'main' function to allow static initialization. To avoid linking
373 // problems with remote targets (because lli's remote target support does not
374 // currently handle external linking) we add a secondary module which defines
375 // an empty '__main' function.
376 static void addCygMingExtraModule(ExecutionEngine
&EE
, LLVMContext
&Context
,
377 StringRef TargetTripleStr
) {
378 IRBuilder
<> Builder(Context
);
379 Triple
TargetTriple(TargetTripleStr
);
381 // Create a new module.
382 std::unique_ptr
<Module
> M
= std::make_unique
<Module
>("CygMingHelper", Context
);
383 M
->setTargetTriple(TargetTripleStr
);
385 // Create an empty function named "__main".
387 if (TargetTriple
.isArch64Bit())
388 ReturnTy
= Type::getInt64Ty(Context
);
390 ReturnTy
= Type::getInt32Ty(Context
);
392 Function::Create(FunctionType::get(ReturnTy
, {}, false),
393 GlobalValue::ExternalLinkage
, "__main", M
.get());
395 BasicBlock
*BB
= BasicBlock::Create(Context
, "__main", Result
);
396 Builder
.SetInsertPoint(BB
);
397 Value
*ReturnVal
= ConstantInt::get(ReturnTy
, 0);
398 Builder
.CreateRet(ReturnVal
);
400 // Add this new module to the ExecutionEngine.
401 EE
.addModule(std::move(M
));
404 CodeGenOptLevel
getOptLevel() {
405 if (auto Level
= CodeGenOpt::parseLevel(OptLevel
))
407 WithColor::error(errs(), "lli") << "invalid optimization level.\n";
411 [[noreturn
]] static void reportError(SMDiagnostic Err
, const char *ProgName
) {
412 Err
.print(ProgName
, errs());
417 int runOrcJIT(const char *ProgName
);
418 void disallowOrcOptions();
419 Expected
<std::unique_ptr
<orc::ExecutorProcessControl
>> launchRemote();
421 //===----------------------------------------------------------------------===//
422 // main Driver function
424 int main(int argc
, char **argv
, char * const *envp
) {
425 InitLLVM
X(argc
, argv
);
428 ExitOnErr
.setBanner(std::string(argv
[0]) + ": ");
430 // If we have a native target, initialize it to ensure it is linked in and
431 // usable by the JIT.
432 InitializeNativeTarget();
433 InitializeNativeTargetAsmPrinter();
434 InitializeNativeTargetAsmParser();
436 cl::ParseCommandLineOptions(argc
, argv
,
437 "llvm interpreter & dynamic compiler\n");
439 // If the user doesn't want core files, disable them.
440 if (DisableCoreFiles
)
441 sys::Process::PreventCoreFiles();
443 ExitOnErr(loadDylibs());
445 if (EntryFunc
.empty()) {
446 WithColor::error(errs(), argv
[0])
447 << "--entry-function name cannot be empty\n";
451 if (UseJITKind
== JITKind::MCJIT
|| ForceInterpreter
)
452 disallowOrcOptions();
454 return runOrcJIT(argv
[0]);
456 // Old lli implementation based on ExecutionEngine and MCJIT.
459 // Load the bitcode...
461 std::unique_ptr
<Module
> Owner
= parseIRFile(InputFile
, Err
, Context
);
462 Module
*Mod
= Owner
.get();
464 reportError(Err
, argv
[0]);
466 if (EnableCacheManager
) {
467 std::string
CacheName("file:");
468 CacheName
.append(InputFile
);
469 Mod
->setModuleIdentifier(CacheName
);
472 // If not jitting lazily, load the whole bitcode file eagerly too.
473 if (NoLazyCompilation
) {
474 // Use *argv instead of argv[0] to work around a wrong GCC warning.
475 ExitOnError
ExitOnErr(std::string(*argv
) +
476 ": bitcode didn't read correctly: ");
477 ExitOnErr(Mod
->materializeAll());
480 std::string ErrorMsg
;
481 EngineBuilder
builder(std::move(Owner
));
482 builder
.setMArch(codegen::getMArch());
483 builder
.setMCPU(codegen::getCPUStr());
484 builder
.setMAttrs(codegen::getFeatureList());
485 if (auto RM
= codegen::getExplicitRelocModel())
486 builder
.setRelocationModel(*RM
);
487 if (auto CM
= codegen::getExplicitCodeModel())
488 builder
.setCodeModel(*CM
);
489 builder
.setErrorStr(&ErrorMsg
);
490 builder
.setEngineKind(ForceInterpreter
491 ? EngineKind::Interpreter
494 // If we are supposed to override the target triple, do so now.
495 if (!TargetTriple
.empty())
496 Mod
->setTargetTriple(Triple::normalize(TargetTriple
));
498 // Enable MCJIT if desired.
499 RTDyldMemoryManager
*RTDyldMM
= nullptr;
500 if (!ForceInterpreter
) {
502 RTDyldMM
= new ForwardingMemoryManager();
504 RTDyldMM
= new SectionMemoryManager();
506 // Deliberately construct a temp std::unique_ptr to pass in. Do not null out
507 // RTDyldMM: We still use it below, even though we don't own it.
508 builder
.setMCJITMemoryManager(
509 std::unique_ptr
<RTDyldMemoryManager
>(RTDyldMM
));
510 } else if (RemoteMCJIT
) {
511 WithColor::error(errs(), argv
[0])
512 << "remote process execution does not work with the interpreter.\n";
516 builder
.setOptLevel(getOptLevel());
518 TargetOptions Options
=
519 codegen::InitTargetOptionsFromCodeGenFlags(Triple(TargetTriple
));
520 if (codegen::getFloatABIForCalls() != FloatABI::Default
)
521 Options
.FloatABIType
= codegen::getFloatABIForCalls();
523 builder
.setTargetOptions(Options
);
525 std::unique_ptr
<ExecutionEngine
> EE(builder
.create());
527 if (!ErrorMsg
.empty())
528 WithColor::error(errs(), argv
[0])
529 << "error creating EE: " << ErrorMsg
<< "\n";
531 WithColor::error(errs(), argv
[0]) << "unknown error creating EE!\n";
535 std::unique_ptr
<LLIObjectCache
> CacheManager
;
536 if (EnableCacheManager
) {
537 CacheManager
.reset(new LLIObjectCache(ObjectCacheDir
));
538 EE
->setObjectCache(CacheManager
.get());
541 // Load any additional modules specified on the command line.
542 for (unsigned i
= 0, e
= ExtraModules
.size(); i
!= e
; ++i
) {
543 std::unique_ptr
<Module
> XMod
= parseIRFile(ExtraModules
[i
], Err
, Context
);
545 reportError(Err
, argv
[0]);
546 if (EnableCacheManager
) {
547 std::string
CacheName("file:");
548 CacheName
.append(ExtraModules
[i
]);
549 XMod
->setModuleIdentifier(CacheName
);
551 EE
->addModule(std::move(XMod
));
554 for (unsigned i
= 0, e
= ExtraObjects
.size(); i
!= e
; ++i
) {
555 Expected
<object::OwningBinary
<object::ObjectFile
>> Obj
=
556 object::ObjectFile::createObjectFile(ExtraObjects
[i
]);
558 // TODO: Actually report errors helpfully.
559 consumeError(Obj
.takeError());
560 reportError(Err
, argv
[0]);
562 object::OwningBinary
<object::ObjectFile
> &O
= Obj
.get();
563 EE
->addObjectFile(std::move(O
));
566 for (unsigned i
= 0, e
= ExtraArchives
.size(); i
!= e
; ++i
) {
567 ErrorOr
<std::unique_ptr
<MemoryBuffer
>> ArBufOrErr
=
568 MemoryBuffer::getFileOrSTDIN(ExtraArchives
[i
]);
570 reportError(Err
, argv
[0]);
571 std::unique_ptr
<MemoryBuffer
> &ArBuf
= ArBufOrErr
.get();
573 Expected
<std::unique_ptr
<object::Archive
>> ArOrErr
=
574 object::Archive::create(ArBuf
->getMemBufferRef());
577 raw_string_ostream
OS(Buf
);
578 logAllUnhandledErrors(ArOrErr
.takeError(), OS
);
583 std::unique_ptr
<object::Archive
> &Ar
= ArOrErr
.get();
585 object::OwningBinary
<object::Archive
> OB(std::move(Ar
), std::move(ArBuf
));
587 EE
->addArchive(std::move(OB
));
590 // If the target is Cygwin/MingW and we are generating remote code, we
591 // need an extra module to help out with linking.
592 if (RemoteMCJIT
&& Triple(Mod
->getTargetTriple()).isOSCygMing()) {
593 addCygMingExtraModule(*EE
, Context
, Mod
->getTargetTriple());
596 // The following functions have no effect if their respective profiling
597 // support wasn't enabled in the build configuration.
598 EE
->RegisterJITEventListener(
599 JITEventListener::createOProfileJITEventListener());
600 EE
->RegisterJITEventListener(
601 JITEventListener::createIntelJITEventListener());
603 EE
->RegisterJITEventListener(
604 JITEventListener::createPerfJITEventListener());
606 if (!NoLazyCompilation
&& RemoteMCJIT
) {
607 WithColor::warning(errs(), argv
[0])
608 << "remote mcjit does not support lazy compilation\n";
609 NoLazyCompilation
= true;
611 EE
->DisableLazyCompilation(NoLazyCompilation
);
613 // If the user specifically requested an argv[0] to pass into the program,
615 if (!FakeArgv0
.empty()) {
616 InputFile
= static_cast<std::string
>(FakeArgv0
);
618 // Otherwise, if there is a .bc suffix on the executable strip it off, it
619 // might confuse the program.
620 if (StringRef(InputFile
).ends_with(".bc"))
621 InputFile
.erase(InputFile
.length() - 3);
624 // Add the module's name to the start of the vector of arguments to main().
625 InputArgv
.insert(InputArgv
.begin(), InputFile
);
627 // Call the main function from M as if its signature were:
628 // int main (int argc, char **argv, const char **envp)
629 // using the contents of Args to determine argc & argv, and the contents of
630 // EnvVars to determine envp.
632 Function
*EntryFn
= Mod
->getFunction(EntryFunc
);
634 WithColor::error(errs(), argv
[0])
635 << '\'' << EntryFunc
<< "\' function not found in module.\n";
639 // Reset errno to zero on entry to main.
644 // Sanity check use of remote-jit: LLI currently only supports use of the
645 // remote JIT on Unix platforms.
648 WithColor::warning(errs(), argv
[0])
649 << "host does not support external remote targets.\n";
650 WithColor::note() << "defaulting to local execution\n";
653 if (ChildExecPath
.empty()) {
654 WithColor::error(errs(), argv
[0])
655 << "-remote-mcjit requires -mcjit-remote-process.\n";
657 } else if (!sys::fs::can_execute(ChildExecPath
)) {
658 WithColor::error(errs(), argv
[0])
659 << "unable to find usable child executable: '" << ChildExecPath
667 // If the program doesn't explicitly call exit, we will need the Exit
668 // function later on to make an explicit call, so get the function now.
669 FunctionCallee Exit
= Mod
->getOrInsertFunction(
670 "exit", Type::getVoidTy(Context
), Type::getInt32Ty(Context
));
672 // Run static constructors.
673 if (!ForceInterpreter
) {
674 // Give MCJIT a chance to apply relocations and set page permissions.
675 EE
->finalizeObject();
677 EE
->runStaticConstructorsDestructors(false);
679 // Trigger compilation separately so code regions that need to be
680 // invalidated will be known.
681 (void)EE
->getPointerToFunction(EntryFn
);
682 // Clear instruction cache before code will be executed.
684 static_cast<SectionMemoryManager
*>(RTDyldMM
)->invalidateInstructionCache();
687 Result
= EE
->runFunctionAsMain(EntryFn
, InputArgv
, envp
);
689 // Run static destructors.
690 EE
->runStaticConstructorsDestructors(true);
692 // If the program didn't call exit explicitly, we should call it now.
693 // This ensures that any atexit handlers get called correctly.
694 if (Function
*ExitF
=
695 dyn_cast
<Function
>(Exit
.getCallee()->stripPointerCasts())) {
696 if (ExitF
->getFunctionType() == Exit
.getFunctionType()) {
697 std::vector
<GenericValue
> Args
;
698 GenericValue ResultGV
;
699 ResultGV
.IntVal
= APInt(32, Result
);
700 Args
.push_back(ResultGV
);
701 EE
->runFunction(ExitF
, Args
);
702 WithColor::error(errs(), argv
[0])
703 << "exit(" << Result
<< ") returned!\n";
707 WithColor::error(errs(), argv
[0]) << "exit defined with wrong prototype!\n";
710 // else == "if (RemoteMCJIT)"
711 std::unique_ptr
<orc::ExecutorProcessControl
> EPC
= ExitOnErr(launchRemote());
713 // Remote target MCJIT doesn't (yet) support static constructors. No reason
714 // it couldn't. This is a limitation of the LLI implementation, not the
715 // MCJIT itself. FIXME.
717 // Create a remote memory manager.
718 auto RemoteMM
= ExitOnErr(
719 orc::EPCGenericRTDyldMemoryManager::CreateWithDefaultBootstrapSymbols(
722 // Forward MCJIT's memory manager calls to the remote memory manager.
723 static_cast<ForwardingMemoryManager
*>(RTDyldMM
)->setMemMgr(
724 std::move(RemoteMM
));
726 // Forward MCJIT's symbol resolution calls to the remote.
727 static_cast<ForwardingMemoryManager
*>(RTDyldMM
)->setResolver(
728 ExitOnErr(RemoteResolver::Create(*EPC
)));
729 // Grab the target address of the JIT'd main function on the remote and call
731 // FIXME: argv and envp handling.
733 orc::ExecutorAddr(EE
->getFunctionAddress(EntryFn
->getName().str()));
734 EE
->finalizeObject();
735 LLVM_DEBUG(dbgs() << "Executing '" << EntryFn
->getName() << "' at 0x"
736 << format("%llx", Entry
.getValue()) << "\n");
737 Result
= ExitOnErr(EPC
->runAsMain(Entry
, {}));
739 // Like static constructors, the remote target MCJIT support doesn't handle
740 // this yet. It could. FIXME.
742 // Delete the EE - we need to tear it down *before* we terminate the session
743 // with the remote, otherwise it'll crash when it tries to release resources
744 // on a remote that has already been disconnected.
747 // Signal the remote target that we're done JITing.
748 ExitOnErr(EPC
->disconnect());
754 // JITLink debug support plugins put information about JITed code in this GDB
755 // JIT Interface global from OrcTargetProcess.
756 extern "C" struct jit_descriptor __jit_debug_descriptor
;
758 static struct jit_code_entry
*
759 findNextDebugDescriptorEntry(struct jit_code_entry
*Latest
) {
760 if (Latest
== nullptr)
761 return __jit_debug_descriptor
.first_entry
;
762 if (Latest
->next_entry
)
763 return Latest
->next_entry
;
767 static ToolOutputFile
&claimToolOutput() {
768 static std::unique_ptr
<ToolOutputFile
> ToolOutput
= nullptr;
770 WithColor::error(errs(), "lli")
771 << "Can not claim stdout for tool output twice\n";
775 ToolOutput
= std::make_unique
<ToolOutputFile
>("-", EC
, sys::fs::OF_None
);
777 WithColor::error(errs(), "lli")
778 << "Failed to create tool output file: " << EC
.message() << "\n";
784 static std::function
<void(Module
&)> createIRDebugDumper() {
785 switch (OrcDumpKind
) {
786 case DumpKind::NoDump
:
787 case DumpKind::DumpDebugDescriptor
:
788 case DumpKind::DumpDebugObjects
:
789 return [](Module
&M
) {};
791 case DumpKind::DumpFuncsToStdOut
:
792 return [](Module
&M
) {
795 for (const auto &F
: M
) {
796 if (F
.isDeclaration())
800 std::string
Name(std::string(F
.getName()));
801 printf("%s ", Name
.c_str());
809 case DumpKind::DumpModsToStdOut
:
810 return [](Module
&M
) {
811 outs() << "----- Module Start -----\n" << M
<< "----- Module End -----\n";
814 case DumpKind::DumpModsToDisk
:
815 return [](Module
&M
) {
817 raw_fd_ostream
Out(M
.getModuleIdentifier() + ".ll", EC
,
818 sys::fs::OF_TextWithCRLF
);
820 errs() << "Couldn't open " << M
.getModuleIdentifier()
821 << " for dumping.\nError:" << EC
.message() << "\n";
827 llvm_unreachable("Unknown DumpKind");
830 static std::function
<void(MemoryBuffer
&)> createObjDebugDumper() {
831 switch (OrcDumpKind
) {
832 case DumpKind::NoDump
:
833 case DumpKind::DumpFuncsToStdOut
:
834 case DumpKind::DumpModsToStdOut
:
835 case DumpKind::DumpModsToDisk
:
836 return [](MemoryBuffer
&) {};
838 case DumpKind::DumpDebugDescriptor
: {
839 // Dump the empty descriptor at startup once
840 fprintf(stderr
, "jit_debug_descriptor 0x%016" PRIx64
"\n",
841 pointerToJITTargetAddress(__jit_debug_descriptor
.first_entry
));
842 return [](MemoryBuffer
&) {
843 // Dump new entries as they appear
844 static struct jit_code_entry
*Latest
= nullptr;
845 while (auto *NewEntry
= findNextDebugDescriptorEntry(Latest
)) {
846 fprintf(stderr
, "jit_debug_descriptor 0x%016" PRIx64
"\n",
847 pointerToJITTargetAddress(NewEntry
));
853 case DumpKind::DumpDebugObjects
: {
854 return [](MemoryBuffer
&Obj
) {
855 static struct jit_code_entry
*Latest
= nullptr;
856 static ToolOutputFile
&ToolOutput
= claimToolOutput();
857 while (auto *NewEntry
= findNextDebugDescriptorEntry(Latest
)) {
858 ToolOutput
.os().write(NewEntry
->symfile_addr
, NewEntry
->symfile_size
);
864 llvm_unreachable("Unknown DumpKind");
868 for (const auto &Dylib
: Dylibs
) {
870 if (sys::DynamicLibrary::LoadLibraryPermanently(Dylib
.c_str(), &ErrMsg
))
871 return make_error
<StringError
>(ErrMsg
, inconvertibleErrorCode());
874 return Error::success();
877 static void exitOnLazyCallThroughFailure() { exit(1); }
879 Expected
<orc::ThreadSafeModule
>
880 loadModule(StringRef Path
, orc::ThreadSafeContext TSCtx
) {
882 auto M
= parseIRFile(Path
, Err
, *TSCtx
.getContext());
886 raw_string_ostream
ErrMsgStream(ErrMsg
);
887 Err
.print("lli", ErrMsgStream
);
889 return make_error
<StringError
>(std::move(ErrMsg
), inconvertibleErrorCode());
892 if (EnableCacheManager
)
893 M
->setModuleIdentifier("file:" + M
->getModuleIdentifier());
895 return orc::ThreadSafeModule(std::move(M
), std::move(TSCtx
));
898 int mingw_noop_main(void) {
899 // Cygwin and MinGW insert calls from the main function to the runtime
900 // function __main. The __main function is responsible for setting up main's
901 // environment (e.g. running static constructors), however this is not needed
902 // when running under lli: the executor process will have run non-JIT ctors,
903 // and ORC will take care of running JIT'd ctors. To avoid a missing symbol
904 // error we just implement __main as a no-op.
906 // FIXME: Move this to ORC-RT (and the ORC-RT substitution library once it
907 // exists). That will allow it to work out-of-process, and for all
908 // ORC tools (the problem isn't lli specific).
912 // Try to enable debugger support for the given instance.
913 // This alway returns success, but prints a warning if it's not able to enable
915 Error
tryEnableDebugSupport(orc::LLJIT
&J
) {
916 if (auto Err
= enableDebuggerSupport(J
)) {
917 [[maybe_unused
]] std::string ErrMsg
= toString(std::move(Err
));
918 LLVM_DEBUG(dbgs() << "lli: " << ErrMsg
<< "\n");
920 return Error::success();
923 int runOrcJIT(const char *ProgName
) {
924 // Start setting up the JIT environment.
926 // Parse the main module.
927 orc::ThreadSafeContext
TSCtx(std::make_unique
<LLVMContext
>());
928 auto MainModule
= ExitOnErr(loadModule(InputFile
, TSCtx
));
930 // Get TargetTriple and DataLayout from the main module if they're explicitly
932 std::optional
<Triple
> TT
;
933 std::optional
<DataLayout
> DL
;
934 MainModule
.withModuleDo([&](Module
&M
) {
935 if (!M
.getTargetTriple().empty())
936 TT
= Triple(M
.getTargetTriple());
937 if (!M
.getDataLayout().isDefault())
938 DL
= M
.getDataLayout();
941 orc::LLLazyJITBuilder Builder
;
943 Builder
.setJITTargetMachineBuilder(
944 TT
? orc::JITTargetMachineBuilder(*TT
)
945 : ExitOnErr(orc::JITTargetMachineBuilder::detectHost()));
947 TT
= Builder
.getJITTargetMachineBuilder()->getTargetTriple();
949 Builder
.setDataLayout(DL
);
951 if (!codegen::getMArch().empty())
952 Builder
.getJITTargetMachineBuilder()->getTargetTriple().setArchName(
953 codegen::getMArch());
955 Builder
.getJITTargetMachineBuilder()
956 ->setCPU(codegen::getCPUStr())
957 .addFeatures(codegen::getFeatureList())
958 .setRelocationModel(codegen::getExplicitRelocModel())
959 .setCodeModel(codegen::getExplicitCodeModel());
961 // Link process symbols unless NoProcessSymbols is set.
962 Builder
.setLinkProcessSymbolsByDefault(!NoProcessSymbols
);
964 // FIXME: Setting a dummy call-through manager in non-lazy mode prevents the
965 // JIT builder to instantiate a default (which would fail with an error for
966 // unsupported architectures).
967 if (UseJITKind
!= JITKind::OrcLazy
) {
968 auto ES
= std::make_unique
<orc::ExecutionSession
>(
969 ExitOnErr(orc::SelfExecutorProcessControl::Create()));
970 Builder
.setLazyCallthroughManager(
971 std::make_unique
<orc::LazyCallThroughManager
>(*ES
, orc::ExecutorAddr(),
973 Builder
.setExecutionSession(std::move(ES
));
976 Builder
.setLazyCompileFailureAddr(
977 orc::ExecutorAddr::fromPtr(exitOnLazyCallThroughFailure
));
978 Builder
.setNumCompileThreads(LazyJITCompileThreads
);
980 // If the object cache is enabled then set a custom compile function
981 // creator to use the cache.
982 std::unique_ptr
<LLIObjectCache
> CacheManager
;
983 if (EnableCacheManager
) {
985 CacheManager
= std::make_unique
<LLIObjectCache
>(ObjectCacheDir
);
987 Builder
.setCompileFunctionCreator(
988 [&](orc::JITTargetMachineBuilder JTMB
)
989 -> Expected
<std::unique_ptr
<orc::IRCompileLayer::IRCompiler
>> {
990 if (LazyJITCompileThreads
> 0)
991 return std::make_unique
<orc::ConcurrentIRCompiler
>(std::move(JTMB
),
994 auto TM
= JTMB
.createTargetMachine();
996 return TM
.takeError();
998 return std::make_unique
<orc::TMOwningSimpleCompiler
>(std::move(*TM
),
1003 // Enable debugging of JIT'd code (only works on JITLink for ELF and MachO).
1004 Builder
.setPrePlatformSetup(tryEnableDebugSupport
);
1006 // Set up LLJIT platform.
1007 LLJITPlatform P
= Platform
;
1008 if (P
== LLJITPlatform::Auto
)
1009 P
= OrcRuntime
.empty() ? LLJITPlatform::GenericIR
1010 : LLJITPlatform::ExecutorNative
;
1013 case LLJITPlatform::ExecutorNative
: {
1014 Builder
.setPlatformSetUp(orc::ExecutorNativePlatform(OrcRuntime
));
1017 case LLJITPlatform::GenericIR
:
1018 // Nothing to do: LLJITBuilder will use this by default.
1020 case LLJITPlatform::Inactive
:
1021 Builder
.setPlatformSetUp(orc::setUpInactivePlatform
);
1024 llvm_unreachable("Unrecognized platform value");
1027 std::unique_ptr
<orc::ExecutorProcessControl
> EPC
= nullptr;
1028 if (JITLinker
== JITLinkerKind::JITLink
) {
1029 EPC
= ExitOnErr(orc::SelfExecutorProcessControl::Create(
1030 std::make_shared
<orc::SymbolStringPool
>()));
1032 Builder
.getJITTargetMachineBuilder()
1033 ->setRelocationModel(Reloc::PIC_
)
1034 .setCodeModel(CodeModel::Small
);
1035 Builder
.setObjectLinkingLayerCreator([&P
](orc::ExecutionSession
&ES
,
1037 auto L
= std::make_unique
<orc::ObjectLinkingLayer
>(ES
);
1038 if (P
!= LLJITPlatform::ExecutorNative
)
1039 L
->addPlugin(std::make_unique
<orc::EHFrameRegistrationPlugin
>(
1040 ES
, ExitOnErr(orc::EPCEHFrameRegistrar::Create(ES
))));
1045 auto J
= ExitOnErr(Builder
.create());
1047 auto *ObjLayer
= &J
->getObjLinkingLayer();
1048 if (auto *RTDyldObjLayer
= dyn_cast
<orc::RTDyldObjectLinkingLayer
>(ObjLayer
)) {
1049 RTDyldObjLayer
->registerJITEventListener(
1050 *JITEventListener::createGDBRegistrationListener());
1051 #if LLVM_USE_OPROFILE
1052 RTDyldObjLayer
->registerJITEventListener(
1053 *JITEventListener::createOProfileJITEventListener());
1055 #if LLVM_USE_INTEL_JITEVENTS
1056 RTDyldObjLayer
->registerJITEventListener(
1057 *JITEventListener::createIntelJITEventListener());
1060 RTDyldObjLayer
->registerJITEventListener(
1061 *JITEventListener::createPerfJITEventListener());
1066 J
->setPartitionFunction(orc::CompileOnDemandLayer::compileWholeModule
);
1068 auto IRDump
= createIRDebugDumper();
1069 J
->getIRTransformLayer().setTransform(
1070 [&](orc::ThreadSafeModule TSM
,
1071 const orc::MaterializationResponsibility
&R
) {
1072 TSM
.withModuleDo([&](Module
&M
) {
1073 if (verifyModule(M
, &dbgs())) {
1074 dbgs() << "Bad module: " << &M
<< "\n";
1082 auto ObjDump
= createObjDebugDumper();
1083 J
->getObjTransformLayer().setTransform(
1084 [&](std::unique_ptr
<MemoryBuffer
> Obj
)
1085 -> Expected
<std::unique_ptr
<MemoryBuffer
>> {
1087 return std::move(Obj
);
1090 // If this is a Mingw or Cygwin executor then we need to alias __main to
1091 // orc_rt_int_void_return_0.
1092 if (J
->getTargetTriple().isOSCygMing())
1093 ExitOnErr(J
->getProcessSymbolsJITDylib()->define(
1094 orc::absoluteSymbols({{J
->mangleAndIntern("__main"),
1095 {orc::ExecutorAddr::fromPtr(mingw_noop_main
),
1096 JITSymbolFlags::Exported
}}})));
1098 // Regular modules are greedy: They materialize as a whole and trigger
1099 // materialization for all required symbols recursively. Lazy modules go
1100 // through partitioning and they replace outgoing calls with reexport stubs
1101 // that resolve on call-through.
1102 auto AddModule
= [&](orc::JITDylib
&JD
, orc::ThreadSafeModule M
) {
1103 return UseJITKind
== JITKind::OrcLazy
? J
->addLazyIRModule(JD
, std::move(M
))
1104 : J
->addIRModule(JD
, std::move(M
));
1107 // Add the main module.
1108 ExitOnErr(AddModule(J
->getMainJITDylib(), std::move(MainModule
)));
1110 // Create JITDylibs and add any extra modules.
1112 // Create JITDylibs, keep a map from argument index to dylib. We will use
1113 // -extra-module argument indexes to determine what dylib to use for each
1115 std::map
<unsigned, orc::JITDylib
*> IdxToDylib
;
1116 IdxToDylib
[0] = &J
->getMainJITDylib();
1117 for (auto JDItr
= JITDylibs
.begin(), JDEnd
= JITDylibs
.end();
1118 JDItr
!= JDEnd
; ++JDItr
) {
1119 orc::JITDylib
*JD
= J
->getJITDylibByName(*JDItr
);
1121 JD
= &ExitOnErr(J
->createJITDylib(*JDItr
));
1122 J
->getMainJITDylib().addToLinkOrder(*JD
);
1123 JD
->addToLinkOrder(J
->getMainJITDylib());
1125 IdxToDylib
[JITDylibs
.getPosition(JDItr
- JITDylibs
.begin())] = JD
;
1128 for (auto EMItr
= ExtraModules
.begin(), EMEnd
= ExtraModules
.end();
1129 EMItr
!= EMEnd
; ++EMItr
) {
1130 auto M
= ExitOnErr(loadModule(*EMItr
, TSCtx
));
1132 auto EMIdx
= ExtraModules
.getPosition(EMItr
- ExtraModules
.begin());
1133 assert(EMIdx
!= 0 && "ExtraModule should have index > 0");
1134 auto JDItr
= std::prev(IdxToDylib
.lower_bound(EMIdx
));
1135 auto &JD
= *JDItr
->second
;
1136 ExitOnErr(AddModule(JD
, std::move(M
)));
1139 for (auto EAItr
= ExtraArchives
.begin(), EAEnd
= ExtraArchives
.end();
1140 EAItr
!= EAEnd
; ++EAItr
) {
1141 auto EAIdx
= ExtraArchives
.getPosition(EAItr
- ExtraArchives
.begin());
1142 assert(EAIdx
!= 0 && "ExtraArchive should have index > 0");
1143 auto JDItr
= std::prev(IdxToDylib
.lower_bound(EAIdx
));
1144 auto &JD
= *JDItr
->second
;
1145 ExitOnErr(J
->linkStaticLibraryInto(JD
, EAItr
->c_str()));
1150 for (auto &ObjPath
: ExtraObjects
) {
1151 auto Obj
= ExitOnErr(errorOrToExpected(MemoryBuffer::getFile(ObjPath
)));
1152 ExitOnErr(J
->addObjectFile(std::move(Obj
)));
1155 // Run any static constructors.
1156 ExitOnErr(J
->initialize(J
->getMainJITDylib()));
1158 // Run any -thread-entry points.
1159 std::vector
<std::thread
> AltEntryThreads
;
1160 for (auto &ThreadEntryPoint
: ThreadEntryPoints
) {
1161 auto EntryPointSym
= ExitOnErr(J
->lookup(ThreadEntryPoint
));
1162 typedef void (*EntryPointPtr
)();
1163 auto EntryPoint
= EntryPointSym
.toPtr
<EntryPointPtr
>();
1164 AltEntryThreads
.push_back(std::thread([EntryPoint
]() { EntryPoint(); }));
1167 // Resolve and run the main function.
1168 auto MainAddr
= ExitOnErr(J
->lookup(EntryFunc
));
1172 // ExecutorProcessControl-based execution with JITLink.
1173 Result
= ExitOnErr(EPC
->runAsMain(MainAddr
, InputArgv
));
1175 // Manual in-process execution with RuntimeDyld.
1176 using MainFnTy
= int(int, char *[]);
1177 auto MainFn
= MainAddr
.toPtr
<MainFnTy
*>();
1178 Result
= orc::runAsMain(MainFn
, InputArgv
, StringRef(InputFile
));
1181 // Wait for -entry-point threads.
1182 for (auto &AltEntryThread
: AltEntryThreads
)
1183 AltEntryThread
.join();
1186 ExitOnErr(J
->deinitialize(J
->getMainJITDylib()));
1191 void disallowOrcOptions() {
1192 // Make sure nobody used an orc-lazy specific option accidentally.
1194 if (LazyJITCompileThreads
!= 0) {
1195 errs() << "-compile-threads requires -jit-kind=orc-lazy\n";
1199 if (!ThreadEntryPoints
.empty()) {
1200 errs() << "-thread-entry requires -jit-kind=orc-lazy\n";
1204 if (PerModuleLazy
) {
1205 errs() << "-per-module-lazy requires -jit-kind=orc-lazy\n";
1210 Expected
<std::unique_ptr
<orc::ExecutorProcessControl
>> launchRemote() {
1211 #ifndef LLVM_ON_UNIX
1212 llvm_unreachable("launchRemote not supported on non-Unix platforms");
1217 // Create two pipes.
1218 if (pipe(PipeFD
[0]) != 0 || pipe(PipeFD
[1]) != 0)
1219 perror("Error creating pipe: ");
1223 if (ChildPID
== 0) {
1226 // Close the parent ends of the pipes
1227 close(PipeFD
[0][1]);
1228 close(PipeFD
[1][0]);
1231 // Execute the child process.
1232 std::unique_ptr
<char[]> ChildPath
, ChildIn
, ChildOut
;
1234 ChildPath
.reset(new char[ChildExecPath
.size() + 1]);
1235 std::copy(ChildExecPath
.begin(), ChildExecPath
.end(), &ChildPath
[0]);
1236 ChildPath
[ChildExecPath
.size()] = '\0';
1237 std::string ChildInStr
= utostr(PipeFD
[0][0]);
1238 ChildIn
.reset(new char[ChildInStr
.size() + 1]);
1239 std::copy(ChildInStr
.begin(), ChildInStr
.end(), &ChildIn
[0]);
1240 ChildIn
[ChildInStr
.size()] = '\0';
1241 std::string ChildOutStr
= utostr(PipeFD
[1][1]);
1242 ChildOut
.reset(new char[ChildOutStr
.size() + 1]);
1243 std::copy(ChildOutStr
.begin(), ChildOutStr
.end(), &ChildOut
[0]);
1244 ChildOut
[ChildOutStr
.size()] = '\0';
1247 char * const args
[] = { &ChildPath
[0], &ChildIn
[0], &ChildOut
[0], nullptr };
1248 int rc
= execv(ChildExecPath
.c_str(), args
);
1250 perror("Error executing child process: ");
1251 llvm_unreachable("Error executing child process");
1253 // else we're the parent...
1255 // Close the child ends of the pipes
1256 close(PipeFD
[0][0]);
1257 close(PipeFD
[1][1]);
1259 // Return a SimpleRemoteEPC instance connected to our end of the pipes.
1260 return orc::SimpleRemoteEPC::Create
<orc::FDSimpleRemoteEPCTransport
>(
1261 std::make_unique
<llvm::orc::InPlaceTaskDispatcher
>(),
1262 llvm::orc::SimpleRemoteEPC::Setup(), PipeFD
[1][0], PipeFD
[0][1]);
1266 // For MinGW environments, manually export the __chkstk function from the lli
1269 // Normally, this function is provided by compiler-rt builtins or libgcc.
1270 // It is named "_alloca" on i386, "___chkstk_ms" on x86_64, and "__chkstk" on
1271 // arm/aarch64. In MSVC configurations, it's named "__chkstk" in all
1274 // When Orc tries to resolve symbols at runtime, this succeeds in MSVC
1275 // configurations, somewhat by accident/luck; kernelbase.dll does export a
1276 // symbol named "__chkstk" which gets found by Orc, even if regular applications
1277 // never link against that function from that DLL (it's linked in statically
1278 // from a compiler support library).
1280 // The MinGW specific symbol names aren't available in that DLL though.
1281 // Therefore, manually export the relevant symbol from lli, to let it be
1282 // found at runtime during tests.
1284 // For real JIT uses, the real compiler support libraries should be linked
1285 // in, somehow; this is a workaround to let tests pass.
1287 // We need to make sure that this symbol actually is linked in when we
1288 // try to export it; if no functions allocate a large enough stack area,
1289 // nothing would reference it. Therefore, manually declare it and add a
1290 // reference to it. (Note, the declarations of _alloca/___chkstk_ms/__chkstk
1291 // are somewhat bogus, these functions use a different custom calling
1294 // TODO: Move this into libORC at some point, see
1295 // https://github.com/llvm/llvm-project/issues/56603.
1297 // This is a MinGW version of #pragma comment(linker, "...") that doesn't
1298 // require compiling with -fms-extensions.
1299 #if defined(__i386__)
1301 extern "C" void _alloca(void);
1302 static __attribute__((used
)) void (*const ref_func
)(void) = _alloca
;
1303 static __attribute__((section(".drectve"), used
)) const char export_chkstk
[] =
1305 #elif defined(__x86_64__)
1306 extern "C" void ___chkstk_ms(void);
1307 static __attribute__((used
)) void (*const ref_func
)(void) = ___chkstk_ms
;
1308 static __attribute__((section(".drectve"), used
)) const char export_chkstk
[] =
1309 "-export:___chkstk_ms";
1311 extern "C" void __chkstk(void);
1312 static __attribute__((used
)) void (*const ref_func
)(void) = __chkstk
;
1313 static __attribute__((section(".drectve"), used
)) const char export_chkstk
[] =