Changeset 41810 in vbox for trunk/src/VBox
- Timestamp:
- Jun 18, 2012 8:32:43 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CSAM.cpp
r41801 r41810 799 799 CSAMDISINFO DisInfo = { pVM, InstrHC }; 800 800 #ifdef DEBUG 801 return DISInstrToStrEx(InstrGC, enmCpuMode, csamR3ReadBytes, pVM, DISOPTYPE_ALL,801 return DISInstrToStrEx(InstrGC, enmCpuMode, csamR3ReadBytes, &DisInfo, DISOPTYPE_ALL, 802 802 pCpu, pcbInstr, pszOutput, cbOutput); 803 803 #else 804 804 /* We are interested in everything except harmless stuff */ 805 805 if (pszOutput) 806 return DISInstrToStrEx(InstrGC, enmCpuMode, csamR3ReadBytes, pVM, ~(DISOPTYPE_INVALID | DISOPTYPE_HARMLESS | DISOPTYPE_RRM_MASK), 806 return DISInstrToStrEx(InstrGC, enmCpuMode, csamR3ReadBytes, &DisInfo, 807 ~(DISOPTYPE_INVALID | DISOPTYPE_HARMLESS | DISOPTYPE_RRM_MASK), 807 808 pCpu, pcbInstr, pszOutput, cbOutput); 808 return DISInstEx(InstrGC, enmCpuMode, ~(DISOPTYPE_INVALID | DISOPTYPE_HARMLESS | DISOPTYPE_RRM_MASK), csamR3ReadBytes, pVM,809 pCpu, pcbInstr);809 return DISInstEx(InstrGC, enmCpuMode, ~(DISOPTYPE_INVALID | DISOPTYPE_HARMLESS | DISOPTYPE_RRM_MASK), 810 csamR3ReadBytes, &DisInfo, pCpu, pcbInstr); 810 811 #endif 811 812 }
Note:
See TracChangeset
for help on using the changeset viewer.