Changeset 40076 in vbox for trunk/include
- Timestamp:
- Feb 11, 2012 2:48:43 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76210
- Location:
- trunk/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgf.h
r39154 r40076 1278 1278 uint64_t u64; /**< The 64-bit view. */ 1279 1279 RTUINT128U u128; /**< The 128-bit view. */ 1280 RTFLOAT80U2 r80; /**< The 80-bit floating point view. */ 1280 RTFLOAT80U r80; /**< The 80-bit floating point view. */ 1281 RTFLOAT80U2 r80Ex; /**< The 80-bit floating point view v2. */ 1281 1282 /** GDTR or LDTR (DBGFREGVALTYPE_DTR). */ 1282 1283 struct -
trunk/include/iprt/x86.h
r40069 r40076 1971 1971 X86FPUMMX fpu; 1972 1972 /** Extended precision floating point view. */ 1973 RTFLOAT80U2 r80; 1973 RTFLOAT80U r80; 1974 /** Extended precision floating point view v2. */ 1975 RTFLOAT80U2 r80Ex; 1974 1976 /** 8-bit view. */ 1975 1977 uint8_t au8[16]; … … 2027 2029 X86FPUMMX fpu; 2028 2030 /** Extended precision floating point view. */ 2029 RTFLOAT80U2 r80; 2031 RTFLOAT80U r80; 2032 /** Extended precision floating point view v2 */ 2033 RTFLOAT80U2 r80Ex; 2030 2034 /** 8-bit view. */ 2031 2035 uint8_t au8[16]; … … 2117 2121 /** Exception Mask: Precision. */ 2118 2122 #define X86_FCW_PM RT_BIT(5) 2123 /** Mask all exceptions. */ 2124 #define X86_FCW_MASK_ALL UINT16_C(0x007f) 2119 2125 /** Precision control mask. */ 2120 2126 #define X86_FCW_PC_MASK UINT16_C(0x0300) -
trunk/include/iprt/x86.mac
r40069 r40076 480 480 %define X86_FCW_UM RT_BIT(4) 481 481 %define X86_FCW_PM RT_BIT(5) 482 %define X86_FCW_MASK_ALL 0x007f 482 483 %define X86_FCW_PC_MASK 0x0300 483 484 %define X86_FCW_PC_24 0x0000
Note:
See TracChangeset
for help on using the changeset viewer.