Home
last modified time | relevance | path

Searched refs:GetNumBlocks (Results 1 – 7 of 7) sorted by relevance

/art/compiler/dex/
Dssa_transformation.cc97 dfs_order_ = new (arena_) GrowableArray<BasicBlockId>(arena_, GetNumBlocks(), in ComputeDFSOrders()
106 dfs_post_order_ = new (arena_) GrowableArray<BasicBlockId>(arena_, GetNumBlocks(), in ComputeDFSOrders()
159 new (arena_) ArenaBitVector(arena_, GetNumBlocks(), false, kBitMapBMatrix); in ComputeDefBlockMatrix()
499 temp_scoped_alloc_.get(), GetNumBlocks(), false, kBitMapPhi); in InsertPhiNodes()
501 temp_scoped_alloc_.get(), GetNumBlocks(), false, kBitMapInputBlocks); in InsertPhiNodes()
Dmir_graph_test.cc122 ASSERT_EQ(cu_.mir_graph->GetNumBlocks(), cu_.mir_graph->topological_order_indexes_->Size()); in ComputeTopologicalSortOrder()
124 ASSERT_LT(cu_.mir_graph->topological_order_->Get(i), cu_.mir_graph->GetNumBlocks()); in ComputeTopologicalSortOrder()
Dglobal_value_numbering.cc37 lvns_(mir_graph_->GetNumBlocks(), nullptr, allocator->Adapter()), in GlobalValueNumbering()
Dfrontend.cc579 for (unsigned int idx = 0; idx < cu.mir_graph->GetNumBlocks(); idx++) { in CanCompileMethod()
796 LOG(INFO) << "MEMINFO " << cu.arena.BytesAllocated() << " " << cu.mir_graph->GetNumBlocks() in CompileMethod()
Dmir_graph.cc895 int num_blocks = all_blocks ? GetNumBlocks() : num_reachable_blocks_; in DumpCFG()
1423 LOG(INFO) << GetNumBlocks() << " blocks in total"; in DumpMIRGraph()
1549 ArenaBitVector candidate_reachable(allocator, mir_graph->GetNumBlocks(), false, kBitMapMisc); in SelectTopologicalSortOrderFallBack()
1618 unsigned int num_blocks = GetNumBlocks(); in ComputeTopologicalSortOrder()
Dmir_graph.h576 unsigned int GetNumBlocks() const { in GetNumBlocks() function
/art/compiler/dex/quick/
Dmir_to_lir.cc1241 static_cast<LIR*>(arena_->Alloc(sizeof(LIR) * mir_graph_->GetNumBlocks(), in MethodMIR2LIR()