summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Expand)AuthorAgeFilesLines
...
* Add init function support to tsd members.Qi Wang2017-04-046-26/+35
* Move arena_slab_data_t's nfree into extent_t's e_bits.Jason Evans2017-03-284-23/+66
* Simplify rtree cache replacement policy.Qi Wang2017-03-271-14/+11
* Simplify rtree_clear() to avoid locking.Jason Evans2017-03-271-4/+4
* Fix a race in rtree_szind_slab_update() for RTREE_LEAF_COMPACT.Jason Evans2017-03-272-13/+53
* Remove BITMAP_USE_TREE.Jason Evans2017-03-273-213/+0
* Fix bitmap_ffu() to work with 3+ levels.Jason Evans2017-03-271-41/+29
* Pack various extent_t fields into a bitfield.Jason Evans2017-03-262-104/+155
* Store arena index rather than (arena_t *) in extent_t.Jason Evans2017-03-263-5/+5
* Fix BITMAP_USE_TREE version of bitmap_ffu().Jason Evans2017-03-261-0/+13
* Use a bitmap in extents_t to speed up search.Jason Evans2017-03-252-1/+14
* Implement BITMAP_GROUPS().Jason Evans2017-03-251-0/+6
* Implement bitmap_ffu(), which finds the first unset bit.Jason Evans2017-03-253-6/+67
* Profile per arena base mutex, instead of just a0.Qi Wang2017-03-231-1/+1
* Refactor mutex profiling code with x-macros.Qi Wang2017-03-234-22/+45
* Switch to nstime_t for the time related fields in mutex profiling.Qi Wang2017-03-233-6/+8
* Added custom mutex spin.Qi Wang2017-03-232-15/+13
* Added extents_dirty / _muzzy mutexes, as well as decay_dirty / _muzzy.Qi Wang2017-03-232-4/+6
* Added "stats.mutexes.reset" mallctl to reset all mutex stats.Qi Wang2017-03-238-33/+35
* Added lock profiling and output for global locks (ctl, prof and base).Qi Wang2017-03-235-4/+19
* Add arena lock stats output.Qi Wang2017-03-235-9/+23
* Output bin lock profiling results to malloc_stats.Qi Wang2017-03-234-0/+40
* First stage of mutex profiling.Qi Wang2017-03-234-32/+106
* Further specialize arena_[s]dalloc() tcache fast path.Jason Evans2017-03-233-45/+129
* Push down iealloc() calls.Jason Evans2017-03-235-100/+83
* Remove extent dereferences from the deallocation fast paths.Jason Evans2017-03-232-33/+79
* Remove extent arg from isalloc() and arena_salloc().Jason Evans2017-03-233-30/+11
* Implement compact rtree leaf element representation.Jason Evans2017-03-235-7/+163
* Embed root node into rtree_t.Jason Evans2017-03-232-5/+9
* Incorporate szind/slab into rtree leaves.Jason Evans2017-03-238-133/+296
* Split rtree_elm_t into rtree_{node,leaf}_elm_t.Jason Evans2017-03-236-95/+118
* Remove binind field from arena_slab_data_t.Jason Evans2017-03-232-17/+3
* Convert extent_t's usize to szind.Jason Evans2017-03-237-88/+92
* Implement two-phase decay-based purging.Jason Evans2017-03-1510-50/+82
* Move arena_t's purging field into arena_decay_t.Jason Evans2017-03-151-7/+5
* Refactor decay-related function parametrization.Jason Evans2017-03-151-7/+7
* Convert remaining arena_stats_t fields to atomicsDavid Goldblatt2017-03-142-10/+10
* Switch atomic uint64_ts in arena_stats_t to C11 atomicsDavid Goldblatt2017-03-141-15/+22
* Fix pages_purge_forced() to discard pages on non-Linux systems.Jason Evans2017-03-142-4/+11
* Convert rtree code to use C11 atomicsDavid Goldblatt2017-03-132-23/+28
* Convert arena_t's purging field to non-atomic bool.Jason Evans2017-03-101-8/+7
* Fix ATOMIC_{ACQUIRE,RELEASE,ACQ_REL} definitions.Jason Evans2017-03-091-3/+3
* Implement per-CPU arena.Qi Wang2017-03-097-20/+162
* Fix arena_prefork lock rank order for witness.Qi Wang2017-03-092-0/+6
* Convert extents_t's npages field to use C11-style atomicsDavid Goldblatt2017-03-091-2/+5
* Reintroduce JEMALLOC_ATOMIC_U64David Goldblatt2017-03-091-2/+10
* Store associated arena in tcache.Qi Wang2017-03-072-1/+2
* Add any() and remove_any() to ph.Jason Evans2017-03-071-4/+54
* Perform delayed coalescing prior to purging.Jason Evans2017-03-074-4/+19
* Change arena to use the atomic functions for ssize_t instead of the union str...David Goldblatt2017-03-071-6/+1