Lines Matching refs:ScalarTy
191 auto *ScalarTy = Ty->getScalarType(); in hasConditionalLoadStoreForType() local
192 switch (cast<IntegerType>(ScalarTy)->getBitWidth()) { in hasConditionalLoadStoreForType()
5930 Type *ScalarTy = DataTy->getScalarType(); in isLegalMaskedLoad() local
5934 return ST->hasCF() && hasConditionalLoadStoreForType(ScalarTy); in isLegalMaskedLoad()
5939 if (ScalarTy->isPointerTy()) in isLegalMaskedLoad()
5942 if (ScalarTy->isFloatTy() || ScalarTy->isDoubleTy()) in isLegalMaskedLoad()
5945 if (ScalarTy->isHalfTy() && ST->hasBWI()) in isLegalMaskedLoad()
5948 if (ScalarTy->isBFloatTy() && ST->hasBF16()) in isLegalMaskedLoad()
5951 if (!ScalarTy->isIntegerTy()) in isLegalMaskedLoad()
5954 unsigned IntWidth = ScalarTy->getIntegerBitWidth(); in isLegalMaskedLoad()
6017 Type *ScalarTy = cast<VectorType>(DataTy)->getElementType(); in isLegalMaskedExpandLoad() local
6019 if (ScalarTy->isFloatTy() || ScalarTy->isDoubleTy()) in isLegalMaskedExpandLoad()
6022 if (!ScalarTy->isIntegerTy()) in isLegalMaskedExpandLoad()
6025 unsigned IntWidth = ScalarTy->getIntegerBitWidth(); in isLegalMaskedExpandLoad()
6054 Type *ScalarTy = DataTy->getScalarType(); in isLegalMaskedGatherScatter() local
6055 if (ScalarTy->isPointerTy()) in isLegalMaskedGatherScatter()
6058 if (ScalarTy->isFloatTy() || ScalarTy->isDoubleTy()) in isLegalMaskedGatherScatter()
6061 if (!ScalarTy->isIntegerTy()) in isLegalMaskedGatherScatter()
6064 unsigned IntWidth = ScalarTy->getIntegerBitWidth(); in isLegalMaskedGatherScatter()
6456 Type *ScalarTy = VecTy->getElementType(); in getInterleavedMemoryOpCost() local
6458 if (!ScalarTy->isIntegerTy()) in getInterleavedMemoryOpCost()
6459 ScalarTy = in getInterleavedMemoryOpCost()
6460 Type::getIntNTy(ScalarTy->getContext(), DL.getTypeSizeInBits(ScalarTy)); in getInterleavedMemoryOpCost()
6467 auto *VT = FixedVectorType::get(ScalarTy, VF); in getInterleavedMemoryOpCost()