Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:CI2

1899 ///   I = icmp ugt (add (add A, B), CI2), CI1
1906 ConstantInt *CI2, ConstantInt *CI1,
1918 // If CI2 is 2^7, 2^15, 2^31, then it might be an sadd.with.overflow.
1919 if (!CI2->getValue().isPowerOf2()) return nullptr;
1920 unsigned NewWidth = CI2->getValue().countTrailingZeros();
1932 // sign-extended; check for that condition. For example, if CI2 is 2^31 and
2434 ConstantInt *CI2; // I = icmp ugt (add (add A, B), CI2), CI
2436 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2))))
2437 if (Instruction *Res = ProcessUGT_ADDCST_ADD(I, A, B, CI2, CI, *this))
2830 if (BitCastInst *CI2 = dyn_cast<BitCastInst>(Op1))
2831 Op1 = CI2->getOperand(0);