Home
last modified time | relevance | path

Searched refs:RHSType (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp1053 QualType RHSType, in handleComplexFloatConversion() argument
1056 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType, in handleComplexFloatConversion()
1059 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType, in handleComplexFloatConversion()
1061 return RHSType; in handleComplexFloatConversion()
1075 int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType); in handleComplexFloatConversion()
1078 auto *RHSComplexType = dyn_cast<ComplexType>(RHSType); in handleComplexFloatConversion()
1082 RHSComplexType ? RHSComplexType->getElementType() : RHSType; in handleComplexFloatConversion()
1140 QualType RHSType, bool IsCompAssign) { in handleFloatConversion() argument
1142 bool RHSFloat = RHSType->isRealFloatingType(); in handleFloatConversion()
1147 if (LHSType->isFixedPointType() || RHSType->isFixedPointType()) { in handleFloatConversion()
[all …]
H A DSemaObjCProperty.cpp878 QualType RHSType = S.Context.getCanonicalType(Property->getType()); in SelectPropertyForSynthesisFromProtocols() local
944 if (!S.Context.propertyTypesAreCompatible(LHSType, RHSType)) { in SelectPropertyForSynthesisFromProtocols()
947 if (!S.isObjCPointerConversion(RHSType, LHSType, ConvertedType, IncompatibleObjC) in SelectPropertyForSynthesisFromProtocols()
1692 QualType RHSType = in DiagnosePropertyMismatch() local
1695 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) { in DiagnosePropertyMismatch()
1700 if (!isObjCPointerConversion(RHSType, LHSType, in DiagnosePropertyMismatch()
H A DSemaExprCXX.cpp5688 QualType RHSType = RHS.get()->getType(); in CheckPointerToMemberOperands() local
5689 const MemberPointerType *MemPtr = RHSType->getAs<MemberPointerType>(); in CheckPointerToMemberOperands()
5692 << OpSpelling << RHSType << RHS.get()->getSourceRange(); in CheckPointerToMemberOperands()
5786 << RHSType << 1 << LHS.get()->getSourceRange(); in CheckPointerToMemberOperands()
5793 << RHSType << 0 << LHS.get()->getSourceRange(); in CheckPointerToMemberOperands()
6014 QualType RHSType = RHS.get()->getType(); in CheckVectorConditionalTypes() local
6015 const auto *RHSVT = RHSType->getAs<VectorType>(); in CheckVectorConditionalTypes()
6028 if (!Context.hasSameType(LHSType, RHSType)) { in CheckVectorConditionalTypes()
6030 << LHSType << RHSType; in CheckVectorConditionalTypes()
6044 RHSType = RHSType.getCanonicalType().getUnqualifiedType(); in CheckVectorConditionalTypes()
[all …]
H A DSemaChecking.cpp6292 QualType RHSType = TheCall->getArg(1)->getType(); in SemaBuiltinShuffleVector() local
6294 if (!LHSType->isVectorType() || !RHSType->isVectorType()) in SemaBuiltinShuffleVector()
6308 if (!RHSType->hasIntegerRepresentation() || in SemaBuiltinShuffleVector()
6309 RHSType->castAs<VectorType>()->getNumElements() != numElements) in SemaBuiltinShuffleVector()
6315 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) { in SemaBuiltinShuffleVector()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DMatrixBuilder.h134 auto *RHSType = cast<VectorType>(RHS->getType()); variable
141 Type *OverloadedTypes[] = {ReturnType, LHSType, RHSType};
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_handlers.h66 const TypeDescriptor &RHSType; member
H A Dubsan_handlers.cc237 Value RHSVal(Data->RHSType, RHS); in handleShiftOutOfBoundsImpl()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_handlers.h76 const TypeDescriptor &RHSType; member
H A Dubsan_handlers.cpp335 Value RHSVal(Data->RHSType, RHS); in handleShiftOutOfBoundsImpl()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_handlers.h64 const TypeDescriptor &RHSType; member
H A Dubsan_handlers.cc233 Value RHSVal(Data->RHSType, RHS); in handleShiftOutOfBoundsImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp389 Type *RHSType = RHSVal->getType(); in foldPHIArgBinOpIntoPHI() local
398 I->getOperand(1)->getType() != RHSType) in foldPHIArgBinOpIntoPHI()
432 NewRHS = PHINode::Create(RHSType, PN.getNumIncomingValues(), in foldPHIArgBinOpIntoPHI()
H A DInstCombineCompares.cpp944 Type *RHSType = GEPRHS->getOperand(i)->getType(); in foldGEPICmp() local
947 RHSType->getPrimitiveSizeInBits() || in foldGEPICmp()
949 (!LHSType->isVectorTy() || !RHSType->isVectorTy()))) { in foldGEPICmp()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprScalar.cpp142 QualType RHSType = BinOp->getRHS()->getType(); in isFixedPointOp() local
143 return LHSType->isFixedPointType() || RHSType->isFixedPointType(); in isFixedPointOp()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h11488 QualType RHSType);