Home
last modified time | relevance | path

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

/art/compiler/dex/
Dssa_transformation.cc72 succ.reserve(GetNumBlocks()); in RecordDFSOrders()
95 dfs_order_.reserve(GetNumBlocks()); in ComputeDFSOrders()
97 dfs_post_order_.reserve(GetNumBlocks()); in ComputeDFSOrders()
107 if (num_reachable_blocks_ != GetNumBlocks()) { in ComputeDFSOrders()
147 arena_, GetNumBlocks(), false, kBitMapBMatrix); in ComputeDefBlockMatrix()
474 temp_scoped_alloc_.get(), GetNumBlocks(), false, kBitMapBMatrix); in FindPhiNodeBlocks()
Dmir_graph_test.cc119 ASSERT_EQ(cu_.mir_graph->GetNumBlocks(), cu_.mir_graph->topological_order_indexes_.size()); in ComputeTopologicalSortOrder()
121 ASSERT_LT(cu_.mir_graph->topological_order_[i], cu_.mir_graph->GetNumBlocks()); in ComputeTopologicalSortOrder()
Dglobal_value_numbering.cc39 lvns_(mir_graph_->GetNumBlocks(), nullptr, allocator->Adapter()), in GlobalValueNumbering()
Dmir_optimization.cc930 temp_scoped_alloc_->AllocArray<ArenaBitVector*>(GetNumBlocks(), kArenaAllocMisc); in EliminateNullChecksGate()
931 std::fill_n(temp_.nce.ending_vregs_to_check_matrix, GetNumBlocks(), nullptr); in EliminateNullChecksGate()
1241 temp_scoped_alloc_->AllocArray<ArenaBitVector*>(GetNumBlocks(), kArenaAllocMisc); in EliminateClassInitChecksGate()
1242 std::fill_n(temp_.cice.ending_classes_to_check_matrix, GetNumBlocks(), nullptr); in EliminateClassInitChecksGate()
1735 suspend_checks_in_loops_ = arena_->AllocArray<uint32_t>(GetNumBlocks(), kArenaAllocMisc); in EliminateSuspendChecksGate()
Dmir_graph.cc733 DCHECK_EQ(GetNumBlocks(), 0U); in InlineMethod()
982 int num_blocks = all_blocks ? GetNumBlocks() : num_reachable_blocks_; in DumpCFG()
1713 LOG(INFO) << GetNumBlocks() << " blocks in total"; in DumpMIRGraph()
1868 ArenaBitVector candidate_reachable(allocator, mir_graph->GetNumBlocks(), false, kBitMapMisc); in SelectTopologicalSortOrderFallBack()
1937 unsigned int num_blocks = GetNumBlocks(); in ComputeTopologicalSortOrder()
Dtype_inference.cc156 num_blocks_(mir_graph->GetNumBlocks()), in CheckCastData()
409 bb_df_attrs_(alloc->AllocArray<uint64_t>(mir_graph->GetNumBlocks(), kArenaAllocDFInfo)) { in TypeInference()
Dmir_analysis.cc1158 if (static_cast<size_t>(GetNumBlocks()) > (compiler_options.GetHugeMethodThreshold() / 2)) { in SkipCompilation()
Dmir_graph.h607 unsigned int GetNumBlocks() const { in GetNumBlocks() function
Dmir_optimization_test.cc477 cu_.mir_graph->arena_->AllocArray<uint32_t>(cu_.mir_graph->GetNumBlocks(), in PerformSuspendCheckElimination()
/art/compiler/dex/quick/
Dquick_compiler.cc516 for (unsigned int idx = 0; idx < cu->mir_graph->GetNumBlocks(); idx++) { in CanCompileMethod()
780 LOG(INFO) << "MEMINFO " << cu.arena.BytesAllocated() << " " << cu.mir_graph->GetNumBlocks() in Compile()
Dmir_to_lir.cc1331 block_label_list_ = arena_->AllocArray<LIR>(mir_graph_->GetNumBlocks(), kArenaAllocLIR); in MethodMIR2LIR()