Searched refs:fA20Enabled (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPool.cpp2190 * @param fA20Enabled Whether the CPU has the A20 gate enabled.
2197 static int pgmPoolCacheAlloc(PPGMPOOL pPool, RTGCPHYS GCPhys, PGMPOOLKIND enmKind, PGMPOOLACCESS enmAccess, bool fA20Enabled,
2215 && pPage->fA20Enabled == fA20Enabled)
4318 RTGCPHYS32 const fPgMask = pPage->fA20Enabled ? X86_PTE_PG_MASK : X86_PTE_PG_MASK & ~RT_BIT_32(20);
4344 RTGCPHYS32 const fPgMask = pPage->fA20Enabled ? X86_PTE_PG_MASK : X86_PTE_PG_MASK & ~RT_BIT_32(20);
4371 RTGCPHYS const fPgMask = pPage->fA20Enabled ? X86_PTE_PAE_PG_MASK : X86_PTE_PAE_PG_MASK & ~RT_BIT_64(20);
4397 RTGCPHYS const GCPhysA20Mask = pPage->fA20Enabled ? UINT64_MAX : ~RT_BIT_64(20);
4423 RTGCPHYS const GCPhysA20Mask = pPage->fA20Enabled ? UINT64_MAX : ~RT_BIT_64(20);
4450 RTGCPHYS const GCPhysA20Mask = pPage->fA20Enabled
[all...]
H A DPGMAllPhys.cpp336 LogFlow(("PGMPhysIsA20Enabled %d\n", pVCpu->pgm.s.fA20Enabled));
337 return pVCpu->pgm.s.fA20Enabled;
/vbox/src/VBox/VMM/VMMR3/
H A DPGM.cpp1288 pPGM->fA20Enabled = true;
1289 pPGM->GCPhysA20Mask = ~((RTGCPHYS)!pPGM->fA20Enabled << 20);
2492 pVCpu->pgm.s.fA20Enabled = true;
2493 pVCpu->pgm.s.GCPhysA20Mask = ~((RTGCPHYS)!pVCpu->pgm.s.fA20Enabled << 20);
2574 if (!pVCpu->pgm.s.fA20Enabled)
2576 pVCpu->pgm.s.fA20Enabled = true;
2577 pVCpu->pgm.s.GCPhysA20Mask = ~((RTGCPHYS)!pVCpu->pgm.s.fA20Enabled << 20);
2687 pVM->aCpus[0].pgm.s.fA20Enabled ? "enabled" : "disabled", pVM->aCpus[0].pgm.s.cA20Changes.c);
H A DPGMSavedState.cpp146 bool fA20Enabled; member in struct:__anon16859
176 SSMFIELD_ENTRY( PGMCPU, fA20Enabled),
188 SSMFIELD_ENTRY( PGMCPU, fA20Enabled),
199 SSMFIELD_ENTRY( PGMOLD, fA20Enabled),
3036 pVM->aCpus[0].pgm.s.fA20Enabled = pgmOld.fA20Enabled;
3056 pVM->aCpus[0].pgm.s.fA20Enabled = !!u32;
3079 pVCpu->pgm.s.GCPhysA20Mask = ~((RTGCPHYS)!pVCpu->pgm.s.fA20Enabled << 20);
H A DPGMPhys.cpp3859 LogFlow(("PGMR3PhysSetA20 %d (was %d)\n", fEnable, pVCpu->pgm.s.fA20Enabled));
3860 if (pVCpu->pgm.s.fA20Enabled != fEnable)
3862 pVCpu->pgm.s.fA20Enabled = fEnable;
/vbox/src/VBox/VMM/include/
H A DPGMInternal.h2179 bool fA20Enabled : 1; member in struct:PGMPOOLPAGE
2598 # define PGM_A20_IS_ENABLED(a_pVCpu) ((a_pVCpu)->pgm.s.fA20Enabled)
3728 bool fA20Enabled; member in struct:PGMCPU
4089 int pgmPoolAlloc(PVM pVM, RTGCPHYS GCPhys, PGMPOOLKIND enmKind, PGMPOOLACCESS enmAccess, bool fA20Enabled,
/vbox/src/VBox/VMM/testcase/
H A DtstVMStruct.h603 GEN_CHECK_OFF(PGMCPU, fA20Enabled);
709 GEN_CHECK_OFF(PGMCPU, fA20Enabled);
852 //GEN_CHECK_OFF(PGMPOOLPAGE, fA20Enabled);

Completed in 125 milliseconds