Searched refs:mul_right (Results 1 - 5 of 5) sorted by relevance

/art/compiler/optimizing/
H A Dnodes_shared.h33 HInstruction* mul_right,
38 SetRawInputAt(kInputMulRightIndex, mul_right);
29 HMultiplyAccumulate(Primitive::Type type, InstructionKind op, HInstruction* accumulator, HInstruction* mul_left, HInstruction* mul_right, uint32_t dex_pc = kNoDexPc) argument
H A Dnodes_vector.h646 HInstruction* mul_right,
660 DCHECK(HasConsistentPackedTypes(mul_right, packed_type));
663 SetRawInputAt(kInputMulRightIndex, mul_right);
642 HVecMultiplyAccumulate(ArenaAllocator* arena, InstructionKind op, HInstruction* accumulator, HInstruction* mul_left, HInstruction* mul_right, Primitive::Type packed_type, size_t vector_length, uint32_t dex_pc = kNoDexPc) argument
H A Dcode_generator_arm64.cc2671 Register mul_right = InputRegisterAt(instr, HMultiplyAccumulate::kInputMulRightIndex); local
2690 __ Madd(res, mul_left, mul_right, accumulator);
2695 __ Mneg(res, mul_left, mul_right);
2698 __ Msub(res, mul_left, mul_right, accumulator);
H A Dcode_generator_arm.cc8521 Register mul_right =
8525 __ mla(res, mul_left, mul_right, accumulator);
8527 __ mls(res, mul_left, mul_right, accumulator);
H A Dcode_generator_arm_vixl.cc8661 vixl32::Register mul_right =
8665 __ Mla(res, mul_left, mul_right, accumulator);
8667 __ Mls(res, mul_left, mul_right, accumulator);

Completed in 99 milliseconds