Searched refs:BasicBlockCount (Results 1 – 4 of 4) sorted by relevance
/external/v8/test/unittests/compiler/ |
D | scheduler-unittest.cc | 186 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/ |
D | scheduler.cc | 581 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()
|
D | schedule.h | 190 size_t BasicBlockCount() const { return all_blocks_.size(); } in BasicBlockCount() function
|
D | verifier.cc | 1037 const size_t count = schedule->BasicBlockCount(); in Run()
|