/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | Layer.h | 38 IRMaterializationUnit(ExecutionSession &ES, const ManglingOptions &MO, 66 IRLayer(ExecutionSession &ES, in IRLayer() 73 ExecutionSession &getExecutionSession() { return ES; } in getExecutionSession() 106 ExecutionSession &ES; 128 ObjectLayer(ExecutionSession &ES); 132 ExecutionSession &getExecutionSession() { return ES; } in getExecutionSession() 144 ExecutionSession &ES; 173 Expected<SymbolFlagsMap> getObjectSymbolFlags(ExecutionSession &ES,
|
D | Legacy.h | 95 JITSymbolResolverAdapter(ExecutionSession &ES, SymbolResolver &R, 101 ExecutionSession &ES; 143 lookupWithLegacyFn(ExecutionSession &ES, AsynchronousSymbolQuery &Query, in lookupWithLegacyFn() 178 LegacyLookupFnResolver(ExecutionSession &ES, LegacyLookupFn LegacyLookup, in LegacyLookupFnResolver() 199 ExecutionSession &ES; 206 createLegacyLookupResolver(ExecutionSession &ES, LegacyLookupFn LegacyLookup, in createLegacyLookupResolver()
|
D | LazyReexports.h | 85 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,
|
D | LLJIT.h | 46 ExecutionSession &getExecutionSession() { return *ES; } in getExecutionSession() 125 createObjectLinkingLayer(LLJITBuilderState &S, ExecutionSession &ES); 139 std::unique_ptr<ExecutionSession> ES; 192 ExecutionSession &, const Triple &TT)>; 198 std::unique_ptr<ExecutionSession> ES;
|
D | Speculation.h | 127 Speculator(ImplSymbolMap &Impl, ExecutionSession &ref) in Speculator() 166 ExecutionSession &getES() { return ES; } in getES() 172 ExecutionSession &ES; 182 IRSpeculationLayer(ExecutionSession &ES, IRCompileLayer &BaseLayer, in IRSpeculationLayer()
|
D | Core.h | 34 class ExecutionSession; variable 713 friend class ExecutionSession; variable 776 friend class ExecutionSession; variable 808 ExecutionSession &getExecutionSession() const { return ES; } in getExecutionSession() 1002 JITDylib(ExecutionSession &ES, std::string Name); 1048 ExecutionSession &ES; 1058 class ExecutionSession { 1073 ExecutionSession(std::shared_ptr<SymbolStringPool> SSP = nullptr); 1110 ExecutionSession &setErrorReporter(ErrorReporter ReportError) { in setErrorReporter() 1121 ExecutionSession &setDispatchMaterialization( in setDispatchMaterialization() [all …]
|
D | IndirectionUtils.h | 201 ExecutionSession &ES, in JITCompileCallbackManager() 214 ExecutionSession &ES; 227 Create(ExecutionSession &ES, JITTargetAddress ErrorHandlerAddress) { in Create() 240 LocalJITCompileCallbackManager(ExecutionSession &ES, in LocalJITCompileCallbackManager() 399 createLocalCompileCallbackManager(const Triple &T, ExecutionSession &ES,
|
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
D | Layer.h | 35 IRMaterializationUnit(ExecutionSession &ES, 59 static SymbolStringPtr getInitSymbol(ExecutionSession &ES, 68 IRLayer(ExecutionSession &ES, const IRSymbolMapper::ManglingOptions *&MO) in IRLayer() 74 ExecutionSession &getExecutionSession() { return ES; } in getExecutionSession() 113 ExecutionSession &ES; 134 ObjectLayer(ExecutionSession &ES); 138 ExecutionSession &getExecutionSession() { return ES; } in getExecutionSession() 153 ExecutionSession &ES;
|
D | Mangling.h | 28 MangleAndInterner(ExecutionSession &ES, const DataLayout &DL); 32 ExecutionSession &ES; 53 static void add(ExecutionSession &ES, const ManglingOptions &MO, 61 getObjectSymbolInfo(ExecutionSession &ES, MemoryBufferRef ObjBuffer);
|
D | LazyReexports.h | 43 LazyCallThroughManager(ExecutionSession &ES, 79 ExecutionSession &ES; 91 LocalLazyCallThroughManager(ExecutionSession &ES, in LocalLazyCallThroughManager() 119 Create(ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr) { in Create() 133 createLocalLazyCallThroughManager(const Triple &T, ExecutionSession &ES,
|
D | ObjectLinkingLayer.h | 94 ObjectLinkingLayer(ExecutionSession &ES, 101 ObjectLinkingLayer(ExecutionSession &ES, 180 ExecutionSession &ES, 198 ExecutionSession &ES;
|
D | LLJIT.h | 62 ExecutionSession &getExecutionSession() { return *ES; } in getExecutionSession() 190 createObjectLinkingLayer(LLJITBuilderState &S, ExecutionSession &ES); 202 std::unique_ptr<ExecutionSession> ES; 254 ExecutionSession &, const Triple &TT)>; 262 std::unique_ptr<ExecutionSession> ES; 280 SetterImpl &setExecutionSession(std::unique_ptr<ExecutionSession> ES) { in setExecutionSession()
|
D | Core.h | 34 class ExecutionSession; variable 51 friend class ExecutionSession; 491 friend class ExecutionSession; variable 511 ExecutionSession &getExecutionSession(); 635 friend class ExecutionSession; variable 796 friend class ExecutionSession; variable 849 friend class ExecutionSession; variable 892 friend class ExecutionSession; variable 909 ExecutionSession &getExecutionSession() const { return ES; } in getExecutionSession() 1122 JITDylib(ExecutionSession &ES, std::string Name); [all …]
|
D | Speculation.h | 123 Speculator(ImplSymbolMap &Impl, ExecutionSession &ref) in Speculator() 162 ExecutionSession &getES() { return ES; } in getES() 168 ExecutionSession &ES; 178 IRSpeculationLayer(ExecutionSession &ES, IRCompileLayer &BaseLayer, in IRSpeculationLayer()
|
D | MachOPlatform.h | 95 MachOPlatform(ExecutionSession &ES, ObjectLinkingLayer &ObjLinkingLayer, 98 ExecutionSession &getExecutionSession() const { return ES; } in getExecutionSession() 158 ExecutionSession &ES;
|
/external/llvm-project/llvm/examples/Kaleidoscope/include/ |
D | KaleidoscopeJIT.h | 36 std::unique_ptr<ExecutionSession> ES; 48 std::unique_ptr<ExecutionSession> ES, in KaleidoscopeJIT() 73 auto ES = std::make_unique<ExecutionSession>(std::move(SSP)); in Create()
|
/external/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | KaleidoscopeJIT.h | 36 std::unique_ptr<ExecutionSession> ES; 48 std::unique_ptr<ExecutionSession> ES, in KaleidoscopeJIT() 73 auto ES = std::make_unique<ExecutionSession>(std::move(SSP)); in Create()
|
/external/llvm-project/llvm/examples/SpeculativeJIT/ |
D | SpeculativeJIT.cpp | 52 auto ES = std::make_unique<ExecutionSession>(); in Create() 78 ExecutionSession &getES() { return *ES; } in getES() 100 std::unique_ptr<ExecutionSession> ES, DataLayout DL, in SpeculativeJIT() 134 std::unique_ptr<ExecutionSession> ES;
|
/external/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
D | Core.cpp | 1416 JITDylib::JITDylib(ExecutionSession &ES, std::string Name) in JITDylib() 1674 ExecutionSession &ES, in lookupInitSymbols() 1722 ExecutionSession::ExecutionSession(std::shared_ptr<SymbolStringPool> SSP) in ExecutionSession() function in llvm::orc::ExecutionSession 1725 Error ExecutionSession::endSession() { in endSession() 1741 void ExecutionSession::registerResourceManager(ResourceManager &RM) { in registerResourceManager() 1745 void ExecutionSession::deregisterResourceManager(ResourceManager &RM) { in deregisterResourceManager() 1758 JITDylib *ExecutionSession::getJITDylibByName(StringRef Name) { in getJITDylibByName() 1767 JITDylib &ExecutionSession::createBareJITDylib(std::string Name) { in createBareJITDylib() 1775 Expected<JITDylib &> ExecutionSession::createJITDylib(std::string Name) { in createJITDylib() 1833 void ExecutionSession::lookupFlags( in lookupFlags() [all …]
|
D | Mangling.cpp | 21 MangleAndInterner::MangleAndInterner(ExecutionSession &ES, const DataLayout &DL) in MangleAndInterner() 33 void IRSymbolMapper::add(ExecutionSession &ES, const ManglingOptions &MO, in add() 86 getObjectSymbolInfo(ExecutionSession &ES, MemoryBufferRef ObjBuffer) { in getObjectSymbolInfo()
|
/external/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | KaleidoscopeJIT.h | 41 std::unique_ptr<ExecutionSession> ES; 54 std::unique_ptr<ExecutionSession> ES, in KaleidoscopeJIT() 80 auto ES = std::make_unique<ExecutionSession>(std::move(SSP)); in Create()
|
/external/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | KaleidoscopeJIT.h | 43 std::unique_ptr<ExecutionSession> ES; 63 std::unique_ptr<ExecutionSession> ES, in KaleidoscopeJIT() 95 auto ES = std::make_unique<ExecutionSession>(std::move(SSP)); in Create()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | simple_orc_jit.h | 58 std::unique_ptr<llvm::orc::ExecutionSession> execution_session, 113 std::unique_ptr<llvm::orc::ExecutionSession> execution_session_;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
D | Layer.cpp | 26 IRMaterializationUnit::IRMaterializationUnit(ExecutionSession &ES, in IRMaterializationUnit() 137 ObjectLayer::ObjectLayer(ExecutionSession &ES) : ES(ES) {} in ObjectLayer() 187 Expected<SymbolFlagsMap> getObjectSymbolFlags(ExecutionSession &ES, in getObjectSymbolFlags()
|
/external/llvm-project/llvm/unittests/ExecutionEngine/Orc/ |
D | RTDyldObjectLinkingLayerTest.cpp | 49 ExecutionSession ES; in testSetProcessAllSections() 155 ExecutionSession ES; in TEST() 225 ExecutionSession ES; in TEST()
|