Searched defs:pdpe_addr (Results 1 - 1 of 1) sorted by relevance

/vbox/src/recompiler/target-i386/
H A Dhelper.c600 target_ulong pdpe_addr; local
631 pdpe_addr = ((pml4e & PHYS_ADDR_MASK) + (((addr >> 30) & 0x1ff) << 3)) &
633 pdpe = ldq_phys(pdpe_addr);
645 stl_phys_notdirty(pdpe_addr, pdpe);
651 pdpe_addr = ((env->cr[3] & ~0x1f) + ((addr >> 27) & 0x18)) &
653 pdpe = ldq_phys(pdpe_addr);
877 target_ulong pdpe_addr; local
896 pdpe_addr = ((pml4e & ~0xfff) + (((addr >> 30) & 0x1ff) << 3)) &
898 pdpe = ldq_phys(pdpe_addr);
904 pdpe_addr
[all...]

Completed in 43 milliseconds