Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_simplifier.cc1502 HInstruction* input_other = instruction->GetLeastConstantLeft(); in VisitAdd() local
1513 instruction->ReplaceWith(input_other); in VisitAdd()
1591 HInstruction* input_other = instruction->GetLeastConstantLeft(); in VisitAnd() local
1597 (DataType::IsUnsignedType(input_other->GetType()) && in VisitAnd()
1598 ((DataType::MaxValueOfIntegralType(input_other->GetType()) & ~value) == 0))) { in VisitAnd()
1603 instruction->ReplaceWith(input_other); in VisitAnd()
1608 if (input_other->IsTypeConversion() && in VisitAnd()
1609 input_other->GetType() == DataType::Type::kInt64 && in VisitAnd()
1610 DataType::IsIntegralType(input_other->InputAt(0)->GetType()) && in VisitAnd()
1612 input_other->HasOnlyOneNonEnvironmentUse()) { in VisitAnd()
[all …]
Dinstruction_simplifier_shared.cc29 HInstruction* input_other) { in TrySimpleMultiplyAccumulatePatterns() argument
32 DCHECK_NE(input_binop, input_other); in TrySimpleMultiplyAccumulatePatterns()
41 HInstruction* input_a = input_other; in TrySimpleMultiplyAccumulatePatterns()