Skip to content
Snippets Groups Projects
  • Tom Tromey's avatar
    b9bd6f74
    Reduce memory waste due to non-power-of-2 allocs · b9bd6f74
    Tom Tromey authored
    
    This patch basically arranges for the allocation size of line_map
    buffers to be as close as possible to a power of two.  This
    *significantly* decreases peak memory consumption as (macro) maps are
    numerous and stay live during all the compilation.
    
    The patch adds a new ggc_round_alloc_size interface to the ggc
    allocator.  In each of the two main allocator implementations ('page'
    and 'zone') the function has been extracted from the main allocation
    function code and returns the actual size of the allocated memory
    region, thus giving a chance to the caller to maximize the amount of
    memory it actually uses from the allocated memory region.  In the
    'none' allocator implementation (that uses xmalloc) the
    ggc_round_alloc_size just returns the requested allocation size.
    
    Co-Authored-By: default avatarDodji Seketeli <dodji@redhat.com>
    
    From-SVN: r180086
    b9bd6f74
    History
    Reduce memory waste due to non-power-of-2 allocs
    Tom Tromey authored
    
    This patch basically arranges for the allocation size of line_map
    buffers to be as close as possible to a power of two.  This
    *significantly* decreases peak memory consumption as (macro) maps are
    numerous and stay live during all the compilation.
    
    The patch adds a new ggc_round_alloc_size interface to the ggc
    allocator.  In each of the two main allocator implementations ('page'
    and 'zone') the function has been extracted from the main allocation
    function code and returns the actual size of the allocated memory
    region, thus giving a chance to the caller to maximize the amount of
    memory it actually uses from the allocated memory region.  In the
    'none' allocator implementation (that uses xmalloc) the
    ggc_round_alloc_size just returns the requested allocation size.
    
    Co-Authored-By: default avatarDodji Seketeli <dodji@redhat.com>
    
    From-SVN: r180086