Changeset 73471 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Aug 3, 2018 12:11:07 PM (6 years ago)
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/VMMInternal.h
r73203 r73471 183 183 /** EBP/RBP at the time of the jump to ring 3. */ 184 184 RTHCUINTREG SavedEbp; 185 /** EIP/RIP within vmmR0CallRing3LongJmp for assisting unwinding. */ 186 RTHCUINTREG SavedEipForUnwind; 187 /** Unwind: The vmmR0CallRing3SetJmp return address value. */ 188 RTHCUINTREG UnwindRetPcValue; 189 /** Unwind: The vmmR0CallRing3SetJmp return address stack location. */ 190 RTHCUINTREG UnwindRetPcLocation; 185 191 186 192 /** Stats: Max amount of stack used. */ -
trunk/src/VBox/VMM/include/VMMInternal.mac
r72778 r73471 50 50 .SavedEsp resd 1 51 51 .SavedEbp resd 1 52 .SavedEipForUnwind resd 1 53 .UnwindRetPcValue resd 1 54 .UnwindRetPcLocation resd 1 52 55 %endif 53 56 %ifdef RT_ARCH_AMD64 … … 87 90 .SavedEsp resq 1 88 91 .SavedEbp resq 1 92 .SavedEipForUnwind resq 1 93 .UnwindRetPcValue resq 1 94 .UnwindRetPcLocation resq 1 89 95 %endif 90 96
Note:
See TracChangeset
for help on using the changeset viewer.