Home
last modified time | relevance | path

Searched refs:kMaxIntShiftDistance (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Dnodes_shared.h208 ? kMaxIntShiftDistance
Dinstruction_simplifier_arm.cc125 ? kMaxIntShiftDistance in TryMergeIntoShifterOperand()
Dnodes.h93 static constexpr int32_t kMaxIntShiftDistance = 0x1f; variable
5621 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc());
5667 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc());
5715 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc());
5878 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc());
Dinstruction_simplifier.cc367 : kMaxIntShiftDistance; in VisitShift()
Dcode_generator_x86_64.cc4587 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance); in HandleShift()
4656 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance); in VisitRor()
Dcode_generator_x86.cc4624 int32_t shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance; in HandleShift()
4809 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance); in VisitRor()
Dcode_generator_arm_vixl.cc5241 __ And(out_reg, second_reg, kMaxIntShiftDistance); in HandleShift()
5251 uint32_t shift_value = cst & kMaxIntShiftDistance; in HandleShift()
Dcode_generator_arm64.cc2227 (type == DataType::Type::kInt32 ? kMaxIntShiftDistance : kMaxLongShiftDistance); in HandleShift()