Lines Matching refs:DataTy
4677 bool X86TTIImpl::isLegalMaskedLoad(Type *DataTy, Align Alignment) { in isLegalMaskedLoad() argument
4682 if (isa<VectorType>(DataTy) && in isLegalMaskedLoad()
4683 cast<FixedVectorType>(DataTy)->getNumElements() == 1) in isLegalMaskedLoad()
4685 Type *ScalarTy = DataTy->getScalarType(); in isLegalMaskedLoad()
4740 bool X86TTIImpl::isLegalMaskedExpandLoad(Type *DataTy) { in isLegalMaskedExpandLoad() argument
4741 if (!isa<VectorType>(DataTy)) in isLegalMaskedExpandLoad()
4748 if (cast<FixedVectorType>(DataTy)->getNumElements() == 1) in isLegalMaskedExpandLoad()
4751 Type *ScalarTy = cast<VectorType>(DataTy)->getElementType(); in isLegalMaskedExpandLoad()
4764 bool X86TTIImpl::isLegalMaskedCompressStore(Type *DataTy) { in isLegalMaskedCompressStore() argument
4765 return isLegalMaskedExpandLoad(DataTy); in isLegalMaskedCompressStore()
4768 bool X86TTIImpl::isLegalMaskedGather(Type *DataTy, Align Alignment) { in isLegalMaskedGather() argument
4787 if (auto *DataVTy = dyn_cast<FixedVectorType>(DataTy)) { in isLegalMaskedGather()
4800 Type *ScalarTy = DataTy->getScalarType(); in isLegalMaskedGather()