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;
826 SetupProcessSymbolsJITDylib = [](LLJIT &J) -> Expected<JITDylibSP> { in prepareForConstruction()
841 LLJIT::~LLJIT() { in ~LLJIT()
846 JITDylibSP LLJIT::getProcessSymbolsJITDylib() { return ProcessSymbols; } in getProcessSymbolsJITDylib()
848 JITDylibSP LLJIT::getPlatformJITDylib() { return Platform; } in getPlatformJITDylib()
850 Expected<JITDylib &> LLJIT::createJITDylib(std::string Name) { in createJITDylib()
859 Expected<JITDylib &> LLJIT::loadPlatformDynamicLibrary(const char *Path) { in loadPlatformDynamicLibrary()
872 Error LLJIT::linkStaticLibraryInto(JITDylib &JD, in linkStaticLibraryInto()
884 Error LLJIT::linkStaticLibraryInto(JITDylib &JD, const char *Path) { in linkStaticLibraryInto()
894 Error LLJIT::addIRModule(ResourceTrackerSP RT, ThreadSafeModule TSM) { in addIRModule()
904 Error LLJIT::addIRModule(JITDylib &JD, ThreadSafeModule TSM) { in addIRModule()
908 Error LLJIT::addObjectFile(ResourceTrackerSP RT, in addObjectFile()
915 Error LLJIT::addObjectFile(JITDylib &JD, std::unique_ptr<MemoryBuffer> Obj) { in addObjectFile()
919 Expected<ExecutorAddr> LLJIT::lookupLinkerMangled(JITDylib &JD, in lookupLinkerMangled()
930 LLJIT::createObjectLinkingLayer(LLJITBuilderState &S, ExecutionSession &ES) { in createObjectLinkingLayer()
959 LLJIT::createCompileFunction(LLJITBuilderState &S, in createCompileFunction()
977 LLJIT::LLJIT(LLJITBuilderState &S, Error &Err) in LLJIT() function in llvm::orc::LLJIT
1063 std::string LLJIT::mangle(StringRef UnmangledName) const { in mangle()
1072 Error LLJIT::applyDataLayout(Module &M) { in applyDataLayout()
1086 Error setUpOrcPlatformManually(LLJIT &J) { in setUpOrcPlatformManually()
1094 LoadAndLinkDynLibrary(LLJIT &J) : J(J) {} in LoadAndLinkDynLibrary()
1108 LLJIT &J;
1111 Expected<JITDylibSP> ExecutorNativePlatform::operator()(LLJIT &J) { in operator ()()
1193 Expected<JITDylibSP> setUpGenericLLVMIRPlatform(LLJIT &J) { in setUpGenericLLVMIRPlatform()
1211 Expected<JITDylibSP> setUpInactivePlatform(LLJIT &J) { in setUpInactivePlatform()
1235 LLLazyJIT::LLLazyJIT(LLLazyJITBuilderState &S, Error &Err) : LLJIT(S, Err) { in LLLazyJIT()