Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaExpr.cpp915 QualType RHSType, in handleComplexFloatToComplexFloatConverstion() argument
917 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType); in handleComplexFloatToComplexFloatConverstion()
922 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_FloatingComplexCast); in handleComplexFloatToComplexFloatConverstion()
923 return RHSType; in handleComplexFloatToComplexFloatConverstion()
976 QualType RHSType, in handleComplexFloatConversion() argument
979 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType, in handleComplexFloatConversion()
982 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType, in handleComplexFloatConversion()
984 return RHSType; in handleComplexFloatConversion()
998 bool RHSComplexFloat = RHSType->isComplexType(); in handleComplexFloatConversion()
1003 LHSType, RHSType, in handleComplexFloatConversion()
[all …]
HDSemaObjCProperty.cpp786 QualType RHSType = S.Context.getCanonicalType(Property->getType()); in DiagnosePropertyMismatchDeclInProtocols() local
792 if (!S.Context.propertyTypesAreCompatible(LHSType, RHSType)) { in DiagnosePropertyMismatchDeclInProtocols()
795 if (!S.isObjCPointerConversion(RHSType, LHSType, ConvertedType, IncompatibleObjC) in DiagnosePropertyMismatchDeclInProtocols()
1374 QualType RHSType = in DiagnosePropertyMismatch() local
1377 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) { in DiagnosePropertyMismatch()
1382 if (!isObjCPointerConversion(RHSType, LHSType, in DiagnosePropertyMismatch()
HDSemaExprCXX.cpp4082 QualType RHSType = RHS.get()->getType(); in CheckPointerToMemberOperands() local
4083 const MemberPointerType *MemPtr = RHSType->getAs<MemberPointerType>(); in CheckPointerToMemberOperands()
4086 << OpSpelling << RHSType << RHS.get()->getSourceRange(); in CheckPointerToMemberOperands()
4170 << RHSType << 1 << LHS.get()->getSourceRange(); in CheckPointerToMemberOperands()
4176 << RHSType << 0 << LHS.get()->getSourceRange(); in CheckPointerToMemberOperands()
HDSemaChecking.cpp1765 QualType RHSType = TheCall->getArg(1)->getType(); in SemaBuiltinShuffleVector() local
1767 if (!LHSType->isVectorType() || !RHSType->isVectorType()) in SemaBuiltinShuffleVector()
1780 if (!RHSType->hasIntegerRepresentation() || in SemaBuiltinShuffleVector()
1781 RHSType->getAs<VectorType>()->getNumElements() != numElements) in SemaBuiltinShuffleVector()
1786 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) { in SemaBuiltinShuffleVector()
/trueos/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombinePHI.cpp32 Type *RHSType = RHSVal->getType(); in FoldPHIArgBinOpIntoPHI() local
50 I->getOperand(1)->getType() != RHSType) in FoldPHIArgBinOpIntoPHI()
91 NewRHS = PHINode::Create(RHSType, PN.getNumIncomingValues(), in FoldPHIArgBinOpIntoPHI()
/trueos/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h7323 QualType RHSType);