Changeset 41659 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jun 12, 2012 1:19:14 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78465
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CSAM.cpp
r41658 r41659 1264 1264 STAM_PROFILE_START(&pVM->csam.s.StatTimeDisasm, a); 1265 1265 #ifdef DEBUG 1266 rc2 = CSAMR3DISInstr(pVM, pCurInstrGC, pCurInstrHC, (fCode32)? CPUMODE_32BIT : CPUMODE_16BIT,1266 rc2 = CSAMR3DISInstr(pVM, pCurInstrGC, pCurInstrHC, fCode32 ? CPUMODE_32BIT : CPUMODE_16BIT, 1267 1267 &cpu, &opsize, szOutput); 1268 1268 if (RT_SUCCESS(rc2)) Log(("CSAM Analysis: %s", szOutput)); 1269 1269 #else 1270 rc2 = CSAMR3DISInstr(pVM, &cpu, pCurInstrGC, pCurInstrHC, (fCode32)? CPUMODE_32BIT : CPUMODE_16BIT,1270 rc2 = CSAMR3DISInstr(pVM, pCurInstrGC, pCurInstrHC, fCode32 ? CPUMODE_32BIT : CPUMODE_16BIT, 1271 1271 &cpu, &opsize, NULL); 1272 1272 #endif
Note:
See TracChangeset
for help on using the changeset viewer.