Changeset 104407 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Apr 23, 2024 11:16:04 PM (11 months ago)
- svn:sync-xref-src-repo-rev:
- 162902
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInternal.h
r104383 r104407 1902 1902 R3PTRTYPE(PIEMTB) pTbLookupEntryDummyR3; 1903 1903 1904 /** Statistics: Times TB execution was broken off before reaching the end. */1905 STAMCOUNTER StatTb ExecBreaks;1904 /** Threaded TB statistics: Times TB execution was broken off before reaching the end. */ 1905 STAMCOUNTER StatTbThreadedExecBreaks; 1906 1906 /** Statistics: Times BltIn_CheckIrq breaks out of the TB. */ 1907 1907 STAMCOUNTER StatCheckIrqBreaks; … … 2054 2054 /** Native recompiler: The TB finished executing jumping to the ReturnBreak label. */ 2055 2055 STAMCOUNTER StatNativeTbExitReturnBreak; 2056 /** Native recompiler: The TB finished executing jumping to the ReturnBreakFF label. */ 2057 STAMCOUNTER StatNativeTbExitReturnBreakFF; 2056 2058 /** Native recompiler: The TB finished executing jumping to the ReturnWithFlags label. */ 2057 2059 STAMCOUNTER StatNativeTbExitReturnWithFlags; 2060 /** Native recompiler: The TB finished executing with other non-zero status. */ 2061 STAMCOUNTER StatNativeTbExitReturnOtherStatus; 2062 /** Native recompiler: The TB finished executing via throw / long jump. */ 2063 STAMCOUNTER StatNativeTbExitLongJump; 2058 2064 2059 2065 /** Native recompiler: The TB finished executing jumping to the RaiseDe label. */ … … 2078 2084 STAMCOUNTER StatNativeTbExitObsoleteTb; 2079 2085 2080 uint64_t au64Padding[ 4];2086 uint64_t au64Padding[1]; 2081 2087 /** @} */ 2082 2088 -
trunk/src/VBox/VMM/include/IEMN8veRecompiler.h
r104383 r104407 472 472 kIemNativeLabelType_Return, 473 473 kIemNativeLabelType_ReturnBreak, 474 kIemNativeLabelType_ReturnBreakFF, 474 475 kIemNativeLabelType_ReturnWithFlags, 475 476 kIemNativeLabelType_NonZeroRetOrPassUp,
Note:
See TracChangeset
for help on using the changeset viewer.