| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement chunk allocation/deallocation hysteresis by caching one spare | Jason Evans | 2006-12-23 | 1 | -51/+86 |
* | Change the way base allocation is done for internal malloc data | Jason Evans | 2006-09-08 | 1 | -56/+93 |
* | Enable TLS on PowerPC. | Marcel Moolenaar | 2006-09-01 | 1 | -1/+0 |
* | Enable TLS on ia64. | Marcel Moolenaar | 2006-09-01 | 1 | -1/+0 |
* | Correctly handle the case in calloc(num, size) where | Colin Percival | 2006-08-13 | 1 | -1/+1 |
* | Define NO_TLS on PowerPC. | Marcel Moolenaar | 2006-08-09 | 1 | -0/+1 |
* | Conditionally expand the size_invs lookup table in arena_run_reg_dalloc() | Jason Evans | 2006-07-27 | 1 | -1/+12 |
* | Use 4 as QUANTUM_2POW_MIN on arm as it is on any other architecture, to avoid | Olivier Houchard | 2006-07-27 | 1 | -1/+1 |
* | Fix cpp logic in arena_malloc() to adjust size when assertions are enabled, | Jason Evans | 2006-07-27 | 1 | -23/+19 |
* | Use some math tricks in arena_run_reg_dalloc() to avoid actual division, as | Jason Evans | 2006-07-01 | 1 | -83/+90 |
* | Make the behavior of malloc(0) standards-compliant by getting rid of nil, | Jason Evans | 2006-06-30 | 1 | -48/+46 |
* | Add a missing case for the switch statement in arena_run_reg_dalloc(). [1] | Jason Evans | 2006-06-20 | 1 | -8/+20 |
* | Increase the minimum chunk size by a power of two (32kB --> 64kB, assuming | Jason Evans | 2006-05-10 | 1 | -2/+2 |
* | Change the semantics of brk_max to dynamically deal with data segment | Jason Evans | 2006-04-27 | 1 | -71/+83 |
* | Add an unreachable return statement, in order to avoid a compiler warning | Jason Evans | 2006-04-05 | 1 | -0/+1 |
* | Only initialize the first per-chunk page map element for free runs. This | Jason Evans | 2006-04-05 | 1 | -31/+16 |
* | Add init_lock, and use it to protect against allocator initialization | Jason Evans | 2006-04-04 | 1 | -8/+21 |
* | Refactor per-run bitmap manipulation functions so that bitmap offsets only | Jason Evans | 2006-04-04 | 1 | -69/+131 |
* | Optimize runtime performance, primary using the following techniques: | Jason Evans | 2006-03-30 | 1 | -285/+294 |
* | Add malloc_usable_size(3). | Jason Evans | 2006-03-28 | 1 | -0/+20 |
* | Allow the 'n' option to decrease the number of arenas below the default, | Jason Evans | 2006-03-26 | 1 | -2/+16 |
* | Add comments and reformat/rearrange code. There are no significant | Jason Evans | 2006-03-26 | 1 | -208/+224 |
* | Convert TINY_MIN_2POW from a cpp macro to tiny_min_2pow (a variable), and | Jason Evans | 2006-03-24 | 1 | -21/+37 |
* | Add USE_BRK-specific code in malloc_init_hard() to allow the first | Jason Evans | 2006-03-24 | 1 | -65/+110 |
* | Separate completely full runs from runs that are merely almost full, so | Jason Evans | 2006-03-20 | 1 | -61/+71 |
* | Optimize realloc() to reallocate in place if the old and new sizes are | Jason Evans | 2006-03-19 | 1 | -105/+167 |
* | Modify allocation policy, in order to avoid excessive fragmentation for | Jason Evans | 2006-03-17 | 1 | -2453/+1018 |
* | Fix calculation of the number of arenas to use on multi-processor systems. | Jason Evans | 2006-02-04 | 1 | -1/+1 |
* | Remove unwarranted uses of 'goto'. | Jason Evans | 2006-01-27 | 1 | -203/+153 |
* | Add NO_MALLOC_EXTRAS, so that various extra features that can cause | Jason Evans | 2006-01-27 | 1 | -3/+16 |
* | Fix the type of a statistics counter (unsigned --> unsigned long). | Jason Evans | 2006-01-27 | 1 | -1/+1 |
* | Clean up statistics gathering and printing. | Jason Evans | 2006-01-27 | 1 | -71/+64 |
* | Optimize arena_bin_pop() to reduce the number of separator operations. | Jason Evans | 2006-01-26 | 1 | -13/+10 |
* | Remove a redundant variable assignment in arena_reg_frag_alloc(). | Jason Evans | 2006-01-25 | 1 | -1/+0 |
* | If no coalesced exact-fit small regions are available, but delayed exact- | Jason Evans | 2006-01-25 | 1 | -173/+186 |
* | Make the 'C' and 'c' malloc options consistent with other options; 'C' | Jason Evans | 2006-01-23 | 1 | -2/+2 |
* | In arena_chunk_reg_alloc(), try to avoid touching the last page in the | Jason Evans | 2006-01-23 | 1 | -7/+24 |
* | Use uintptr_t rather than size_t when casting pointers to integers. Also, | Jason Evans | 2006-01-20 | 1 | -44/+45 |
* | Revert addtion of assertions in revision 1.99. These assertions cause | Jason Evans | 2006-01-19 | 1 | -7/+0 |
* | Add assertions that detect some forms of region separator corruption. | Jason Evans | 2006-01-19 | 1 | -0/+7 |
* | Remove loops in arena_coalesce(). They are no longer necessary, now that | Jason Evans | 2006-01-19 | 1 | -4/+5 |
* | Make all internal variables and functions static. | Jason Evans | 2006-01-19 | 1 | -12/+15 |
* | Return NULL if there is an OOM error during initialization, rather than | Jason Evans | 2006-01-19 | 1 | -35/+50 |
* | Add a separate simple internal base allocator and remove base_arena, so that | Jason Evans | 2006-01-16 | 1 | -151/+175 |
* | Define NO_TLS on ia64. The dynamic TLS implementation on ia64 is | Marcel Moolenaar | 2006-01-16 | 1 | -0/+1 |
* | Replace malloc(), calloc(), posix_memalign(), realloc(), and free() with | Jason Evans | 2006-01-13 | 1 | -927/+4481 |
* | Fix a bitwise logic error in posix_memalign(). | Jason Evans | 2006-01-12 | 1 | -2/+2 |
* | In preparation for a new malloc implementation: | Jason Evans | 2006-01-12 | 1 | -0/+64 |
* | Remove the check about whether MALLOC_EXTRA_SANITY is defined, | Xin LI | 2005-02-27 | 1 | -2/+0 |
* | Consistently use __inline instead of __inline__ as the former is an empty macro | Stefan Farfeleder | 2004-07-04 | 1 | -3/+3 |