VirtualBox

source: vbox/trunk/src/VBox/VMM/include/PGMGstDefs.h@ 84044

Last change on this file since 84044 was 82968, checked in by vboxsync, 4 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 12.5 KB
Line 
1/* $Id: PGMGstDefs.h 82968 2020-02-04 10:35:17Z vboxsync $ */
2/** @file
3 * VBox - Page Manager, Guest Paging Template - All context code.
4 */
5
6/*
7 * Copyright (C) 2006-2020 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Defined Constants And Macros *
21*******************************************************************************/
22#undef GSTPT
23#undef PGSTPT
24#undef GSTPTE
25#undef PGSTPTE
26#undef GSTPD
27#undef PGSTPD
28#undef GSTPDE
29#undef PGSTPDE
30#undef GSTPTWALK
31#undef PGSTPTWALK
32#undef PCGSTPTWALK
33#undef GST_BIG_PAGE_SIZE
34#undef GST_BIG_PAGE_OFFSET_MASK
35#undef GST_PDE_PG_MASK
36#undef GST_PDE_BIG_PG_MASK
37#undef GST_PD_SHIFT
38#undef GST_PD_MASK
39#undef GST_PTE_PG_MASK
40#undef GST_GET_PTE_SHW_FLAGS
41#undef GST_PT_SHIFT
42#undef GST_PT_MASK
43#undef GST_TOTAL_PD_ENTRIES
44#undef GST_CR3_PAGE_MASK
45#undef GST_PDPE_ENTRIES
46#undef GST_PDPT_SHIFT
47#undef GST_PDPT_MASK
48#undef GST_PDPE_PG_MASK
49#undef GST_GET_PTE_GCPHYS
50#undef GST_GET_PDE_GCPHYS
51#undef GST_GET_BIG_PDE_GCPHYS
52#undef GST_GET_PDE_SHW_FLAGS
53#undef GST_GET_BIG_PDE_SHW_FLAGS
54#undef GST_GET_BIG_PDE_SHW_FLAGS_4_PTE
55#undef GST_IS_PTE_VALID
56#undef GST_IS_PDE_VALID
57#undef GST_IS_BIG_PDE_VALID
58#undef GST_IS_PDPE_VALID
59#undef GST_IS_BIG_PDPE_VALID
60#undef GST_IS_PML4E_VALID
61#undef GST_IS_PSE_ACTIVE
62#undef GST_IS_NX_ACTIVE
63#undef BTH_IS_NP_ACTIVE
64
65#if PGM_GST_TYPE == PGM_TYPE_REAL \
66 || PGM_GST_TYPE == PGM_TYPE_PROT
67
68# if PGM_SHW_TYPE == PGM_TYPE_EPT
69# define GSTPT X86PTPAE
70# define PGSTPT PX86PTPAE
71# define GSTPTE X86PTEPAE
72# define PGSTPTE PX86PTEPAE
73# define GSTPD X86PDPAE
74# define PGSTPD PX86PDPAE
75# define GSTPDE X86PDEPAE
76# define PGSTPDE PX86PDEPAE
77# define GST_PTE_PG_MASK X86_PTE_PAE_PG_MASK
78# define GST_IS_NX_ACTIVE(pVCpu) (true && This_should_perhaps_not_be_used_in_this_context)
79# define BTH_IS_NP_ACTIVE(pVM) (true)
80# else
81# if PGM_SHW_TYPE == PGM_TYPE_32BIT /* Same as shadow paging, but no PGMSHWPTEPAE. */
82# define GSTPT X86PT
83# define PGSTPT PX86PT
84# define GSTPTE X86PTE
85# define PGSTPTE PX86PTE
86# define GSTPD X86PD
87# define PGSTPD PX86PD
88# define GSTPDE X86PDE
89# define PGSTPDE PX86PDE
90# define GST_PTE_PG_MASK X86_PTE_PG_MASK
91# else
92# define GSTPT X86PTPAE
93# define PGSTPT PX86PTPAE
94# define GSTPTE X86PTEPAE
95# define PGSTPTE PX86PTEPAE
96# define GSTPD X86PDPAE
97# define PGSTPD PX86PDPAE
98# define GSTPDE X86PDEPAE
99# define PGSTPDE PX86PDEPAE
100# define GST_PTE_PG_MASK X86_PTE_PAE_PG_MASK
101# endif
102# define GST_IS_NX_ACTIVE(pVCpu) (pgmGstIsNoExecuteActive(pVCpu))
103# if PGM_GST_TYPE == PGM_TYPE_PROT /* (comment at top of PGMAllBth.h) */
104# define BTH_IS_NP_ACTIVE(pVM) (pVM->pgm.s.fNestedPaging)
105# else
106# define BTH_IS_NP_ACTIVE(pVM) (false)
107# endif
108# endif
109# define GST_GET_PTE_GCPHYS(Pte) PGM_A20_APPLY(pVCpu, ((Pte).u & GST_PTE_PG_MASK))
110# define GST_GET_PDE_GCPHYS(Pde) (true && This_should_perhaps_not_be_used_in_this_context) //??
111# define GST_GET_BIG_PDE_GCPHYS(Pde) (true && This_should_perhaps_not_be_used_in_this_context) //??
112# define GST_GET_PTE_SHW_FLAGS(pVCpu, Pte) ((Pte).u & (X86_PTE_P | X86_PTE_RW | X86_PTE_US | X86_PTE_A | X86_PTE_D | X86_PTE_G)) /**< @todo Could return P|RW|US|A|D here without consulting the PTE. */
113# define GST_GET_PDE_SHW_FLAGS(pVCpu, Pde) (true && This_should_perhaps_not_be_used_in_this_context) //??
114# define GST_GET_BIG_PDE_SHW_FLAGS(pVCpu, Pde) (true && This_should_perhaps_not_be_used_in_this_context) //??
115# define GST_GET_BIG_PDE_SHW_FLAGS_4_PTE(pVCpu, Pde) (true && This_should_perhaps_not_be_used_in_this_context) //??
116# define GST_IS_PTE_VALID(pVCpu, Pte) (true)
117# define GST_IS_PDE_VALID(pVCpu, Pde) (true)
118# define GST_IS_BIG_PDE_VALID(pVCpu, Pde) (true)
119# define GST_IS_PDPE_VALID(pVCpu, Pdpe) (true)
120# define GST_IS_BIG_PDPE_VALID(pVCpu, Pdpe) (true)
121# define GST_IS_PML4E_VALID(pVCpu, Pml4e) (true)
122# define GST_IS_PSE_ACTIVE(pVCpu) (false && This_should_not_be_used_in_this_context)
123
124#elif PGM_GST_TYPE == PGM_TYPE_32BIT
125# define GSTPT X86PT
126# define PGSTPT PX86PT
127# define GSTPTE X86PTE
128# define PGSTPTE PX86PTE
129# define GSTPD X86PD
130# define PGSTPD PX86PD
131# define GSTPDE X86PDE
132# define PGSTPDE PX86PDE
133# define GSTPTWALK PGMPTWALKGST32BIT
134# define PGSTPTWALK PPGMPTWALKGST32BIT
135# define PCGSTPTWALK PCPGMPTWALKGST32BIT
136# define GST_BIG_PAGE_SIZE X86_PAGE_4M_SIZE
137# define GST_BIG_PAGE_OFFSET_MASK X86_PAGE_4M_OFFSET_MASK
138# define GST_PDE_PG_MASK X86_PDE_PG_MASK
139# define GST_PDE_BIG_PG_MASK X86_PDE4M_PG_MASK
140# define GST_GET_PTE_GCPHYS(Pte) PGM_A20_APPLY(pVCpu, ((Pte).u & GST_PDE_PG_MASK))
141# define GST_GET_PDE_GCPHYS(Pde) PGM_A20_APPLY(pVCpu, ((Pde).u & GST_PDE_PG_MASK))
142# define GST_GET_BIG_PDE_GCPHYS(pVM, Pde) PGM_A20_APPLY(pVCpu, pgmGstGet4MBPhysPage((pVM), Pde))
143# define GST_GET_PDE_SHW_FLAGS(pVCpu, Pde) ((Pde).u & (X86_PDE_P | X86_PDE_RW | X86_PDE_US | X86_PDE_A))
144# define GST_GET_BIG_PDE_SHW_FLAGS(pVCpu, Pde) \
145 ( ((Pde).u & (X86_PDE4M_P | X86_PDE4M_RW | X86_PDE4M_US | X86_PDE4M_A)) | PGM_PDFLAGS_BIG_PAGE )
146# define GST_GET_BIG_PDE_SHW_FLAGS_4_PTE(pVCpu, Pde) \
147 ((Pde).u & (X86_PDE4M_P | X86_PDE4M_RW | X86_PDE4M_US | X86_PDE4M_A | X86_PDE4M_D | X86_PDE4M_G))
148# define GST_PD_SHIFT X86_PD_SHIFT
149# define GST_PD_MASK X86_PD_MASK
150# define GST_TOTAL_PD_ENTRIES X86_PG_ENTRIES
151# define GST_PTE_PG_MASK X86_PTE_PG_MASK
152# define GST_GET_PTE_SHW_FLAGS(pVCpu, Pte) ((Pte).u & (X86_PTE_P | X86_PTE_RW | X86_PTE_US | X86_PTE_A | X86_PTE_D | X86_PTE_G))
153# define GST_PT_SHIFT X86_PT_SHIFT
154# define GST_PT_MASK X86_PT_MASK
155# define GST_CR3_PAGE_MASK X86_CR3_PAGE_MASK
156# define GST_IS_PTE_VALID(pVCpu, Pte) (true)
157# define GST_IS_PDE_VALID(pVCpu, Pde) (true)
158# define GST_IS_BIG_PDE_VALID(pVCpu, Pde) (!( (Pde).u & (pVCpu)->pgm.s.fGst32BitMbzBigPdeMask ))
159//# define GST_IS_PDPE_VALID(pVCpu, Pdpe) (false)
160//# define GST_IS_BIG_PDPE_VALID(pVCpu, Pdpe) (false)
161//# define GST_IS_PML4E_VALID(pVCpu, Pml4e) (false)
162# define GST_IS_PSE_ACTIVE(pVCpu) pgmGst32BitIsPageSizeExtActive(pVCpu)
163# define GST_IS_NX_ACTIVE(pVCpu) (false)
164# define BTH_IS_NP_ACTIVE(pVM) (false)
165
166#elif PGM_GST_TYPE == PGM_TYPE_PAE \
167 || PGM_GST_TYPE == PGM_TYPE_AMD64
168# define GSTPT X86PTPAE
169# define PGSTPT PX86PTPAE
170# define GSTPTE X86PTEPAE
171# define PGSTPTE PX86PTEPAE
172# define GSTPD X86PDPAE
173# define PGSTPD PX86PDPAE
174# define GSTPDE X86PDEPAE
175# define PGSTPDE PX86PDEPAE
176# define GST_BIG_PAGE_SIZE X86_PAGE_2M_SIZE
177# define GST_BIG_PAGE_OFFSET_MASK X86_PAGE_2M_OFFSET_MASK
178# define GST_PDE_PG_MASK X86_PDE_PAE_PG_MASK
179# define GST_PDE_BIG_PG_MASK X86_PDE2M_PAE_PG_MASK
180# define GST_GET_PTE_GCPHYS(Pte) PGM_A20_APPLY(pVCpu, ((Pte).u & GST_PTE_PG_MASK))
181# define GST_GET_PDE_GCPHYS(Pde) PGM_A20_APPLY(pVCpu, ((Pde).u & GST_PDE_PG_MASK))
182# define GST_GET_BIG_PDE_GCPHYS(pVM, Pde) PGM_A20_APPLY(pVCpu, ((Pde).u & GST_PDE_BIG_PG_MASK))
183# define GST_GET_PTE_SHW_FLAGS(pVCpu, Pte) ((Pte).u & (pVCpu)->pgm.s.fGst64ShadowedPteMask )
184# define GST_GET_PDE_SHW_FLAGS(pVCpu, Pde) ((Pde).u & (pVCpu)->pgm.s.fGst64ShadowedPdeMask )
185# define GST_GET_BIG_PDE_SHW_FLAGS(pVCpu, Pde) ( ((Pde).u & (pVCpu)->pgm.s.fGst64ShadowedBigPdeMask ) | PGM_PDFLAGS_BIG_PAGE)
186# define GST_GET_BIG_PDE_SHW_FLAGS_4_PTE(pVCpu, Pde) ((Pde).u & (pVCpu)->pgm.s.fGst64ShadowedBigPde4PteMask )
187
188# define GST_PD_SHIFT X86_PD_PAE_SHIFT
189# define GST_PD_MASK X86_PD_PAE_MASK
190# if PGM_GST_TYPE == PGM_TYPE_PAE
191# define GSTPTWALK PGMPTWALKGSTPAE
192# define PGSTPTWALK PPGMPTWALKGSTPAE
193# define PCGSTPTWALK PCPGMPTWALKGSTPAE
194# define GST_TOTAL_PD_ENTRIES (X86_PG_PAE_ENTRIES * X86_PG_PAE_PDPE_ENTRIES)
195# define GST_PDPE_ENTRIES X86_PG_PAE_PDPE_ENTRIES
196# define GST_PDPE_PG_MASK X86_PDPE_PG_MASK
197# define GST_PDPT_SHIFT X86_PDPT_SHIFT
198# define GST_PDPT_MASK X86_PDPT_MASK_PAE
199# define GST_PTE_PG_MASK X86_PTE_PAE_PG_MASK
200# define GST_CR3_PAGE_MASK X86_CR3_PAE_PAGE_MASK
201# define GST_IS_PTE_VALID(pVCpu, Pte) (!( (Pte).u & (pVCpu)->pgm.s.fGstPaeMbzPteMask ))
202# define GST_IS_PDE_VALID(pVCpu, Pde) (!( (Pde).u & (pVCpu)->pgm.s.fGstPaeMbzPdeMask ))
203# define GST_IS_BIG_PDE_VALID(pVCpu, Pde) (!( (Pde).u & (pVCpu)->pgm.s.fGstPaeMbzBigPdeMask ))
204# define GST_IS_PDPE_VALID(pVCpu, Pdpe) (!( (Pdpe).u & (pVCpu)->pgm.s.fGstPaeMbzPdpeMask ))
205//# define GST_IS_BIG_PDPE_VALID(pVCpu, Pdpe) (false)
206//# define GST_IS_PML4E_VALID(pVCpu, Pml4e) (false)
207# else
208# define GSTPTWALK PGMPTWALKGSTAMD64
209# define PGSTPTWALK PPGMPTWALKGSTAMD64
210# define PCGSTPTWALK PCPGMPTWALKGSTAMD64
211# define GST_TOTAL_PD_ENTRIES (X86_PG_AMD64_ENTRIES * X86_PG_AMD64_PDPE_ENTRIES)
212# define GST_PDPE_ENTRIES X86_PG_AMD64_PDPE_ENTRIES
213# define GST_PDPT_SHIFT X86_PDPT_SHIFT
214# define GST_PDPE_PG_MASK X86_PDPE_PG_MASK
215# define GST_PDPT_MASK X86_PDPT_MASK_AMD64
216# define GST_PTE_PG_MASK X86_PTE_PAE_PG_MASK
217# define GST_CR3_PAGE_MASK X86_CR3_AMD64_PAGE_MASK
218# define GST_IS_PTE_VALID(pVCpu, Pte) (!( (Pte).u & (pVCpu)->pgm.s.fGstAmd64MbzPteMask ))
219# define GST_IS_PDE_VALID(pVCpu, Pde) (!( (Pde).u & (pVCpu)->pgm.s.fGstAmd64MbzPdeMask ))
220# define GST_IS_BIG_PDE_VALID(pVCpu, Pde) (!( (Pde).u & (pVCpu)->pgm.s.fGstAmd64MbzBigPdeMask ))
221# define GST_IS_PDPE_VALID(pVCpu, Pdpe) (!( (Pdpe).u & (pVCpu)->pgm.s.fGstAmd64MbzPdpeMask ))
222# define GST_IS_BIG_PDPE_VALID(pVCpu, Pdpe) (!( (Pdpe).u & (pVCpu)->pgm.s.fGstAmd64MbzBigPdpeMask ))
223# define GST_IS_PML4E_VALID(pVCpu, Pml4e) (!( (Pml4e).u & (pVCpu)->pgm.s.fGstAmd64MbzPml4eMask ))
224# endif
225# define GST_PT_SHIFT X86_PT_PAE_SHIFT
226# define GST_PT_MASK X86_PT_PAE_MASK
227# define GST_IS_PSE_ACTIVE(pVCpu) (true)
228# define GST_IS_NX_ACTIVE(pVCpu) (pgmGstIsNoExecuteActive(pVCpu))
229# define BTH_IS_NP_ACTIVE(pVM) (false)
230#endif
231
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use