Lines Matching refs:loop1

220   base::SmartPointer<TestLoop> loop1(CreateLoop(&schedule, 2));  in TEST_F()  local
221 schedule.AddSuccessorForTesting(schedule.start(), loop1->header()); in TEST_F()
224 CheckLoop(order, loop1->nodes, loop1->count); in TEST_F()
230 base::SmartPointer<TestLoop> loop1(CreateLoop(&schedule, 2)); in TEST_F() local
231 schedule.AddSuccessorForTesting(schedule.start(), loop1->header()); in TEST_F()
232 schedule.AddSuccessorForTesting(loop1->last(), schedule.start()); in TEST_F()
235 CheckLoop(order, loop1->nodes, loop1->count); in TEST_F()
363 BasicBlock* loop1[] = {B, C, D, E}; in TEST_F() local
364 CheckLoop(order, loop1, 4); in TEST_F()
397 BasicBlock* loop1[] = {B, C, D, E, F, G}; in TEST_F() local
398 CheckLoop(order, loop1, 6); in TEST_F()
411 base::SmartPointer<TestLoop> loop1(CreateLoop(&schedule, 1)); in TEST_F() local
417 schedule.AddSuccessorForTesting(A, loop1->header()); in TEST_F()
418 schedule.AddSuccessorForTesting(loop1->header(), loop2->header()); in TEST_F()
424 CheckLoop(order, loop1->nodes, loop1->count); in TEST_F()
432 base::SmartPointer<TestLoop> loop1(CreateLoop(&schedule, 1)); in TEST_F() local
439 schedule.AddSuccessorForTesting(A, loop1->header()); in TEST_F()
440 schedule.AddSuccessorForTesting(loop1->header(), S); in TEST_F()
447 CheckLoop(order, loop1->nodes, loop1->count); in TEST_F()
456 base::SmartPointer<TestLoop> loop1(CreateLoop(&schedule, size)); in TEST_F() local
461 schedule.AddSuccessorForTesting(A, loop1->header()); in TEST_F()
462 schedule.AddSuccessorForTesting(loop1->nodes[exit], loop2->header()); in TEST_F()
467 CheckLoop(order, loop1->nodes, loop1->count); in TEST_F()
477 base::SmartPointer<TestLoop> loop1(CreateLoop(&schedule, 1)); in TEST_F() local
486 schedule.AddSuccessorForTesting(B, loop1->header()); in TEST_F()
487 schedule.AddSuccessorForTesting(loop1->header(), loop2->header()); in TEST_F()
495 CheckLoop(order, loop1->nodes, loop1->count); in TEST_F()
498 BasicBlock* loop3[] = {B, loop1->nodes[0], loop2->nodes[0], C}; in TEST_F()
511 base::SmartPointer<TestLoop> loop1(CreateLoop(&schedule, size)); in TEST_F() local
512 schedule.AddSuccessorForTesting(A, loop1->header()); in TEST_F()
513 schedule.AddSuccessorForTesting(loop1->last(), E); in TEST_F()
515 schedule.AddSuccessorForTesting(loop1->nodes[i], loop1->header()); in TEST_F()
516 schedule.AddSuccessorForTesting(loop1->nodes[j], E); in TEST_F()
520 CheckLoop(order, loop1->nodes, loop1->count); in TEST_F()
535 base::SmartPointer<TestLoop> loop1(CreateLoop(&schedule, size)); in TEST_F() local
536 schedule.AddSuccessorForTesting(A, loop1->header()); in TEST_F()
537 schedule.AddSuccessorForTesting(loop1->last(), E); in TEST_F()
539 schedule.AddSuccessorForTesting(loop1->nodes[i], loop1->header()); in TEST_F()
540 schedule.AddSuccessorForTesting(loop1->nodes[j], D); in TEST_F()
545 CheckLoop(order, loop1->nodes, loop1->count); in TEST_F()
558 base::SmartPointer<TestLoop> loop1(CreateLoop(&schedule, size)); in TEST_F() local
559 schedule.AddSuccessorForTesting(A, loop1->header()); in TEST_F()
560 schedule.AddSuccessorForTesting(loop1->last(), E); in TEST_F()
564 schedule.AddSuccessorForTesting(loop1->nodes[j], O); in TEST_F()
570 CheckLoop(order, loop1->nodes, loop1->count); in TEST_F()
581 base::SmartPointer<TestLoop> loop1(CreateLoop(&schedule, size)); in TEST_F() local
582 schedule.AddSuccessorForTesting(A, loop1->header()); in TEST_F()
583 schedule.AddSuccessorForTesting(loop1->last(), E); in TEST_F()
588 schedule.AddSuccessorForTesting(loop1->nodes[j], loopN[j]->header()); in TEST_F()
594 CheckLoop(order, loop1->nodes, loop1->count); in TEST_F()
625 BasicBlock* loop1[] = {B, C, D, E}; in TEST_F() local
626 CheckLoop(order, loop1, 4); in TEST_F()
929 Node* loop1 = graph()->NewNode(common()->Loop(2), t1, start); in TARGET_TEST_F() local
934 Node* br2 = graph()->NewNode(common()->Branch(), add1, loop1); in TARGET_TEST_F()
938 loop1->ReplaceInput(1, t2); // close inner loop. in TARGET_TEST_F()