Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DMips.cpp305 (RetTy->isVectorType() && !RetTy->hasFloatingRepresentation())) { in classifyReturnType()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h307 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, hasFloatingRepresentation)
H A DType.h2478 bool hasFloatingRepresentation() const;
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp4345 !E->isLValue() && ExprTy->hasFloatingRepresentation()) in ActOnParenExpr()
12719 if (LHSType->hasFloatingRepresentation() || in diagnoseTautologicalComparison()
12950 if (OtherTy->hasFloatingRepresentation()) { in checkArithmeticOrEnumeralThreeWayCompare()
13025 if (Type->hasFloatingRepresentation()) in checkArithmeticOrEnumeralCompare()
13662 if (LHSType->hasFloatingRepresentation()) { in CheckVectorCompareOperands()
13663 assert(RHS.get()->getType()->hasFloatingRepresentation()); in CheckVectorCompareOperands()
13696 if (LHSType->hasFloatingRepresentation()) { in CheckSizelessVectorCompareOperands()
13697 assert(RHS.get()->getType()->hasFloatingRepresentation()); in CheckSizelessVectorCompareOperands()
13847 vType->hasFloatingRepresentation()) in CheckVectorLogicalOperands()
13999 if (LHS.get()->getType()->hasFloatingRepresentation() || in CheckBitwiseOperands()
[all …]
H A DSemaDeclAttr.cpp4275 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr()
H A DSemaChecking.cpp9540 if (!ArgTy->hasFloatingRepresentation()) in SemaBuiltinArithmeticFence()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprAgg.cpp1014 if (ArgTy->hasFloatingRepresentation()) in EmitCompare()
H A DCGCall.cpp2269 if (!ParamType->hasFloatingRepresentation()) in canApplyNoFPClass()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp3984 (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() && \ in getScalableVectorType()
3986 (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() && \ in getScalableVectorType()
4003 (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() && \ in getScalableVectorType()
4005 (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() && \ in getScalableVectorType()
H A DType.cpp2195 bool Type::hasFloatingRepresentation() const { in hasFloatingRepresentation() function in Type