1 | /* $Id: PGMRZDynMap.cpp 43387 2012-09-21 09:40:25Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * PGM - Page Manager and Monitor, dynamic mapping cache.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008-2011 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 | * Internal Functions *
|
---|
21 | *******************************************************************************/
|
---|
22 | #define LOG_GROUP LOG_GROUP_PGM_DYNMAP
|
---|
23 | #include <VBox/vmm/pgm.h>
|
---|
24 | #include "PGMInternal.h"
|
---|
25 | #include <VBox/vmm/vm.h>
|
---|
26 | #include "PGMInline.h"
|
---|
27 | #include <VBox/err.h>
|
---|
28 | #include <VBox/param.h>
|
---|
29 | #include <VBox/sup.h>
|
---|
30 | #include <iprt/asm.h>
|
---|
31 | #include <iprt/asm-amd64-x86.h>
|
---|
32 | #include <iprt/assert.h>
|
---|
33 | #ifndef IN_RC
|
---|
34 | # include <iprt/cpuset.h>
|
---|
35 | # include <iprt/mem.h>
|
---|
36 | # include <iprt/memobj.h>
|
---|
37 | # include <iprt/mp.h>
|
---|
38 | # include <iprt/semaphore.h>
|
---|
39 | # include <iprt/spinlock.h>
|
---|
40 | #endif
|
---|
41 | #include <iprt/string.h>
|
---|
42 |
|
---|
43 |
|
---|
44 | /*******************************************************************************
|
---|
45 | * Defined Constants And Macros *
|
---|
46 | *******************************************************************************/
|
---|
47 | #ifdef IN_RING0
|
---|
48 | /** The max size of the mapping cache (in pages). */
|
---|
49 | # define PGMR0DYNMAP_MAX_PAGES ((16*_1M) >> PAGE_SHIFT)
|
---|
50 | /** The small segment size that is adopted on out-of-memory conditions with a
|
---|
51 | * single big segment. */
|
---|
52 | # define PGMR0DYNMAP_SMALL_SEG_PAGES 128
|
---|
53 | /** The number of pages we reserve per CPU. */
|
---|
54 | # define PGMR0DYNMAP_PAGES_PER_CPU 256
|
---|
55 | /** The minimum number of pages we reserve per CPU.
|
---|
56 | * This must be equal or larger than the autoset size. */
|
---|
57 | # define PGMR0DYNMAP_PAGES_PER_CPU_MIN 64
|
---|
58 | /** Calcs the overload threshold (safety margin). Current set at 50%. */
|
---|
59 | # define PGMR0DYNMAP_CALC_OVERLOAD(cPages) ((cPages) / 2)
|
---|
60 | /** The number of guard pages.
|
---|
61 | * @remarks Never do tuning of the hashing or whatnot with a strict build! */
|
---|
62 | # if defined(VBOX_STRICT)
|
---|
63 | # define PGMR0DYNMAP_GUARD_PAGES 1
|
---|
64 | # else
|
---|
65 | # define PGMR0DYNMAP_GUARD_PAGES 0
|
---|
66 | # endif
|
---|
67 | #endif /* IN_RING0 */
|
---|
68 | /** The dummy physical address of guard pages. */
|
---|
69 | #define PGMR0DYNMAP_GUARD_PAGE_HCPHYS UINT32_C(0x7777feed)
|
---|
70 | /** The dummy reference count of guard pages. (Must be non-zero.) */
|
---|
71 | #define PGMR0DYNMAP_GUARD_PAGE_REF_COUNT INT32_C(0x7777feed)
|
---|
72 | #if 0
|
---|
73 | /** Define this to just clear the present bit on guard pages.
|
---|
74 | * The alternative is to replace the entire PTE with an bad not-present
|
---|
75 | * PTE. Either way, XNU will screw us. :-/ */
|
---|
76 | # define PGMR0DYNMAP_GUARD_NP
|
---|
77 | #endif
|
---|
78 | /** The dummy PTE value for a page. */
|
---|
79 | #define PGMR0DYNMAP_GUARD_PAGE_LEGACY_PTE X86_PTE_PG_MASK
|
---|
80 | /** The dummy PTE value for a page. */
|
---|
81 | #define PGMR0DYNMAP_GUARD_PAGE_PAE_PTE UINT64_MAX /*X86_PTE_PAE_PG_MASK*/
|
---|
82 |
|
---|
83 | #ifdef IN_RING0 /* Note! Assertions causes panics if preemption is disabled,
|
---|
84 | * disable this to work around that. */
|
---|
85 | /**
|
---|
86 | * Acquire the spinlock.
|
---|
87 | * This will declare a temporary variable and expands to two statements!
|
---|
88 | */
|
---|
89 | # define PGMRZDYNMAP_SPINLOCK_ACQUIRE(pThis) \
|
---|
90 | RTSpinlockAcquire((pThis)->hSpinlock)
|
---|
91 |
|
---|
92 | /**
|
---|
93 | * Releases the spinlock.
|
---|
94 | */
|
---|
95 | # define PGMRZDYNMAP_SPINLOCK_RELEASE(pThis) \
|
---|
96 | RTSpinlockRelease((pThis)->hSpinlock)
|
---|
97 |
|
---|
98 | /**
|
---|
99 | * Re-acquires the spinlock.
|
---|
100 | */
|
---|
101 | # define PGMRZDYNMAP_SPINLOCK_REACQUIRE(pThis) \
|
---|
102 | RTSpinlockAcquire((pThis)->hSpinlock)
|
---|
103 | #else
|
---|
104 | # define PGMRZDYNMAP_SPINLOCK_ACQUIRE(pThis) do { } while (0)
|
---|
105 | # define PGMRZDYNMAP_SPINLOCK_RELEASE(pThis) do { } while (0)
|
---|
106 | # define PGMRZDYNMAP_SPINLOCK_REACQUIRE(pThis) do { } while (0)
|
---|
107 | #endif
|
---|
108 |
|
---|
109 |
|
---|
110 | /** Converts a PGMCPUM::AutoSet pointer into a PVMCPU. */
|
---|
111 | #define PGMRZDYNMAP_SET_2_VMCPU(pSet) (RT_FROM_MEMBER(pSet, VMCPU, pgm.s.AutoSet))
|
---|
112 |
|
---|
113 | /** Converts a PGMCPUM::AutoSet pointer into a PVM. */
|
---|
114 | #define PGMRZDYNMAP_SET_2_VM(pSet) (PGMRZDYNMAP_SET_2_VMCPU(pSet)->CTX_SUFF(pVM))
|
---|
115 |
|
---|
116 | /** Converts a PGMCPUM::AutoSet pointer into a PVM. */
|
---|
117 | #ifdef IN_RC
|
---|
118 | # define PGMRZDYNMAP_SET_2_DYNMAP(pSet) (PGMRZDYNMAP_SET_2_VM(pSet)->pgm.s.pRCDynMap)
|
---|
119 | #else
|
---|
120 | # define PGMRZDYNMAP_SET_2_DYNMAP(pSet) (g_pPGMR0DynMap)
|
---|
121 | #endif
|
---|
122 |
|
---|
123 | /**
|
---|
124 | * Gets the set index of the current CPU.
|
---|
125 | *
|
---|
126 | * This always returns 0 when in raw-mode context because there is only ever
|
---|
127 | * one EMT in that context (at least presently).
|
---|
128 | */
|
---|
129 | #ifdef IN_RC
|
---|
130 | # define PGMRZDYNMAP_CUR_CPU() (0)
|
---|
131 | #else
|
---|
132 | # define PGMRZDYNMAP_CUR_CPU() RTMpCpuIdToSetIndex(RTMpCpuId())
|
---|
133 | #endif
|
---|
134 |
|
---|
135 | /** PGMRZDYNMAP::u32Magic. (Jens Christian Bugge Wesseltoft) */
|
---|
136 | #define PGMRZDYNMAP_MAGIC UINT32_C(0x19640201)
|
---|
137 |
|
---|
138 |
|
---|
139 | /** Zaps an set entry. */
|
---|
140 | #define PGMRZDYNMAP_ZAP_ENTRY(pEntry) \
|
---|
141 | do \
|
---|
142 | { \
|
---|
143 | (pEntry)->iPage = UINT16_MAX; \
|
---|
144 | (pEntry)->cRefs = 0; \
|
---|
145 | (pEntry)->cInlinedRefs = 0; \
|
---|
146 | (pEntry)->cUnrefs = 0; \
|
---|
147 | } while (0)
|
---|
148 |
|
---|
149 |
|
---|
150 | /** @def PGMRZDYNMAP_STRICT_RELEASE
|
---|
151 | * Define this to force pages to be released and make non-present ASAP after
|
---|
152 | * use. This should not normally be enabled as it is a bit expensive. */
|
---|
153 | #if 0 || defined(DOXYGEN_RUNNING)
|
---|
154 | # define PGMRZDYNMAP_STRICT_RELEASE
|
---|
155 | #endif
|
---|
156 |
|
---|
157 |
|
---|
158 | /*******************************************************************************
|
---|
159 | * Structures and Typedefs *
|
---|
160 | *******************************************************************************/
|
---|
161 | #ifdef IN_RING0
|
---|
162 | /**
|
---|
163 | * Ring-0 dynamic mapping cache segment.
|
---|
164 | *
|
---|
165 | * The dynamic mapping cache can be extended with additional segments if the
|
---|
166 | * load is found to be too high. This done the next time a VM is created, under
|
---|
167 | * the protection of the init mutex. The arrays is reallocated and the new
|
---|
168 | * segment is added to the end of these. Nothing is rehashed of course, as the
|
---|
169 | * indexes / addresses must remain unchanged.
|
---|
170 | *
|
---|
171 | * This structure is only modified while owning the init mutex or during module
|
---|
172 | * init / term.
|
---|
173 | */
|
---|
174 | typedef struct PGMR0DYNMAPSEG
|
---|
175 | {
|
---|
176 | /** Pointer to the next segment. */
|
---|
177 | struct PGMR0DYNMAPSEG *pNext;
|
---|
178 | /** The memory object for the virtual address range that we're abusing. */
|
---|
179 | RTR0MEMOBJ hMemObj;
|
---|
180 | /** The start page in the cache. (I.e. index into the arrays.) */
|
---|
181 | uint16_t iPage;
|
---|
182 | /** The number of pages this segment contributes. */
|
---|
183 | uint16_t cPages;
|
---|
184 | /** The number of page tables. */
|
---|
185 | uint16_t cPTs;
|
---|
186 | /** The memory objects for the page tables. */
|
---|
187 | RTR0MEMOBJ ahMemObjPTs[1];
|
---|
188 | } PGMR0DYNMAPSEG;
|
---|
189 | /** Pointer to a ring-0 dynamic mapping cache segment. */
|
---|
190 | typedef PGMR0DYNMAPSEG *PPGMR0DYNMAPSEG;
|
---|
191 |
|
---|
192 |
|
---|
193 | /**
|
---|
194 | * Ring-0 dynamic mapping cache entry.
|
---|
195 | *
|
---|
196 | * @sa PGMRZDYNMAPENTRY, PGMRCDYNMAPENTRY.
|
---|
197 | */
|
---|
198 | typedef struct PGMR0DYNMAPENTRY
|
---|
199 | {
|
---|
200 | /** The physical address of the currently mapped page.
|
---|
201 | * This is duplicate for three reasons: cache locality, cache policy of the PT
|
---|
202 | * mappings and sanity checks. */
|
---|
203 | RTHCPHYS HCPhys;
|
---|
204 | /** Pointer to the page. */
|
---|
205 | void *pvPage;
|
---|
206 | /** The number of references. */
|
---|
207 | int32_t volatile cRefs;
|
---|
208 | /** PTE pointer union. */
|
---|
209 | union PGMR0DYNMAPENTRY_PPTE
|
---|
210 | {
|
---|
211 | /** PTE pointer, 32-bit legacy version. */
|
---|
212 | PX86PTE pLegacy;
|
---|
213 | /** PTE pointer, PAE version. */
|
---|
214 | PX86PTEPAE pPae;
|
---|
215 | /** PTE pointer, the void version. */
|
---|
216 | void *pv;
|
---|
217 | } uPte;
|
---|
218 | /** CPUs that haven't invalidated this entry after it's last update. */
|
---|
219 | RTCPUSET PendingSet;
|
---|
220 | } PGMR0DYNMAPENTRY;
|
---|
221 | /** Pointer a mapping cache entry for the ring-0.
|
---|
222 | * @sa PPGMRZDYNMAPENTRY, PPGMRCDYNMAPENTRY, */
|
---|
223 | typedef PGMR0DYNMAPENTRY *PPGMR0DYNMAPENTRY;
|
---|
224 |
|
---|
225 |
|
---|
226 | /**
|
---|
227 | * Dynamic mapping cache for ring-0.
|
---|
228 | *
|
---|
229 | * This is initialized during VMMR0 module init but no segments are allocated
|
---|
230 | * at that time. Segments will be added when the first VM is started and
|
---|
231 | * removed again when the last VM shuts down, thus avoid consuming memory while
|
---|
232 | * dormant. At module termination, the remaining bits will be freed up.
|
---|
233 | *
|
---|
234 | * @sa PPGMRZDYNMAP, PGMRCDYNMAP.
|
---|
235 | */
|
---|
236 | typedef struct PGMR0DYNMAP
|
---|
237 | {
|
---|
238 | /** The usual magic number / eye catcher (PGMRZDYNMAP_MAGIC). */
|
---|
239 | uint32_t u32Magic;
|
---|
240 | /** Spinlock serializing the normal operation of the cache. */
|
---|
241 | RTSPINLOCK hSpinlock;
|
---|
242 | /** Array for tracking and managing the pages. */
|
---|
243 | PPGMR0DYNMAPENTRY paPages;
|
---|
244 | /** The cache size given as a number of pages. */
|
---|
245 | uint32_t cPages;
|
---|
246 | /** Whether it's 32-bit legacy or PAE/AMD64 paging mode. */
|
---|
247 | bool fLegacyMode;
|
---|
248 | /** The current load.
|
---|
249 | * This does not include guard pages. */
|
---|
250 | uint32_t cLoad;
|
---|
251 | /** The max load ever.
|
---|
252 | * This is maintained to trigger the adding of more mapping space. */
|
---|
253 | uint32_t cMaxLoad;
|
---|
254 | /** Initialization / termination lock. */
|
---|
255 | RTSEMFASTMUTEX hInitLock;
|
---|
256 | /** The number of guard pages. */
|
---|
257 | uint32_t cGuardPages;
|
---|
258 | /** The number of users (protected by hInitLock). */
|
---|
259 | uint32_t cUsers;
|
---|
260 | /** Array containing a copy of the original page tables.
|
---|
261 | * The entries are either X86PTE or X86PTEPAE according to fLegacyMode. */
|
---|
262 | void *pvSavedPTEs;
|
---|
263 | /** List of segments. */
|
---|
264 | PPGMR0DYNMAPSEG pSegHead;
|
---|
265 | /** The paging mode. */
|
---|
266 | SUPPAGINGMODE enmPgMode;
|
---|
267 | } PGMR0DYNMAP;
|
---|
268 |
|
---|
269 |
|
---|
270 | /**
|
---|
271 | * Paging level data.
|
---|
272 | */
|
---|
273 | typedef struct PGMR0DYNMAPPGLVL
|
---|
274 | {
|
---|
275 | uint32_t cLevels; /**< The number of levels. */
|
---|
276 | struct
|
---|
277 | {
|
---|
278 | RTHCPHYS HCPhys; /**< The address of the page for the current level,
|
---|
279 | * i.e. what hMemObj/hMapObj is currently mapping. */
|
---|
280 | RTHCPHYS fPhysMask; /**< Mask for extracting HCPhys from uEntry. */
|
---|
281 | RTR0MEMOBJ hMemObj; /**< Memory object for HCPhys, PAGE_SIZE. */
|
---|
282 | RTR0MEMOBJ hMapObj; /**< Mapping object for hMemObj. */
|
---|
283 | uint32_t fPtrShift; /**< The pointer shift count. */
|
---|
284 | uint64_t fPtrMask; /**< The mask to apply to the shifted pointer to get the table index. */
|
---|
285 | uint64_t fAndMask; /**< And mask to check entry flags. */
|
---|
286 | uint64_t fResMask; /**< The result from applying fAndMask. */
|
---|
287 | union
|
---|
288 | {
|
---|
289 | void *pv; /**< hMapObj address. */
|
---|
290 | PX86PGUINT paLegacy; /**< Legacy table view. */
|
---|
291 | PX86PGPAEUINT paPae; /**< PAE/AMD64 table view. */
|
---|
292 | } u;
|
---|
293 | } a[4];
|
---|
294 | } PGMR0DYNMAPPGLVL;
|
---|
295 | /** Pointer to paging level data. */
|
---|
296 | typedef PGMR0DYNMAPPGLVL *PPGMR0DYNMAPPGLVL;
|
---|
297 | #endif
|
---|
298 |
|
---|
299 | /** Mapping cache entry for the current context.
|
---|
300 | * @sa PGMR0DYNMAPENTRY, PGMRCDYNMAPENTRY */
|
---|
301 | typedef CTX_MID(PGM,DYNMAPENTRY) PGMRZDYNMAPENTRY;
|
---|
302 | /** Pointer a mapping cache entry for the current context.
|
---|
303 | * @sa PGMR0DYNMAPENTRY, PGMRCDYNMAPENTRY */
|
---|
304 | typedef PGMRZDYNMAPENTRY *PPGMRZDYNMAPENTRY;
|
---|
305 |
|
---|
306 | /** Pointer to the mapping cache instance for the current context.
|
---|
307 | * @sa PGMR0DYNMAP, PGMRCDYNMAP */
|
---|
308 | typedef CTX_MID(PGM,DYNMAP) *PPGMRZDYNMAP;
|
---|
309 |
|
---|
310 |
|
---|
311 |
|
---|
312 | /*******************************************************************************
|
---|
313 | * Global Variables *
|
---|
314 | *******************************************************************************/
|
---|
315 | #ifdef IN_RING0
|
---|
316 | /** Pointer to the ring-0 dynamic mapping cache. */
|
---|
317 | static PGMR0DYNMAP *g_pPGMR0DynMap;
|
---|
318 | #endif
|
---|
319 | /** For overflow testing. */
|
---|
320 | static bool g_fPGMR0DynMapTestRunning = false;
|
---|
321 |
|
---|
322 |
|
---|
323 | /*******************************************************************************
|
---|
324 | * Internal Functions *
|
---|
325 | *******************************************************************************/
|
---|
326 | static void pgmRZDynMapReleasePage(PPGMRZDYNMAP pThis, uint32_t iPage, uint32_t cRefs);
|
---|
327 | #ifdef IN_RING0
|
---|
328 | static int pgmR0DynMapSetup(PPGMRZDYNMAP pThis);
|
---|
329 | static int pgmR0DynMapExpand(PPGMRZDYNMAP pThis);
|
---|
330 | static void pgmR0DynMapTearDown(PPGMRZDYNMAP pThis);
|
---|
331 | #endif
|
---|
332 | #if 0 /*def DEBUG*/
|
---|
333 | static int pgmR0DynMapTest(PVM pVM);
|
---|
334 | #endif
|
---|
335 |
|
---|
336 |
|
---|
337 | /**
|
---|
338 | * Initializes the auto mapping sets for a VM.
|
---|
339 | *
|
---|
340 | * @returns VINF_SUCCESS on success, VERR_PGM_DYNMAP_IPE on failure.
|
---|
341 | * @param pVM Pointer to the VM.
|
---|
342 | */
|
---|
343 | static int pgmRZDynMapInitAutoSetsForVM(PVM pVM)
|
---|
344 | {
|
---|
345 | VMCPUID idCpu = pVM->cCpus;
|
---|
346 | AssertReturn(idCpu > 0 && idCpu <= VMM_MAX_CPU_COUNT, VERR_PGM_DYNMAP_IPE);
|
---|
347 | while (idCpu-- > 0)
|
---|
348 | {
|
---|
349 | PPGMMAPSET pSet = &pVM->aCpus[idCpu].pgm.s.AutoSet;
|
---|
350 | uint32_t j = RT_ELEMENTS(pSet->aEntries);
|
---|
351 | while (j-- > 0)
|
---|
352 | {
|
---|
353 | pSet->aEntries[j].pvPage = NULL;
|
---|
354 | pSet->aEntries[j].HCPhys = NIL_RTHCPHYS;
|
---|
355 | PGMRZDYNMAP_ZAP_ENTRY(&pSet->aEntries[j]);
|
---|
356 | }
|
---|
357 | pSet->cEntries = PGMMAPSET_CLOSED;
|
---|
358 | pSet->iSubset = UINT32_MAX;
|
---|
359 | pSet->iCpu = -1;
|
---|
360 | memset(&pSet->aiHashTable[0], 0xff, sizeof(pSet->aiHashTable));
|
---|
361 | }
|
---|
362 |
|
---|
363 | return VINF_SUCCESS;
|
---|
364 | }
|
---|
365 |
|
---|
366 |
|
---|
367 | #ifdef IN_RING0
|
---|
368 |
|
---|
369 | /**
|
---|
370 | * Initializes the ring-0 dynamic mapping cache.
|
---|
371 | *
|
---|
372 | * @returns VBox status code.
|
---|
373 | */
|
---|
374 | VMMR0DECL(int) PGMR0DynMapInit(void)
|
---|
375 | {
|
---|
376 | Assert(!g_pPGMR0DynMap);
|
---|
377 |
|
---|
378 | /*
|
---|
379 | * Create and initialize the cache instance.
|
---|
380 | */
|
---|
381 | PPGMRZDYNMAP pThis = (PPGMRZDYNMAP)RTMemAllocZ(sizeof(*pThis));
|
---|
382 | AssertLogRelReturn(pThis, VERR_NO_MEMORY);
|
---|
383 | int rc = VINF_SUCCESS;
|
---|
384 | pThis->enmPgMode = SUPR0GetPagingMode();
|
---|
385 | switch (pThis->enmPgMode)
|
---|
386 | {
|
---|
387 | case SUPPAGINGMODE_32_BIT:
|
---|
388 | case SUPPAGINGMODE_32_BIT_GLOBAL:
|
---|
389 | pThis->fLegacyMode = false;
|
---|
390 | break;
|
---|
391 | case SUPPAGINGMODE_PAE:
|
---|
392 | case SUPPAGINGMODE_PAE_GLOBAL:
|
---|
393 | case SUPPAGINGMODE_PAE_NX:
|
---|
394 | case SUPPAGINGMODE_PAE_GLOBAL_NX:
|
---|
395 | case SUPPAGINGMODE_AMD64:
|
---|
396 | case SUPPAGINGMODE_AMD64_GLOBAL:
|
---|
397 | case SUPPAGINGMODE_AMD64_NX:
|
---|
398 | case SUPPAGINGMODE_AMD64_GLOBAL_NX:
|
---|
399 | pThis->fLegacyMode = false;
|
---|
400 | break;
|
---|
401 | default:
|
---|
402 | rc = VERR_PGM_DYNMAP_IPE;
|
---|
403 | break;
|
---|
404 | }
|
---|
405 | if (RT_SUCCESS(rc))
|
---|
406 | {
|
---|
407 | rc = RTSemFastMutexCreate(&pThis->hInitLock);
|
---|
408 | if (RT_SUCCESS(rc))
|
---|
409 | {
|
---|
410 | rc = RTSpinlockCreate(&pThis->hSpinlock, RTSPINLOCK_FLAGS_INTERRUPT_UNSAFE, "PGMR0DynMap");
|
---|
411 | if (RT_SUCCESS(rc))
|
---|
412 | {
|
---|
413 | pThis->u32Magic = PGMRZDYNMAP_MAGIC;
|
---|
414 | g_pPGMR0DynMap = pThis;
|
---|
415 | return VINF_SUCCESS;
|
---|
416 | }
|
---|
417 | RTSemFastMutexDestroy(pThis->hInitLock);
|
---|
418 | }
|
---|
419 | }
|
---|
420 | RTMemFree(pThis);
|
---|
421 | return rc;
|
---|
422 | }
|
---|
423 |
|
---|
424 |
|
---|
425 | /**
|
---|
426 | * Terminates the ring-0 dynamic mapping cache.
|
---|
427 | */
|
---|
428 | VMMR0DECL(void) PGMR0DynMapTerm(void)
|
---|
429 | {
|
---|
430 | /*
|
---|
431 | * Destroy the cache.
|
---|
432 | *
|
---|
433 | * There is not supposed to be any races here, the loader should
|
---|
434 | * make sure about that. So, don't bother locking anything.
|
---|
435 | *
|
---|
436 | * The VM objects should all be destroyed by now, so there is no
|
---|
437 | * dangling users or anything like that to clean up. This routine
|
---|
438 | * is just a mirror image of PGMR0DynMapInit.
|
---|
439 | */
|
---|
440 | PPGMRZDYNMAP pThis = g_pPGMR0DynMap;
|
---|
441 | if (pThis)
|
---|
442 | {
|
---|
443 | AssertPtr(pThis);
|
---|
444 | g_pPGMR0DynMap = NULL;
|
---|
445 |
|
---|
446 | /* This should *never* happen, but in case it does try not to leak memory. */
|
---|
447 | AssertLogRelMsg(!pThis->cUsers && !pThis->paPages && !pThis->pvSavedPTEs && !pThis->cPages,
|
---|
448 | ("cUsers=%d paPages=%p pvSavedPTEs=%p cPages=%#x\n",
|
---|
449 | pThis->cUsers, pThis->paPages, pThis->pvSavedPTEs, pThis->cPages));
|
---|
450 | if (pThis->paPages)
|
---|
451 | pgmR0DynMapTearDown(pThis);
|
---|
452 |
|
---|
453 | /* Free the associated resources. */
|
---|
454 | RTSemFastMutexDestroy(pThis->hInitLock);
|
---|
455 | pThis->hInitLock = NIL_RTSEMFASTMUTEX;
|
---|
456 | RTSpinlockDestroy(pThis->hSpinlock);
|
---|
457 | pThis->hSpinlock = NIL_RTSPINLOCK;
|
---|
458 | pThis->u32Magic = UINT32_MAX;
|
---|
459 | RTMemFree(pThis);
|
---|
460 | }
|
---|
461 | }
|
---|
462 |
|
---|
463 |
|
---|
464 | /**
|
---|
465 | * Initializes the dynamic mapping cache for a new VM.
|
---|
466 | *
|
---|
467 | * @returns VBox status code.
|
---|
468 | * @param pVM Pointer to the VM.
|
---|
469 | */
|
---|
470 | VMMR0DECL(int) PGMR0DynMapInitVM(PVM pVM)
|
---|
471 | {
|
---|
472 | AssertMsgReturn(!pVM->pgm.s.pvR0DynMapUsed, ("%p (pThis=%p)\n", pVM->pgm.s.pvR0DynMapUsed, g_pPGMR0DynMap), VERR_WRONG_ORDER);
|
---|
473 |
|
---|
474 | /*
|
---|
475 | * Initialize the auto sets.
|
---|
476 | */
|
---|
477 | int rc = pgmRZDynMapInitAutoSetsForVM(pVM);
|
---|
478 | if (RT_FAILURE(rc))
|
---|
479 | return rc;
|
---|
480 |
|
---|
481 | /*
|
---|
482 | * Do we need the cache? Skip the last bit if we don't.
|
---|
483 | */
|
---|
484 | if (!VMMIsHwVirtExtForced(pVM))
|
---|
485 | return VINF_SUCCESS;
|
---|
486 |
|
---|
487 | /*
|
---|
488 | * Reference and if necessary setup or expand the cache.
|
---|
489 | */
|
---|
490 | PPGMRZDYNMAP pThis = g_pPGMR0DynMap;
|
---|
491 | AssertPtrReturn(pThis, VERR_PGM_DYNMAP_IPE);
|
---|
492 | rc = RTSemFastMutexRequest(pThis->hInitLock);
|
---|
493 | AssertLogRelRCReturn(rc, rc);
|
---|
494 |
|
---|
495 | pThis->cUsers++;
|
---|
496 | if (pThis->cUsers == 1)
|
---|
497 | {
|
---|
498 | rc = pgmR0DynMapSetup(pThis);
|
---|
499 | #if 0 /*def DEBUG*/
|
---|
500 | if (RT_SUCCESS(rc))
|
---|
501 | {
|
---|
502 | rc = pgmR0DynMapTest(pVM);
|
---|
503 | if (RT_FAILURE(rc))
|
---|
504 | pgmR0DynMapTearDown(pThis);
|
---|
505 | }
|
---|
506 | #endif
|
---|
507 | }
|
---|
508 | else if (pThis->cMaxLoad > PGMR0DYNMAP_CALC_OVERLOAD(pThis->cPages - pThis->cGuardPages))
|
---|
509 | rc = pgmR0DynMapExpand(pThis);
|
---|
510 | if (RT_SUCCESS(rc))
|
---|
511 | pVM->pgm.s.pvR0DynMapUsed = pThis;
|
---|
512 | else
|
---|
513 | pThis->cUsers--;
|
---|
514 |
|
---|
515 | RTSemFastMutexRelease(pThis->hInitLock);
|
---|
516 | return rc;
|
---|
517 | }
|
---|
518 |
|
---|
519 |
|
---|
520 | /**
|
---|
521 | * Terminates the dynamic mapping cache usage for a VM.
|
---|
522 | *
|
---|
523 | * @param pVM Pointer to the VM.
|
---|
524 | */
|
---|
525 | VMMR0DECL(void) PGMR0DynMapTermVM(PVM pVM)
|
---|
526 | {
|
---|
527 | /*
|
---|
528 | * Return immediately if we're not using the cache.
|
---|
529 | */
|
---|
530 | if (!pVM->pgm.s.pvR0DynMapUsed)
|
---|
531 | return;
|
---|
532 |
|
---|
533 | PPGMRZDYNMAP pThis = g_pPGMR0DynMap;
|
---|
534 | AssertPtrReturnVoid(pThis);
|
---|
535 |
|
---|
536 | int rc = RTSemFastMutexRequest(pThis->hInitLock);
|
---|
537 | AssertLogRelRCReturnVoid(rc);
|
---|
538 |
|
---|
539 | if (pVM->pgm.s.pvR0DynMapUsed == pThis)
|
---|
540 | {
|
---|
541 | pVM->pgm.s.pvR0DynMapUsed = NULL;
|
---|
542 |
|
---|
543 | #ifdef VBOX_STRICT
|
---|
544 | PGMR0DynMapAssertIntegrity();
|
---|
545 | #endif
|
---|
546 |
|
---|
547 | /*
|
---|
548 | * Clean up and check the auto sets.
|
---|
549 | */
|
---|
550 | VMCPUID idCpu = pVM->cCpus;
|
---|
551 | while (idCpu-- > 0)
|
---|
552 | {
|
---|
553 | PPGMMAPSET pSet = &pVM->aCpus[idCpu].pgm.s.AutoSet;
|
---|
554 | uint32_t j = pSet->cEntries;
|
---|
555 | if (j <= RT_ELEMENTS(pSet->aEntries))
|
---|
556 | {
|
---|
557 | /*
|
---|
558 | * The set is open, close it.
|
---|
559 | */
|
---|
560 | while (j-- > 0)
|
---|
561 | {
|
---|
562 | int32_t cRefs = pSet->aEntries[j].cRefs;
|
---|
563 | uint32_t iPage = pSet->aEntries[j].iPage;
|
---|
564 | LogRel(("PGMR0DynMapTermVM: %d dangling refs to %#x\n", cRefs, iPage));
|
---|
565 | if (iPage < pThis->cPages && cRefs > 0)
|
---|
566 | pgmRZDynMapReleasePage(pThis, iPage, cRefs);
|
---|
567 | else
|
---|
568 | AssertLogRelMsgFailed(("cRefs=%d iPage=%#x cPages=%u\n", cRefs, iPage, pThis->cPages));
|
---|
569 |
|
---|
570 | PGMRZDYNMAP_ZAP_ENTRY(&pSet->aEntries[j]);
|
---|
571 | }
|
---|
572 | pSet->cEntries = PGMMAPSET_CLOSED;
|
---|
573 | pSet->iSubset = UINT32_MAX;
|
---|
574 | pSet->iCpu = -1;
|
---|
575 | }
|
---|
576 | else
|
---|
577 | AssertMsg(j == PGMMAPSET_CLOSED, ("cEntries=%#x\n", j));
|
---|
578 |
|
---|
579 | j = RT_ELEMENTS(pSet->aEntries);
|
---|
580 | while (j-- > 0)
|
---|
581 | {
|
---|
582 | Assert(pSet->aEntries[j].iPage == UINT16_MAX);
|
---|
583 | Assert(!pSet->aEntries[j].cRefs);
|
---|
584 | }
|
---|
585 | }
|
---|
586 |
|
---|
587 | /*
|
---|
588 | * Release our reference to the mapping cache.
|
---|
589 | */
|
---|
590 | Assert(pThis->cUsers > 0);
|
---|
591 | pThis->cUsers--;
|
---|
592 | if (!pThis->cUsers)
|
---|
593 | pgmR0DynMapTearDown(pThis);
|
---|
594 | }
|
---|
595 | else
|
---|
596 | AssertLogRelMsgFailed(("pvR0DynMapUsed=%p pThis=%p\n", pVM->pgm.s.pvR0DynMapUsed, pThis));
|
---|
597 |
|
---|
598 | RTSemFastMutexRelease(pThis->hInitLock);
|
---|
599 | }
|
---|
600 |
|
---|
601 |
|
---|
602 | /**
|
---|
603 | * Shoots down the TLBs for all the cache pages, pgmR0DynMapTearDown helper.
|
---|
604 | *
|
---|
605 | * @param idCpu The current CPU.
|
---|
606 | * @param pvUser1 The dynamic mapping cache instance.
|
---|
607 | * @param pvUser2 Unused, NULL.
|
---|
608 | */
|
---|
609 | static DECLCALLBACK(void) pgmR0DynMapShootDownTlbs(RTCPUID idCpu, void *pvUser1, void *pvUser2)
|
---|
610 | {
|
---|
611 | Assert(!pvUser2);
|
---|
612 | PPGMRZDYNMAP pThis = (PPGMRZDYNMAP)pvUser1;
|
---|
613 | Assert(pThis == g_pPGMR0DynMap);
|
---|
614 | PPGMRZDYNMAPENTRY paPages = pThis->paPages;
|
---|
615 | uint32_t iPage = pThis->cPages;
|
---|
616 | while (iPage-- > 0)
|
---|
617 | ASMInvalidatePage(paPages[iPage].pvPage);
|
---|
618 | }
|
---|
619 |
|
---|
620 |
|
---|
621 | /**
|
---|
622 | * Shoot down the TLBs for every single cache entry on all CPUs.
|
---|
623 | *
|
---|
624 | * @returns IPRT status code (RTMpOnAll).
|
---|
625 | * @param pThis The dynamic mapping cache instance.
|
---|
626 | */
|
---|
627 | static int pgmR0DynMapTlbShootDown(PPGMRZDYNMAP pThis)
|
---|
628 | {
|
---|
629 | int rc = RTMpOnAll(pgmR0DynMapShootDownTlbs, pThis, NULL);
|
---|
630 | AssertRC(rc);
|
---|
631 | if (RT_FAILURE(rc))
|
---|
632 | {
|
---|
633 | uint32_t iPage = pThis->cPages;
|
---|
634 | while (iPage-- > 0)
|
---|
635 | ASMInvalidatePage(pThis->paPages[iPage].pvPage);
|
---|
636 | }
|
---|
637 | return rc;
|
---|
638 | }
|
---|
639 |
|
---|
640 |
|
---|
641 | /**
|
---|
642 | * Calculate the new cache size based on cMaxLoad statistics.
|
---|
643 | *
|
---|
644 | * @returns Number of pages.
|
---|
645 | * @param pThis The dynamic mapping cache instance.
|
---|
646 | * @param pcMinPages The minimal size in pages.
|
---|
647 | */
|
---|
648 | static uint32_t pgmR0DynMapCalcNewSize(PPGMRZDYNMAP pThis, uint32_t *pcMinPages)
|
---|
649 | {
|
---|
650 | Assert(pThis->cPages <= PGMR0DYNMAP_MAX_PAGES);
|
---|
651 |
|
---|
652 | /* cCpus * PGMR0DYNMAP_PAGES_PER_CPU(_MIN). */
|
---|
653 | RTCPUID cCpus = RTMpGetCount();
|
---|
654 | AssertReturn(cCpus > 0 && cCpus <= RTCPUSET_MAX_CPUS, 0);
|
---|
655 | uint32_t cPages = cCpus * PGMR0DYNMAP_PAGES_PER_CPU;
|
---|
656 | uint32_t cMinPages = cCpus * PGMR0DYNMAP_PAGES_PER_CPU_MIN;
|
---|
657 |
|
---|
658 | /* adjust against cMaxLoad. */
|
---|
659 | AssertMsg(pThis->cMaxLoad <= PGMR0DYNMAP_MAX_PAGES, ("%#x\n", pThis->cMaxLoad));
|
---|
660 | if (pThis->cMaxLoad > PGMR0DYNMAP_MAX_PAGES)
|
---|
661 | pThis->cMaxLoad = 0;
|
---|
662 |
|
---|
663 | while (pThis->cMaxLoad > PGMR0DYNMAP_CALC_OVERLOAD(cPages))
|
---|
664 | cPages += PGMR0DYNMAP_PAGES_PER_CPU;
|
---|
665 |
|
---|
666 | if (pThis->cMaxLoad > cMinPages)
|
---|
667 | cMinPages = pThis->cMaxLoad;
|
---|
668 |
|
---|
669 | /* adjust against max and current size. */
|
---|
670 | if (cPages < pThis->cPages)
|
---|
671 | cPages = pThis->cPages;
|
---|
672 | cPages *= PGMR0DYNMAP_GUARD_PAGES + 1;
|
---|
673 | if (cPages > PGMR0DYNMAP_MAX_PAGES)
|
---|
674 | cPages = PGMR0DYNMAP_MAX_PAGES;
|
---|
675 |
|
---|
676 | if (cMinPages < pThis->cPages)
|
---|
677 | cMinPages = pThis->cPages;
|
---|
678 | cMinPages *= PGMR0DYNMAP_GUARD_PAGES + 1;
|
---|
679 | if (cMinPages > PGMR0DYNMAP_MAX_PAGES)
|
---|
680 | cMinPages = PGMR0DYNMAP_MAX_PAGES;
|
---|
681 |
|
---|
682 | Assert(cMinPages);
|
---|
683 | *pcMinPages = cMinPages;
|
---|
684 | return cPages;
|
---|
685 | }
|
---|
686 |
|
---|
687 |
|
---|
688 | /**
|
---|
689 | * Initializes the paging level data.
|
---|
690 | *
|
---|
691 | * @param pThis The dynamic mapping cache instance.
|
---|
692 | * @param pPgLvl The paging level data.
|
---|
693 | */
|
---|
694 | void pgmR0DynMapPagingArrayInit(PPGMRZDYNMAP pThis, PPGMR0DYNMAPPGLVL pPgLvl)
|
---|
695 | {
|
---|
696 | RTCCUINTREG cr4 = ASMGetCR4();
|
---|
697 | switch (pThis->enmPgMode)
|
---|
698 | {
|
---|
699 | case SUPPAGINGMODE_32_BIT:
|
---|
700 | case SUPPAGINGMODE_32_BIT_GLOBAL:
|
---|
701 | pPgLvl->cLevels = 2;
|
---|
702 | pPgLvl->a[0].fPhysMask = X86_CR3_PAGE_MASK;
|
---|
703 | pPgLvl->a[0].fAndMask = X86_PDE_P | X86_PDE_RW | (cr4 & X86_CR4_PSE ? X86_PDE_PS : 0);
|
---|
704 | pPgLvl->a[0].fResMask = X86_PDE_P | X86_PDE_RW;
|
---|
705 | pPgLvl->a[0].fPtrMask = X86_PD_MASK;
|
---|
706 | pPgLvl->a[0].fPtrShift = X86_PD_SHIFT;
|
---|
707 |
|
---|
708 | pPgLvl->a[1].fPhysMask = X86_PDE_PG_MASK;
|
---|
709 | pPgLvl->a[1].fAndMask = X86_PTE_P | X86_PTE_RW;
|
---|
710 | pPgLvl->a[1].fResMask = X86_PTE_P | X86_PTE_RW;
|
---|
711 | pPgLvl->a[1].fPtrMask = X86_PT_MASK;
|
---|
712 | pPgLvl->a[1].fPtrShift = X86_PT_SHIFT;
|
---|
713 | break;
|
---|
714 |
|
---|
715 | case SUPPAGINGMODE_PAE:
|
---|
716 | case SUPPAGINGMODE_PAE_GLOBAL:
|
---|
717 | case SUPPAGINGMODE_PAE_NX:
|
---|
718 | case SUPPAGINGMODE_PAE_GLOBAL_NX:
|
---|
719 | pPgLvl->cLevels = 3;
|
---|
720 | pPgLvl->a[0].fPhysMask = X86_CR3_PAE_PAGE_MASK;
|
---|
721 | pPgLvl->a[0].fPtrMask = X86_PDPT_MASK_PAE;
|
---|
722 | pPgLvl->a[0].fPtrShift = X86_PDPT_SHIFT;
|
---|
723 | pPgLvl->a[0].fAndMask = X86_PDPE_P;
|
---|
724 | pPgLvl->a[0].fResMask = X86_PDPE_P;
|
---|
725 |
|
---|
726 | pPgLvl->a[1].fPhysMask = X86_PDPE_PG_MASK;
|
---|
727 | pPgLvl->a[1].fPtrMask = X86_PD_PAE_MASK;
|
---|
728 | pPgLvl->a[1].fPtrShift = X86_PD_PAE_SHIFT;
|
---|
729 | pPgLvl->a[1].fAndMask = X86_PDE_P | X86_PDE_RW | (cr4 & X86_CR4_PSE ? X86_PDE_PS : 0);
|
---|
730 | pPgLvl->a[1].fResMask = X86_PDE_P | X86_PDE_RW;
|
---|
731 |
|
---|
732 | pPgLvl->a[2].fPhysMask = X86_PDE_PAE_PG_MASK;
|
---|
733 | pPgLvl->a[2].fPtrMask = X86_PT_PAE_MASK;
|
---|
734 | pPgLvl->a[2].fPtrShift = X86_PT_PAE_SHIFT;
|
---|
735 | pPgLvl->a[2].fAndMask = X86_PTE_P | X86_PTE_RW;
|
---|
736 | pPgLvl->a[2].fResMask = X86_PTE_P | X86_PTE_RW;
|
---|
737 | break;
|
---|
738 |
|
---|
739 | case SUPPAGINGMODE_AMD64:
|
---|
740 | case SUPPAGINGMODE_AMD64_GLOBAL:
|
---|
741 | case SUPPAGINGMODE_AMD64_NX:
|
---|
742 | case SUPPAGINGMODE_AMD64_GLOBAL_NX:
|
---|
743 | pPgLvl->cLevels = 4;
|
---|
744 | pPgLvl->a[0].fPhysMask = X86_CR3_AMD64_PAGE_MASK;
|
---|
745 | pPgLvl->a[0].fPtrShift = X86_PML4_SHIFT;
|
---|
746 | pPgLvl->a[0].fPtrMask = X86_PML4_MASK;
|
---|
747 | pPgLvl->a[0].fAndMask = X86_PML4E_P | X86_PML4E_RW;
|
---|
748 | pPgLvl->a[0].fResMask = X86_PML4E_P | X86_PML4E_RW;
|
---|
749 |
|
---|
750 | pPgLvl->a[1].fPhysMask = X86_PML4E_PG_MASK;
|
---|
751 | pPgLvl->a[1].fPtrShift = X86_PDPT_SHIFT;
|
---|
752 | pPgLvl->a[1].fPtrMask = X86_PDPT_MASK_AMD64;
|
---|
753 | pPgLvl->a[1].fAndMask = X86_PDPE_P | X86_PDPE_RW /** @todo check for X86_PDPT_PS support. */;
|
---|
754 | pPgLvl->a[1].fResMask = X86_PDPE_P | X86_PDPE_RW;
|
---|
755 |
|
---|
756 | pPgLvl->a[2].fPhysMask = X86_PDPE_PG_MASK;
|
---|
757 | pPgLvl->a[2].fPtrShift = X86_PD_PAE_SHIFT;
|
---|
758 | pPgLvl->a[2].fPtrMask = X86_PD_PAE_MASK;
|
---|
759 | pPgLvl->a[2].fAndMask = X86_PDE_P | X86_PDE_RW | (cr4 & X86_CR4_PSE ? X86_PDE_PS : 0);
|
---|
760 | pPgLvl->a[2].fResMask = X86_PDE_P | X86_PDE_RW;
|
---|
761 |
|
---|
762 | pPgLvl->a[3].fPhysMask = X86_PDE_PAE_PG_MASK;
|
---|
763 | pPgLvl->a[3].fPtrShift = X86_PT_PAE_SHIFT;
|
---|
764 | pPgLvl->a[3].fPtrMask = X86_PT_PAE_MASK;
|
---|
765 | pPgLvl->a[3].fAndMask = X86_PTE_P | X86_PTE_RW;
|
---|
766 | pPgLvl->a[3].fResMask = X86_PTE_P | X86_PTE_RW;
|
---|
767 | break;
|
---|
768 |
|
---|
769 | default:
|
---|
770 | AssertFailed();
|
---|
771 | pPgLvl->cLevels = 0;
|
---|
772 | break;
|
---|
773 | }
|
---|
774 |
|
---|
775 | for (uint32_t i = 0; i < 4; i++) /* ASSUMING array size. */
|
---|
776 | {
|
---|
777 | pPgLvl->a[i].HCPhys = NIL_RTHCPHYS;
|
---|
778 | pPgLvl->a[i].hMapObj = NIL_RTR0MEMOBJ;
|
---|
779 | pPgLvl->a[i].hMemObj = NIL_RTR0MEMOBJ;
|
---|
780 | pPgLvl->a[i].u.pv = NULL;
|
---|
781 | }
|
---|
782 | }
|
---|
783 |
|
---|
784 |
|
---|
785 | /**
|
---|
786 | * Maps a PTE.
|
---|
787 | *
|
---|
788 | * This will update the segment structure when new PTs are mapped.
|
---|
789 | *
|
---|
790 | * It also assumes that we (for paranoid reasons) wish to establish a mapping
|
---|
791 | * chain from CR3 to the PT that all corresponds to the processor we're
|
---|
792 | * currently running on, and go about this by running with interrupts disabled
|
---|
793 | * and restarting from CR3 for every change.
|
---|
794 | *
|
---|
795 | * @returns VBox status code, VINF_TRY_AGAIN if we changed any mappings and had
|
---|
796 | * to re-enable interrupts.
|
---|
797 | * @param pThis The dynamic mapping cache instance.
|
---|
798 | * @param pPgLvl The paging level structure.
|
---|
799 | * @param pvPage The page.
|
---|
800 | * @param pSeg The segment.
|
---|
801 | * @param cMaxPTs The max number of PTs expected in the segment.
|
---|
802 | * @param ppvPTE Where to store the PTE address.
|
---|
803 | */
|
---|
804 | static int pgmR0DynMapPagingArrayMapPte(PPGMRZDYNMAP pThis, PPGMR0DYNMAPPGLVL pPgLvl, void *pvPage,
|
---|
805 | PPGMR0DYNMAPSEG pSeg, uint32_t cMaxPTs, void **ppvPTE)
|
---|
806 | {
|
---|
807 | Assert(!(ASMGetFlags() & X86_EFL_IF));
|
---|
808 | void *pvEntry = NULL;
|
---|
809 | X86PGPAEUINT uEntry = ASMGetCR3();
|
---|
810 | for (uint32_t i = 0; i < pPgLvl->cLevels; i++)
|
---|
811 | {
|
---|
812 | RTHCPHYS HCPhys = uEntry & pPgLvl->a[i].fPhysMask;
|
---|
813 | if (pPgLvl->a[i].HCPhys != HCPhys)
|
---|
814 | {
|
---|
815 | /*
|
---|
816 | * Need to remap this level.
|
---|
817 | * The final level, the PT, will not be freed since that is what it's all about.
|
---|
818 | */
|
---|
819 | ASMIntEnable();
|
---|
820 | if (i + 1 == pPgLvl->cLevels)
|
---|
821 | AssertReturn(pSeg->cPTs < cMaxPTs, VERR_PGM_DYNMAP_IPE);
|
---|
822 | else
|
---|
823 | {
|
---|
824 | int rc2 = RTR0MemObjFree(pPgLvl->a[i].hMemObj, true /* fFreeMappings */); AssertRC(rc2);
|
---|
825 | pPgLvl->a[i].hMemObj = pPgLvl->a[i].hMapObj = NIL_RTR0MEMOBJ;
|
---|
826 | }
|
---|
827 |
|
---|
828 | int rc = RTR0MemObjEnterPhys(&pPgLvl->a[i].hMemObj, HCPhys, PAGE_SIZE, RTMEM_CACHE_POLICY_DONT_CARE);
|
---|
829 | if (RT_SUCCESS(rc))
|
---|
830 | {
|
---|
831 | rc = RTR0MemObjMapKernel(&pPgLvl->a[i].hMapObj, pPgLvl->a[i].hMemObj,
|
---|
832 | (void *)-1 /* pvFixed */, 0 /* cbAlignment */,
|
---|
833 | RTMEM_PROT_WRITE | RTMEM_PROT_READ);
|
---|
834 | if (RT_SUCCESS(rc))
|
---|
835 | {
|
---|
836 | pPgLvl->a[i].u.pv = RTR0MemObjAddress(pPgLvl->a[i].hMapObj);
|
---|
837 | AssertMsg(((uintptr_t)pPgLvl->a[i].u.pv & ~(uintptr_t)PAGE_OFFSET_MASK), ("%p\n", pPgLvl->a[i].u.pv));
|
---|
838 | pPgLvl->a[i].HCPhys = HCPhys;
|
---|
839 | if (i + 1 == pPgLvl->cLevels)
|
---|
840 | pSeg->ahMemObjPTs[pSeg->cPTs++] = pPgLvl->a[i].hMemObj;
|
---|
841 | ASMIntDisable();
|
---|
842 | return VINF_TRY_AGAIN;
|
---|
843 | }
|
---|
844 |
|
---|
845 | pPgLvl->a[i].hMapObj = NIL_RTR0MEMOBJ;
|
---|
846 | }
|
---|
847 | else
|
---|
848 | pPgLvl->a[i].hMemObj = NIL_RTR0MEMOBJ;
|
---|
849 | pPgLvl->a[i].HCPhys = NIL_RTHCPHYS;
|
---|
850 | return rc;
|
---|
851 | }
|
---|
852 |
|
---|
853 | /*
|
---|
854 | * The next level.
|
---|
855 | */
|
---|
856 | uint32_t iEntry = ((uint64_t)(uintptr_t)pvPage >> pPgLvl->a[i].fPtrShift) & pPgLvl->a[i].fPtrMask;
|
---|
857 | if (pThis->fLegacyMode)
|
---|
858 | {
|
---|
859 | pvEntry = &pPgLvl->a[i].u.paLegacy[iEntry];
|
---|
860 | uEntry = pPgLvl->a[i].u.paLegacy[iEntry];
|
---|
861 | }
|
---|
862 | else
|
---|
863 | {
|
---|
864 | pvEntry = &pPgLvl->a[i].u.paPae[iEntry];
|
---|
865 | uEntry = pPgLvl->a[i].u.paPae[iEntry];
|
---|
866 | }
|
---|
867 |
|
---|
868 | if ((uEntry & pPgLvl->a[i].fAndMask) != pPgLvl->a[i].fResMask)
|
---|
869 | {
|
---|
870 | LogRel(("PGMR0DynMap: internal error - iPgLvl=%u cLevels=%u uEntry=%#llx fAnd=%#llx fRes=%#llx got=%#llx\n"
|
---|
871 | "PGMR0DynMap: pv=%p pvPage=%p iEntry=%#x fLegacyMode=%RTbool\n",
|
---|
872 | i, pPgLvl->cLevels, uEntry, pPgLvl->a[i].fAndMask, pPgLvl->a[i].fResMask, uEntry & pPgLvl->a[i].fAndMask,
|
---|
873 | pPgLvl->a[i].u.pv, pvPage, iEntry, pThis->fLegacyMode));
|
---|
874 | return VERR_PGM_DYNMAP_IPE;
|
---|
875 | }
|
---|
876 | /*Log(("#%d: iEntry=%4d uEntry=%#llx pvEntry=%p HCPhys=%RHp \n", i, iEntry, uEntry, pvEntry, pPgLvl->a[i].HCPhys));*/
|
---|
877 | }
|
---|
878 |
|
---|
879 | /* made it thru without needing to remap anything. */
|
---|
880 | *ppvPTE = pvEntry;
|
---|
881 | return VINF_SUCCESS;
|
---|
882 | }
|
---|
883 |
|
---|
884 |
|
---|
885 | /**
|
---|
886 | * Sets up a guard page.
|
---|
887 | *
|
---|
888 | * @param pThis The dynamic mapping cache instance.
|
---|
889 | * @param pPage The page.
|
---|
890 | */
|
---|
891 | DECLINLINE(void) pgmR0DynMapSetupGuardPage(PPGMRZDYNMAP pThis, PPGMRZDYNMAPENTRY pPage)
|
---|
892 | {
|
---|
893 | memset(pPage->pvPage, 0xfd, PAGE_SIZE);
|
---|
894 | pPage->cRefs = PGMR0DYNMAP_GUARD_PAGE_REF_COUNT;
|
---|
895 | pPage->HCPhys = PGMR0DYNMAP_GUARD_PAGE_HCPHYS;
|
---|
896 | #ifdef PGMR0DYNMAP_GUARD_NP
|
---|
897 | ASMAtomicBitClear(pPage->uPte.pv, X86_PTE_BIT_P);
|
---|
898 | #else
|
---|
899 | if (pThis->fLegacyMode)
|
---|
900 | ASMAtomicWriteU32(&pPage->uPte.pLegacy->u, PGMR0DYNMAP_GUARD_PAGE_LEGACY_PTE);
|
---|
901 | else
|
---|
902 | ASMAtomicWriteU64(&pPage->uPte.pPae->u, PGMR0DYNMAP_GUARD_PAGE_PAE_PTE);
|
---|
903 | #endif
|
---|
904 | pThis->cGuardPages++;
|
---|
905 | }
|
---|
906 |
|
---|
907 |
|
---|
908 | /**
|
---|
909 | * Adds a new segment of the specified size.
|
---|
910 | *
|
---|
911 | * @returns VBox status code.
|
---|
912 | * @param pThis The dynamic mapping cache instance.
|
---|
913 | * @param cPages The size of the new segment, give as a page count.
|
---|
914 | */
|
---|
915 | static int pgmR0DynMapAddSeg(PPGMRZDYNMAP pThis, uint32_t cPages)
|
---|
916 | {
|
---|
917 | int rc2;
|
---|
918 | AssertReturn(ASMGetFlags() & X86_EFL_IF, VERR_PREEMPT_DISABLED);
|
---|
919 |
|
---|
920 | /*
|
---|
921 | * Do the array reallocations first.
|
---|
922 | * (The pages array has to be replaced behind the spinlock of course.)
|
---|
923 | */
|
---|
924 | void *pvSavedPTEs = RTMemRealloc(pThis->pvSavedPTEs, (pThis->fLegacyMode ? sizeof(X86PGUINT) : sizeof(X86PGPAEUINT)) * (pThis->cPages + cPages));
|
---|
925 | if (!pvSavedPTEs)
|
---|
926 | return VERR_NO_MEMORY;
|
---|
927 | pThis->pvSavedPTEs = pvSavedPTEs;
|
---|
928 |
|
---|
929 | void *pvPages = RTMemAllocZ(sizeof(pThis->paPages[0]) * (pThis->cPages + cPages));
|
---|
930 | if (!pvPages)
|
---|
931 | {
|
---|
932 | pvSavedPTEs = RTMemRealloc(pThis->pvSavedPTEs, (pThis->fLegacyMode ? sizeof(X86PGUINT) : sizeof(X86PGPAEUINT)) * pThis->cPages);
|
---|
933 | if (pvSavedPTEs)
|
---|
934 | pThis->pvSavedPTEs = pvSavedPTEs;
|
---|
935 | return VERR_NO_MEMORY;
|
---|
936 | }
|
---|
937 |
|
---|
938 | PGMRZDYNMAP_SPINLOCK_ACQUIRE(pThis);
|
---|
939 |
|
---|
940 | memcpy(pvPages, pThis->paPages, sizeof(pThis->paPages[0]) * pThis->cPages);
|
---|
941 | void *pvToFree = pThis->paPages;
|
---|
942 | pThis->paPages = (PPGMRZDYNMAPENTRY)pvPages;
|
---|
943 |
|
---|
944 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis);
|
---|
945 | RTMemFree(pvToFree);
|
---|
946 |
|
---|
947 | /*
|
---|
948 | * Allocate the segment structure and pages of memory, then touch all the pages (paranoia).
|
---|
949 | */
|
---|
950 | uint32_t cMaxPTs = cPages / (pThis->fLegacyMode ? X86_PG_ENTRIES : X86_PG_PAE_ENTRIES) + 2;
|
---|
951 | PPGMR0DYNMAPSEG pSeg = (PPGMR0DYNMAPSEG)RTMemAllocZ(RT_UOFFSETOF(PGMR0DYNMAPSEG, ahMemObjPTs[cMaxPTs]));
|
---|
952 | if (!pSeg)
|
---|
953 | return VERR_NO_MEMORY;
|
---|
954 | pSeg->pNext = NULL;
|
---|
955 | pSeg->cPages = cPages;
|
---|
956 | pSeg->iPage = pThis->cPages;
|
---|
957 | pSeg->cPTs = 0;
|
---|
958 | int rc = RTR0MemObjAllocPage(&pSeg->hMemObj, cPages << PAGE_SHIFT, false);
|
---|
959 | if (RT_SUCCESS(rc))
|
---|
960 | {
|
---|
961 | uint8_t *pbPage = (uint8_t *)RTR0MemObjAddress(pSeg->hMemObj);
|
---|
962 | AssertMsg(VALID_PTR(pbPage) && !((uintptr_t)pbPage & PAGE_OFFSET_MASK), ("%p\n", pbPage));
|
---|
963 | memset(pbPage, 0xfe, cPages << PAGE_SHIFT);
|
---|
964 |
|
---|
965 | /*
|
---|
966 | * Walk thru the pages and set them up with a mapping of their PTE and everything.
|
---|
967 | */
|
---|
968 | ASMIntDisable();
|
---|
969 | PGMR0DYNMAPPGLVL PgLvl;
|
---|
970 | pgmR0DynMapPagingArrayInit(pThis, &PgLvl);
|
---|
971 | uint32_t const iEndPage = pSeg->iPage + cPages;
|
---|
972 | for (uint32_t iPage = pSeg->iPage;
|
---|
973 | iPage < iEndPage;
|
---|
974 | iPage++, pbPage += PAGE_SIZE)
|
---|
975 | {
|
---|
976 | /* Initialize the page data. */
|
---|
977 | pThis->paPages[iPage].HCPhys = NIL_RTHCPHYS;
|
---|
978 | pThis->paPages[iPage].pvPage = pbPage;
|
---|
979 | pThis->paPages[iPage].cRefs = 0;
|
---|
980 | pThis->paPages[iPage].uPte.pPae = 0;
|
---|
981 | #ifndef IN_RC
|
---|
982 | RTCpuSetFill(&pThis->paPages[iPage].PendingSet);
|
---|
983 | #endif
|
---|
984 |
|
---|
985 | /* Map its page table, retry until we've got a clean run (paranoia). */
|
---|
986 | do
|
---|
987 | rc = pgmR0DynMapPagingArrayMapPte(pThis, &PgLvl, pbPage, pSeg, cMaxPTs,
|
---|
988 | &pThis->paPages[iPage].uPte.pv);
|
---|
989 | while (rc == VINF_TRY_AGAIN);
|
---|
990 | if (RT_FAILURE(rc))
|
---|
991 | break;
|
---|
992 |
|
---|
993 | /* Save the PTE. */
|
---|
994 | if (pThis->fLegacyMode)
|
---|
995 | ((PX86PGUINT)pThis->pvSavedPTEs)[iPage] = pThis->paPages[iPage].uPte.pLegacy->u;
|
---|
996 | else
|
---|
997 | ((PX86PGPAEUINT)pThis->pvSavedPTEs)[iPage] = pThis->paPages[iPage].uPte.pPae->u;
|
---|
998 |
|
---|
999 | #ifdef VBOX_STRICT
|
---|
1000 | /* Check that we've got the right entry. */
|
---|
1001 | RTHCPHYS HCPhysPage = RTR0MemObjGetPagePhysAddr(pSeg->hMemObj, iPage - pSeg->iPage);
|
---|
1002 | RTHCPHYS HCPhysPte = pThis->fLegacyMode
|
---|
1003 | ? pThis->paPages[iPage].uPte.pLegacy->u & X86_PTE_PG_MASK
|
---|
1004 | : pThis->paPages[iPage].uPte.pPae->u & X86_PTE_PAE_PG_MASK;
|
---|
1005 | if (HCPhysPage != HCPhysPte)
|
---|
1006 | {
|
---|
1007 | LogRel(("pgmR0DynMapAddSeg: internal error - page #%u HCPhysPage=%RHp HCPhysPte=%RHp pbPage=%p pvPte=%p\n",
|
---|
1008 | iPage - pSeg->iPage, HCPhysPage, HCPhysPte, pbPage, pThis->paPages[iPage].uPte.pv));
|
---|
1009 | rc = VERR_PGM_DYNMAP_IPE;
|
---|
1010 | break;
|
---|
1011 | }
|
---|
1012 | #endif
|
---|
1013 | } /* for each page */
|
---|
1014 | ASMIntEnable();
|
---|
1015 |
|
---|
1016 | /* cleanup non-PT mappings */
|
---|
1017 | for (uint32_t i = 0; i < PgLvl.cLevels - 1; i++)
|
---|
1018 | RTR0MemObjFree(PgLvl.a[i].hMemObj, true /* fFreeMappings */);
|
---|
1019 |
|
---|
1020 | if (RT_SUCCESS(rc))
|
---|
1021 | {
|
---|
1022 | #if PGMR0DYNMAP_GUARD_PAGES > 0
|
---|
1023 | /*
|
---|
1024 | * Setup guard pages.
|
---|
1025 | * (Note: TLBs will be shot down later on.)
|
---|
1026 | */
|
---|
1027 | uint32_t iPage = pSeg->iPage;
|
---|
1028 | while (iPage < iEndPage)
|
---|
1029 | {
|
---|
1030 | for (uint32_t iGPg = 0; iGPg < PGMR0DYNMAP_GUARD_PAGES && iPage < iEndPage; iGPg++, iPage++)
|
---|
1031 | pgmR0DynMapSetupGuardPage(pThis, &pThis->paPages[iPage]);
|
---|
1032 | iPage++; /* the guarded page */
|
---|
1033 | }
|
---|
1034 |
|
---|
1035 | /* Make sure the very last page is a guard page too. */
|
---|
1036 | iPage = iEndPage - 1;
|
---|
1037 | if (pThis->paPages[iPage].cRefs != PGMR0DYNMAP_GUARD_PAGE_REF_COUNT)
|
---|
1038 | pgmR0DynMapSetupGuardPage(pThis, &pThis->paPages[iPage]);
|
---|
1039 | #endif /* PGMR0DYNMAP_GUARD_PAGES > 0 */
|
---|
1040 |
|
---|
1041 | /*
|
---|
1042 | * Commit it by adding the segment to the list and updating the page count.
|
---|
1043 | */
|
---|
1044 | pSeg->pNext = pThis->pSegHead;
|
---|
1045 | pThis->pSegHead = pSeg;
|
---|
1046 | pThis->cPages += cPages;
|
---|
1047 | return VINF_SUCCESS;
|
---|
1048 | }
|
---|
1049 |
|
---|
1050 | /*
|
---|
1051 | * Bail out.
|
---|
1052 | */
|
---|
1053 | while (pSeg->cPTs-- > 0)
|
---|
1054 | {
|
---|
1055 | rc2 = RTR0MemObjFree(pSeg->ahMemObjPTs[pSeg->cPTs], true /* fFreeMappings */);
|
---|
1056 | AssertRC(rc2);
|
---|
1057 | pSeg->ahMemObjPTs[pSeg->cPTs] = NIL_RTR0MEMOBJ;
|
---|
1058 | }
|
---|
1059 |
|
---|
1060 | rc2 = RTR0MemObjFree(pSeg->hMemObj, true /* fFreeMappings */);
|
---|
1061 | AssertRC(rc2);
|
---|
1062 | pSeg->hMemObj = NIL_RTR0MEMOBJ;
|
---|
1063 | }
|
---|
1064 | else if (rc == VERR_NO_PAGE_MEMORY || rc == VERR_NO_PHYS_MEMORY)
|
---|
1065 | rc = VERR_NO_MEMORY;
|
---|
1066 | RTMemFree(pSeg);
|
---|
1067 |
|
---|
1068 | /* Don't bother resizing the arrays, but free them if we're the only user. */
|
---|
1069 | if (!pThis->cPages)
|
---|
1070 | {
|
---|
1071 | RTMemFree(pThis->paPages);
|
---|
1072 | pThis->paPages = NULL;
|
---|
1073 | RTMemFree(pThis->pvSavedPTEs);
|
---|
1074 | pThis->pvSavedPTEs = NULL;
|
---|
1075 | }
|
---|
1076 | return rc;
|
---|
1077 | }
|
---|
1078 |
|
---|
1079 |
|
---|
1080 | /**
|
---|
1081 | * Called by PGMR0DynMapInitVM under the init lock.
|
---|
1082 | *
|
---|
1083 | * @returns VBox status code.
|
---|
1084 | * @param pThis The dynamic mapping cache instance.
|
---|
1085 | */
|
---|
1086 | static int pgmR0DynMapSetup(PPGMRZDYNMAP pThis)
|
---|
1087 | {
|
---|
1088 | /*
|
---|
1089 | * Calc the size and add a segment of that size.
|
---|
1090 | */
|
---|
1091 | uint32_t cMinPages;
|
---|
1092 | uint32_t cPages = pgmR0DynMapCalcNewSize(pThis, &cMinPages);
|
---|
1093 | AssertReturn(cPages, VERR_PGM_DYNMAP_IPE);
|
---|
1094 | int rc = pgmR0DynMapAddSeg(pThis, cPages);
|
---|
1095 | if (rc == VERR_NO_MEMORY)
|
---|
1096 | {
|
---|
1097 | /*
|
---|
1098 | * Try adding smaller segments.
|
---|
1099 | */
|
---|
1100 | do
|
---|
1101 | rc = pgmR0DynMapAddSeg(pThis, PGMR0DYNMAP_SMALL_SEG_PAGES);
|
---|
1102 | while (RT_SUCCESS(rc) && pThis->cPages < cPages);
|
---|
1103 | if (rc == VERR_NO_MEMORY && pThis->cPages >= cMinPages)
|
---|
1104 | rc = VINF_SUCCESS;
|
---|
1105 | if (rc == VERR_NO_MEMORY)
|
---|
1106 | {
|
---|
1107 | if (pThis->cPages)
|
---|
1108 | pgmR0DynMapTearDown(pThis);
|
---|
1109 | rc = VERR_PGM_DYNMAP_SETUP_ERROR;
|
---|
1110 | }
|
---|
1111 | }
|
---|
1112 | Assert(ASMGetFlags() & X86_EFL_IF);
|
---|
1113 |
|
---|
1114 | #if PGMR0DYNMAP_GUARD_PAGES > 0
|
---|
1115 | /* paranoia */
|
---|
1116 | if (RT_SUCCESS(rc))
|
---|
1117 | pgmR0DynMapTlbShootDown(pThis);
|
---|
1118 | #endif
|
---|
1119 | return rc;
|
---|
1120 | }
|
---|
1121 |
|
---|
1122 |
|
---|
1123 | /**
|
---|
1124 | * Called by PGMR0DynMapInitVM under the init lock.
|
---|
1125 | *
|
---|
1126 | * @returns VBox status code.
|
---|
1127 | * @param pThis The dynamic mapping cache instance.
|
---|
1128 | */
|
---|
1129 | static int pgmR0DynMapExpand(PPGMRZDYNMAP pThis)
|
---|
1130 | {
|
---|
1131 | /*
|
---|
1132 | * Calc the new target size and add a segment of the appropriate size.
|
---|
1133 | */
|
---|
1134 | uint32_t cMinPages;
|
---|
1135 | uint32_t cPages = pgmR0DynMapCalcNewSize(pThis, &cMinPages);
|
---|
1136 | AssertReturn(cPages, VERR_PGM_DYNMAP_IPE);
|
---|
1137 | if (pThis->cPages >= cPages)
|
---|
1138 | return VINF_SUCCESS;
|
---|
1139 |
|
---|
1140 | uint32_t cAdd = cPages - pThis->cPages;
|
---|
1141 | int rc = pgmR0DynMapAddSeg(pThis, cAdd);
|
---|
1142 | if (rc == VERR_NO_MEMORY)
|
---|
1143 | {
|
---|
1144 | /*
|
---|
1145 | * Try adding smaller segments.
|
---|
1146 | */
|
---|
1147 | do
|
---|
1148 | rc = pgmR0DynMapAddSeg(pThis, PGMR0DYNMAP_SMALL_SEG_PAGES);
|
---|
1149 | while (RT_SUCCESS(rc) && pThis->cPages < cPages);
|
---|
1150 | if (rc == VERR_NO_MEMORY && pThis->cPages >= cMinPages)
|
---|
1151 | rc = VINF_SUCCESS;
|
---|
1152 | if (rc == VERR_NO_MEMORY)
|
---|
1153 | rc = VERR_PGM_DYNMAP_EXPAND_ERROR;
|
---|
1154 | }
|
---|
1155 | Assert(ASMGetFlags() & X86_EFL_IF);
|
---|
1156 |
|
---|
1157 | #if PGMR0DYNMAP_GUARD_PAGES > 0
|
---|
1158 | /* paranoia */
|
---|
1159 | if (RT_SUCCESS(rc))
|
---|
1160 | pgmR0DynMapTlbShootDown(pThis);
|
---|
1161 | #endif
|
---|
1162 | return rc;
|
---|
1163 | }
|
---|
1164 |
|
---|
1165 |
|
---|
1166 | /**
|
---|
1167 | * Called by PGMR0DynMapTermVM under the init lock.
|
---|
1168 | *
|
---|
1169 | * @returns VBox status code.
|
---|
1170 | * @param pThis The dynamic mapping cache instance.
|
---|
1171 | */
|
---|
1172 | static void pgmR0DynMapTearDown(PPGMRZDYNMAP pThis)
|
---|
1173 | {
|
---|
1174 | /*
|
---|
1175 | * Restore the original page table entries
|
---|
1176 | */
|
---|
1177 | PPGMRZDYNMAPENTRY paPages = pThis->paPages;
|
---|
1178 | uint32_t iPage = pThis->cPages;
|
---|
1179 | if (pThis->fLegacyMode)
|
---|
1180 | {
|
---|
1181 | X86PGUINT const *paSavedPTEs = (X86PGUINT const *)pThis->pvSavedPTEs;
|
---|
1182 | while (iPage-- > 0)
|
---|
1183 | {
|
---|
1184 | X86PGUINT uOld = paPages[iPage].uPte.pLegacy->u;
|
---|
1185 | X86PGUINT uOld2 = uOld; NOREF(uOld2);
|
---|
1186 | X86PGUINT uNew = paSavedPTEs[iPage];
|
---|
1187 | while (!ASMAtomicCmpXchgExU32(&paPages[iPage].uPte.pLegacy->u, uNew, uOld, &uOld))
|
---|
1188 | AssertMsgFailed(("uOld=%#x uOld2=%#x uNew=%#x\n", uOld, uOld2, uNew));
|
---|
1189 | Assert(paPages[iPage].uPte.pLegacy->u == paSavedPTEs[iPage]);
|
---|
1190 | }
|
---|
1191 | }
|
---|
1192 | else
|
---|
1193 | {
|
---|
1194 | X86PGPAEUINT const *paSavedPTEs = (X86PGPAEUINT const *)pThis->pvSavedPTEs;
|
---|
1195 | while (iPage-- > 0)
|
---|
1196 | {
|
---|
1197 | X86PGPAEUINT uOld = paPages[iPage].uPte.pPae->u;
|
---|
1198 | X86PGPAEUINT uOld2 = uOld; NOREF(uOld2);
|
---|
1199 | X86PGPAEUINT uNew = paSavedPTEs[iPage];
|
---|
1200 | while (!ASMAtomicCmpXchgExU64(&paPages[iPage].uPte.pPae->u, uNew, uOld, &uOld))
|
---|
1201 | AssertMsgFailed(("uOld=%#llx uOld2=%#llx uNew=%#llx\n", uOld, uOld2, uNew));
|
---|
1202 | Assert(paPages[iPage].uPte.pPae->u == paSavedPTEs[iPage]);
|
---|
1203 | }
|
---|
1204 | }
|
---|
1205 |
|
---|
1206 | /*
|
---|
1207 | * Shoot down the TLBs on all CPUs before freeing them.
|
---|
1208 | */
|
---|
1209 | pgmR0DynMapTlbShootDown(pThis);
|
---|
1210 |
|
---|
1211 | /*
|
---|
1212 | * Free the segments.
|
---|
1213 | */
|
---|
1214 | while (pThis->pSegHead)
|
---|
1215 | {
|
---|
1216 | int rc;
|
---|
1217 | PPGMR0DYNMAPSEG pSeg = pThis->pSegHead;
|
---|
1218 | pThis->pSegHead = pSeg->pNext;
|
---|
1219 |
|
---|
1220 | uint32_t iPT = pSeg->cPTs;
|
---|
1221 | while (iPT-- > 0)
|
---|
1222 | {
|
---|
1223 | rc = RTR0MemObjFree(pSeg->ahMemObjPTs[iPT], true /* fFreeMappings */); AssertRC(rc);
|
---|
1224 | pSeg->ahMemObjPTs[iPT] = NIL_RTR0MEMOBJ;
|
---|
1225 | }
|
---|
1226 | rc = RTR0MemObjFree(pSeg->hMemObj, true /* fFreeMappings */); AssertRC(rc);
|
---|
1227 | pSeg->hMemObj = NIL_RTR0MEMOBJ;
|
---|
1228 | pSeg->pNext = NULL;
|
---|
1229 | pSeg->iPage = UINT16_MAX;
|
---|
1230 | pSeg->cPages = 0;
|
---|
1231 | pSeg->cPTs = 0;
|
---|
1232 | RTMemFree(pSeg);
|
---|
1233 | }
|
---|
1234 |
|
---|
1235 | /*
|
---|
1236 | * Free the arrays and restore the initial state.
|
---|
1237 | * The cLoadMax value is left behind for the next setup.
|
---|
1238 | */
|
---|
1239 | RTMemFree(pThis->paPages);
|
---|
1240 | pThis->paPages = NULL;
|
---|
1241 | RTMemFree(pThis->pvSavedPTEs);
|
---|
1242 | pThis->pvSavedPTEs = NULL;
|
---|
1243 | pThis->cPages = 0;
|
---|
1244 | pThis->cLoad = 0;
|
---|
1245 | pThis->cGuardPages = 0;
|
---|
1246 | }
|
---|
1247 |
|
---|
1248 | #endif /* IN_RING0 */
|
---|
1249 | #ifdef IN_RC
|
---|
1250 |
|
---|
1251 | /**
|
---|
1252 | * Initializes the dynamic mapping cache in raw-mode context.
|
---|
1253 | *
|
---|
1254 | * @returns VBox status code.
|
---|
1255 | * @param pVM Pointer to the VM.
|
---|
1256 | */
|
---|
1257 | VMMRCDECL(int) PGMRCDynMapInit(PVM pVM)
|
---|
1258 | {
|
---|
1259 | /*
|
---|
1260 | * Allocate and initialize the instance data and page array.
|
---|
1261 | */
|
---|
1262 | PPGMRZDYNMAP pThis;
|
---|
1263 | size_t const cPages = MM_HYPER_DYNAMIC_SIZE / PAGE_SIZE;
|
---|
1264 | size_t const cb = RT_ALIGN_Z(sizeof(*pThis), 32)
|
---|
1265 | + sizeof(PGMRZDYNMAPENTRY) * cPages;
|
---|
1266 | int rc = MMHyperAlloc(pVM, cb, 32, MM_TAG_PGM, (void **)&pThis);
|
---|
1267 | if (RT_FAILURE(rc))
|
---|
1268 | return rc;
|
---|
1269 |
|
---|
1270 | pThis->u32Magic = PGMRZDYNMAP_MAGIC;
|
---|
1271 | pThis->paPages = RT_ALIGN_PT(pThis + 1, 32, PPGMRZDYNMAPENTRY);
|
---|
1272 | pThis->cPages = cPages;
|
---|
1273 | pThis->cLoad = 0;
|
---|
1274 | pThis->cMaxLoad = 0;
|
---|
1275 | pThis->cGuardPages = 0;
|
---|
1276 | pThis->cUsers = 1;
|
---|
1277 |
|
---|
1278 | for (size_t iPage = 0; iPage < cPages; iPage++)
|
---|
1279 | {
|
---|
1280 | pThis->paPages[iPage].HCPhys = NIL_RTHCPHYS;
|
---|
1281 | pThis->paPages[iPage].pvPage = pVM->pgm.s.pbDynPageMapBaseGC + iPage * PAGE_SIZE;
|
---|
1282 | pThis->paPages[iPage].cRefs = 0;
|
---|
1283 | pThis->paPages[iPage].uPte.pLegacy = &pVM->pgm.s.paDynPageMap32BitPTEsGC[iPage];
|
---|
1284 | pThis->paPages[iPage].uPte.pPae = (PX86PTEPAE)&pVM->pgm.s.paDynPageMapPaePTEsGC[iPage];
|
---|
1285 | }
|
---|
1286 |
|
---|
1287 | pVM->pgm.s.pRCDynMap = pThis;
|
---|
1288 |
|
---|
1289 | /*
|
---|
1290 | * Initialize the autosets the VM.
|
---|
1291 | */
|
---|
1292 | rc = pgmRZDynMapInitAutoSetsForVM(pVM);
|
---|
1293 | if (RT_FAILURE(rc))
|
---|
1294 | return rc;
|
---|
1295 |
|
---|
1296 | return VINF_SUCCESS;
|
---|
1297 | }
|
---|
1298 |
|
---|
1299 | #endif /* IN_RC */
|
---|
1300 |
|
---|
1301 | /**
|
---|
1302 | * Release references to a page, caller owns the spin lock.
|
---|
1303 | *
|
---|
1304 | * @param pThis The dynamic mapping cache instance.
|
---|
1305 | * @param iPage The page.
|
---|
1306 | * @param cRefs The number of references to release.
|
---|
1307 | */
|
---|
1308 | DECLINLINE(void) pgmRZDynMapReleasePageLocked(PPGMRZDYNMAP pThis, uint32_t iPage, int32_t cRefs)
|
---|
1309 | {
|
---|
1310 | cRefs = ASMAtomicSubS32(&pThis->paPages[iPage].cRefs, cRefs) - cRefs;
|
---|
1311 | AssertMsg(cRefs >= 0, ("%d\n", cRefs));
|
---|
1312 | if (!cRefs)
|
---|
1313 | {
|
---|
1314 | pThis->cLoad--;
|
---|
1315 | #ifdef PGMRZDYNMAP_STRICT_RELEASE
|
---|
1316 | pThis->paPages[iPage].HCPhys = NIL_RTHCPHYS;
|
---|
1317 | ASMAtomicBitClear(pThis->paPages[iPage].uPte.pv, X86_PTE_BIT_P);
|
---|
1318 | ASMInvalidatePage(pThis->paPages[iPage].pvPage);
|
---|
1319 | #endif
|
---|
1320 | }
|
---|
1321 | }
|
---|
1322 |
|
---|
1323 |
|
---|
1324 | /**
|
---|
1325 | * Release references to a page, caller does not own the spin lock.
|
---|
1326 | *
|
---|
1327 | * @param pThis The dynamic mapping cache instance.
|
---|
1328 | * @param iPage The page.
|
---|
1329 | * @param cRefs The number of references to release.
|
---|
1330 | */
|
---|
1331 | static void pgmRZDynMapReleasePage(PPGMRZDYNMAP pThis, uint32_t iPage, uint32_t cRefs)
|
---|
1332 | {
|
---|
1333 | PGMRZDYNMAP_SPINLOCK_ACQUIRE(pThis);
|
---|
1334 | pgmRZDynMapReleasePageLocked(pThis, iPage, cRefs);
|
---|
1335 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis);
|
---|
1336 | }
|
---|
1337 |
|
---|
1338 |
|
---|
1339 | /**
|
---|
1340 | * pgmR0DynMapPage worker that deals with the tedious bits.
|
---|
1341 | *
|
---|
1342 | * @returns The page index on success, UINT32_MAX on failure.
|
---|
1343 | * @param pThis The dynamic mapping cache instance.
|
---|
1344 | * @param HCPhys The address of the page to be mapped.
|
---|
1345 | * @param iPage The page index pgmR0DynMapPage hashed HCPhys to.
|
---|
1346 | * @param pVCpu The current CPU, for statistics.
|
---|
1347 | * @param pfNew Set to @c true if a new entry was made and @c false if
|
---|
1348 | * an old entry was found and reused.
|
---|
1349 | */
|
---|
1350 | static uint32_t pgmR0DynMapPageSlow(PPGMRZDYNMAP pThis, RTHCPHYS HCPhys, uint32_t iPage, PVMCPU pVCpu, bool *pfNew)
|
---|
1351 | {
|
---|
1352 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapPageSlow);
|
---|
1353 |
|
---|
1354 | /*
|
---|
1355 | * Check if any of the first 3 pages are unreferenced since the caller
|
---|
1356 | * already has made sure they aren't matching.
|
---|
1357 | */
|
---|
1358 | #ifdef VBOX_WITH_STATISTICS
|
---|
1359 | bool fLooped = false;
|
---|
1360 | #endif
|
---|
1361 | uint32_t const cPages = pThis->cPages;
|
---|
1362 | PPGMRZDYNMAPENTRY paPages = pThis->paPages;
|
---|
1363 | uint32_t iFreePage;
|
---|
1364 | if (!paPages[iPage].cRefs)
|
---|
1365 | iFreePage = iPage;
|
---|
1366 | else if (!paPages[(iPage + 1) % cPages].cRefs)
|
---|
1367 | iFreePage = (iPage + 1) % cPages;
|
---|
1368 | else if (!paPages[(iPage + 2) % cPages].cRefs)
|
---|
1369 | iFreePage = (iPage + 2) % cPages;
|
---|
1370 | else
|
---|
1371 | {
|
---|
1372 | /*
|
---|
1373 | * Search for an unused or matching entry.
|
---|
1374 | */
|
---|
1375 | iFreePage = (iPage + 3) % cPages;
|
---|
1376 | for (;;)
|
---|
1377 | {
|
---|
1378 | if (paPages[iFreePage].HCPhys == HCPhys)
|
---|
1379 | {
|
---|
1380 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapPageSlowLoopHits);
|
---|
1381 | *pfNew = false;
|
---|
1382 | return iFreePage;
|
---|
1383 | }
|
---|
1384 | if (!paPages[iFreePage].cRefs)
|
---|
1385 | break;
|
---|
1386 |
|
---|
1387 | /* advance */
|
---|
1388 | iFreePage = (iFreePage + 1) % cPages;
|
---|
1389 | if (RT_UNLIKELY(iFreePage == iPage))
|
---|
1390 | return UINT32_MAX;
|
---|
1391 | }
|
---|
1392 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapPageSlowLoopMisses);
|
---|
1393 | #ifdef VBOX_WITH_STATISTICS
|
---|
1394 | fLooped = true;
|
---|
1395 | #endif
|
---|
1396 | }
|
---|
1397 | Assert(iFreePage < cPages);
|
---|
1398 |
|
---|
1399 | #if 0 //def VBOX_WITH_STATISTICS
|
---|
1400 | /* Check for lost hits. */
|
---|
1401 | if (!fLooped)
|
---|
1402 | for (uint32_t iPage2 = (iPage + 3) % cPages; iPage2 != iPage; iPage2 = (iPage2 + 1) % cPages)
|
---|
1403 | if (paPages[iPage2].HCPhys == HCPhys)
|
---|
1404 | STAM_COUNTER_INC(&pVCpu->pgm.s.StatRZDynMapPageSlowLostHits);
|
---|
1405 | #endif
|
---|
1406 |
|
---|
1407 | /*
|
---|
1408 | * Setup the new entry.
|
---|
1409 | */
|
---|
1410 | *pfNew = true;
|
---|
1411 | /*Log6(("pgmR0DynMapPageSlow: old - %RHp %#x %#llx\n", paPages[iFreePage].HCPhys, paPages[iFreePage].cRefs, paPages[iFreePage].uPte.pPae->u));*/
|
---|
1412 | paPages[iFreePage].HCPhys = HCPhys;
|
---|
1413 | #ifndef IN_RC
|
---|
1414 | RTCpuSetFill(&paPages[iFreePage].PendingSet);
|
---|
1415 |
|
---|
1416 | if (pThis->fLegacyMode)
|
---|
1417 | #endif
|
---|
1418 | {
|
---|
1419 | X86PGUINT uOld = paPages[iFreePage].uPte.pLegacy->u;
|
---|
1420 | X86PGUINT uOld2 = uOld; NOREF(uOld2);
|
---|
1421 | X86PGUINT uNew = (uOld & (X86_PTE_G | X86_PTE_PAT | X86_PTE_PCD | X86_PTE_PWT))
|
---|
1422 | | X86_PTE_P | X86_PTE_RW | X86_PTE_A | X86_PTE_D
|
---|
1423 | | (HCPhys & X86_PTE_PG_MASK);
|
---|
1424 | while (!ASMAtomicCmpXchgExU32(&paPages[iFreePage].uPte.pLegacy->u, uNew, uOld, &uOld))
|
---|
1425 | AssertMsgFailed(("uOld=%#x uOld2=%#x uNew=%#x\n", uOld, uOld2, uNew));
|
---|
1426 | Assert(paPages[iFreePage].uPte.pLegacy->u == uNew);
|
---|
1427 | }
|
---|
1428 | #ifndef IN_RC
|
---|
1429 | else
|
---|
1430 | #endif
|
---|
1431 | {
|
---|
1432 | X86PGPAEUINT uOld = paPages[iFreePage].uPte.pPae->u;
|
---|
1433 | X86PGPAEUINT uOld2 = uOld; NOREF(uOld2);
|
---|
1434 | X86PGPAEUINT uNew = (uOld & (X86_PTE_G | X86_PTE_PAT | X86_PTE_PCD | X86_PTE_PWT))
|
---|
1435 | | X86_PTE_P | X86_PTE_RW | X86_PTE_A | X86_PTE_D
|
---|
1436 | | (HCPhys & X86_PTE_PAE_PG_MASK);
|
---|
1437 | while (!ASMAtomicCmpXchgExU64(&paPages[iFreePage].uPte.pPae->u, uNew, uOld, &uOld))
|
---|
1438 | AssertMsgFailed(("uOld=%#llx uOld2=%#llx uNew=%#llx\n", uOld, uOld2, uNew));
|
---|
1439 | Assert(paPages[iFreePage].uPte.pPae->u == uNew);
|
---|
1440 | /*Log6(("pgmR0DynMapPageSlow: #%x - %RHp %p %#llx\n", iFreePage, HCPhys, paPages[iFreePage].pvPage, uNew));*/
|
---|
1441 | }
|
---|
1442 | return iFreePage;
|
---|
1443 | }
|
---|
1444 |
|
---|
1445 |
|
---|
1446 | /**
|
---|
1447 | * Maps a page into the pool.
|
---|
1448 | *
|
---|
1449 | * @returns Page index on success, UINT32_MAX on failure.
|
---|
1450 | * @param pThis The dynamic mapping cache instance.
|
---|
1451 | * @param HCPhys The address of the page to be mapped.
|
---|
1452 | * @param iRealCpu The real cpu set index. (optimization)
|
---|
1453 | * @param pVCpu The current CPU (for statistics).
|
---|
1454 | * @param ppvPage Where to the page address.
|
---|
1455 | */
|
---|
1456 | DECLINLINE(uint32_t) pgmR0DynMapPage(PPGMRZDYNMAP pThis, RTHCPHYS HCPhys, int32_t iRealCpu, PVMCPU pVCpu, void **ppvPage)
|
---|
1457 | {
|
---|
1458 | PGMRZDYNMAP_SPINLOCK_ACQUIRE(pThis);
|
---|
1459 | AssertMsg(!(HCPhys & PAGE_OFFSET_MASK), ("HCPhys=%RHp\n", HCPhys));
|
---|
1460 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapPage);
|
---|
1461 |
|
---|
1462 | /*
|
---|
1463 | * Find an entry, if possible a matching one. The HCPhys address is hashed
|
---|
1464 | * down to a page index, collisions are handled by linear searching.
|
---|
1465 | * Optimized for a hit in the first 3 pages.
|
---|
1466 | *
|
---|
1467 | * Field easy hits here and defer the tedious searching and inserting
|
---|
1468 | * to pgmR0DynMapPageSlow().
|
---|
1469 | */
|
---|
1470 | bool fNew = false;
|
---|
1471 | uint32_t const cPages = pThis->cPages;
|
---|
1472 | uint32_t iPage = (HCPhys >> PAGE_SHIFT) % cPages;
|
---|
1473 | PPGMRZDYNMAPENTRY paPages = pThis->paPages;
|
---|
1474 | if (RT_LIKELY(paPages[iPage].HCPhys == HCPhys))
|
---|
1475 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapPageHits0);
|
---|
1476 | else
|
---|
1477 | {
|
---|
1478 | uint32_t iPage2 = (iPage + 1) % cPages;
|
---|
1479 | if (RT_LIKELY(paPages[iPage2].HCPhys == HCPhys))
|
---|
1480 | {
|
---|
1481 | iPage = iPage2;
|
---|
1482 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapPageHits1);
|
---|
1483 | }
|
---|
1484 | else
|
---|
1485 | {
|
---|
1486 | iPage2 = (iPage + 2) % cPages;
|
---|
1487 | if (paPages[iPage2].HCPhys == HCPhys)
|
---|
1488 | {
|
---|
1489 | iPage = iPage2;
|
---|
1490 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapPageHits2);
|
---|
1491 | }
|
---|
1492 | else
|
---|
1493 | {
|
---|
1494 | iPage = pgmR0DynMapPageSlow(pThis, HCPhys, iPage, pVCpu, &fNew);
|
---|
1495 | if (RT_UNLIKELY(iPage == UINT32_MAX))
|
---|
1496 | {
|
---|
1497 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis);
|
---|
1498 | *ppvPage = NULL;
|
---|
1499 | return iPage;
|
---|
1500 | }
|
---|
1501 | }
|
---|
1502 | }
|
---|
1503 | }
|
---|
1504 |
|
---|
1505 | /*
|
---|
1506 | * Reference it, update statistics and get the return address.
|
---|
1507 | */
|
---|
1508 | int32_t cRefs = ASMAtomicIncS32(&paPages[iPage].cRefs);
|
---|
1509 | if (cRefs == 1)
|
---|
1510 | {
|
---|
1511 | pThis->cLoad++;
|
---|
1512 | if (pThis->cLoad > pThis->cMaxLoad)
|
---|
1513 | pThis->cMaxLoad = pThis->cLoad;
|
---|
1514 | AssertMsg(pThis->cLoad <= pThis->cPages - pThis->cGuardPages, ("%d/%d\n", pThis->cLoad, pThis->cPages - pThis->cGuardPages));
|
---|
1515 | }
|
---|
1516 | else if (RT_UNLIKELY(cRefs <= 0))
|
---|
1517 | {
|
---|
1518 | ASMAtomicDecS32(&paPages[iPage].cRefs);
|
---|
1519 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis);
|
---|
1520 | *ppvPage = NULL;
|
---|
1521 | AssertLogRelMsgFailedReturn(("cRefs=%d iPage=%p HCPhys=%RHp\n", cRefs, iPage, HCPhys), UINT32_MAX);
|
---|
1522 | }
|
---|
1523 | void *pvPage = paPages[iPage].pvPage;
|
---|
1524 |
|
---|
1525 | #ifndef IN_RC
|
---|
1526 | /*
|
---|
1527 | * Invalidate the entry?
|
---|
1528 | */
|
---|
1529 | bool fInvalidateIt = RTCpuSetIsMemberByIndex(&paPages[iPage].PendingSet, iRealCpu);
|
---|
1530 | if (RT_UNLIKELY(fInvalidateIt))
|
---|
1531 | RTCpuSetDelByIndex(&paPages[iPage].PendingSet, iRealCpu);
|
---|
1532 | #else
|
---|
1533 | NOREF(iRealCpu);
|
---|
1534 | #endif
|
---|
1535 |
|
---|
1536 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis);
|
---|
1537 |
|
---|
1538 | /*
|
---|
1539 | * Do the actual invalidation outside the spinlock.
|
---|
1540 | */
|
---|
1541 | #ifdef IN_RC
|
---|
1542 | if (RT_UNLIKELY(fNew))
|
---|
1543 | #else
|
---|
1544 | if (RT_UNLIKELY(fInvalidateIt))
|
---|
1545 | #endif
|
---|
1546 | {
|
---|
1547 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapPageInvlPg);
|
---|
1548 | ASMInvalidatePage(pvPage);
|
---|
1549 | }
|
---|
1550 |
|
---|
1551 | *ppvPage = pvPage;
|
---|
1552 | return iPage;
|
---|
1553 | }
|
---|
1554 |
|
---|
1555 |
|
---|
1556 | /**
|
---|
1557 | * Assert the integrity of the pool.
|
---|
1558 | *
|
---|
1559 | * @returns VBox status code.
|
---|
1560 | */
|
---|
1561 | static int pgmRZDynMapAssertIntegrity(PPGMRZDYNMAP pThis)
|
---|
1562 | {
|
---|
1563 | /*
|
---|
1564 | * Basic pool stuff that doesn't require any lock, just assumes we're a user.
|
---|
1565 | */
|
---|
1566 | if (!pThis)
|
---|
1567 | return VINF_SUCCESS;
|
---|
1568 | AssertPtrReturn(pThis, VERR_INVALID_POINTER);
|
---|
1569 | AssertReturn(pThis->u32Magic == PGMRZDYNMAP_MAGIC, VERR_INVALID_MAGIC);
|
---|
1570 | if (!pThis->cUsers)
|
---|
1571 | return VERR_INVALID_PARAMETER;
|
---|
1572 |
|
---|
1573 | PGMRZDYNMAP_SPINLOCK_ACQUIRE(pThis);
|
---|
1574 |
|
---|
1575 | #define CHECK_RET(expr, a) \
|
---|
1576 | do { \
|
---|
1577 | if (RT_UNLIKELY(!(expr))) \
|
---|
1578 | { \
|
---|
1579 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis); \
|
---|
1580 | RTAssertMsg1Weak(#expr, __LINE__, __FILE__, __PRETTY_FUNCTION__); \
|
---|
1581 | RTAssertMsg2Weak a; \
|
---|
1582 | return VERR_PGM_DYNMAP_IPE; \
|
---|
1583 | } \
|
---|
1584 | } while (0)
|
---|
1585 |
|
---|
1586 | /*
|
---|
1587 | * Check that the PTEs are correct.
|
---|
1588 | */
|
---|
1589 | uint32_t cGuard = 0;
|
---|
1590 | uint32_t cLoad = 0;
|
---|
1591 | PPGMRZDYNMAPENTRY paPages = pThis->paPages;
|
---|
1592 | uint32_t iPage = pThis->cPages;
|
---|
1593 |
|
---|
1594 | #ifndef IN_RC
|
---|
1595 | if (pThis->fLegacyMode)
|
---|
1596 | #endif
|
---|
1597 | {
|
---|
1598 | #ifdef IN_RING0
|
---|
1599 | PCX86PGUINT paSavedPTEs = (PCX86PGUINT)pThis->pvSavedPTEs; NOREF(paSavedPTEs);
|
---|
1600 | #endif
|
---|
1601 | while (iPage-- > 0)
|
---|
1602 | {
|
---|
1603 | CHECK_RET(!((uintptr_t)paPages[iPage].pvPage & PAGE_OFFSET_MASK), ("#%u: %p\n", iPage, paPages[iPage].pvPage));
|
---|
1604 | if ( paPages[iPage].cRefs == PGMR0DYNMAP_GUARD_PAGE_REF_COUNT
|
---|
1605 | && paPages[iPage].HCPhys == PGMR0DYNMAP_GUARD_PAGE_HCPHYS)
|
---|
1606 | {
|
---|
1607 | #ifdef PGMR0DYNMAP_GUARD_NP
|
---|
1608 | CHECK_RET(paPages[iPage].uPte.pLegacy->u == (paSavedPTEs[iPage] & ~(X86PGUINT)X86_PTE_P),
|
---|
1609 | ("#%u: %#x %#x", iPage, paPages[iPage].uPte.pLegacy->u, paSavedPTEs[iPage]));
|
---|
1610 | #else
|
---|
1611 | CHECK_RET(paPages[iPage].uPte.pLegacy->u == PGMR0DYNMAP_GUARD_PAGE_LEGACY_PTE,
|
---|
1612 | ("#%u: %#x", iPage, paPages[iPage].uPte.pLegacy->u));
|
---|
1613 | #endif
|
---|
1614 | cGuard++;
|
---|
1615 | }
|
---|
1616 | else if (paPages[iPage].HCPhys != NIL_RTHCPHYS)
|
---|
1617 | {
|
---|
1618 | CHECK_RET(!(paPages[iPage].HCPhys & PAGE_OFFSET_MASK), ("#%u: %RHp\n", iPage, paPages[iPage].HCPhys));
|
---|
1619 | X86PGUINT uPte = X86_PTE_P | X86_PTE_RW | X86_PTE_A | X86_PTE_D
|
---|
1620 | #ifdef IN_RING0
|
---|
1621 | | (paSavedPTEs[iPage] & (X86_PTE_G | X86_PTE_PAT | X86_PTE_PCD | X86_PTE_PWT))
|
---|
1622 | #endif
|
---|
1623 | | (paPages[iPage].HCPhys & X86_PTE_PAE_PG_MASK);
|
---|
1624 | CHECK_RET(paPages[iPage].uPte.pLegacy->u == uPte,
|
---|
1625 | ("#%u: %#x %#x", iPage, paPages[iPage].uPte.pLegacy->u, uPte));
|
---|
1626 | if (paPages[iPage].cRefs)
|
---|
1627 | cLoad++;
|
---|
1628 | }
|
---|
1629 | #if defined(IN_RING0) && !defined(PGMRZDYNMAP_STRICT_RELEASE)
|
---|
1630 | else
|
---|
1631 | CHECK_RET(paPages[iPage].uPte.pLegacy->u == paSavedPTEs[iPage],
|
---|
1632 | ("#%u: %#x %#x", iPage, paPages[iPage].uPte.pLegacy->u, paSavedPTEs[iPage]));
|
---|
1633 | #endif
|
---|
1634 | }
|
---|
1635 | }
|
---|
1636 | #ifndef IN_RC
|
---|
1637 | else
|
---|
1638 | #endif
|
---|
1639 | {
|
---|
1640 | #ifdef IN_RING0
|
---|
1641 | PCX86PGPAEUINT paSavedPTEs = (PCX86PGPAEUINT)pThis->pvSavedPTEs; NOREF(paSavedPTEs);
|
---|
1642 | #endif
|
---|
1643 | while (iPage-- > 0)
|
---|
1644 | {
|
---|
1645 | CHECK_RET(!((uintptr_t)paPages[iPage].pvPage & PAGE_OFFSET_MASK), ("#%u: %p\n", iPage, paPages[iPage].pvPage));
|
---|
1646 | if ( paPages[iPage].cRefs == PGMR0DYNMAP_GUARD_PAGE_REF_COUNT
|
---|
1647 | && paPages[iPage].HCPhys == PGMR0DYNMAP_GUARD_PAGE_HCPHYS)
|
---|
1648 | {
|
---|
1649 | #ifdef PGMR0DYNMAP_GUARD_NP
|
---|
1650 | CHECK_RET(paPages[iPage].uPte.pPae->u == (paSavedPTEs[iPage] & ~(X86PGPAEUINT)X86_PTE_P),
|
---|
1651 | ("#%u: %#llx %#llx", iPage, paPages[iPage].uPte.pPae->u, paSavedPTEs[iPage]));
|
---|
1652 | #else
|
---|
1653 | CHECK_RET(paPages[iPage].uPte.pPae->u == PGMR0DYNMAP_GUARD_PAGE_PAE_PTE,
|
---|
1654 | ("#%u: %#llx", iPage, paPages[iPage].uPte.pPae->u));
|
---|
1655 | #endif
|
---|
1656 | cGuard++;
|
---|
1657 | }
|
---|
1658 | else if (paPages[iPage].HCPhys != NIL_RTHCPHYS)
|
---|
1659 | {
|
---|
1660 | CHECK_RET(!(paPages[iPage].HCPhys & PAGE_OFFSET_MASK), ("#%u: %RHp\n", iPage, paPages[iPage].HCPhys));
|
---|
1661 | X86PGPAEUINT uPte = X86_PTE_P | X86_PTE_RW | X86_PTE_A | X86_PTE_D
|
---|
1662 | #ifdef IN_RING0
|
---|
1663 | | (paSavedPTEs[iPage] & (X86_PTE_G | X86_PTE_PAT | X86_PTE_PCD | X86_PTE_PWT))
|
---|
1664 | #endif
|
---|
1665 | | (paPages[iPage].HCPhys & X86_PTE_PAE_PG_MASK);
|
---|
1666 | CHECK_RET(paPages[iPage].uPte.pPae->u == uPte,
|
---|
1667 | ("#%u: %#llx %#llx", iPage, paPages[iPage].uPte.pLegacy->u, uPte));
|
---|
1668 | if (paPages[iPage].cRefs)
|
---|
1669 | cLoad++;
|
---|
1670 | }
|
---|
1671 | #ifdef IN_RING0
|
---|
1672 | else
|
---|
1673 | CHECK_RET(paPages[iPage].uPte.pPae->u == paSavedPTEs[iPage],
|
---|
1674 | ("#%u: %#llx %#llx", iPage, paPages[iPage].uPte.pPae->u, paSavedPTEs[iPage]));
|
---|
1675 | #endif
|
---|
1676 | }
|
---|
1677 | }
|
---|
1678 |
|
---|
1679 | CHECK_RET(cLoad == pThis->cLoad, ("%u %u\n", cLoad, pThis->cLoad));
|
---|
1680 | CHECK_RET(cGuard == pThis->cGuardPages, ("%u %u\n", cGuard, pThis->cGuardPages));
|
---|
1681 |
|
---|
1682 | #undef CHECK_RET
|
---|
1683 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis);
|
---|
1684 | return VINF_SUCCESS;
|
---|
1685 | }
|
---|
1686 |
|
---|
1687 | #ifdef IN_RING0
|
---|
1688 | /**
|
---|
1689 | * Assert the integrity of the pool.
|
---|
1690 | *
|
---|
1691 | * @returns VBox status code.
|
---|
1692 | */
|
---|
1693 | VMMR0DECL(int) PGMR0DynMapAssertIntegrity(void)
|
---|
1694 | {
|
---|
1695 | return pgmRZDynMapAssertIntegrity(g_pPGMR0DynMap);
|
---|
1696 | }
|
---|
1697 | #endif /* IN_RING0 */
|
---|
1698 |
|
---|
1699 | #ifdef IN_RC
|
---|
1700 | /**
|
---|
1701 | * Assert the integrity of the pool.
|
---|
1702 | *
|
---|
1703 | * @returns VBox status code.
|
---|
1704 | */
|
---|
1705 | VMMRCDECL(int) PGMRCDynMapAssertIntegrity(PVM pVM)
|
---|
1706 | {
|
---|
1707 | return pgmRZDynMapAssertIntegrity((PPGMRZDYNMAP)pVM->pgm.s.pRCDynMap);
|
---|
1708 | }
|
---|
1709 | #endif /* IN_RC */
|
---|
1710 |
|
---|
1711 |
|
---|
1712 | /**
|
---|
1713 | * As a final resort for a (somewhat) full auto set or full cache, try merge
|
---|
1714 | * duplicate entries and flush the ones we can.
|
---|
1715 | *
|
---|
1716 | * @param pSet The set.
|
---|
1717 | */
|
---|
1718 | static void pgmDynMapOptimizeAutoSet(PPGMMAPSET pSet)
|
---|
1719 | {
|
---|
1720 | LogFlow(("pgmDynMapOptimizeAutoSet\n"));
|
---|
1721 |
|
---|
1722 | for (uint32_t i = 0 ; i < pSet->cEntries; i++)
|
---|
1723 | {
|
---|
1724 | /*
|
---|
1725 | * Try merge entries.
|
---|
1726 | */
|
---|
1727 | uint16_t const iPage = pSet->aEntries[i].iPage;
|
---|
1728 | uint32_t j = i + 1;
|
---|
1729 | while ( j < pSet->cEntries
|
---|
1730 | && ( pSet->iSubset == UINT32_MAX
|
---|
1731 | || pSet->iSubset < pSet->cEntries) )
|
---|
1732 | {
|
---|
1733 | if (pSet->aEntries[j].iPage != iPage)
|
---|
1734 | j++;
|
---|
1735 | else
|
---|
1736 | {
|
---|
1737 | uint32_t const cHardRefs = (uint32_t)pSet->aEntries[i].cRefs
|
---|
1738 | + (uint32_t)pSet->aEntries[j].cRefs;
|
---|
1739 | uint32_t cInlinedRefs = (uint32_t)pSet->aEntries[i].cInlinedRefs
|
---|
1740 | + (uint32_t)pSet->aEntries[j].cInlinedRefs;
|
---|
1741 | uint32_t cUnrefs = (uint32_t)pSet->aEntries[i].cUnrefs
|
---|
1742 | + (uint32_t)pSet->aEntries[j].cUnrefs;
|
---|
1743 | uint32_t cSub = RT_MIN(cUnrefs, cInlinedRefs);
|
---|
1744 | cInlinedRefs -= cSub;
|
---|
1745 | cUnrefs -= cSub;
|
---|
1746 |
|
---|
1747 | if ( cHardRefs < UINT16_MAX
|
---|
1748 | && cInlinedRefs < UINT16_MAX
|
---|
1749 | && cUnrefs < UINT16_MAX)
|
---|
1750 | {
|
---|
1751 | /* merge j into i removing j. */
|
---|
1752 | Log2(("pgmDynMapOptimizeAutoSet: Merging #%u into #%u\n", j, i));
|
---|
1753 | pSet->aEntries[i].cRefs = cHardRefs;
|
---|
1754 | pSet->aEntries[i].cInlinedRefs = cInlinedRefs;
|
---|
1755 | pSet->aEntries[i].cUnrefs = cUnrefs;
|
---|
1756 | pSet->cEntries--;
|
---|
1757 | if (j < pSet->cEntries)
|
---|
1758 | {
|
---|
1759 | pSet->aEntries[j] = pSet->aEntries[pSet->cEntries];
|
---|
1760 | PGMRZDYNMAP_ZAP_ENTRY(&pSet->aEntries[pSet->cEntries]);
|
---|
1761 | }
|
---|
1762 | else
|
---|
1763 | PGMRZDYNMAP_ZAP_ENTRY(&pSet->aEntries[j]);
|
---|
1764 | }
|
---|
1765 | #if 0 /* too complicated, skip it. */
|
---|
1766 | else
|
---|
1767 | {
|
---|
1768 | /* migrate the max number of refs from j into i and quit the inner loop. */
|
---|
1769 | uint32_t cMigrate = UINT16_MAX - 1 - pSet->aEntries[i].cRefs;
|
---|
1770 | Assert(pSet->aEntries[j].cRefs > cMigrate);
|
---|
1771 | pSet->aEntries[j].cRefs -= cMigrate;
|
---|
1772 | pSet->aEntries[i].cRefs = UINT16_MAX - 1;
|
---|
1773 | break;
|
---|
1774 | }
|
---|
1775 | #endif
|
---|
1776 | }
|
---|
1777 | }
|
---|
1778 |
|
---|
1779 | /*
|
---|
1780 | * Try make use of the unused hinting (cUnrefs) to evict entries
|
---|
1781 | * from both the set as well as the mapping cache.
|
---|
1782 | */
|
---|
1783 |
|
---|
1784 | uint32_t const cTotalRefs = (uint32_t)pSet->aEntries[i].cRefs + pSet->aEntries[i].cInlinedRefs;
|
---|
1785 | Log2(("pgmDynMapOptimizeAutoSet: #%u/%u/%u pvPage=%p iPage=%u cRefs=%u cInlinedRefs=%u cUnrefs=%u cTotalRefs=%u\n",
|
---|
1786 | i,
|
---|
1787 | pSet->iSubset,
|
---|
1788 | pSet->cEntries,
|
---|
1789 | pSet->aEntries[i].pvPage,
|
---|
1790 | pSet->aEntries[i].iPage,
|
---|
1791 | pSet->aEntries[i].cRefs,
|
---|
1792 | pSet->aEntries[i].cInlinedRefs,
|
---|
1793 | pSet->aEntries[i].cUnrefs,
|
---|
1794 | cTotalRefs));
|
---|
1795 | Assert(cTotalRefs >= pSet->aEntries[i].cUnrefs);
|
---|
1796 |
|
---|
1797 | if ( cTotalRefs == pSet->aEntries[i].cUnrefs
|
---|
1798 | && ( pSet->iSubset == UINT32_MAX
|
---|
1799 | || pSet->iSubset < pSet->cEntries)
|
---|
1800 | )
|
---|
1801 | {
|
---|
1802 | Log2(("pgmDynMapOptimizeAutoSet: Releasing iPage=%d/%p\n", pSet->aEntries[i].iPage, pSet->aEntries[i].pvPage));
|
---|
1803 | //LogFlow(("pgmDynMapOptimizeAutoSet: Releasing iPage=%d/%p\n", pSet->aEntries[i].iPage, pSet->aEntries[i].pvPage));
|
---|
1804 | pgmRZDynMapReleasePage(PGMRZDYNMAP_SET_2_DYNMAP(pSet),
|
---|
1805 | pSet->aEntries[i].iPage,
|
---|
1806 | pSet->aEntries[i].cRefs);
|
---|
1807 | pSet->cEntries--;
|
---|
1808 | if (i < pSet->cEntries)
|
---|
1809 | {
|
---|
1810 | pSet->aEntries[i] = pSet->aEntries[pSet->cEntries];
|
---|
1811 | PGMRZDYNMAP_ZAP_ENTRY(&pSet->aEntries[pSet->cEntries]);
|
---|
1812 | }
|
---|
1813 |
|
---|
1814 | i--;
|
---|
1815 | }
|
---|
1816 | }
|
---|
1817 | }
|
---|
1818 |
|
---|
1819 |
|
---|
1820 |
|
---|
1821 |
|
---|
1822 | /**
|
---|
1823 | * Signals the start of a new set of mappings.
|
---|
1824 | *
|
---|
1825 | * Mostly for strictness. PGMDynMapHCPage won't work unless this
|
---|
1826 | * API is called.
|
---|
1827 | *
|
---|
1828 | * @param pVCpu The shared data for the current virtual CPU.
|
---|
1829 | */
|
---|
1830 | VMMDECL(void) PGMRZDynMapStartAutoSet(PVMCPU pVCpu)
|
---|
1831 | {
|
---|
1832 | LogFlow(("PGMRZDynMapStartAutoSet:\n"));
|
---|
1833 | Assert(pVCpu->pgm.s.AutoSet.cEntries == PGMMAPSET_CLOSED);
|
---|
1834 | Assert(pVCpu->pgm.s.AutoSet.iSubset == UINT32_MAX);
|
---|
1835 | pVCpu->pgm.s.AutoSet.cEntries = 0;
|
---|
1836 | pVCpu->pgm.s.AutoSet.iCpu = PGMRZDYNMAP_CUR_CPU();
|
---|
1837 | }
|
---|
1838 |
|
---|
1839 |
|
---|
1840 | #ifdef IN_RING0
|
---|
1841 | /**
|
---|
1842 | * Starts or migrates the autoset of a virtual CPU.
|
---|
1843 | *
|
---|
1844 | * This is used by HMR0Enter. When we've longjumped out of the HM
|
---|
1845 | * execution loop with the set open, we'll migrate it when re-entering. While
|
---|
1846 | * under normal circumstances, we'll start it so VMXR0LoadGuestState can access
|
---|
1847 | * guest memory.
|
---|
1848 | *
|
---|
1849 | * @returns @c true if started, @c false if migrated.
|
---|
1850 | * @param pVCpu The shared data for the current virtual CPU.
|
---|
1851 | * @thread EMT
|
---|
1852 | */
|
---|
1853 | VMMR0DECL(bool) PGMR0DynMapStartOrMigrateAutoSet(PVMCPU pVCpu)
|
---|
1854 | {
|
---|
1855 | bool fStartIt = pVCpu->pgm.s.AutoSet.cEntries == PGMMAPSET_CLOSED;
|
---|
1856 | if (fStartIt)
|
---|
1857 | PGMRZDynMapStartAutoSet(pVCpu);
|
---|
1858 | else
|
---|
1859 | PGMR0DynMapMigrateAutoSet(pVCpu);
|
---|
1860 | return fStartIt;
|
---|
1861 | }
|
---|
1862 | #endif /* IN_RING0 */
|
---|
1863 |
|
---|
1864 |
|
---|
1865 | /**
|
---|
1866 | * Checks if the set has high load.
|
---|
1867 | *
|
---|
1868 | * @returns true on high load, otherwise false.
|
---|
1869 | * @param pSet The set.
|
---|
1870 | */
|
---|
1871 | DECLINLINE(bool) pgmRZDynMapHasHighLoad(PPGMMAPSET pSet)
|
---|
1872 | {
|
---|
1873 | #ifdef IN_RC
|
---|
1874 | if (pSet->cEntries < MM_HYPER_DYNAMIC_SIZE / PAGE_SIZE / 2)
|
---|
1875 | return false;
|
---|
1876 | #endif
|
---|
1877 |
|
---|
1878 | PPGMRZDYNMAP pThis = PGMRZDYNMAP_SET_2_DYNMAP(pSet);
|
---|
1879 | uint32_t cUnusedPages = pThis->cPages - pThis->cLoad;
|
---|
1880 | #ifdef IN_RC
|
---|
1881 | return cUnusedPages <= MM_HYPER_DYNAMIC_SIZE / PAGE_SIZE * 36 / 100;
|
---|
1882 | #else
|
---|
1883 | return cUnusedPages <= PGMR0DYNMAP_PAGES_PER_CPU_MIN;
|
---|
1884 | #endif
|
---|
1885 | }
|
---|
1886 |
|
---|
1887 |
|
---|
1888 | /**
|
---|
1889 | * Worker that performs the actual flushing of the set.
|
---|
1890 | *
|
---|
1891 | * @param pSet The set to flush.
|
---|
1892 | * @param cEntries The number of entries.
|
---|
1893 | */
|
---|
1894 | DECLINLINE(void) pgmDynMapFlushAutoSetWorker(PPGMMAPSET pSet, uint32_t cEntries)
|
---|
1895 | {
|
---|
1896 | /*
|
---|
1897 | * Release any pages it's referencing.
|
---|
1898 | */
|
---|
1899 | if ( cEntries != 0
|
---|
1900 | && RT_LIKELY(cEntries <= RT_ELEMENTS(pSet->aEntries)))
|
---|
1901 | {
|
---|
1902 | PPGMRZDYNMAP pThis = PGMRZDYNMAP_SET_2_DYNMAP(pSet);
|
---|
1903 | PGMRZDYNMAP_SPINLOCK_ACQUIRE(pThis);
|
---|
1904 |
|
---|
1905 | uint32_t i = cEntries;
|
---|
1906 | while (i-- > 0)
|
---|
1907 | {
|
---|
1908 | uint32_t iPage = pSet->aEntries[i].iPage;
|
---|
1909 | Assert(iPage < pThis->cPages);
|
---|
1910 | int32_t cRefs = pSet->aEntries[i].cRefs;
|
---|
1911 | Assert(cRefs > 0);
|
---|
1912 | pgmRZDynMapReleasePageLocked(pThis, iPage, cRefs);
|
---|
1913 |
|
---|
1914 | PGMRZDYNMAP_ZAP_ENTRY(&pSet->aEntries[i]);
|
---|
1915 | }
|
---|
1916 |
|
---|
1917 | Assert(pThis->cLoad <= pThis->cPages - pThis->cGuardPages);
|
---|
1918 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis);
|
---|
1919 | }
|
---|
1920 | }
|
---|
1921 |
|
---|
1922 |
|
---|
1923 | /**
|
---|
1924 | * Releases the dynamic memory mappings made by PGMDynMapHCPage and associates
|
---|
1925 | * since the PGMDynMapStartAutoSet call.
|
---|
1926 | *
|
---|
1927 | * @param pVCpu The shared data for the current virtual CPU.
|
---|
1928 | */
|
---|
1929 | VMMDECL(void) PGMRZDynMapReleaseAutoSet(PVMCPU pVCpu)
|
---|
1930 | {
|
---|
1931 | PPGMMAPSET pSet = &pVCpu->pgm.s.AutoSet;
|
---|
1932 |
|
---|
1933 | /*
|
---|
1934 | * Close and flush the set.
|
---|
1935 | */
|
---|
1936 | uint32_t cEntries = pSet->cEntries;
|
---|
1937 | AssertReturnVoid(cEntries != PGMMAPSET_CLOSED);
|
---|
1938 | pSet->cEntries = PGMMAPSET_CLOSED;
|
---|
1939 | pSet->iSubset = UINT32_MAX;
|
---|
1940 | pSet->iCpu = -1;
|
---|
1941 |
|
---|
1942 | #ifdef IN_RC
|
---|
1943 | if (RT_ELEMENTS(pSet->aEntries) > MM_HYPER_DYNAMIC_SIZE / PAGE_SIZE)
|
---|
1944 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->aStatRZDynMapSetFilledPct[(cEntries * 10 / (MM_HYPER_DYNAMIC_SIZE / PAGE_SIZE)) % 11]);
|
---|
1945 | else
|
---|
1946 | #endif
|
---|
1947 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->aStatRZDynMapSetFilledPct[(cEntries * 10 / RT_ELEMENTS(pSet->aEntries)) % 11]);
|
---|
1948 | if (cEntries > RT_ELEMENTS(pSet->aEntries) * 50 / 100)
|
---|
1949 | Log(("PGMRZDynMapReleaseAutoSet: cEntries=%d\n", cEntries));
|
---|
1950 | else
|
---|
1951 | LogFlow(("PGMRZDynMapReleaseAutoSet: cEntries=%d\n", cEntries));
|
---|
1952 |
|
---|
1953 | pgmDynMapFlushAutoSetWorker(pSet, cEntries);
|
---|
1954 | }
|
---|
1955 |
|
---|
1956 |
|
---|
1957 | /**
|
---|
1958 | * Flushes the set if it's above a certain threshold.
|
---|
1959 | *
|
---|
1960 | * @param pVCpu The shared data for the current virtual CPU.
|
---|
1961 | */
|
---|
1962 | VMMDECL(void) PGMRZDynMapFlushAutoSet(PVMCPU pVCpu)
|
---|
1963 | {
|
---|
1964 | PPGMMAPSET pSet = &pVCpu->pgm.s.AutoSet;
|
---|
1965 | AssertMsg(pSet->iCpu == PGMRZDYNMAP_CUR_CPU(), ("%d %d efl=%#x\n", pSet->iCpu, PGMRZDYNMAP_CUR_CPU(), ASMGetFlags()));
|
---|
1966 |
|
---|
1967 | /*
|
---|
1968 | * Only flush it if it's 45% full.
|
---|
1969 | */
|
---|
1970 | uint32_t cEntries = pSet->cEntries;
|
---|
1971 | AssertReturnVoid(cEntries != PGMMAPSET_CLOSED);
|
---|
1972 | Assert(pSet->iSubset == UINT32_MAX);
|
---|
1973 | #ifdef IN_RC
|
---|
1974 | if (RT_ELEMENTS(pSet->aEntries) > MM_HYPER_DYNAMIC_SIZE / PAGE_SIZE)
|
---|
1975 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->aStatRZDynMapSetFilledPct[(cEntries * 10 / (MM_HYPER_DYNAMIC_SIZE / PAGE_SIZE)) % 11]);
|
---|
1976 | else
|
---|
1977 | #endif
|
---|
1978 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->aStatRZDynMapSetFilledPct[(cEntries * 10 / RT_ELEMENTS(pSet->aEntries)) % 11]);
|
---|
1979 | if ( cEntries >= RT_ELEMENTS(pSet->aEntries) * 45 / 100
|
---|
1980 | || pgmRZDynMapHasHighLoad(pSet))
|
---|
1981 | {
|
---|
1982 | pSet->cEntries = 0;
|
---|
1983 | Log(("PGMDynMapFlushAutoSet: cEntries=%d\n", pSet->cEntries));
|
---|
1984 |
|
---|
1985 | pgmDynMapFlushAutoSetWorker(pSet, cEntries);
|
---|
1986 | AssertMsg(pSet->iCpu == PGMRZDYNMAP_CUR_CPU(), ("%d %d efl=%#x\n", pSet->iCpu, PGMRZDYNMAP_CUR_CPU(), ASMGetFlags()));
|
---|
1987 | }
|
---|
1988 | }
|
---|
1989 |
|
---|
1990 |
|
---|
1991 | #ifndef IN_RC
|
---|
1992 | /**
|
---|
1993 | * Migrates the automatic mapping set of the current vCPU if it's active and
|
---|
1994 | * necessary.
|
---|
1995 | *
|
---|
1996 | * This is called when re-entering the hardware assisted execution mode after a
|
---|
1997 | * nip down to ring-3. We run the risk that the CPU might have change and we
|
---|
1998 | * will therefore make sure all the cache entries currently in the auto set will
|
---|
1999 | * be valid on the new CPU. If the cpu didn't change nothing will happen as all
|
---|
2000 | * the entries will have been flagged as invalidated.
|
---|
2001 | *
|
---|
2002 | * @param pVCpu The shared data for the current virtual CPU.
|
---|
2003 | * @thread EMT
|
---|
2004 | */
|
---|
2005 | VMMR0DECL(void) PGMR0DynMapMigrateAutoSet(PVMCPU pVCpu)
|
---|
2006 | {
|
---|
2007 | LogFlow(("PGMR0DynMapMigrateAutoSet\n"));
|
---|
2008 | PPGMMAPSET pSet = &pVCpu->pgm.s.AutoSet;
|
---|
2009 | int32_t iRealCpu = PGMRZDYNMAP_CUR_CPU();
|
---|
2010 | if (pSet->iCpu != iRealCpu)
|
---|
2011 | {
|
---|
2012 | uint32_t i = pSet->cEntries;
|
---|
2013 | if (i != PGMMAPSET_CLOSED)
|
---|
2014 | {
|
---|
2015 | AssertMsg(i <= RT_ELEMENTS(pSet->aEntries), ("%#x (%u)\n", i, i));
|
---|
2016 | if (i != 0 && RT_LIKELY(i <= RT_ELEMENTS(pSet->aEntries)))
|
---|
2017 | {
|
---|
2018 | PPGMRZDYNMAP pThis = PGMRZDYNMAP_SET_2_DYNMAP(pSet);
|
---|
2019 | PGMRZDYNMAP_SPINLOCK_ACQUIRE(pThis);
|
---|
2020 |
|
---|
2021 | while (i-- > 0)
|
---|
2022 | {
|
---|
2023 | Assert(pSet->aEntries[i].cRefs > 0);
|
---|
2024 | uint32_t iPage = pSet->aEntries[i].iPage;
|
---|
2025 | Assert(iPage < pThis->cPages);
|
---|
2026 | if (RTCpuSetIsMemberByIndex(&pThis->paPages[iPage].PendingSet, iRealCpu))
|
---|
2027 | {
|
---|
2028 | RTCpuSetDelByIndex(&pThis->paPages[iPage].PendingSet, iRealCpu);
|
---|
2029 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis);
|
---|
2030 |
|
---|
2031 | ASMInvalidatePage(pThis->paPages[iPage].pvPage);
|
---|
2032 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapMigrateInvlPg);
|
---|
2033 |
|
---|
2034 | PGMRZDYNMAP_SPINLOCK_REACQUIRE(pThis);
|
---|
2035 | }
|
---|
2036 | }
|
---|
2037 |
|
---|
2038 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis);
|
---|
2039 | }
|
---|
2040 | }
|
---|
2041 | pSet->iCpu = iRealCpu;
|
---|
2042 | }
|
---|
2043 | }
|
---|
2044 | #endif /* !IN_RC */
|
---|
2045 |
|
---|
2046 |
|
---|
2047 | /**
|
---|
2048 | * Worker function that flushes the current subset.
|
---|
2049 | *
|
---|
2050 | * This is called when the set is popped or when the set
|
---|
2051 | * hash a too high load. As also pointed out elsewhere, the
|
---|
2052 | * whole subset thing is a hack for working around code that
|
---|
2053 | * accesses too many pages. Like PGMPool.
|
---|
2054 | *
|
---|
2055 | * @param pSet The set which subset to flush.
|
---|
2056 | */
|
---|
2057 | static void pgmDynMapFlushSubset(PPGMMAPSET pSet)
|
---|
2058 | {
|
---|
2059 | uint32_t iSubset = pSet->iSubset;
|
---|
2060 | uint32_t i = pSet->cEntries;
|
---|
2061 | Assert(i <= RT_ELEMENTS(pSet->aEntries));
|
---|
2062 | if ( i > iSubset
|
---|
2063 | && i <= RT_ELEMENTS(pSet->aEntries))
|
---|
2064 | {
|
---|
2065 | Log(("pgmDynMapFlushSubset: cEntries=%d iSubset=%d\n", pSet->cEntries, iSubset));
|
---|
2066 | pSet->cEntries = iSubset;
|
---|
2067 |
|
---|
2068 | PPGMRZDYNMAP pThis = PGMRZDYNMAP_SET_2_DYNMAP(pSet);
|
---|
2069 | PGMRZDYNMAP_SPINLOCK_ACQUIRE(pThis);
|
---|
2070 |
|
---|
2071 | while (i-- > iSubset)
|
---|
2072 | {
|
---|
2073 | uint32_t iPage = pSet->aEntries[i].iPage;
|
---|
2074 | Assert(iPage < pThis->cPages);
|
---|
2075 | int32_t cRefs = pSet->aEntries[i].cRefs;
|
---|
2076 | Assert(cRefs > 0);
|
---|
2077 | pgmRZDynMapReleasePageLocked(pThis, iPage, cRefs);
|
---|
2078 |
|
---|
2079 | PGMRZDYNMAP_ZAP_ENTRY(&pSet->aEntries[i]);
|
---|
2080 | }
|
---|
2081 |
|
---|
2082 | PGMRZDYNMAP_SPINLOCK_RELEASE(pThis);
|
---|
2083 | }
|
---|
2084 | }
|
---|
2085 |
|
---|
2086 |
|
---|
2087 | /**
|
---|
2088 | * Creates a subset.
|
---|
2089 | *
|
---|
2090 | * A subset is a hack to avoid having to rewrite code that touches a lot of
|
---|
2091 | * pages. It prevents the mapping set from being overflowed by automatically
|
---|
2092 | * flushing previous mappings when a certain threshold is reached.
|
---|
2093 | *
|
---|
2094 | * Pages mapped after calling this function are only valid until the next page
|
---|
2095 | * is mapped.
|
---|
2096 | *
|
---|
2097 | * @returns The index of the previous subset. Pass this to
|
---|
2098 | * PGMDynMapPopAutoSubset when popping it.
|
---|
2099 | * @param pVCpu Pointer to the virtual cpu data.
|
---|
2100 | */
|
---|
2101 | VMMDECL(uint32_t) PGMRZDynMapPushAutoSubset(PVMCPU pVCpu)
|
---|
2102 | {
|
---|
2103 | PPGMMAPSET pSet = &pVCpu->pgm.s.AutoSet;
|
---|
2104 | AssertReturn(pSet->cEntries != PGMMAPSET_CLOSED, UINT32_MAX);
|
---|
2105 | uint32_t iPrevSubset = pSet->iSubset;
|
---|
2106 | LogFlow(("PGMRZDynMapPushAutoSubset: pVCpu=%p iPrevSubset=%u\n", pVCpu, iPrevSubset));
|
---|
2107 |
|
---|
2108 | /*
|
---|
2109 | * If it looks like we're approaching the max set size or mapping space
|
---|
2110 | * optimize the set to drop off unused pages.
|
---|
2111 | */
|
---|
2112 | if ( pSet->cEntries > RT_ELEMENTS(pSet->aEntries) * 60 / 100
|
---|
2113 | || pgmRZDynMapHasHighLoad(pSet))
|
---|
2114 | {
|
---|
2115 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapSetOptimize);
|
---|
2116 | pgmDynMapOptimizeAutoSet(pSet);
|
---|
2117 | }
|
---|
2118 |
|
---|
2119 | pSet->iSubset = pSet->cEntries;
|
---|
2120 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapSubsets);
|
---|
2121 |
|
---|
2122 | AssertMsg(iPrevSubset <= pSet->iSubset || iPrevSubset == UINT32_MAX, ("iPrevSubset=%#x iSubset=%#x\n", iPrevSubset, pSet->iSubset));
|
---|
2123 | return iPrevSubset;
|
---|
2124 | }
|
---|
2125 |
|
---|
2126 |
|
---|
2127 | /**
|
---|
2128 | * Pops a subset created by a previous call to PGMDynMapPushAutoSubset.
|
---|
2129 | *
|
---|
2130 | * @param pVCpu Pointer to the virtual cpu data.
|
---|
2131 | * @param iPrevSubset What PGMDynMapPushAutoSubset returned.
|
---|
2132 | */
|
---|
2133 | VMMDECL(void) PGMRZDynMapPopAutoSubset(PVMCPU pVCpu, uint32_t iPrevSubset)
|
---|
2134 | {
|
---|
2135 | PPGMMAPSET pSet = &pVCpu->pgm.s.AutoSet;
|
---|
2136 | uint32_t cEntries = pSet->cEntries;
|
---|
2137 | LogFlow(("PGMRZDynMapPopAutoSubset: pVCpu=%p iPrevSubset=%u iSubset=%u cEntries=%u\n", pVCpu, iPrevSubset, pSet->iSubset, cEntries));
|
---|
2138 | AssertReturnVoid(cEntries != PGMMAPSET_CLOSED);
|
---|
2139 | AssertMsgReturnVoid(pSet->iSubset >= iPrevSubset || iPrevSubset == UINT32_MAX, ("iPrevSubset=%u iSubset=%u cEntries=%u\n", iPrevSubset, pSet->iSubset, cEntries));
|
---|
2140 | #ifdef IN_RC
|
---|
2141 | if (RT_ELEMENTS(pSet->aEntries) > MM_HYPER_DYNAMIC_SIZE / PAGE_SIZE)
|
---|
2142 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->aStatRZDynMapSetFilledPct[(cEntries * 10 / (MM_HYPER_DYNAMIC_SIZE / PAGE_SIZE)) % 11]);
|
---|
2143 | else
|
---|
2144 | #endif
|
---|
2145 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->aStatRZDynMapSetFilledPct[(cEntries * 10 / RT_ELEMENTS(pSet->aEntries)) % 11]);
|
---|
2146 | if ( cEntries >= RT_ELEMENTS(pSet->aEntries) * 40 / 100
|
---|
2147 | && cEntries != pSet->iSubset)
|
---|
2148 | {
|
---|
2149 | pgmDynMapFlushSubset(pSet);
|
---|
2150 | Assert(pSet->cEntries >= iPrevSubset || iPrevSubset == UINT32_MAX);
|
---|
2151 | }
|
---|
2152 | pSet->iSubset = iPrevSubset;
|
---|
2153 | }
|
---|
2154 |
|
---|
2155 |
|
---|
2156 | /**
|
---|
2157 | * Indicates that the given page is unused and its mapping can be re-used.
|
---|
2158 | *
|
---|
2159 | * @param pVCpu The current CPU.
|
---|
2160 | * @param pvHint The page that is now unused. This does not have to
|
---|
2161 | * point at the start of the page. NULL is ignored.
|
---|
2162 | */
|
---|
2163 | #ifdef LOG_ENABLED
|
---|
2164 | void pgmRZDynMapUnusedHint(PVMCPU pVCpu, void *pvHint, RT_SRC_POS_DECL)
|
---|
2165 | #else
|
---|
2166 | void pgmRZDynMapUnusedHint(PVMCPU pVCpu, void *pvHint)
|
---|
2167 | #endif
|
---|
2168 | {
|
---|
2169 | /*
|
---|
2170 | * Ignore NULL pointers and mask off the page offset bits.
|
---|
2171 | */
|
---|
2172 | if (pvHint == NULL)
|
---|
2173 | return;
|
---|
2174 | pvHint = (void *)((uintptr_t)pvHint & ~(uintptr_t)PAGE_OFFSET_MASK);
|
---|
2175 |
|
---|
2176 | PPGMMAPSET pSet = &pVCpu->pgm.s.AutoSet;
|
---|
2177 | uint32_t iEntry = pSet->cEntries;
|
---|
2178 | AssertReturnVoid(iEntry > 0);
|
---|
2179 |
|
---|
2180 | /*
|
---|
2181 | * Find the entry in the usual unrolled fashion.
|
---|
2182 | */
|
---|
2183 | /** @todo add a hint to the set which entry was used last since it's not
|
---|
2184 | * always the last entry? */
|
---|
2185 | #define IS_MATCHING_ENTRY(pSet, iEntry, pvHint) \
|
---|
2186 | ( (pSet)->aEntries[(iEntry)].pvPage == (pvHint) \
|
---|
2187 | && (uint32_t)(pSet)->aEntries[(iEntry)].cRefs + (pSet)->aEntries[(iEntry)].cInlinedRefs \
|
---|
2188 | > (pSet)->aEntries[(iEntry)].cUnrefs )
|
---|
2189 | if ( iEntry >= 1 && IS_MATCHING_ENTRY(pSet, iEntry - 1, pvHint))
|
---|
2190 | iEntry = iEntry - 1;
|
---|
2191 | else if (iEntry >= 2 && IS_MATCHING_ENTRY(pSet, iEntry - 2, pvHint))
|
---|
2192 | iEntry = iEntry - 2;
|
---|
2193 | else if (iEntry >= 3 && IS_MATCHING_ENTRY(pSet, iEntry - 3, pvHint))
|
---|
2194 | iEntry = iEntry - 3;
|
---|
2195 | else if (iEntry >= 4 && IS_MATCHING_ENTRY(pSet, iEntry - 4, pvHint))
|
---|
2196 | iEntry = iEntry - 4;
|
---|
2197 | else if (iEntry >= 5 && IS_MATCHING_ENTRY(pSet, iEntry - 5, pvHint))
|
---|
2198 | iEntry = iEntry - 5;
|
---|
2199 | else if (iEntry >= 6 && IS_MATCHING_ENTRY(pSet, iEntry - 6, pvHint))
|
---|
2200 | iEntry = iEntry - 6;
|
---|
2201 | else if (iEntry >= 7 && IS_MATCHING_ENTRY(pSet, iEntry - 7, pvHint))
|
---|
2202 | iEntry = iEntry - 7;
|
---|
2203 | else
|
---|
2204 | {
|
---|
2205 | /*
|
---|
2206 | * Loop till we find it.
|
---|
2207 | */
|
---|
2208 | bool fFound = false;
|
---|
2209 | if (iEntry > 7)
|
---|
2210 | {
|
---|
2211 | iEntry -= 7;
|
---|
2212 | while (iEntry-- > 0)
|
---|
2213 | if (IS_MATCHING_ENTRY(pSet, iEntry, pvHint))
|
---|
2214 | {
|
---|
2215 | fFound = true;
|
---|
2216 | break;
|
---|
2217 | }
|
---|
2218 | }
|
---|
2219 | AssertMsgReturnVoid(fFound,
|
---|
2220 | ("pvHint=%p cEntries=%#x iSubset=%#x\n"
|
---|
2221 | "aEntries[0] = {%#x, %#x, %#x, %#x, %p}\n"
|
---|
2222 | "aEntries[1] = {%#x, %#x, %#x, %#x, %p}\n"
|
---|
2223 | "aEntries[2] = {%#x, %#x, %#x, %#x, %p}\n"
|
---|
2224 | "aEntries[3] = {%#x, %#x, %#x, %#x, %p}\n"
|
---|
2225 | "aEntries[4] = {%#x, %#x, %#x, %#x, %p}\n"
|
---|
2226 | "aEntries[5] = {%#x, %#x, %#x, %#x, %p}\n"
|
---|
2227 | ,
|
---|
2228 | pvHint, pSet->cEntries, pSet->iSubset,
|
---|
2229 | pSet->aEntries[0].iPage, pSet->aEntries[0].cRefs, pSet->aEntries[0].cInlinedRefs, pSet->aEntries[0].cUnrefs, pSet->aEntries[0].pvPage,
|
---|
2230 | pSet->aEntries[1].iPage, pSet->aEntries[1].cRefs, pSet->aEntries[1].cInlinedRefs, pSet->aEntries[1].cUnrefs, pSet->aEntries[1].pvPage,
|
---|
2231 | pSet->aEntries[2].iPage, pSet->aEntries[2].cRefs, pSet->aEntries[2].cInlinedRefs, pSet->aEntries[2].cUnrefs, pSet->aEntries[2].pvPage,
|
---|
2232 | pSet->aEntries[3].iPage, pSet->aEntries[3].cRefs, pSet->aEntries[3].cInlinedRefs, pSet->aEntries[3].cUnrefs, pSet->aEntries[3].pvPage,
|
---|
2233 | pSet->aEntries[4].iPage, pSet->aEntries[4].cRefs, pSet->aEntries[4].cInlinedRefs, pSet->aEntries[4].cUnrefs, pSet->aEntries[4].pvPage,
|
---|
2234 | pSet->aEntries[5].iPage, pSet->aEntries[5].cRefs, pSet->aEntries[5].cInlinedRefs, pSet->aEntries[5].cUnrefs, pSet->aEntries[5].pvPage));
|
---|
2235 | }
|
---|
2236 | #undef IS_MATCHING_ENTRY
|
---|
2237 |
|
---|
2238 | /*
|
---|
2239 | * Update it.
|
---|
2240 | */
|
---|
2241 | uint32_t const cTotalRefs = (uint32_t)pSet->aEntries[iEntry].cRefs + pSet->aEntries[iEntry].cInlinedRefs;
|
---|
2242 | uint32_t const cUnrefs = pSet->aEntries[iEntry].cUnrefs;
|
---|
2243 | LogFlow(("pgmRZDynMapUnusedHint: pvHint=%p #%u cRefs=%d cInlinedRefs=%d cUnrefs=%d (+1) cTotalRefs=%d %s(%d) %s\n",
|
---|
2244 | pvHint, iEntry, pSet->aEntries[iEntry].cRefs, pSet->aEntries[iEntry].cInlinedRefs, cUnrefs, cTotalRefs, pszFile, iLine, pszFunction));
|
---|
2245 | AssertReturnVoid(cTotalRefs > cUnrefs);
|
---|
2246 |
|
---|
2247 | if (RT_LIKELY(cUnrefs < UINT16_MAX - 1))
|
---|
2248 | pSet->aEntries[iEntry].cUnrefs++;
|
---|
2249 | else if (pSet->aEntries[iEntry].cInlinedRefs)
|
---|
2250 | {
|
---|
2251 | uint32_t cSub = RT_MIN(pSet->aEntries[iEntry].cInlinedRefs, pSet->aEntries[iEntry].cUnrefs);
|
---|
2252 | pSet->aEntries[iEntry].cInlinedRefs -= cSub;
|
---|
2253 | pSet->aEntries[iEntry].cUnrefs -= cSub;
|
---|
2254 | pSet->aEntries[iEntry].cUnrefs++;
|
---|
2255 | }
|
---|
2256 | else
|
---|
2257 | Log(("pgmRZDynMapUnusedHint: pvHint=%p ignored because of overflow! %s(%d) %s\n", pvHint, pszFile, iLine, pszFunction));
|
---|
2258 |
|
---|
2259 | #ifdef PGMRZDYNMAP_STRICT_RELEASE
|
---|
2260 | /*
|
---|
2261 | * Optimize the set to trigger the unmapping and invalidation of the page.
|
---|
2262 | */
|
---|
2263 | if (cUnrefs + 1 == cTotalRefs)
|
---|
2264 | pgmDynMapOptimizeAutoSet(pSet);
|
---|
2265 | #endif
|
---|
2266 | }
|
---|
2267 |
|
---|
2268 |
|
---|
2269 | /**
|
---|
2270 | * Common worker code for pgmRZDynMapHCPageInlined, pgmRZDynMapHCPageV2Inlined
|
---|
2271 | * and pgmR0DynMapGCPageOffInlined.
|
---|
2272 | *
|
---|
2273 | * @returns VINF_SUCCESS, bails out to ring-3 on failure.
|
---|
2274 | * @param pSet The set.
|
---|
2275 | * @param HCPhys The physical address of the page.
|
---|
2276 | * @param ppv Where to store the address of the mapping on success.
|
---|
2277 | *
|
---|
2278 | * @remarks This is a very hot path.
|
---|
2279 | */
|
---|
2280 | int pgmRZDynMapHCPageCommon(PPGMMAPSET pSet, RTHCPHYS HCPhys, void **ppv RTLOG_COMMA_SRC_POS_DECL)
|
---|
2281 | {
|
---|
2282 | AssertMsg(pSet->iCpu == PGMRZDYNMAP_CUR_CPU(), ("%d %d efl=%#x\n", pSet->iCpu, PGMRZDYNMAP_CUR_CPU(), ASMGetFlags()));
|
---|
2283 | PVMCPU pVCpu = PGMRZDYNMAP_SET_2_VMCPU(pSet);
|
---|
2284 | STAM_PROFILE_START(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapHCPage, a);
|
---|
2285 |
|
---|
2286 | /*
|
---|
2287 | * Map it.
|
---|
2288 | */
|
---|
2289 | void *pvPage;
|
---|
2290 | PPGMRZDYNMAP pThis = PGMRZDYNMAP_SET_2_DYNMAP(pSet);
|
---|
2291 | uint32_t iPage = pgmR0DynMapPage(pThis, HCPhys, pSet->iCpu, pVCpu, &pvPage);
|
---|
2292 | if (RT_UNLIKELY(iPage == UINT32_MAX))
|
---|
2293 | {
|
---|
2294 | /*
|
---|
2295 | * We're out of mapping space, optimize our set to try remedy the
|
---|
2296 | * situation. (Only works if there are unreference hints.)
|
---|
2297 | */
|
---|
2298 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapSetOptimize);
|
---|
2299 | pgmDynMapOptimizeAutoSet(pSet);
|
---|
2300 |
|
---|
2301 | iPage = pgmR0DynMapPage(pThis, HCPhys, pSet->iCpu, pVCpu, &pvPage);
|
---|
2302 | if (RT_UNLIKELY(iPage == UINT32_MAX))
|
---|
2303 | {
|
---|
2304 | RTAssertMsg2Weak("pgmRZDynMapHCPageCommon: cLoad=%u/%u cPages=%u cGuardPages=%u\n",
|
---|
2305 | pThis->cLoad, pThis->cMaxLoad, pThis->cPages, pThis->cGuardPages);
|
---|
2306 | if (!g_fPGMR0DynMapTestRunning)
|
---|
2307 | VMMRZCallRing3NoCpu(PGMRZDYNMAP_SET_2_VM(pSet), VMMCALLRING3_VM_R0_ASSERTION, 0);
|
---|
2308 | *ppv = NULL;
|
---|
2309 | STAM_PROFILE_STOP(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapHCPage, a);
|
---|
2310 | return VERR_PGM_DYNMAP_FAILED;
|
---|
2311 | }
|
---|
2312 | }
|
---|
2313 |
|
---|
2314 | /*
|
---|
2315 | * Add the page to the auto reference set.
|
---|
2316 | *
|
---|
2317 | * The typical usage pattern means that the same pages will be mapped
|
---|
2318 | * several times in the same set. We can catch most of these
|
---|
2319 | * remappings by looking a few pages back into the set. (The searching
|
---|
2320 | * and set optimizing path will hardly ever be used when doing this.)
|
---|
2321 | */
|
---|
2322 | AssertCompile(RT_ELEMENTS(pSet->aEntries) >= 8);
|
---|
2323 | int32_t i = pSet->cEntries;
|
---|
2324 | if (i-- < 5)
|
---|
2325 | {
|
---|
2326 | unsigned iEntry = pSet->cEntries++;
|
---|
2327 | pSet->aEntries[iEntry].cRefs = 1;
|
---|
2328 | pSet->aEntries[iEntry].cUnrefs = 0;
|
---|
2329 | pSet->aEntries[iEntry].cInlinedRefs = 0;
|
---|
2330 | pSet->aEntries[iEntry].iPage = iPage;
|
---|
2331 | pSet->aEntries[iEntry].pvPage = pvPage;
|
---|
2332 | pSet->aEntries[iEntry].HCPhys = HCPhys;
|
---|
2333 | pSet->aiHashTable[PGMMAPSET_HASH(HCPhys)] = iEntry;
|
---|
2334 | LogFlow(("pgmRZDynMapHCPageCommon: pSet=%p HCPhys=%RHp #%u/%u/%p cRefs=%u/0/0 iPage=%#x [a] %s(%d) %s\n",
|
---|
2335 | pSet, HCPhys, iEntry, iEntry + 1, pvPage, 1, iPage, pszFile, iLine, pszFunction));
|
---|
2336 | }
|
---|
2337 | /* Any of the last 5 pages? */
|
---|
2338 | else if ( pSet->aEntries[i - 0].iPage == iPage
|
---|
2339 | && pSet->aEntries[i - 0].cRefs < UINT16_MAX - 1)
|
---|
2340 | {
|
---|
2341 | pSet->aEntries[i - 0].cRefs++;
|
---|
2342 | LogFlow(("pgmRZDynMapHCPageCommon: pSet=%p HCPhys=%RHp #%u/%u/%p cRefs=%u/%u/%u iPage=%#x [0] %s(%d) %s\n", pSet, HCPhys, i - 0, pSet->cEntries, pvPage, pSet->aEntries[i - 0].cRefs, pSet->aEntries[i - 0].cInlinedRefs, pSet->aEntries[i - 0].cUnrefs, iPage, pszFile, iLine, pszFunction));
|
---|
2343 | }
|
---|
2344 | else if ( pSet->aEntries[i - 1].iPage == iPage
|
---|
2345 | && pSet->aEntries[i - 1].cRefs < UINT16_MAX - 1)
|
---|
2346 | {
|
---|
2347 | pSet->aEntries[i - 1].cRefs++;
|
---|
2348 | LogFlow(("pgmRZDynMapHCPageCommon: pSet=%p HCPhys=%RHp #%u/%u/%p cRefs=%u/%u/%u iPage=%#x [1] %s(%d) %s\n", pSet, HCPhys, i - 1, pSet->cEntries, pvPage, pSet->aEntries[i - 1].cRefs, pSet->aEntries[i - 1].cInlinedRefs, pSet->aEntries[i - 1].cUnrefs, iPage, pszFile, iLine, pszFunction));
|
---|
2349 | }
|
---|
2350 | else if ( pSet->aEntries[i - 2].iPage == iPage
|
---|
2351 | && pSet->aEntries[i - 2].cRefs < UINT16_MAX - 1)
|
---|
2352 | {
|
---|
2353 | pSet->aEntries[i - 2].cRefs++;
|
---|
2354 | LogFlow(("pgmRZDynMapHCPageCommon: pSet=%p HCPhys=%RHp #%u/%u/%p cRefs=%u/%u/%u iPage=%#x [2] %s(%d) %s\n", pSet, HCPhys, i - 2, pSet->cEntries, pvPage, pSet->aEntries[i - 2].cRefs, pSet->aEntries[i - 2].cInlinedRefs, pSet->aEntries[i - 2].cUnrefs, iPage, pszFile, iLine, pszFunction));
|
---|
2355 | }
|
---|
2356 | else if ( pSet->aEntries[i - 3].iPage == iPage
|
---|
2357 | && pSet->aEntries[i - 3].cRefs < UINT16_MAX - 1)
|
---|
2358 | {
|
---|
2359 | pSet->aEntries[i - 3].cRefs++;
|
---|
2360 | LogFlow(("pgmRZDynMapHCPageCommon: pSet=%p HCPhys=%RHp #%u/%u/%p cRefs=%u/%u/%u iPage=%#x [4] %s(%d) %s\n", pSet, HCPhys, i - 3, pSet->cEntries, pvPage, pSet->aEntries[i - 3].cRefs, pSet->aEntries[i - 3].cInlinedRefs, pSet->aEntries[i - 3].cUnrefs, iPage, pszFile, iLine, pszFunction));
|
---|
2361 | }
|
---|
2362 | else if ( pSet->aEntries[i - 4].iPage == iPage
|
---|
2363 | && pSet->aEntries[i - 4].cRefs < UINT16_MAX - 1)
|
---|
2364 | {
|
---|
2365 | pSet->aEntries[i - 4].cRefs++;
|
---|
2366 | LogFlow(("pgmRZDynMapHCPageCommon: pSet=%p HCPhys=%RHp #%u/%u/%p cRefs=%u/%u/%u iPage=%#x [4] %s(%d) %s\n", pSet, HCPhys, i - 4, pSet->cEntries, pvPage, pSet->aEntries[i - 4].cRefs, pSet->aEntries[i - 4].cInlinedRefs, pSet->aEntries[i - 4].cUnrefs, iPage, pszFile, iLine, pszFunction));
|
---|
2367 | }
|
---|
2368 | /* Don't bother searching unless we're above a 60% load. */
|
---|
2369 | else if (RT_LIKELY(i <= (int32_t)RT_ELEMENTS(pSet->aEntries) * 60 / 100))
|
---|
2370 | {
|
---|
2371 | unsigned iEntry = pSet->cEntries++;
|
---|
2372 | pSet->aEntries[iEntry].cRefs = 1;
|
---|
2373 | pSet->aEntries[iEntry].cUnrefs = 0;
|
---|
2374 | pSet->aEntries[iEntry].cInlinedRefs = 0;
|
---|
2375 | pSet->aEntries[iEntry].iPage = iPage;
|
---|
2376 | pSet->aEntries[iEntry].pvPage = pvPage;
|
---|
2377 | pSet->aEntries[iEntry].HCPhys = HCPhys;
|
---|
2378 | pSet->aiHashTable[PGMMAPSET_HASH(HCPhys)] = iEntry;
|
---|
2379 | LogFlow(("pgmRZDynMapHCPageCommon: pSet=%p HCPhys=%RHp #%u/%u/%p cRefs=1/0/0 iPage=%#x [b] %s(%d) %s\n", pSet, HCPhys, iEntry, pSet->cEntries, pvPage, iPage, pszFile, iLine, pszFunction));
|
---|
2380 | }
|
---|
2381 | else
|
---|
2382 | {
|
---|
2383 | /* Search the rest of the set. */
|
---|
2384 | Assert(pSet->cEntries <= RT_ELEMENTS(pSet->aEntries));
|
---|
2385 | i -= 4;
|
---|
2386 | while (i-- > 0)
|
---|
2387 | if ( pSet->aEntries[i].iPage == iPage
|
---|
2388 | && pSet->aEntries[i].cRefs < UINT16_MAX - 1)
|
---|
2389 | {
|
---|
2390 | pSet->aEntries[i].cRefs++;
|
---|
2391 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapSetSearchHits);
|
---|
2392 | LogFlow(("pgmRZDynMapHCPageCommon: pSet=%p HCPhys=%RHp #%u/%u/%p cRefs=%u/%u/%u iPage=%#x [c] %s(%d) %s\n", pSet, HCPhys, i, pSet->cEntries, pvPage, pSet->aEntries[i].cRefs, pSet->aEntries[i].cInlinedRefs, pSet->aEntries[i].cUnrefs, iPage, pszFile, iLine, pszFunction));
|
---|
2393 | break;
|
---|
2394 | }
|
---|
2395 | if (i < 0)
|
---|
2396 | {
|
---|
2397 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapSetSearchMisses);
|
---|
2398 | #if 0 /* this is very bogus */
|
---|
2399 | if (pSet->iSubset < pSet->cEntries)
|
---|
2400 | {
|
---|
2401 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapSetSearchFlushes);
|
---|
2402 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->aStatRZDynMapSetFilledPct[(pSet->cEntries * 10 / RT_ELEMENTS(pSet->aEntries)) % 11]);
|
---|
2403 | pgmDynMapFlushSubset(pSet);
|
---|
2404 | }
|
---|
2405 | #endif
|
---|
2406 |
|
---|
2407 | if (RT_UNLIKELY(pSet->cEntries >= RT_ELEMENTS(pSet->aEntries)))
|
---|
2408 | {
|
---|
2409 | STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapSetOptimize);
|
---|
2410 | pgmDynMapOptimizeAutoSet(pSet);
|
---|
2411 | }
|
---|
2412 |
|
---|
2413 | if (RT_LIKELY(pSet->cEntries < RT_ELEMENTS(pSet->aEntries)))
|
---|
2414 | {
|
---|
2415 | unsigned iEntry = pSet->cEntries++;
|
---|
2416 | pSet->aEntries[iEntry].cRefs = 1;
|
---|
2417 | pSet->aEntries[iEntry].cUnrefs = 0;
|
---|
2418 | pSet->aEntries[iEntry].cInlinedRefs = 0;
|
---|
2419 | pSet->aEntries[iEntry].iPage = iPage;
|
---|
2420 | pSet->aEntries[iEntry].pvPage = pvPage;
|
---|
2421 | pSet->aEntries[iEntry].HCPhys = HCPhys;
|
---|
2422 | pSet->aiHashTable[PGMMAPSET_HASH(HCPhys)] = iEntry;
|
---|
2423 | LogFlow(("pgmRZDynMapHCPageCommon: pSet=%p HCPhys=%RHp #%u/%u/%p cRefs=1/0/0 iPage=%#x [d] %s(%d) %s\n", pSet, HCPhys, iEntry, pSet->cEntries, pvPage, iPage, pszFile, iLine, pszFunction));
|
---|
2424 | }
|
---|
2425 | else
|
---|
2426 | {
|
---|
2427 | /* We're screwed. */
|
---|
2428 | pgmRZDynMapReleasePage(pThis, iPage, 1);
|
---|
2429 |
|
---|
2430 | RTAssertMsg2Weak("pgmRZDynMapHCPageCommon: set is full!\n");
|
---|
2431 | if (!g_fPGMR0DynMapTestRunning)
|
---|
2432 | VMMRZCallRing3NoCpu(PGMRZDYNMAP_SET_2_VM(pSet), VMMCALLRING3_VM_R0_ASSERTION, 0);
|
---|
2433 | *ppv = NULL;
|
---|
2434 | STAM_PROFILE_STOP(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapHCPage, a);
|
---|
2435 | return VERR_PGM_DYNMAP_FULL_SET;
|
---|
2436 | }
|
---|
2437 | }
|
---|
2438 | }
|
---|
2439 |
|
---|
2440 | *ppv = pvPage;
|
---|
2441 | STAM_PROFILE_STOP(&pVCpu->pgm.s.CTX_SUFF(pStats)->StatRZDynMapHCPage, a);
|
---|
2442 | return VINF_SUCCESS;
|
---|
2443 | }
|
---|
2444 |
|
---|
2445 |
|
---|
2446 | #if 0 /*def DEBUG*/
|
---|
2447 | /** For pgmR0DynMapTest3PerCpu. */
|
---|
2448 | typedef struct PGMR0DYNMAPTEST
|
---|
2449 | {
|
---|
2450 | uint32_t u32Expect;
|
---|
2451 | uint32_t *pu32;
|
---|
2452 | uint32_t volatile cFailures;
|
---|
2453 | } PGMR0DYNMAPTEST;
|
---|
2454 | typedef PGMR0DYNMAPTEST *PPGMR0DYNMAPTEST;
|
---|
2455 |
|
---|
2456 | /**
|
---|
2457 | * Checks that the content of the page is the same on all CPUs, i.e. that there
|
---|
2458 | * are no CPU specific PTs or similar nasty stuff involved.
|
---|
2459 | *
|
---|
2460 | * @param idCpu The current CPU.
|
---|
2461 | * @param pvUser1 Pointer a PGMR0DYNMAPTEST structure.
|
---|
2462 | * @param pvUser2 Unused, ignored.
|
---|
2463 | */
|
---|
2464 | static DECLCALLBACK(void) pgmR0DynMapTest3PerCpu(RTCPUID idCpu, void *pvUser1, void *pvUser2)
|
---|
2465 | {
|
---|
2466 | PPGMR0DYNMAPTEST pTest = (PPGMR0DYNMAPTEST)pvUser1;
|
---|
2467 | ASMInvalidatePage(pTest->pu32);
|
---|
2468 | if (*pTest->pu32 != pTest->u32Expect)
|
---|
2469 | ASMAtomicIncU32(&pTest->cFailures);
|
---|
2470 | NOREF(pvUser2); NOREF(idCpu);
|
---|
2471 | }
|
---|
2472 |
|
---|
2473 |
|
---|
2474 | /**
|
---|
2475 | * Performs some basic tests in debug builds.
|
---|
2476 | */
|
---|
2477 | static int pgmR0DynMapTest(PVM pVM)
|
---|
2478 | {
|
---|
2479 | LogRel(("pgmR0DynMapTest: ****** START ******\n"));
|
---|
2480 | PPGMMAPSET pSet = &pVM->aCpus[0].pgm.s.AutoSet;
|
---|
2481 | PPGMRZDYNMAP pThis = PGMRZDYNMAP_SET_2_DYNMAP(pSet);
|
---|
2482 | uint32_t i;
|
---|
2483 |
|
---|
2484 | /*
|
---|
2485 | * Assert internal integrity first.
|
---|
2486 | */
|
---|
2487 | LogRel(("Test #0\n"));
|
---|
2488 | int rc = PGMR0DynMapAssertIntegrity();
|
---|
2489 | if (RT_FAILURE(rc))
|
---|
2490 | return rc;
|
---|
2491 |
|
---|
2492 | void *pvR0DynMapUsedSaved = pVM->pgm.s.pvR0DynMapUsed;
|
---|
2493 | pVM->pgm.s.pvR0DynMapUsed = pThis;
|
---|
2494 | g_fPGMR0DynMapTestRunning = true;
|
---|
2495 |
|
---|
2496 | /*
|
---|
2497 | * Simple test, map CR3 twice and check that we're getting the
|
---|
2498 | * same mapping address back.
|
---|
2499 | */
|
---|
2500 | LogRel(("Test #1\n"));
|
---|
2501 | ASMIntDisable();
|
---|
2502 | PGMRZDynMapStartAutoSet(&pVM->aCpus[0]);
|
---|
2503 |
|
---|
2504 | uint64_t cr3 = ASMGetCR3() & ~(uint64_t)PAGE_OFFSET_MASK;
|
---|
2505 | void *pv = (void *)(intptr_t)-1;
|
---|
2506 | void *pv2 = (void *)(intptr_t)-2;
|
---|
2507 | rc = pgmRZDynMapHCPageCommon(pVM, cr3, &pv RTLOG_COMMA_SRC_POS);
|
---|
2508 | int rc2 = pgmRZDynMapHCPageCommon(pVM, cr3, &pv2 RTLOG_COMMA_SRC_POS);
|
---|
2509 | ASMIntEnable();
|
---|
2510 | if ( RT_SUCCESS(rc2)
|
---|
2511 | && RT_SUCCESS(rc)
|
---|
2512 | && pv == pv2)
|
---|
2513 | {
|
---|
2514 | LogRel(("Load=%u/%u/%u Set=%u/%u\n", pThis->cLoad, pThis->cMaxLoad, pThis->cPages - pThis->cPages, pSet->cEntries, RT_ELEMENTS(pSet->aEntries)));
|
---|
2515 | rc = PGMR0DynMapAssertIntegrity();
|
---|
2516 |
|
---|
2517 | /*
|
---|
2518 | * Check that the simple set overflow code works by filling it
|
---|
2519 | * with more CR3 mappings.
|
---|
2520 | */
|
---|
2521 | LogRel(("Test #2\n"));
|
---|
2522 | ASMIntDisable();
|
---|
2523 | PGMR0DynMapMigrateAutoSet(&pVM->aCpus[0]);
|
---|
2524 | for (i = 0 ; i < UINT16_MAX*2 - 1 && RT_SUCCESS(rc) && pv2 == pv; i++)
|
---|
2525 | {
|
---|
2526 | pv2 = (void *)(intptr_t)-4;
|
---|
2527 | rc = pgmRZDynMapHCPageCommon(pVM, cr3, &pv2 RTLOG_COMMA_SRC_POS);
|
---|
2528 | }
|
---|
2529 | ASMIntEnable();
|
---|
2530 | if (RT_FAILURE(rc) || pv != pv2)
|
---|
2531 | {
|
---|
2532 | LogRel(("failed(%d): rc=%Rrc; pv=%p pv2=%p i=%p\n", __LINE__, rc, pv, pv2, i));
|
---|
2533 | if (RT_SUCCESS(rc)) rc = VERR_PGM_DYNMAP_IPE;
|
---|
2534 | }
|
---|
2535 | else if (pSet->cEntries != 5)
|
---|
2536 | {
|
---|
2537 | LogRel(("failed(%d): cEntries=%d expected %d\n", __LINE__, pSet->cEntries, RT_ELEMENTS(pSet->aEntries) / 2));
|
---|
2538 | rc = VERR_PGM_DYNMAP_IPE;
|
---|
2539 | }
|
---|
2540 | else if ( pSet->aEntries[4].cRefs != UINT16_MAX - 1
|
---|
2541 | || pSet->aEntries[3].cRefs != UINT16_MAX - 1
|
---|
2542 | || pSet->aEntries[2].cRefs != 1
|
---|
2543 | || pSet->aEntries[1].cRefs != 1
|
---|
2544 | || pSet->aEntries[0].cRefs != 1)
|
---|
2545 | {
|
---|
2546 | LogRel(("failed(%d): bad set dist: ", __LINE__));
|
---|
2547 | for (i = 0; i < pSet->cEntries; i++)
|
---|
2548 | LogRel(("[%d]=%d, ", i, pSet->aEntries[i].cRefs));
|
---|
2549 | LogRel(("\n"));
|
---|
2550 | rc = VERR_PGM_DYNMAP_IPE;
|
---|
2551 | }
|
---|
2552 | if (RT_SUCCESS(rc))
|
---|
2553 | rc = PGMR0DynMapAssertIntegrity();
|
---|
2554 | if (RT_SUCCESS(rc))
|
---|
2555 | {
|
---|
2556 | /*
|
---|
2557 | * Trigger an set optimization run (exactly).
|
---|
2558 | */
|
---|
2559 | LogRel(("Test #3\n"));
|
---|
2560 | ASMIntDisable();
|
---|
2561 | PGMR0DynMapMigrateAutoSet(&pVM->aCpus[0]);
|
---|
2562 | pv2 = NULL;
|
---|
2563 | for (i = 0 ; i < RT_ELEMENTS(pSet->aEntries) - 5 && RT_SUCCESS(rc) && pv2 != pv; i++)
|
---|
2564 | {
|
---|
2565 | pv2 = (void *)(intptr_t)(-5 - i);
|
---|
2566 | rc = pgmRZDynMapHCPageCommon(pVM, cr3 + PAGE_SIZE * (i + 5), &pv2 RTLOG_COMMA_SRC_POS);
|
---|
2567 | }
|
---|
2568 | ASMIntEnable();
|
---|
2569 | if (RT_FAILURE(rc) || pv == pv2)
|
---|
2570 | {
|
---|
2571 | LogRel(("failed(%d): rc=%Rrc; pv=%p pv2=%p i=%d\n", __LINE__, rc, pv, pv2, i));
|
---|
2572 | if (RT_SUCCESS(rc)) rc = VERR_PGM_DYNMAP_IPE;
|
---|
2573 | }
|
---|
2574 | else if (pSet->cEntries != RT_ELEMENTS(pSet->aEntries))
|
---|
2575 | {
|
---|
2576 | LogRel(("failed(%d): cEntries=%d expected %d\n", __LINE__, pSet->cEntries, RT_ELEMENTS(pSet->aEntries)));
|
---|
2577 | rc = VERR_PGM_DYNMAP_IPE;
|
---|
2578 | }
|
---|
2579 | LogRel(("Load=%u/%u/%u Set=%u/%u\n", pThis->cLoad, pThis->cMaxLoad, pThis->cPages - pThis->cPages, pSet->cEntries, RT_ELEMENTS(pSet->aEntries)));
|
---|
2580 | if (RT_SUCCESS(rc))
|
---|
2581 | rc = PGMR0DynMapAssertIntegrity();
|
---|
2582 | if (RT_SUCCESS(rc))
|
---|
2583 | {
|
---|
2584 | /*
|
---|
2585 | * Trigger an overflow error.
|
---|
2586 | */
|
---|
2587 | LogRel(("Test #4\n"));
|
---|
2588 | ASMIntDisable();
|
---|
2589 | PGMR0DynMapMigrateAutoSet(&pVM->aCpus[0]);
|
---|
2590 | for (i = 0 ; i < RT_ELEMENTS(pSet->aEntries) + 2; i++)
|
---|
2591 | {
|
---|
2592 | rc = pgmRZDynMapHCPageCommon(pVM, cr3 - PAGE_SIZE * (i + 5), &pv2 RTLOG_COMMA_SRC_POS);
|
---|
2593 | if (RT_SUCCESS(rc))
|
---|
2594 | rc = PGMR0DynMapAssertIntegrity();
|
---|
2595 | if (RT_FAILURE(rc))
|
---|
2596 | break;
|
---|
2597 | }
|
---|
2598 | ASMIntEnable();
|
---|
2599 | if (rc == VERR_PGM_DYNMAP_FULL_SET)
|
---|
2600 | {
|
---|
2601 | /* flush the set. */
|
---|
2602 | LogRel(("Test #5\n"));
|
---|
2603 | ASMIntDisable();
|
---|
2604 | PGMR0DynMapMigrateAutoSet(&pVM->aCpus[0]);
|
---|
2605 | PGMRZDynMapReleaseAutoSet(&pVM->aCpus[0]);
|
---|
2606 | PGMRZDynMapStartAutoSet(&pVM->aCpus[0]);
|
---|
2607 | ASMIntEnable();
|
---|
2608 |
|
---|
2609 | rc = PGMR0DynMapAssertIntegrity();
|
---|
2610 | }
|
---|
2611 | else
|
---|
2612 | {
|
---|
2613 | LogRel(("failed(%d): rc=%Rrc, wanted %d ; pv2=%p Set=%u/%u; i=%d\n", __LINE__,
|
---|
2614 | rc, VERR_PGM_DYNMAP_FULL_SET, pv2, pSet->cEntries, RT_ELEMENTS(pSet->aEntries), i));
|
---|
2615 | if (RT_SUCCESS(rc)) rc = VERR_PGM_DYNMAP_IPE;
|
---|
2616 | }
|
---|
2617 | }
|
---|
2618 | }
|
---|
2619 | }
|
---|
2620 | else
|
---|
2621 | {
|
---|
2622 | LogRel(("failed(%d): rc=%Rrc rc2=%Rrc; pv=%p pv2=%p\n", __LINE__, rc, rc2, pv, pv2));
|
---|
2623 | if (RT_SUCCESS(rc))
|
---|
2624 | rc = rc2;
|
---|
2625 | }
|
---|
2626 |
|
---|
2627 | /*
|
---|
2628 | * Check that everyone sees the same stuff.
|
---|
2629 | */
|
---|
2630 | if (RT_SUCCESS(rc))
|
---|
2631 | {
|
---|
2632 | LogRel(("Test #5\n"));
|
---|
2633 | ASMIntDisable();
|
---|
2634 | PGMR0DynMapMigrateAutoSet(&pVM->aCpus[0]);
|
---|
2635 | RTHCPHYS HCPhysPT = RTR0MemObjGetPagePhysAddr(pThis->pSegHead->ahMemObjPTs[0], 0);
|
---|
2636 | rc = pgmRZDynMapHCPageCommon(pVM, HCPhysPT, &pv RTLOG_COMMA_SRC_POS);
|
---|
2637 | if (RT_SUCCESS(rc))
|
---|
2638 | {
|
---|
2639 | PGMR0DYNMAPTEST Test;
|
---|
2640 | uint32_t *pu32Real = &pThis->paPages[pThis->pSegHead->iPage].uPte.pLegacy->u;
|
---|
2641 | Test.pu32 = (uint32_t *)((uintptr_t)pv | ((uintptr_t)pu32Real & PAGE_OFFSET_MASK));
|
---|
2642 | Test.u32Expect = *pu32Real;
|
---|
2643 | ASMAtomicWriteU32(&Test.cFailures, 0);
|
---|
2644 | ASMIntEnable();
|
---|
2645 |
|
---|
2646 | rc = RTMpOnAll(pgmR0DynMapTest3PerCpu, &Test, NULL);
|
---|
2647 | if (RT_FAILURE(rc))
|
---|
2648 | LogRel(("failed(%d): RTMpOnAll rc=%Rrc\n", __LINE__, rc));
|
---|
2649 | else if (Test.cFailures)
|
---|
2650 | {
|
---|
2651 | LogRel(("failed(%d): cFailures=%d pu32Real=%p pu32=%p u32Expect=%#x *pu32=%#x\n", __LINE__,
|
---|
2652 | Test.cFailures, pu32Real, Test.pu32, Test.u32Expect, *Test.pu32));
|
---|
2653 | rc = VERR_PGM_DYNMAP_IPE;
|
---|
2654 | }
|
---|
2655 | else
|
---|
2656 | LogRel(("pu32Real=%p pu32=%p u32Expect=%#x *pu32=%#x\n",
|
---|
2657 | pu32Real, Test.pu32, Test.u32Expect, *Test.pu32));
|
---|
2658 | }
|
---|
2659 | else
|
---|
2660 | {
|
---|
2661 | ASMIntEnable();
|
---|
2662 | LogRel(("failed(%d): rc=%Rrc\n", rc));
|
---|
2663 | }
|
---|
2664 | }
|
---|
2665 |
|
---|
2666 | /*
|
---|
2667 | * Clean up.
|
---|
2668 | */
|
---|
2669 | LogRel(("Cleanup.\n"));
|
---|
2670 | ASMIntDisable();
|
---|
2671 | PGMR0DynMapMigrateAutoSet(&pVM->aCpus[0]);
|
---|
2672 | PGMRZDynMapFlushAutoSet(&pVM->aCpus[0]);
|
---|
2673 | PGMRZDynMapReleaseAutoSet(&pVM->aCpus[0]);
|
---|
2674 | ASMIntEnable();
|
---|
2675 |
|
---|
2676 | if (RT_SUCCESS(rc))
|
---|
2677 | rc = PGMR0DynMapAssertIntegrity();
|
---|
2678 | else
|
---|
2679 | PGMR0DynMapAssertIntegrity();
|
---|
2680 |
|
---|
2681 | g_fPGMR0DynMapTestRunning = false;
|
---|
2682 | LogRel(("Result: rc=%Rrc Load=%u/%u/%u Set=%#x/%u\n", rc,
|
---|
2683 | pThis->cLoad, pThis->cMaxLoad, pThis->cPages - pThis->cPages, pSet->cEntries, RT_ELEMENTS(pSet->aEntries)));
|
---|
2684 | pVM->pgm.s.pvR0DynMapUsed = pvR0DynMapUsedSaved;
|
---|
2685 | LogRel(("pgmR0DynMapTest: ****** END ******\n"));
|
---|
2686 | return rc;
|
---|
2687 | }
|
---|
2688 | #endif /* DEBUG */
|
---|
2689 |
|
---|