summaryrefslogtreecommitdiffstats
path: root/jemalloc
Commit message (Collapse)AuthorAgeFilesLines
* Move repo contents in jemalloc/ to top level.Jason Evans2011-04-0179-30047/+0
|
* Fix a build error for --disable-tcache.Jason Evans2011-03-301-0/+2
| | | | | Add a missing #ifdef to conditionally exclude code that is relevant only to the tcache feature.
* Update ChangeLog for 2.2.1.Jason Evans2011-03-301-0/+7
|
* Implement atomic operations for x86/x64.Jason Evans2011-03-241-0/+56
| | | | | | Add inline assembly implementations of atomic_{add,sub}_uint{32,64}() for x86/x64, in order to support compilers that are missing the relevant gcc intrinsics.
* Revert "Add support for libunwind backtrace caching."Jason Evans2011-03-233-94/+16
| | | | | | | This reverts commit adc675c8ef55b59bb2facf795a3c26411cfbf3ed. The original commit added support for a non-standard libunwind API, so it was not of general utility.
* Merge branch 'arena_purge' into devJason Evans2011-03-244-19/+100
|\
| * Fix an assertion in arena_purge().Jason Evans2011-03-241-3/+6
| | | | | | | | | | arena_purge() may be called even when there are no dirty pages, so loosen an assertion accordingly.
| * Add support for libunwind backtrace caching.je@facebook.com2011-03-243-16/+94
| | | | | | | | Use libunwind's unw_tdep_trace() if it is available.
* | Update ChangeLog for 2.2.0.Jason Evans2011-03-221-0/+29
|/
* Fix error detection for ipalloc() when profiling.Jason Evans2011-03-234-62/+105
| | | | | | | | | sa2u() returns 0 on overflow, but the profiling code was blindly calling sa2u() and allowing the error to silently propagate, ultimately ending in a later assertion failure. Refactor all ipalloc() callers to call sa2u(), check for overflow before calling ipalloc(), and pass usize rather than size. This allows ipalloc() to avoid calling sa2u() in the common case.
* Fix rallocm() rsize bug.Jason Evans2011-03-231-0/+2
| | | | Add code to set *rsize even when profiling is enabled.
* Fix bootstrapping order bug.Jason Evans2011-03-231-5/+5
| | | | | Initialize arenas_tsd earlier, so that the non-TLS case works when profiling is enabled.
* Avoid overflow in arena_run_regind().Jason Evans2011-03-226-7/+27
| | | | | | | | | | | Fix a regression due to: Remove an arena_bin_run_size_calc() constraint. 2a6f2af6e446a98a635caadd281a23ca09a491cb The removed constraint required that small run headers fit in one page, which indirectly limited runs such that they would not cause overflow in arena_run_regind(). Add an explicit constraint to arena_bin_run_size_calc() based on the largest number of regions that arena_run_regind() can handle (2^11 as currently configured).
* Dynamically adjust tcache fill count.Jason Evans2011-03-213-9/+27
| | | | | | | | Dynamically adjust tcache fill count (number of objects allocated per tcache refill) such that if GC has to flush inactive objects, the fill count gradually decreases. Conversely, if refills occur while the fill count is depressed, the fill count gradually increases back to its maximum value.
* Use OSSpinLock*() for locking on OS X.Jason Evans2011-03-197-12/+69
| | | | | | pthread_mutex_lock() can call malloc() on OS X (!!!), which causes deadlock. Work around this by using spinlocks that are built of more primitive stuff.
* Add atomic operation support for OS X.Jason Evans2011-03-194-0/+60
|
* Update pprof.Jason Evans2011-03-191-49/+160
| | | | Import updated pprof from google-perftools 1.7.
* Add atomic.[ch].Jason Evans2011-03-192-0/+79
| | | | Add atomic.[ch], which should have been part of the previous commit.
* Add the "stats.cactive" mallctl.Jason Evans2011-03-1916-20/+126
| | | | | | Add the "stats.cactive" mallctl, which can be used to efficiently and repeatedly query approximately how much active memory the application is utilizing.
* Improve thread-->arena assignment.Jason Evans2011-03-188-16/+101
| | | | | | | | Rather than blindly assigning threads to arenas in round-robin fashion, choose the lowest-numbered arena that currently has the smallest number of threads assigned to it. Add the "stats.arenas.<i>.nthreads" mallctl.
* Reverse tcache fill order.Jason Evans2011-03-181-1/+2
| | | | | | Refill the thread cache such that low regions get used first. This fixes a regression due to the recent transition to bitmap-based region management.
* Use bitmaps to track small regions.Jason Evans2011-03-1715-139/+702
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous free list implementation, which embedded singly linked lists in available regions, had the unfortunate side effect of causing many cache misses during thread cache fills. Fix this in two places: - arena_run_t: Use a new bitmap implementation to track which regions are available. Furthermore, revert to preferring the lowest available region (as jemalloc did with its old bitmap-based approach). - tcache_t: Move read-only tcache_bin_t metadata into tcache_bin_info_t, and add a contiguous array of pointers to tcache_t in order to track cached objects. This substantially increases the size of tcache_t, but results in much higher data locality for common tcache operations. As a side benefit, it is again possible to efficiently flush the least recently used cached objects, so this change changes flushing from MRU to LRU. The new bitmap implementation uses a multi-level summary approach to make finding the lowest available region very fast. In practice, bitmaps only have one or two levels, though the implementation is general enough to handle extremely large bitmaps, mainly so that large page sizes can still be entertained. Fix tcache_bin_flush_large() to always flush statistics, in the same way that tcache_bin_flush_small() was recently fixed. Use JEMALLOC_DEBUG rather than NDEBUG. Add dassert(), and use it for debug-only asserts.
* Improve backtracing-related configuration.Jason Evans2011-03-164-83/+140
| | | | | | | | | | Clean up configuration for backtracing when profiling is enabled, and document the configuration logic in INSTALL. Disable libgcc-based backtracing except on x64 (where it is known to work). Add the --disable-prof-gcc option.
* Clean up after arena_bin_info_t change.Jason Evans2011-03-161-7/+7
| | | | Fix a couple of problems related to the addition of arena_bin_info_t.
* Add missing error checks.Jason Evans2011-03-152-2/+6
| | | | | Add missing error checks for pthread_mutex_init() calls. In practice, mutex initialization never fails, so this is merely good hygiene.
* Create arena_bin_info_t.Jason Evans2011-03-156-223/+324
| | | | | Move read-only fields from arena_bin_t into arena_bin_info_t, primarily in order to avoid false cacheline sharing.
* Fix a build dependency regression.Jason Evans2011-03-151-1/+2
| | | | | | | Fix the automatic header dependency generation to handle the .pic.o suffix. This regression was due to: Build both PIC and no PIC static libraries af5d6987f829ccd6e14dd1f57586cfb072a533c7
* Reduce size of small_size2bin lookup table.Jason Evans2011-03-154-41/+52
| | | | | | | Convert all direct small_size2bin[...] accesses to SMALL_SIZE2BIN(...) macro calls, and use a couple of cheap math operations to allow compacting the table by 4X or 8X, on 32- and 64-bit systems, respectively.
* Expand a comment regarding geometric sampling.Jason Evans2011-03-151-2/+16
|
* Set default symbol visibility to hidden.Jason Evans2011-03-151-11/+11
| | | | | | | | Compile with -fvisibility=hidden rather than -fvisibility=internal, in order to avoid PLT lookups for internal functions. Also fix a regression that caused the -fvisibility flag to be omitted, due to: Port to Mac OS X. 2dbecf1f6267fae7a161b9c39cfd4d04ce168a29
* Update ChangeLog for 2.1.3.Jason Evans2011-03-141-0/+8
|
* Fix a thread cache stats merging bug.Jason Evans2011-03-141-0/+19
| | | | | | | | | | When a thread cache flushes objects to their arenas due to an abundance of cached objects, it merges the allocation request count for the associated size class, and increments a flush counter. If none of the flushed objects came from the thread's assigned arena, then the merging wouldn't happen (though the counter would typically eventually be merged), nor would the flush counter be incremented (a hard bug). Fix this via extra conditional code just after the flush loop.
* Fix a "thread.arena" mallctl bug.Jason Evans2011-03-142-16/+26
| | | | Fix a variable reversal bug in mallctl("thread.arena", ...).
* Fix a cpp logic regression.Jason Evans2011-03-071-2/+2
| | | | | Fix a cpp logic error that was introduced by the recent commit: Fix "thread.{de,}allocatedp" mallctl.
* Update ChangeLog for 2.1.2.je2011-03-021-0/+6
|
* Build both PIC and no PIC static librariesArun Sharma2011-03-022-11/+19
| | | | | | | | | | When jemalloc is linked into an executable (as opposed to a shared library), compiling with -fno-pic can have significant advantages, mainly because we don't have to go throught the GOT (global offset table). Users who want to link jemalloc into a shared library that could be dlopened need to link with libjemalloc_pic.a or libjemalloc.so.
* Fix style nits.Jason Evans2011-02-143-6/+8
|
* Fix "thread.{de,}allocatedp" mallctl.Jason Evans2011-02-145-32/+99
| | | | | | | | | For the non-TLS case (as on OS X), if the "thread.{de,}allocatedp" mallctl was called before any allocation occurred for that thread, the TSD was still NULL, thus putting the application at risk of dereferencing NULL. Fix this by refactoring the initialization code, and making it part of the conditional logic for all per thread allocation counter accesses.
* Add release dates to ChangeLog.Jason Evans2011-02-081-10/+10
|
* Update ChangeLog for 2.1.1.Jason Evans2011-02-011-1/+9
|
* Fix an alignment-related bug in huge_ralloc().Jason Evans2011-02-011-3/+3
| | | | | | | Fix huge_ralloc() to call huge_palloc() only if alignment requires it. This bug caused under-sized allocation for aligned huge reallocation (via rallocm()) if the requested alignment was less than the chunk size (4 MiB by default).
* Fix ALLOCM_LG_ALIGN definition.Jason Evans2011-01-261-1/+1
| | | | | | Fix ALLOCM_LG_ALIGN to take a parameter and use it. Apparently, an editing error left ALLOCM_LG_ALIGN with the same definition as ALLOCM_LG_ALIGN_MASK.
* Fix assertion typos.Jason Evans2011-01-152-8/+8
| | | | s/=/==/ in several assertions, as well as fixing spelling errors.
* Fix a heap dumping deadlock.Jason Evans2011-01-151-8/+22
| | | | | | | | | | | Restructure the ctx initialization code such that the ctx isn't locked across portions of the initialization code where allocation could occur. Instead artificially inflate the cnt_merged.curobjs field, just as is done elsewhere to avoid similar races to the one that would otherwise be created by the reduction in locking scope. This bug affected interval- and growth-triggered heap dumping, but not manual heap dumping.
* Fix a "thread.arena" mallctl bug.Jason Evans2010-12-291-0/+5
| | | | | | When setting a new arena association for the calling thread, also update the tcache's cached arena pointer, primarily so that tcache_alloc_small_hard() uses the intended arena.
* Update various comments.Jason Evans2010-12-182-49/+40
|
* Remove an arena_bin_run_size_calc() constraint.Jason Evans2010-12-161-3/+1
| | | | | | Remove the constraint that small run headers fit in one page. This constraint was necessary to avoid dirty page purging issues for unused pages within runs for medium size classes (which no longer exist).
* Edit INSTALL.Jason Evans2010-12-161-8/+8
|
* Remove high_water from tcache_bin_t.Jason Evans2010-12-162-8/+0
| | | | | Remove the high_water field from tcache_bin_t, since it is not useful for anything.
* Updated ChangeLog for 2.1.0.Jason Evans2010-12-041-0/+17
|