Home
last modified time | relevance | path

Searched refs:replace_with (Results 1 – 1 of 1) sorted by relevance

/art/compiler/optimizing/
Dinstruction_simplifier.cc812 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()
[all …]