Home
last modified time | relevance | path

Searched refs:srcTy (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp2055 Type *srcTy = V->getType(); in CreateShadowCast() local
2056 size_t srcSizeInBits = VectorOrPrimitiveTypeSizeInBits(srcTy); in CreateShadowCast()
2061 if (dstTy->isIntegerTy() && srcTy->isIntegerTy()) in CreateShadowCast()
2063 if (dstTy->isVectorTy() && srcTy->isVectorTy() && in CreateShadowCast()
2064 dstTy->getVectorNumElements() == srcTy->getVectorNumElements()) in CreateShadowCast()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp6219 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) { in areLaxCompatibleVectorTypes() argument
6220 assert(destTy->isVectorType() || srcTy->isVectorType()); in areLaxCompatibleVectorTypes()
6227 if (srcTy->isScalarType() && destTy->isExtVectorType()) return false; in areLaxCompatibleVectorTypes()
6228 if (destTy->isScalarType() && srcTy->isExtVectorType()) return false; in areLaxCompatibleVectorTypes()
6232 if (!breakDownVectorType(srcTy, srcLen, srcEltTy)) return false; in areLaxCompatibleVectorTypes()
6246 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) { in isLaxVectorConversion() argument
6247 assert(destTy->isVectorType() || srcTy->isVectorType()); in isLaxVectorConversion()
6251 return areLaxCompatibleVectorTypes(srcTy, destTy); in isLaxVectorConversion()