Home
last modified time | relevance | path

Searched refs:destTy (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Target/
DTargetCallingConv.td131 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;
/external/llvm/include/llvm/Target/
DTargetCallingConv.td131 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;
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dpr20011.ll5 %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>*
/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetCallingConv.td109 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;
/external/clang/lib/CodeGen/
DItaniumCXXABI.cpp675 const MemberPointerType *destTy = in EmitMemberPointerConversion() local
680 if (destTy->isMemberDataPointer()) { in EmitMemberPointerConversion()
726 const MemberPointerType *destTy = in EmitMemberPointerConversion() local
731 if (destTy->isMemberDataPointer()) { in EmitMemberPointerConversion()
/external/clang/lib/Sema/
DSemaExpr.cpp5813 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) { in areLaxCompatibleVectorTypes() argument
5814 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() argument
5841 assert(destTy->isVectorType() || srcTy->isVectorType()); in isLaxVectorConversion()
5845 return areLaxCompatibleVectorTypes(srcTy, destTy); in isLaxVectorConversion()