Home
last modified time | relevance | path

Searched refs:StoreOrLoadInst (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp131 OS << R.StoreOrLoadInst; in operator <<()
147 IndexedReference::IndexedReference(Instruction &StoreOrLoadInst, in IndexedReference() argument
149 : StoreOrLoadInst(StoreOrLoadInst), SE(SE) { in IndexedReference()
150 assert((isa<StoreInst>(StoreOrLoadInst) || isa<LoadInst>(StoreOrLoadInst)) && in IndexedReference()
227 DI.depends(&StoreOrLoadInst, &Other.StoreOrLoadInst, true); in hasTemporalReuse()
349 if (!tryDelinearizeFixedSizeImpl(&SE, &StoreOrLoadInst, AccessFn, Subscripts, in tryDelinearizeFixedSize()
360 << "GEP:" << *getLoadStorePointerOperand(&StoreOrLoadInst) in tryDelinearizeFixedSize()
370 LLVM_DEBUG(dbgs() << "Delinearizing: " << StoreOrLoadInst << "\n"); in delinearize()
372 const SCEV *ElemSize = SE.getElementSize(&StoreOrLoadInst); in delinearize()
373 const BasicBlock *BB = StoreOrLoadInst.getParent(); in delinearize()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DLoopCacheAnalysis.h53 IndexedReference(Instruction &StoreOrLoadInst, const LoopInfo &LI,
144 Instruction &StoreOrLoadInst; variable