Lines Matching defs:RightOperand
157 const APInt &RightOperand, bool &Overflow) {
158 return LeftOperand.sadd_ov(RightOperand, Overflow);
162 const APInt &RightOperand, bool &Overflow) {
163 return LeftOperand.ssub_ov(RightOperand, Overflow);
167 const APInt &RightOperand, bool &Overflow) {
168 return LeftOperand.smul_ov(RightOperand, Overflow);
172 const APInt &RightOperand, bool &Overflow) {
174 if (RightOperand.isZero())
177 return LeftOperand.sdiv_ov(RightOperand, Overflow);
181 const APInt &RightOperand, bool &Overflow) {
183 return LeftOperand.slt(RightOperand) ? RightOperand : LeftOperand;
187 const APInt &RightOperand, bool &Overflow) {
189 if (cantFail(exprMax(LeftOperand, RightOperand, Overflow)) == LeftOperand)
190 return RightOperand;
205 Expected<APInt> MaybeRightOp = RightOperand->eval();
244 Expected<ExpressionFormat> RightFormat = RightOperand->getImplicitFormat(SM);
261 RightOperand->getExpressionStr() + "' (" + RightFormat->toString() +