/freebsd/contrib/llvm-project/llvm/tools/llvm-stress/ |
H A D | llvm-stress.cpp | 386 bool isFloat = Val0->getType()->getScalarType()->isFloatingPointTy(); in Act() local 388 unsigned R = getRandom() % (isFloat ? 7 : 13); in Act() 393 case 0:{Op = (isFloat?Instruction::FAdd : Instruction::Add); break; } in Act() 394 case 1:{Op = (isFloat?Instruction::FSub : Instruction::Sub); break; } in Act() 395 case 2:{Op = (isFloat?Instruction::FMul : Instruction::Mul); break; } in Act() 396 case 3:{Op = (isFloat?Instruction::FDiv : Instruction::SDiv); break; } in Act() 397 case 4:{Op = (isFloat?Instruction::FDiv : Instruction::UDiv); break; } in Act() 398 case 5:{Op = (isFloat?Instruction::FRem : Instruction::SRem); break; } in Act() 399 case 6:{Op = (isFloat?Instruction::FRem : Instruction::URem); break; } in Act()
|
/freebsd/contrib/llvm-project/lld/MachO/Arch/ |
H A D | ARM64.cpp | 225 bool isFloat; member 260 ldr.isFloat = false; in parseLdr() 265 ldr.isFloat = false; in parseLdr() 269 ldr.isFloat = true; in parseLdr() 305 if (ldr.isFloat) in writeLiteralLdr() 311 opcode = ldr.isFloat ? 0x5c000000 : 0x58000000; in writeLiteralLdr() 336 if (ldr.isFloat) { in writeImmediateLdr() 558 if (ldr2.p2Size != 3 || ldr2.isFloat) in applyAdrpLdrGotLdr()
|
/freebsd/contrib/llvm-project/clang/include/clang/Support/ |
H A D | RISCVVIntrinsicUtils.h | 305 bool isFloat() const { return ScalarType == ScalarTypeKind::Float; } in isFloat() function 311 return isVector() && isFloat() && ElementBitwidth == Width; in isFloatVector() 313 bool isFloat(unsigned Width) const { in isFloat() function 314 return isFloat() && ElementBitwidth == Width; in isFloat()
|
/freebsd/contrib/llvm-project/clang/lib/Edit/ |
H A D | RewriteObjCFoundationAPI.cpp | 684 bool isFloat, bool isIntZero, in getLiteralInfo() argument 717 } else if (isFloat && Suff::has("f", text)) { in getLiteralInfo() 719 } else if (isFloat && Suff::has("F", text)) { in getLiteralInfo() 740 else if (!isFloat && !isIntZero && text.starts_with("0")) in getLiteralInfo()
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | LiteralSupport.h | 77 bool isFloat : 1; // 1.0f variable
|
/freebsd/contrib/llvm-project/clang/utils/TableGen/ |
H A D | SveEmitter.cpp | 104 bool isFloat() const { return Float && !BFloat; } in isFloat() function in __anone51b860d0111::SVEType 461 else if (isFloat()) in builtin_str() 487 assert(!isFloat() && "fp immediates are not supported"); in builtin_str() 1118 if (T.isFloat()) { in encodeTypeFlags()
|
H A D | NeonEmitter.cpp | 195 bool isFloat() const { return isFloating() && ElementBitwidth == 32; } in isFloat() function in __anonfaf0748f0111::Type
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonMCChecker.cpp | 273 if (HexagonMCInstrInfo::isFloat(MCII, ID)) in isNeitherAnorX() 516 if (Branch && HexagonMCInstrInfo::isFloat(MCII, *ProducerInst)) { in checkNewValues()
|
H A D | HexagonMCInstrInfo.h | 252 bool isFloat(MCInstrInfo const &MCII, MCInst const &MCI);
|
H A D | HexagonMCInstrInfo.cpp | 640 bool HexagonMCInstrInfo::isFloat(MCInstrInfo const &MCII, MCInst const &MCI) { in isFloat() function in HexagonMCInstrInfo
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | Hexagon.td | 279 "isFloat"]; 288 "isFloat"];
|
H A D | HexagonInstrInfo.h | 372 bool isFloat(const MachineInstr &MI) const;
|
H A D | HexagonNewValueJump.cpp | 145 if (QII->isFloat(*II)) in INITIALIZE_PASS_DEPENDENCY()
|
H A D | HexagonInstrFormats.td | 187 string isFloat = "false"; // Set to "true" for the floating-point load/store.
|
H A D | HexagonInstrInfo.cpp | 190 if (isFloat(MI) && MI.hasRegisterImplicitUseOperand(Hexagon::USR)) in shouldSink() 2321 bool HexagonInstrInfo::isFloat(const MachineInstr &MI) const { in isFloat() function in HexagonInstrInfo
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | LiteralSupport.cpp | 919 isFloat = false; in NumericLiteralParser() 1031 isFloat = true; in NumericLiteralParser() 1182 isFloat = false; in NumericLiteralParser()
|
/freebsd/contrib/llvm-project/clang/lib/Support/ |
H A D | RISCVVIntrinsicUtils.cpp | 114 if (isFloat() && ElementBitwidth == 8) in verifyType()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | IntrinsicsAMDGPU.td | 1026 int isFloat = 0> { 1029 !if (isFloat, AMDGPUDimAtomicFloatProfile<opmod, dim, dataargs>, 1035 multiclass AMDGPUImageDimAtomic<string opmod, int isFloat = 0> { 1038 isFloat>; 1042 defm "" : AMDGPUImageDimAtomic<opmod, 1 /*isFloat*/>;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | TargetLowering.h | 988 BooleanContent getBooleanContents(bool isVec, bool isFloat) const { in getBooleanContents() argument 991 return isFloat ? BooleanFloatContents : BooleanContents; in getBooleanContents()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyInstrSIMD.td | 513 defvar isFloat = !or(!eq(vec.lane_vt, f32), !eq(vec.lane_vt, f64)); 514 defvar immKind = !if(isFloat, fpimm, imm);
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Compiler.cpp | 3788 else if (Val.isFloat()) in visitAPValue() 3820 if (F.isInt() || F.isFloat() || F.isLValue() || F.isMemberPointer()) { in visitAPValueInitializer()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGExprConstant.cpp | 2385 else if (Elt.isFloat()) in tryEmitPrivate()
|
H A D | CGDebugInfo.cpp | 1820 if (Value->isFloat()) in CreateRecordStaticField() 6133 if (Val.isFloat()) in createConstantValueExpression()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 4508 } else if (RHS.isFloat()) { in found() 10788 if (!SVal.isInt() && !SVal.isFloat() && !SVal.isVector()) { in VisitCastExpr() 16030 !ExprResult.Val.isFloat() || in EvaluateAsFloat()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOverload.cpp | 453 assert(ConstantValue.isFloat()); in getNarrowingKind() 559 assert(ConstantValue.isFloat()); in getNarrowingKind()
|