Home
last modified time | relevance | path

Searched refs:Stores (Results 1 – 25 of 142) sorted by relevance

123456

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmTerminateInvocationTests.cpp111 std::vector<std::string> Stores; in createTerminateInvocationGroup() local
112 Stores.push_back("Features.fragmentStoresAndAtomics"); in createTerminateInvocationGroup()
129 ….add("no_ssbo_store", "no store to SSBO when it occurs after terminate invocation", false, Stores); in createTerminateInvocationGroup()
130 …ssbo_atomic", "no atomic update to SSBO when it occurs after terminate invocation", false, Stores); in createTerminateInvocationGroup()
131 …before_terminate", "ssbo store commits when it occurs before terminate invocation", false, Stores); in createTerminateInvocationGroup()
132 …p.add("no_image_store", "no image write when it occurs after terminate invocation", false, Stores); in createTerminateInvocationGroup()
133 …image_atomic", "no image atomic updates when it occurs after terminate invocation", false, Stores); in createTerminateInvocationGroup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSink.cpp61 SmallPtrSetImpl<Instruction *> &Stores) { in isSafeToMove() argument
64 Stores.insert(Inst); in isSafeToMove()
70 for (Instruction *S : Stores) in isSafeToMove()
85 for (Instruction *S : Stores) in isSafeToMove()
140 SmallPtrSetImpl<Instruction *> &Stores, in SinkInstruction() argument
150 if (!isSafeToMove(Inst, AA, Stores)) in SinkInstruction()
215 SmallPtrSet<Instruction *, 8> Stores; in ProcessBlock() local
228 if (SinkInstruction(Inst, Stores, DT, LI, AA)) { in ProcessBlock()
DLoopIdiomRecognize.cpp177 SmallPtrSetImpl<Instruction *> &Stores,
884 SmallPtrSetImpl<Instruction *> &Stores, const SCEVAddRecExpr *Ev, in processLoopStridedStore() argument
924 StoreSize, *AA, Stores)) { in processLoopStridedStore()
987 for (auto *I : Stores) in processLoopStridedStore()
1040 SmallPtrSet<Instruction *, 1> Stores; in processLoopStoreOfLoopLoad() local
1041 Stores.insert(SI); in processLoopStoreOfLoopLoad()
1043 StoreSize, *AA, Stores)) { in processLoopStoreOfLoopLoad()
1063 StoreSize, *AA, Stores)) { in processLoopStoreOfLoopLoad()
DScalarizer.cpp828 ValueVector Stores; in visitStoreInst() local
829 Stores.resize(NumElems); in visitStoreInst()
832 Stores[I] = Builder.CreateAlignedStore(Val[I], Ptr[I], Align); in visitStoreInst()
834 transferMetadataAndIRFlags(&SI, Stores); in visitStoreInst()
DSROA.cpp3637 SmallVector<StoreInst *, 4> Stores; in presplitLoadsAndStores() local
3710 Stores.push_back(SI); in presplitLoadsAndStores()
3752 Stores.erase( in presplitLoadsAndStores()
3753 llvm::remove_if(Stores, in presplitLoadsAndStores()
3790 Stores.end()); in presplitLoadsAndStores()
3795 Stores.erase(llvm::remove_if(Stores, in presplitLoadsAndStores()
3801 Stores.end()); in presplitLoadsAndStores()
3812 if (Loads.empty() && Stores.empty()) in presplitLoadsAndStores()
3901 if (!Stores.empty() && SplitOffsetsMap.count(SI)) { in presplitLoadsAndStores()
3962 for (StoreInst *SI : Stores) { in presplitLoadsAndStores()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonStoreWidening.cpp96 bool instrAliased(InstrGroup &Stores, const MachineMemOperand &MMO);
97 bool instrAliased(InstrGroup &Stores, const MachineInstr *MI);
170 bool HexagonStoreWidening::instrAliased(InstrGroup &Stores, in instrAliased() argument
177 for (auto SI : Stores) { in instrAliased()
192 bool HexagonStoreWidening::instrAliased(InstrGroup &Stores, in instrAliased() argument
195 if (instrAliased(Stores, *I)) in instrAliased()
DHexagonLoopIdiomRecognition.cpp148 SmallVectorImpl<StoreInst*> &Stores);
2001 SmallVectorImpl<StoreInst*> &Stores) { in collectStores() argument
2002 Stores.clear(); in collectStores()
2006 Stores.push_back(SI); in collectStores()
2368 SmallVector<StoreInst*,8> Stores; in runOnLoopBlock() local
2369 collectStores(CurLoop, BB, Stores); in runOnLoopBlock()
2372 for (auto &SI : Stores) in runOnLoopBlock()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp102 SetVector<Value *> Stores; in runInternal() local
114 Stores.insert(&*I); in runInternal()
179 for (Value *Store : Stores) { in runInternal()
204 for (SetVector<Value *>::iterator I1 = Stores.begin(), E = Stores.end(); in runInternal()
206 for (SetVector<Value *>::iterator I2 = Stores.begin(); I2 != I1; ++I2) { in runInternal()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DScheduleDAGInstrs.cpp757 Value2SUsMap Stores, Loads(1 /*TrueMemOrderLatency*/); in buildSchedGraph() local
899 addBarrierChain(Stores); in buildSchedGraph()
942 addChainDependencies(SU, Stores); in buildSchedGraph()
948 Stores.insert(SU, UnknownValue); in buildSchedGraph()
957 addChainDependencies(SU, (ThisMayAlias ? Stores : NonAliasStores), V); in buildSchedGraph()
967 (ThisMayAlias ? Stores : NonAliasStores).insert(SU, V); in buildSchedGraph()
972 addChainDependencies(SU, Stores, UnknownValue); in buildSchedGraph()
977 addChainDependencies(SU, Stores); in buildSchedGraph()
988 addChainDependencies(SU, (ThisMayAlias ? Stores : NonAliasStores), V); in buildSchedGraph()
994 addChainDependencies(SU, Stores, UnknownValue); in buildSchedGraph()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Vectorize/
DSLPVectorizer.h144 bool vectorizeStores(ArrayRef<StoreInst *> Stores, slpvectorizer::BoUpSLP &R);
147 StoreListMap Stores; member
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/
DAMD_shader_image_load_store_lod.txt79 ... "Texture Image Loads and Stores" of the OpenGL specification.
113 | | Image Loads and Stores" of |
127 | | Loads and Stores" of the |
DAMD_pinned_memory.txt75 Modifications to Section 2.9.2, "Creating Buffer Object Data Stores"
77 2.9.2 Creating Buffer Object Data Stores
/third_party/openGLES/extensions/AMD/
DAMD_shader_image_load_store_lod.txt79 ... "Texture Image Loads and Stores" of the OpenGL specification.
113 | | Image Loads and Stores" of |
127 | | Loads and Stores" of the |
DAMD_pinned_memory.txt75 Modifications to Section 2.9.2, "Creating Buffer Object Data Stores"
77 2.9.2 Creating Buffer Object Data Stores
/third_party/mesa3d/src/freedreno/ci/
Dfreedreno-a630-bypass-flakes.txt7 # texture. Stores are done through both paths in separate channels,
/third_party/flutter/flutter/packages/flutter/lib/src/services/
Dclipboard.dart35 /// Stores the given clipboard data on the clipboard.
/third_party/openssl/doc/man3/
DEVP_rc5_32_12_16_cbc.pod52 Stores the number of rounds currently configured in B<*rounds> where B<*rounds>
/third_party/node/deps/npm/node_modules/asynckit/
DREADME.md37 Runs iterator over provided array in parallel. Stores output in the `result` array,
131 Runs iterator over provided array sequentially. Stores output in the `result` array,
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/opptrnotequal/
Dvariable_pointers_ssbo_2_not_equal.amber9 ; Stores an array of pointers in Function storage class that point into input
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/opptrequal/
Dvariable_pointers_ssbo_2_equal.amber9 ; Stores an array of pointers in Function storage class that point into input
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DArgumentPromotion.cpp820 SmallVector<StoreInst *, 16> Stores; in canPaddingBeAccessed() local
833 Stores.push_back(Store); in canPaddingBeAccessed()
840 for (StoreInst *Store : Stores) in canPaddingBeAccessed()
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/opptrdiff/
Dvariable_pointers_vars_ssbo_2_diff.amber8 ; Stores an array of pointers in Function storage class that point into input
/third_party/openGLES/extensions/EXT/
DEXT_EGL_image_storage_compression.txt114 Modify section 8.23, "Texture Image Loads and Stores":
/third_party/node/deps/npm/node_modules/tough-cookie/
DREADME.md365 Stores should inherit from the base `Store` class, which is available as `require('tough-cookie').S…
367 Stores are asynchronous by default, but if `store.synchronous` is set to `true`, then the `*Sync` m…
401 …. Both `.creation` and `.creationIndex` are guaranteed to be the same. Stores MAY ignore or defe…
403 Stores may wish to optimize changing the `.value` of the cookie in the store versus storing a new c…
435 ## Community Cookie Stores
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCScheduleP8.td32 // Load/Store pipelines can handle Stores, fixed-point loads, and simple
255 // Stores are dual-issued from the issue queue, so may only take up one

123456