Changeset 85073 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jul 6, 2020 5:17:00 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllGst.h
r82968 r85073 132 132 # endif 133 133 134 uint32_t registerfEffective = X86_PTE_RW | X86_PTE_US | X86_PTE_PWT | X86_PTE_PCD | X86_PTE_A | 1;134 uint32_t fEffective = X86_PTE_RW | X86_PTE_US | X86_PTE_PWT | X86_PTE_PCD | X86_PTE_A | 1; 135 135 { 136 136 # if PGM_GST_TYPE == PGM_TYPE_AMD64 … … 142 142 else return PGM_GST_NAME(WalkReturnBadPhysAddr)(pVCpu, pWalk, 4, rc); 143 143 144 PX86PML4E registerpPml4e;144 PX86PML4E pPml4e; 145 145 pWalk->pPml4e = pPml4e = &pWalk->pPml4->a[(GCPtr >> X86_PML4_SHIFT) & X86_PML4_MASK]; 146 X86PML4E registerPml4e;146 X86PML4E Pml4e; 147 147 pWalk->Pml4e.u = Pml4e.u = pPml4e->u; 148 148 … … 171 171 { 172 172 # if PGM_GST_TYPE == PGM_TYPE_AMD64 || PGM_GST_TYPE == PGM_TYPE_PAE 173 PX86PDPE registerpPdpe;173 PX86PDPE pPdpe; 174 174 pWalk->pPdpe = pPdpe = &pWalk->pPdpt->a[(GCPtr >> GST_PDPT_SHIFT) & GST_PDPT_MASK]; 175 X86PDPE registerPdpe;175 X86PDPE Pdpe; 176 176 pWalk->Pdpe.u = Pdpe.u = pPdpe->u; 177 177 … … 204 204 } 205 205 { 206 PGSTPDE registerpPde;206 PGSTPDE pPde; 207 207 pWalk->pPde = pPde = &pWalk->pPd->a[(GCPtr >> GST_PD_SHIFT) & GST_PD_MASK]; 208 GSTPDE 208 GSTPDE Pde; 209 209 pWalk->Pde.u = Pde.u = pPde->u; 210 210 if (Pde.n.u1Present) { /* probable */ } … … 261 261 } 262 262 { 263 PGSTPTE registerpPte;263 PGSTPTE pPte; 264 264 pWalk->pPte = pPte = &pWalk->pPt->a[(GCPtr >> GST_PT_SHIFT) & GST_PT_MASK]; 265 GSTPTE registerPte;265 GSTPTE Pte; 266 266 pWalk->Pte.u = Pte.u = pPte->u; 267 267
Note:
See TracChangeset
for help on using the changeset viewer.