Changeset 51434 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- May 28, 2014 8:14:55 AM (11 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r51256 r51434 7139 7139 * related. 7140 7140 * 7141 * Raises GP(0) if not aligned.7141 * Raises \#GP(0) if not aligned. 7142 7142 * 7143 7143 * @returns Strict VBox status code. -
trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h
r51182 r51434 4768 4768 static uint32_t s_cTimes = 0; 4769 4769 if (s_cTimes++ < 10) 4770 LogRel(("IEM: rdmsr(%#x) -> GP(0)\n", pCtx->ecx));4770 LogRel(("IEM: rdmsr(%#x) -> #GP(0)\n", pCtx->ecx)); 4771 4771 #endif 4772 Log(("IEM: rdmsr(%#x) -> GP(0)\n", pCtx->ecx));4772 Log(("IEM: rdmsr(%#x) -> #GP(0)\n", pCtx->ecx)); 4773 4773 AssertMsgReturn(rc == VERR_CPUM_RAISE_GP_0, ("%Rrc\n", rc), VERR_IPE_UNEXPECTED_STATUS); 4774 4774 return iemRaiseGeneralProtectionFault0(pIemCpu); … … 4821 4821 static uint32_t s_cTimes = 0; 4822 4822 if (s_cTimes++ < 10) 4823 LogRel(("IEM: wrmsr(%#x,%#x`%08x) -> GP(0)\n", pCtx->ecx, uValue.s.Hi, uValue.s.Lo));4823 LogRel(("IEM: wrmsr(%#x,%#x`%08x) -> #GP(0)\n", pCtx->ecx, uValue.s.Hi, uValue.s.Lo)); 4824 4824 #endif 4825 Log(("IEM: wrmsr(%#x,%#x`%08x) -> GP(0)\n", pCtx->ecx, uValue.s.Hi, uValue.s.Lo));4825 Log(("IEM: wrmsr(%#x,%#x`%08x) -> #GP(0)\n", pCtx->ecx, uValue.s.Hi, uValue.s.Lo)); 4826 4826 AssertMsgReturn(rc == VERR_CPUM_RAISE_GP_0, ("%Rrc\n", rc), VERR_IPE_UNEXPECTED_STATUS); 4827 4827 return iemRaiseGeneralProtectionFault0(pIemCpu); … … 5572 5572 5573 5573 /* 5574 * Check the state for stuff which will GP(0).5574 * Check the state for stuff which will #GP(0). 5575 5575 */ 5576 5576 uint32_t const fMXCSR = pSrc->MXCSR;
Note:
See TracChangeset
for help on using the changeset viewer.