Lines Matching refs:is_double

141 void X86Mir2Lir::GenLongToFP(RegLocation rl_dest, RegLocation rl_src, bool is_double) {  in GenLongToFP()  argument
176 int opcode = is_double ? kX86Fstp64M : kX86Fstp32M; in GenLongToFP()
177 int displacement = is_double ? dest_v_reg_offset + LOWORD_OFFSET : dest_v_reg_offset; in GenLongToFP()
179 AnnotateDalvikRegAccess(fstp, displacement >> 2, false /* is_load */, is_double); in GenLongToFP()
189 RegLocation rl_result = is_double ? UpdateLocWideTyped(rl_dest) : UpdateLocTyped(rl_dest); in GenLongToFP()
198 if (is_double) { in GenLongToFP()
361 …6Mir2Lir::GenRemFP(RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2, bool is_double) { in GenRemFP() argument
368 rl_src1 = is_double ? UpdateLocWide(rl_src1) : UpdateLoc(rl_src1); in GenRemFP()
369 rl_src2 = is_double ? UpdateLocWide(rl_src2) : UpdateLoc(rl_src2); in GenRemFP()
387 StoreBaseDisp(rs_rSP, src1_v_reg_offset, rl_src1.reg, is_double ? k64 : k32, in GenRemFP()
398 StoreBaseDisp(rs_rSP, src2_v_reg_offset, rl_src2.reg, is_double ? k64 : k32, in GenRemFP()
403 int fld_opcode = is_double ? kX86Fld64M : kX86Fld32M; in GenRemFP()
409 true /* is_load */, is_double /* is64bit */); in GenRemFP()
414 true /* is_load */, is_double /* is64bit */); in GenRemFP()
439 int opcode = is_double ? kX86Fst64M : kX86Fst32M; in GenRemFP()
441 AnnotateDalvikRegAccess(fst, displacement >> 2, false /* is_load */, is_double /* is64bit */); in GenRemFP()
454 RegLocation rl_result = is_double ? UpdateLocWideTyped(rl_dest) : UpdateLocTyped(rl_dest); in GenRemFP()
457 if (is_double) { in GenRemFP()
513 bool is_double) { in GenFusedFPCmpBranch() argument
519 if (is_double) { in GenFusedFPCmpBranch()
731 bool X86Mir2Lir::GenInlinedMinMaxFP(CallInfo* info, bool is_min, bool is_double) { in GenInlinedMinMaxFP() argument
732 if (is_double) { in GenInlinedMinMaxFP()