/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
H A D | LLJIT.cpp | 41 [](ExecutionSession &ES, in prepareForConstruction() 44 ES, std::make_unique<jitlink::InProcessMemoryManager>()); in prepareForConstruction() 58 auto InternedName = ES->intern(Name); in defineAbsolute() 70 return CompileLayer->add(JD, std::move(TSM), ES->allocateVModule()); in addIRModule() 76 return ObjTransformLayer.add(JD, std::move(Obj), ES->allocateVModule()); in addObjectFile() 81 return ES->lookup( in lookupLinkerMangled() 83 ES->intern(Name)); in lookupLinkerMangled() 87 LLJIT::createObjectLinkingLayer(LLJITBuilderState &S, ExecutionSession &ES) { in createObjectLinkingLayer() argument 91 return S.CreateObjectLinkingLayer(ES, S.JTMB->getTargetTriple()); in createObjectLinkingLayer() 97 std::make_unique<RTDyldObjectLinkingLayer>(ES, st in createObjectLinkingLayer() [all...] |
H A D | LazyReexports.cpp | 22 ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, in LazyCallThroughManager() 24 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(std::move(TP)) {} in LazyCallThroughManager() 54 auto LookupResult = ES.lookup( in callThroughToSymbol() 59 ES.reportError(LookupResult.takeError()); in callThroughToSymbol() 77 ES.reportError(std::move(Err)); in callThroughToSymbol() 86 createLocalLazyCallThroughManager(const Triple &T, ExecutionSession &ES, in createLocalLazyCallThroughManager() argument 96 return LocalLazyCallThroughManager::Create<OrcAArch64>(ES, in createLocalLazyCallThroughManager() 100 return LocalLazyCallThroughManager::Create<OrcI386>(ES, ErrorHandlerAddr); in createLocalLazyCallThroughManager() 103 return LocalLazyCallThroughManager::Create<OrcMips32Be>(ES, in createLocalLazyCallThroughManager() 21 LazyCallThroughManager( ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, std::unique_ptr<TrampolinePool> TP) LazyCallThroughManager() argument [all...] |
H A D | ObjectLinkingLayer.cpp | 57 auto &ES = Layer.getExecutionSession(); variable 70 LookupSet.add(ES.intern(KV.first), LookupFlags); 87 ES.lookup(LookupKind::Static, SearchOrder, std::move(LookupSet), 95 auto &ES = Layer.getExecutionSession(); variable 103 auto InternedName = ES.intern(Sym->getName()); 122 auto InternedName = ES.intern(Sym->getName()); 183 auto &ES = Layer.getExecutionSession(); in externalizeWeakAndCommonSymbols() local 186 if (!MR.getSymbols().count(ES.intern(Sym->getName()))) in externalizeWeakAndCommonSymbols() 192 if (!MR.getSymbols().count(ES.intern(Sym->getName()))) in externalizeWeakAndCommonSymbols() 200 auto &ES in markResponsibilitySymbolsLive() local 208 auto &ES = MR.getTargetJITDylib().getExecutionSession(); computeNamedSymbolDependencies() local 242 auto &ES = MR.getTargetJITDylib().getExecutionSession(); computeAnonDeps() local 331 ObjectLinkingLayer( ExecutionSession &ES, std::unique_ptr<JITLinkMemoryManager> MemMgr) ObjectLinkingLayer() argument [all...] |
H A D | Layer.cpp | 26 IRMaterializationUnit::IRMaterializationUnit(ExecutionSession &ES, in IRMaterializationUnit() argument 33 MangleAndInterner Mangle(ES, this->TSM.getModuleUnlocked()->getDataLayout()); in IRMaterializationUnit() 125 auto &ES = R.getTargetJITDylib().getExecutionSession(); in materialize() local 129 LLVM_DEBUG(ES.runSessionLocked( in materialize() 132 LLVM_DEBUG(ES.runSessionLocked([&]() { in materialize() 137 ObjectLayer::ObjectLayer(ExecutionSession &ES) : ES(ES) {} in ObjectLayer() argument 187 Expected<SymbolFlagsMap> getObjectSymbolFlags(ExecutionSession &ES, in getObjectSymbolFlags() argument 207 auto InternedName = ES in getObjectSymbolFlags() [all...] |
H A D | Legacy.cpp | 17 ExecutionSession &ES, SymbolResolver &R, MaterializationResponsibility *MR) in JITSymbolResolverAdapter() 18 : ES(ES), R(R), MR(MR) {} in JITSymbolResolverAdapter() 24 InternedSymbols.insert(ES.intern(S)); in lookup() 48 ES.legacyFailQuery(*Q, make_error<SymbolsNotFound>(std::move(Unresolved))); in lookup() 55 InternedSymbols.insert(ES.intern(S)); in getResponsibilitySet() 16 JITSymbolResolverAdapter( ExecutionSession &ES, SymbolResolver &R, MaterializationResponsibility *MR) JITSymbolResolverAdapter() argument
|
H A D | RTDyldObjectLinkingLayer.cpp | 22 auto &ES = MR.getTargetJITDylib().getExecutionSession(); in lookup() local 27 InternedSymbols.add(ES.intern(S)); in lookup() 53 ES.lookup(LookupKind::Static, SearchOrder, InternedSymbols, in lookup() 79 ExecutionSession &ES, GetMemoryManagerFunction GetMemoryManager) in RTDyldObjectLinkingLayer() 80 : ObjectLayer(ES), GetMemoryManager(GetMemoryManager) {} in RTDyldObjectLinkingLayer() 98 auto &ES = getExecutionSession(); in emit() local 123 ES.reportError(SymName.takeError()); in emit() 168 auto &ES = getExecutionSession(); in onObjLoad() local 184 R.getSymbols().count(ES.intern(*Name))) in onObjLoad() 263 ExecutionSession &ES, ResourcesGette in LegacyRTDyldObjectLinkingLayer() 78 RTDyldObjectLinkingLayer( ExecutionSession &ES, GetMemoryManagerFunction GetMemoryManager) RTDyldObjectLinkingLayer() argument 262 LegacyRTDyldObjectLinkingLayer( ExecutionSession &ES, ResourcesGetter GetResources, NotifyLoadedFtor NotifyLoaded, NotifyFinalizedFtor NotifyFinalized, NotifyFreedFtor NotifyFreed) LegacyRTDyldObjectLinkingLayer() argument [all...] |
H A D | CompileOnDemandLayer.cpp | 70 PartitioningIRMaterializationUnit(ExecutionSession &ES, in PartitioningIRMaterializationUnit() argument 74 : IRMaterializationUnit(ES, MO, std::move(TSM), std::move(K)), in PartitioningIRMaterializationUnit() 114 ExecutionSession &ES, IRLayer &BaseLayer, LazyCallThroughManager &LCTMgr, in CompileOnDemandLayer() 116 : IRLayer(ES, BaseLayer.getManglingOptions()), BaseLayer(BaseLayer), in CompileOnDemandLayer() 131 auto &ES = getExecutionSession(); in emit() local 157 ES, *getManglingOptions(), std::move(TSM), R.getVModuleKey(), in emit() 159 ES.reportError(std::move(Err)); in emit() 251 auto &ES = getExecutionSession(); in emitPartition() local 291 MangleAndInterner Mangle(ES, M.getDataLayout()); in emitPartition() 312 ES in emitPartition() 113 CompileOnDemandLayer( ExecutionSession &ES, IRLayer &BaseLayer, LazyCallThroughManager &LCTMgr, IndirectStubsManagerBuilder BuildIndirectStubsManager) CompileOnDemandLayer() argument [all...] |
H A D | IndirectionUtils.cpp | 65 ES.intern(std::string("cc") + std::to_string(++NextCallbackId)); in getCompileCallback() 72 ES.allocateVModule()))); in getCompileCallback() 97 ES.reportError( in executeCompileCallback() 105 ES.lookup(makeJITDylibSearchOrder( in executeCompileCallback() 113 ES.reportError(Sym.takeError()); in executeCompileCallback() 119 createLocalCompileCallbackManager(const Triple &T, ExecutionSession &ES, in createLocalCompileCallbackManager() argument 129 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 134 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 139 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 143 return CCMgrT::Create(ES, ErrorHandlerAddres in createLocalCompileCallbackManager() [all...] |
H A D | Core.cpp | 595 auto &ES = R.getTargetJITDylib().getExecutionSession(); in materialize() local 613 ES.runSessionLocked([&]() { in materialize() 703 auto &ES = QueryInfo->R.getTargetJITDylib().getExecutionSession(); in materialize() 713 ES.reportError(std::move(Err)); in materialize() 718 ES.reportError(std::move(Err)); in materialize() 723 ES.reportError(Result.takeError()); in materialize() 728 ES.lookup(LookupKind::Static, in materialize() 806 ES.runSessionLocked([&]() { in removeGenerator() 819 return ES.runSessionLocked([&]() -> Expected<SymbolFlagsMap> { in defineMaterializing() 869 ES in replace() [all...] |
H A D | OrcCBindingsStack.h | 159 Stack.ES.legacyFailQuery(*Query, Addr.takeError()); 163 Stack.ES.legacyFailQuery(*Query, std::move(Err)); 212 : CCMgr(createCompileCallbackManager(TM, ES)), DL(TM.createDataLayout()), in OrcCBindingsStack() 215 AcknowledgeORCv1Deprecation, ES, in OrcCBindingsStack() 235 CODLayer(createCODLayer(ES, CompileLayer, CCMgr.get(), 304 auto K = ES.allocateVModule(); in addIRModule() 352 ES.releaseVModule(K); in removeModule() 363 auto K = ES.allocateVModule(); in addObject() 451 createCompileCallbackManager(TargetMachine &TM, orc::ExecutionSession &ES) { in createCompileCallbackManager() argument 452 auto CCMgr = createLocalCompileCallbackManager(TM.getTargetTriple(), ES, in createCompileCallbackManager() 463 createCODLayer(orc::ExecutionSession &ES, CompileLayerT &CompileLayer, CompileCallbackMgr *CCMgr, IndirectStubsManagerBuilder IndirectStubsMgrBuilder, ResolverMap &Resolvers) createCODLayer() argument 509 orc::ExecutionSession ES; global() member [all...] |
H A D | OrcMCJITReplacement.h | 183 M.ES.legacyFailQuery(*Query, Addr.takeError()); 187 M.ES.legacyFailQuery(*Query, std::move(Err)); 196 M.ES.legacyFailQuery(*Query, Addr.takeError()); 200 M.ES.legacyFailQuery(*Query, std::move(Err)); 242 AcknowledgeORCv1Deprecation, ES, in OrcMCJITReplacement() 290 auto K = ES.allocateVModule(); 300 ES.allocateVModule(), MemoryBuffer::getMemBufferCopy(O->getData()))); 307 cantFail(ObjectLayer.addObject(ES.allocateVModule(), std::move(ObjBuffer))); 411 ES.allocateVModule(), in scanArchives() 464 ExecutionSession ES; [all...] |
H A D | IRTransformLayer.cpp | 15 IRTransformLayer::IRTransformLayer(ExecutionSession &ES, IRLayer &BaseLayer, in IRTransformLayer() argument 17 : IRLayer(ES, BaseLayer.getManglingOptions()), BaseLayer(BaseLayer), in IRTransformLayer()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | Layer.h | 38 IRMaterializationUnit(ExecutionSession &ES, const ManglingOptions &MO, 66 IRLayer(ExecutionSession &ES, in IRLayer() argument 68 : ES(ES), MO(MO) {} in IRLayer() 73 ExecutionSession &getExecutionSession() { return ES; } in getExecutionSession() 106 ExecutionSession &ES; member in llvm::orc::IRLayer 128 ObjectLayer(ExecutionSession &ES); 132 ExecutionSession &getExecutionSession() { return ES; } in getExecutionSession() 144 ExecutionSession &ES; member in llvm::orc::ObjectLayer 173 Expected<SymbolFlagsMap> getObjectSymbolFlags(ExecutionSession &ES, [all...] |
H A D | Legacy.h | 95 JITSymbolResolverAdapter(ExecutionSession &ES, SymbolResolver &R, 101 ExecutionSession &ES; member in llvm::orc::JITSymbolResolverAdapter 143 lookupWithLegacyFn(ExecutionSession &ES, AsynchronousSymbolQuery &Query, in lookupWithLegacyFn() argument 155 ES.legacyFailQuery(Query, Addr.takeError()); in lookupWithLegacyFn() 159 ES.legacyFailQuery(Query, std::move(Err)); in lookupWithLegacyFn() 178 LegacyLookupFnResolver(ExecutionSession &ES, LegacyLookupFn LegacyLookup, in LegacyLookupFnResolver() argument 180 : ES(ES), LegacyLookup(std::move(LegacyLookup)), in LegacyLookupFnResolver() 195 return lookupWithLegacyFn(ES, *Query, Symbols, LegacyLookup); 199 ExecutionSession &ES; member in llvm::orc::final 206 createLegacyLookupResolver(ExecutionSession &ES, LegacyLookupFn LegacyLookup, std::function<void(Error)> ErrorReporter) createLegacyLookupResolver() argument [all...] |
H A D | LazyReexports.h | 85 LazyCallThroughManager(ExecutionSession &ES, 103 ExecutionSession &ES; member in llvm::orc::LazyCallThroughManager 113 LocalLazyCallThroughManager(ExecutionSession &ES, in LocalLazyCallThroughManager() argument 115 : LazyCallThroughManager(ES, ErrorHandlerAddr, nullptr) {} in LocalLazyCallThroughManager() 135 Create(ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr) { in Create() argument 137 new LocalLazyCallThroughManager(ES, ErrorHandlerAddr)); in Create() 149 createLocalLazyCallThroughManager(const Triple &T, ExecutionSession &ES,
|
H A D | Speculation.h | 114 ES.lookup( in launchCompile() 121 ES.reportError(std::move(Err)); in launchCompile() 128 : AliaseeImplTable(Impl), ES(ref), GlobalSpecMap(0) {} in Speculator() 158 ES.lookup( in registerSymbols() 166 ExecutionSession &getES() { return ES; } in getES() 172 ExecutionSession &ES; member in llvm::orc::Speculator 182 IRSpeculationLayer(ExecutionSession &ES, IRCompileLayer &BaseLayer, in IRSpeculationLayer() argument 185 : IRLayer(ES, BaseLayer.getManglingOptions()), NextLayer(BaseLayer), in IRSpeculationLayer()
|
H A D | IndirectionUtils.h | 201 ExecutionSession &ES, in JITCompileCallbackManager() 203 : TP(std::move(TP)), ES(ES), in JITCompileCallbackManager() 204 CallbacksJD(ES.createJITDylib("<Callbacks>")), in JITCompileCallbackManager() 214 ExecutionSession &ES; member in llvm::orc::JITCompileCallbackManager 227 Create(ExecutionSession &ES, JITTargetAddress ErrorHandlerAddress) { in Create() argument 230 new LocalJITCompileCallbackManager(ES, ErrorHandlerAddress, Err)); in Create() 240 LocalJITCompileCallbackManager(ExecutionSession &ES, in LocalJITCompileCallbackManager() argument 243 : JITCompileCallbackManager(nullptr, ES, ErrorHandlerAddress) { in LocalJITCompileCallbackManager() 399 createLocalCompileCallbackManager(const Triple &T, ExecutionSession &ES, 200 JITCompileCallbackManager(std::unique_ptr<TrampolinePool> TP, ExecutionSession &ES, JITTargetAddress ErrorHandlerAddress) JITCompileCallbackManager() argument [all...] |
H A D | OrcRemoteTargetClient.h | 493 ExecutionSession &ES, in RemoteCompileCallbackManager() 496 std::make_unique<RemoteTrampolinePool>(Client), ES, in RemoteCompileCallbackManager() 504 Create(rpc::RawByteChannel &Channel, ExecutionSession &ES) { in Create() argument 507 new OrcRemoteTargetClient(Channel, ES, Err)); in Create() 568 CallbackManager.emplace(*this, ES, ErrorHandlerAddress); in enableCompileCallbacks() 586 OrcRemoteTargetClient(rpc::RawByteChannel &Channel, ExecutionSession &ES, in OrcRemoteTargetClient() argument 589 ES(ES) { in OrcRemoteTargetClient() 609 ES.reportError(std::move(Err)); in deregisterEHFrames() 624 ES in destroyIndirectStubsManager() 492 RemoteCompileCallbackManager(OrcRemoteTargetClient &Client, ExecutionSession &ES, JITTargetAddress ErrorHandlerAddress) RemoteCompileCallbackManager() argument 685 ExecutionSession &ES; global() member in llvm::orc::remote::OrcRemoteTargetClient [all...] |
H A D | LLJIT.h | 46 ExecutionSession &getExecutionSession() { return *ES; } in getExecutionSession() 57 return ES->getJITDylibByName(Name); in getJITDylibByName() 67 return ES->createJITDylib(std::move(Name)); in createJITDylib() 125 createObjectLinkingLayer(LLJITBuilderState &S, ExecutionSession &ES); 139 std::unique_ptr<ExecutionSession> ES; member in llvm::orc::LLJIT 198 std::unique_ptr<ExecutionSession> ES;
|
H A D | CompileOnDemandLayer.h | 88 CompileOnDemandLayer(ExecutionSession &ES, IRLayer &BaseLayer, 273 ExecutionSession &ES, BaseLayerT &BaseLayer, 285 ORCv1DeprecationAcknowledgement, ExecutionSession &ES, in LegacyCompileOnDemandLayer() 291 : ES(ES), BaseLayer(BaseLayer), in LegacyCompileOnDemandLayer() 556 lookupWithLegacyFn(ES, *Query, Symbols, LegacyLookup); in addLogicalModule() 689 auto K = ES.allocateVModule(); in emitPartition() 725 lookupWithLegacyFn(ES, *Q, Symbols, LegacyLookup); in emitPartition() 737 ExecutionSession &ES; member in llvm::orc::LegacyCompileOnDemandLayer 753 ExecutionSession &ES, BaseLayer in LegacyCompileOnDemandLayer() 284 LegacyCompileOnDemandLayer( ORCv1DeprecationAcknowledgement, ExecutionSession &ES, BaseLayerT &BaseLayer, SymbolResolverGetter GetSymbolResolver, SymbolResolverSetter SetSymbolResolver, PartitioningFtor Partition, CompileCallbackMgrT &CallbackMgr, IndirectStubsManagerBuilderT CreateIndirectStubsManager, bool CloneStubsIntoPartitions = true) LegacyCompileOnDemandLayer() argument 752 LegacyCompileOnDemandLayer( ExecutionSession &ES, BaseLayerT &BaseLayer, SymbolResolverGetter GetSymbolResolver, SymbolResolverSetter SetSymbolResolver, PartitioningFtor Partition, CompileCallbackMgrT &CallbackMgr, IndirectStubsManagerBuilderT CreateIndirectStubsManager, bool CloneStubsIntoPartitions) LegacyCompileOnDemandLayer() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | PseudoSourceValue.cpp | 103 const char *ES, const TargetInstrInfo &TII) in ExternalSymbolPseudoSourceValue() 104 : CallEntryPseudoSourceValue(ExternalSymbolCallEntry, TII), ES(ES) {} in ExternalSymbolPseudoSourceValue() 146 PseudoSourceValueManager::getExternalSymbolCallEntry(const char *ES) { in getExternalSymbolCallEntry() argument 148 ExternalCallEntries[ES]; in getExternalSymbolCallEntry() 150 E = std::make_unique<ExternalSymbolPseudoSourceValue>(ES, TII); in getExternalSymbolCallEntry() 102 ExternalSymbolPseudoSourceValue( const char *ES, const TargetInstrInfo &TII) ExternalSymbolPseudoSourceValue() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | ARMWinEH.h | 314 const support::ulittle32_t ES; member 316 EpilogueScope(const support::ulittle32_t Data) : ES(Data) {} in EpilogueScope() 319 return (ES & 0x0003ffff); in EpilogueStartOffset() 324 return ((ES & 0x000c0000) >> 18); in ResARM() 328 return ((ES & 0x000f0000) >> 18); in ResAArch64() 333 return ((ES & 0x00f00000) >> 20); in Condition() 338 return ((ES & 0xff000000) >> 24); in EpilogueStartIndexARM() 342 return ((ES & 0xffc00000) >> 22); in EpilogueStartIndexAArch64()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | PseudoSourceValue.h | 144 const char *ES; member in llvm::ExternalSymbolPseudoSourceValue 147 ExternalSymbolPseudoSourceValue(const char *ES, const TargetInstrInfo &TII); 153 const char *getSymbol() const { return ES; } in getSymbol() 193 const PseudoSourceValue *getExternalSymbolCallEntry(const char *ES);
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/ |
H A D | TestData.java | 29 protected static final int ES = UCharacterDirection.EUROPEAN_NUMBER_SEPARATOR; field in TestData 52 "L", "R", "EN", "ES", "ET", "AN", "CS", "B", "S", "WS", "ON", 67 AN, RLO, NSM, LRE, PDF, RLE, ES, EN, ON /* 9 entries */ 72 LRE, BN, CS, RLO, S, PDF, EN, LRO, AN, ES /* 10 entries */ 79 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN, 83 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN, 87 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN, 91 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN, 95 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN, 102 { RLO, RLO, AL, AL, WS, EN, ES, O [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
H A D | TestData.java | 26 protected static final int ES = UCharacterDirection.EUROPEAN_NUMBER_SEPARATOR; field in TestData 49 "L", "R", "EN", "ES", "ET", "AN", "CS", "B", "S", "WS", "ON", 64 AN, RLO, NSM, LRE, PDF, RLE, ES, EN, ON /* 9 entries */ 69 LRE, BN, CS, RLO, S, PDF, EN, LRO, AN, ES /* 10 entries */ 76 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN, 80 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN, 84 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN, 88 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN, 92 L, L, L, L, L, L, L, WS, WS, AL, AL, AL, AL, WS, EN, EN, ES, EN, 99 { RLO, RLO, AL, AL, WS, EN, ES, O [all...] |