Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Ddead_code_elimination.cc351 HInstruction* value_to_check = nullptr; in SimplifyIfs() local
354 value_to_check = input; in SimplifyIfs()
359 value_to_check = Evaluate(first->AsCondition(), input, first->InputAt(1)); in SimplifyIfs()
361 value_to_check = Evaluate(first->AsCondition(), first->InputAt(0), input); in SimplifyIfs()
364 if (value_to_check == nullptr) { in SimplifyIfs()
370 if (value_to_check->AsIntConstant()->IsTrue()) { in SimplifyIfs()
373 DCHECK(value_to_check->AsIntConstant()->IsFalse()) in SimplifyIfs()
374 << value_to_check->AsIntConstant()->GetValue(); in SimplifyIfs()