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

  /external/qemu/target-i386/
fpu_helper.c 63 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 = new_fpstt
    [all...]
machine.c 44 fpus = (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11;
198 env->fpstt = (fpus >> 11) & 7;
cpu.h 764 unsigned int fpstt; /* top of stack index */ member in struct:CPUX86State
    [all...]
hax-all.c 998 env->fpstt = (fpu.fsw >> 11) & 7;
1019 fpu.fsw |= (env->fpstt & 7) << 11;
kvm.c 378 fpu.fsw |= (env->fpstt & 7) << 11;
486 env->fpstt = (fpu.fsw >> 11) & 7;
helper.c 803 (env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11,
804 env->fpstt,
    [all...]
  /external/qemu/
gdbstub.c 549 case 17: GET_REG32((env->fpus & ~0x3800) | (env->fpstt & 0x7) << 11);
610 env->fpstt = (tmp >> 11) & 7;
    [all...]

Completed in 377 milliseconds