Changeset 43387 in vbox for trunk/src/recompiler/VBoxRecompiler.c
- Timestamp:
- Sep 21, 2012 9:40:25 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 80859
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r42601 r43387 40 40 #include <VBox/vmm/dbgf.h> 41 41 #include <VBox/dbg.h> 42 #include <VBox/vmm/h waccm.h>42 #include <VBox/vmm/hm.h> 43 43 #include <VBox/vmm/patm.h> 44 44 #include <VBox/vmm/csam.h> … … 956 956 * CPU_RAW_HWACC makes sure we never execute interrupt handlers in the recompiler. 957 957 */ 958 if (H WACCMIsEnabled(pVM))958 if (HMIsEnabled(pVM)) 959 959 pVM->rem.s.Env.state |= CPU_RAW_HWACC; 960 960 … … 1436 1436 return false; 1437 1437 1438 if (H WACCMIsEnabled(env->pVM))1438 if (HMIsEnabled(env->pVM)) 1439 1439 { 1440 1440 CPUMCTX Ctx; … … 1449 1449 1450 1450 /* 1451 * Create partial context for H WACCMR3CanExecuteGuest1451 * Create partial context for HMR3CanExecuteGuest 1452 1452 */ 1453 1453 Ctx.cr0 = env->cr[0]; … … 1528 1528 * Typically only 32-bits protected mode, with paging enabled, code is allowed here. 1529 1529 */ 1530 if (H WACCMR3CanExecuteGuest(env->pVM, &Ctx) == true)1530 if (HMR3CanExecuteGuest(env->pVM, &Ctx) == true) 1531 1531 { 1532 1532 *piException = EXCP_EXECUTE_HWACC; … … 1835 1835 && (((env->hflags >> HF_CPL_SHIFT) & 3) == 0) /* supervisor mode only */ 1836 1836 && !(env->eflags & VM_MASK) /* no V86 mode */ 1837 && !H WACCMIsEnabled(env->pVM))1837 && !HMIsEnabled(env->pVM)) 1838 1838 CSAMR3MonitorPage(env->pVM, GCPtr, CSAM_TAG_REM); 1839 1839 #endif … … 1855 1855 && (((env->hflags >> HF_CPL_SHIFT) & 3) == 0) /* supervisor mode only */ 1856 1856 && !(env->eflags & VM_MASK) /* no V86 mode */ 1857 && !H WACCMIsEnabled(env->pVM))1857 && !HMIsEnabled(env->pVM)) 1858 1858 CSAMR3UnmonitorPage(env->pVM, GCPtr, CSAM_TAG_REM); 1859 1859 #endif … … 2748 2748 */ 2749 2749 CPUMR3RemLeave(pVCpu, 2750 H WACCMIsEnabled(pVM)2750 HMIsEnabled(pVM) 2751 2751 || ( pVM->rem.s.Env.segs[R_SS].newselector 2752 2752 | pVM->rem.s.Env.segs[R_GS].newselector
Note:
See TracChangeset
for help on using the changeset viewer.