Home
last modified time | relevance | path

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

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