Home
last modified time | relevance | path

Searched refs:bb_ (Results 1 – 2 of 2) sorted by relevance

/art/compiler/dex/
Dgvn_dead_code_elimination.cc450 bb_(nullptr), in GvnDeadCodeElimination()
462 bb_ = bb; in Apply()
470 bb_ = nullptr; in Apply()
477 for (MIR* mir = bb_->first_mir_insn; mir != nullptr; mir = mir->next) { in RecordPass()
526 phi->offset = bb_->start_offset; in CreatePhi()
535 size_t num_uses = bb_->predecessors.size(); in CreatePhi()
538 for (BasicBlockId pred_id : bb_->predecessors) { in CreatePhi()
548 std::copy(bb_->predecessors.begin(), bb_->predecessors.end(), phi->meta.phi_incoming); in CreatePhi()
549 bb_->PrependMIR(phi); in CreatePhi()
Dgvn_dead_code_elimination.h155 BasicBlock* bb_; variable