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

/external/qemu/target-i386/
H A Dfpu_helper.c63 env->fpstt = (env->fpstt - 1) & 7;
64 env->fptags[env->fpstt] = 0; /* validate stack entry */
69 env->fptags[env->fpstt] = 1; /* invvalidate stack entry */
70 env->fpstt = (env->fpstt + 1) & 7;
183 new_fpstt = (env->fpstt - 1) & 7;
186 env->fpstt = new_fpstt;
197 new_fpstt = (env->fpstt - 1) & 7;
200 env->fpstt
[all...]
H A Dmachine.c44 fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
198 env->fpstt = (fpus >> 11) & 7;
H A Dcpu.h764 unsigned int fpstt; /* top of stack index */ member in struct:CPUX86State
1072 #define ST0 (env->fpregs[env->fpstt].d)
1073 #define ST(n) (env->fpregs[(env->fpstt + (n)) & 7].d)
H A Dhax-all.c998 env->fpstt = (fpu.fsw >> 11) & 7;
1019 fpu.fsw |= (env->fpstt & 7) << 11;
H A Dkvm.c378 fpu.fsw |= (env->fpstt & 7) << 11;
486 env->fpstt = (fpu.fsw >> 11) & 7;
H A Dhelper.c803 (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11,
804 env->fpstt,
/external/qemu/
H A Dgdbstub.c549 case 17: GET_REG32((env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11);
610 env->fpstt = (tmp >> 11) & 7;

Completed in 253 milliseconds