Lines Matching defs:overflow
3141 // overflow cases, so we keep slt and add an intermediate third instruction.
3684 // Check the stack for overflow. We are not trying to catch
3692 // Check if the arguments will overflow the stack.
4051 const Operand& right, Register overflow) {
4064 overflow != scratch2);
4065 DCHECK(overflow != left && overflow != right_reg);
4068 xor_(overflow, scratch2, left);
4070 and_(overflow, overflow, scratch);
4074 xor_(overflow, dst, left);
4076 and_(overflow, overflow, scratch);
4081 const Operand& right, Register overflow) {
4095 overflow != scratch2);
4096 DCHECK(overflow != left && overflow != right_reg);
4100 xor_(overflow, left, scratch2);
4102 and_(overflow, overflow, scratch);
4106 xor_(overflow, left, dst);
4108 and_(overflow, overflow, scratch);
4113 const Operand& right, Register overflow) {
4128 overflow != scratch2);
4129 DCHECK(overflow != left && overflow != right_reg);
4130 sext_w(overflow, left);
4133 mul(overflow, overflow, scratch2);
4134 sext_w(dst, overflow);
4135 xor_(overflow, overflow, dst);