VirtualBox

Changeset 7620 in vbox for trunk/include


Ignore:
Timestamp:
Mar 28, 2008 10:12:44 AM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
29121
Message:

RTGCPHYS is now 64 bits

Location:
trunk/include/iprt
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/assert.h

    r7170 r7620  
    19411941#define AssertPtrNullBreakVoid(pv)  AssertMsgBreakVoid(VALID_PTR(pv) || (pv) == NULL, ("%p\n", (pv)))
    19421942
     1943/** @def AssertGCPhys32
     1944 * Asserts that the high dword of a physical address is zero
     1945 *
     1946 * @param   pv      The pointer.
     1947 */
     1948#define AssertGCPhys32(pv)          AssertMsg(VALID_PHYS32_PTR(pv), ("%p\n", (pv)))
    19431949
    19441950__BEGIN_DECLS
  • trunk/include/iprt/avl.h

    r7089 r7620  
    220220    /** Height of this tree: max(height(left), height(right)) + 1 */
    221221    unsigned char       uchHeight;
     222    /** Padding */
     223    unsigned char       Padding[7];
    222224} AVLOGCPHYSNODECORE, *PAVLOGCPHYSNODECORE;
    223225
     
    271273    /** Height of this tree: max(height(left), height(right)) + 1 */
    272274    unsigned char       uchHeight;
     275    /** Padding */
     276    unsigned char       Padding[7];
    273277} AVLROGCPHYSNODECORE, *PAVLROGCPHYSNODECORE;
    274278
  • trunk/include/iprt/cdefs.h

    r7200 r7620  
    12031203
    12041204
     1205/** @def VALID_PHYS32_PTR
     1206 * 32 bits physical address validation macro.
     1207 * @param   ptr
     1208 */
     1209#define VALID_PHYS32_PTR(ptr)     ( (RTGCPHYS64)(ptr) < _4G )
     1210
    12051211/** @def N_
    12061212 * The \#define N_ is used mark a string for translation. This is usable in
  • trunk/include/iprt/types.h

    r7578 r7620  
    741741
    742742/** Guest Physical Memory Address.*/
    743 typedef uint32_t        RTGCPHYS;
     743typedef uint64_t        RTGCPHYS;
    744744/** Pointer to Guest Physical Memory Address. */
    745745typedef RTGCPHYS       *PRTGCPHYS;
     
    752752 * some contexts.
    753753 */
    754 #define NIL_RTGCPHYS     ((RTGCPHYS)~0U) /** @todo change this to (~(RTGCPHYS)0) or maybe NIL_RTGCPHYS32? */
     754#define NIL_RTGCPHYS     (~(RTGCPHYS)0U)
    755755
    756756
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette