Searched refs:kMaxIntShiftDistance (Results 1 – 8 of 8) sorted by relevance
/art/compiler/optimizing/ |
D | nodes.h | 76 static constexpr int32_t kMaxIntShiftDistance = 0x1f; variable 4487 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc()); in Evaluate() 4533 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc()); in Evaluate() 4581 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc()); in Evaluate() 4743 Compute(value->GetValue(), distance->GetValue(), kMaxIntShiftDistance), GetDexPc()); in Evaluate()
|
D | instruction_simplifier.cc | 244 : kMaxIntShiftDistance; in VisitShift()
|
D | code_generator_arm64.cc | 1805 (type == Primitive::kPrimInt ? kMaxIntShiftDistance : kMaxLongShiftDistance); in HandleShift() 1907 (type == Primitive::kPrimInt ? kMaxIntShiftDistance : kMaxLongShiftDistance); in VisitArm64DataProcWithShifterOp()
|
D | code_generator_x86_64.cc | 3772 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance); in HandleShift() 3841 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance); in VisitRor()
|
D | code_generator_arm.cc | 3316 __ and_(out_reg, second_reg, ShifterOperand(kMaxIntShiftDistance)); in HandleShift() 3326 uint32_t shift_value = cst & kMaxIntShiftDistance; in HandleShift()
|
D | code_generator_x86.cc | 3716 int32_t shift = second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance; in HandleShift() 3901 Immediate imm(second.GetConstant()->AsIntConstant()->GetValue() & kMaxIntShiftDistance); in VisitRor()
|
D | code_generator_mips64.cc | 1188 (type == Primitive::kPrimInt ? kMaxIntShiftDistance : kMaxLongShiftDistance); in HandleShift()
|
D | code_generator_mips.cc | 1434 (type == Primitive::kPrimInt) ? kMaxIntShiftDistance : kMaxLongShiftDistance; in HandleShift()
|