Searched refs:destTy (Results 1 – 6 of 6) sorted by relevance
131 class CCPromoteToType<ValueType destTy> : CCAction {132 ValueType DestTy = destTy;137 class CCPromoteToUpperBitsInType<ValueType destTy> : CCAction {138 ValueType DestTy = destTy;143 class CCBitConvertToType<ValueType destTy> : CCAction {144 ValueType DestTy = destTy;149 class CCPassIndirect<ValueType destTy> : CCAction {150 ValueType DestTy = destTy;
5 %destTy = type { i2, i2 }7 define void @crash(i64 %x0, i64 %y0, %destTy* nocapture %dest) nounwind {30 %1 = bitcast %destTy* %dest to <2 x i2>*
109 class CCPromoteToType<ValueType destTy> : CCAction {110 ValueType DestTy = destTy;115 class CCBitConvertToType<ValueType destTy> : CCAction {116 ValueType DestTy = destTy;121 class CCPassIndirect<ValueType destTy> : CCAction {122 ValueType DestTy = destTy;
675 const MemberPointerType *destTy = in EmitMemberPointerConversion() local680 if (destTy->isMemberDataPointer()) { in EmitMemberPointerConversion()726 const MemberPointerType *destTy = in EmitMemberPointerConversion() local731 if (destTy->isMemberDataPointer()) { in EmitMemberPointerConversion()
5813 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) { in areLaxCompatibleVectorTypes() argument5814 assert(destTy->isVectorType() || srcTy->isVectorType()); in areLaxCompatibleVectorTypes()5821 if (srcTy->isScalarType() && destTy->isExtVectorType()) return false; in areLaxCompatibleVectorTypes()5822 if (destTy->isScalarType() && srcTy->isExtVectorType()) return false; in areLaxCompatibleVectorTypes()5827 if (!breakDownVectorType(destTy, destLen, destEltTy)) return false; in areLaxCompatibleVectorTypes()5840 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) { in isLaxVectorConversion() argument5841 assert(destTy->isVectorType() || srcTy->isVectorType()); in isLaxVectorConversion()5845 return areLaxCompatibleVectorTypes(srcTy, destTy); in isLaxVectorConversion()