Changeset 19293 in vbox for trunk/src/VBox/VMM/PATM
- Timestamp:
- May 1, 2009 4:11:18 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46745
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PATM/PATM.cpp
r19240 r19293 5864 5864 char szBuf[256]; 5865 5865 szBuf[0] = '\0'; 5866 DBGFR3DisasInstr (pVM, pVCpu, pCtx->cs, pCurPatchInstrGC, szBuf, sizeof(szBuf));5866 DBGFR3DisasInstrEx(pVM, pVCpu->idCpu, pCtx->cs, pCurPatchInstrGC, 0, szBuf, sizeof(szBuf), NULL); 5867 5867 Log(("DIRTY: %s\n", szBuf)); 5868 5868 #endif … … 5926 5926 char szBuf[256]; 5927 5927 szBuf[0] = '\0'; 5928 DBGFR3DisasInstr (pVM, pVCpu, pCtx->cs, pCurInstrGC, szBuf, sizeof(szBuf));5928 DBGFR3DisasInstrEx(pVM, pVCpu->idCpu, pCtx->cs, pCurInstrGC, 0, szBuf, sizeof(szBuf), NULL); 5929 5929 Log(("NEW: %s\n", szBuf)); 5930 5930 #endif … … 5942 5942 char szBuf[256]; 5943 5943 szBuf[0] = '\0'; 5944 DBGFR3DisasInstr (pVM, pVCpu, pCtx->cs, pCurInstrGC, szBuf, sizeof(szBuf));5944 DBGFR3DisasInstrEx(pVM, pVCpu->idCpu, pCtx->cs, pCurInstrGC, 0, szBuf, sizeof(szBuf), NULL); 5945 5945 Log(("NEW: %s (FAILED)\n", szBuf)); 5946 5946 #endif … … 6140 6140 char szBuf[256]; 6141 6141 szBuf[0] = '\0'; 6142 DBGFR3DisasInstr (pVM, pVCpu, pCtx->cs, pEip, szBuf, sizeof(szBuf));6142 DBGFR3DisasInstrEx(pVM, pVCpu->idCpu, pCtx->cs, pEip, 0, szBuf, sizeof(szBuf), NULL); 6143 6143 6144 6144 /* Very bad. We crashed in emitted code. Probably stack? */
Note:
See TracChangeset
for help on using the changeset viewer.