Home
last modified time | relevance | path

Searched refs:fpstt (Results 1 – 9 of 9) sorted by relevance

/external/qemu/target-i386/
Dexec.h54 #define ST0 (env->fpregs[env->fpstt].d)
55 #define ST(n) (env->fpregs[(env->fpstt + (n)) & 7].d)
190 env->fpstt = (env->fpstt - 1) & 7; in fpush()
191 env->fptags[env->fpstt] = 0; /* validate stack entry */ in fpush()
196 env->fptags[env->fpstt] = 1; /* invvalidate stack entry */ in fpop()
197 env->fpstt = (env->fpstt + 1) & 7; in fpop()
Dop_helper.c3513 new_fpstt = (env->fpstt - 1) & 7; in helper_flds_ST0()
3516 env->fpstt = new_fpstt; in helper_flds_ST0()
3527 new_fpstt = (env->fpstt - 1) & 7; in helper_fldl_ST0()
3530 env->fpstt = new_fpstt; in helper_fldl_ST0()
3537 new_fpstt = (env->fpstt - 1) & 7; in helper_fildl_ST0()
3539 env->fpstt = new_fpstt; in helper_fildl_ST0()
3546 new_fpstt = (env->fpstt - 1) & 7; in helper_fildll_ST0()
3548 env->fpstt = new_fpstt; in helper_fildll_ST0()
3621 new_fpstt = (env->fpstt - 1) & 7; in helper_fldt_ST0()
3623 env->fpstt = new_fpstt; in helper_fldt_ST0()
[all …]
Dmachine.c44 fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11; in cpu_save()
256 env->fpstt = (fpus >> 11) & 7; in cpu_load()
Dkvm.c376 fpu.fsw |= (env->fpstt & 7) << 11; in kvm_put_fpu()
484 env->fpstt = (fpu.fsw >> 11) & 7; in kvm_get_fpu()
Dhax-all.c950 env->fpstt = (fpu.fsw >> 11) & 7; in hax_get_fpu()
971 fpu.fsw |= (env->fpstt & 7) << 11; in hax_set_fpu()
Dcpu.h594 unsigned int fpstt; /* top of stack index */ member
Dhelper.c802 (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11, in cpu_dump_state()
803 env->fpstt, in cpu_dump_state()
/external/qemu/
Dkqemu.c410 fp->fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11; in restore_native_fp_frstor()
421 j = env->fpstt; in restore_native_fp_frstor()
437 env->fpstt = (fp->fpus >> 11) & 7; in save_native_fp_fsave()
444 j = env->fpstt; in save_native_fp_fsave()
460 fp->fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11; in restore_native_fp_fxrstor()
466 j = env->fpstt; in restore_native_fp_fxrstor()
488 env->fpstt = (fp->fpus >> 11) & 7; in save_native_fp_fxsave()
494 j = env->fpstt; in save_native_fp_fxsave()
Dgdbstub.c547 case 17: GET_REG32((env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11); in cpu_gdb_read_register()
608 env->fpstt = (tmp >> 11) & 7; in cpu_gdb_write_register()