Home
last modified time | relevance | path

Searched refs:VCRuntimeBootstrap (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCOFFPlatform.cpp295 ? VCRuntimeBootstrap->loadStaticVCRuntime(JD) in setupJITDylib()
296 : VCRuntimeBootstrap->loadDynamicVCRuntime(JD); in setupJITDylib()
303 if (auto Err = VCRuntimeBootstrap->initializeStaticVCRuntime(JD)) in setupJITDylib()
410 VCRuntimeBootstrap = std::move(*VCRT); in COFFPlatform()
416 StaticVCRuntime ? VCRuntimeBootstrap->loadStaticVCRuntime(PlatformJD) in COFFPlatform()
417 : VCRuntimeBootstrap->loadDynamicVCRuntime(PlatformJD); in COFFPlatform()
442 if (auto E2 = VCRuntimeBootstrap->initializeStaticVCRuntime(PlatformJD)) { in COFFPlatform()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCOFFPlatform.h191 std::unique_ptr<COFFVCRuntimeBootstrapper> VCRuntimeBootstrap; variable