Home
last modified time | relevance | path

Searched refs:ExecutionSession (Results 1 – 25 of 26) sorted by relevance

12

/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DLayer.h28 IRLayer(ExecutionSession &ES);
32 ExecutionSession &getExecutionSession() { return ES; } in getExecutionSession()
60 ExecutionSession &ES;
73 IRMaterializationUnit(ExecutionSession &ES, ThreadSafeModule TSM,
116 ObjectLayer(ExecutionSession &ES);
120 ExecutionSession &getExecutionSession() { return ES; } in getExecutionSession()
132 ExecutionSession &ES;
161 Expected<SymbolFlagsMap> getObjectSymbolFlags(ExecutionSession &ES,
H A DLLJIT.h47 ExecutionSession &getExecutionSession() { return *ES; } in getExecutionSession()
112 LLJIT(std::unique_ptr<ExecutionSession> ES, std::unique_ptr<TargetMachine> TM,
116 LLJIT(std::unique_ptr<ExecutionSession> ES, JITTargetMachineBuilder JTMB,
125 std::unique_ptr<ExecutionSession> ES;
172 LLLazyJIT(std::unique_ptr<ExecutionSession> ES,
178 LLLazyJIT(std::unique_ptr<ExecutionSession> ES, JITTargetMachineBuilder JTMB,
H A DLegacy.h96 JITSymbolResolverAdapter(ExecutionSession &ES, SymbolResolver &R,
102 ExecutionSession &ES;
144 lookupWithLegacyFn(ExecutionSession &ES, AsynchronousSymbolQuery &Query, in lookupWithLegacyFn()
182 LegacyLookupFnResolver(ExecutionSession &ES, LegacyLookupFn LegacyLookup, in LegacyLookupFnResolver()
203 ExecutionSession &ES;
210 createLegacyLookupResolver(ExecutionSession &ES, LegacyLookupFn LegacyLookup, in createLegacyLookupResolver()
H A DLazyReexports.h85 LazyCallThroughManager(ExecutionSession &ES,
103 ExecutionSession &ES;
113 LocalLazyCallThroughManager(ExecutionSession &ES, in LocalLazyCallThroughManager()
135 Create(ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr) { in Create()
149 createLocalLazyCallThroughManager(const Triple &T, ExecutionSession &ES,
H A DCore.h33 class ExecutionSession; variable
435 friend class ExecutionSession; variable
498 friend class ExecutionSession; variable
516 ExecutionSession &getExecutionSession() const { return ES; } in getExecutionSession()
645 JITDylib(ExecutionSession &ES, std::string Name);
687 ExecutionSession &ES;
697 class ExecutionSession {
746 ExecutionSession &setErrorReporter(ErrorReporter ReportError) { in setErrorReporter()
757 ExecutionSession &setDispatchMaterialization( in setDispatchMaterialization()
917 MangleAndInterner(ExecutionSession &ES, const DataLayout &DL);
[all …]
H A DIndirectionUtils.h202 ExecutionSession &ES, in JITCompileCallbackManager()
215 ExecutionSession &ES;
228 Create(ExecutionSession &ES, JITTargetAddress ErrorHandlerAddress) { in Create()
241 LocalJITCompileCallbackManager(ExecutionSession &ES, in LocalJITCompileCallbackManager()
400 createLocalCompileCallbackManager(const Triple &T, ExecutionSession &ES,
H A DRTDyldObjectLinkingLayer.h55 ExecutionSession &ES, GetMemoryManagerFunction GetMemoryManager,
345 ExecutionSession &ES, ResourcesGetter GetResources,
444 ExecutionSession &ES;
H A DOrcRemoteTargetClient.h494 ExecutionSession &ES, in RemoteCompileCallbackManager()
505 Create(rpc::RawByteChannel &Channel, ExecutionSession &ES) { in Create()
587 OrcRemoteTargetClient(rpc::RawByteChannel &Channel, ExecutionSession &ES, in OrcRemoteTargetClient()
686 ExecutionSession &ES;
H A DObjectTransformLayer.h32 ObjectTransformLayer(ExecutionSession &ES, ObjectLayer &BaseLayer,
H A DIRTransformLayer.h31 IRTransformLayer(ExecutionSession &ES, IRLayer &BaseLayer,
H A DIRCompileLayer.h39 IRCompileLayer(ExecutionSession &ES, ObjectLayer &BaseLayer,
H A DCompileOnDemandLayer.h88 CompileOnDemandLayer(ExecutionSession &ES, IRLayer &BaseLayer,
268 LegacyCompileOnDemandLayer(ExecutionSession &ES, BaseLayerT &BaseLayer,
721 ExecutionSession &ES;
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/
H A DLLJIT.cpp47 return std::unique_ptr<LLJIT>(new LLJIT(llvm::make_unique<ExecutionSession>(), in Create()
51 return std::unique_ptr<LLJIT>(new LLJIT(llvm::make_unique<ExecutionSession>(), in Create()
82 LLJIT::LLJIT(std::unique_ptr<ExecutionSession> ES, in LLJIT()
92 LLJIT::LLJIT(std::unique_ptr<ExecutionSession> ES, JITTargetMachineBuilder JTMB, in LLJIT()
149 auto ES = llvm::make_unique<ExecutionSession>(); in Create()
189 std::unique_ptr<ExecutionSession> ES, std::unique_ptr<TargetMachine> TM, in LLLazyJIT()
198 std::unique_ptr<ExecutionSession> ES, JITTargetMachineBuilder JTMB, in LLLazyJIT()
H A DLayer.cpp19 IRLayer::IRLayer(ExecutionSession &ES) : ES(ES) {} in IRLayer()
27 IRMaterializationUnit::IRMaterializationUnit(ExecutionSession &ES, in IRMaterializationUnit()
105 ObjectLayer::ObjectLayer(ExecutionSession &ES) : ES(ES) {} in ObjectLayer()
155 Expected<SymbolFlagsMap> getObjectSymbolFlags(ExecutionSession &ES, in getObjectSymbolFlags()
H A DCore.cpp1447 JITDylib::JITDylib(ExecutionSession &ES, std::string Name) in JITDylib()
1575 ExecutionSession::ExecutionSession(std::shared_ptr<SymbolStringPool> SSP) in ExecutionSession() function in llvm::orc::ExecutionSession
1581 JITDylib &ExecutionSession::getMainJITDylib() { in getMainJITDylib()
1585 JITDylib &ExecutionSession::createJITDylib(std::string Name, in createJITDylib()
1611 Expected<SymbolMap> ExecutionSession::legacyLookup( in legacyLookup()
1742 void ExecutionSession::lookup( in lookup()
1819 Expected<SymbolMap> ExecutionSession::lookup( in lookup()
1932 ExecutionSession::lookup(const JITDylibSearchList &SearchOrder, in lookup()
1946 ExecutionSession::lookup(ArrayRef<JITDylib *> SearchOrder, in lookup()
1963 void ExecutionSession::dump(raw_ostream &OS) { in dump()
[all …]
H A DObjectTransformLayer.cpp16 ObjectTransformLayer::ObjectTransformLayer(ExecutionSession &ES, in ObjectTransformLayer()
H A DIRTransformLayer.cpp16 IRTransformLayer::IRTransformLayer(ExecutionSession &ES, in IRTransformLayer()
H A DLazyReexports.cpp23 ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, in LazyCallThroughManager()
89 createLocalLazyCallThroughManager(const Triple &T, ExecutionSession &ES, in createLocalLazyCallThroughManager()
H A DIRCompileLayer.cpp15 IRCompileLayer::IRCompileLayer(ExecutionSession &ES, ObjectLayer &BaseLayer, in IRCompileLayer()
H A DLegacy.cpp18 ExecutionSession &ES, SymbolResolver &R, MaterializationResponsibility *MR) in JITSymbolResolverAdapter()
H A DCompileOnDemandLayer.cpp70 PartitioningIRMaterializationUnit(ExecutionSession &ES, ThreadSafeModule TSM, in PartitioningIRMaterializationUnit()
112 ExecutionSession &ES, IRLayer &BaseLayer, LazyCallThroughManager &LCTMgr, in CompileOnDemandLayer()
H A DOrcCBindingsStack.h450 createCompileCallbackManager(TargetMachine &TM, orc::ExecutionSession &ES) { in createCompileCallbackManager()
462 createCODLayer(orc::ExecutionSession &ES, CompileLayerT &CompileLayer, in createCODLayer()
508 orc::ExecutionSession ES;
H A DRTDyldObjectLinkingLayer.cpp81 ExecutionSession &ES, GetMemoryManagerFunction GetMemoryManager, in RTDyldObjectLinkingLayer()
H A DIndirectionUtils.cpp116 createLocalCompileCallbackManager(const Triple &T, ExecutionSession &ES, in createLocalCompileCallbackManager()
H A DOrcMCJITReplacement.h468 ExecutionSession ES;

12