Lines Matching defs:Inf
5258 // setueq/setoeq X, (fabs Inf) -> is_fpclass X, fcInf
8808 SDValue Inf =
8810 return DAG.getSetCC(DL, ResultVT, Abs, Inf,
8823 SDValue Inf = DAG.getConstantFP(
8826 return DAG.getSetCC(DL, ResultVT, Op, Inf,
8862 SDValue Inf =
8868 SDValue IsFinite = DAG.getSetCC(DL, ResultVT, Abs, Inf, IsFiniteOp);
8897 APInt Inf = APFloat::getInf(Semantics).bitcastToAPInt(); // Exp and int bit.
8899 APInt ExpMask = Inf;
8902 APInt AllOneMantissa = APFloat::getLargest(Semantics).bitcastToAPInt() & ~Inf;
8911 SDValue InfV = DAG.getConstant(Inf, DL, IntVT);
9014 APInt InfWithQnanBit = Inf | QNaNBitMask;
9030 // isquiet(V) ==> abs(V) >= (unsigned(Inf) | quiet_bit)
9034 // issignaling(V) ==> abs(V) > unsigned(Inf) &&
9035 // abs(V) < (unsigned(Inf) | quiet_bit)