Searched refs:LHSType (Results 1 - 9 of 9) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
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
6878 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
7002 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
7032 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) argument
7066 CheckAssignmentConstraints(SourceLocation Loc, QualType LHSType, QualType RHSType) argument
7097 CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS, CastKind &Kind, bool ConvertRHS) argument
7432 CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &CallerRHS, bool Diagnose, bool DiagnoseCFAudited, bool ConvertRHS) argument
8269 DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, BinaryOperatorKind Opc, QualType LHSType) argument
8546 QualType LHSType = LHS.get()->getType(); local
9106 CheckObjCARCConversion(SourceRange(), LHSType, E, local
[all...]
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.cpp4556 QualType LHSType = LHS.get()->getType(); local
4558 if (const PointerType *Ptr = LHSType->getAs<PointerType>())
4559 LHSType = Ptr->getPointeeType();
4562 << OpSpelling << 1 << LHSType
4568 if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
4570 if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs,
4575 if (!IsDerivedFrom(Loc, LHSType, Class)) {
4582 if (CheckDerivedToBaseConversion(LHSType, Class, Loc,
4608 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers());
H A DSemaChecking.cpp2672 QualType LHSType = TheCall->getArg(0)->getType(); local
2675 if (!LHSType->isVectorType() || !RHSType->isVectorType())
2681 numElements = LHSType->getAs<VectorType>()->getNumElements();
2694 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
2700 QualType eltType = LHSType->getAs<VectorType>()->getElementType();
9248 QualType LHSType; local
9256 LHSType = PD->getType();
9259 if (LHSType.isNull())
9260 LHSType = LHS->getType();
9262 Qualifiers::ObjCLifetime LT = LHSType
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/ubsan/
H A Dubsan_handlers.h65 const TypeDescriptor &LHSType; member in struct:__ubsan::ShiftOutOfBoundsData
H A Dubsan_handlers.cc223 Value LHSVal(Data->LHSType, LHS);
228 RHSVal.getPositiveIntValue() >= Data->LHSType.getIntegerBitWidth())
243 << RHSVal << Data->LHSType.getIntegerBitWidth() << Data->LHSType;
250 << LHSVal << RHSVal << Data->LHSType;
/freebsd-11.0-release/contrib/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)
/freebsd-11.0-release/contrib/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(),
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h8407 QualType LHSType,
8413 AssignConvertType CheckAssignmentConstraints(QualType LHSType,
8422 AssignConvertType CheckSingleAssignmentConstraints(QualType LHSType,

Completed in 308 milliseconds