Home
last modified time | relevance | path

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

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