Home | History | Annotate | Download | only in arm64

Lines Matching refs:remainder

1275       //     remainder of the function cannot trust jssp any longer.
1756 // The ECMA-262 remainder operator is the remainder from a truncating
1761 // quotient) and fmsub (to calculate the remainder without loss of
2714 // Deoptimize if remainder will not be 0.
2816 // Compute remainder and deopt if it's not zero.
2817 Register remainder = ToRegister32(instr->temp());
2818 __ Msub(remainder, result, divisor, dividend);
2819 DeoptimizeIfNotZero(remainder, instr);
3993 Register remainder = ToRegister32(instr->temp());
4023 __ Eor(remainder, dividend, divisor);
4024 __ Tbz(remainder, kWSignBit, &done);
4027 __ Msub(remainder, result, divisor, dividend);
4028 __ Cbz(remainder, &done);
4251 // a power of 2 (calculating the remainder via an additional multiplication