Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaExpr.cpp1149 return RHSType; in handleComplexConversion()
1224 return RHSType; in handleFloatConversion()
1302 return RHSType; in handleIntegerConversion()
1311 return RHSType; in handleIntegerConversion()
1321 return RHSType; in handleIntegerConversion()
8672 if (!RHSType->isIntegerType() && !RHSType->isRealFloatingType()) { in OpenCLArithmeticConversions()
9559 !S.IsFunctionConversion(RHSType, LHSType, RHSType)) in checkPointerTypesForAssignment()
9767 RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType(); in CheckAssignmentConstraints()
10710 return RHSType; in CheckVectorOperands()
10918 (!RHSType->isVLSTBuiltinType() && !RHSType->isRealType())) { in CheckSizelessVectorOperands()
[all …]
H A DSemaExprCXX.cpp5961 QualType RHSType = RHS.get()->getType(); in CheckPointerToMemberOperands() local
6294 QualType RHSType = RHS.get()->getType(); in CheckVectorConditionalTypes() local
6308 if (!Context.hasSameType(LHSType, RHSType)) { in CheckVectorConditionalTypes()
6310 << LHSType << RHSType; in CheckVectorConditionalTypes()
6325 RHSType = RHSType.getUnqualifiedType(); in CheckVectorConditionalTypes()
6327 Context.hasSameType(LHSType, RHSType) in CheckVectorConditionalTypes()
6387 QualType RHSType = RHS.get()->getType(); in CheckSizelessVectorConditionalTypes() local
6389 RHSType->isVLSTBuiltinType() ? RHSType->getAs<BuiltinType>() : nullptr; in CheckSizelessVectorConditionalTypes()
6397 << LHSType << RHSType; in CheckSizelessVectorConditionalTypes()
6410 RHSType = RHSType.getCanonicalType().getUnqualifiedType(); in CheckSizelessVectorConditionalTypes()
[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()
1691 QualType RHSType = in DiagnosePropertyMismatch() local
1694 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) { in DiagnosePropertyMismatch()
1699 if (!isObjCPointerConversion(RHSType, LHSType, in DiagnosePropertyMismatch()
H A DSemaChecking.cpp7657 QualType RHSType = TheCall->getArg(1)->getType(); in SemaBuiltinShuffleVector() local
7659 if (!LHSType->isVectorType() || !RHSType->isVectorType()) in SemaBuiltinShuffleVector()
7673 if (!RHSType->hasIntegerRepresentation() || in SemaBuiltinShuffleVector()
7674 RHSType->castAs<VectorType>()->getNumElements() != numElements) in SemaBuiltinShuffleVector()
7680 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) { in SemaBuiltinShuffleVector()
/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DMatrixBuilder.h130 auto *RHSType = cast<VectorType>(RHS->getType()); variable
137 Type *OverloadedTypes[] = {ReturnType, LHSType, RHSType};
/openbsd/gnu/llvm/compiler-rt/lib/ubsan/
H A Dubsan_handlers.h76 const TypeDescriptor &RHSType; member
H A Dubsan_handlers.cpp335 Value RHSVal(Data->RHSType, RHS); in handleShiftOutOfBoundsImpl()
/openbsd/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp415 Type *RHSType = RHSVal->getType(); in foldPHIArgBinOpIntoPHI() local
424 I->getOperand(1)->getType() != RHSType) in foldPHIArgBinOpIntoPHI()
458 NewRHS = PHINode::Create(RHSType, PN.getNumIncomingValues(), in foldPHIArgBinOpIntoPHI()
H A DInstCombineCompares.cpp857 Type *RHSType = GEPRHS->getOperand(i)->getType(); in foldGEPICmp() local
860 RHSType->getPrimitiveSizeInBits() || in foldGEPICmp()
862 (!LHSType->isVectorTy() || !RHSType->isVectorTy()))) { in foldGEPICmp()
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGExprScalar.cpp138 QualType RHSType = BinOp->getRHS()->getType(); in isFixedPointOp() local
139 return LHSType->isFixedPointType() || RHSType->isFixedPointType(); in isFixedPointOp()
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DSema.h12463 QualType RHSType);