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

/art/compiler/optimizing/
H A Dinstruction_simplifier_arm.cc124 : kMaxLongShiftDistance;
H A Dnodes_shared.h209 : kMaxLongShiftDistance)) {
H A Dscheduler_arm.cc112 uint64_t rot = Uint64ConstantFrom(rhs->AsConstant()) & kMaxLongShiftDistance;
146 uint32_t shift_value = Int32ConstantFrom(rhs->AsConstant()) & kMaxLongShiftDistance;
H A Dnodes.h87 static constexpr int32_t kMaxLongShiftDistance = 0x3f; member in namespace:art
5067 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
5113 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
5161 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
5326 Compute(value->GetValue(), distance->GetValue(), kMaxLongShiftDistance), GetDexPc());
H A Dcode_generator_arm_vixl.cc4781 rot &= kMaxLongShiftDistance;
4972 __ And(o_l, second_reg, kMaxLongShiftDistance);
4991 __ And(o_h, second_reg, kMaxLongShiftDistance);
5010 __ And(o_h, second_reg, kMaxLongShiftDistance);
5031 uint32_t shift_value = cst & kMaxLongShiftDistance;
H A Dinstruction_simplifier.cc345 ? kMaxLongShiftDistance
H A Dcode_generator_x86.cc3949 int32_t shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance;
4127 int32_t shift_amt = second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance;
H A Dcode_generator_x86_64.cc3939 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance);
3995 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxLongShiftDistance);
H A Dcode_generator_arm64.cc2441 (type == DataType::Type::kInt32 ? kMaxIntShiftDistance : kMaxLongShiftDistance);
H A Dcode_generator_mips64.cc2062 (type == DataType::Type::kInt32 ? kMaxIntShiftDistance : kMaxLongShiftDistance);
H A Dcode_generator_mips.cc2306 (type == DataType::Type::kInt32) ? kMaxIntShiftDistance : kMaxLongShiftDistance;

Completed in 235 milliseconds