/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64LowerHomogeneousPrologEpilog.cpp | 209 bool IsFloat = AArch64::FPR64RegClass.contains(Reg1); in emitStore() local 210 assert(!(IsFloat ^ AArch64::FPR64RegClass.contains(Reg2))); in emitStore() 213 if (IsFloat) in emitStore() 218 if (IsFloat) in emitStore() 250 bool IsFloat = AArch64::FPR64RegClass.contains(Reg1); in emitLoad() local 251 assert(!(IsFloat ^ AArch64::FPR64RegClass.contains(Reg2))); in emitLoad() 254 if (IsFloat) in emitLoad() 259 if (IsFloat) in emitLoad()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
H A D | LoongArch.cpp | 107 bool IsFloat = Ty->isRealFloatingType(); in detectFARsEligibleStructHelper() local 109 if (IsInt || IsFloat) { in detectFARsEligibleStructHelper() 116 if (IsFloat && (Size > FRLen || Size < 32)) in detectFARsEligibleStructHelper()
|
H A D | RISCV.cpp | 114 bool IsFloat = Ty->isRealFloatingType(); in detectFPCCEligibleStructHelper() local 116 if (IsInt || IsFloat) { in detectFPCCEligibleStructHelper() 122 if (IsFloat && Size > FLen) in detectFPCCEligibleStructHelper()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVPreLegalizer.cpp | 319 bool IsFloat = SpvType->getOpcode() == SPIRV::OpTypeFloat; in createNewIdReg() local 324 IsFloat |= IsVectorFloat; in createNewIdReg() 325 auto GetIdOp = IsFloat ? SPIRV::GET_fID : SPIRV::GET_ID; in createNewIdReg() 326 auto DstClass = IsFloat ? &SPIRV::fIDRegClass : &SPIRV::IDRegClass; in createNewIdReg() 352 if (IsFloat) { in createNewIdReg()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | riscv_vector.td | 23 class IsFloat<string type> { 44 if !not(IsFloat<type>.val) then { 91 if !not(IsFloat<type>.val) then { 106 if !not(IsFloat<type>.val) then { 124 if !not(IsFloat<type>.val) then { 136 if !not(IsFloat<type>.val) then { 170 if !not(IsFloat<type>.val) then { 199 if !not(IsFloat<type>.val) then { 231 if !not(IsFloat<type>.val) then { 243 if !not(IsFloat<type>.val) then { [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsFastISel.cpp | 703 bool IsFloat = Left->getType()->isFloatTy(); in emitCmp() local 705 if (!IsFloat && !IsDouble) in emitCmp() 710 Opc = IsFloat ? Mips::C_EQ_S : Mips::C_EQ_D32; in emitCmp() 714 Opc = IsFloat ? Mips::C_EQ_S : Mips::C_EQ_D32; in emitCmp() 718 Opc = IsFloat ? Mips::C_OLT_S : Mips::C_OLT_D32; in emitCmp() 722 Opc = IsFloat ? Mips::C_OLE_S : Mips::C_OLE_D32; in emitCmp() 726 Opc = IsFloat ? Mips::C_ULE_S : Mips::C_ULE_D32; in emitCmp() 730 Opc = IsFloat ? Mips::C_ULT_S : Mips::C_ULT_D32; in emitCmp()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | AutoUpgrade.cpp | 1658 bool IsFloat = Ty->isFPOrFPVectorTy(); in upgradeX86VPERMT2Intrinsics() local 1660 if (VecWidth == 128 && EltWidth == 32 && IsFloat) in upgradeX86VPERMT2Intrinsics() 1662 else if (VecWidth == 128 && EltWidth == 32 && !IsFloat) in upgradeX86VPERMT2Intrinsics() 1664 else if (VecWidth == 128 && EltWidth == 64 && IsFloat) in upgradeX86VPERMT2Intrinsics() 1666 else if (VecWidth == 128 && EltWidth == 64 && !IsFloat) in upgradeX86VPERMT2Intrinsics() 1668 else if (VecWidth == 256 && EltWidth == 32 && IsFloat) in upgradeX86VPERMT2Intrinsics() 1670 else if (VecWidth == 256 && EltWidth == 32 && !IsFloat) in upgradeX86VPERMT2Intrinsics() 1672 else if (VecWidth == 256 && EltWidth == 64 && IsFloat) in upgradeX86VPERMT2Intrinsics() 1674 else if (VecWidth == 256 && EltWidth == 64 && !IsFloat) in upgradeX86VPERMT2Intrinsics() 1676 else if (VecWidth == 512 && EltWidth == 32 && IsFloat) in upgradeX86VPERMT2Intrinsics() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ValueObject.cpp | 1147 if (!GetCompilerType().IsFloat()) in GetValueAsAPFloat() 1170 if (val_type.IsFloat()) { in GetValueAsBool() 1186 !val_type.IsFloat() && !val_type.IsPointerType() && in SetValueFromInteger() 1223 !val_type.IsFloat() && !val_type.IsPointerType() && in SetValueFromInteger() 1238 if (!new_val_type.IsInteger() && !new_val_type.IsFloat() && in SetValueFromInteger() 1251 } else if (new_val_type.IsFloat()) { in SetValueFromInteger() 3170 bool is_float = GetCompilerType().IsFloat(); in CastToBasicType() 3261 if (type.IsFloat()) { in CastToBasicType() 3319 bool is_float = GetCompilerType().IsFloat(); in CastToEnumType()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86FixupVectorConstants.cpp | 120 bool IsFloat = CDS->getElementType()->isHalfTy() || in extractConstantBits() local 124 if (IsInteger || IsFloat) { in extractConstantBits()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | CompilerType.h | 201 bool IsFloat() const;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | SimplifyLibCalls.h | 238 void classifyArgUse(Value *Val, Function *F, bool IsFloat,
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | time_utils.h | 122 template <class FileTimeT, class TimeT, bool IsFloat = is_floating_point<typename FileTimeT::rep>::value>
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUInstCombineIntrinsic.cpp | 66 static bool canSafelyConvertTo16Bit(Value &V, bool IsFloat) { in canSafelyConvertTo16Bit() argument 72 if (IsFloat) { in canSafelyConvertTo16Bit() 92 bool IsExt = IsFloat ? match(&V, m_FPExt(PatternMatch::m_Value(CastSrc))) in canSafelyConvertTo16Bit()
|
H A D | SIISelLowering.cpp | 6175 bool IsFloat = VT.isFloatingPoint(); in lowerLaneOp() local 6176 Src0 = DAG.getAnyExtOrTrunc(IsFloat ? DAG.getBitcast(IntVT, Src0) : Src0, in lowerLaneOp() 6180 Src1 = DAG.getAnyExtOrTrunc(IsFloat ? DAG.getBitcast(IntVT, Src1) : Src1, in lowerLaneOp() 6185 Src2 = DAG.getAnyExtOrTrunc(IsFloat ? DAG.getBitcast(IntVT, Src2) : Src2, in lowerLaneOp() 6191 return IsFloat ? DAG.getBitcast(VT, Trunc) : Trunc; in lowerLaneOp()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVInstrInfoVPseudos.td | 5749 multiclass VPatReductionV_VS<string intrinsic, string instruction, bit IsFloat = 0> { 5750 foreach vti = !if(IsFloat, NoGroupFloatVectors, NoGroupIntegerVectors) in { 5751 defvar vectorM1 = !cast<VTypeInfo>(!if(IsFloat, "VF", "VI") # vti.SEW # "M1"); 5759 foreach gvti = !if(IsFloat, GroupFloatVectors, GroupIntegerVectors) in { 5769 multiclass VPatReductionV_VS_RM<string intrinsic, string instruction, bit IsFloat = 0> { 5770 foreach vti = !if(IsFloat, NoGroupFloatVectors, NoGroupIntegerVectors) in { 5771 defvar vectorM1 = !cast<VTypeInfo>(!if(IsFloat, "VF", "VI") # vti.SEW # "M1"); 5779 foreach gvti = !if(IsFloat, GroupFloatVectors, GroupIntegerVectors) in { 5789 multiclass VPatReductionW_VS<string intrinsic, string instruction, bit IsFloat = 0> { 5790 foreach vti = !if(IsFloat, AllFloatVector [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SimplifyLibCalls.cpp | 2952 bool IsFloat = Arg->getType()->isFloatTy(); in optimizeSinCosPi() local 2959 classifyArgUse(U, F, IsFloat, SinCalls, CosCalls, SinCosCalls); in optimizeSinCosPi() 2966 if (!insertSinCosCall(B, CI->getCalledFunction(), Arg, IsFloat, Sin, Cos, in optimizeSinCosPi() 2984 Value *Val, Function *F, bool IsFloat, in classifyArgUse() argument 3004 if (IsFloat) { in classifyArgUse()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | CompilerType.cpp | 331 bool CompilerType::IsFloat() const { in IsFloat() function in CompilerType
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | Sema.cpp | 2079 bool IsFloat = UnqualTy == Context.FloatTy; in checkTypeSupport() local 2080 if (IsRetTy && !TI.hasFPReturn() && (IsDouble || IsFloat)) { in checkTypeSupport()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDGPUBaseInfo.cpp | 2632 std::optional<unsigned> getInlineEncodingV216(bool IsFloat, uint32_t Literal) { in getInlineEncodingV216() argument 2650 if (IsFloat) { in getInlineEncodingV216()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | BasicTTIImpl.h | 916 bool IsFloat = Ty->isFPOrFPVectorTy(); variable 919 InstructionCost OpCost = (IsFloat ? 2 : 1);
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
H A D | MIParser.cpp | 2677 bool IsFloat = Token.is(MIToken::kw_floatpred); in parsePredicateOperand() local 2687 if (IsFloat) { in parsePredicateOperand()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeVectorTypes.cpp | 4022 bool IsFloat = OutVT.isFloatingPoint(); in SplitVecOp_TruncateHelper() 4056 EVT HalfElementVT = IsFloat ? in SplitVecOp_TruncateHelper() 4098 return IsFloat in SplitVecOp_TruncateHelper() 4018 bool IsFloat = OutVT.isFloatingPoint(); SplitVecOp_TruncateHelper() local
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMISelLowering.cpp | 14648 static bool isValidMVECond(unsigned CC, bool IsFloat) { in isValidMVECond() argument 14659 return !IsFloat; in isValidMVECond()
|