Lines Matching refs:DataTy
5220 bool X86TTIImpl::isLegalMaskedLoad(Type *DataTy, Align Alignment) { in isLegalMaskedLoad() argument
5225 if (isa<VectorType>(DataTy) && in isLegalMaskedLoad()
5226 cast<FixedVectorType>(DataTy)->getNumElements() == 1) in isLegalMaskedLoad()
5228 Type *ScalarTy = DataTy->getScalarType(); in isLegalMaskedLoad()
5294 bool X86TTIImpl::isLegalMaskedExpandLoad(Type *DataTy) { in isLegalMaskedExpandLoad() argument
5295 if (!isa<VectorType>(DataTy)) in isLegalMaskedExpandLoad()
5302 if (cast<FixedVectorType>(DataTy)->getNumElements() == 1) in isLegalMaskedExpandLoad()
5305 Type *ScalarTy = cast<VectorType>(DataTy)->getElementType(); in isLegalMaskedExpandLoad()
5318 bool X86TTIImpl::isLegalMaskedCompressStore(Type *DataTy) { in isLegalMaskedCompressStore() argument
5319 return isLegalMaskedExpandLoad(DataTy); in isLegalMaskedCompressStore()
5341 bool X86TTIImpl::isLegalMaskedGather(Type *DataTy, Align Alignment) { in isLegalMaskedGather() argument
5344 Type *ScalarTy = DataTy->getScalarType(); in isLegalMaskedGather()