Home
last modified time | relevance | path

Searched refs:AddSuccessorForTesting (Results 1 – 2 of 2) sorted by relevance

/external/v8/test/unittests/compiler/
Dscheduler-unittest.cc126 schedule->AddSuccessorForTesting(loop->nodes[i - 1], loop->nodes[i]); in CreateLoop()
129 schedule->AddSuccessorForTesting(loop->nodes[count - 1], loop->nodes[0]); in CreateLoop()
198 schedule.AddSuccessorForTesting(schedule.start(), schedule.start()); in TEST_F()
209 schedule.AddSuccessorForTesting(schedule.start(), body); in TEST_F()
210 schedule.AddSuccessorForTesting(body, schedule.start()); in TEST_F()
221 schedule.AddSuccessorForTesting(schedule.start(), loop1->header()); in TEST_F()
231 schedule.AddSuccessorForTesting(schedule.start(), loop1->header()); in TEST_F()
232 schedule.AddSuccessorForTesting(loop1->last(), schedule.start()); in TEST_F()
247 schedule.AddSuccessorForTesting(A, B); in TEST_F()
248 schedule.AddSuccessorForTesting(A, C); in TEST_F()
[all …]
/external/v8/src/compiler/
Dschedule.h242 void AddSuccessorForTesting(BasicBlock* block, BasicBlock* succ) { in AddSuccessorForTesting() function