Lines Matching refs:LLJIT

131 class GenericLLVMIRPlatformSupport : public LLJIT::PlatformSupport {
133 GenericLLVMIRPlatformSupport(LLJIT &J, JITDylib &PlatformJD) in GenericLLVMIRPlatformSupport()
483 LLJIT &J;
577 class InactivePlatformSupport : public LLJIT::PlatformSupport {
648 void LLJIT::PlatformSupport::setInitTransform( in setInitTransform()
649 LLJIT &J, IRTransformLayer::TransformFunction T) { in setInitTransform()
653 LLJIT::PlatformSupport::~PlatformSupport() = default;
777 SetupProcessSymbolsJITDylib = [](LLJIT &J) -> Expected<JITDylibSP> { in prepareForConstruction()
792 LLJIT::~LLJIT() { in ~LLJIT()
799 JITDylibSP LLJIT::getProcessSymbolsJITDylib() { return ProcessSymbols; } in getProcessSymbolsJITDylib()
801 JITDylibSP LLJIT::getPlatformJITDylib() { return Platform; } in getPlatformJITDylib()
803 Expected<JITDylib &> LLJIT::createJITDylib(std::string Name) { in createJITDylib()
812 Expected<JITDylib &> LLJIT::loadPlatformDynamicLibrary(const char *Path) { in loadPlatformDynamicLibrary()
825 Error LLJIT::linkStaticLibraryInto(JITDylib &JD, in linkStaticLibraryInto()
837 Error LLJIT::linkStaticLibraryInto(JITDylib &JD, const char *Path) { in linkStaticLibraryInto()
847 Error LLJIT::addIRModule(ResourceTrackerSP RT, ThreadSafeModule TSM) { in addIRModule()
857 Error LLJIT::addIRModule(JITDylib &JD, ThreadSafeModule TSM) { in addIRModule()
861 Error LLJIT::addObjectFile(ResourceTrackerSP RT, in addObjectFile()
868 Error LLJIT::addObjectFile(JITDylib &JD, std::unique_ptr<MemoryBuffer> Obj) { in addObjectFile()
872 Expected<ExecutorAddr> LLJIT::lookupLinkerMangled(JITDylib &JD, in lookupLinkerMangled()
883 LLJIT::createObjectLinkingLayer(LLJITBuilderState &S, ExecutionSession &ES) { in createObjectLinkingLayer()
912 LLJIT::createCompileFunction(LLJITBuilderState &S, in createCompileFunction()
931 LLJIT::LLJIT(LLJITBuilderState &S, Error &Err) in LLJIT() function in llvm::orc::LLJIT
1030 std::string LLJIT::mangle(StringRef UnmangledName) const { in mangle()
1039 Error LLJIT::applyDataLayout(Module &M) { in applyDataLayout()
1053 Error setUpOrcPlatformManually(LLJIT &J) { in setUpOrcPlatformManually()
1061 LoadAndLinkDynLibrary(LLJIT &J) : J(J) {} in LoadAndLinkDynLibrary()
1075 LLJIT &J;
1078 Expected<JITDylibSP> ExecutorNativePlatform::operator()(LLJIT &J) { in operator ()()
1160 Expected<JITDylibSP> setUpGenericLLVMIRPlatform(LLJIT &J) { in setUpGenericLLVMIRPlatform()
1178 Expected<JITDylibSP> setUpInactivePlatform(LLJIT &J) { in setUpInactivePlatform()
1202 LLLazyJIT::LLLazyJIT(LLLazyJITBuilderState &S, Error &Err) : LLJIT(S, Err) { in LLLazyJIT()