Home
last modified time | relevance | path

Searched refs:ChainSizeInBytes (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUTargetTransformInfo.h153 unsigned ChainSizeInBytes,
156 unsigned ChainSizeInBytes,
160 bool isLegalToVectorizeMemChain(unsigned ChainSizeInBytes,
163 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes,
166 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes,
260 bool isLegalToVectorizeMemChain(unsigned ChainSizeInBytes, unsigned Alignment,
262 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes,
265 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes,
DAMDGPUTargetTransformInfo.cpp237 unsigned ChainSizeInBytes, in getLoadVectorFactor() argument
248 unsigned ChainSizeInBytes, in getStoreVectorFactor() argument
276 bool GCNTTIImpl::isLegalToVectorizeMemChain(unsigned ChainSizeInBytes, in isLegalToVectorizeMemChain() argument
284 ChainSizeInBytes <= ST->getMaxPrivateElementSize(); in isLegalToVectorizeMemChain()
289 bool GCNTTIImpl::isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, in isLegalToVectorizeLoadChain() argument
292 return isLegalToVectorizeMemChain(ChainSizeInBytes, Alignment, AddrSpace); in isLegalToVectorizeLoadChain()
295 bool GCNTTIImpl::isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes, in isLegalToVectorizeStoreChain() argument
298 return isLegalToVectorizeMemChain(ChainSizeInBytes, Alignment, AddrSpace); in isLegalToVectorizeStoreChain()
905 bool R600TTIImpl::isLegalToVectorizeMemChain(unsigned ChainSizeInBytes, in isLegalToVectorizeMemChain() argument
914 bool R600TTIImpl::isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, in isLegalToVectorizeLoadChain() argument
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXTargetTransformInfo.h53 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, in isLegalToVectorizeLoadChain() argument
56 return Alignment >= ChainSizeInBytes; in isLegalToVectorizeLoadChain()
58 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes, in isLegalToVectorizeStoreChain() argument
61 return isLegalToVectorizeLoadChain(ChainSizeInBytes, Alignment, AddrSpace); in isLegalToVectorizeStoreChain()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfo.h1110 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes,
1115 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes,
1122 unsigned ChainSizeInBytes,
1128 unsigned ChainSizeInBytes,
1382 virtual bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes,
1385 virtual bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes,
1389 unsigned ChainSizeInBytes,
1392 unsigned ChainSizeInBytes,
1847 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, in isLegalToVectorizeLoadChain() argument
1850 return Impl.isLegalToVectorizeLoadChain(ChainSizeInBytes, Alignment, in isLegalToVectorizeLoadChain()
[all …]
DTargetTransformInfoImpl.h582 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, in isLegalToVectorizeLoadChain() argument
588 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes, in isLegalToVectorizeStoreChain() argument
595 unsigned ChainSizeInBytes, in getLoadVectorFactor() argument
601 unsigned ChainSizeInBytes, in getStoreVectorFactor() argument
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DTargetTransformInfo.cpp817 unsigned ChainSizeInBytes, unsigned Alignment, unsigned AddrSpace) const { in isLegalToVectorizeLoadChain() argument
818 return TTIImpl->isLegalToVectorizeLoadChain(ChainSizeInBytes, Alignment, in isLegalToVectorizeLoadChain()
823 unsigned ChainSizeInBytes, unsigned Alignment, unsigned AddrSpace) const { in isLegalToVectorizeStoreChain() argument
824 return TTIImpl->isLegalToVectorizeStoreChain(ChainSizeInBytes, Alignment, in isLegalToVectorizeStoreChain()
830 unsigned ChainSizeInBytes, in getLoadVectorFactor() argument
832 return TTIImpl->getLoadVectorFactor(VF, LoadSize, ChainSizeInBytes, VecTy); in getLoadVectorFactor()
837 unsigned ChainSizeInBytes, in getStoreVectorFactor() argument
839 return TTIImpl->getStoreVectorFactor(VF, StoreSize, ChainSizeInBytes, VecTy); in getStoreVectorFactor()