Lines Matching refs:blk
117 auto push_block = [&](const HBasicBlock* blk) { in Prune() argument
128 cur_block = blk; in Prune()
223 for (const HBasicBlock* blk : graph_->GetBlocks()) { in Prune() local
224 if (blk != nullptr && in Prune()
225 results[blk->GetBlockId()].none() && in Prune()
226 blk != graph_->GetExitBlock() && in Prune()
227 blk != graph_->GetEntryBlock()) { in Prune()
229 unreachable_blocks_.SetBit(blk->GetBlockId()); in Prune()
245 for (const HBasicBlock* blk : graph_->GetBlocks()) { in RemoveConcavity() local
246 if (blk == nullptr || unreachable_blocks_.IsBitSet(blk->GetBlockId())) { in RemoveConcavity()
249 uint32_t blkid = blk->GetBlockId(); in RemoveConcavity()
256 RemoveBlock(blk); in RemoveConcavity()
304 for (const HBasicBlock* blk : cohort.Blocks()) { in RecalculateExcludedCohort() local
305 const auto& preds = blk->GetPredecessors(); in RecalculateExcludedCohort()
306 const auto& succs = blk->GetSuccessors(); in RecalculateExcludedCohort()
308 cohort.entry_blocks_.SetBit(blk->GetBlockId()); in RecalculateExcludedCohort()
311 cohort.exit_blocks_.SetBit(blk->GetBlockId()); in RecalculateExcludedCohort()