Home
last modified time | relevance | path

Searched refs:st_index (Results 1 – 2 of 2) sorted by relevance

/qemu/target/i386/tcg/
H A Dfpu_helper.c490 void helper_ffree_STN(CPUX86State *env, int st_index) in helper_ffree_STN() argument
492 env->fptags[(env->fpstt + st_index) & 7] = 1; in helper_ffree_STN()
500 void helper_fmov_FT0_STN(CPUX86State *env, int st_index) in helper_fmov_FT0_STN() argument
502 FT0 = ST(st_index); in helper_fmov_FT0_STN()
505 void helper_fmov_ST0_STN(CPUX86State *env, int st_index) in helper_fmov_ST0_STN() argument
507 ST0 = ST(st_index); in helper_fmov_ST0_STN()
510 void helper_fmov_STN_ST0(CPUX86State *env, int st_index) in helper_fmov_STN_ST0() argument
512 ST(st_index) = ST0; in helper_fmov_STN_ST0()
515 void helper_fxchg_ST0_STN(CPUX86State *env, int st_index) in helper_fxchg_ST0_STN() argument
519 tmp = ST(st_index); in helper_fxchg_ST0_STN()
616 helper_fadd_STN_ST0(CPUX86State * env,int st_index) helper_fadd_STN_ST0() argument
623 helper_fmul_STN_ST0(CPUX86State * env,int st_index) helper_fmul_STN_ST0() argument
630 helper_fsub_STN_ST0(CPUX86State * env,int st_index) helper_fsub_STN_ST0() argument
637 helper_fsubr_STN_ST0(CPUX86State * env,int st_index) helper_fsubr_STN_ST0() argument
644 helper_fdiv_STN_ST0(CPUX86State * env,int st_index) helper_fdiv_STN_ST0() argument
652 helper_fdivr_STN_ST0(CPUX86State * env,int st_index) helper_fdivr_STN_ST0() argument
[all...]
/qemu/target/i386/
H A Dgdbstub.c142 int st_index = n - IDX_FP_REGS; in x86_cpu_gdb_read_register() local
143 int r_index = (st_index + env->fpstt) % 8; in x86_cpu_gdb_read_register()