blob: 6f79cacfd6c966e5928717a2144990b6d4d76c57 [file] [log] [blame]
Jason Evans379f8472010-10-24 16:18:29 -07001Following are change highlights associated with official releases. Important
2bug fixes are all mentioned, but internal enhancements are omitted here for
3brevity (even though they are more fun to write about). Much more detail can be
4found in the git revision history:
5
Jason Evansb9ec5c92014-02-25 16:43:51 -08006 https://github.com/jemalloc/jemalloc
7
Jason Evans54673fd2015-02-23 22:28:43 -08008* 4.0.0 (XXX) See https://github.com/jemalloc/jemalloc/milestones/4.0.0 for
9 remaining work.
10
11 This version contains many speed and space optimizations, both minor and
12 major. The major themes are generalization, unification, and simplification.
13 Although many of these optimizations cause no visible behavior change, their
14 cumulative effect is substantial.
15
16 New features:
17 - Normalize size class spacing to be consistent across the complete size
18 range. By default there are four size classes per size doubling, but this
19 is now configurable via the --with-lg-size-class-group option. Also add the
20 --with-lg-page, --with-lg-page-sizes, --with-lg-quantum, and
21 --with-lg-tiny-min options, which can be used to tweak page and size class
22 settings. Impacts:
23 + Worst case performance for incrementally growing/shrinking reallocation
24 is improved because there are far fewer size classes, and therefore
25 copying happens less often.
26 + Internal fragmentation is limited to 20% for all but the smallest size
27 classes (those less than four times the quantum). (1B + 4 KiB)
28 and (1B + 4 MiB) previously suffered nearly 50% internal fragmentation.
29 + Chunk fragmentation tends to be lower because there are fewer distinct run
30 sizes to pack.
31 - Add support for explicit tcaches. The "tcache.create", "tcache.flush", and
32 "tcache.destroy" mallctls control tcache lifetime and flushing, and the
33 MALLOCX_TCACHE(tc) and MALLOCX_TCACHE_NONE flags to the *allocx() API
34 control which tcache is used for each operation.
35 - Implement per thread heap profiling, as well as the ability to
36 enable/disable heap profiling on a per thread basis. Add the "prof.reset",
37 "prof.lg_sample", "thread.prof.name", "thread.prof.active",
38 "opt.prof_thread_active_init", "prof.thread_active_init", and
39 "thread.prof.active" mallctls.
40 - Add support for per arena application-specified chunk allocators, configured
Jason Evans562d2662015-03-24 16:36:12 -070041 via the "arena<i>.chunk.alloc", "arena<i>.chunk.dalloc", and
42 "arena.<i>.chunk.purge" mallctls.
Jason Evans54673fd2015-02-23 22:28:43 -080043 - Refactor huge allocation to be managed by arenas, so that arenas now
44 function as general purpose independent allocators. This is important in
45 the context of user-specified chunk allocators, aside from the scalability
46 benefits. Related new statistics:
47 + The "stats.arenas.<i>.huge.allocated", "stats.arenas.<i>.huge.nmalloc",
48 "stats.arenas.<i>.huge.ndalloc", and "stats.arenas.<i>.huge.nrequests"
49 mallctls provide high level per arena huge allocation statistics.
Qinfan Wu89750352015-04-21 16:57:42 -070050 + The "arenas.nhchunks", "arenas.hchunk.<i>.size",
Jason Evans54673fd2015-02-23 22:28:43 -080051 "stats.arenas.<i>.hchunks.<j>.nmalloc",
52 "stats.arenas.<i>.hchunks.<j>.ndalloc",
53 "stats.arenas.<i>.hchunks.<j>.nrequests", and
54 "stats.arenas.<i>.hchunks.<j>.curhchunks" mallctls provide per size class
55 statistics.
56 - Add the 'util' column to malloc_stats_print() output, which reports the
57 proportion of available regions that are currently in use for each small
58 size class.
59 - Add "alloc" and "free" modes for for junk filling (see the "opt.junk"
60 mallctl), so that it is possible to separately enable junk filling for
61 allocation versus deallocation.
62 - Add the jemalloc-config script, which provides information about how
63 jemalloc was configured, and how to integrate it into application builds.
64 - Add metadata statistics, which are accessible via the "stats.metadata",
65 "stats.arenas.<i>.metadata.mapped", and
66 "stats.arenas.<i>.metadata.allocated" mallctls.
Jason Evans4acd75a2015-03-23 17:25:57 -070067 - Add the "stats.resident" mallctl, which reports the upper limit of
68 physically resident memory mapped by the allocator.
Jason Evans562d2662015-03-24 16:36:12 -070069 - Add per arena control over unused dirty page purging, via the
70 "arenas.lg_dirty_mult", "arena.<i>.lg_dirty_mult", and
71 "stats.arenas.<i>.lg_dirty_mult" mallctls.
Jason Evans54673fd2015-02-23 22:28:43 -080072 - Add the "prof.gdump" mallctl, which makes it possible to toggle the gdump
73 feature on/off during program execution.
74 - Add sdallocx(), which implements sized deallocation. The primary
75 optimization over dallocx() is the removal of a metadata read, which often
76 suffers an L1 cache miss.
77 - Add missing header includes in jemalloc/jemalloc.h, so that applications
78 only have to #include <jemalloc/jemalloc.h>.
79 - Add support for additional platforms:
80 + Bitrig
81 + Cygwin
82 + DragonFlyBSD
83 + iOS
84 + OpenBSD
85 + OpenRISC/or1k
86
87 Optimizations:
88 - Switch run and chunk allocation from first-best-fit (among best-fit
89 candidates, choose the lowest in memory) to first-fit (among all candidates,
90 choose the lowest in memory). This tends to reduce chunk and virtual memory
91 fragmentation, respectively.
92 - Maintain dirty runs in per arena LRUs rather than in per arena trees of
93 dirty-run-containing chunks. In practice this change significantly reduces
94 dirty page purging volume.
95 - Integrate whole chunks into the unused dirty page purging machinery. This
96 reduces the cost of repeated huge allocation/deallocation, because it
97 effectively introduces a cache of chunks.
98 - Split the arena chunk map into two separate arrays, in order to increase
99 cache locality for the frequently accessed bits.
100 - Move small run metadata out of runs, into arena chunk headers. This reduces
101 run fragmentation, smaller runs reduce external fragmentation for small size
102 classes, and packed (less uniformly aligned) metadata layout improves CPU
103 cache set distribution.
104 - Micro-optimize the fast paths for the public API functions.
105 - Refactor thread-specific data to reside in a single structure. This assures
106 that only a single TLS read is necessary per call into the public API.
107 - Implement in-place huge allocation growing and shrinking.
108 - Refactor rtree (radix tree for chunk lookups) to be lock-free, and make
109 additional optimizations that reduce maximum lookup depth to one or two
110 levels. This resolves what was a concurrency bottleneck for per arena huge
111 allocation, because a global data structure is critical for determining
112 which arenas own which huge allocations.
113
114 Incompatible changes:
115 - Replace --enable-cc-silence with --disable-cc-silence to suppress spurious
116 warnings by default.
117 - Assure that the constness of malloc_usable_size()'s return type matches that
118 of the system implementation.
119 - Change the heap profile dump format to support per thread heap profiling,
120 and enhance pprof with the --thread=<n> option. As a result, the bundled
121 pprof must now be used rather than the upstream (gperftools) pprof.
122 - Disable "opt.prof_final" by default, in order to avoid atexit(3), which can
123 internally deadlock on some platforms.
124 - Change the "arenas.nlruns" mallctl type from size_t to unsigned.
125 - Replace the "stats.arenas.<i>.bins.<j>.allocated" mallctl with
126 "stats.arenas.<i>.bins.<j>.curregs".
127 - Ignore MALLOC_CONF in set{uid,gid,cap} binaries.
128 - Ignore MALLOCX_ARENA(a) in dallocx(), in favor of using the
129 MALLOCX_TCACHE(tc) and MALLOCX_TCACHE_NONE flags to control tcache usage.
130
131 Removed features:
132 - Remove the *allocm() API, which is superseded by the *allocx() API.
133 - Remove the --enable-dss options, and make dss non-optional on all platforms
134 which support sbrk(2).
135 - Remove the "arenas.purge" mallctl, which was obsoleted by the
136 "arena.<i>.purge" mallctl in 3.1.0.
137 - Remove the unnecessary "opt.valgrind" mallctl; jemalloc automatically
138 detects whether it is running inside Valgrind.
139 - Remove the "stats.huge.allocated", "stats.huge.nmalloc", and
140 "stats.huge.ndalloc" mallctls.
141 - Remove the --enable-mremap option.
Jason Evans54673fd2015-02-23 22:28:43 -0800142 - Remove the "stats.chunks.current", "stats.chunks.total", and
143 "stats.chunks.high" mallctls.
144
145 Bug fixes:
146 - Fix the cactive statistic to decrease (rather than increase) when active
147 memory decreases. This regression was first released in 3.5.0.
148 - Fix OOM handling in memalign() and valloc(). A variant of this bug existed
149 in all releases since 2.0.0, which introduced these functions.
150 - Fix the "arena.<i>.dss" mallctl to return an error if "primary" or
151 "secondary" precedence is specified, but sbrk(2) is not supported.
152 - Fix fallback lg_floor() implementations to handle extremely large inputs.
153 - Ensure the default purgeable zone is after the default zone on OS X.
154 - Fix latent bugs in atomic_*().
155 - Fix the "arena.<i>.dss" mallctl to handle read-only calls.
156 - Fix tls_model configuration to enable the initial-exec model when possible.
157 - Mark malloc_conf as a weak symbol so that the application can override it.
158 - Correctly detect glibc's adaptive pthread mutexes.
159 - Fix the --without-export configure option.
160
Jason Evansff536312014-03-31 09:23:10 -0700161* 3.6.0 (March 31, 2014)
162
163 This version contains a critical bug fix for a regression present in 3.5.0 and
164 3.5.1.
165
166 Bug fixes:
167 - Fix a regression in arena_chunk_alloc() that caused crashes during
168 small/large allocation if chunk allocation failed. In the absence of this
169 bug, chunk allocation failure would result in allocation failure, e.g. NULL
170 return from malloc(). This regression was introduced in 3.5.0.
171 - Fix backtracing for gcc intrinsics-based backtracing by specifying
172 -fno-omit-frame-pointer to gcc. Note that the application (and all the
173 libraries it links to) must also be compiled with this option for
174 backtracing to be reliable.
175 - Use dss allocation precedence for huge allocations as well as small/large
176 allocations.
Jason Evans54673fd2015-02-23 22:28:43 -0800177 - Fix test assertion failure message formatting. This bug did not manifest on
Jason Evansff536312014-03-31 09:23:10 -0700178 x86_64 systems because of implementation subtleties in va_list.
179 - Fix inconsequential test failures for hash and SFMT code.
180
181 New features:
182 - Support heap profiling on FreeBSD. This feature depends on the proc
183 filesystem being mounted during heap profile dumping.
184
Jason Evansb9ec5c92014-02-25 16:43:51 -0800185* 3.5.1 (February 25, 2014)
186
187 This version primarily addresses minor bugs in test code.
188
189 Bug fixes:
190 - Configure Solaris/Illumos to use MADV_FREE.
191 - Fix junk filling for mremap(2)-based huge reallocation. This is only
192 relevant if configuring with the --enable-mremap option specified.
193 - Avoid compilation failure if 'restrict' C99 keyword is not supported by the
194 compiler.
195 - Add a configure test for SSE2 rather than assuming it is usable on i686
196 systems. This fixes test compilation errors, especially on 32-bit Linux
197 systems.
198 - Fix mallctl argument size mismatches (size_t vs. uint64_t) in the stats unit
199 test.
200 - Fix/remove flawed alignment-related overflow tests.
201 - Prevent compiler optimizations that could change backtraces in the
202 prof_accum unit test.
Jason Evans379f8472010-10-24 16:18:29 -0700203
Jason Evans798a4812014-01-22 11:09:50 -0800204* 3.5.0 (January 22, 2014)
Jason Evans86abd0d2013-11-30 15:25:42 -0800205
Jason Evans264dfd32014-01-17 17:01:23 -0800206 This version focuses on refactoring and automated testing, though it also
207 includes some non-trivial heap profiling optimizations not mentioned below.
208
209 New features:
210 - Add the *allocx() API, which is a successor to the experimental *allocm()
211 API. The *allocx() functions are slightly simpler to use because they have
212 fewer parameters, they directly return the results of primary interest, and
213 mallocx()/rallocx() avoid the strict aliasing pitfall that
Jason Evans9c8baec2014-01-22 13:08:47 -0800214 allocm()/rallocm() share with posix_memalign(). Note that *allocm() is
Jason Evans264dfd32014-01-17 17:01:23 -0800215 slated for removal in the next non-bugfix release.
216 - Add support for LinuxThreads.
217
Jason Evans86abd0d2013-11-30 15:25:42 -0800218 Bug fixes:
Jason Evansd37d5ad2013-12-05 23:01:50 -0800219 - Unless heap profiling is enabled, disable floating point code and don't link
220 with libm. This, in combination with e.g. EXTRA_CFLAGS=-mno-sse on x64
221 systems, makes it possible to completely disable floating point register
222 use. Some versions of glibc neglect to save/restore caller-saved floating
223 point registers during dynamic lazy symbol loading, and the symbol loading
224 code uses whatever malloc the application happens to have linked/loaded
225 with, the result being potential floating point register corruption.
Jason Evans264dfd32014-01-17 17:01:23 -0800226 - Report ENOMEM rather than EINVAL if an OOM occurs during heap profiling
227 backtrace creation in imemalign(). This bug impacted posix_memalign() and
228 aligned_alloc().
229 - Fix a file descriptor leak in a prof_dump_maps() error path.
230 - Fix prof_dump() to close the dump file descriptor for all relevant error
231 paths.
232 - Fix rallocm() to use the arena specified by the ALLOCM_ARENA(s) flag for
233 allocation, not just deallocation.
234 - Fix a data race for large allocation stats counters.
235 - Fix a potential infinite loop during thread exit. This bug occurred on
236 Solaris, and could affect other platforms with similar pthreads TSD
237 implementations.
238 - Don't junk-fill reallocations unless usable size changes. This fixes a
239 violation of the *allocx()/*allocm() semantics.
240 - Fix growing large reallocation to junk fill new space.
241 - Fix huge deallocation to junk fill when munmap is disabled.
Jason Evans86abd0d2013-11-30 15:25:42 -0800242 - Change the default private namespace prefix from empty to je_, and change
243 --with-private-namespace-prefix so that it prepends an additional prefix
244 rather than replacing je_. This reduces the likelihood of applications
245 which statically link jemalloc experiencing symbol name collisions.
Jason Evans264dfd32014-01-17 17:01:23 -0800246 - Add missing private namespace mangling (relevant when
247 --with-private-namespace is specified).
248 - Add and use JEMALLOC_INLINE_C so that static inline functions are marked as
249 static even for debug builds.
250 - Add a missing mutex unlock in a malloc_init_hard() error path. In practice
251 this error path is never executed.
252 - Fix numerous bugs in malloc_strotumax() error handling/reporting. These
253 bugs had no impact except for malformed inputs.
254 - Fix numerous bugs in malloc_snprintf(). These bugs were not exercised by
255 existing calls, so they had no impact.
Jason Evans86abd0d2013-11-30 15:25:42 -0800256
Jason Evans0f7ba3f2013-10-20 19:40:09 -0700257* 3.4.1 (October 20, 2013)
Jason Evansff08ef72013-10-19 21:41:10 -0700258
259 Bug fixes:
Jason Evans7b651802013-10-20 14:09:54 -0700260 - Fix a race in the "arenas.extend" mallctl that could cause memory corruption
261 of internal data structures and subsequent crashes.
Jason Evansdda90f52013-10-19 23:48:40 -0700262 - Fix Valgrind integration flaws that caused Valgrind warnings about reads of
263 uninitialized memory in:
264 + arena chunk headers
265 + internal zero-initialized data structures (relevant to tcache and prof
266 code)
Jason Evansff08ef72013-10-19 21:41:10 -0700267 - Preserve errno during the first allocation. A readlink(2) call during
268 initialization fails unless /etc/malloc.conf exists, so errno was typically
269 set during the first allocation prior to this fix.
270 - Fix compilation warnings reported by gcc 4.8.1.
271
Jason Evans765cc2b2013-06-02 20:58:00 -0700272* 3.4.0 (June 2, 2013)
273
274 This version is essentially a small bugfix release, but the addition of
275 aarch64 support requires that the minor version be incremented.
276
277 Bug fixes:
278 - Fix race-triggered deadlocks in chunk_record(). These deadlocks were
279 typically triggered by multiple threads concurrently deallocating huge
280 objects.
281
282 New features:
283 - Add support for the aarch64 architecture.
284
Jason Evans22988352013-03-06 11:11:17 -0800285* 3.3.1 (March 6, 2013)
286
287 This version fixes bugs that are typically encountered only when utilizing
288 custom run-time options.
Jason Evansbbe29d32013-01-30 15:03:11 -0800289
290 Bug fixes:
Jason Evans88c222c2013-02-06 11:59:30 -0800291 - Fix a locking order bug that could cause deadlock during fork if heap
292 profiling were enabled.
Jason Evansa7a28c32013-01-31 16:53:58 -0800293 - Fix a chunk recycling bug that could cause the allocator to lose track of
Jason Evans765cc2b2013-06-02 20:58:00 -0700294 whether a chunk was zeroed. On FreeBSD, NetBSD, and OS X, it could cause
Jason Evansa7a28c32013-01-31 16:53:58 -0800295 corruption if allocating via sbrk(2) (unlikely unless running with the
296 "dss:primary" option specified). This was completely harmless on Linux
297 unless using mlockall(2) (and unlikely even then, unless the
298 --disable-munmap configure option or the "dss:primary" option was
299 specified). This regression was introduced in 3.1.0 by the
300 mlockall(2)/madvise(2) interaction fix.
Jason Evansbbe29d32013-01-30 15:03:11 -0800301 - Fix TLS-related memory corruption that could occur during thread exit if the
302 thread never allocated memory. Only the quarantine and prof facilities were
303 susceptible.
Jason Evansd0e942e2013-01-31 14:42:41 -0800304 - Fix two quarantine bugs:
305 + Internal reallocation of the quarantined object array leaked the old
306 array.
307 + Reallocation failure for internal reallocation of the quarantined object
308 array (very unlikely) resulted in memory corruption.
Jason Evans06912752013-01-31 17:02:53 -0800309 - Fix Valgrind integration to annotate all internally allocated memory in a
310 way that keeps Valgrind happy about internal data structure access.
Jason Evans22988352013-03-06 11:11:17 -0800311 - Fix building for s390 systems.
Jason Evansbbe29d32013-01-30 15:03:11 -0800312
Jason Evansb5681fb2013-01-22 22:45:09 -0800313* 3.3.0 (January 23, 2013)
314
315 This version includes a few minor performance improvements in addition to the
316 listed new features and bug fixes.
317
318 New features:
319 - Add clipping support to lg_chunk option processing.
320 - Add the --enable-ivsalloc option.
321 - Add the --without-export option.
322 - Add the --disable-zone-allocator option.
Jason Evans6eb84fb2012-11-29 22:13:04 -0800323
324 Bug fixes:
325 - Fix "arenas.extend" mallctl to output the number of arenas.
Jason Evansa33488d2013-10-03 14:38:39 -0700326 - Fix chunk_recycle() to unconditionally inform Valgrind that returned memory
Jason Evans12711852012-12-12 10:12:18 -0800327 is undefined.
Jason Evansb5681fb2013-01-22 22:45:09 -0800328 - Fix build break on FreeBSD related to alloca.h.
Jason Evans6eb84fb2012-11-29 22:13:04 -0800329
Jason Evans556ddc72012-11-07 15:16:29 -0800330* 3.2.0 (November 9, 2012)
331
332 In addition to a couple of bug fixes, this version modifies page run
333 allocation and dirty page purging algorithms in order to better control
334 page-level virtual memory fragmentation.
Jason Evans12efefb2012-10-16 22:06:56 -0700335
Jason Evanse3d13062012-10-30 15:42:37 -0700336 Incompatible changes:
Jason Evans556ddc72012-11-07 15:16:29 -0800337 - Change the "opt.lg_dirty_mult" default from 5 to 3 (32:1 to 8:1).
Jason Evanse3d13062012-10-30 15:42:37 -0700338
Jason Evans12efefb2012-10-16 22:06:56 -0700339 Bug fixes:
340 - Fix dss/mmap allocation precedence code to use recyclable mmap memory only
341 after primary dss allocation fails.
Jason Evanse3d13062012-10-30 15:42:37 -0700342 - Fix deadlock in the "arenas.purge" mallctl. This regression was introduced
343 in 3.1.0 by the addition of the "arena.<i>.purge" mallctl.
Jason Evans12efefb2012-10-16 22:06:56 -0700344
Jason Evans2b592b02012-10-16 10:12:40 -0700345* 3.1.0 (October 16, 2012)
Jason Evans3860eac2012-05-15 13:53:21 -0700346
Jason Evans781fe752012-05-15 14:48:14 -0700347 New features:
348 - Auto-detect whether running inside Valgrind, thus removing the need to
349 manually specify MALLOC_CONF=valgrind:true.
Jason Evans2b592b02012-10-16 10:12:40 -0700350 - Add the "arenas.extend" mallctl, which allows applications to create
351 manually managed arenas.
352 - Add the ALLOCM_ARENA() flag for {,r,d}allocm().
353 - Add the "opt.dss", "arena.<i>.dss", and "stats.arenas.<i>.dss" mallctls,
354 which provide control over dss/mmap precedence.
355 - Add the "arena.<i>.purge" mallctl, which obsoletes "arenas.purge".
356 - Define LG_QUANTUM for hppa.
Jason Evans781fe752012-05-15 14:48:14 -0700357
Jason Evans174b70e2012-05-15 23:31:53 -0700358 Incompatible changes:
359 - Disable tcache by default if running inside Valgrind, in order to avoid
360 making unallocated objects appear reachable to Valgrind.
Jason Evans2b592b02012-10-16 10:12:40 -0700361 - Drop const from malloc_usable_size() argument on Linux.
Jason Evans174b70e2012-05-15 23:31:53 -0700362
Jason Evans3860eac2012-05-15 13:53:21 -0700363 Bug fixes:
364 - Fix heap profiling crash if sampled object is freed via realloc(p, 0).
Jason Evans5c710ce2012-05-23 16:09:22 -0700365 - Remove const from __*_hook variable declarations, so that glibc can modify
366 them during process forking.
Jason Evans2b592b02012-10-16 10:12:40 -0700367 - Fix mlockall(2)/madvise(2) interaction.
368 - Fix fork(2)-related deadlocks.
369 - Fix error return value for "thread.tcache.enabled" mallctl.
Jason Evans3860eac2012-05-15 13:53:21 -0700370
Jason Evanscbb71ca2012-05-11 17:00:20 -0700371* 3.0.0 (May 11, 2012)
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700372
373 Although this version adds some major new features, the primary focus is on
374 internal code cleanup that facilitates maintainability and portability, most
375 of which is not reflected in the ChangeLog. This is the first release to
376 incorporate substantial contributions from numerous other developers, and the
377 result is a more broadly useful allocator (see the git revision history for
378 contribution details). Note that the license has been unified, thanks to
379 Facebook granting a license under the same terms as the other copyright
380 holders (see COPYING).
381
382 New features:
383 - Implement Valgrind support, redzones, and quarantine.
Jason Evans079687b2012-04-23 12:49:23 -0700384 - Add support for additional platforms:
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700385 + FreeBSD
386 + Mac OS X Lion
Jason Evans40f514f2012-04-22 16:21:06 -0700387 + MinGW
Jason Evanscbb71ca2012-05-11 17:00:20 -0700388 + Windows (no support yet for replacing the system malloc)
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700389 - Add support for additional architectures:
390 + MIPS
391 + SH4
392 + Tilera
393 - Add support for cross compiling.
394 - Add nallocm(), which rounds a request size up to the nearest size class
395 without actually allocating.
396 - Implement aligned_alloc() (blame C11).
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700397 - Add the "thread.tcache.enabled" mallctl.
Jason Evans0b25fe72012-04-17 16:39:33 -0700398 - Add the "opt.prof_final" mallctl.
Jason Evans25a000e2012-04-17 15:49:30 -0700399 - Update pprof (from gperftools 2.0).
Jason Evanscbb71ca2012-05-11 17:00:20 -0700400 - Add the --with-mangling option.
401 - Add the --disable-experimental option.
402 - Add the --disable-munmap option, and make it the default on Linux.
403 - Add the --enable-mremap option, which disables use of mremap(2) by default.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700404
405 Incompatible changes:
406 - Enable stats by default.
407 - Enable fill by default.
408 - Disable lazy locking by default.
409 - Rename the "tcache.flush" mallctl to "thread.tcache.flush".
410 - Rename the "arenas.pagesize" mallctl to "arenas.page".
Jason Evans0b25fe72012-04-17 16:39:33 -0700411 - Change the "opt.lg_prof_sample" default from 0 to 19 (1 B to 512 KiB).
412 - Change the "opt.prof_accum" default from true to false.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700413
414 Removed features:
415 - Remove the swap feature, including the "config.swap", "swap.avail",
416 "swap.prezeroed", "swap.nfds", and "swap.fds" mallctls.
417 - Remove highruns statistics, including the
418 "stats.arenas.<i>.bins.<j>.highruns" and
419 "stats.arenas.<i>.lruns.<j>.highruns" mallctls.
420 - As part of small size class refactoring, remove the "opt.lg_[qc]space_max",
421 "arenas.cacheline", "arenas.subpage", "arenas.[tqcs]space_{min,max}", and
422 "arenas.[tqcs]bins" mallctls.
423 - Remove the "arenas.chunksize" mallctl.
424 - Remove the "opt.lg_prof_tcmax" option.
425 - Remove the "opt.lg_prof_bt_max" option.
426 - Remove the "opt.lg_tcache_gc_sweep" option.
427 - Remove the --disable-tiny option, including the "config.tiny" mallctl.
428 - Remove the --enable-dynamic-page-shift configure option.
429 - Remove the --enable-sysv configure option.
430
431 Bug fixes:
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700432 - Fix a statistics-related bug in the "thread.arena" mallctl that could cause
433 invalid statistics and crashes.
Jason Evans079687b2012-04-23 12:49:23 -0700434 - Work around TLS deallocation via free() on Linux. This bug could cause
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700435 write-after-free memory corruption.
Jason Evans52386b22012-04-22 16:00:11 -0700436 - Fix a potential deadlock that could occur during interval- and
437 growth-triggered heap profile dumps.
Jason Evansd8ceef62012-05-10 20:59:39 -0700438 - Fix large calloc() zeroing bugs due to dropping chunk map unzeroed flags.
Jason Evans8f0e0eb2012-04-21 13:33:48 -0700439 - Fix chunk_alloc_dss() to stop claiming memory is zeroed. This bug could
440 cause memory corruption and crashes with --enable-dss specified.
Jason Evans52386b22012-04-22 16:00:11 -0700441 - Fix fork-related bugs that could cause deadlock in children between fork
442 and exec.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700443 - Fix malloc_stats_print() to honor 'b' and 'l' in the opts parameter.
444 - Fix realloc(p, 0) to act like free(p).
445 - Do not enforce minimum alignment in memalign().
446 - Check for NULL pointer in malloc_usable_size().
Jason Evans52386b22012-04-22 16:00:11 -0700447 - Fix an off-by-one heap profile statistics bug that could be observed in
448 interval- and growth-triggered heap profiles.
Jason Evans6b9ed672012-04-25 13:12:46 -0700449 - Fix the "epoch" mallctl to update cached stats even if the passed in epoch
450 is 0.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700451 - Fix bin->runcur management to fix a layout policy bug. This bug did not
452 affect correctness.
453 - Fix a bug in choose_arena_hard() that potentially caused more arenas to be
454 initialized than necessary.
455 - Add missing "opt.lg_tcache_max" mallctl implementation.
456 - Use glibc allocator hooks to make mixed allocator usage less likely.
457 - Fix build issues for --disable-tcache.
Jason Evans918d6e22012-04-20 13:42:21 -0700458 - Don't mangle pthread_create() when --with-private-namespace is specified.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700459
Jason Evansb3bd8852011-11-14 17:12:45 -0800460* 2.2.5 (November 14, 2011)
461
462 Bug fixes:
463 - Fix huge_ralloc() race when using mremap(2). This is a serious bug that
464 could cause memory corruption and/or crashes.
465 - Fix huge_ralloc() to maintain chunk statistics.
466 - Fix malloc_stats_print(..., "a") output.
467
Jason Evansca9ee1a2011-11-05 21:46:23 -0700468* 2.2.4 (November 5, 2011)
469
470 Bug fixes:
471 - Initialize arenas_tsd before using it. This bug existed for 2.2.[0-3], as
472 well as for --disable-tls builds in earlier releases.
473 - Do not assume a 4 KiB page size in test/rallocm.c.
474
Jason Evansc67e4fd2011-08-31 15:19:13 -0700475* 2.2.3 (August 31, 2011)
476
477 This version fixes numerous bugs related to heap profiling.
478
479 Bug fixes:
480 - Fix a prof-related race condition. This bug could cause memory corruption,
481 but only occurred in non-default configurations (prof_accum:false).
482 - Fix off-by-one backtracing issues (make sure that prof_alloc_prep() is
483 excluded from backtraces).
484 - Fix a prof-related bug in realloc() (only triggered by OOM errors).
485 - Fix prof-related bugs in allocm() and rallocm().
486 - Fix prof_tdata_cleanup() for --disable-tls builds.
487 - Fix a relative include path, to fix objdir builds.
488
Jason Evans4c484812011-07-30 16:59:13 -0700489* 2.2.2 (July 30, 2011)
490
491 Bug fixes:
492 - Fix a build error for --disable-tcache.
493 - Fix assertions in arena_purge() (for real this time).
494 - Add the --with-private-namespace option. This is a workaround for symbol
495 conflicts that can inadvertently arise when using static libraries.
496
Jason Evans7d9ebea2011-03-30 15:01:08 -0700497* 2.2.1 (March 30, 2011)
498
499 Bug fixes:
500 - Implement atomic operations for x86/x64. This fixes compilation failures
501 for versions of gcc that are still in wide use.
502 - Fix an assertion in arena_purge().
503
Jason Evans4bcd9872011-03-22 15:30:22 -0700504* 2.2.0 (March 22, 2011)
505
506 This version incorporates several improvements to algorithms and data
507 structures that tend to reduce fragmentation and increase speed.
508
509 New features:
510 - Add the "stats.cactive" mallctl.
511 - Update pprof (from google-perftools 1.7).
512 - Improve backtracing-related configuration logic, and add the
513 --disable-prof-libgcc option.
514
515 Bug fixes:
516 - Change default symbol visibility from "internal", to "hidden", which
517 decreases the overhead of library-internal function calls.
518 - Fix symbol visibility so that it is also set on OS X.
519 - Fix a build dependency regression caused by the introduction of the .pic.o
520 suffix for PIC object files.
521 - Add missing checks for mutex initialization failures.
522 - Don't use libgcc-based backtracing except on x64, where it is known to work.
523 - Fix deadlocks on OS X that were due to memory allocation in
524 pthread_mutex_lock().
525 - Heap profiling-specific fixes:
526 + Fix memory corruption due to integer overflow in small region index
527 computation, when using a small enough sample interval that profiling
528 context pointers are stored in small run headers.
529 + Fix a bootstrap ordering bug that only occurred with TLS disabled.
530 + Fix a rallocm() rsize bug.
531 + Fix error detection bugs for aligned memory allocation.
532
Jason Evans0e4d0d12011-03-14 16:41:03 -0700533* 2.1.3 (March 14, 2011)
534
535 Bug fixes:
536 - Fix a cpp logic regression (due to the "thread.{de,}allocatedp" mallctl fix
537 for OS X in 2.1.2).
538 - Fix a "thread.arena" mallctl bug.
539 - Fix a thread cache stats merging bug.
540
je6e56e5e2011-03-02 11:23:41 -0800541* 2.1.2 (March 2, 2011)
542
543 Bug fixes:
544 - Fix "thread.{de,}allocatedp" mallctl for OS X.
545 - Add missing jemalloc.a to build system.
546
Jason Evans63692862011-02-07 22:48:35 -0800547* 2.1.1 (January 31, 2011)
Jason Evansada55b22011-01-31 20:08:56 -0800548
Jason Evans63692862011-02-07 22:48:35 -0800549 Bug fixes:
Jason Evansada55b22011-01-31 20:08:56 -0800550 - Fix aligned huge reallocation (affected allocm()).
551 - Fix the ALLOCM_LG_ALIGN macro definition.
552 - Fix a heap dumping deadlock.
553 - Fix a "thread.arena" mallctl bug.
554
Jason Evans63692862011-02-07 22:48:35 -0800555* 2.1.0 (December 3, 2010)
Jason Evans0e8d3d22010-12-03 17:02:16 -0800556
557 This version incorporates some optimizations that can't quite be considered
558 bug fixes.
559
560 New features:
561 - Use Linux's mremap(2) for huge object reallocation when possible.
562 - Avoid locking in mallctl*() when possible.
563 - Add the "thread.[de]allocatedp" mallctl's.
564 - Convert the manual page source from roff to DocBook, and generate both roff
565 and HTML manuals.
566
567 Bug fixes:
568 - Fix a crash due to incorrect bootstrap ordering. This only impacted
569 --enable-debug --enable-dss configurations.
570 - Fix a minor statistics bug for mallctl("swap.avail", ...).
571
Jason Evans63692862011-02-07 22:48:35 -0800572* 2.0.1 (October 29, 2010)
Jason Evans53806fe2010-10-29 20:16:39 -0700573
574 Bug fixes:
575 - Fix a race condition in heap profiling that could cause undefined behavior
Jason Evansada55b22011-01-31 20:08:56 -0800576 if "opt.prof_accum" were disabled.
Jason Evans53806fe2010-10-29 20:16:39 -0700577 - Add missing mutex unlocks for some OOM error paths in the heap profiling
578 code.
579 - Fix a compilation error for non-C99 builds.
580
Jason Evans63692862011-02-07 22:48:35 -0800581* 2.0.0 (October 24, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700582
583 This version focuses on the experimental *allocm() API, and on improved
584 run-time configuration/introspection. Nonetheless, numerous performance
585 improvements are also included.
586
587 New features:
Jason Evansb059a532010-10-24 16:54:40 -0700588 - Implement the experimental {,r,s,d}allocm() API, which provides a superset
589 of the functionality available via malloc(), calloc(), posix_memalign(),
590 realloc(), malloc_usable_size(), and free(). These functions can be used to
591 allocate/reallocate aligned zeroed memory, ask for optional extra memory
592 during reallocation, prevent object movement during reallocation, etc.
593 - Replace JEMALLOC_OPTIONS/JEMALLOC_PROF_PREFIX with MALLOC_CONF, which is
594 more human-readable, and more flexible. For example:
595 JEMALLOC_OPTIONS=AJP
596 is now:
597 MALLOC_CONF=abort:true,fill:true,stats_print:true
598 - Port to Apple OS X. Sponsored by Mozilla.
599 - Make it possible for the application to control thread-->arena mappings via
600 the "thread.arena" mallctl.
601 - Add compile-time support for all TLS-related functionality via pthreads TSD.
602 This is mainly of interest for OS X, which does not support TLS, but has a
603 TSD implementation with similar performance.
604 - Override memalign() and valloc() if they are provided by the system.
605 - Add the "arenas.purge" mallctl, which can be used to synchronously purge all
606 dirty unused pages.
607 - Make cumulative heap profiling data optional, so that it is possible to
608 limit the amount of memory consumed by heap profiling data structures.
609 - Add per thread allocation counters that can be accessed via the
610 "thread.allocated" and "thread.deallocated" mallctls.
Jason Evans379f8472010-10-24 16:18:29 -0700611
612 Incompatible changes:
Jason Evansb059a532010-10-24 16:54:40 -0700613 - Remove JEMALLOC_OPTIONS and malloc_options (see MALLOC_CONF above).
614 - Increase default backtrace depth from 4 to 128 for heap profiling.
615 - Disable interval-based profile dumps by default.
Jason Evans379f8472010-10-24 16:18:29 -0700616
617 Bug fixes:
618 - Remove bad assertions in fork handler functions. These assertions could
619 cause aborts for some combinations of configure settings.
620 - Fix strerror_r() usage to deal with non-standard semantics in GNU libc.
621 - Fix leak context reporting. This bug tended to cause the number of contexts
622 to be underreported (though the reported number of objects and bytes were
623 correct).
624 - Fix a realloc() bug for large in-place growing reallocation. This bug could
625 cause memory corruption, but it was hard to trigger.
626 - Fix an allocation bug for small allocations that could be triggered if
627 multiple threads raced to create a new run of backing pages.
628 - Enhance the heap profiler to trigger samples based on usable size, rather
629 than request size.
630 - Fix a heap profiling bug due to sometimes losing track of requested object
631 size for sampled objects.
632
Jason Evans63692862011-02-07 22:48:35 -0800633* 1.0.3 (August 12, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700634
635 Bug fixes:
636 - Fix the libunwind-based implementation of stack backtracing (used for heap
637 profiling). This bug could cause zero-length backtraces to be reported.
638 - Add a missing mutex unlock in library initialization code. If multiple
639 threads raced to initialize malloc, some of them could end up permanently
640 blocked.
641
Jason Evans63692862011-02-07 22:48:35 -0800642* 1.0.2 (May 11, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700643
644 Bug fixes:
645 - Fix junk filling of large objects, which could cause memory corruption.
646 - Add MAP_NORESERVE support for chunk mapping, because otherwise virtual
647 memory limits could cause swap file configuration to fail. Contributed by
648 Jordan DeLong.
649
Jason Evans63692862011-02-07 22:48:35 -0800650* 1.0.1 (April 14, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700651
652 Bug fixes:
653 - Fix compilation when --enable-fill is specified.
654 - Fix threads-related profiling bugs that affected accuracy and caused memory
655 to be leaked during thread exit.
656 - Fix dirty page purging race conditions that could cause crashes.
657 - Fix crash in tcache flushing code during thread destruction.
658
Jason Evans63692862011-02-07 22:48:35 -0800659* 1.0.0 (April 11, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700660
661 This release focuses on speed and run-time introspection. Numerous
662 algorithmic improvements make this release substantially faster than its
663 predecessors.
664
665 New features:
666 - Implement autoconf-based configuration system.
667 - Add mallctl*(), for the purposes of introspection and run-time
668 configuration.
669 - Make it possible for the application to manually flush a thread's cache, via
670 the "tcache.flush" mallctl.
671 - Base maximum dirty page count on proportion of active memory.
672 - Compute various addtional run-time statistics, including per size class
673 statistics for large objects.
674 - Expose malloc_stats_print(), which can be called repeatedly by the
675 application.
676 - Simplify the malloc_message() signature to only take one string argument,
677 and incorporate an opaque data pointer argument for use by the application
678 in combination with malloc_stats_print().
679 - Add support for allocation backed by one or more swap files, and allow the
680 application to disable over-commit if swap files are in use.
681 - Implement allocation profiling and leak checking.
682
683 Removed features:
684 - Remove the dynamic arena rebalancing code, since thread-specific caching
685 reduces its utility.
686
687 Bug fixes:
688 - Modify chunk allocation to work when address space layout randomization
689 (ASLR) is in use.
690 - Fix thread cleanup bugs related to TLS destruction.
691 - Handle 0-size allocation requests in posix_memalign().
692 - Fix a chunk leak. The leaked chunks were never touched, so this impacted
693 virtual memory usage, but not physical memory usage.
694
Jason Evans63692862011-02-07 22:48:35 -0800695* linux_2008082[78]a (August 27/28, 2008)
Jason Evans379f8472010-10-24 16:18:29 -0700696
697 These snapshot releases are the simple result of incorporating Linux-specific
698 support into the FreeBSD malloc sources.
699
700--------------------------------------------------------------------------------
701vim:filetype=text:textwidth=80