Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.h141 unsigned ChainSizeInBytes,
144 unsigned ChainSizeInBytes,
148 bool isLegalToVectorizeMemChain(unsigned ChainSizeInBytes,
151 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes,
154 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes,
230 bool isLegalToVectorizeMemChain(unsigned ChainSizeInBytes, unsigned Alignment,
232 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes,
235 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes,
H A DAMDGPUTargetTransformInfo.cpp234 unsigned ChainSizeInBytes, in getLoadVectorFactor() argument
245 unsigned ChainSizeInBytes, in getStoreVectorFactor() argument
272 bool GCNTTIImpl::isLegalToVectorizeMemChain(unsigned ChainSizeInBytes, in isLegalToVectorizeMemChain() argument
280 ChainSizeInBytes <= ST->getMaxPrivateElementSize(); in isLegalToVectorizeMemChain()
285 bool GCNTTIImpl::isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, in isLegalToVectorizeLoadChain() argument
288 return isLegalToVectorizeMemChain(ChainSizeInBytes, Alignment, AddrSpace); in isLegalToVectorizeLoadChain()
291 bool GCNTTIImpl::isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes, in isLegalToVectorizeStoreChain() argument
294 return isLegalToVectorizeMemChain(ChainSizeInBytes, Alignment, AddrSpace); in isLegalToVectorizeStoreChain()
663 bool R600TTIImpl::isLegalToVectorizeMemChain(unsigned ChainSizeInBytes, in isLegalToVectorizeMemChain() argument
672 bool R600TTIImpl::isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, in isLegalToVectorizeLoadChain() argument
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.h54 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, in isLegalToVectorizeLoadChain() argument
57 return Alignment >= ChainSizeInBytes; in isLegalToVectorizeLoadChain()
59 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes, in isLegalToVectorizeStoreChain() argument
62 return isLegalToVectorizeLoadChain(ChainSizeInBytes, Alignment, AddrSpace); in isLegalToVectorizeStoreChain()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h971 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes,
976 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes,
983 unsigned ChainSizeInBytes,
989 unsigned ChainSizeInBytes,
1198 virtual bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes,
1205 unsigned ChainSizeInBytes,
1208 unsigned ChainSizeInBytes,
1591 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, in isLegalToVectorizeLoadChain() argument
1597 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes, in isLegalToVectorizeStoreChain() argument
1604 unsigned ChainSizeInBytes, in getLoadVectorFactor() argument
[all …]
H A DTargetTransformInfoImpl.h553 bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, in isLegalToVectorizeLoadChain() argument
559 bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes, in isLegalToVectorizeStoreChain() argument
566 unsigned ChainSizeInBytes, in getLoadVectorFactor() argument
572 unsigned ChainSizeInBytes, in getStoreVectorFactor() argument
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp657 unsigned ChainSizeInBytes, unsigned Alignment, unsigned AddrSpace) const { in isLegalToVectorizeLoadChain() argument
658 return TTIImpl->isLegalToVectorizeLoadChain(ChainSizeInBytes, Alignment, in isLegalToVectorizeLoadChain()
663 unsigned ChainSizeInBytes, unsigned Alignment, unsigned AddrSpace) const { in isLegalToVectorizeStoreChain() argument
664 return TTIImpl->isLegalToVectorizeStoreChain(ChainSizeInBytes, Alignment, in isLegalToVectorizeStoreChain()
670 unsigned ChainSizeInBytes, in getLoadVectorFactor() argument
672 return TTIImpl->getLoadVectorFactor(VF, LoadSize, ChainSizeInBytes, VecTy); in getLoadVectorFactor()
677 unsigned ChainSizeInBytes, in getStoreVectorFactor() argument
679 return TTIImpl->getStoreVectorFactor(VF, StoreSize, ChainSizeInBytes, VecTy); in getStoreVectorFactor()