Lines Matching refs:data_flow_info
137 if (bb->data_flow_info == NULL) { in FillDefBlockMatrix()
141 for (uint32_t idx : bb->data_flow_info->def_v->Indexes()) { in FillDefBlockMatrix()
462 if (bb->data_flow_info == NULL) { in ComputeBlockLiveIns()
465 temp_dalvik_register_v->Copy(bb->data_flow_info->live_in_v); in ComputeBlockLiveIns()
468 if (bb_taken && bb_taken->data_flow_info) in ComputeBlockLiveIns()
469 ComputeSuccLineIn(temp_dalvik_register_v, bb_taken->data_flow_info->live_in_v, in ComputeBlockLiveIns()
470 bb->data_flow_info->def_v); in ComputeBlockLiveIns()
471 if (bb_fall_through && bb_fall_through->data_flow_info) in ComputeBlockLiveIns()
472 ComputeSuccLineIn(temp_dalvik_register_v, bb_fall_through->data_flow_info->live_in_v, in ComputeBlockLiveIns()
473 bb->data_flow_info->def_v); in ComputeBlockLiveIns()
482 if (succ_bb->data_flow_info) { in ComputeBlockLiveIns()
483 ComputeSuccLineIn(temp_dalvik_register_v, succ_bb->data_flow_info->live_in_v, in ComputeBlockLiveIns()
484 bb->data_flow_info->def_v); in ComputeBlockLiveIns()
488 if (!temp_dalvik_register_v->Equal(bb->data_flow_info->live_in_v)) { in ComputeBlockLiveIns()
489 bb->data_flow_info->live_in_v->Copy(temp_dalvik_register_v); in ComputeBlockLiveIns()
530 if (!phi_bb->data_flow_info->live_in_v->IsBitSet(dalvik_reg)) { in InsertPhiNodes()
571 int ssa_reg = pred_bb->data_flow_info->vreg_to_ssa_map_exit[v_reg]; in InsertPhiNodeOperands()