Home | History | Annotate | Download | only in optimizing

Lines Matching defs:needs_taken_test

888       bool needs_taken_test = false;
891 bounds_check, index, &needs_finite_test, &needs_taken_test) &&
894 CanHandleLength(loop, array_length, needs_taken_test)) {
895 TransformLoopForDeoptimizationIfNeeded(loop, needs_taken_test);
1526 bool CanHandleLength(HLoopInformation* loop, HInstruction* length, bool needs_taken_test) {
1530 if (CanHandleNullCheck(loop, length->InputAt(0), needs_taken_test)) {
1542 bool CanHandleNullCheck(HLoopInformation* loop, HInstruction* check, bool needs_taken_test) {
1549 TransformLoopForDeoptimizationIfNeeded(loop, needs_taken_test);
1689 void TransformLoopForDeoptimizationIfNeeded(HLoopInformation* loop, bool needs_taken_test) {
1692 if (!needs_taken_test || taken_test_loop_.find(loop_id) != taken_test_loop_.end()) {