Changeset 86466 in vbox for trunk/include/iprt/x86.h
- Timestamp:
- Oct 7, 2020 12:50:21 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/x86.h
r85450 r86466 2144 2144 /** Unsigned integer view */ 2145 2145 X86PGPAEUINT u; 2146 #if 1 /*ndef VBOX_WITHOUT_PAGING_BIT_FIELDS*/ 2146 2147 /** Bit field view. */ 2147 2148 X86PTEPAEBITS n; 2149 #endif 2148 2150 /** 32-bit view. */ 2149 2151 uint32_t au32[2]; … … 2505 2507 /** Unsigned integer view. */ 2506 2508 X86PGPAEUINT u; 2509 #if 1 /*ndef VBOX_WITHOUT_PAGING_BIT_FIELDS*/ 2507 2510 /** Normal view. */ 2508 2511 X86PDEPAEBITS n; 2509 2512 /** 2MB page view (big). */ 2510 2513 X86PDE2MPAEBITS b; 2514 #endif 2511 2515 /** 8 bit unsigned integer view. */ 2512 2516 uint8_t au8[8]; … … 2728 2732 /** Unsigned integer view. */ 2729 2733 X86PGPAEUINT u; 2734 #ifndef VBOX_WITHOUT_PAGING_BIT_FIELDS 2730 2735 /** Normal view. */ 2731 2736 X86PDPEBITS n; … … 2734 2739 /** AMD64 big view. */ 2735 2740 X86PDPE1GB b; 2741 #endif 2736 2742 /** 8 bit unsigned integer view. */ 2737 2743 uint8_t au8[8]; … … 2848 2854 /** Unsigned integer view. */ 2849 2855 X86PGPAEUINT u; 2856 #ifndef VBOX_WITHOUT_PAGING_BIT_FIELDS 2850 2857 /** Normal view. */ 2851 2858 X86PML4EBITS n; 2859 #endif 2852 2860 /** 8 bit unsigned integer view. */ 2853 2861 uint8_t au8[8];
Note:
See TracChangeset
for help on using the changeset viewer.