| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ConversionChecker.cpp | 141 const bool isFloat = DestType->isFloatingType(); in isLossOfPrecision() local 149 if (isFloat) { in isLossOfPrecision() 177 if (isFloat) { in isLossOfPrecision()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-stress/ |
| H A D | llvm-stress.cpp | 389 bool isFloat = Val0->getType()->getScalarType()->isFloatingPointTy(); in Act() local 391 unsigned R = getRandom() % (isFloat ? 7 : 13); in Act() 396 case 0:{Op = (isFloat?Instruction::FAdd : Instruction::Add); break; } in Act() 397 case 1:{Op = (isFloat?Instruction::FSub : Instruction::Sub); break; } in Act() 398 case 2:{Op = (isFloat?Instruction::FMul : Instruction::Mul); break; } in Act() 399 case 3:{Op = (isFloat?Instruction::FDiv : Instruction::SDiv); break; } in Act() 400 case 4:{Op = (isFloat?Instruction::FDiv : Instruction::UDiv); break; } in Act() 401 case 5:{Op = (isFloat?Instruction::FRem : Instruction::SRem); break; } in Act() 402 case 6:{Op = (isFloat?Instruction::FRem : Instruction::URem); break; } in Act()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 546 isFloat = false; in NumericLiteralParser() 611 if (isHalf || isFloat || isLong) break; // HH, FH, LH invalid. in NumericLiteralParser() 617 if (isHalf || isFloat || isLong || isFloat128) in NumericLiteralParser() 627 isFloat = true; in NumericLiteralParser() 632 if (isHalf || isFloat || isLong || isFloat128) in NumericLiteralParser() 645 if (isHalf || isFloat || isFloat128) break; // LH, LF, LQ invalid. in NumericLiteralParser() 719 isFloat = false; in NumericLiteralParser()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | APValue.h | 235 bool isFloat() const { return Kind == Float; } in isFloat() function 267 assert(isFloat() && "Invalid accessor"); in getFloat() 412 assert(isFloat() && "Invalid accessor"); in setFloat()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Edit/ |
| H A D | RewriteObjCFoundationAPI.cpp | 684 bool isFloat, bool isIntZero, in getLiteralInfo() argument 721 } else if (isFloat && Suff::has("f", text)) { in getLiteralInfo() 723 } else if (isFloat && Suff::has("F", text)) { in getLiteralInfo() 744 else if (!isFloat && !isIntZero && text.startswith("0")) in getLiteralInfo()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/ |
| H A D | LiteralSupport.h | 66 bool isFloat : 1; // 1.0f variable
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/ |
| H A D | Hexagon.td | 214 "isFloat"]; 223 "isFloat"];
|
| H A D | HexagonInstrInfo.h | 371 bool isFloat(const MachineInstr &MI) const;
|
| H A D | HexagonInstrFormats.td | 177 string isFloat = "false"; // Set to "true" for the floating-point load/store.
|
| H A D | HexagonNewValueJump.cpp | 146 if (QII->isFloat(*II)) in INITIALIZE_PASS_DEPENDENCY()
|
| H A D | HexagonInstrInfo.cpp | 2167 bool HexagonInstrInfo::isFloat(const MachineInstr &MI) const { in isFloat() function in HexagonInstrInfo
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCChecker.cpp | 275 (Type != HexagonII::TypeALU64 || HexagonMCInstrInfo::isFloat(MCII, ID)); in isNeitherAnorX() 484 if (Branch && HexagonMCInstrInfo::isFloat(MCII, *std::get<0>(Producer))) { in checkNewValues()
|
| H A D | HexagonMCInstrInfo.h | 237 bool isFloat(MCInstrInfo const &MCII, MCInst const &MCI);
|
| H A D | HexagonMCInstrInfo.cpp | 582 bool HexagonMCInstrInfo::isFloat(MCInstrInfo const &MCII, MCInst const &MCI) { in isFloat() function in HexagonMCInstrInfo
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | TargetLowering.h | 598 BooleanContent getBooleanContents(bool isVec, bool isFloat) const { in getBooleanContents() argument 601 return isFloat ? BooleanFloatContents : BooleanContents; in getBooleanContents()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 1920 else if (Elt.isFloat()) in tryEmitPrivate()
|
| H A D | CGDebugInfo.cpp | 1322 if (Value->isFloat()) in CreateRecordStaticField() 4262 else if (Init.isFloat()) in EmitGlobalVariable()
|
| H A D | CGBuiltin.cpp | 1484 if (Result.Val.isFloat()) in EmitBuiltinExpr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/utils/TableGen/ |
| H A D | NeonEmitter.cpp | 183 bool isFloat() const { return Float && ElementBitwidth == 32; } in isFloat() function in __anoneec6fbfe0111::Type
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 2155 if (SVal.isFloat()) { in EvalAndBitcastToAPInt() 2171 } else if (Elt.isFloat()) { in EvalAndBitcastToAPInt() 3456 } else if (RHS.isFloat()) { in found() 10962 if (!EvaluateAsRValue(ExprResult, Ctx) || !ExprResult.Val.isFloat() || in EvaluateAsFloat()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 382 assert(ConstantValue.isFloat()); in getNarrowingKind()
|
| H A D | SemaChecking.cpp | 9917 if (value.isFloat()) in IsSameFloatAfterCast()
|
| H A D | SemaExpr.cpp | 3437 } else if (Literal.isFloat) in ActOnNumericConstant()
|