Changeset 59270 in vbox
- Timestamp:
- Jan 6, 2016 4:10:18 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllGst.h
r58170 r59270 170 170 uint8_t fEffectiveXX = (uint8_t)pWalk->Pde.u 171 171 # if PGM_GST_TYPE == PGM_TYPE_AMD64 172 & (uint8_t)pWalk->Pd e.u172 & (uint8_t)pWalk->Pdpe.u 173 173 & (uint8_t)pWalk->Pml4e.u 174 174 # endif … … 179 179 pWalk->Core.fEffectiveNX = ( pWalk->Pde.n.u1NoExecute 180 180 # if PGM_GST_TYPE == PGM_TYPE_AMD64 181 || pWalk->Pd e.n.u1NoExecute181 || pWalk->Pdpe.lm.u1NoExecute 182 182 || pWalk->Pml4e.n.u1NoExecute 183 183 # endif … … 221 221 & (uint8_t)pWalk->Pde.u 222 222 # if PGM_GST_TYPE == PGM_TYPE_AMD64 223 & (uint8_t)pWalk->Pd e.u223 & (uint8_t)pWalk->Pdpe.u 224 224 & (uint8_t)pWalk->Pml4e.u 225 225 # endif … … 231 231 || pWalk->Pde.n.u1NoExecute 232 232 # if PGM_GST_TYPE == PGM_TYPE_AMD64 233 || pWalk->Pd e.n.u1NoExecute233 || pWalk->Pdpe.lm.u1NoExecute 234 234 || pWalk->Pml4e.n.u1NoExecute 235 235 # endif
Note:
See TracChangeset
for help on using the changeset viewer.