• Home
  • Raw
  • Download

Lines Matching refs:graph_

32     : graph_(graph),  in ExecutionSubgraph()
34 allowed_successors_(graph_->GetBlocks().size(), in ExecutionSubgraph()
38 allocator_, graph_->GetBlocks().size(), /*expandable=*/ false, kArenaAllocLSA),
85 ScopedArenaAllocator temporaries(graph_->GetArenaStack()); in Prune()
87 graph_->GetBlocks().size(), temporaries.Adapter(kArenaAllocLSA)); in Prune()
94 const size_t num_blocks = graph_->GetBlocks().size(); in Prune()
114 const HBasicBlock* cur_block = graph_->GetEntryBlock(); in Prune()
136 DCHECK_GE(last_succ_seen[graph_->GetEntryBlock()->GetBlockId()], in Prune()
137 static_cast<ssize_t>(graph_->GetEntryBlock()->GetSuccessors().size())); in Prune()
140 const HBasicBlock* last = graph_->GetBlocks()[current_path.back()]; in Prune()
155 ssize_t num_entry_succ = graph_->GetEntryBlock()->GetSuccessors().size(); in Prune()
158 const uint32_t entry_block_id = graph_->GetEntryBlock()->GetBlockId(); in Prune()
162 DCHECK((current_path.empty() && cur_block == graph_->GetEntryBlock()) || in Prune()
163 current_path.front() == graph_->GetEntryBlock()->GetBlockId()) in Prune()
166 << graph_->GetEntryBlock()->GetBlockId(); in Prune()
173 if (cur_block == graph_->GetExitBlock()) { in Prune()
223 for (const HBasicBlock* blk : graph_->GetBlocks()) { in Prune()
226 blk != graph_->GetExitBlock() && in Prune()
227 blk != graph_->GetEntryBlock()) { in Prune()
245 for (const HBasicBlock* blk : graph_->GetBlocks()) { in RemoveConcavity()
252 [&](uint32_t skipped) { return graph_->PathBetween(skipped, blkid); }) && in RemoveConcavity()
255 [&](uint32_t skipped) { return graph_->PathBetween(blkid, skipped); })) { in RemoveConcavity()
267 ArenaBitVector unreachable(allocator_, graph_->GetBlocks().size(), false, kArenaAllocLSA); in RecalculateExcludedCohort()
271 res.emplace_back(allocator_, graph_); in RecalculateExcludedCohort()
274 ScopedArenaAllocator alloc(graph_->GetArenaStack()); in RecalculateExcludedCohort()
277 const HBasicBlock* first = graph_->GetBlocks()[unreachable.GetHighestBitSet()]; in RecalculateExcludedCohort()