Home
last modified time | relevance | path

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

/freebsd/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/contrib/llvm-project/clang/lib/Sema/
H A DSemaHLSL.cpp968 return !PassedType->hasFloatingRepresentation(); in CheckAllArgsHaveFloatRepresentation()
1030 TheCall->getArg(0)->getType()->hasFloatingRepresentation())) in CheckBuiltinFunctionCall()
1086 TheCall->getArg(0)->getType()->hasFloatingRepresentation())) in CheckBuiltinFunctionCall()
H A DSemaExpr.cpp4085 !E->isLValue() && ExprTy->hasFloatingRepresentation()) in ActOnParenExpr()
11697 if (LHSType->hasFloatingRepresentation() || in diagnoseTautologicalComparison()
11930 if (OtherTy->hasFloatingRepresentation()) { in checkArithmeticOrEnumeralThreeWayCompare()
12005 if (Type->hasFloatingRepresentation()) in checkArithmeticOrEnumeralCompare()
12634 if (LHSType->hasFloatingRepresentation()) { in CheckVectorCompareOperands()
12635 assert(RHS.get()->getType()->hasFloatingRepresentation()); in CheckVectorCompareOperands()
12668 if (LHSType->hasFloatingRepresentation()) { in CheckSizelessVectorCompareOperands()
12669 assert(RHS.get()->getType()->hasFloatingRepresentation()); in CheckSizelessVectorCompareOperands()
12819 vType->hasFloatingRepresentation()) in CheckVectorLogicalOperands()
12971 if (LHS.get()->getType()->hasFloatingRepresentation() || in CheckBitwiseOperands()
[all …]
H A DSemaDeclAttr.cpp3798 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr()
H A DSemaChecking.cpp5126 if (!ArgTy->hasFloatingRepresentation()) in BuiltinArithmeticFence()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DMips.cpp305 (RetTy->isVectorType() && !RetTy->hasFloatingRepresentation())) { in classifyReturnType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h307 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, hasFloatingRepresentation)
H A DType.h2731 bool hasFloatingRepresentation() const;
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprAgg.cpp1028 if (ArgTy->hasFloatingRepresentation()) in EmitCompare()
H A DCGBuiltin.cpp18318 if (QT->hasFloatingRepresentation()) { in getDotProductIntrinsic()
18411 if (!E->getArg(0)->getType()->hasFloatingRepresentation()) in EmitHLSLBuiltinExpr()
18419 if (!E->getArg(0)->getType()->hasFloatingRepresentation()) in EmitHLSLBuiltinExpr()
18434 if (!E->getArg(0)->getType()->hasFloatingRepresentation()) in EmitHLSLBuiltinExpr()
18443 if (E->getArg(0)->getType()->hasFloatingRepresentation()) in EmitHLSLBuiltinExpr()
18468 if (!E->getArg(0)->getType()->hasFloatingRepresentation()) in EmitHLSLBuiltinExpr()
18482 if (!E->getArg(0)->getType()->hasFloatingRepresentation()) in EmitHLSLBuiltinExpr()
H A DCGCall.cpp2251 if (!ParamType->hasFloatingRepresentation()) in canApplyNoFPClass()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4395 (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() && \ in getScalableVectorType()
4397 (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() && \ in getScalableVectorType()
4414 (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() && \ in getScalableVectorType()
4416 (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() && \ in getScalableVectorType()
H A DType.cpp2258 bool Type::hasFloatingRepresentation() const { in hasFloatingRepresentation() function in Type