Lines Matching refs:replace_with
812 HInstruction* replace_with = nullptr; in VisitBooleanNot() local
817 replace_with = GetGraph()->GetIntConstant(0); in VisitBooleanNot()
820 replace_with = GetGraph()->GetIntConstant(1); in VisitBooleanNot()
824 replace_with = input->InputAt(0); in VisitBooleanNot()
830 replace_with = GetGraph()->InsertOppositeCondition(input->AsCondition(), bool_not); in VisitBooleanNot()
833 if (replace_with != nullptr) { in VisitBooleanNot()
834 bool_not->ReplaceWith(replace_with); in VisitBooleanNot()
913 HInstruction* replace_with = nullptr; in VisitSelect() local
930 replace_with = true_value; in VisitSelect()
934 replace_with = true_value; in VisitSelect()
938 replace_with = false_value; in VisitSelect()
943 replace_with = condition; in VisitSelect()
946 replace_with = GetGraph()->InsertOppositeCondition(condition, select); in VisitSelect()
973 replace_with = NewIntegralMinMax(GetGraph()->GetAllocator(), a, b, select, is_min); in VisitSelect()
983 replace_with = NewIntegralAbs(GetGraph()->GetAllocator(), a, select); in VisitSelect()
998 replace_with = NewIntegralAbs(GetGraph()->GetAllocator(), true_value, select); in VisitSelect()
1004 if (replace_with != nullptr) { in VisitSelect()
1005 select->ReplaceWith(replace_with); in VisitSelect()