Searched defs:input_value (Results 1 - 2 of 2) sorted by relevance

/art/compiler/optimizing/
H A Dconstant_folding.cc233 HInstruction* input_value = instruction->GetLeastConstantLeft(); local
234 if (Primitive::IsFloatingPointType(input_value->GetType()) &&
H A Dinstruction_simplifier.cc636 HInstruction* input_value = equal->GetLeastConstantLeft(); local
637 if (CmpHasBoolType(input_value, equal) && input_const->IsIntConstant()) {
643 equal->ReplaceWith(input_value);
648 equal->ReplaceWith(GetGraph()->InsertOppositeCondition(input_value, equal));
668 HInstruction* input_value = not_equal->GetLeastConstantLeft(); local
669 if (CmpHasBoolType(input_value, not_equal) && input_const->IsIntConstant()) {
675 not_equal->ReplaceWith(GetGraph()->InsertOppositeCondition(input_value, not_equal));
680 not_equal->ReplaceWith(input_value);

Completed in 32 milliseconds