summaryrefslogtreecommitdiffstats
path: root/src/arena.c
Commit message (Expand)AuthorAgeFilesLines
* Refactor huge allocation to be managed by arenas.Jason Evans2014-05-161-14/+99
* Add support for user-specified chunk allocators/deallocators.aravind2014-05-121-3/+5
* Refactor small_size2bin and small_bin2size.Jason Evans2014-04-171-9/+9
* Merge pull request #73 from bmaurer/smallmallocJason Evans2014-04-161-1/+9
|\
| * Create a const array with only a small bin to size mapBen Maurer2014-04-161-1/+9
* | Optimize Valgrind integration.Jason Evans2014-04-151-14/+14
* | Make dss non-optional, and fix an "arena.<i>.dss" mallctl bug.Jason Evans2014-04-151-1/+4
|/
* Remove support for non-prof-promote heap profiling metadata.Jason Evans2014-04-111-21/+0
* refactoring for bits splittingBen Maurer2014-04-101-36/+40
* Fix a crashing case where arena_chunk_init_hard returns NULL.Chris Pride2014-03-261-1/+4
* Fix typoErwan Legrand2014-02-141-1/+0
* Refactor overly large/complex functions.Jason Evans2014-01-151-383/+461
* Extract profiling code from [re]allocation functions.Jason Evans2014-01-121-7/+6
* Add junk/zero filling unit tests, and fix discovered bugs.Jason Evans2014-01-081-17/+67
* Add quarantine unit tests.Jason Evans2013-12-171-12/+54
* Don't junk-fill reallocations unless usize changes.Jason Evans2013-12-161-12/+3
* Implement the *allocx() API.Jason Evans2013-12-131-3/+3
* Remove unnecessary zeroing in arena_palloc().Jason Evans2013-10-301-43/+73
* Fix a Valgrind integration flaw.Jason Evans2013-10-201-5/+18
* Fix a Valgrind integration flaw.Jason Evans2013-10-201-7/+14
* Fix a prof-related locking order bug.Jason Evans2013-02-061-5/+8
* Fix Valgrind integration.Jason Evans2013-02-011-7/+8
* Tighten valgrind integration.Jason Evans2013-01-221-22/+28
* Avoid arena_prof_accum()-related locking when possible.Jason Evans2012-11-131-24/+3
* Tweak chunk purge order according to fragmentation.Jason Evans2012-11-071-11/+34
* Purge unused dirty pages in a fragmentation-reducing order.Jason Evans2012-11-061-191/+307
* Add arena-specific and selective dss allocation.Jason Evans2012-10-131-54/+80
* Fix mlockall()/madvise() interaction.Jason Evans2012-10-091-30/+20
* Update a comment.Jason Evans2012-05-161-1/+1
* Fix large calloc() zeroing bugs.Jason Evans2012-05-111-25/+18
* Add arena chunk map assertions.Jason Evans2012-05-111-15/+30
* Refactor arena_run_alloc().Jason Evans2012-05-111-34/+24
* Further optimize and harden arena_salloc().Jason Evans2012-05-021-4/+5
* Optimize malloc() and free() fast paths.Jason Evans2012-05-021-240/+247
* Replace JEMALLOC_ATTR with various different macros when it makes senseMike Hommey2012-05-011-1/+1
* Avoid variable length arrays and remove declarations within codeMike Hommey2012-04-291-8/+10
* Add missing Valgrind annotations.Jason Evans2012-04-241-0/+3
* Make arena_salloc() an inline function.Jason Evans2012-04-201-40/+0
* Add a pages_purge function to wrap madvise(JEMALLOC_MADV_PURGE) callsMike Hommey2012-04-191-2/+2
* Clean up a few config-related conditionals/asserts.Jason Evans2012-04-181-4/+6
* Disable munmap() if it causes VM map holes.Jason Evans2012-04-131-9/+1
* Normalize aligned allocation algorithms.Jason Evans2012-04-121-31/+21
* Implement Valgrind support, redzones, and quarantine.Jason Evans2012-04-111-67/+141
* Add alignment support to chunk_alloc().Mike Hommey2012-04-101-1/+2
* Add a0malloc(), a0calloc(), and a0free().Jason Evans2012-04-041-3/+3
* Clean up *PAGE* macros.Jason Evans2012-04-021-108/+98
* Fix fork-related bugs.Jason Evans2012-03-131-0/+30
* Remove unused variable in arena_run_split().Jason Evans2012-02-291-2/+1
* Simplify small size class infrastructure.Jason Evans2012-02-291-329/+40
* Fix bin->runcur management.Jason Evans2012-02-141-62/+72