Lines Matching refs:st_index
3656 void helper_ffree_STN(int st_index)
3658 env->fptags[(env->fpstt + st_index) & 7] = 1;
3666 void helper_fmov_FT0_STN(int st_index)
3668 FT0 = ST(st_index);
3671 void helper_fmov_ST0_STN(int st_index)
3673 ST0 = ST(st_index);
3676 void helper_fmov_STN_ST0(int st_index)
3678 ST(st_index) = ST0;
3681 void helper_fxchg_ST0_STN(int st_index)
3684 tmp = ST(st_index);
3685 ST(st_index) = ST0;
3765 void helper_fadd_STN_ST0(int st_index)
3767 ST(st_index) += ST0;
3770 void helper_fmul_STN_ST0(int st_index)
3772 ST(st_index) *= ST0;
3775 void helper_fsub_STN_ST0(int st_index)
3777 ST(st_index) -= ST0;
3780 void helper_fsubr_STN_ST0(int st_index)
3783 p = &ST(st_index);
3787 void helper_fdiv_STN_ST0(int st_index)
3790 p = &ST(st_index);
3794 void helper_fdivr_STN_ST0(int st_index)
3797 p = &ST(st_index);