Lines Matching refs:Pde

2685         X86PDEPAE Pde;
2686 Pde.u = 0;
2687 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pde, cbEntry, &VarPDEAddr, NULL);
2699 if (fPSE && Pde.b.u1Size)
2704 Pde.u,
2705 Pde.u & X86_PDE_PAE_PG_MASK,
2706 Pde.b.u1Present ? "p " : "np",
2707 Pde.b.u1Write ? "w" : "r",
2708 Pde.b.u1User ? "u" : "s",
2709 Pde.b.u1Accessed ? "a " : "na",
2710 Pde.b.u1Dirty ? "d " : "nd",
2711 Pde.b.u3Available,
2712 Pde.b.u1Global ? (fPGE ? "g" : "G") : " ",
2713 Pde.b.u1WriteThru ? "pwt" : " ",
2714 Pde.b.u1CacheDisable ? "pcd" : " ",
2715 Pde.b.u1PAT ? "pat" : "",
2716 Pde.b.u1NoExecute ? (fNXE ? "nx" : "NX") : " ");
2722 Pde.u,
2723 Pde.u & X86_PDE_PAE_PG_MASK,
2724 Pde.n.u1Present ? "p " : "np",
2725 Pde.n.u1Write ? "w" : "r",
2726 Pde.n.u1User ? "u" : "s",
2727 Pde.n.u1Accessed ? "a " : "na",
2728 Pde.u & RT_BIT(6) ? "6 " : " ",
2729 Pde.n.u3Available,
2730 Pde.u & RT_BIT(8) ? "8" : " ",
2731 Pde.n.u1WriteThru ? "pwt" : " ",
2732 Pde.n.u1CacheDisable ? "pcd" : " ",
2733 Pde.u & RT_BIT(7) ? "7" : "",
2734 Pde.n.u1NoExecute ? (fNXE ? "nx" : "NX") : " ");
2735 if (Pde.u & UINT64_C(0x7fff000000000000))
2736 DBGCCmdHlpPrintf(pCmdHlp, " weird=%RX64", (Pde.u & UINT64_C(0x7fff000000000000)));
3005 X86PDEPAE Pde;
3006 VarCur.u.u64Number += ((VarGCPtr.u.GCFlat >> X86_PD_PAE_SHIFT) & X86_PD_PAE_MASK) * sizeof(Pde);
3007 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pde, sizeof(Pde), &VarCur, NULL);
3010 if (!Pde.n.u1Present)
3012 if (fPSE && Pde.n.u1Size)
3017 VarPTEAddr.u.u64Number = Pde.u & X86_PDE_PAE_PG_MASK;
3023 X86PDE Pde;
3024 VarCur.u.u64Number += ((VarGCPtr.u.GCFlat >> X86_PD_SHIFT) & X86_PD_MASK) * sizeof(Pde);
3025 rc = pCmdHlp->pfnMemRead(pCmdHlp, &Pde, sizeof(Pde), &VarCur, NULL);
3028 if (!Pde.n.u1Present)
3030 if (fPSE && Pde.n.u1Size)
3035 VarPTEAddr.u.u64Number = Pde.u & X86_PDE_PG_MASK;