Lines Matching defs:DataTy
5929 bool X86TTIImpl::isLegalMaskedLoad(Type *DataTy, Align Alignment) {
5930 Type *ScalarTy = DataTy->getScalarType();
5933 if (isa<VectorType>(DataTy) && cast<FixedVectorType>(DataTy)->getNumElements() == 1)
6006 bool X86TTIImpl::isLegalMaskedExpandLoad(Type *DataTy, Align Alignment) {
6007 if (!isa<VectorType>(DataTy))
6014 if (cast<FixedVectorType>(DataTy)->getNumElements() == 1)
6017 Type *ScalarTy = cast<VectorType>(DataTy)->getElementType();
6030 bool X86TTIImpl::isLegalMaskedCompressStore(Type *DataTy, Align Alignment) {
6031 return isLegalMaskedExpandLoad(DataTy, Alignment);
6053 bool X86TTIImpl::isLegalMaskedGatherScatter(Type *DataTy, Align Alignment) {
6054 Type *ScalarTy = DataTy->getScalarType();
6068 bool X86TTIImpl::isLegalMaskedGather(Type *DataTy, Align Alignment) {
6071 return isLegalMaskedGatherScatter(DataTy, Alignment);