/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | MemorySSA.cpp | 1095 AccessList *Accesses = It->second.get(); in renameSuccessorPhis() local 1096 auto *Phi = cast<MemoryPhi>(&Accesses->front()); in renameSuccessorPhis() 1119 AccessList *Accesses = It->second.get(); in renameBlock() local 1120 for (MemoryAccess &L : *Accesses) { in renameBlock() 1203 AccessList *Accesses = It->second.get(); in markUnreachableAsLiveOnEntry() local 1204 auto *Phi = cast<MemoryPhi>(&Accesses->front()); in markUnreachableAsLiveOnEntry() 1212 auto &Accesses = It->second; in markUnreachableAsLiveOnEntry() local 1213 for (auto AI = Accesses->begin(), AE = Accesses->end(); AI != AE;) { in markUnreachableAsLiveOnEntry() 1220 Accesses->erase(AI); in markUnreachableAsLiveOnEntry() 1332 MemorySSA::AccessList *Accesses = MSSA->getWritableBlockAccesses(BB); in optimizeUsesInBlock() local [all …]
|
D | LoopAccessAnalysis.cpp | 513 Accesses.insert(MemAccessInfo(Ptr, false)); in addLoad() 522 Accesses.insert(MemAccessInfo(Ptr, true)); in addStore() 578 PtrAccessSet Accesses; member in __anonc6974e5d0111::AccessAnalysis 725 bool IsWrite = Accesses.count(MemAccessInfo(Ptr, true)); in canCheckPtrAtRT() 826 LLVM_DEBUG(dbgs() << "LAA: Accesses(" << Accesses.size() << "):\n"); in processMemAccesses() 828 for (auto A : Accesses) in processMemAccesses() 856 PtrAccessSet &S = UseDeferred ? DeferredAccesses : Accesses; in processMemAccesses() 1665 for (std::vector<unsigned>::iterator I1 = Accesses[*AI].begin(), in areDepsSafe() 1666 I1E = Accesses[*AI].end(); I1 != I1E; ++I1) in areDepsSafe() 1670 I2 = (OI == AI ? std::next(I1) : Accesses[*OI].begin()), in areDepsSafe() [all …]
|
D | AliasSetTracker.cpp | 548 if (auto *Accesses = MSSA->getBlockAccesses(BB)) in addAllInstructionsInLoopUsingMSSA() local 549 for (auto &Access : *Accesses) in addAllInstructionsInLoopUsingMSSA()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopDistribute.cpp | 631 AccessesType::const_iterator begin() const { return Accesses.begin(); } in begin() 632 AccessesType::const_iterator end() const { return Accesses.end(); } in end() 637 Accesses.append(Instructions.begin(), Instructions.end()); in MemoryInstructionDependences() 645 ++Accesses[Dep.Source].NumUnsafeDependencesStartOrEnd; in MemoryInstructionDependences() 646 --Accesses[Dep.Destination].NumUnsafeDependencesStartOrEnd; in MemoryInstructionDependences() 653 AccessesType Accesses; member in __anoncaa45fb60111::MemoryInstructionDependences
|
D | LICM.cpp | 356 if (auto *Accesses = MSSA->getBlockAccesses(BB)) { in runOnLoop() local 357 for (const auto &MA : *Accesses) { in runOnLoop() 1245 if (auto *Accesses = MSSA->getBlockAccesses(BB)) { in canSinkOrHoistInst() local 1246 for (const auto &MA : *Accesses) in canSinkOrHoistInst() 2334 if (auto *Accesses = MSSA->getBlockDefs(BB)) in pointerInvalidatedByLoopWithMSSA() local 2335 for (const auto &MA : *Accesses) in pointerInvalidatedByLoopWithMSSA()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | LoopAccessAnalysis.h | 186 Accesses[MemAccessInfo(Ptr, true)].push_back(AccessIdx); in addAccess() 195 Accesses[MemAccessInfo(Ptr, false)].push_back(AccessIdx); in addAccess() 268 DenseMap<MemAccessInfo, std::vector<unsigned> > Accesses; variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | TargetInstrInfo.cpp | 353 SmallVectorImpl<const MachineMemOperand *> &Accesses) const { in hasLoadFromStackSlot() 354 size_t StartSize = Accesses.size(); in hasLoadFromStackSlot() 360 Accesses.push_back(*o); in hasLoadFromStackSlot() 362 return Accesses.size() != StartSize; in hasLoadFromStackSlot() 367 SmallVectorImpl<const MachineMemOperand *> &Accesses) const { in hasStoreToStackSlot() 368 size_t StartSize = Accesses.size(); in hasStoreToStackSlot() 374 Accesses.push_back(*o); in hasStoreToStackSlot() 376 return Accesses.size() != StartSize; in hasStoreToStackSlot()
|
D | MachineInstr.cpp | 2148 static unsigned getSpillSlotSize(MMOList &Accesses, in getSpillSlotSize() argument 2151 for (auto A : Accesses) in getSpillSlotSize() 2172 MMOList Accesses; in getFoldedSpillSize() local 2173 if (TII->hasStoreToStackSlot(*this, Accesses)) in getFoldedSpillSize() 2174 return getSpillSlotSize(Accesses, getMF()->getFrameInfo()); in getFoldedSpillSize() 2191 MMOList Accesses; in getFoldedRestoreSize() local 2192 if (TII->hasLoadFromStackSlot(*this, Accesses)) in getFoldedRestoreSize() 2193 return getSpillSlotSize(Accesses, getMF()->getFrameInfo()); in getFoldedRestoreSize()
|
D | RegAllocGreedy.cpp | 3175 SmallVector<const MachineMemOperand *, 2> Accesses; in reportNumberOfSplillsReloads() local 3184 else if (TII->hasLoadFromStackSlot(MI, Accesses) && in reportNumberOfSplillsReloads() 3185 llvm::any_of(Accesses, isSpillSlotAccess)) in reportNumberOfSplillsReloads() 3190 else if (TII->hasStoreToStackSlot(MI, Accesses) && in reportNumberOfSplillsReloads() 3191 llvm::any_of(Accesses, isSpillSlotAccess)) in reportNumberOfSplillsReloads()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonInstrInfo.h | 73 SmallVectorImpl<const MachineMemOperand *> &Accesses) const override; 80 SmallVectorImpl<const MachineMemOperand *> &Accesses) const override;
|
D | HexagonInstrInfo.cpp | 339 SmallVectorImpl<const MachineMemOperand *> &Accesses) const { in hasLoadFromStackSlot() 344 if (TargetInstrInfo::hasLoadFromStackSlot(*MII, Accesses)) in hasLoadFromStackSlot() 349 return TargetInstrInfo::hasLoadFromStackSlot(MI, Accesses); in hasLoadFromStackSlot() 357 SmallVectorImpl<const MachineMemOperand *> &Accesses) const { in hasStoreToStackSlot() 362 if (TargetInstrInfo::hasStoreToStackSlot(*MII, Accesses)) in hasStoreToStackSlot() 367 return TargetInstrInfo::hasStoreToStackSlot(MI, Accesses); in hasStoreToStackSlot()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/ |
D | LanaiInstrInfo.cpp | 735 SmallVector<const MachineMemOperand *, 1> Accesses; in isLoadFromStackSlotPostFE() local 736 if (hasLoadFromStackSlot(MI, Accesses)){ in isLoadFromStackSlotPostFE() 738 cast<FixedStackPseudoSourceValue>(Accesses.front()->getPseudoValue()) in isLoadFromStackSlotPostFE()
|
/third_party/vk-gl-cts/doc/testspecs/GLES31/ |
D | functional.synchronization.txt | 50 accessed by another invocation within the work group. Accesses are synchronized
|
/third_party/openssl/crypto/ |
D | README-sparse_array.md | 149 Accesses to elements in the sparse array take O(log n) time where n is the
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | TargetInstrInfo.h | 279 SmallVectorImpl<const MachineMemOperand *> &Accesses) const; 317 SmallVectorImpl<const MachineMemOperand *> &Accesses) const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMBaseInstrInfo.cpp | 1254 SmallVector<const MachineMemOperand *, 1> Accesses; in isStoreToStackSlotPostFE() local 1255 if (MI.mayStore() && hasStoreToStackSlot(MI, Accesses) && in isStoreToStackSlotPostFE() 1256 Accesses.size() == 1) { in isStoreToStackSlotPostFE() 1258 cast<FixedStackPseudoSourceValue>(Accesses.front()->getPseudoValue()) in isStoreToStackSlotPostFE() 1497 SmallVector<const MachineMemOperand *, 1> Accesses; in isLoadFromStackSlotPostFE() local 1498 if (MI.mayLoad() && hasLoadFromStackSlot(MI, Accesses) && in isLoadFromStackSlotPostFE() 1499 Accesses.size() == 1) { in isLoadFromStackSlotPostFE() 1501 cast<FixedStackPseudoSourceValue>(Accesses.front()->getPseudoValue()) in isLoadFromStackSlotPostFE()
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_robust_buffer_access_behavior.txt | 104 object or be discarded. Accesses made through resources attached to
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_robust_buffer_access_behavior.txt | 94 object or be discarded. Accesses made through resources attached to
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | simd_mat4.inl | 13 // Accesses
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | type_gentype.inl | 153 // Accesses
|
D | type_mat2x3.inl | 155 // -- Accesses --
|
D | type_mat2x2.inl | 155 // -- Accesses --
|
D | type_mat2x4.inl | 156 // -- Accesses --
|
D | type_mat3x2.inl | 185 // -- Accesses --
|
/third_party/skia/third_party/externals/tint/docs/ |
D | spirv-input-output-variables.md | 112 // Accesses to the module-scope variables do not change.
|