Lines Matching refs:y

860                                        HInstruction* y,  in NewIntegralMinMax()  argument
867 minmax = new (allocator) HMin(type, x, y, cursor->GetDexPc()); in NewIntegralMinMax()
869 minmax = new (allocator) HMax(type, x, y, cursor->GetDexPc()); in NewIntegralMinMax()
2788 HBinaryOperation* y; in TryHandleAssociativeAndCommutativeOperation() local
2792 y = left->AsBinaryOperation(); in TryHandleAssociativeAndCommutativeOperation()
2795 y = right->AsBinaryOperation(); in TryHandleAssociativeAndCommutativeOperation()
2804 if (!y->HasOnlyOneNonEnvironmentUse()) { in TryHandleAssociativeAndCommutativeOperation()
2810 HConstant* const1 = y->GetConstantRight(); in TryHandleAssociativeAndCommutativeOperation()
2819 instruction->ReplaceInput(y->GetLeastConstantLeft(), 0); in TryHandleAssociativeAndCommutativeOperation()
2830 static int64_t ComputeAddition(DataType::Type type, int64_t x, int64_t y) { in ComputeAddition() argument
2833 return HAdd::Compute<int32_t>(x, y); in ComputeAddition()
2836 return HAdd::Compute<int64_t>(x, y); in ComputeAddition()
2870 HBinaryOperation* y = (AsAddOrSub(left) != nullptr) in TrySubtractionChainSimplification() local
2876 if ((y == nullptr) || !y->HasOnlyOneNonEnvironmentUse()) { in TrySubtractionChainSimplification()
2880 left = y->GetLeft(); in TrySubtractionChainSimplification()
2881 HConstant* const1 = left->IsConstant() ? left->AsConstant() : y->GetRight()->AsConstant(); in TrySubtractionChainSimplification()
2886 HInstruction* x = (const1 == left) ? y->GetRight() : left; in TrySubtractionChainSimplification()
2894 bool is_y_negated = (y == right) && instruction->IsSub(); in TrySubtractionChainSimplification()
2895 right = y->GetRight(); in TrySubtractionChainSimplification()
2896 bool is_const1_negated = is_y_negated ^ ((const1 == right) && y->IsSub()); in TrySubtractionChainSimplification()
2898 bool is_x_negated = is_y_negated ^ ((x == right) && y->IsSub()); in TrySubtractionChainSimplification()