Lines Matching defs:Quotient
45 Value *Quotient;
49 : Quotient(InQuotient), Remainder(InRemainder) {}
53 /// If you use Quotient or Remainder in a Phi node, you should use BB as its
57 Value *Quotient = nullptr;
170 return isDivisionOp() ? Value.Quotient : Value.Remainder;
270 DivRemPair.Quotient = Builder.CreateSDiv(Dividend, Divisor);
273 DivRemPair.Quotient = Builder.CreateUDiv(Dividend, Divisor);
300 DivRemPair.Quotient =
316 QuoPhi->addIncoming(LHS.Quotient, LHS.BB);
317 QuoPhi->addIncoming(RHS.Quotient, RHS.BB);
421 Long.Quotient = ConstantInt::get(getSlowType(), 0);
476 for (Value *V : {KV.second.Quotient, KV.second.Remainder})