Lines Matching defs:fp_hi
1870 rtx fp_lo, fp_hi, x;
1873 fp_hi = gen_reg_rtx (DFmode);
1875 emit_insn (gen_floatsidf2 (fp_hi, gen_highpart (SImode, input)));
1879 fp_hi = expand_simple_binop (DFmode, MULT, fp_hi, x, fp_hi, 0, OPTAB_DIRECT);
1883 x = expand_simple_binop (DFmode, PLUS, fp_hi, fp_lo, target,
1895 rtx fp_hi, fp_lo, int_hi, int_lo, x;
1903 fp_hi = gen_reg_rtx (SFmode);
1905 emit_insn (gen_floatsisf2 (fp_hi, int_hi));
1910 fp_hi = gen_rtx_FMA (SFmode, fp_hi, x, fp_lo);
1911 emit_move_insn (target, fp_hi);
1915 fp_hi = expand_simple_binop (SFmode, MULT, fp_hi, x, fp_hi,
1917 fp_hi = expand_simple_binop (SFmode, PLUS, fp_hi, fp_lo, target,
1919 if (!rtx_equal_p (target, fp_hi))
1920 emit_move_insn (target, fp_hi);