• Home
  • Raw
  • Download

Lines Matching refs:EAX

381         stl_kernel(env->tr.base + (0x28 + 0 * 4), EAX);  in switch_tss()
395 stw_kernel(env->tr.base + (0x12 + 0 * 2), EAX); in switch_tss()
447 EAX = new_regs[0]; in switch_tss()
1235 qemu_log(" EAX=" TARGET_FMT_lx, EAX); in do_interrupt()
1425 stq_phys(sm_state + 0x7ff8, EAX); in do_smm_enter()
1458 stl_phys(sm_state + 0x7fd0, EAX); in do_smm_enter()
1551 EAX = ldq_phys(sm_state + 0x7ff8); in helper_rsm()
1588 EAX = ldl_phys(sm_state + 0x7fd0); in helper_rsm()
1643 num = (EAX & 0xffff); in helper_divb_AL()
1653 EAX = (EAX & ~0xffff) | (r << 8) | q; in helper_divb_AL()
1660 num = (int16_t)EAX; in helper_idivb_AL()
1670 EAX = (EAX & ~0xffff) | (r << 8) | q; in helper_idivb_AL()
1677 num = (EAX & 0xffff) | ((EDX & 0xffff) << 16); in helper_divw_AX()
1687 EAX = (EAX & ~0xffff) | q; in helper_divw_AX()
1695 num = (EAX & 0xffff) | ((EDX & 0xffff) << 16); in helper_idivw_AX()
1705 EAX = (EAX & ~0xffff) | q; in helper_idivw_AX()
1714 num = ((uint32_t)EAX) | ((uint64_t)((uint32_t)EDX) << 32); in helper_divl_EAX()
1723 EAX = (uint32_t)q; in helper_divl_EAX()
1732 num = ((uint32_t)EAX) | ((uint64_t)((uint32_t)EDX) << 32); in helper_idivl_EAX()
1741 EAX = (uint32_t)q; in helper_idivl_EAX()
1751 al = EAX & 0xff; in helper_aam()
1754 EAX = (EAX & ~0xffff) | al | (ah << 8); in helper_aam()
1761 al = EAX & 0xff; in helper_aad()
1762 ah = (EAX >> 8) & 0xff; in helper_aad()
1764 EAX = (EAX & ~0xffff) | al; in helper_aad()
1776 al = EAX & 0xff; in helper_aaa()
1777 ah = (EAX >> 8) & 0xff; in helper_aaa()
1788 EAX = (EAX & ~0xffff) | al | (ah << 8); in helper_aaa()
1800 al = EAX & 0xff; in helper_aas()
1801 ah = (EAX >> 8) & 0xff; in helper_aas()
1812 EAX = (EAX & ~0xffff) | al | (ah << 8); in helper_aas()
1824 al = EAX & 0xff; in helper_daa()
1835 EAX = (EAX & ~0xff) | al; in helper_daa()
1851 al = EAX & 0xff; in helper_das()
1865 EAX = (EAX & ~0xff) | al; in helper_das()
1889 if (d == (((uint64_t)EDX << 32) | (uint32_t)EAX)) { in helper_cmpxchg8b()
1896 EAX = (uint32_t)d; in helper_cmpxchg8b()
1913 if (d0 == EAX && d1 == EDX) { in helper_cmpxchg16b()
1922 EAX = d0; in helper_cmpxchg16b()
1944 cpu_x86_cpuid(env, (uint32_t)EAX, (uint32_t)ECX, &eax, &ebx, &ecx, &edx); in helper_cpuid()
1945 EAX = eax; in helper_cpuid()
3002 EAX = (uint32_t)(val); in helper_rdtsc()
3032 val = ((uint32_t)EAX) | ((uint64_t)((uint32_t)EDX) << 32); in helper_wrmsr()
3294 EAX = (uint32_t)(val); in helper_rdmsr()
4622 mulu64(&r0, &r1, EAX, t0); in helper_mulq_EAX_T0()
4623 EAX = r0; in helper_mulq_EAX_T0()
4633 muls64(&r0, &r1, EAX, t0); in helper_imulq_EAX_T0()
4634 EAX = r0; in helper_imulq_EAX_T0()
4656 r0 = EAX; in helper_divq_EAX()
4660 EAX = r0; in helper_divq_EAX()
4670 r0 = EAX; in helper_idivq_EAX()
4674 EAX = r0; in helper_idivq_EAX()
4943 addr = EAX; in helper_vmrun()
4945 addr = (uint32_t)EAX; in helper_vmrun()
4980 stq_phys(env->vm_hsave + offsetof(struct vmcb, save.rax), EAX); in helper_vmrun()
5037 EAX = ldq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rax)); in helper_vmrun()
5119 addr = EAX; in helper_vmload()
5121 addr = (uint32_t)EAX; in helper_vmload()
5154 addr = EAX; in helper_vmsave()
5156 addr = (uint32_t)EAX; in helper_vmsave()
5208 addr = EAX; in helper_invlpga()
5210 addr = (uint32_t)EAX; in helper_invlpga()
5350 stq_phys(env->vm_vmcb + offsetof(struct vmcb, save.rax), EAX); in helper_vmexit()
5392 EAX = ldq_phys(env->vm_hsave + offsetof(struct vmcb, save.rax)); in helper_vmexit()