Home
last modified time | relevance | path

Searched refs:hasFloatingRepresentation (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp230 if ((DeclRef1->getType()->hasFloatingRepresentation()) && in checkComparisonOp()
231 (DeclRef2->getType()->hasFloatingRepresentation())) { in checkComparisonOp()
244 } else if (LHS->getType()->hasFloatingRepresentation()) { in checkComparisonOp()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DCanonicalType.h307 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, hasFloatingRepresentation)
H A DType.h2303 bool hasFloatingRepresentation() const;
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExpr.cpp4165 !E->isLValue() && ExprTy->hasFloatingRepresentation()) in ActOnParenExpr()
12025 if (LHSType->hasFloatingRepresentation() || in diagnoseTautologicalComparison()
12251 if (OtherTy->hasFloatingRepresentation()) { in checkArithmeticOrEnumeralThreeWayCompare()
12326 if (Type->hasFloatingRepresentation()) in checkArithmeticOrEnumeralCompare()
12936 if (LHSType->hasFloatingRepresentation()) { in CheckVectorCompareOperands()
12937 assert(RHS.get()->getType()->hasFloatingRepresentation()); in CheckVectorCompareOperands()
12970 if (LHSType->hasFloatingRepresentation()) { in CheckSizelessVectorCompareOperands()
12971 assert(RHS.get()->getType()->hasFloatingRepresentation()); in CheckSizelessVectorCompareOperands()
13121 vType->hasFloatingRepresentation()) in CheckVectorLogicalOperands()
13267 if (LHS.get()->getType()->hasFloatingRepresentation() || in CheckBitwiseOperands()
[all …]
H A DSemaDeclAttr.cpp4105 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr()
H A DSemaChecking.cpp7584 if (!ArgTy->hasFloatingRepresentation()) in SemaBuiltinArithmeticFence()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprAgg.cpp993 if (ArgTy->hasFloatingRepresentation()) in EmitCompare()
H A DTargetInfo.cpp8153 (RetTy->isVectorType() && !RetTy->hasFloatingRepresentation())) { in classifyReturnType()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp3979 (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() && \ in getScalableVectorType()
3981 (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() && \ in getScalableVectorType()
3997 (EltTy->hasFloatingRepresentation() && IsFP)) && \ in getScalableVectorType()
H A DType.cpp2130 bool Type::hasFloatingRepresentation() const { in hasFloatingRepresentation() function in Type