Searched defs:LHSType (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp31 Type *LHSType = LHSVal->getType(); local
49 I->getOperand(0)->getType() != LHSType ||
83 NewLHS = PHINode::Create(LHSType, PN.getNumIncomingValues(),
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp1010 QualType LHSType = local
1015 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) {
1020 if (!isObjCPointerConversion(RHSType, LHSType,
H A DSemaExprCXX.cpp3756 QualType LHSType = LHS.get()->getType(); local
3758 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
3759 LHSType = Ptr->getPointeeType();
3762 << OpSpelling << 1 << LHSType
3768 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
3770 if (RequireCompleteType(Loc, LHSType, PDiag(diag::err_bad_memptr_lhs)
3778 if (!IsDerivedFrom(LHSType, Class, Paths) ||
3807 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());
H A DSemaChecking.cpp1330 QualType LHSType = TheCall->getArg(0)->getType(); local
1333 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
1340 numElements = LHSType->getAs<VectorType>()->getNumElements();
1354 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
1360 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
4980 QualType LHSType; local
4988 LHSType = PD->getType();
4991 if (LHSType.isNull())
4992 LHSType = LHS->getType();
4993 if (checkUnsafeAssigns(Loc, LHSType, RH
[all...]
H A DSemaExpr.cpp655 ExprResult &RHS, QualType LHSType,
658 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
668 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_FloatingComplexCast);
669 return LHSType;
716 ExprResult &RHS, QualType LHSType,
720 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType,
722 return LHSType;
723 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType,
738 bool LHSComplexFloat = LHSType->isComplexType();
744 LHSType, RHSTyp
654 handleComplexFloatToComplexFloatConverstion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
715 handleComplexFloatConversion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
793 handleFloatConversion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
872 handleIntegerConversion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
5150 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
5273 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
5303 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
5337 CheckAssignmentConstraints(SourceLocation Loc, QualType LHSType, QualType RHSType) argument
5368 CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, CastKind &Kind) argument
5710 CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, bool Diagnose) argument
6348 DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc, QualType LHSType) argument
6530 QualType LHSType = LHS.get()->getType(); local
[all...]

Completed in 162 milliseconds