Changeset 27297 in vbox
- Timestamp:
- Mar 11, 2010 5:48:40 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58704
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/alloc-ef.cpp
r27293 r27297 292 292 #endif 293 293 } 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); 300 295 301 296 #ifdef RTALLOC_EFENCE_TRACE -
trunk/src/VBox/Runtime/r3/alloc-ef.h
r27295 r27297 54 54 #define RTALLOC_EFENCE_SIZE PAGE_SIZE 55 55 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 56 70 /** @def RTALLOC_EFENCE_IN_FRONT 57 71 * Define this to put the fence up in front of the block. … … 95 109 * unprotected but not allocated area of memory, the so called no man's land. 96 110 */ 97 #define RTALLOC_EFENCE_NOMAN_FILLER 111 #define RTALLOC_EFENCE_NOMAN_FILLER 0xaa 98 112 99 113 /** @def RTALLOC_EFENCE_FENCE_FILLER … … 101 115 * fence itself, as debuggers can usually read them. 102 116 */ 103 #define RTALLOC_EFENCE_FENCE_FILLER 117 #define RTALLOC_EFENCE_FENCE_FILLER 0xcc 104 118 105 119 #if defined(DOXYGEN_RUNNING)
Note:
See TracChangeset
for help on using the changeset viewer.