Changeset 72556 in vbox for trunk/src/VBox
- Timestamp:
- Jun 14, 2018 9:31:41 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/EMR3Dbg.cpp
r72555 r72556 254 254 idx -= 1; 255 255 PCEMEXITENTRY const pEntry = &pVCpu->em.s.aExitHistory[(uintptr_t)idx & 0xff]; 256 if (!fReverse)257 idx += 1;258 256 259 257 /* Get the exit name. */ … … 261 259 const char *pszExitName = emR3HistoryGetExitName(pEntry->uFlagsAndType, szExitName, sizeof(szExitName)); 262 260 261 /* Calc delta (negative if reverse order, positive ascending). */ 263 262 int64_t offDelta = uPrevTimestamp != 0 && pEntry->uTimestamp != 0 ? pEntry->uTimestamp - uPrevTimestamp : 0; 264 263 uPrevTimestamp = pEntry->uTimestamp; 265 264 265 /* Do the printing. */ 266 266 if (pEntry->idxSlot == UINT32_MAX) 267 267 pHlp->pfnPrintf(pHlp, " %10RU64: %#018RX64/%+-9RI64 %016RX64 %#06x %s\n", … … 274 274 pEntry->idxSlot); 275 275 } 276 277 /* Advance if ascending. */ 278 if (!fReverse) 279 idx += 1; 276 280 } while (--cLeft > 0 && idx > 0); 277 281 }
Note:
See TracChangeset
for help on using the changeset viewer.