Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_simplifier.cc1273 HInstruction* input_other = instruction->GetLeastConstantLeft(); in VisitAdd() local
1284 instruction->ReplaceWith(input_other); in VisitAdd()
1360 HInstruction* input_other = instruction->GetLeastConstantLeft(); in VisitAnd() local
1366 (DataType::IsUnsignedType(input_other->GetType()) && in VisitAnd()
1367 ((DataType::MaxValueOfIntegralType(input_other->GetType()) & ~value) == 0))) { in VisitAnd()
1372 instruction->ReplaceWith(input_other); in VisitAnd()
1377 if (input_other->IsTypeConversion() && in VisitAnd()
1378 input_other->GetType() == DataType::Type::kInt64 && in VisitAnd()
1379 DataType::IsIntegralType(input_other->InputAt(0)->GetType()) && in VisitAnd()
1381 input_other->HasOnlyOneNonEnvironmentUse()) { in VisitAnd()
[all …]
Dinstruction_simplifier_shared.cc27 HInstruction* input_other) { in TrySimpleMultiplyAccumulatePatterns() argument
30 DCHECK_NE(input_binop, input_other); in TrySimpleMultiplyAccumulatePatterns()
39 HInstruction* input_a = input_other; in TrySimpleMultiplyAccumulatePatterns()