Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:CI2

1685 ///   I = icmp ugt (add (add A, B), CI2), CI1
1692 ConstantInt *CI2, ConstantInt *CI1,
1704 // If CI2 is 2^7, 2^15, 2^31, then it might be an sadd.with.overflow.
1705 if (!CI2->getValue().isPowerOf2()) return 0;
1706 unsigned NewWidth = CI2->getValue().countTrailingZeros();
1718 // sign-extended; check for that condition. For example, if CI2 is 2^31 and
1942 ConstantInt *CI2; // I = icmp ugt (add (add A, B), CI2), CI
1944 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2))))
1945 if (Instruction *Res = ProcessUGT_ADDCST_ADD(I, A, B, CI2, CI, *this))
2322 if (BitCastInst *CI2 = dyn_cast<BitCastInst>(Op1))
2323 Op1 = CI2->getOperand(0);