VirtualBox

Changeset 27297 in vbox


Ignore:
Timestamp:
Mar 11, 2010 5:48:40 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
58704
Message:

alloc-ef.cpp: RTALLOC_EFENCE_ALIGNMENT.

Location:
trunk/src/VBox/Runtime/r3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/alloc-ef.cpp

    r27293 r27297  
    292292#endif
    293293    }
    294 
    295     /** @todo this alignment decreases fence accuracy, but there are lots
    296      * of places in VirtualBox which assumes that the allocation is aligned
    297      * properly even for totally unusual allocation sizes, otherwise assertions
    298      * are triggered, which ensure a particular alignment of elements. */
    299     cb = RT_ALIGN_Z(cb, ARCH_BITS / 8);
     294    cb = RT_ALIGN_Z(cb, RTALLOC_EFENCE_ALIGNMENT);
    300295
    301296#ifdef RTALLOC_EFENCE_TRACE
  • trunk/src/VBox/Runtime/r3/alloc-ef.h

    r27295 r27297  
    5454#define RTALLOC_EFENCE_SIZE             PAGE_SIZE
    5555
     56/** @def RTALLOC_EFENCE_ALIGNMENT
     57 * The allocation alignment, power of two of course.
     58 *
     59 * Normally, 1 would be the perfect choice here, except that there is code, like
     60 * the atomic operations in iprt/asm.h, that makes assumptions about naturally
     61 * aligned data members.  If the code you're working against doesn't have strict
     62 * alignment requirements, changing this to 1 is highly desirable.
     63 */
     64#if 1
     65# define RTALLOC_EFENCE_ALIGNMENT       (ARCH_BITS / 8)
     66#else
     67# define RTALLOC_EFENCE_ALIGNMENT       1
     68#endif
     69
    5670/** @def RTALLOC_EFENCE_IN_FRONT
    5771 * Define this to put the fence up in front of the block.
     
    95109 * unprotected but not allocated area of memory, the so called no man's land.
    96110 */
    97 #define RTALLOC_EFENCE_NOMAN_FILLER           0xaa
     111#define RTALLOC_EFENCE_NOMAN_FILLER     0xaa
    98112
    99113/** @def RTALLOC_EFENCE_FENCE_FILLER
     
    101115 * fence itself, as debuggers can usually read them.
    102116 */
    103 #define RTALLOC_EFENCE_FENCE_FILLER           0xcc
     117#define RTALLOC_EFENCE_FENCE_FILLER     0xcc
    104118
    105119#if defined(DOXYGEN_RUNNING)
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