/external/valgrind/main/memcheck/tests/x86/ |
more_x86_fp.c | 88 int16_t fpuc; local 104 asm volatile ("fstcw %0" : "=m" (fpuc)); 106 int16_t tmp = (fpuc & ~0x0c00) | (i << 10); 112 asm volatile ("fldcw %0" : : "m" (fpuc)); 158 printf("fpuc=%04x fpus=%04x fptag=%04x\n",\ 159 (env)->fpuc,\ 167 uint16_t fpuc; member in struct:__anon16776 177 uint16_t fpuc; member in struct:__anon16777
|
/external/qemu/target-i386/ |
machine.c | 28 uint16_t fptag, fpus, fpuc, fpregs_format; local 43 fpuc = env->fpuc; 50 qemu_put_be16s(f, &fpuc); 153 uint16_t fpus, fpuc, fptag, fpregs_format; local 164 qemu_get_be16s(f, &fpuc); 196 env->fpuc = fpuc;
|
fpu_helper.c | 127 if (env->fpus & (~env->fpuc & FPUC_EM)) 529 return env->fpuc; 537 switch(env->fpuc & RC_MASK) { 553 switch((env->fpuc >> 8) & 3) { 570 env->fpuc = val; 589 env->fpuc = 0x37f; 968 cpu_stl_data(env, ptr, env->fpuc); 977 cpu_stw_data(env, ptr, env->fpuc); 992 env->fpuc = cpu_lduw_data(env, ptr); 997 env->fpuc = cpu_lduw_data(env, ptr) [all...] |
kvm.c | 379 fpu.fcw = env->fpuc; 488 env->fpuc = fpu.fcw;
|
hax-all.c | 1000 env->fpuc = fpu.fcw; 1020 fpu.fcw = env->fpuc;
|
helper.c | 526 env->fpuc = 0x37f; 802 env->fpuc, [all...] |
cpu.h | 766 unsigned int fpuc; member in struct:CPUX86State [all...] |
/external/valgrind/main/memcheck/tests/amd64/ |
more_x87_fp.c | 98 int16_t fpuc; local 114 asm volatile ("fstcw %0" : "=m" (fpuc)); 116 int16_t tmp = (fpuc & ~0x0c00) | (i << 10); 122 asm volatile ("fldcw %0" : : "m" (fpuc)); 168 printf("fpuc=%04x fpus=%04x fptag=%04x\n",\ 169 (env)->fpuc,\ 177 uint16_t fpuc; member in struct:__anon16738 187 uint16_t fpuc; member in struct:__anon16739
|
/external/valgrind/main/VEX/test/ |
test-amd64.c | 618 int16_t fpuc; local 634 asm volatile ("fstcw %0" : "=m" (fpuc)); 636 short zz = (fpuc & ~0x0c00) | (i << 10); 642 asm volatile ("fldcw %0" : : "m" (fpuc)); 688 printf("fpuc=%04x fpus=%04x fptag=%04x\n",\ 689 (env)->fpuc,\ 697 uint16_t fpuc; member in struct:__anon16024 707 uint16_t fpuc; member in struct:__anon16025 [all...] |
test-i386.c | 580 int16_t fpuc; local 596 asm volatile ("fstcw %0" : "=m" (fpuc)); 598 int16_t tmp = (fpuc & ~0x0c00) | (i << 10); 604 asm volatile ("fldcw %0" : : "m" (fpuc)); 650 printf("fpuc=%04x fpus=%04x fptag=%04x\n",\ 651 (env)->fpuc,\ 659 uint16_t fpuc; member in struct:__anon16026 669 uint16_t fpuc; member in struct:__anon16027 [all...] |
/external/qemu/ |
gdbstub.c | 548 case 16: GET_REG32(env->fpuc); 607 case 16: env->fpuc = ldl_p(mem_buf); return 4; [all...] |