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

/external/qemu/target-i386/
H A 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;
191 env->fptags[env->fpstt] = 0; /* validate stack entry */
196 env->fptags[env->fpstt] = 1; /* invvalidate stack entry */
197 env->fpstt = (env->fpstt + 1) & 7;
H A Dmachine.c44 fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
256 env->fpstt = (fpus >> 11) & 7;
H A Dop_helper.c3513 new_fpstt = (env->fpstt - 1) & 7;
3516 env->fpstt = new_fpstt;
3527 new_fpstt = (env->fpstt - 1) & 7;
3530 env->fpstt = new_fpstt;
3537 new_fpstt = (env->fpstt - 1) & 7;
3539 env->fpstt = new_fpstt;
3546 new_fpstt = (env->fpstt - 1) & 7;
3548 env->fpstt = new_fpstt;
3621 new_fpstt = (env->fpstt - 1) & 7;
3623 env->fpstt
[all...]
H A Dhax-all.c950 env->fpstt = (fpu.fsw >> 11) & 7;
971 fpu.fsw |= (env->fpstt & 7) << 11;
H A Dkvm.c376 fpu.fsw |= (env->fpstt & 7) << 11;
484 env->fpstt = (fpu.fsw >> 11) & 7;
H A Dcpu.h594 unsigned int fpstt; /* top of stack index */ member in struct:CPUX86State
H A Dhelper.c802 (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11,
803 env->fpstt,
/external/qemu/
H A Dkqemu.c410 fp->fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
421 j = env->fpstt;
437 env->fpstt = (fp->fpus >> 11) & 7;
444 j = env->fpstt;
460 fp->fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
466 j = env->fpstt;
488 env->fpstt = (fp->fpus >> 11) & 7;
494 j = env->fpstt;
H A Dgdbstub.c547 case 17: GET_REG32((env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11);
608 env->fpstt = (tmp >> 11) & 7;

Completed in 81 milliseconds