Lines Matching refs:rl_src1

27                                   RegLocation rl_src1, RegLocation rl_src2) {  in GenArithOpFloat()  argument
55 CallRuntimeHelperRegLocationRegLocation(kQuickFmodf, rl_src1, rl_src2, false); in GenArithOpFloat()
60 GenNegFloat(rl_dest, rl_src1); in GenArithOpFloat()
65 rl_src1 = LoadValue(rl_src1, kFPReg); in GenArithOpFloat()
68 NewLIR3(op, rl_result.reg.GetReg(), rl_src1.reg.GetReg(), rl_src2.reg.GetReg()); in GenArithOpFloat()
73 RegLocation rl_src1, RegLocation rl_src2) { in GenArithOpDouble() argument
97 CallRuntimeHelperRegLocationRegLocation(kQuickFmod, rl_src1, rl_src2, false); in GenArithOpDouble()
102 GenNegDouble(rl_dest, rl_src1); in GenArithOpDouble()
107 rl_src1 = LoadValueWide(rl_src1, kFPReg); in GenArithOpDouble()
108 DCHECK(rl_src1.wide); in GenArithOpDouble()
114 NewLIR3(op, rl_result.reg.GetReg(), rl_src1.reg.GetReg(), rl_src2.reg.GetReg()); in GenArithOpDouble()
118 void MipsMir2Lir::GenMultiplyByConstantFloat(RegLocation rl_dest, RegLocation rl_src1, in GenMultiplyByConstantFloat() argument
121 UNUSED(rl_dest, rl_src1, constant); in GenMultiplyByConstantFloat()
125 void MipsMir2Lir::GenMultiplyByConstantDouble(RegLocation rl_dest, RegLocation rl_src1, in GenMultiplyByConstantDouble() argument
128 UNUSED(rl_dest, rl_src1, constant); in GenMultiplyByConstantDouble()
208 void MipsMir2Lir::GenCmpFP(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1, in GenCmpFP() argument
244 LoadValueDirectWideFixed(rl_src1, r_tmp1); in GenCmpFP()
247 LoadValueDirectFixed(rl_src1, rs_rFARG0); in GenCmpFP()