Home
last modified time | relevance | path

Searched refs:shouldPrefetchAddressSpace (Results 1 – 9 of 9) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h325 virtual bool shouldPrefetchAddressSpace(unsigned AS) const;
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.h267 bool shouldPrefetchAddressSpace(unsigned AS) const override;
H A DAMDGPUTargetTransformInfo.cpp1365 bool GCNTTIImpl::shouldPrefetchAddressSpace(unsigned AS) const { in shouldPrefetchAddressSpace() function in GCNTTIImpl
/src/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp382 bool MCSubtargetInfo::shouldPrefetchAddressSpace(unsigned AS) const { in shouldPrefetchAddressSpace() function in MCSubtargetInfo
/src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDataPrefetch.cpp341 if (!TTI->shouldPrefetchAddressSpace(PtrAddrSpace)) in runOnLoop()
/src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h1255 bool shouldPrefetchAddressSpace(unsigned AS) const;
2032 virtual bool shouldPrefetchAddressSpace(unsigned AS) const = 0;
2665 bool shouldPrefetchAddressSpace(unsigned AS) const override { in shouldPrefetchAddressSpace() function
2666 return Impl.shouldPrefetchAddressSpace(AS); in shouldPrefetchAddressSpace()
H A DTargetTransformInfoImpl.h544 bool shouldPrefetchAddressSpace(unsigned AS) const { return !AS; } in shouldPrefetchAddressSpace() function
/src/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp828 bool TargetTransformInfo::shouldPrefetchAddressSpace(unsigned AS) const { in shouldPrefetchAddressSpace() function in TargetTransformInfo
829 return TTIImpl->shouldPrefetchAddressSpace(AS); in shouldPrefetchAddressSpace()
/src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h748 virtual bool shouldPrefetchAddressSpace(unsigned AS) const { in shouldPrefetchAddressSpace() function
749 return getST()->shouldPrefetchAddressSpace(AS); in shouldPrefetchAddressSpace()