| /src/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()
|
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ConversionChecker.cpp | 147 const bool isFloat = DestType->isFloatingType(); in isLossOfPrecision() local 155 if (isFloat) { in isLossOfPrecision() 183 if (isFloat) { in isLossOfPrecision()
|
| /src/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()
|
| /src/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()
|
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | APValue.h | 402 bool isFloat() const { return Kind == Float; } 438 assert(isFloat() && "Invalid accessor"); 593 assert(isFloat() && "Invalid accessor");
|
| /src/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()
|
| /src/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | LiteralSupport.h | 77 bool isFloat : 1; // 1.0f variable
|
| /src/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | SveEmitter.cpp | 104 bool isFloat() const { return Float && !BFloat; } in isFloat() function in __anondae860620111::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 __anonaa5899840111::Type
|
| /src/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
|
| /src/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
|
| /src/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()
|
| /src/contrib/llvm-project/clang/lib/Support/ |
| H A D | RISCVVIntrinsicUtils.cpp | 114 if (isFloat() && ElementBitwidth == 8) in verifyType()
|
| /src/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*/>;
|
| /src/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()
|
| /src/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);
|
| /src/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()
|
| /src/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()
|