• Home
  • Raw
  • Download

Lines Matching refs:right

230                       HInstruction* right,  in HVecBinaryOperation()  argument
242 SetRawInputAt(1, right); in HVecBinaryOperation()
513 HInstruction* right, in HVecAdd() argument
517 : HVecBinaryOperation(kVecAdd, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecAdd()
519 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecAdd()
537 HInstruction* right, in HVecSaturationAdd() argument
542 kVecSaturationAdd, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecSaturationAdd()
544 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecSaturationAdd()
563 HInstruction* right, in HVecHalvingAdd() argument
569 kVecHalvingAdd, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecHalvingAdd()
571 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecHalvingAdd()
603 HInstruction* right, in HVecSub() argument
607 : HVecBinaryOperation(kVecSub, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecSub()
609 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecSub()
627 HInstruction* right, in HVecSaturationSub() argument
632 kVecSaturationSub, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecSaturationSub()
634 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecSaturationSub()
651 HInstruction* right, in HVecMul() argument
655 : HVecBinaryOperation(kVecMul, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecMul()
657 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecMul()
674 HInstruction* right, in HVecDiv() argument
678 : HVecBinaryOperation(kVecDiv, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecDiv()
680 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecDiv()
698 HInstruction* right, in HVecMin() argument
702 : HVecBinaryOperation(kVecMin, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecMin()
704 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecMin()
722 HInstruction* right, in HVecMax() argument
726 : HVecBinaryOperation(kVecMax, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecMax()
728 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecMax()
745 HInstruction* right, in HVecAnd() argument
749 : HVecBinaryOperation(kVecAnd, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecAnd()
750 DCHECK(left->IsVecOperation() && right->IsVecOperation()); in HVecAnd()
767 HInstruction* right, in HVecAndNot() argument
772 kVecAndNot, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecAndNot()
773 DCHECK(left->IsVecOperation() && right->IsVecOperation()); in HVecAndNot()
790 HInstruction* right, in HVecOr() argument
794 : HVecBinaryOperation(kVecOr, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecOr()
795 DCHECK(left->IsVecOperation() && right->IsVecOperation()); in HVecOr()
812 HInstruction* right, in HVecXor() argument
816 : HVecBinaryOperation(kVecXor, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecXor()
817 DCHECK(left->IsVecOperation() && right->IsVecOperation()); in HVecXor()
834 HInstruction* right, in HVecShl() argument
838 : HVecBinaryOperation(kVecShl, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecShl()
856 HInstruction* right, in HVecShr() argument
860 : HVecBinaryOperation(kVecShr, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecShr()
878 HInstruction* right, in HVecUShr() argument
882 : HVecBinaryOperation(kVecUShr, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecUShr()
1043 HInstruction* right, in HVecDotProd() argument
1058 DCHECK(right->IsVecOperation()); in HVecDotProd()
1060 ToSignedType(right->AsVecOperation()->GetPackedType())); in HVecDotProd()
1063 SetRawInputAt(2, right); in HVecDotProd()