Changeset 5605 in vbox for trunk/src/VBox/Debugger/DBGConsole.cpp
- Timestamp:
- Nov 1, 2007 4:09:26 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 25895
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGConsole.cpp
r5079 r5605 887 887 */ 888 888 /** If set the register set is the hypervisor and not the guest one. */ 889 #define SYMREG_FLAGS_HYPER BIT(20)889 #define SYMREG_FLAGS_HYPER RT_BIT(20) 890 890 /** If set a far conversion of the value will use the high 16 bit for the selector. 891 891 * If clear the low 16 bit will be used. */ 892 #define SYMREG_FLAGS_HIGH_SEL BIT(21)892 #define SYMREG_FLAGS_HIGH_SEL RT_BIT(21) 893 893 /** The shift value to calc the size of a register symbol from the uUser value. */ 894 894 #define SYMREG_SIZE_SHIFT (24) … … 2577 2577 "ConfER" /* F Conforming, Execute/Readable - Accessed */ 2578 2578 }; 2579 const char *pszAccessed = pDesc->Gen.u4Type & BIT(0) ? "A " : "NA";2579 const char *pszAccessed = pDesc->Gen.u4Type & RT_BIT(0) ? "A " : "NA"; 2580 2580 const char *pszGranularity = pDesc->Gen.u1Granularity ? "G" : " "; 2581 2581 const char *pszBig = pDesc->Gen.u1DefBig ? "BIG" : " "; … … 2632 2632 { 2633 2633 const char *pszGranularity = pDesc->Gen.u1Granularity ? "G" : " "; 2634 const char *pszBusy = pDesc->Gen.u4Type & BIT(1) ? "B " : "NB";2634 const char *pszBusy = pDesc->Gen.u4Type & RT_BIT(1) ? "B " : "NB"; 2635 2635 const char *pszBig = pDesc->Gen.u1DefBig ? "BIG" : " "; 2636 2636 uint32_t u32Base = pDesc->Gen.u16BaseLow … … 2661 2661 { 2662 2662 unsigned cParams = pDesc->au8[0] & 0x1f; 2663 const char *pszCountOf = pDesc->Gen.u4Type & BIT(3) ? "DC" : "WC";2663 const char *pszCountOf = pDesc->Gen.u4Type & RT_BIT(3) ? "DC" : "WC"; 2664 2664 RTSEL sel = pDesc->au16[1]; 2665 2665 uint32_t off = pDesc->au16[0] | ((uint32_t)pDesc->au16[3] << 16); … … 3430 3430 Pde.n.u1User ? "u" : "s", 3431 3431 Pde.n.u1Accessed ? "a " : "na", 3432 Pde.u & BIT(6)? "6 " : " ",3432 Pde.u & RT_BIT(6) ? "6 " : " ", 3433 3433 Pde.n.u3Available, 3434 Pde.u & BIT(8)? "8" : " ",3434 Pde.u & RT_BIT(8) ? "8" : " ", 3435 3435 Pde.n.u1WriteThru ? "pwt" : " ", 3436 3436 Pde.n.u1CacheDisable ? "pcd" : " ", 3437 Pde.u & BIT(7)? "7" : "",3437 Pde.u & RT_BIT(7) ? "7" : "", 3438 3438 Pde.n.u1NoExecute ? (fNXE ? "nx" : "NX") : " "); 3439 3439 if (Pde.u & UINT64_C(0x7fff000000000000))
Note:
See TracChangeset
for help on using the changeset viewer.