Home
last modified time | relevance | path

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

/llvm-project-15.0.7/polly/lib/Transform/
H A DMatmulOptimizer.cpp582 if (TTI->getCacheAssociativity(L1DCache)) in getTargetCacheParameters()
584 TTI->getCacheAssociativity(L1DCache).value(); in getTargetCacheParameters()
590 if (TTI->getCacheAssociativity(L2DCache)) in getTargetCacheParameters()
592 TTI->getCacheAssociativity(L2DCache).value(); in getTargetCacheParameters()
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h245 virtual Optional<unsigned> getCacheAssociativity(unsigned Level) const;
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCSubtargetInfo.cpp343 MCSubtargetInfo::getCacheAssociativity(unsigned Level) const { in getCacheAssociativity() function in MCSubtargetInfo
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h118 llvm::Optional<unsigned> getCacheAssociativity(
H A DX86TargetTransformInfo.cpp99 llvm::Optional<unsigned> X86TTIImpl::getCacheAssociativity( in getCacheAssociativity() function in X86TTIImpl
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h1009 Optional<unsigned> getCacheAssociativity(CacheLevel Level) const;
1686 virtual Optional<unsigned> getCacheAssociativity(CacheLevel Level) const = 0;
2206 Optional<unsigned> getCacheAssociativity(CacheLevel Level) const override { in getCacheAssociativity() function
2207 return Impl.getCacheAssociativity(Level); in getCacheAssociativity()
H A DTargetTransformInfoImpl.h459 getCacheAssociativity(TargetTransformInfo::CacheLevel Level) const { in getCacheAssociativity() function
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp684 TargetTransformInfo::getCacheAssociativity(CacheLevel Level) const { in getCacheAssociativity() function in TargetTransformInfo
685 return TTIImpl->getCacheAssociativity(Level); in getCacheAssociativity()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h652 getCacheAssociativity(TargetTransformInfo::CacheLevel Level) const { in getCacheAssociativity() function
654 getST()->getCacheAssociativity(static_cast<unsigned>(Level)); in getCacheAssociativity()
659 return BaseT::getCacheAssociativity(Level); in getCacheAssociativity()