Lines Matching refs:input
132 for (HInstruction* input : phi->GetInputs()) { in TypePhiFromInputs()
133 if (input->IsPhi() && input->AsPhi()->IsDead()) { in TypePhiFromInputs()
139 DataType::Type input_type = HPhi::ToPhiType(input->GetType()); in TypePhiFromInputs()
179 for (HInstruction* input : phi->GetInputs()) { in TypeInputsOfPhi()
180 DCHECK(HPhi::ToPhiType(input->GetType()) == common_type); in TypeInputsOfPhi()
190 HInstruction* input = inputs[i]; in TypeInputsOfPhi() local
191 if (input->GetType() != common_type) { in TypeInputsOfPhi()
195 ? GetReferenceTypeEquivalent(input) in TypeInputsOfPhi()
196 : GetFloatOrDoubleEquivalent(input, common_type); in TypeInputsOfPhi()
203 DCHECK_NE(input, equivalent); in TypeInputsOfPhi()
473 HInstruction* input = new_instance->InputAt(0); in RemoveRedundantUninitializedStrings() local
480 if (input->IsClinitCheck()) { in RemoveRedundantUninitializedStrings()
481 load_class = input->InputAt(0)->AsLoadClass(); in RemoveRedundantUninitializedStrings()
482 input->ReplaceWith(load_class); in RemoveRedundantUninitializedStrings()
483 input->GetBlock()->RemoveInstruction(input); in RemoveRedundantUninitializedStrings()
485 load_class = input->AsLoadClass(); in RemoveRedundantUninitializedStrings()