Changeset 48898 in vbox for trunk/include/VBox
- Timestamp:
- Oct 4, 2013 8:01:01 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89578
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgf.h
r48694 r48898 1286 1286 typedef union DBGFREGVAL 1287 1287 { 1288 uint64_t au64[2]; /**< The 64-bit array view. First because of the initializer. */ 1289 uint32_t au32[4]; /**< The 32-bit array view. */ 1290 uint16_t au16[8]; /**< The 16-bit array view. */ 1291 uint8_t au8[16]; /**< The 8-bit array view. */ 1292 1288 1293 uint8_t u8; /**< The 8-bit view. */ 1289 1294 uint16_t u16; /**< The 16-bit view. */ … … 1302 1307 } dtr; 1303 1308 1304 uint8_t au8[16]; /**< The 8-bit array view. */1305 uint16_t au16[8]; /**< The 16-bit array view. */1306 uint32_t au32[4]; /**< The 32-bit array view. */1307 uint64_t au64[2]; /**< The 64-bit array view. */1308 1309 RTUINT128U u; 1309 1310 } DBGFREGVAL; … … 1312 1313 /** Pointer to a const generic register value type. */ 1313 1314 typedef DBGFREGVAL const *PCDBGFREGVAL; 1315 1316 /** Initialize a DBGFREGVAL variable to all zeros. */ 1317 #define DBGFREGVAL_INITIALIZE_ZERO { { 0, 0 } } 1318 /** Initialize a DBGFREGVAL variable to all bits set . */ 1319 #define DBGFREGVAL_INITIALIZE_FFFF { { UINT64_MAX, UINT64_MAX } } 1320 1314 1321 1315 1322 VMMDECL(ssize_t) DBGFR3RegFormatValue(char *pszBuf, size_t cbBuf, PCDBGFREGVAL pValue, DBGFREGVALTYPE enmType, bool fSpecial);
Note:
See TracChangeset
for help on using the changeset viewer.