Changeset 74798 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Oct 12, 2018 12:25:41 PM (6 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r74791 r74798 14337 14337 if (RT_LIKELY(pVCpu->iem.s.rcPassUp == VINF_SUCCESS)) 14338 14338 { 14339 uint 32_t fCpu = pVCpu->fLocalForcedActions14339 uint64_t fCpu = pVCpu->fLocalForcedActions 14340 14340 & ( VMCPU_FF_ALL_MASK & ~( VMCPU_FF_PGM_SYNC_CR3 14341 14341 | VMCPU_FF_PGM_SYNC_CR3_NON_GLOBAL … … 14499 14499 if (RT_LIKELY(pVCpu->iem.s.rcPassUp == VINF_SUCCESS)) 14500 14500 { 14501 uint 32_t fCpu = pVCpu->fLocalForcedActions14501 uint64_t fCpu = pVCpu->fLocalForcedActions 14502 14502 & ( VMCPU_FF_ALL_MASK & ~( VMCPU_FF_PGM_SYNC_CR3 14503 14503 | VMCPU_FF_PGM_SYNC_CR3_NON_GLOBAL -
trunk/src/VBox/VMM/VMMAll/IEMAllCImplStrInstr.cpp.h
r74791 r74798 89 89 else \ 90 90 { \ 91 LogFlow(("%s: Leaving early (outer)! ffcpu=%# xffvm=%#x\n", \92 __FUNCTION__, ( a_pVCpu)->fLocalForcedActions, (a_pVM)->fGlobalForcedActions)); \91 LogFlow(("%s: Leaving early (outer)! ffcpu=%#RX64 ffvm=%#x\n", \ 92 __FUNCTION__, (uint64_t)(a_pVCpu)->fLocalForcedActions, (a_pVM)->fGlobalForcedActions)); \ 93 93 return VINF_SUCCESS; \ 94 94 } \ … … 104 104 else \ 105 105 { \ 106 LogFlow(("%s: Leaving early (outer)! ffcpu=%# xffvm=%#x\n", \107 __FUNCTION__, ( a_pVCpu)->fLocalForcedActions, (a_pVM)->fGlobalForcedActions)); \106 LogFlow(("%s: Leaving early (outer)! ffcpu=%#RX64 ffvm=%#x\n", \ 107 __FUNCTION__, (uint64_t)(a_pVCpu)->fLocalForcedActions, (a_pVM)->fGlobalForcedActions)); \ 108 108 return VINF_SUCCESS; \ 109 109 } \ … … 124 124 else \ 125 125 { \ 126 LogFlow(("%s: Leaving early (inner)! ffcpu=%# xffvm=%#x\n", \127 __FUNCTION__, ( a_pVCpu)->fLocalForcedActions, (a_pVM)->fGlobalForcedActions)); \126 LogFlow(("%s: Leaving early (inner)! ffcpu=%#RX64 ffvm=%#x\n", \ 127 __FUNCTION__, (uint64_t)(a_pVCpu)->fLocalForcedActions, (a_pVM)->fGlobalForcedActions)); \ 128 128 return VINF_SUCCESS; \ 129 129 } \ … … 144 144 else \ 145 145 { \ 146 LogFlow(("%s: Leaving early (inner)! ffcpu=%# x(ffvm=%#x)\n", \147 __FUNCTION__, ( a_pVCpu)->fLocalForcedActions, (a_pVM)->fGlobalForcedActions)); \146 LogFlow(("%s: Leaving early (inner)! ffcpu=%#RX64 (ffvm=%#x)\n", \ 147 __FUNCTION__, (uint64_t)(a_pVCpu)->fLocalForcedActions, (a_pVM)->fGlobalForcedActions)); \ 148 148 return VINF_SUCCESS; \ 149 149 } \ -
trunk/src/VBox/VMM/VMMAll/NEMAllNativeTemplate-win.cpp.h
r74791 r74798 4309 4309 /** @todo Try handle pending flags, not just return to EM loops. Take care 4310 4310 * not to set important RCs here unless we've handled a message. */ 4311 LogFlow(("NEM/%u: breaking: pending FF (%#x / %# x)\n",4312 pVCpu->idCpu, pVM->fGlobalForcedActions, pVCpu->fLocalForcedActions));4311 LogFlow(("NEM/%u: breaking: pending FF (%#x / %#RX64)\n", 4312 pVCpu->idCpu, pVM->fGlobalForcedActions, (uint64_t)pVCpu->fLocalForcedActions)); 4313 4313 STAM_REL_COUNTER_INC(&pVCpu->nem.s.StatBreakOnFFPost); 4314 4314 }
Note:
See TracChangeset
for help on using the changeset viewer.