Lines Matching defs:DataTy
6232 bool X86TTIImpl::isLegalMaskedLoad(Type *DataTy, Align Alignment) {
6233 Type *ScalarTy = DataTy->getScalarType();
6236 if (isa<VectorType>(DataTy) && cast<FixedVectorType>(DataTy)->getNumElements() == 1)
6309 bool X86TTIImpl::isLegalMaskedExpandLoad(Type *DataTy, Align Alignment) {
6310 if (!isa<VectorType>(DataTy))
6317 if (cast<FixedVectorType>(DataTy)->getNumElements() == 1)
6320 Type *ScalarTy = cast<VectorType>(DataTy)->getElementType();
6333 bool X86TTIImpl::isLegalMaskedCompressStore(Type *DataTy, Align Alignment) {
6334 return isLegalMaskedExpandLoad(DataTy, Alignment);
6356 bool X86TTIImpl::isLegalMaskedGatherScatter(Type *DataTy, Align Alignment) {
6357 Type *ScalarTy = DataTy->getScalarType();
6371 bool X86TTIImpl::isLegalMaskedGather(Type *DataTy, Align Alignment) {
6374 return isLegalMaskedGatherScatter(DataTy, Alignment);