| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | GenericFloatingPointPredicateUtils.h | 168 return ExactClass(fcNegSubnormal | fcNegNormal | fcNegInf); in fcmpImpliesClass() 170 return ExactClass(fcNegSubnormal | fcNegNormal | fcNegInf | fcNan); in fcmpImpliesClass() 201 Mask = fcNegInf; in fcmpImpliesClass() 207 Mask |= fcNegInf; in fcmpImpliesClass() 224 Mask = ~fcNegInf & ~fcNan; in fcmpImpliesClass() 230 Mask &= ~fcNegInf; in fcmpImpliesClass() 252 Mask |= fcNegInf; in fcmpImpliesClass() 272 Mask |= fcNegInf; in fcmpImpliesClass() 282 Mask = IsFabs ? ~fcNan : ~(fcNegInf | fcNan); in fcmpImpliesClass() 293 Mask = IsFabs ? fcNone : fcNegInf; in fcmpImpliesClass() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | FloatingPointMode.cpp | 16 if (Mask & fcNegInf) in fneg() 31 NewMask |= fcNegInf; in fneg() 73 {fcNegInf, "ninf"}, in operator <<()
|
| H A D | APFloat.cpp | 5496 return isNegative() ? fcNegInf : fcPosInf; in classify()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | KnownFPClass.h | 57 bool isKnownNeverNegInfinity() const { return isKnownNever(fcNegInf); } in isKnownNeverNegInfinity() 91 fcNegSubnormal | fcNegNormal | fcNegInf; 146 if (KnownFPClasses & fcNegInf) in fabs()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | FloatingPointMode.h | 245 fcNegInf = 0x0004, enumerator 255 fcInf = fcPosInf | fcNegInf, 263 fcNegative = fcNegFinite | fcNegInf,
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | CodeGenCommonISel.cpp | 187 case fcNegInf: in invertFPClassTestIfSimpler() 206 case fcNegInf | fcNan: in invertFPClassTestIfSimpler()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | GISelValueTracking.cpp | 948 Known.knownNot(fcNegInf | fcNegSubnormal | fcNegNormal); in computeKnownFPClass() 1208 if ((InterestedClasses & fcNegInf) != fcNone) in computeKnownFPClass() 1228 Known.knownNot(fcNegInf); in computeKnownFPClass()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCalls.cpp | 934 case fcNegSubnormal | fcNegNormal | fcNegInf: in fpclassTestIsFCmp0() 942 case fcNegNormal | fcNegInf: in fpclassTestIsFCmp0() 1006 if ((OrderedMask == fcPosInf || OrderedMask == fcNegInf) && in foldIntrinsicIsFPClass() 1013 ConstantFP::getInfinity(Src0->getType(), OrderedMask == fcNegInf); in foldIntrinsicIsFPClass() 1021 if ((OrderedInvertedMask == fcPosInf || OrderedInvertedMask == fcNegInf) && in foldIntrinsicIsFPClass() 1028 OrderedInvertedMask == fcNegInf); in foldIntrinsicIsFPClass()
|
| H A D | InstCombineSimplifyDemanded.cpp | 1961 case fcNegInf: in getFPClassConstant()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ValueTracking.cpp | 4931 Known.knownNot(fcNegInf | fcNegSubnormal | fcNegNormal); in computeKnownFPClass() 5148 Known.knownNot(fcNegInf); in computeKnownFPClass() 5195 if ((InterestedClasses & fcNegInf) != fcNone) in computeKnownFPClass() 5220 Known.knownNot(fcNegInf); in computeKnownFPClass() 5302 Known.knownNot(fcNegInf); in computeKnownFPClass() 5723 if (KnownSrc.isKnownNever(fcNegInf)) in computeKnownFPClass() 5724 Known.knownNot(fcNegInf); in computeKnownFPClass()
|
| H A D | ConstantFolding.cpp | 3188 ((Mask & fcNegInf) && Op1V.isNegInfinity()) || in ConstantFoldIntrinsicCall2()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | Mips32r6InstrInfo.td | 1164 if (Check & fcNegInf)
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
| H A D | LoongArchInstrInfo.td | 189 if (Check & fcNegInf)
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | TargetLowering.cpp | 5431 FPClassTest Flag = CFP->isNegative() ? (IsFabs ? fcNone : fcNegInf) in SimplifySetCC() 8966 if ((OrderedFPTestMask == fcPosInf || OrderedFPTestMask == fcNegInf) && in expandIS_FPCLASS() 8976 APFloat::getInf(Semantics, OrderedFPTestMask == fcNegInf), DL, in expandIS_FPCLASS()
|
| /freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 2609 return fcNegInf; in keywordToFPClassTest()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 6966 if (Check & fcNegInf) in lowerIS_FPCLASS()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.cpp | 11803 if (Mask & fcNegInf) in getDataClassTest()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.cpp | 6694 if (Check & fcNegInf) in LowerIS_FPCLASS()
|