Searched refs:blocks_ (Results 1 – 3 of 3) sorted by relevance
/art/compiler/optimizing/ |
D | nodes.cc | 51 block->SetBlockId(blocks_.size()); in AddBlock() 52 blocks_.push_back(block); in AddBlock() 63 &allocator, blocks_.size(), /* expandable= */ false, kArenaAllocGraphBuilder); in FindBackEdges() 66 ScopedArenaVector<size_t> successors_visited(blocks_.size(), in FindBackEdges() 146 for (size_t i = 0; i < blocks_.size(); ++i) { in RemoveInstructionsAsUsersFromDeadBlocks() 148 HBasicBlock* block = blocks_[i]; in RemoveInstructionsAsUsersFromDeadBlocks() 161 for (size_t i = 0; i < blocks_.size(); ++i) { in RemoveDeadBlocks() 163 HBasicBlock* block = blocks_[i]; in RemoveDeadBlocks() 171 blocks_[i] = nullptr; in RemoveDeadBlocks() 186 ArenaBitVector visited(&allocator, blocks_.size(), false, kArenaAllocGraphBuilder); in BuildDominatorTree() [all …]
|
D | optimizing_cfi_test.cc | 50 blocks_(GetAllocator()->Adapter()) {} in OptimizingCFITest() 85 code_gen_->block_order_ = &blocks_; in SetUpFrame() 146 ArenaVector<HBasicBlock*> blocks_; member in art::OptimizingCFITest
|
D | nodes.h | 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() [all …]
|