Changeset 46159 in vbox for trunk/include/VBox/vmm
- Timestamp:
- May 18, 2013 7:56:08 PM (12 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgf.h
r46155 r46159 886 886 /** Probably a hypervisor instruction. */ 887 887 #define DBGF_DISAS_FLAGS_HYPER RT_BIT(6) 888 /** Disassemble original unpatched bytes (PATM). */ 889 #define DBGF_DISAS_FLAGS_UNPATCHED_BYTES RT_BIT(7) 890 /** Annotate patched instructions. */ 891 #define DBGF_DISAS_FLAGS_ANNOTATE_PATCHED RT_BIT(8) 888 892 /** Disassemble in the default mode of the specific context. */ 889 893 #define DBGF_DISAS_FLAGS_DEFAULT_MODE UINT32_C(0x00000000) … … 899 903 #define DBGF_DISAS_FLAGS_MODE_MASK UINT32_C(0x70000000) 900 904 /** Mask containing the valid flags. */ 901 #define DBGF_DISAS_FLAGS_VALID_MASK UINT32_C(0x70000 07f)905 #define DBGF_DISAS_FLAGS_VALID_MASK UINT32_C(0x700001ff) 902 906 /** @} */ 903 907 -
trunk/include/VBox/vmm/patm.h
r46134 r46159 211 211 212 212 VMMR3_INT_DECL(void) PATMR3DbgPopulateAddrSpace(PVM pVM, RTDBGAS hDbgAs); 213 VMMR3_INT_DECL(void) PATMR3DbgAnnotatePatchedInstruction(PVM pVM, RTRCPTR RCPtr, uint8_t cbInstr, 214 char *pszBuf, size_t cbBuf); 213 215 214 216 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.