HomeSort by relevance Sort by last modified time
    Searched refs:fpstt (Results 1 - 9 of 9) sorted by null

  /external/qemu/target-i386/
exec.h 54 #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;
machine.c 44 fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
256 env->fpstt = (fpus >> 11) & 7;
op_helper.c     [all...]
hax-all.c 950 env->fpstt = (fpu.fsw >> 11) & 7;
971 fpu.fsw |= (env->fpstt & 7) << 11;
kvm.c 376 fpu.fsw |= (env->fpstt & 7) << 11;
484 env->fpstt = (fpu.fsw >> 11) & 7;
cpu.h 594 unsigned int fpstt; /* top of stack index */ member in struct:CPUX86State
helper.c 802 (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11,
803 env->fpstt,
    [all...]
  /external/qemu/
kqemu.c 410 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;
gdbstub.c 547 case 17: GET_REG32((env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11);
608 env->fpstt = (tmp >> 11) & 7;
    [all...]

Completed in 591 milliseconds