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.cpp1203 QualType LHSType = local
1208 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) {
1213 if (!isObjCPointerConversion(RHSType, LHSType,
H A DSemaExprCXX.cpp3838 QualType LHSType = LHS.get()->getType(); local
3840 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
3841 LHSType = Ptr->getPointeeType();
3844 << OpSpelling << 1 << LHSType
3850 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
3852 if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs,
3860 if (!IsDerivedFrom(LHSType, Class, Paths) ||
3889 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());
H A DSemaChecking.cpp1450 QualType LHSType = TheCall->getArg(0)->getType(); local
1453 if (!LHSType->isVectorType() || !RHSType->isVectorType()) {
1460 numElements = LHSType->getAs<VectorType>()->getNumElements();
1474 else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
1480 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
5503 QualType LHSType; local
5511 LHSType = PD->getType();
5514 if (LHSType.isNull())
5515 LHSType = LHS->getType();
5516 if (checkUnsafeAssigns(Loc, LHSType, RH
[all...]
H A DSemaExpr.cpp754 ExprResult &RHS, QualType LHSType,
757 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
767 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_FloatingComplexCast);
768 return LHSType;
815 ExprResult &RHS, QualType LHSType,
819 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType,
821 return LHSType;
822 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType,
837 bool LHSComplexFloat = LHSType->isComplexType();
843 LHSType, RHSTyp
753 handleComplexFloatToComplexFloatConverstion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
814 handleComplexFloatConversion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
892 handleFloatConversion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
971 handleIntegerConversion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
5337 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
5460 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
5490 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
5524 CheckAssignmentConstraints(SourceLocation Loc, QualType LHSType, QualType RHSType) argument
5555 CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, CastKind &Kind) argument
5894 CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS, bool Diagnose) argument
6507 DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc, QualType LHSType) argument
6689 QualType LHSType = LHS.get()->getType(); local
[all...]

Completed in 136 milliseconds