• Home
  • Raw
  • Download

Lines Matching refs:other_bounds_check

1324           HBoundsCheck* other_bounds_check = user->AsBoundsCheck();  in AddComparesWithDeoptimization()  local
1325 HInstruction* other_index = other_bounds_check->InputAt(0); in AddComparesWithDeoptimization()
1326 HInstruction* other_array_length = other_bounds_check->InputAt(1); in AddComparesWithDeoptimization()
1345 candidates.push_back(other_bounds_check); in AddComparesWithDeoptimization()
1348 standby.push_back(other_bounds_check); in AddComparesWithDeoptimization()
1354 for (HBoundsCheck* other_bounds_check : standby) { in AddComparesWithDeoptimization()
1355 HInstruction* other_index = other_bounds_check->InputAt(0); in AddComparesWithDeoptimization()
1358 candidates.push_back(other_bounds_check); in AddComparesWithDeoptimization()
1373 for (HBoundsCheck* other_bounds_check : candidates) { in AddComparesWithDeoptimization()
1376 if (other_bounds_check->IsInBlock()) { in AddComparesWithDeoptimization()
1377 ReplaceInstruction(other_bounds_check, other_bounds_check->InputAt(0)); in AddComparesWithDeoptimization()
1441 HBoundsCheck* other_bounds_check = user->AsBoundsCheck(); in TransformLoopForDynamicBCE() local
1442 HInstruction* other_index = other_bounds_check->InputAt(0); in TransformLoopForDynamicBCE()
1443 HInstruction* other_array_length = other_bounds_check->InputAt(1); in TransformLoopForDynamicBCE()
1449 if (!induction_range_.CanGenerateRange(other_bounds_check, other_index, &b1, &b2)) { in TransformLoopForDynamicBCE()
1455 standby.push_back(other_bounds_check); in TransformLoopForDynamicBCE()
1460 candidates.push_back(other_bounds_check); in TransformLoopForDynamicBCE()
1465 for (HBoundsCheck* other_bounds_check : standby) { in TransformLoopForDynamicBCE()
1466 HInstruction* other_index = other_bounds_check->InputAt(0); in TransformLoopForDynamicBCE()
1469 candidates.push_back(other_bounds_check); in TransformLoopForDynamicBCE()
1484 for (HBoundsCheck* other_bounds_check : candidates) { in TransformLoopForDynamicBCE()
1487 if (other_bounds_check->IsInBlock()) { in TransformLoopForDynamicBCE()
1488 HInstruction* other_index = other_bounds_check->InputAt(0); in TransformLoopForDynamicBCE()
1495 other_bounds_check, other_index, GetGraph(), block, &max_lower, &max_upper); in TransformLoopForDynamicBCE()
1498 other_bounds_check, other_index, GetGraph(), block, &min_lower, &min_upper); in TransformLoopForDynamicBCE()
1500 ReplaceInstruction(other_bounds_check, other_index); in TransformLoopForDynamicBCE()