Home | History | Annotate | Download | only in ppc

Lines Matching defs:constant_value

643     int constant_value = 0;
648 constant_value = constant->Integer32Value() & 0x1f;
651 if (instr->representation().IsSmi() && constant_value > 0) {
660 if (op == Token::SHR && constant_value == 0) {
1441 int32_t constant_value = 0;
1444 constant_value = constant->Integer32Value();
1447 if (!can_overflow || ((constant_value >= -1) && (constant_value <= 1))) {
1468 ? ((can_overflow && constant_value == -1) ||
1469 (bailout_on_minus_zero && constant_value <= 0))