Home
last modified time | relevance | path

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

/freebsd-13.1/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-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h307 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, hasFloatingRepresentation)
H A DType.h2227 bool hasFloatingRepresentation() const;
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp4058 !E->isLValue() && ExprTy->hasFloatingRepresentation()) in ActOnParenExpr()
11426 if (LHSType->hasFloatingRepresentation() || in diagnoseTautologicalComparison()
11652 if (OtherTy->hasFloatingRepresentation()) { in checkArithmeticOrEnumeralThreeWayCompare()
11727 if (Type->hasFloatingRepresentation() && BinaryOperator::isEqualityOp(Opc)) in checkArithmeticOrEnumeralCompare()
12312 LHSType->hasFloatingRepresentation()) { in CheckVectorCompareOperands()
12313 assert(RHS.get()->getType()->hasFloatingRepresentation()); in CheckVectorCompareOperands()
12454 !getLangOpts().OpenCLCPlusPlus && vType->hasFloatingRepresentation()) in CheckVectorLogicalOperands()
12564 if (LHS.get()->getType()->hasFloatingRepresentation() || in CheckBitwiseOperands()
12565 RHS.get()->getType()->hasFloatingRepresentation()) in CheckBitwiseOperands()
H A DSemaDeclAttr.cpp3792 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr()
H A DSemaChecking.cpp6673 if (!ArgTy->hasFloatingRepresentation()) in SemaBuiltinArithmeticFence()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprAgg.cpp990 if (ArgTy->hasFloatingRepresentation()) in EmitCompare()
H A DTargetInfo.cpp8005 (RetTy->isVectorType() && !RetTy->hasFloatingRepresentation())) { in classifyReturnType()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp3893 (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() && \ in getScalableVectorType()
3895 (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() && \ in getScalableVectorType()
3911 (EltTy->hasFloatingRepresentation() && IsFP)) && \ in getScalableVectorType()
H A DType.cpp2106 bool Type::hasFloatingRepresentation() const { in hasFloatingRepresentation() function in Type