Changeset 4419 in vbox for trunk/src/VBox
- Timestamp:
- Aug 29, 2007 9:18:13 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23991
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r4418 r4419 693 693 #ifdef IN_GC 694 694 /* Safety check (in theory it could cross a page boundary and fault there though) */ 695 //AssertMsgReturn(pParam1 == pvFault, ("eip=%VGv, pParam1=%VGv pvFault=%VGv\n", pRegFrame->eip, pParam1, pvFault), VERR_EM_INTERPRETER);695 AssertMsgReturn(pParam1 == pvFault, ("eip=%VGv, pParam1=%VGv pvFault=%VGv\n", pRegFrame->eip, pParam1, pvFault), VERR_EM_INTERPRETER); 696 696 #endif 697 697 rc = emRamRead(pVM, &valpar1, pParam1, param1.size); 698 698 if (VBOX_FAILURE(rc)) 699 699 { 700 //AssertMsgFailed(("emRamRead %VGv size=%d failed with %Vrc\n", pParam1, param1.size, rc));700 AssertMsgFailed(("emRamRead %VGv size=%d failed with %Vrc\n", pParam1, param1.size, rc)); 701 701 return VERR_EM_INTERPRETER; 702 702 } … … 1017 1017 #ifdef IN_GC 1018 1018 /* Safety check (in theory it could cross a page boundary and fault there though) */ 1019 //AssertMsgReturn(pDest == pvFault, ("eip=%VGv pDest=%VGv pvFault=%VGv\n", pRegFrame->eip, pDest, pvFault), VERR_EM_INTERPRETER);1019 AssertMsgReturn(pDest == pvFault, ("eip=%VGv pDest=%VGv pvFault=%VGv\n", pRegFrame->eip, pDest, pvFault), VERR_EM_INTERPRETER); 1020 1020 #endif 1021 1021 rc = emRamWrite(pVM, pDest, &val32, param2.size); … … 1116 1116 1117 1117 /* Safety check (in theory it could cross a page boundary and fault there though) */ 1118 //AssertMsgReturn(pParam1 == pvFault, ("eip=%VGv pParam1=%VGv pvFault=%VGv\n", pRegFrame->eip, pParam1, pvFault), VERR_EM_INTERPRETER);1118 AssertMsgReturn(pParam1 == pvFault, ("eip=%VGv pParam1=%VGv pvFault=%VGv\n", pRegFrame->eip, pParam1, pvFault), VERR_EM_INTERPRETER); 1119 1119 1120 1120 #ifdef VBOX_STRICT
Note:
See TracChangeset
for help on using the changeset viewer.