Lines Matching refs:input
79 HPhi* input = raw_input->AsPhiOrNull(); in MarkDeadPhis() local
80 if (input != nullptr && input->IsDead()) { in MarkDeadPhis()
83 DCHECK(ContainsElement(initially_live, input)); in MarkDeadPhis()
84 input->SetLive(); in MarkDeadPhis()
85 worklist.push_back(input); in MarkDeadPhis()
173 for (HInstruction* input : phi->GetInputs()) { in Run()
174 if (input == phi) { in Run()
177 candidate = input; in Run()
178 } else if (candidate != input) { in Run()
194 for (HInstruction* input : current->GetInputs()) { in Run()
195 if (input == current) { in Run()
197 } else if (input->IsPhi()) { in Run()
198 if (!visited_phis_in_cycle.IsBitSet(input->GetId())) { in Run()
199 cycle_worklist.push_back(input->AsPhi()); in Run()
200 visited_phis_in_cycle.SetBit(input->GetId()); in Run()
201 catch_phi_in_cycle |= input->AsPhi()->IsCatchPhi(); in Run()
202 irreducible_loop_phi_in_cycle |= input->IsIrreducibleLoopHeaderPhi(); in Run()
207 candidate = input; in Run()
208 } else if (candidate != input) { in Run()