Home | History | Annotate | Download | only in optimizing

Lines Matching full:replace_with

651   HInstruction* replace_with = nullptr;
656 replace_with = GetGraph()->GetIntConstant(0);
659 replace_with = GetGraph()->GetIntConstant(1);
663 replace_with = input->InputAt(0);
669 replace_with = GetGraph()->InsertOppositeCondition(input->AsCondition(), bool_not);
672 if (replace_with != nullptr) {
673 bool_not->ReplaceWith(replace_with);
680 HInstruction* replace_with = nullptr;
697 replace_with = true_value;
701 replace_with = true_value;
705 replace_with = false_value;
710 replace_with = condition;
713 replace_with = GetGraph()->InsertOppositeCondition(condition, select);
717 if (replace_with != nullptr) {
718 select->ReplaceWith(replace_with);