Lines Matching defs:Quotient
44 Value *Quotient;
48 : Quotient(InQuotient), Remainder(InRemainder) {}
52 /// If you use Quotient or Remainder in a Phi node, you should use BB as its
56 Value *Quotient = nullptr;
169 return isDivisionOp() ? Value.Quotient : Value.Remainder;
269 DivRemPair.Quotient = Builder.CreateSDiv(Dividend, Divisor);
272 DivRemPair.Quotient = Builder.CreateUDiv(Dividend, Divisor);
299 DivRemPair.Quotient =
315 QuoPhi->addIncoming(LHS.Quotient, LHS.BB);
316 QuoPhi->addIncoming(RHS.Quotient, RHS.BB);
420 Long.Quotient = ConstantInt::get(getSlowType(), 0);
475 for (Value *V : {KV.second.Quotient, KV.second.Remainder})