VirtualBox

Changeset 13230 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Oct 13, 2008 7:03:16 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37805
Message:

further new recompiler work

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vm.h

    r13189 r13230  
    683683        struct REM  s;
    684684#endif
     685
     686#ifdef VBOX_WITH_NEW_RECOMPILER
     687/* Must be multiple of 32 and coherent with REM_ENV_SIZE from REMInternal.h */
    685688#if GC_ARCH_BITS == 32
    686         char        padding[HC_ARCH_BITS == 32 ? 0x6f00 : 0xbf00];    /* multiple of 32 */
    687 #else
    688         char        padding[HC_ARCH_BITS == 32 ? 0x9f00 : 0xdf00];    /* multiple of 32 */
    689 #endif
     689#define VM_REM_SIZE        (HC_ARCH_BITS == 32 ? 0xff00 : 0xff00)
     690#else
     691#define VM_REM_SIZE        (HC_ARCH_BITS == 32 ? 0xff00 : 0xff00)
     692#endif
     693#else
     694#if GC_ARCH_BITS == 32
     695#define VM_REM_SIZE        (HC_ARCH_BITS == 32 ? 0x6f00 : 0xbf00)
     696#else
     697#define VM_REM_SIZE        (HC_ARCH_BITS == 32 ? 0x9f00 : 0xdf00)
     698#endif
     699#endif // VBOX_WITH_NEW_RECOMILER
     700        char        padding[ VM_REM_SIZE];    /* multiple of 32 */
    690701    } rem;
    691702
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