Searched refs:srcTy (Results 1 – 3 of 3) sorted by relevance
7329 bool Sema::isValidSveBitcast(QualType srcTy, QualType destTy) { in isValidSveBitcast() argument7330 assert(srcTy->isVectorType() || destTy->isVectorType()); in isValidSveBitcast()7341 return ValidScalableConversion(srcTy, destTy) || in isValidSveBitcast()7342 ValidScalableConversion(destTy, srcTy); in isValidSveBitcast()7347 bool Sema::areMatrixTypesOfTheSameDimension(QualType srcTy, QualType destTy) { in areMatrixTypesOfTheSameDimension() argument7348 if (!destTy->isMatrixType() || !srcTy->isMatrixType()) in areMatrixTypesOfTheSameDimension()7351 const ConstantMatrixType *matSrcType = srcTy->getAs<ConstantMatrixType>(); in areMatrixTypesOfTheSameDimension()7384 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) { in areLaxCompatibleVectorTypes() argument7385 assert(destTy->isVectorType() || srcTy->isVectorType()); in areLaxCompatibleVectorTypes()7392 if (srcTy->isScalarType() && destTy->isExtVectorType()) return false; in areLaxCompatibleVectorTypes()[all …]
2213 Type *srcTy = V->getType(); in CreateShadowCast() local2214 size_t srcSizeInBits = VectorOrPrimitiveTypeSizeInBits(srcTy); in CreateShadowCast()2219 if (dstTy->isIntegerTy() && srcTy->isIntegerTy()) in CreateShadowCast()2221 if (dstTy->isVectorTy() && srcTy->isVectorTy() && in CreateShadowCast()2223 cast<FixedVectorType>(srcTy)->getNumElements()) in CreateShadowCast()
11644 bool areMatrixTypesOfTheSameDimension(QualType srcTy, QualType destTy);