Lines Matching refs:blocks_
326 blocks_(allocator->Adapter(kArenaAllocBlockList)), in allocator_()
359 blocks_.reserve(kDefaultNumberOfBlocks); in allocator_()
367 const ArenaVector<HBasicBlock*>& GetBlocks() const { return blocks_; } in GetBlocks()
664 ArenaVector<HBasicBlock*> blocks_; variable
793 blocks_(graph->GetAllocator(), in HLoopInformation()
865 const ArenaBitVector& GetBlocks() const { return blocks_; } in GetBlocks()
871 blocks_.ClearAllBits(); in ClearAllBlocks()
877 return blocks_.GetHighestBitSet() != -1; in IsPopulated()
900 ArenaBitVector blocks_; variable
7890 blocks_(info.GetHeader()->GetGraph()->GetBlocks()), in HBlocksInLoopIterator()
7897 bool Done() const { return index_ == blocks_.size(); } in Done()
7898 HBasicBlock* Current() const { return blocks_[index_]; } in Current()
7901 for (size_t e = blocks_.size(); index_ < e; ++index_) { in Advance()
7910 const ArenaVector<HBasicBlock*>& blocks_; variable
7923 blocks_(info.GetHeader()->GetGraph()->GetReversePostOrder()), in HBlocksInLoopReversePostOrderIterator()
7925 if (!blocks_in_loop_.IsBitSet(blocks_[index_]->GetBlockId())) { in HBlocksInLoopReversePostOrderIterator()
7930 bool Done() const { return index_ == blocks_.size(); } in Done()
7931 HBasicBlock* Current() const { return blocks_[index_]; } in Current()
7934 for (size_t e = blocks_.size(); index_ < e; ++index_) { in Advance()
7935 if (blocks_in_loop_.IsBitSet(blocks_[index_]->GetBlockId())) { in Advance()
7943 const ArenaVector<HBasicBlock*>& blocks_; variable