Searched refs:rs_src2 (Results 1 – 2 of 2) sorted by relevance
/art/compiler/dex/quick/x86/ |
D | target_x86.cc | 1598 void X86Mir2Lir::GenMultiplyVectorSignedByte(RegStorage rs_dest_src1, RegStorage rs_src2) { in GenMultiplyVectorSignedByte() argument 1618 NewLIR2(kX86MovdqaRR, rs_src1_high_tmp.GetReg(), rs_src2.GetReg()); in GenMultiplyVectorSignedByte() 1623 NewLIR2(kX86PmullwRR, rs_dest_src1.GetReg(), rs_src2.GetReg()); in GenMultiplyVectorSignedByte() 1639 void X86Mir2Lir::GenMultiplyVectorLong(RegStorage rs_dest_src1, RegStorage rs_src2) { in GenMultiplyVectorLong() argument 1677 bool both_operands_same = (rs_dest_src1.GetReg() == rs_src2.GetReg()); in GenMultiplyVectorLong() 1686 NewLIR2(kX86MovdqaRR, rs_tmp_vector_2.GetReg(), rs_src2.GetReg()); in GenMultiplyVectorLong() 1692 NewLIR2(kX86PmuludqRR, rs_dest_src1.GetReg(), rs_src2.GetReg()); in GenMultiplyVectorLong() 1701 NewLIR2(kX86PmuludqRR, rs_tmp_vector_1.GetReg(), rs_src2.GetReg()); in GenMultiplyVectorLong() 1710 RegStorage rs_src2 = RegStorage::Solo128(mir->dalvikInsn.vB); in GenMultiplyVector() local 1727 GenMultiplyVectorSignedByte(rs_dest_src1, rs_src2); in GenMultiplyVector() [all …]
|
D | codegen_x86.h | 500 void GenMultiplyVectorSignedByte(RegStorage rs_dest_src1, RegStorage rs_src2); 501 void GenMultiplyVectorLong(RegStorage rs_dest_src1, RegStorage rs_src2);
|