Home | History | Annotate | Download | only in arm

Lines Matching defs:constant_value

631     int constant_value = 0;
636 constant_value = constant->Integer32Value() & 0x1f;
639 if (instr->representation().IsSmi() && constant_value > 0) {
648 if (op == Token::SHR && constant_value == 0) {
1427 int32_t constant_value = 0;
1430 constant_value = constant->Integer32Value();
1433 if (!can_overflow || ((constant_value >= -1) && (constant_value <= 1))) {
1454 ? ((can_overflow && constant_value == -1) ||
1455 (bailout_on_minus_zero && constant_value <= 0))