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

/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.h65 const TypeDescriptor &LHSType; member in struct:__ubsan::ShiftOutOfBoundsData
/external/llvm/lib/MC/
H A DELFObjectWriter.cpp86 unsigned LHSType = Symbol->getType(); local
88 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION)
90 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
92 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION)
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp32 Type *LHSType = LHSVal->getType(); local
50 I->getOperand(0)->getType() != LHSType ||
84 NewLHS = PHINode::Create(LHSType, PN.getNumIncomingValues(),
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp829 QualType LHSType = S.Context.getCanonicalType(Prop->getType()); local
830 if (!S.Context.propertyTypesAreCompatible(LHSType, RHSType)) {
833 if (!S.isObjCPointerConversion(RHSType, LHSType, ConvertedType, IncompatibleObjC)
1455 QualType LHSType = local
1460 if (!Context.propertyTypesAreCompatible(LHSType, RHSType)) {
1465 if (!isObjCPointerConversion(RHSType, LHSType,
H A DSemaExprCXX.cpp4563 QualType LHSType = LHS.get()->getType(); local
4565 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
4566 LHSType = Ptr->getPointeeType();
4569 << OpSpelling << 1 << LHSType
4575 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
4577 if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs,
4582 if (!IsDerivedFrom(Loc, LHSType, Class)) {
4589 if (CheckDerivedToBaseConversion(LHSType, Class, Loc,
4615 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());
H A DSemaChecking.cpp2663 QualType LHSType = TheCall->getArg(0)->getType(); local
2666 if (!LHSType->isVectorType() || !RHSType->isVectorType())
2672 numElements = LHSType->getAs<VectorType>()->getNumElements();
2685 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
2691 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
9224 QualType LHSType; local
9232 LHSType = PD->getType();
9235 if (LHSType.isNull())
9236 LHSType = LHS->getType();
9238 Qualifiers::ObjCLifetime LT = LHSType
[all...]
H A DSemaExpr.cpp1019 ExprResult &RHS, QualType LHSType,
1023 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType,
1025 return LHSType;
1026 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType,
1042 int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
1044 auto *LHSComplexType = dyn_cast<ComplexType>(LHSType);
1047 LHSComplexType ? LHSComplexType->getElementType() : LHSType;
1106 ExprResult &RHS, QualType LHSType,
1108 bool LHSFloat = LHSType->isRealFloatingType();
1114 int order = S.Context.getFloatingTypeOrder(LHSType, RHSTyp
1018 handleComplexFloatConversion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
1105 handleFloatConversion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
1129 LHSType = S.Context.FloatTy; local
1159 handleIntegerConversion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
1209 handleComplexIntConversion(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType LHSType, QualType RHSType, bool IsCompAssign) argument
6699 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
6823 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
6853 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
6887 CheckAssignmentConstraints(SourceLocation Loc, QualType LHSType, QualType RHSType) argument
6918 CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, CastKind &Kind, bool ConvertRHS) argument
7257 CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &CallerRHS, bool Diagnose, bool DiagnoseCFAudited, bool ConvertRHS) argument
8091 DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, BinaryOperatorKind Opc, QualType LHSType) argument
8368 QualType LHSType = LHS.get()->getType(); local
8928 CheckObjCARCConversion(SourceRange(), LHSType, E, CCK_ImplicitConversion, false, local
[all...]

Completed in 203 milliseconds