Home | History | Annotate | Download | only in x87

Lines Matching full:divisor

2977 void MacroAssembler::TruncatingDiv(Register dividend, int32_t divisor) {
2981 base::SignedDivisionByConstant(static_cast<uint32_t>(divisor));
2985 if (divisor > 0 && neg) add(edx, dividend);
2986 if (divisor < 0 && !neg && mag.multiplier > 0) sub(edx, dividend);