Lines Matching refs:replace_with
820 HInstruction* replace_with = nullptr; in VisitBooleanNot() local
825 replace_with = GetGraph()->GetIntConstant(0); in VisitBooleanNot()
828 replace_with = GetGraph()->GetIntConstant(1); in VisitBooleanNot()
832 replace_with = input->InputAt(0); in VisitBooleanNot()
838 replace_with = GetGraph()->InsertOppositeCondition(input->AsCondition(), bool_not); in VisitBooleanNot()
841 if (replace_with != nullptr) { in VisitBooleanNot()
842 bool_not->ReplaceWith(replace_with); in VisitBooleanNot()
903 HInstruction* replace_with = nullptr; in VisitSelect() local
920 replace_with = true_value; in VisitSelect()
924 replace_with = true_value; in VisitSelect()
928 replace_with = false_value; in VisitSelect()
933 replace_with = condition; in VisitSelect()
936 replace_with = GetGraph()->InsertOppositeCondition(condition, select); in VisitSelect()
954 replace_with = NewIntegralAbs(GetGraph()->GetAllocator(), false_value, select); in VisitSelect()
961 replace_with = NewIntegralAbs(GetGraph()->GetAllocator(), true_value, select); in VisitSelect()
976 replace_with = NewIntegralAbs(GetGraph()->GetAllocator(), true_value, select); in VisitSelect()
982 if (replace_with != nullptr) { in VisitSelect()
983 select->ReplaceWith(replace_with); in VisitSelect()