Lines Matching refs:fcNegInf
4626 return exactClass(Src, fcNegSubnormal | fcNegNormal | fcNegInf);
4628 return exactClass(Src, fcNegSubnormal | fcNegNormal | fcNegInf | fcNan);
4653 // fcmp oeq x, -inf -> is_fpclass x, fcNegInf
4658 // fcmp une x, -inf -> is_fpclass x, ~fcNegInf
4661 Mask = fcNegInf;
4667 Mask |= fcNegInf;
4674 // fcmp one x, -inf -> is_fpclass x, fcNegInf
4675 // fcmp one fabs(x), -inf -> is_fpclass x, ~fcNegInf & ~fcNan
4676 // fcmp one x, +inf -> is_fpclass x, ~fcNegInf & ~fcNan
4681 // fcmp ueq x, -inf -> is_fpclass x, fcNegInf|fcNan
4684 Mask = ~fcNegInf & ~fcNan;
4690 Mask &= ~fcNegInf;
4708 // fcmp olt x, +inf -> fcFinite|fcNegInf
4709 // fcmp uge x, +inf -> ~(fcFinite|fcNegInf)
4712 Mask |= fcNegInf;
4732 Mask |= fcNegInf;
4742 Mask = IsFabs ? ~fcNan : ~(fcNegInf | fcNan);
4753 Mask = IsFabs ? fcNone : fcNegInf;
4822 FPClassTest ClassesLE = fcNegInf | fcNegNormal;
4894 // fcmp olt x, smallest_normal -> fcNegInf|fcNegNormal|fcSubnormal|fcZero
4900 Mask |= fcNegNormal | fcNegInf;
4912 Mask |= fcNegInf | fcNegNormal;
5299 Known.knownNot(fcNegInf | fcNegSubnormal | fcNegNormal);
5502 Known.knownNot(fcNegInf);
5549 if ((InterestedClasses & fcNegInf) != fcNone)
5566 Known.knownNot(fcNegInf);
5646 Known.knownNot(fcNegInf);
6045 if (KnownSrc.isKnownNever(fcNegInf))
6046 Known.knownNot(fcNegInf);