Home | History | Annotate | Download | only in x64

Lines Matching defs:negative

817     // Check for (0 % -x) that will produce negative zero.
856 // Check for (0 / -x) that will produce negative zero.
948 // Bail out if the result is supposed to be negative zero.
960 // Test the non-zero operand for negative sign.
1042 DeoptimizeIf(negative, instr->environment());
1064 DeoptimizeIf(negative, instr->environment());
2172 // Negative property indices are in-object properties, indexed
2176 // Non-negative property indices are in the properties array.
2381 DeoptimizeIf(negative, instr->environment());
2493 // length is a small non-negative integer, due to the test above.
2613 Label negative;
2620 __ j(not_zero, &negative);
2623 __ bind(&negative);
2658 DeoptimizeIf(negative, instr->environment());
2743 // on negative inputs.
3016 __ setcc(negative, value); // 1 if negative, 0 if positive.
3017 __ decb(value); // 0 if negative, 255 if positive.