Home
last modified time | relevance | path

Searched refs:BasicBlockCount (Results 1 – 4 of 4) sorted by relevance

/external/v8/test/unittests/compiler/
Dscheduler-unittest.cc186 for (size_t i = 0; i < schedule.BasicBlockCount(); i++) { in TEST_F()
423 EXPECT_EQ(schedule.BasicBlockCount(), order->size()); in TEST_F()
446 EXPECT_EQ(schedule.BasicBlockCount(), order->size()); in TEST_F()
466 EXPECT_EQ(schedule.BasicBlockCount(), order->size()); in TEST_F()
494 EXPECT_EQ(schedule.BasicBlockCount(), order->size()); in TEST_F()
519 CheckRPONumbers(order, schedule.BasicBlockCount(), true); in TEST_F()
544 CheckRPONumbers(order, schedule.BasicBlockCount(), true); in TEST_F()
569 CheckRPONumbers(order, schedule.BasicBlockCount(), true); in TEST_F()
593 CheckRPONumbers(order, schedule.BasicBlockCount(), true); in TEST_F()
/external/v8/src/compiler/
Dscheduler.cc581 scheduled_nodes_.resize(schedule_->BasicBlockCount(), NodeVector(zone_)); in BuildCFG()
737 DCHECK_LT(previous_block_count_, schedule_->BasicBlockCount()); in ComputeAndInsertSpecialRPO()
738 stack_.resize(schedule_->BasicBlockCount() - previous_block_count_); in ComputeAndInsertSpecialRPO()
739 previous_block_count_ = schedule_->BasicBlockCount(); in ComputeAndInsertSpecialRPO()
923 BitVector(static_cast<int>(schedule_->BasicBlockCount()), zone_); in ComputeLoopInfo()
940 BitVector(static_cast<int>(schedule_->BasicBlockCount()), zone_); in ComputeLoopInfo()
1432 marked_.resize(schedule_->BasicBlockCount() + 1, false); in SplitNode()
1720 scheduled_nodes_.resize(schedule_->BasicBlockCount(), NodeVector(zone_)); in FuseFloatingControl()
Dschedule.h190 size_t BasicBlockCount() const { return all_blocks_.size(); } in BasicBlockCount() function
Dverifier.cc1037 const size_t count = schedule->BasicBlockCount(); in Run()