Searched refs:kMaxLongShiftDistance (Results 1 - 8 of 8) sorted by relevance

/art/compiler/optimizing/
H A Dnodes.h78 static constexpr int32_t kMaxLongShiftDistance = 0x3f; member in namespace:art
4491 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
4537 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
4585 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
4747 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
H A Dinstruction_simplifier.cc243 ? kMaxLongShiftDistance
H A Dcode_generator_arm.cc3165 rot &= kMaxLongShiftDistance;
3354 __ and_(o_l, second_reg, ShifterOperand(kMaxLongShiftDistance));
3368 __ and_(o_h, second_reg, ShifterOperand(kMaxLongShiftDistance));
3382 __ and_(o_h, second_reg, ShifterOperand(kMaxLongShiftDistance));
3398 uint32_t shift_value = cst & kMaxLongShiftDistance;
H A Dcode_generator_arm64.cc1805 (type == Primitive::kPrimInt ? kMaxIntShiftDistance : kMaxLongShiftDistance);
1907 (type == Primitive::kPrimInt ? kMaxIntShiftDistance : kMaxLongShiftDistance);
H A Dcode_generator_x86.cc3747 int32_t shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance;
3925 int32_t shift_amt = second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance;
H A Dcode_generator_x86_64.cc3798 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance);
3854 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance);
H A Dcode_generator_mips64.cc1188 (type == Primitive::kPrimInt ? kMaxIntShiftDistance : kMaxLongShiftDistance);
H A Dcode_generator_mips.cc1434 (type == Primitive::kPrimInt) ? kMaxIntShiftDistance : kMaxLongShiftDistance;

Completed in 130 milliseconds