Lines Matching refs:replace_with
818 HInstruction* replace_with = nullptr; in VisitBooleanNot() local
823 replace_with = GetGraph()->GetIntConstant(0); in VisitBooleanNot()
826 replace_with = GetGraph()->GetIntConstant(1); in VisitBooleanNot()
830 replace_with = input->InputAt(0); in VisitBooleanNot()
836 replace_with = GetGraph()->InsertOppositeCondition(input->AsCondition(), bool_not); in VisitBooleanNot()
839 if (replace_with != nullptr) { in VisitBooleanNot()
840 bool_not->ReplaceWith(replace_with); in VisitBooleanNot()
919 HInstruction* replace_with = nullptr; in VisitSelect() local
936 replace_with = true_value; in VisitSelect()
940 replace_with = true_value; in VisitSelect()
944 replace_with = false_value; in VisitSelect()
949 replace_with = condition; in VisitSelect()
952 replace_with = GetGraph()->InsertOppositeCondition(condition, select); in VisitSelect()
979 replace_with = NewIntegralMinMax(GetGraph()->GetAllocator(), a, b, select, is_min); in VisitSelect()
989 replace_with = NewIntegralAbs(GetGraph()->GetAllocator(), a, select); in VisitSelect()
1004 replace_with = NewIntegralAbs(GetGraph()->GetAllocator(), true_value, select); in VisitSelect()
1010 if (replace_with != nullptr) { in VisitSelect()
1011 select->ReplaceWith(replace_with); in VisitSelect()