Lines Matching defs:CI2
1081 /// I = icmp ugt (add (add A, B), CI2), CI1
1088 ConstantInt *CI2, ConstantInt *CI1,
1101 // If CI2 is 2^7, 2^15, 2^31, then it might be an sadd.with.overflow.
1102 if (!CI2->getValue().isPowerOf2())
1104 unsigned NewWidth = CI2->getValue().countr_zero();
1117 // sign-extended; check for that condition. For example, if CI2 is 2^31 and
1321 ConstantInt *CI, *CI2; // I = icmp ugt (add (add A, B), CI2), CI
1323 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2))))
1324 if (Instruction *Res = processUGT_ADDCST_ADD(Cmp, A, B, CI2, CI, *this))