Lines Matching refs:right

289                       HInstruction* right,  in HVecBinaryOperation()  argument
301 SetRawInputAt(1, right); in HVecBinaryOperation()
572 HInstruction* right, in HVecAdd() argument
576 : HVecBinaryOperation(kVecAdd, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecAdd()
578 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecAdd()
596 HInstruction* right, in HVecSaturationAdd() argument
601 kVecSaturationAdd, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecSaturationAdd()
603 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecSaturationAdd()
622 HInstruction* right, in HVecHalvingAdd() argument
628 kVecHalvingAdd, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecHalvingAdd()
630 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecHalvingAdd()
662 HInstruction* right, in HVecSub() argument
666 : HVecBinaryOperation(kVecSub, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecSub()
668 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecSub()
686 HInstruction* right, in HVecSaturationSub() argument
691 kVecSaturationSub, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecSaturationSub()
693 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecSaturationSub()
710 HInstruction* right, in HVecMul() argument
714 : HVecBinaryOperation(kVecMul, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecMul()
716 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecMul()
733 HInstruction* right, in HVecDiv() argument
737 : HVecBinaryOperation(kVecDiv, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecDiv()
739 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecDiv()
757 HInstruction* right, in HVecMin() argument
761 : HVecBinaryOperation(kVecMin, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecMin()
763 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecMin()
781 HInstruction* right, in HVecMax() argument
785 : HVecBinaryOperation(kVecMax, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecMax()
787 DCHECK(HasConsistentPackedTypes(right, packed_type)); in HVecMax()
804 HInstruction* right, in HVecAnd() argument
808 : HVecBinaryOperation(kVecAnd, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecAnd()
809 DCHECK(left->IsVecOperation() && right->IsVecOperation()); in HVecAnd()
826 HInstruction* right, in HVecAndNot() argument
831 kVecAndNot, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecAndNot()
832 DCHECK(left->IsVecOperation() && right->IsVecOperation()); in HVecAndNot()
849 HInstruction* right, in HVecOr() argument
853 : HVecBinaryOperation(kVecOr, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecOr()
854 DCHECK(left->IsVecOperation() && right->IsVecOperation()); in HVecOr()
871 HInstruction* right, in HVecXor() argument
875 : HVecBinaryOperation(kVecXor, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecXor()
876 DCHECK(left->IsVecOperation() && right->IsVecOperation()); in HVecXor()
893 HInstruction* right, in HVecShl() argument
897 : HVecBinaryOperation(kVecShl, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecShl()
915 HInstruction* right, in HVecShr() argument
919 : HVecBinaryOperation(kVecShr, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecShr()
937 HInstruction* right, in HVecUShr() argument
941 : HVecBinaryOperation(kVecUShr, allocator, left, right, packed_type, vector_length, dex_pc) { in HVecUShr()
1102 HInstruction* right, in HVecDotProd() argument
1117 DCHECK(right->IsVecOperation()); in HVecDotProd()
1119 ToSignedType(right->AsVecOperation()->GetPackedType())); in HVecDotProd()
1122 SetRawInputAt(2, right); in HVecDotProd()
1341 HInstruction* right, in HVecPredWhile() argument
1355 DCHECK(!right->IsVecOperation()); in HVecPredWhile()
1356 DCHECK(!right->IsVecPredSetOperation()); in HVecPredWhile()
1358 DCHECK(DataType::IsIntegralType(right->GetType())); in HVecPredWhile()
1360 SetRawInputAt(1, right); in HVecPredWhile()