Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_simplifier.cc699 HInstruction* replace_with = nullptr; in VisitBooleanNot() local
704 replace_with = GetGraph()->GetIntConstant(0); in VisitBooleanNot()
707 replace_with = GetGraph()->GetIntConstant(1); in VisitBooleanNot()
711 replace_with = input->InputAt(0); in VisitBooleanNot()
717 replace_with = GetGraph()->InsertOppositeCondition(input->AsCondition(), bool_not); in VisitBooleanNot()
720 if (replace_with != nullptr) { in VisitBooleanNot()
721 bool_not->ReplaceWith(replace_with); in VisitBooleanNot()
728 HInstruction* replace_with = nullptr; in VisitSelect() local
745 replace_with = true_value; in VisitSelect()
749 replace_with = true_value; in VisitSelect()
[all …]