| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | FloatingPointMode.cpp | 17 NewMask |= fcPosInf; in fneg() 30 if (Mask & fcPosInf) in fneg() 43 if (Mask & fcPosInf) in fabs() 74 {fcPosInf, "pinf"}, in operator <<()
|
| H A D | APFloat.cpp | 5496 return isNegative() ? fcNegInf : fcPosInf; in classify()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | GenericFloatingPointPredicateUtils.h | 160 return ExactClass(fcPosSubnormal | fcPosNormal | fcPosInf); in fcmpImpliesClass() 162 return ExactClass(fcPosSubnormal | fcPosNormal | fcPosInf | fcNan); in fcmpImpliesClass() 205 Mask = fcPosInf; in fcmpImpliesClass() 228 Mask = ~fcPosInf & ~fcNan; in fcmpImpliesClass() 270 Mask = fcPosInf; in fcmpImpliesClass() 387 FPClassTest ClassesGE = fcPosNormal | fcPosInf; in fcmpImpliesClass() 451 Mask = fcPosInf | fcPosNormal; in fcmpImpliesClass()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | FloatingPointMode.h | 252 fcPosInf = 0x0200, enumerator 255 fcInf = fcPosInf | fcNegInf, 262 fcPositive = fcPosFinite | fcPosInf, 268 LLVM_DECLARE_ENUM_AS_BITMASK(FPClassTest, /* LargestValue */ fcPosInf);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | KnownFPClass.h | 54 bool isKnownNeverPosInfinity() const { return isKnownNever(fcPosInf); } in isKnownNeverPosInfinity() 93 fcPosSubnormal | fcPosNormal | fcPosInf; 147 KnownFPClasses |= fcPosInf; in fabs()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | CodeGenCommonISel.cpp | 186 case fcPosInf: in invertFPClassTestIfSimpler() 205 case fcPosInf | fcNan: in invertFPClassTestIfSimpler()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | GISelValueTracking.cpp | 939 Known.knownNot(fcPosInf); in computeKnownFPClass() 1218 Known.knownNot(fcPosInf); in computeKnownFPClass()
|
| H A D | LegalizerHelper.cpp | 9354 if (PartialCheck == fcPosInf) in lowerISFPCLASS()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCalls.cpp | 922 case fcPosSubnormal | fcPosNormal | fcPosInf: in fpclassTestIsFCmp0() 938 case fcPosNormal | fcPosInf: in fpclassTestIsFCmp0() 1006 if ((OrderedMask == fcPosInf || OrderedMask == fcNegInf) && in foldIntrinsicIsFPClass() 1021 if ((OrderedInvertedMask == fcPosInf || OrderedInvertedMask == fcNegInf) && in foldIntrinsicIsFPClass()
|
| H A D | InstCombineSimplifyDemanded.cpp | 1959 case fcPosInf: in getFPClassConstant()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ValueTracking.cpp | 4922 Known.knownNot(fcPosInf); in computeKnownFPClass() 5146 Known.knownNot(fcPosInf); in computeKnownFPClass() 5205 Known.knownNot(fcPosInf); in computeKnownFPClass() 5300 Known.knownNot(fcPosInf); in computeKnownFPClass() 5733 if (KnownSrc.isKnownNever(fcPosInf)) in computeKnownFPClass() 5734 Known.knownNot(fcPosInf); in computeKnownFPClass()
|
| H A D | ConstantFolding.cpp | 3195 ((Mask & fcPosInf) && Op1V.isPosInfinity()); in ConstantFoldIntrinsicCall2()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | Mips32r6InstrInfo.td | 1162 if (Check & fcPosInf)
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULegalizerInfo.cpp | 5348 auto IsZeroOrInf = B.buildIsFPClass(LLT::scalar(1), SqrtX, fcZero | fcPosInf); in legalizeFSQRTF32() 5430 auto IsZeroOrInf = B.buildIsFPClass(LLT::scalar(1), SqrtX, fcZero | fcPosInf); in legalizeFSQRTF64()
|
| H A D | SIISelLowering.cpp | 11753 DAG.getTargetConstant(fcZero | fcPosInf, DL, MVT::i32)); in lowerFSQRTF32() 11833 DAG.getTargetConstant(fcZero | fcPosInf, DL, MVT::i32)); in lowerFSQRTF64()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
| H A D | LoongArchInstrInfo.td | 187 if (Check & fcPosInf)
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | TargetLowering.cpp | 5432 : (IsFabs ? fcInf : fcPosInf); in SimplifySetCC() 8966 if ((OrderedFPTestMask == fcPosInf || OrderedFPTestMask == fcNegInf) && in expandIS_FPCLASS() 9153 if (PartialCheck == fcPosInf) in expandIS_FPCLASS()
|
| /freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 2611 return fcPosInf; in keywordToFPClassTest()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 6964 if (Check & fcPosInf) in lowerIS_FPCLASS()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.cpp | 11805 if (Mask & fcPosInf) in getDataClassTest()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.cpp | 6692 if (Check & fcPosInf) in LowerIS_FPCLASS()
|