Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 1 | Following are change highlights associated with official releases. Important |
Jason Evans | be09b81 | 2015-07-07 09:33:22 -0700 | [diff] [blame] | 2 | bug fixes are all mentioned, but some internal enhancements are omitted here for |
| 3 | brevity. Much more detail can be found in the git revision history: |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 4 | |
Jason Evans | b9ec5c9 | 2014-02-25 16:43:51 -0800 | [diff] [blame] | 5 | https://github.com/jemalloc/jemalloc |
| 6 | |
Jason Evans | 14be4a7 | 2016-02-26 21:00:02 -0800 | [diff] [blame^] | 7 | * 4.1.0 (XXX) |
| 8 | |
| 9 | This release is primarily about optimizations, but it also incorporates a lot |
| 10 | of portability-motivated refactoring and enhancements. Many people worked on |
| 11 | this release, to an extent that even with the omission here of minor changes |
| 12 | (see git revision history), and of the people who reported and diagnosed |
| 13 | issues, so much of the work was contributed that starting with this release, |
| 14 | changes are annotated with author credits to help reflect the collaborative |
| 15 | effort involved. |
| 16 | |
| 17 | New features: |
| 18 | - Implement decay-based unused dirty page purging, a major optimization with |
| 19 | mallctl API impact. This is an alternative to the existing ratio-based |
| 20 | unused dirty page purging, and is intended to eventually become the sole |
| 21 | purging mechanism. New mallctls: |
| 22 | + opt.purge |
| 23 | + opt.decay_time |
| 24 | + arena.<i>.decay |
| 25 | + arena.<i>.decay_time |
| 26 | + arenas.decay_time |
| 27 | + stats.arenas.<i>.decay_time |
| 28 | (@jasone, @cevans87) |
| 29 | - Add --with-malloc-conf, which makes it possible to embed a default |
| 30 | options string during configuration. This was motivated by the desire to |
| 31 | specify --with-malloc-conf=purge:decay , since the default must remain |
| 32 | purge:ratio until the 5.0.0 release. (@jasone) |
| 33 | - Make *allocx() size class overflow behavior defined. The maximum |
| 34 | size class is now less than PTRDIFF_MAX to protect applications against |
| 35 | numerical overflow, and all allocation functions are guaranteed to indicate |
| 36 | errors rather than potentially crashing if the request size exceeds the |
| 37 | maximum size class. (@jasone) |
| 38 | - Add MS Visual Studio 2015 support. (@rustyx, @yuslepukhin) |
| 39 | - jeprof: |
| 40 | + Add raw heap profile support. (@jasone) |
| 41 | + Add --retain and --exclude for backtrace symbol filtering. (@jasone) |
| 42 | |
| 43 | Optimizations: |
| 44 | - Optimize the fast path to combine various bootstrapping and configuration |
| 45 | checks and execute more streamlined code in the common case. (@interwq) |
| 46 | - Use linear scan for small bitmaps (used for small object tracking). In |
| 47 | addition to speeding up bitmap operations on 64-bit systems, this reduces |
| 48 | allocator metadata overhead by approximately 0.2%. (@djwatson) |
| 49 | - Separate arena_avail trees, which substantially speeds up run tree |
| 50 | operations. (@djwatson) |
| 51 | - Use memoization (boot-time-computed table) for run quantization. Separate |
| 52 | arena_avail trees reduced the importance of this optimization. (@jasone) |
| 53 | - Attempt mmap-based in-place huge reallocation. This can dramatically speed |
| 54 | up incremental huge reallocation. (@jasone) |
| 55 | |
| 56 | Incompatible changes: |
| 57 | - Make opt.narenas unsigned rather than size_t. (@jasone) |
| 58 | |
| 59 | Bug fixes: |
| 60 | - Refactor arenas array. In addition to fixing a fork-related deadlock, this |
| 61 | makes arena lookups faster and simpler. (@jasone) |
| 62 | - Handle unaligned keys in hash(). This caused problems for some ARM systems. |
| 63 | (@jasone) |
| 64 | - Fix run quantization. In practice this bug had no impact unless |
| 65 | applications requested memory with alignment exceeding one page. (@jasone) |
| 66 | - Move retained memory allocation out of the default chunk allocation |
| 67 | function, to a location that gets executed even if the application installs |
| 68 | a custom chunk allocation function. This resolves a virtual memory leak. |
| 69 | (@buchgr) |
| 70 | - Resolve undefined unsigned-to-signed conversion that could cause corruption |
| 71 | of the stats.cactive statistic. (@jasone) |
| 72 | - Fix LinuxThreads-specific bootstrapping deadlock. (Cosmin Paraschiv) |
| 73 | - jeprof: |
| 74 | + Don't discard curl options if timeout is not defined. (@djwatson) |
| 75 | + Detect failed profile fetches. (@djwatson) |
| 76 | |
Jason Evans | be41347 | 2015-10-24 07:53:25 -0700 | [diff] [blame] | 77 | * 4.0.4 (October 24, 2015) |
| 78 | |
| 79 | This bugfix release fixes another xallocx() regression. No other regressions |
| 80 | have come to light in over a month, so this is likely a good starting point |
| 81 | for people who prefer to wait for "dot one" releases with all the major issues |
| 82 | shaken out. |
Jason Evans | a784e41 | 2015-09-24 22:21:55 -0700 | [diff] [blame] | 83 | |
| 84 | Bug fixes: |
| 85 | - Fix xallocx(..., MALLOCX_ZERO to zero the last full trailing page of large |
| 86 | allocations that have been randomly assigned an offset of 0 when |
| 87 | --enable-cache-oblivious configure option is enabled. |
| 88 | |
Jason Evans | 0270968 | 2015-09-24 20:05:26 -0700 | [diff] [blame] | 89 | * 4.0.3 (September 24, 2015) |
| 90 | |
| 91 | This bugfix release continues the trend of xallocx() and heap profiling fixes. |
Jason Evans | fb64ec2 | 2015-09-21 18:37:18 -0700 | [diff] [blame] | 92 | |
| 93 | Bug fixes: |
Jason Evans | d260f44 | 2015-09-24 16:38:45 -0700 | [diff] [blame] | 94 | - Fix xallocx(..., MALLOCX_ZERO) to zero all trailing bytes of large |
| 95 | allocations when --enable-cache-oblivious configure option is enabled. |
| 96 | - Fix xallocx(..., MALLOCX_ZERO) to zero trailing bytes of huge allocations |
| 97 | when resizing from/to a size class that is not a multiple of the chunk size. |
Jason Evans | fb64ec2 | 2015-09-21 18:37:18 -0700 | [diff] [blame] | 98 | - Fix prof_tctx_dump_iter() to filter out nodes that were created after heap |
| 99 | profile dumping started. |
Jason Evans | d36c7eb | 2015-09-24 16:53:18 -0700 | [diff] [blame] | 100 | - Work around a potentially bad thread-specific data initialization |
| 101 | interaction with NPTL (glibc's pthreads implementation). |
Jason Evans | fb64ec2 | 2015-09-21 18:37:18 -0700 | [diff] [blame] | 102 | |
Jason Evans | b8e966f | 2015-09-21 10:19:37 -0700 | [diff] [blame] | 103 | * 4.0.2 (September 21, 2015) |
| 104 | |
| 105 | This bugfix release addresses a few bugs specific to heap profiling. |
Jason Evans | 38e2c8f | 2015-09-17 10:05:56 -0700 | [diff] [blame] | 106 | |
| 107 | Bug fixes: |
| 108 | - Fix ixallocx_prof_sample() to never modify nor create sampled small |
| 109 | allocations. xallocx() is in general incapable of moving small allocations, |
| 110 | so this fix removes buggy code without loss of generality. |
Jason Evans | 4be9c79 | 2015-09-17 10:17:55 -0700 | [diff] [blame] | 111 | - Fix irallocx_prof_sample() to always allocate large regions, even when |
| 112 | alignment is non-zero. |
Jason Evans | 3ca0cf6 | 2015-09-17 14:47:39 -0700 | [diff] [blame] | 113 | - Fix prof_alloc_rollback() to read tdata from thread-specific data rather |
| 114 | than dereferencing a potentially invalid tctx. |
Jason Evans | 38e2c8f | 2015-09-17 10:05:56 -0700 | [diff] [blame] | 115 | |
Jason Evans | 1d7540c | 2015-09-15 15:26:23 -0700 | [diff] [blame] | 116 | * 4.0.1 (September 15, 2015) |
| 117 | |
| 118 | This is a bugfix release that is somewhat high risk due to the amount of |
| 119 | refactoring required to address deep xallocx() problems. As a side effect of |
| 120 | these fixes, xallocx() now tries harder to partially fulfill requests for |
| 121 | optional extra space. Note that a couple of minor heap profiling |
| 122 | optimizations are included, but these are better thought of as performance |
| 123 | fixes that were integral to disovering most of the other bugs. |
| 124 | |
| 125 | Optimizations: |
| 126 | - Avoid a chunk metadata read in arena_prof_tctx_set(), since it is in the |
| 127 | fast path when heap profiling is enabled. Additionally, split a special |
| 128 | case out into arena_prof_tctx_reset(), which also avoids chunk metadata |
| 129 | reads. |
| 130 | - Optimize irallocx_prof() to optimistically update the sampler state. The |
| 131 | prior implementation appears to have been a holdover from when |
| 132 | rallocx()/xallocx() functionality was combined as rallocm(). |
Jason Evans | 5ef33a9 | 2015-08-19 14:12:05 -0700 | [diff] [blame] | 133 | |
| 134 | Bug fixes: |
Jason Evans | 1d7540c | 2015-09-15 15:26:23 -0700 | [diff] [blame] | 135 | - Fix TLS configuration such that it is enabled by default for platforms on |
| 136 | which it works correctly. |
Jason Evans | 30949da | 2015-08-25 16:13:59 -0700 | [diff] [blame] | 137 | - Fix arenas_cache_cleanup() and arena_get_hard() to handle |
| 138 | allocation/deallocation within the application's thread-specific data |
| 139 | cleanup functions even after arenas_cache is torn down. |
Jason Evans | 1d7540c | 2015-09-15 15:26:23 -0700 | [diff] [blame] | 140 | - Fix xallocx() bugs related to size+extra exceeding HUGE_MAXCLASS. |
Mike Hommey | 6d8075f | 2015-08-27 20:30:15 -0700 | [diff] [blame] | 141 | - Fix chunk purge hook calls for in-place huge shrinking reallocation to |
| 142 | specify the old chunk size rather than the new chunk size. This bug caused |
| 143 | no correctness issues for the default chunk purge function, but was |
| 144 | visible to custom functions set via the "arena.<i>.chunk_hooks" mallctl. |
Jason Evans | 1d7540c | 2015-09-15 15:26:23 -0700 | [diff] [blame] | 145 | - Fix heap profiling bugs: |
| 146 | + Fix heap profiling to distinguish among otherwise identical sample sites |
| 147 | with interposed resets (triggered via the "prof.reset" mallctl). This bug |
| 148 | could cause data structure corruption that would most likely result in a |
| 149 | segfault. |
| 150 | + Fix irealloc_prof() to prof_alloc_rollback() on OOM. |
| 151 | + Make one call to prof_active_get_unlocked() per allocation event, and use |
| 152 | the result throughout the relevant functions that handle an allocation |
| 153 | event. Also add a missing check in prof_realloc(). These fixes protect |
| 154 | allocation events against concurrent prof_active changes. |
| 155 | + Fix ixallocx_prof() to pass usize_max and zero to ixallocx_prof_sample() |
| 156 | in the correct order. |
| 157 | + Fix prof_realloc() to call prof_free_sampled_object() after calling |
| 158 | prof_malloc_sample_object(). Prior to this fix, if tctx and old_tctx were |
| 159 | the same, the tctx could have been prematurely destroyed. |
| 160 | - Fix portability bugs: |
| 161 | + Don't bitshift by negative amounts when encoding/decoding run sizes in |
| 162 | chunk header maps. This affected systems with page sizes greater than 8 |
| 163 | KiB. |
| 164 | + Rename index_t to szind_t to avoid an existing type on Solaris. |
| 165 | + Add JEMALLOC_CXX_THROW to the memalign() function prototype, in order to |
| 166 | match glibc and avoid compilation errors when including both |
| 167 | jemalloc/jemalloc.h and malloc.h in C++ code. |
| 168 | + Don't assume that /bin/sh is appropriate when running size_classes.sh |
| 169 | during configuration. |
| 170 | + Consider __sparcv9 a synonym for __sparc64__ when defining LG_QUANTUM. |
| 171 | + Link tests to librt if it contains clock_gettime(2). |
Jason Evans | 5ef33a9 | 2015-08-19 14:12:05 -0700 | [diff] [blame] | 172 | |
Jason Evans | 9b68f67 | 2015-08-17 13:21:08 -0700 | [diff] [blame] | 173 | * 4.0.0 (August 17, 2015) |
Jason Evans | 54673fd | 2015-02-23 22:28:43 -0800 | [diff] [blame] | 174 | |
| 175 | This version contains many speed and space optimizations, both minor and |
| 176 | major. The major themes are generalization, unification, and simplification. |
| 177 | Although many of these optimizations cause no visible behavior change, their |
| 178 | cumulative effect is substantial. |
| 179 | |
| 180 | New features: |
| 181 | - Normalize size class spacing to be consistent across the complete size |
| 182 | range. By default there are four size classes per size doubling, but this |
| 183 | is now configurable via the --with-lg-size-class-group option. Also add the |
| 184 | --with-lg-page, --with-lg-page-sizes, --with-lg-quantum, and |
| 185 | --with-lg-tiny-min options, which can be used to tweak page and size class |
| 186 | settings. Impacts: |
| 187 | + Worst case performance for incrementally growing/shrinking reallocation |
| 188 | is improved because there are far fewer size classes, and therefore |
| 189 | copying happens less often. |
| 190 | + Internal fragmentation is limited to 20% for all but the smallest size |
| 191 | classes (those less than four times the quantum). (1B + 4 KiB) |
| 192 | and (1B + 4 MiB) previously suffered nearly 50% internal fragmentation. |
| 193 | + Chunk fragmentation tends to be lower because there are fewer distinct run |
| 194 | sizes to pack. |
| 195 | - Add support for explicit tcaches. The "tcache.create", "tcache.flush", and |
| 196 | "tcache.destroy" mallctls control tcache lifetime and flushing, and the |
| 197 | MALLOCX_TCACHE(tc) and MALLOCX_TCACHE_NONE flags to the *allocx() API |
| 198 | control which tcache is used for each operation. |
| 199 | - Implement per thread heap profiling, as well as the ability to |
| 200 | enable/disable heap profiling on a per thread basis. Add the "prof.reset", |
| 201 | "prof.lg_sample", "thread.prof.name", "thread.prof.active", |
| 202 | "opt.prof_thread_active_init", "prof.thread_active_init", and |
| 203 | "thread.prof.active" mallctls. |
| 204 | - Add support for per arena application-specified chunk allocators, configured |
Jason Evans | b49a334 | 2015-07-28 11:28:19 -0400 | [diff] [blame] | 205 | via the "arena.<i>.chunk_hooks" mallctl. |
Jason Evans | 54673fd | 2015-02-23 22:28:43 -0800 | [diff] [blame] | 206 | - Refactor huge allocation to be managed by arenas, so that arenas now |
| 207 | function as general purpose independent allocators. This is important in |
| 208 | the context of user-specified chunk allocators, aside from the scalability |
| 209 | benefits. Related new statistics: |
| 210 | + The "stats.arenas.<i>.huge.allocated", "stats.arenas.<i>.huge.nmalloc", |
| 211 | "stats.arenas.<i>.huge.ndalloc", and "stats.arenas.<i>.huge.nrequests" |
| 212 | mallctls provide high level per arena huge allocation statistics. |
Qinfan Wu | 8975035 | 2015-04-21 16:57:42 -0700 | [diff] [blame] | 213 | + The "arenas.nhchunks", "arenas.hchunk.<i>.size", |
Jason Evans | 54673fd | 2015-02-23 22:28:43 -0800 | [diff] [blame] | 214 | "stats.arenas.<i>.hchunks.<j>.nmalloc", |
| 215 | "stats.arenas.<i>.hchunks.<j>.ndalloc", |
| 216 | "stats.arenas.<i>.hchunks.<j>.nrequests", and |
| 217 | "stats.arenas.<i>.hchunks.<j>.curhchunks" mallctls provide per size class |
| 218 | statistics. |
| 219 | - Add the 'util' column to malloc_stats_print() output, which reports the |
| 220 | proportion of available regions that are currently in use for each small |
| 221 | size class. |
| 222 | - Add "alloc" and "free" modes for for junk filling (see the "opt.junk" |
| 223 | mallctl), so that it is possible to separately enable junk filling for |
| 224 | allocation versus deallocation. |
| 225 | - Add the jemalloc-config script, which provides information about how |
| 226 | jemalloc was configured, and how to integrate it into application builds. |
| 227 | - Add metadata statistics, which are accessible via the "stats.metadata", |
| 228 | "stats.arenas.<i>.metadata.mapped", and |
| 229 | "stats.arenas.<i>.metadata.allocated" mallctls. |
Jason Evans | 4acd75a | 2015-03-23 17:25:57 -0700 | [diff] [blame] | 230 | - Add the "stats.resident" mallctl, which reports the upper limit of |
| 231 | physically resident memory mapped by the allocator. |
Jason Evans | 562d266 | 2015-03-24 16:36:12 -0700 | [diff] [blame] | 232 | - Add per arena control over unused dirty page purging, via the |
| 233 | "arenas.lg_dirty_mult", "arena.<i>.lg_dirty_mult", and |
| 234 | "stats.arenas.<i>.lg_dirty_mult" mallctls. |
Jason Evans | 54673fd | 2015-02-23 22:28:43 -0800 | [diff] [blame] | 235 | - Add the "prof.gdump" mallctl, which makes it possible to toggle the gdump |
| 236 | feature on/off during program execution. |
| 237 | - Add sdallocx(), which implements sized deallocation. The primary |
| 238 | optimization over dallocx() is the removal of a metadata read, which often |
| 239 | suffers an L1 cache miss. |
| 240 | - Add missing header includes in jemalloc/jemalloc.h, so that applications |
| 241 | only have to #include <jemalloc/jemalloc.h>. |
| 242 | - Add support for additional platforms: |
| 243 | + Bitrig |
| 244 | + Cygwin |
| 245 | + DragonFlyBSD |
| 246 | + iOS |
| 247 | + OpenBSD |
| 248 | + OpenRISC/or1k |
| 249 | |
| 250 | Optimizations: |
Jason Evans | 54673fd | 2015-02-23 22:28:43 -0800 | [diff] [blame] | 251 | - Maintain dirty runs in per arena LRUs rather than in per arena trees of |
| 252 | dirty-run-containing chunks. In practice this change significantly reduces |
| 253 | dirty page purging volume. |
| 254 | - Integrate whole chunks into the unused dirty page purging machinery. This |
| 255 | reduces the cost of repeated huge allocation/deallocation, because it |
| 256 | effectively introduces a cache of chunks. |
| 257 | - Split the arena chunk map into two separate arrays, in order to increase |
| 258 | cache locality for the frequently accessed bits. |
| 259 | - Move small run metadata out of runs, into arena chunk headers. This reduces |
| 260 | run fragmentation, smaller runs reduce external fragmentation for small size |
| 261 | classes, and packed (less uniformly aligned) metadata layout improves CPU |
| 262 | cache set distribution. |
Jason Evans | 8a03cf0 | 2015-05-04 09:58:36 -0700 | [diff] [blame] | 263 | - Randomly distribute large allocation base pointer alignment relative to page |
| 264 | boundaries in order to more uniformly utilize CPU cache sets. This can be |
Jason Evans | f2bc852 | 2015-07-17 16:38:25 -0700 | [diff] [blame] | 265 | disabled via the --disable-cache-oblivious configure option, and queried via |
| 266 | the "config.cache_oblivious" mallctl. |
Jason Evans | 54673fd | 2015-02-23 22:28:43 -0800 | [diff] [blame] | 267 | - Micro-optimize the fast paths for the public API functions. |
| 268 | - Refactor thread-specific data to reside in a single structure. This assures |
| 269 | that only a single TLS read is necessary per call into the public API. |
| 270 | - Implement in-place huge allocation growing and shrinking. |
| 271 | - Refactor rtree (radix tree for chunk lookups) to be lock-free, and make |
| 272 | additional optimizations that reduce maximum lookup depth to one or two |
| 273 | levels. This resolves what was a concurrency bottleneck for per arena huge |
| 274 | allocation, because a global data structure is critical for determining |
| 275 | which arenas own which huge allocations. |
| 276 | |
| 277 | Incompatible changes: |
| 278 | - Replace --enable-cc-silence with --disable-cc-silence to suppress spurious |
| 279 | warnings by default. |
| 280 | - Assure that the constness of malloc_usable_size()'s return type matches that |
| 281 | of the system implementation. |
| 282 | - Change the heap profile dump format to support per thread heap profiling, |
Jason Evans | 7041720 | 2015-05-01 12:31:12 -0700 | [diff] [blame] | 283 | rename pprof to jeprof, and enhance it with the --thread=<n> option. As a |
| 284 | result, the bundled jeprof must now be used rather than the upstream |
| 285 | (gperftools) pprof. |
Jason Evans | 54673fd | 2015-02-23 22:28:43 -0800 | [diff] [blame] | 286 | - Disable "opt.prof_final" by default, in order to avoid atexit(3), which can |
| 287 | internally deadlock on some platforms. |
| 288 | - Change the "arenas.nlruns" mallctl type from size_t to unsigned. |
| 289 | - Replace the "stats.arenas.<i>.bins.<j>.allocated" mallctl with |
| 290 | "stats.arenas.<i>.bins.<j>.curregs". |
| 291 | - Ignore MALLOC_CONF in set{uid,gid,cap} binaries. |
| 292 | - Ignore MALLOCX_ARENA(a) in dallocx(), in favor of using the |
| 293 | MALLOCX_TCACHE(tc) and MALLOCX_TCACHE_NONE flags to control tcache usage. |
| 294 | |
| 295 | Removed features: |
| 296 | - Remove the *allocm() API, which is superseded by the *allocx() API. |
| 297 | - Remove the --enable-dss options, and make dss non-optional on all platforms |
| 298 | which support sbrk(2). |
| 299 | - Remove the "arenas.purge" mallctl, which was obsoleted by the |
| 300 | "arena.<i>.purge" mallctl in 3.1.0. |
| 301 | - Remove the unnecessary "opt.valgrind" mallctl; jemalloc automatically |
| 302 | detects whether it is running inside Valgrind. |
| 303 | - Remove the "stats.huge.allocated", "stats.huge.nmalloc", and |
| 304 | "stats.huge.ndalloc" mallctls. |
| 305 | - Remove the --enable-mremap option. |
Jason Evans | 54673fd | 2015-02-23 22:28:43 -0800 | [diff] [blame] | 306 | - Remove the "stats.chunks.current", "stats.chunks.total", and |
| 307 | "stats.chunks.high" mallctls. |
| 308 | |
| 309 | Bug fixes: |
| 310 | - Fix the cactive statistic to decrease (rather than increase) when active |
| 311 | memory decreases. This regression was first released in 3.5.0. |
| 312 | - Fix OOM handling in memalign() and valloc(). A variant of this bug existed |
| 313 | in all releases since 2.0.0, which introduced these functions. |
Jason Evans | 32dca11 | 2015-07-09 11:34:13 -0700 | [diff] [blame] | 314 | - Fix an OOM-related regression in arena_tcache_fill_small(), which could |
| 315 | cause cache corruption on OOM. This regression was present in all releases |
| 316 | from 2.2.0 through 3.6.0. |
Jason Evans | 241abc6 | 2015-06-23 18:47:07 -0700 | [diff] [blame] | 317 | - Fix size class overflow handling for malloc(), posix_memalign(), memalign(), |
| 318 | calloc(), and realloc() when profiling is enabled. |
Jason Evans | 54673fd | 2015-02-23 22:28:43 -0800 | [diff] [blame] | 319 | - Fix the "arena.<i>.dss" mallctl to return an error if "primary" or |
| 320 | "secondary" precedence is specified, but sbrk(2) is not supported. |
| 321 | - Fix fallback lg_floor() implementations to handle extremely large inputs. |
| 322 | - Ensure the default purgeable zone is after the default zone on OS X. |
| 323 | - Fix latent bugs in atomic_*(). |
| 324 | - Fix the "arena.<i>.dss" mallctl to handle read-only calls. |
| 325 | - Fix tls_model configuration to enable the initial-exec model when possible. |
| 326 | - Mark malloc_conf as a weak symbol so that the application can override it. |
| 327 | - Correctly detect glibc's adaptive pthread mutexes. |
| 328 | - Fix the --without-export configure option. |
| 329 | |
Jason Evans | ff53631 | 2014-03-31 09:23:10 -0700 | [diff] [blame] | 330 | * 3.6.0 (March 31, 2014) |
| 331 | |
| 332 | This version contains a critical bug fix for a regression present in 3.5.0 and |
| 333 | 3.5.1. |
| 334 | |
| 335 | Bug fixes: |
| 336 | - Fix a regression in arena_chunk_alloc() that caused crashes during |
| 337 | small/large allocation if chunk allocation failed. In the absence of this |
| 338 | bug, chunk allocation failure would result in allocation failure, e.g. NULL |
| 339 | return from malloc(). This regression was introduced in 3.5.0. |
| 340 | - Fix backtracing for gcc intrinsics-based backtracing by specifying |
| 341 | -fno-omit-frame-pointer to gcc. Note that the application (and all the |
| 342 | libraries it links to) must also be compiled with this option for |
| 343 | backtracing to be reliable. |
| 344 | - Use dss allocation precedence for huge allocations as well as small/large |
| 345 | allocations. |
Jason Evans | 54673fd | 2015-02-23 22:28:43 -0800 | [diff] [blame] | 346 | - Fix test assertion failure message formatting. This bug did not manifest on |
Jason Evans | ff53631 | 2014-03-31 09:23:10 -0700 | [diff] [blame] | 347 | x86_64 systems because of implementation subtleties in va_list. |
| 348 | - Fix inconsequential test failures for hash and SFMT code. |
| 349 | |
| 350 | New features: |
| 351 | - Support heap profiling on FreeBSD. This feature depends on the proc |
| 352 | filesystem being mounted during heap profile dumping. |
| 353 | |
Jason Evans | b9ec5c9 | 2014-02-25 16:43:51 -0800 | [diff] [blame] | 354 | * 3.5.1 (February 25, 2014) |
| 355 | |
| 356 | This version primarily addresses minor bugs in test code. |
| 357 | |
| 358 | Bug fixes: |
| 359 | - Configure Solaris/Illumos to use MADV_FREE. |
| 360 | - Fix junk filling for mremap(2)-based huge reallocation. This is only |
| 361 | relevant if configuring with the --enable-mremap option specified. |
| 362 | - Avoid compilation failure if 'restrict' C99 keyword is not supported by the |
| 363 | compiler. |
| 364 | - Add a configure test for SSE2 rather than assuming it is usable on i686 |
| 365 | systems. This fixes test compilation errors, especially on 32-bit Linux |
| 366 | systems. |
| 367 | - Fix mallctl argument size mismatches (size_t vs. uint64_t) in the stats unit |
| 368 | test. |
| 369 | - Fix/remove flawed alignment-related overflow tests. |
| 370 | - Prevent compiler optimizations that could change backtraces in the |
| 371 | prof_accum unit test. |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 372 | |
Jason Evans | 798a481 | 2014-01-22 11:09:50 -0800 | [diff] [blame] | 373 | * 3.5.0 (January 22, 2014) |
Jason Evans | 86abd0d | 2013-11-30 15:25:42 -0800 | [diff] [blame] | 374 | |
Jason Evans | 264dfd3 | 2014-01-17 17:01:23 -0800 | [diff] [blame] | 375 | This version focuses on refactoring and automated testing, though it also |
| 376 | includes some non-trivial heap profiling optimizations not mentioned below. |
| 377 | |
| 378 | New features: |
| 379 | - Add the *allocx() API, which is a successor to the experimental *allocm() |
| 380 | API. The *allocx() functions are slightly simpler to use because they have |
| 381 | fewer parameters, they directly return the results of primary interest, and |
| 382 | mallocx()/rallocx() avoid the strict aliasing pitfall that |
Jason Evans | 9c8baec | 2014-01-22 13:08:47 -0800 | [diff] [blame] | 383 | allocm()/rallocm() share with posix_memalign(). Note that *allocm() is |
Jason Evans | 264dfd3 | 2014-01-17 17:01:23 -0800 | [diff] [blame] | 384 | slated for removal in the next non-bugfix release. |
| 385 | - Add support for LinuxThreads. |
| 386 | |
Jason Evans | 86abd0d | 2013-11-30 15:25:42 -0800 | [diff] [blame] | 387 | Bug fixes: |
Jason Evans | d37d5ad | 2013-12-05 23:01:50 -0800 | [diff] [blame] | 388 | - Unless heap profiling is enabled, disable floating point code and don't link |
| 389 | with libm. This, in combination with e.g. EXTRA_CFLAGS=-mno-sse on x64 |
| 390 | systems, makes it possible to completely disable floating point register |
| 391 | use. Some versions of glibc neglect to save/restore caller-saved floating |
| 392 | point registers during dynamic lazy symbol loading, and the symbol loading |
| 393 | code uses whatever malloc the application happens to have linked/loaded |
| 394 | with, the result being potential floating point register corruption. |
Jason Evans | 264dfd3 | 2014-01-17 17:01:23 -0800 | [diff] [blame] | 395 | - Report ENOMEM rather than EINVAL if an OOM occurs during heap profiling |
| 396 | backtrace creation in imemalign(). This bug impacted posix_memalign() and |
| 397 | aligned_alloc(). |
| 398 | - Fix a file descriptor leak in a prof_dump_maps() error path. |
| 399 | - Fix prof_dump() to close the dump file descriptor for all relevant error |
| 400 | paths. |
| 401 | - Fix rallocm() to use the arena specified by the ALLOCM_ARENA(s) flag for |
| 402 | allocation, not just deallocation. |
| 403 | - Fix a data race for large allocation stats counters. |
| 404 | - Fix a potential infinite loop during thread exit. This bug occurred on |
| 405 | Solaris, and could affect other platforms with similar pthreads TSD |
| 406 | implementations. |
| 407 | - Don't junk-fill reallocations unless usable size changes. This fixes a |
| 408 | violation of the *allocx()/*allocm() semantics. |
| 409 | - Fix growing large reallocation to junk fill new space. |
| 410 | - Fix huge deallocation to junk fill when munmap is disabled. |
Jason Evans | 86abd0d | 2013-11-30 15:25:42 -0800 | [diff] [blame] | 411 | - Change the default private namespace prefix from empty to je_, and change |
| 412 | --with-private-namespace-prefix so that it prepends an additional prefix |
| 413 | rather than replacing je_. This reduces the likelihood of applications |
| 414 | which statically link jemalloc experiencing symbol name collisions. |
Jason Evans | 264dfd3 | 2014-01-17 17:01:23 -0800 | [diff] [blame] | 415 | - Add missing private namespace mangling (relevant when |
| 416 | --with-private-namespace is specified). |
| 417 | - Add and use JEMALLOC_INLINE_C so that static inline functions are marked as |
| 418 | static even for debug builds. |
| 419 | - Add a missing mutex unlock in a malloc_init_hard() error path. In practice |
| 420 | this error path is never executed. |
| 421 | - Fix numerous bugs in malloc_strotumax() error handling/reporting. These |
| 422 | bugs had no impact except for malformed inputs. |
| 423 | - Fix numerous bugs in malloc_snprintf(). These bugs were not exercised by |
| 424 | existing calls, so they had no impact. |
Jason Evans | 86abd0d | 2013-11-30 15:25:42 -0800 | [diff] [blame] | 425 | |
Jason Evans | 0f7ba3f | 2013-10-20 19:40:09 -0700 | [diff] [blame] | 426 | * 3.4.1 (October 20, 2013) |
Jason Evans | ff08ef7 | 2013-10-19 21:41:10 -0700 | [diff] [blame] | 427 | |
| 428 | Bug fixes: |
Jason Evans | 7b65180 | 2013-10-20 14:09:54 -0700 | [diff] [blame] | 429 | - Fix a race in the "arenas.extend" mallctl that could cause memory corruption |
| 430 | of internal data structures and subsequent crashes. |
Jason Evans | dda90f5 | 2013-10-19 23:48:40 -0700 | [diff] [blame] | 431 | - Fix Valgrind integration flaws that caused Valgrind warnings about reads of |
| 432 | uninitialized memory in: |
| 433 | + arena chunk headers |
| 434 | + internal zero-initialized data structures (relevant to tcache and prof |
| 435 | code) |
Jason Evans | ff08ef7 | 2013-10-19 21:41:10 -0700 | [diff] [blame] | 436 | - Preserve errno during the first allocation. A readlink(2) call during |
| 437 | initialization fails unless /etc/malloc.conf exists, so errno was typically |
| 438 | set during the first allocation prior to this fix. |
| 439 | - Fix compilation warnings reported by gcc 4.8.1. |
| 440 | |
Jason Evans | 765cc2b | 2013-06-02 20:58:00 -0700 | [diff] [blame] | 441 | * 3.4.0 (June 2, 2013) |
| 442 | |
| 443 | This version is essentially a small bugfix release, but the addition of |
| 444 | aarch64 support requires that the minor version be incremented. |
| 445 | |
| 446 | Bug fixes: |
| 447 | - Fix race-triggered deadlocks in chunk_record(). These deadlocks were |
| 448 | typically triggered by multiple threads concurrently deallocating huge |
| 449 | objects. |
| 450 | |
| 451 | New features: |
| 452 | - Add support for the aarch64 architecture. |
| 453 | |
Jason Evans | 2298835 | 2013-03-06 11:11:17 -0800 | [diff] [blame] | 454 | * 3.3.1 (March 6, 2013) |
| 455 | |
| 456 | This version fixes bugs that are typically encountered only when utilizing |
| 457 | custom run-time options. |
Jason Evans | bbe29d3 | 2013-01-30 15:03:11 -0800 | [diff] [blame] | 458 | |
| 459 | Bug fixes: |
Jason Evans | 88c222c | 2013-02-06 11:59:30 -0800 | [diff] [blame] | 460 | - Fix a locking order bug that could cause deadlock during fork if heap |
| 461 | profiling were enabled. |
Jason Evans | a7a28c3 | 2013-01-31 16:53:58 -0800 | [diff] [blame] | 462 | - Fix a chunk recycling bug that could cause the allocator to lose track of |
Jason Evans | 765cc2b | 2013-06-02 20:58:00 -0700 | [diff] [blame] | 463 | whether a chunk was zeroed. On FreeBSD, NetBSD, and OS X, it could cause |
Jason Evans | a7a28c3 | 2013-01-31 16:53:58 -0800 | [diff] [blame] | 464 | corruption if allocating via sbrk(2) (unlikely unless running with the |
| 465 | "dss:primary" option specified). This was completely harmless on Linux |
| 466 | unless using mlockall(2) (and unlikely even then, unless the |
| 467 | --disable-munmap configure option or the "dss:primary" option was |
| 468 | specified). This regression was introduced in 3.1.0 by the |
| 469 | mlockall(2)/madvise(2) interaction fix. |
Jason Evans | bbe29d3 | 2013-01-30 15:03:11 -0800 | [diff] [blame] | 470 | - Fix TLS-related memory corruption that could occur during thread exit if the |
| 471 | thread never allocated memory. Only the quarantine and prof facilities were |
| 472 | susceptible. |
Jason Evans | d0e942e | 2013-01-31 14:42:41 -0800 | [diff] [blame] | 473 | - Fix two quarantine bugs: |
| 474 | + Internal reallocation of the quarantined object array leaked the old |
| 475 | array. |
| 476 | + Reallocation failure for internal reallocation of the quarantined object |
| 477 | array (very unlikely) resulted in memory corruption. |
Jason Evans | 0691275 | 2013-01-31 17:02:53 -0800 | [diff] [blame] | 478 | - Fix Valgrind integration to annotate all internally allocated memory in a |
| 479 | way that keeps Valgrind happy about internal data structure access. |
Jason Evans | 2298835 | 2013-03-06 11:11:17 -0800 | [diff] [blame] | 480 | - Fix building for s390 systems. |
Jason Evans | bbe29d3 | 2013-01-30 15:03:11 -0800 | [diff] [blame] | 481 | |
Jason Evans | b5681fb | 2013-01-22 22:45:09 -0800 | [diff] [blame] | 482 | * 3.3.0 (January 23, 2013) |
| 483 | |
| 484 | This version includes a few minor performance improvements in addition to the |
| 485 | listed new features and bug fixes. |
| 486 | |
| 487 | New features: |
| 488 | - Add clipping support to lg_chunk option processing. |
| 489 | - Add the --enable-ivsalloc option. |
| 490 | - Add the --without-export option. |
| 491 | - Add the --disable-zone-allocator option. |
Jason Evans | 6eb84fb | 2012-11-29 22:13:04 -0800 | [diff] [blame] | 492 | |
| 493 | Bug fixes: |
| 494 | - Fix "arenas.extend" mallctl to output the number of arenas. |
Jason Evans | a33488d | 2013-10-03 14:38:39 -0700 | [diff] [blame] | 495 | - Fix chunk_recycle() to unconditionally inform Valgrind that returned memory |
Jason Evans | 1271185 | 2012-12-12 10:12:18 -0800 | [diff] [blame] | 496 | is undefined. |
Jason Evans | b5681fb | 2013-01-22 22:45:09 -0800 | [diff] [blame] | 497 | - Fix build break on FreeBSD related to alloca.h. |
Jason Evans | 6eb84fb | 2012-11-29 22:13:04 -0800 | [diff] [blame] | 498 | |
Jason Evans | 556ddc7 | 2012-11-07 15:16:29 -0800 | [diff] [blame] | 499 | * 3.2.0 (November 9, 2012) |
| 500 | |
| 501 | In addition to a couple of bug fixes, this version modifies page run |
| 502 | allocation and dirty page purging algorithms in order to better control |
| 503 | page-level virtual memory fragmentation. |
Jason Evans | 12efefb | 2012-10-16 22:06:56 -0700 | [diff] [blame] | 504 | |
Jason Evans | e3d1306 | 2012-10-30 15:42:37 -0700 | [diff] [blame] | 505 | Incompatible changes: |
Jason Evans | 556ddc7 | 2012-11-07 15:16:29 -0800 | [diff] [blame] | 506 | - Change the "opt.lg_dirty_mult" default from 5 to 3 (32:1 to 8:1). |
Jason Evans | e3d1306 | 2012-10-30 15:42:37 -0700 | [diff] [blame] | 507 | |
Jason Evans | 12efefb | 2012-10-16 22:06:56 -0700 | [diff] [blame] | 508 | Bug fixes: |
| 509 | - Fix dss/mmap allocation precedence code to use recyclable mmap memory only |
| 510 | after primary dss allocation fails. |
Jason Evans | e3d1306 | 2012-10-30 15:42:37 -0700 | [diff] [blame] | 511 | - Fix deadlock in the "arenas.purge" mallctl. This regression was introduced |
| 512 | in 3.1.0 by the addition of the "arena.<i>.purge" mallctl. |
Jason Evans | 12efefb | 2012-10-16 22:06:56 -0700 | [diff] [blame] | 513 | |
Jason Evans | 2b592b0 | 2012-10-16 10:12:40 -0700 | [diff] [blame] | 514 | * 3.1.0 (October 16, 2012) |
Jason Evans | 3860eac | 2012-05-15 13:53:21 -0700 | [diff] [blame] | 515 | |
Jason Evans | 781fe75 | 2012-05-15 14:48:14 -0700 | [diff] [blame] | 516 | New features: |
| 517 | - Auto-detect whether running inside Valgrind, thus removing the need to |
| 518 | manually specify MALLOC_CONF=valgrind:true. |
Jason Evans | 2b592b0 | 2012-10-16 10:12:40 -0700 | [diff] [blame] | 519 | - Add the "arenas.extend" mallctl, which allows applications to create |
| 520 | manually managed arenas. |
| 521 | - Add the ALLOCM_ARENA() flag for {,r,d}allocm(). |
| 522 | - Add the "opt.dss", "arena.<i>.dss", and "stats.arenas.<i>.dss" mallctls, |
| 523 | which provide control over dss/mmap precedence. |
| 524 | - Add the "arena.<i>.purge" mallctl, which obsoletes "arenas.purge". |
| 525 | - Define LG_QUANTUM for hppa. |
Jason Evans | 781fe75 | 2012-05-15 14:48:14 -0700 | [diff] [blame] | 526 | |
Jason Evans | 174b70e | 2012-05-15 23:31:53 -0700 | [diff] [blame] | 527 | Incompatible changes: |
| 528 | - Disable tcache by default if running inside Valgrind, in order to avoid |
| 529 | making unallocated objects appear reachable to Valgrind. |
Jason Evans | 2b592b0 | 2012-10-16 10:12:40 -0700 | [diff] [blame] | 530 | - Drop const from malloc_usable_size() argument on Linux. |
Jason Evans | 174b70e | 2012-05-15 23:31:53 -0700 | [diff] [blame] | 531 | |
Jason Evans | 3860eac | 2012-05-15 13:53:21 -0700 | [diff] [blame] | 532 | Bug fixes: |
| 533 | - Fix heap profiling crash if sampled object is freed via realloc(p, 0). |
Jason Evans | 5c710ce | 2012-05-23 16:09:22 -0700 | [diff] [blame] | 534 | - Remove const from __*_hook variable declarations, so that glibc can modify |
| 535 | them during process forking. |
Jason Evans | 2b592b0 | 2012-10-16 10:12:40 -0700 | [diff] [blame] | 536 | - Fix mlockall(2)/madvise(2) interaction. |
| 537 | - Fix fork(2)-related deadlocks. |
| 538 | - Fix error return value for "thread.tcache.enabled" mallctl. |
Jason Evans | 3860eac | 2012-05-15 13:53:21 -0700 | [diff] [blame] | 539 | |
Jason Evans | cbb71ca | 2012-05-11 17:00:20 -0700 | [diff] [blame] | 540 | * 3.0.0 (May 11, 2012) |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 541 | |
| 542 | Although this version adds some major new features, the primary focus is on |
| 543 | internal code cleanup that facilitates maintainability and portability, most |
| 544 | of which is not reflected in the ChangeLog. This is the first release to |
| 545 | incorporate substantial contributions from numerous other developers, and the |
| 546 | result is a more broadly useful allocator (see the git revision history for |
| 547 | contribution details). Note that the license has been unified, thanks to |
| 548 | Facebook granting a license under the same terms as the other copyright |
| 549 | holders (see COPYING). |
| 550 | |
| 551 | New features: |
| 552 | - Implement Valgrind support, redzones, and quarantine. |
Jason Evans | 079687b | 2012-04-23 12:49:23 -0700 | [diff] [blame] | 553 | - Add support for additional platforms: |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 554 | + FreeBSD |
| 555 | + Mac OS X Lion |
Jason Evans | 40f514f | 2012-04-22 16:21:06 -0700 | [diff] [blame] | 556 | + MinGW |
Jason Evans | cbb71ca | 2012-05-11 17:00:20 -0700 | [diff] [blame] | 557 | + Windows (no support yet for replacing the system malloc) |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 558 | - Add support for additional architectures: |
| 559 | + MIPS |
| 560 | + SH4 |
| 561 | + Tilera |
| 562 | - Add support for cross compiling. |
| 563 | - Add nallocm(), which rounds a request size up to the nearest size class |
| 564 | without actually allocating. |
| 565 | - Implement aligned_alloc() (blame C11). |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 566 | - Add the "thread.tcache.enabled" mallctl. |
Jason Evans | 0b25fe7 | 2012-04-17 16:39:33 -0700 | [diff] [blame] | 567 | - Add the "opt.prof_final" mallctl. |
Jason Evans | 25a000e | 2012-04-17 15:49:30 -0700 | [diff] [blame] | 568 | - Update pprof (from gperftools 2.0). |
Jason Evans | cbb71ca | 2012-05-11 17:00:20 -0700 | [diff] [blame] | 569 | - Add the --with-mangling option. |
| 570 | - Add the --disable-experimental option. |
| 571 | - Add the --disable-munmap option, and make it the default on Linux. |
| 572 | - Add the --enable-mremap option, which disables use of mremap(2) by default. |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 573 | |
| 574 | Incompatible changes: |
| 575 | - Enable stats by default. |
| 576 | - Enable fill by default. |
| 577 | - Disable lazy locking by default. |
| 578 | - Rename the "tcache.flush" mallctl to "thread.tcache.flush". |
| 579 | - Rename the "arenas.pagesize" mallctl to "arenas.page". |
Jason Evans | 0b25fe7 | 2012-04-17 16:39:33 -0700 | [diff] [blame] | 580 | - Change the "opt.lg_prof_sample" default from 0 to 19 (1 B to 512 KiB). |
| 581 | - Change the "opt.prof_accum" default from true to false. |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 582 | |
| 583 | Removed features: |
| 584 | - Remove the swap feature, including the "config.swap", "swap.avail", |
| 585 | "swap.prezeroed", "swap.nfds", and "swap.fds" mallctls. |
| 586 | - Remove highruns statistics, including the |
| 587 | "stats.arenas.<i>.bins.<j>.highruns" and |
| 588 | "stats.arenas.<i>.lruns.<j>.highruns" mallctls. |
| 589 | - As part of small size class refactoring, remove the "opt.lg_[qc]space_max", |
| 590 | "arenas.cacheline", "arenas.subpage", "arenas.[tqcs]space_{min,max}", and |
| 591 | "arenas.[tqcs]bins" mallctls. |
| 592 | - Remove the "arenas.chunksize" mallctl. |
| 593 | - Remove the "opt.lg_prof_tcmax" option. |
| 594 | - Remove the "opt.lg_prof_bt_max" option. |
| 595 | - Remove the "opt.lg_tcache_gc_sweep" option. |
| 596 | - Remove the --disable-tiny option, including the "config.tiny" mallctl. |
| 597 | - Remove the --enable-dynamic-page-shift configure option. |
| 598 | - Remove the --enable-sysv configure option. |
| 599 | |
| 600 | Bug fixes: |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 601 | - Fix a statistics-related bug in the "thread.arena" mallctl that could cause |
| 602 | invalid statistics and crashes. |
Jason Evans | 079687b | 2012-04-23 12:49:23 -0700 | [diff] [blame] | 603 | - Work around TLS deallocation via free() on Linux. This bug could cause |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 604 | write-after-free memory corruption. |
Jason Evans | 52386b2 | 2012-04-22 16:00:11 -0700 | [diff] [blame] | 605 | - Fix a potential deadlock that could occur during interval- and |
| 606 | growth-triggered heap profile dumps. |
Jason Evans | d8ceef6 | 2012-05-10 20:59:39 -0700 | [diff] [blame] | 607 | - Fix large calloc() zeroing bugs due to dropping chunk map unzeroed flags. |
Jason Evans | 8f0e0eb | 2012-04-21 13:33:48 -0700 | [diff] [blame] | 608 | - Fix chunk_alloc_dss() to stop claiming memory is zeroed. This bug could |
| 609 | cause memory corruption and crashes with --enable-dss specified. |
Jason Evans | 52386b2 | 2012-04-22 16:00:11 -0700 | [diff] [blame] | 610 | - Fix fork-related bugs that could cause deadlock in children between fork |
| 611 | and exec. |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 612 | - Fix malloc_stats_print() to honor 'b' and 'l' in the opts parameter. |
| 613 | - Fix realloc(p, 0) to act like free(p). |
| 614 | - Do not enforce minimum alignment in memalign(). |
| 615 | - Check for NULL pointer in malloc_usable_size(). |
Jason Evans | 52386b2 | 2012-04-22 16:00:11 -0700 | [diff] [blame] | 616 | - Fix an off-by-one heap profile statistics bug that could be observed in |
| 617 | interval- and growth-triggered heap profiles. |
Jason Evans | 6b9ed67 | 2012-04-25 13:12:46 -0700 | [diff] [blame] | 618 | - Fix the "epoch" mallctl to update cached stats even if the passed in epoch |
| 619 | is 0. |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 620 | - Fix bin->runcur management to fix a layout policy bug. This bug did not |
| 621 | affect correctness. |
| 622 | - Fix a bug in choose_arena_hard() that potentially caused more arenas to be |
| 623 | initialized than necessary. |
| 624 | - Add missing "opt.lg_tcache_max" mallctl implementation. |
| 625 | - Use glibc allocator hooks to make mixed allocator usage less likely. |
| 626 | - Fix build issues for --disable-tcache. |
Jason Evans | 918d6e2 | 2012-04-20 13:42:21 -0700 | [diff] [blame] | 627 | - Don't mangle pthread_create() when --with-private-namespace is specified. |
Jason Evans | 9ef7f5d | 2012-04-16 18:16:48 -0700 | [diff] [blame] | 628 | |
Jason Evans | b3bd885 | 2011-11-14 17:12:45 -0800 | [diff] [blame] | 629 | * 2.2.5 (November 14, 2011) |
| 630 | |
| 631 | Bug fixes: |
| 632 | - Fix huge_ralloc() race when using mremap(2). This is a serious bug that |
| 633 | could cause memory corruption and/or crashes. |
| 634 | - Fix huge_ralloc() to maintain chunk statistics. |
| 635 | - Fix malloc_stats_print(..., "a") output. |
| 636 | |
Jason Evans | ca9ee1a | 2011-11-05 21:46:23 -0700 | [diff] [blame] | 637 | * 2.2.4 (November 5, 2011) |
| 638 | |
| 639 | Bug fixes: |
| 640 | - Initialize arenas_tsd before using it. This bug existed for 2.2.[0-3], as |
| 641 | well as for --disable-tls builds in earlier releases. |
| 642 | - Do not assume a 4 KiB page size in test/rallocm.c. |
| 643 | |
Jason Evans | c67e4fd | 2011-08-31 15:19:13 -0700 | [diff] [blame] | 644 | * 2.2.3 (August 31, 2011) |
| 645 | |
| 646 | This version fixes numerous bugs related to heap profiling. |
| 647 | |
| 648 | Bug fixes: |
| 649 | - Fix a prof-related race condition. This bug could cause memory corruption, |
| 650 | but only occurred in non-default configurations (prof_accum:false). |
| 651 | - Fix off-by-one backtracing issues (make sure that prof_alloc_prep() is |
| 652 | excluded from backtraces). |
| 653 | - Fix a prof-related bug in realloc() (only triggered by OOM errors). |
| 654 | - Fix prof-related bugs in allocm() and rallocm(). |
| 655 | - Fix prof_tdata_cleanup() for --disable-tls builds. |
| 656 | - Fix a relative include path, to fix objdir builds. |
| 657 | |
Jason Evans | 4c48481 | 2011-07-30 16:59:13 -0700 | [diff] [blame] | 658 | * 2.2.2 (July 30, 2011) |
| 659 | |
| 660 | Bug fixes: |
| 661 | - Fix a build error for --disable-tcache. |
| 662 | - Fix assertions in arena_purge() (for real this time). |
| 663 | - Add the --with-private-namespace option. This is a workaround for symbol |
| 664 | conflicts that can inadvertently arise when using static libraries. |
| 665 | |
Jason Evans | 7d9ebea | 2011-03-30 15:01:08 -0700 | [diff] [blame] | 666 | * 2.2.1 (March 30, 2011) |
| 667 | |
| 668 | Bug fixes: |
| 669 | - Implement atomic operations for x86/x64. This fixes compilation failures |
| 670 | for versions of gcc that are still in wide use. |
| 671 | - Fix an assertion in arena_purge(). |
| 672 | |
Jason Evans | 4bcd987 | 2011-03-22 15:30:22 -0700 | [diff] [blame] | 673 | * 2.2.0 (March 22, 2011) |
| 674 | |
| 675 | This version incorporates several improvements to algorithms and data |
| 676 | structures that tend to reduce fragmentation and increase speed. |
| 677 | |
| 678 | New features: |
| 679 | - Add the "stats.cactive" mallctl. |
| 680 | - Update pprof (from google-perftools 1.7). |
| 681 | - Improve backtracing-related configuration logic, and add the |
| 682 | --disable-prof-libgcc option. |
| 683 | |
| 684 | Bug fixes: |
| 685 | - Change default symbol visibility from "internal", to "hidden", which |
| 686 | decreases the overhead of library-internal function calls. |
| 687 | - Fix symbol visibility so that it is also set on OS X. |
| 688 | - Fix a build dependency regression caused by the introduction of the .pic.o |
| 689 | suffix for PIC object files. |
| 690 | - Add missing checks for mutex initialization failures. |
| 691 | - Don't use libgcc-based backtracing except on x64, where it is known to work. |
| 692 | - Fix deadlocks on OS X that were due to memory allocation in |
| 693 | pthread_mutex_lock(). |
| 694 | - Heap profiling-specific fixes: |
| 695 | + Fix memory corruption due to integer overflow in small region index |
| 696 | computation, when using a small enough sample interval that profiling |
| 697 | context pointers are stored in small run headers. |
| 698 | + Fix a bootstrap ordering bug that only occurred with TLS disabled. |
| 699 | + Fix a rallocm() rsize bug. |
| 700 | + Fix error detection bugs for aligned memory allocation. |
| 701 | |
Jason Evans | 0e4d0d1 | 2011-03-14 16:41:03 -0700 | [diff] [blame] | 702 | * 2.1.3 (March 14, 2011) |
| 703 | |
| 704 | Bug fixes: |
| 705 | - Fix a cpp logic regression (due to the "thread.{de,}allocatedp" mallctl fix |
| 706 | for OS X in 2.1.2). |
| 707 | - Fix a "thread.arena" mallctl bug. |
| 708 | - Fix a thread cache stats merging bug. |
| 709 | |
je | 6e56e5e | 2011-03-02 11:23:41 -0800 | [diff] [blame] | 710 | * 2.1.2 (March 2, 2011) |
| 711 | |
| 712 | Bug fixes: |
| 713 | - Fix "thread.{de,}allocatedp" mallctl for OS X. |
| 714 | - Add missing jemalloc.a to build system. |
| 715 | |
Jason Evans | 6369286 | 2011-02-07 22:48:35 -0800 | [diff] [blame] | 716 | * 2.1.1 (January 31, 2011) |
Jason Evans | ada55b2 | 2011-01-31 20:08:56 -0800 | [diff] [blame] | 717 | |
Jason Evans | 6369286 | 2011-02-07 22:48:35 -0800 | [diff] [blame] | 718 | Bug fixes: |
Jason Evans | ada55b2 | 2011-01-31 20:08:56 -0800 | [diff] [blame] | 719 | - Fix aligned huge reallocation (affected allocm()). |
| 720 | - Fix the ALLOCM_LG_ALIGN macro definition. |
| 721 | - Fix a heap dumping deadlock. |
| 722 | - Fix a "thread.arena" mallctl bug. |
| 723 | |
Jason Evans | 6369286 | 2011-02-07 22:48:35 -0800 | [diff] [blame] | 724 | * 2.1.0 (December 3, 2010) |
Jason Evans | 0e8d3d2 | 2010-12-03 17:02:16 -0800 | [diff] [blame] | 725 | |
| 726 | This version incorporates some optimizations that can't quite be considered |
| 727 | bug fixes. |
| 728 | |
| 729 | New features: |
| 730 | - Use Linux's mremap(2) for huge object reallocation when possible. |
| 731 | - Avoid locking in mallctl*() when possible. |
| 732 | - Add the "thread.[de]allocatedp" mallctl's. |
| 733 | - Convert the manual page source from roff to DocBook, and generate both roff |
| 734 | and HTML manuals. |
| 735 | |
| 736 | Bug fixes: |
| 737 | - Fix a crash due to incorrect bootstrap ordering. This only impacted |
| 738 | --enable-debug --enable-dss configurations. |
| 739 | - Fix a minor statistics bug for mallctl("swap.avail", ...). |
| 740 | |
Jason Evans | 6369286 | 2011-02-07 22:48:35 -0800 | [diff] [blame] | 741 | * 2.0.1 (October 29, 2010) |
Jason Evans | 53806fe | 2010-10-29 20:16:39 -0700 | [diff] [blame] | 742 | |
| 743 | Bug fixes: |
| 744 | - Fix a race condition in heap profiling that could cause undefined behavior |
Jason Evans | ada55b2 | 2011-01-31 20:08:56 -0800 | [diff] [blame] | 745 | if "opt.prof_accum" were disabled. |
Jason Evans | 53806fe | 2010-10-29 20:16:39 -0700 | [diff] [blame] | 746 | - Add missing mutex unlocks for some OOM error paths in the heap profiling |
| 747 | code. |
| 748 | - Fix a compilation error for non-C99 builds. |
| 749 | |
Jason Evans | 6369286 | 2011-02-07 22:48:35 -0800 | [diff] [blame] | 750 | * 2.0.0 (October 24, 2010) |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 751 | |
| 752 | This version focuses on the experimental *allocm() API, and on improved |
| 753 | run-time configuration/introspection. Nonetheless, numerous performance |
| 754 | improvements are also included. |
| 755 | |
| 756 | New features: |
Jason Evans | b059a53 | 2010-10-24 16:54:40 -0700 | [diff] [blame] | 757 | - Implement the experimental {,r,s,d}allocm() API, which provides a superset |
| 758 | of the functionality available via malloc(), calloc(), posix_memalign(), |
| 759 | realloc(), malloc_usable_size(), and free(). These functions can be used to |
| 760 | allocate/reallocate aligned zeroed memory, ask for optional extra memory |
| 761 | during reallocation, prevent object movement during reallocation, etc. |
| 762 | - Replace JEMALLOC_OPTIONS/JEMALLOC_PROF_PREFIX with MALLOC_CONF, which is |
| 763 | more human-readable, and more flexible. For example: |
| 764 | JEMALLOC_OPTIONS=AJP |
| 765 | is now: |
| 766 | MALLOC_CONF=abort:true,fill:true,stats_print:true |
| 767 | - Port to Apple OS X. Sponsored by Mozilla. |
| 768 | - Make it possible for the application to control thread-->arena mappings via |
| 769 | the "thread.arena" mallctl. |
| 770 | - Add compile-time support for all TLS-related functionality via pthreads TSD. |
| 771 | This is mainly of interest for OS X, which does not support TLS, but has a |
| 772 | TSD implementation with similar performance. |
| 773 | - Override memalign() and valloc() if they are provided by the system. |
| 774 | - Add the "arenas.purge" mallctl, which can be used to synchronously purge all |
| 775 | dirty unused pages. |
| 776 | - Make cumulative heap profiling data optional, so that it is possible to |
| 777 | limit the amount of memory consumed by heap profiling data structures. |
| 778 | - Add per thread allocation counters that can be accessed via the |
| 779 | "thread.allocated" and "thread.deallocated" mallctls. |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 780 | |
| 781 | Incompatible changes: |
Jason Evans | b059a53 | 2010-10-24 16:54:40 -0700 | [diff] [blame] | 782 | - Remove JEMALLOC_OPTIONS and malloc_options (see MALLOC_CONF above). |
| 783 | - Increase default backtrace depth from 4 to 128 for heap profiling. |
| 784 | - Disable interval-based profile dumps by default. |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 785 | |
| 786 | Bug fixes: |
| 787 | - Remove bad assertions in fork handler functions. These assertions could |
| 788 | cause aborts for some combinations of configure settings. |
| 789 | - Fix strerror_r() usage to deal with non-standard semantics in GNU libc. |
| 790 | - Fix leak context reporting. This bug tended to cause the number of contexts |
| 791 | to be underreported (though the reported number of objects and bytes were |
| 792 | correct). |
| 793 | - Fix a realloc() bug for large in-place growing reallocation. This bug could |
| 794 | cause memory corruption, but it was hard to trigger. |
| 795 | - Fix an allocation bug for small allocations that could be triggered if |
| 796 | multiple threads raced to create a new run of backing pages. |
| 797 | - Enhance the heap profiler to trigger samples based on usable size, rather |
| 798 | than request size. |
| 799 | - Fix a heap profiling bug due to sometimes losing track of requested object |
| 800 | size for sampled objects. |
| 801 | |
Jason Evans | 6369286 | 2011-02-07 22:48:35 -0800 | [diff] [blame] | 802 | * 1.0.3 (August 12, 2010) |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 803 | |
| 804 | Bug fixes: |
| 805 | - Fix the libunwind-based implementation of stack backtracing (used for heap |
| 806 | profiling). This bug could cause zero-length backtraces to be reported. |
| 807 | - Add a missing mutex unlock in library initialization code. If multiple |
| 808 | threads raced to initialize malloc, some of them could end up permanently |
| 809 | blocked. |
| 810 | |
Jason Evans | 6369286 | 2011-02-07 22:48:35 -0800 | [diff] [blame] | 811 | * 1.0.2 (May 11, 2010) |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 812 | |
| 813 | Bug fixes: |
| 814 | - Fix junk filling of large objects, which could cause memory corruption. |
| 815 | - Add MAP_NORESERVE support for chunk mapping, because otherwise virtual |
| 816 | memory limits could cause swap file configuration to fail. Contributed by |
| 817 | Jordan DeLong. |
| 818 | |
Jason Evans | 6369286 | 2011-02-07 22:48:35 -0800 | [diff] [blame] | 819 | * 1.0.1 (April 14, 2010) |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 820 | |
| 821 | Bug fixes: |
| 822 | - Fix compilation when --enable-fill is specified. |
| 823 | - Fix threads-related profiling bugs that affected accuracy and caused memory |
| 824 | to be leaked during thread exit. |
| 825 | - Fix dirty page purging race conditions that could cause crashes. |
| 826 | - Fix crash in tcache flushing code during thread destruction. |
| 827 | |
Jason Evans | 6369286 | 2011-02-07 22:48:35 -0800 | [diff] [blame] | 828 | * 1.0.0 (April 11, 2010) |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 829 | |
| 830 | This release focuses on speed and run-time introspection. Numerous |
| 831 | algorithmic improvements make this release substantially faster than its |
| 832 | predecessors. |
| 833 | |
| 834 | New features: |
| 835 | - Implement autoconf-based configuration system. |
| 836 | - Add mallctl*(), for the purposes of introspection and run-time |
| 837 | configuration. |
| 838 | - Make it possible for the application to manually flush a thread's cache, via |
| 839 | the "tcache.flush" mallctl. |
| 840 | - Base maximum dirty page count on proportion of active memory. |
charsyam | ad6800f | 2015-07-04 01:06:06 +0900 | [diff] [blame] | 841 | - Compute various additional run-time statistics, including per size class |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 842 | statistics for large objects. |
| 843 | - Expose malloc_stats_print(), which can be called repeatedly by the |
| 844 | application. |
| 845 | - Simplify the malloc_message() signature to only take one string argument, |
| 846 | and incorporate an opaque data pointer argument for use by the application |
| 847 | in combination with malloc_stats_print(). |
| 848 | - Add support for allocation backed by one or more swap files, and allow the |
| 849 | application to disable over-commit if swap files are in use. |
| 850 | - Implement allocation profiling and leak checking. |
| 851 | |
| 852 | Removed features: |
| 853 | - Remove the dynamic arena rebalancing code, since thread-specific caching |
| 854 | reduces its utility. |
| 855 | |
| 856 | Bug fixes: |
| 857 | - Modify chunk allocation to work when address space layout randomization |
| 858 | (ASLR) is in use. |
| 859 | - Fix thread cleanup bugs related to TLS destruction. |
| 860 | - Handle 0-size allocation requests in posix_memalign(). |
| 861 | - Fix a chunk leak. The leaked chunks were never touched, so this impacted |
| 862 | virtual memory usage, but not physical memory usage. |
| 863 | |
Jason Evans | 6369286 | 2011-02-07 22:48:35 -0800 | [diff] [blame] | 864 | * linux_2008082[78]a (August 27/28, 2008) |
Jason Evans | 379f847 | 2010-10-24 16:18:29 -0700 | [diff] [blame] | 865 | |
| 866 | These snapshot releases are the simple result of incorporating Linux-specific |
| 867 | support into the FreeBSD malloc sources. |
| 868 | |
| 869 | -------------------------------------------------------------------------------- |
| 870 | vim:filetype=text:textwidth=80 |