Home
last modified time | relevance | path

Searched refs:rpo_next (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/compiler/
Dschedule.h122 BasicBlock* rpo_next() const { return rpo_next_; } in rpo_next() function
123 void set_rpo_next(BasicBlock* rpo_next) { rpo_next_ = rpo_next; } in set_rpo_next() argument
Dscheduler.cc633 for (BasicBlock* b = order_; b != nullptr; b = b->rpo_next()) { in SerializeRPOIntoSchedule()
732 BasicBlock* insertion_point = entry->rpo_next(); in ComputeAndInsertSpecialRPO()
849 for (BasicBlock* b = info->start; true; b = b->rpo_next()) { in ComputeAndInsertSpecialRPO()
850 if (b->rpo_next() == info->end) { in ComputeAndInsertSpecialRPO()
875 for (BasicBlock* b = order; b != insertion_point; b = b->rpo_next()) { in ComputeAndInsertSpecialRPO()
985 block = block->rpo_next()) { in PrintRPO()
1039 block = block->rpo_next(); in VerifySpecialRPO()
1102 for (/*nop*/; block != nullptr; block = block->rpo_next()) { in PropagateImmediateDominators()
1133 PropagateImmediateDominators(schedule_->start()->rpo_next()); in GenerateImmediateDominatorTree()
1692 for (BasicBlock* b = block->rpo_next(); b != nullptr; b = b->rpo_next()) { in FuseFloatingControl()
[all …]
/external/v8/test/unittests/compiler/
Dschedule-unittest.cc25 EXPECT_EQ(nullptr, b.rpo_next()); in TEST_F()