Lines Matching refs:blk
151 HBasicBlock* blk = new (alloc) HBasicBlock(graph_); in AdjacencyListGraph() local
152 graph_->AddBlock(blk); in AdjacencyListGraph()
153 return blk; in AdjacencyListGraph()
169 for (auto [name, blk] : name_to_block_) { in AdjacencyListGraph()
170 block_to_name_.Put(blk, name); in AdjacencyListGraph()
174 bool HasBlock(const HBasicBlock* blk) const { in HasBlock() argument
175 return block_to_name_.find(blk) != block_to_name_.end(); in HasBlock()
178 std::string_view GetName(const HBasicBlock* blk) const { in GetName() argument
179 return block_to_name_.Get(blk); in GetName()
195 std::ostream& PrintName(std::ostream& os, HBasicBlock* blk) const override { in Dump()
196 if (alg_.HasBlock(blk)) { in Dump()
197 return os << alg_.GetName(blk) << " (" << blk->GetBlockId() << ")"; in Dump()
199 return os << "<Unnamed B" << blk->GetBlockId() << ">"; in Dump()
697 for (HBasicBlock* blk : std::get<std::initializer_list<HBasicBlock*>>(blks)) {
698 vis.VisitBasicBlock(blk);
720 for (HBasicBlock* blk : std::get<std::initializer_list<HBasicBlock*>>(blks)) {
721 vis.VisitBasicBlock(blk);