/qemu/target/mips/tcg/ |
H A D | lmmi_helper.c | 56 uint64_t helper_paddsb(uint64_t fs, uint64_t ft) in helper_paddsb() argument 62 vt.d = ft; in helper_paddsb() 70 uint64_t helper_paddusb(uint64_t fs, uint64_t ft) in helper_paddusb() argument 76 vt.d = ft; in helper_paddusb() 84 uint64_t helper_paddsh(uint64_t fs, uint64_t ft) in helper_paddsh() argument 90 vt.d = ft; in helper_paddsh() 98 uint64_t helper_paddush(uint64_t fs, uint64_t ft) in helper_paddush() argument 104 vt.d = ft; in helper_paddush() 112 uint64_t helper_paddb(uint64_t fs, uint64_t ft) in helper_paddb() argument 118 vt.d = ft; in helper_paddb() [all …]
|
H A D | fpu_helper.c | 1466 uint32_t helper_float_max_s(CPUMIPSState *env, uint32_t fs, uint32_t ft) in helper_float_max_s() argument 1470 fdret = float32_maxnum(fs, ft, &env->active_fpu.fp_status); in helper_float_max_s() 1476 uint64_t helper_float_max_d(CPUMIPSState *env, uint64_t fs, uint64_t ft) in helper_float_max_d() argument 1480 fdret = float64_maxnum(fs, ft, &env->active_fpu.fp_status); in helper_float_max_d() 1486 uint32_t helper_float_maxa_s(CPUMIPSState *env, uint32_t fs, uint32_t ft) in helper_float_maxa_s() argument 1490 fdret = float32_maxnummag(fs, ft, &env->active_fpu.fp_status); in helper_float_maxa_s() 1496 uint64_t helper_float_maxa_d(CPUMIPSState *env, uint64_t fs, uint64_t ft) in helper_float_maxa_d() argument 1500 fdret = float64_maxnummag(fs, ft, &env->active_fpu.fp_status); in helper_float_maxa_d() 1506 uint32_t helper_float_min_s(CPUMIPSState *env, uint32_t fs, uint32_t ft) in helper_float_min_s() argument 1510 fdret = float32_minnum(fs, ft, &env->active_fpu.fp_status); in helper_float_min_s() [all …]
|
H A D | translate.c | 1748 int ft, int fs, int cc) \ 1760 check_cp1_registers(ctx, fs | ft); \ 1769 gen_ldcmp_fpr##bits(ctx, fp1, ft); \ 1834 int ft, int fs, int fd) \ 1839 check_cp1_registers(ctx, fs | ft | fd); \ 1842 gen_ldcmp_fpr ## bits(ctx, fp1, ft); \ 2247 static void gen_flt_ldst(DisasContext *ctx, uint32_t opc, int ft, in gen_flt_ldst() argument 2260 gen_store_fpr32(ctx, fp0, ft); in gen_flt_ldst() 2266 gen_load_fpr32(ctx, fp0, ft); in gen_flt_ldst() 2276 gen_store_fpr64(ctx, fp0, ft); in gen_flt_ldst() [all …]
|
H A D | nanomips_translate.c.inc | 2553 int32_t ft, int32_t offset) 2558 gen_load_fpr64(ctx, t0, ft);
|
/qemu/disas/ |
H A D | nanomips.c | 1592 const char *ft = FPR(ft_value, info); in ADD_D() local 1596 return img_format("ADD.D %s, %s, %s", fd, fs, ft); in ADD_D() 1617 const char *ft = FPR(ft_value, info); in ADD_S() local 1621 return img_format("ADD.S %s, %s, %s", fd, fs, ft); in ADD_S() 2613 const char *ft = FPR(ft_value, info); in BC1EQZC() local 2616 return img_format("BC1EQZC %s, %s", ft, s); in BC1EQZC() 2635 const char *ft = FPR(ft_value, info); in BC1NEZC() local 2638 return img_format("BC1NEZC %s, %s", ft, s); in BC1NEZC() 3197 const char *ft = FPR(ft_value, info); in CEIL_L_D() local 3200 return img_format("CEIL.L.D %s, %s", ft, fs); in CEIL_L_D() [all …]
|
/qemu/target/alpha/ |
H A D | vax_helper.c | 151 float32 ft, fr; in helper_sqrtf() local 153 ft = f_to_float32(env, GETPC(), t); in helper_sqrtf() 154 fr = float32_sqrt(ft, &FP_STATUS); in helper_sqrtf()
|
/qemu/tcg/ |
H A D | optimize.c | 2056 TempOptInfo *tt, *ft; in fold_movcond() local 2079 ft = arg_info(op->args[4]); in fold_movcond() 2080 z_mask = tt->z_mask | ft->z_mask; in fold_movcond() 2081 s_mask = tt->s_mask & ft->s_mask; in fold_movcond() 2083 if (ti_is_const(tt) && ti_is_const(ft)) { in fold_movcond() 2085 uint64_t fv = ti_const_val(ft); in fold_movcond()
|