Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h297 virtual bool shouldPrefetchAddressSpace(unsigned AS) const;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.h266 bool shouldPrefetchAddressSpace(unsigned AS) const override;
H A DAMDGPUTargetTransformInfo.cpp1353 bool GCNTTIImpl::shouldPrefetchAddressSpace(unsigned AS) const { in shouldPrefetchAddressSpace() function in GCNTTIImpl
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp372 bool MCSubtargetInfo::shouldPrefetchAddressSpace(unsigned AS) const { in shouldPrefetchAddressSpace() function in MCSubtargetInfo
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDataPrefetch.cpp341 if (!TTI->shouldPrefetchAddressSpace(PtrAddrSpace)) in runOnLoop()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h1221 bool shouldPrefetchAddressSpace(unsigned AS) const;
1963 virtual bool shouldPrefetchAddressSpace(unsigned AS) const = 0;
2571 bool shouldPrefetchAddressSpace(unsigned AS) const override { in shouldPrefetchAddressSpace() function
2572 return Impl.shouldPrefetchAddressSpace(AS); in shouldPrefetchAddressSpace()
H A DTargetTransformInfoImpl.h523 bool shouldPrefetchAddressSpace(unsigned AS) const { return !AS; } in shouldPrefetchAddressSpace() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp798 bool TargetTransformInfo::shouldPrefetchAddressSpace(unsigned AS) const { in shouldPrefetchAddressSpace() function in TargetTransformInfo
799 return TTIImpl->shouldPrefetchAddressSpace(AS); in shouldPrefetchAddressSpace()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h735 virtual bool shouldPrefetchAddressSpace(unsigned AS) const { in shouldPrefetchAddressSpace() function
736 return getST()->shouldPrefetchAddressSpace(AS); in shouldPrefetchAddressSpace()