Changeset 46135 in vbox for trunk/src/VBox/VMM/include/PATMInternal.h
- Timestamp:
- May 16, 2013 11:32:47 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PATMInternal.h
r45620 r46135 427 427 * Used only during PATMR3Relocate(). */ 428 428 int32_t deltaReloc; 429 /* GC PATM state pointer - HC pointer. */429 /** GC PATM state pointer - HC pointer. */ 430 430 R3PTRTYPE(PPATMGCSTATE) pGCStateHC; 431 /* GC PATM state pointer - GC pointer. */431 /** GC PATM state pointer - RC pointer. */ 432 432 RCPTRTYPE(PPATMGCSTATE) pGCStateGC; 433 /** PATM stack page for call instruction execution. (2 parts: one for our private stack and one to store the original return address */ 433 /** PATM stack page for call instruction execution. 434 * 2 parts: one for our private stack and one to store the original return 435 * address. */ 434 436 RCPTRTYPE(RTRCPTR *) pGCStackGC; 435 437 /** HC pointer of the PATM stack page. */ … … 488 490 } savedstate; 489 491 492 /** Debug module for the patch memory. */ 493 RTDBGMOD hDbgModPatchMem; 494 490 495 STAMCOUNTER StatNrOpcodeRead; 491 496 STAMCOUNTER StatDisabled; … … 648 653 #endif 649 654 650 #endif 655 656 void patmR3DbgInit(PVM pVM); 657 void patmR3DbgTerm(PVM pVM); 658 void patmR3DbgReset(PVM pVM); 659 //void patmR3DbgNewPatch(PVM pVM, ); 660 661 #endif
Note:
See TracChangeset
for help on using the changeset viewer.