Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:In2

38                            ConstantInt *In1, ConstantInt *In2,
43 if (In2->isNegative())
48 /// AddWithOverflow - Compute Result = In1+In2, returning true if the result
51 Constant *In2, bool IsSigned = false) {
52 Result = ConstantExpr::getAdd(In1, In2);
59 ExtractElement(In2, Idx),
67 cast<ConstantInt>(In1), cast<ConstantInt>(In2),
72 ConstantInt *In1, ConstantInt *In2,
77 if (In2->isNegative())
83 /// SubWithOverflow - Compute Result = In1-In2, returning true if the result
86 Constant *In2, bool IsSigned = false) {
87 Result = ConstantExpr::getSub(In1, In2);
94 ExtractElement(In2, Idx),
102 cast<ConstantInt>(In1), cast<ConstantInt>(In2),