blob: 5f2cc4557f36a4d3441439ee15cbe7c3af2f0c5a [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
6 http://www.canonware.com/cgi-bin/gitweb.cgi?p=jemalloc.git
7 git://canonware.com/jemalloc.git
8
Jason Evansbbe29d32013-01-30 15:03:11 -08009* 3.x.x (XXX Not yet released)
10
11 Bug fixes:
12 - Fix TLS-related memory corruption that could occur during thread exit if the
13 thread never allocated memory. Only the quarantine and prof facilities were
14 susceptible.
Jason Evansd0e942e2013-01-31 14:42:41 -080015 - Fix two quarantine bugs:
16 + Internal reallocation of the quarantined object array leaked the old
17 array.
18 + Reallocation failure for internal reallocation of the quarantined object
19 array (very unlikely) resulted in memory corruption.
Jason Evansbbe29d32013-01-30 15:03:11 -080020
Jason Evansb5681fb2013-01-22 22:45:09 -080021* 3.3.0 (January 23, 2013)
22
23 This version includes a few minor performance improvements in addition to the
24 listed new features and bug fixes.
25
26 New features:
27 - Add clipping support to lg_chunk option processing.
28 - Add the --enable-ivsalloc option.
29 - Add the --without-export option.
30 - Add the --disable-zone-allocator option.
Jason Evans6eb84fb2012-11-29 22:13:04 -080031
32 Bug fixes:
33 - Fix "arenas.extend" mallctl to output the number of arenas.
Jason Evans12711852012-12-12 10:12:18 -080034 - Fix chunk_recycyle() to unconditionally inform Valgrind that returned memory
35 is undefined.
Jason Evansb5681fb2013-01-22 22:45:09 -080036 - Fix build break on FreeBSD related to alloca.h.
Jason Evans6eb84fb2012-11-29 22:13:04 -080037
Jason Evans556ddc72012-11-07 15:16:29 -080038* 3.2.0 (November 9, 2012)
39
40 In addition to a couple of bug fixes, this version modifies page run
41 allocation and dirty page purging algorithms in order to better control
42 page-level virtual memory fragmentation.
Jason Evans12efefb2012-10-16 22:06:56 -070043
Jason Evanse3d13062012-10-30 15:42:37 -070044 Incompatible changes:
Jason Evans556ddc72012-11-07 15:16:29 -080045 - Change the "opt.lg_dirty_mult" default from 5 to 3 (32:1 to 8:1).
Jason Evanse3d13062012-10-30 15:42:37 -070046
Jason Evans12efefb2012-10-16 22:06:56 -070047 Bug fixes:
48 - Fix dss/mmap allocation precedence code to use recyclable mmap memory only
49 after primary dss allocation fails.
Jason Evanse3d13062012-10-30 15:42:37 -070050 - Fix deadlock in the "arenas.purge" mallctl. This regression was introduced
51 in 3.1.0 by the addition of the "arena.<i>.purge" mallctl.
Jason Evans12efefb2012-10-16 22:06:56 -070052
Jason Evans2b592b02012-10-16 10:12:40 -070053* 3.1.0 (October 16, 2012)
Jason Evans3860eac2012-05-15 13:53:21 -070054
Jason Evans781fe752012-05-15 14:48:14 -070055 New features:
56 - Auto-detect whether running inside Valgrind, thus removing the need to
57 manually specify MALLOC_CONF=valgrind:true.
Jason Evans2b592b02012-10-16 10:12:40 -070058 - Add the "arenas.extend" mallctl, which allows applications to create
59 manually managed arenas.
60 - Add the ALLOCM_ARENA() flag for {,r,d}allocm().
61 - Add the "opt.dss", "arena.<i>.dss", and "stats.arenas.<i>.dss" mallctls,
62 which provide control over dss/mmap precedence.
63 - Add the "arena.<i>.purge" mallctl, which obsoletes "arenas.purge".
64 - Define LG_QUANTUM for hppa.
Jason Evans781fe752012-05-15 14:48:14 -070065
Jason Evans174b70e2012-05-15 23:31:53 -070066 Incompatible changes:
67 - Disable tcache by default if running inside Valgrind, in order to avoid
68 making unallocated objects appear reachable to Valgrind.
Jason Evans2b592b02012-10-16 10:12:40 -070069 - Drop const from malloc_usable_size() argument on Linux.
Jason Evans174b70e2012-05-15 23:31:53 -070070
Jason Evans3860eac2012-05-15 13:53:21 -070071 Bug fixes:
72 - Fix heap profiling crash if sampled object is freed via realloc(p, 0).
Jason Evans5c710ce2012-05-23 16:09:22 -070073 - Remove const from __*_hook variable declarations, so that glibc can modify
74 them during process forking.
Jason Evans2b592b02012-10-16 10:12:40 -070075 - Fix mlockall(2)/madvise(2) interaction.
76 - Fix fork(2)-related deadlocks.
77 - Fix error return value for "thread.tcache.enabled" mallctl.
Jason Evans3860eac2012-05-15 13:53:21 -070078
Jason Evanscbb71ca2012-05-11 17:00:20 -070079* 3.0.0 (May 11, 2012)
Jason Evans9ef7f5d2012-04-16 18:16:48 -070080
81 Although this version adds some major new features, the primary focus is on
82 internal code cleanup that facilitates maintainability and portability, most
83 of which is not reflected in the ChangeLog. This is the first release to
84 incorporate substantial contributions from numerous other developers, and the
85 result is a more broadly useful allocator (see the git revision history for
86 contribution details). Note that the license has been unified, thanks to
87 Facebook granting a license under the same terms as the other copyright
88 holders (see COPYING).
89
90 New features:
91 - Implement Valgrind support, redzones, and quarantine.
Jason Evans079687b2012-04-23 12:49:23 -070092 - Add support for additional platforms:
Jason Evans9ef7f5d2012-04-16 18:16:48 -070093 + FreeBSD
94 + Mac OS X Lion
Jason Evans40f514f2012-04-22 16:21:06 -070095 + MinGW
Jason Evanscbb71ca2012-05-11 17:00:20 -070096 + Windows (no support yet for replacing the system malloc)
Jason Evans9ef7f5d2012-04-16 18:16:48 -070097 - Add support for additional architectures:
98 + MIPS
99 + SH4
100 + Tilera
101 - Add support for cross compiling.
102 - Add nallocm(), which rounds a request size up to the nearest size class
103 without actually allocating.
104 - Implement aligned_alloc() (blame C11).
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700105 - Add the "thread.tcache.enabled" mallctl.
Jason Evans0b25fe72012-04-17 16:39:33 -0700106 - Add the "opt.prof_final" mallctl.
Jason Evans25a000e2012-04-17 15:49:30 -0700107 - Update pprof (from gperftools 2.0).
Jason Evanscbb71ca2012-05-11 17:00:20 -0700108 - Add the --with-mangling option.
109 - Add the --disable-experimental option.
110 - Add the --disable-munmap option, and make it the default on Linux.
111 - Add the --enable-mremap option, which disables use of mremap(2) by default.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700112
113 Incompatible changes:
114 - Enable stats by default.
115 - Enable fill by default.
116 - Disable lazy locking by default.
117 - Rename the "tcache.flush" mallctl to "thread.tcache.flush".
118 - Rename the "arenas.pagesize" mallctl to "arenas.page".
Jason Evans0b25fe72012-04-17 16:39:33 -0700119 - Change the "opt.lg_prof_sample" default from 0 to 19 (1 B to 512 KiB).
120 - Change the "opt.prof_accum" default from true to false.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700121
122 Removed features:
123 - Remove the swap feature, including the "config.swap", "swap.avail",
124 "swap.prezeroed", "swap.nfds", and "swap.fds" mallctls.
125 - Remove highruns statistics, including the
126 "stats.arenas.<i>.bins.<j>.highruns" and
127 "stats.arenas.<i>.lruns.<j>.highruns" mallctls.
128 - As part of small size class refactoring, remove the "opt.lg_[qc]space_max",
129 "arenas.cacheline", "arenas.subpage", "arenas.[tqcs]space_{min,max}", and
130 "arenas.[tqcs]bins" mallctls.
131 - Remove the "arenas.chunksize" mallctl.
132 - Remove the "opt.lg_prof_tcmax" option.
133 - Remove the "opt.lg_prof_bt_max" option.
134 - Remove the "opt.lg_tcache_gc_sweep" option.
135 - Remove the --disable-tiny option, including the "config.tiny" mallctl.
136 - Remove the --enable-dynamic-page-shift configure option.
137 - Remove the --enable-sysv configure option.
138
139 Bug fixes:
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700140 - Fix a statistics-related bug in the "thread.arena" mallctl that could cause
141 invalid statistics and crashes.
Jason Evans079687b2012-04-23 12:49:23 -0700142 - Work around TLS deallocation via free() on Linux. This bug could cause
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700143 write-after-free memory corruption.
Jason Evans52386b22012-04-22 16:00:11 -0700144 - Fix a potential deadlock that could occur during interval- and
145 growth-triggered heap profile dumps.
Jason Evansd8ceef62012-05-10 20:59:39 -0700146 - Fix large calloc() zeroing bugs due to dropping chunk map unzeroed flags.
Jason Evans8f0e0eb2012-04-21 13:33:48 -0700147 - Fix chunk_alloc_dss() to stop claiming memory is zeroed. This bug could
148 cause memory corruption and crashes with --enable-dss specified.
Jason Evans52386b22012-04-22 16:00:11 -0700149 - Fix fork-related bugs that could cause deadlock in children between fork
150 and exec.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700151 - Fix malloc_stats_print() to honor 'b' and 'l' in the opts parameter.
152 - Fix realloc(p, 0) to act like free(p).
153 - Do not enforce minimum alignment in memalign().
154 - Check for NULL pointer in malloc_usable_size().
Jason Evans52386b22012-04-22 16:00:11 -0700155 - Fix an off-by-one heap profile statistics bug that could be observed in
156 interval- and growth-triggered heap profiles.
Jason Evans6b9ed672012-04-25 13:12:46 -0700157 - Fix the "epoch" mallctl to update cached stats even if the passed in epoch
158 is 0.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700159 - Fix bin->runcur management to fix a layout policy bug. This bug did not
160 affect correctness.
161 - Fix a bug in choose_arena_hard() that potentially caused more arenas to be
162 initialized than necessary.
163 - Add missing "opt.lg_tcache_max" mallctl implementation.
164 - Use glibc allocator hooks to make mixed allocator usage less likely.
165 - Fix build issues for --disable-tcache.
Jason Evans918d6e22012-04-20 13:42:21 -0700166 - Don't mangle pthread_create() when --with-private-namespace is specified.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700167
Jason Evansb3bd8852011-11-14 17:12:45 -0800168* 2.2.5 (November 14, 2011)
169
170 Bug fixes:
171 - Fix huge_ralloc() race when using mremap(2). This is a serious bug that
172 could cause memory corruption and/or crashes.
173 - Fix huge_ralloc() to maintain chunk statistics.
174 - Fix malloc_stats_print(..., "a") output.
175
Jason Evansca9ee1a2011-11-05 21:46:23 -0700176* 2.2.4 (November 5, 2011)
177
178 Bug fixes:
179 - Initialize arenas_tsd before using it. This bug existed for 2.2.[0-3], as
180 well as for --disable-tls builds in earlier releases.
181 - Do not assume a 4 KiB page size in test/rallocm.c.
182
Jason Evansc67e4fd2011-08-31 15:19:13 -0700183* 2.2.3 (August 31, 2011)
184
185 This version fixes numerous bugs related to heap profiling.
186
187 Bug fixes:
188 - Fix a prof-related race condition. This bug could cause memory corruption,
189 but only occurred in non-default configurations (prof_accum:false).
190 - Fix off-by-one backtracing issues (make sure that prof_alloc_prep() is
191 excluded from backtraces).
192 - Fix a prof-related bug in realloc() (only triggered by OOM errors).
193 - Fix prof-related bugs in allocm() and rallocm().
194 - Fix prof_tdata_cleanup() for --disable-tls builds.
195 - Fix a relative include path, to fix objdir builds.
196
Jason Evans4c484812011-07-30 16:59:13 -0700197* 2.2.2 (July 30, 2011)
198
199 Bug fixes:
200 - Fix a build error for --disable-tcache.
201 - Fix assertions in arena_purge() (for real this time).
202 - Add the --with-private-namespace option. This is a workaround for symbol
203 conflicts that can inadvertently arise when using static libraries.
204
Jason Evans7d9ebea2011-03-30 15:01:08 -0700205* 2.2.1 (March 30, 2011)
206
207 Bug fixes:
208 - Implement atomic operations for x86/x64. This fixes compilation failures
209 for versions of gcc that are still in wide use.
210 - Fix an assertion in arena_purge().
211
Jason Evans4bcd9872011-03-22 15:30:22 -0700212* 2.2.0 (March 22, 2011)
213
214 This version incorporates several improvements to algorithms and data
215 structures that tend to reduce fragmentation and increase speed.
216
217 New features:
218 - Add the "stats.cactive" mallctl.
219 - Update pprof (from google-perftools 1.7).
220 - Improve backtracing-related configuration logic, and add the
221 --disable-prof-libgcc option.
222
223 Bug fixes:
224 - Change default symbol visibility from "internal", to "hidden", which
225 decreases the overhead of library-internal function calls.
226 - Fix symbol visibility so that it is also set on OS X.
227 - Fix a build dependency regression caused by the introduction of the .pic.o
228 suffix for PIC object files.
229 - Add missing checks for mutex initialization failures.
230 - Don't use libgcc-based backtracing except on x64, where it is known to work.
231 - Fix deadlocks on OS X that were due to memory allocation in
232 pthread_mutex_lock().
233 - Heap profiling-specific fixes:
234 + Fix memory corruption due to integer overflow in small region index
235 computation, when using a small enough sample interval that profiling
236 context pointers are stored in small run headers.
237 + Fix a bootstrap ordering bug that only occurred with TLS disabled.
238 + Fix a rallocm() rsize bug.
239 + Fix error detection bugs for aligned memory allocation.
240
Jason Evans0e4d0d12011-03-14 16:41:03 -0700241* 2.1.3 (March 14, 2011)
242
243 Bug fixes:
244 - Fix a cpp logic regression (due to the "thread.{de,}allocatedp" mallctl fix
245 for OS X in 2.1.2).
246 - Fix a "thread.arena" mallctl bug.
247 - Fix a thread cache stats merging bug.
248
je6e56e5e2011-03-02 11:23:41 -0800249* 2.1.2 (March 2, 2011)
250
251 Bug fixes:
252 - Fix "thread.{de,}allocatedp" mallctl for OS X.
253 - Add missing jemalloc.a to build system.
254
Jason Evans63692862011-02-07 22:48:35 -0800255* 2.1.1 (January 31, 2011)
Jason Evansada55b22011-01-31 20:08:56 -0800256
Jason Evans63692862011-02-07 22:48:35 -0800257 Bug fixes:
Jason Evansada55b22011-01-31 20:08:56 -0800258 - Fix aligned huge reallocation (affected allocm()).
259 - Fix the ALLOCM_LG_ALIGN macro definition.
260 - Fix a heap dumping deadlock.
261 - Fix a "thread.arena" mallctl bug.
262
Jason Evans63692862011-02-07 22:48:35 -0800263* 2.1.0 (December 3, 2010)
Jason Evans0e8d3d22010-12-03 17:02:16 -0800264
265 This version incorporates some optimizations that can't quite be considered
266 bug fixes.
267
268 New features:
269 - Use Linux's mremap(2) for huge object reallocation when possible.
270 - Avoid locking in mallctl*() when possible.
271 - Add the "thread.[de]allocatedp" mallctl's.
272 - Convert the manual page source from roff to DocBook, and generate both roff
273 and HTML manuals.
274
275 Bug fixes:
276 - Fix a crash due to incorrect bootstrap ordering. This only impacted
277 --enable-debug --enable-dss configurations.
278 - Fix a minor statistics bug for mallctl("swap.avail", ...).
279
Jason Evans63692862011-02-07 22:48:35 -0800280* 2.0.1 (October 29, 2010)
Jason Evans53806fe2010-10-29 20:16:39 -0700281
282 Bug fixes:
283 - Fix a race condition in heap profiling that could cause undefined behavior
Jason Evansada55b22011-01-31 20:08:56 -0800284 if "opt.prof_accum" were disabled.
Jason Evans53806fe2010-10-29 20:16:39 -0700285 - Add missing mutex unlocks for some OOM error paths in the heap profiling
286 code.
287 - Fix a compilation error for non-C99 builds.
288
Jason Evans63692862011-02-07 22:48:35 -0800289* 2.0.0 (October 24, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700290
291 This version focuses on the experimental *allocm() API, and on improved
292 run-time configuration/introspection. Nonetheless, numerous performance
293 improvements are also included.
294
295 New features:
Jason Evansb059a532010-10-24 16:54:40 -0700296 - Implement the experimental {,r,s,d}allocm() API, which provides a superset
297 of the functionality available via malloc(), calloc(), posix_memalign(),
298 realloc(), malloc_usable_size(), and free(). These functions can be used to
299 allocate/reallocate aligned zeroed memory, ask for optional extra memory
300 during reallocation, prevent object movement during reallocation, etc.
301 - Replace JEMALLOC_OPTIONS/JEMALLOC_PROF_PREFIX with MALLOC_CONF, which is
302 more human-readable, and more flexible. For example:
303 JEMALLOC_OPTIONS=AJP
304 is now:
305 MALLOC_CONF=abort:true,fill:true,stats_print:true
306 - Port to Apple OS X. Sponsored by Mozilla.
307 - Make it possible for the application to control thread-->arena mappings via
308 the "thread.arena" mallctl.
309 - Add compile-time support for all TLS-related functionality via pthreads TSD.
310 This is mainly of interest for OS X, which does not support TLS, but has a
311 TSD implementation with similar performance.
312 - Override memalign() and valloc() if they are provided by the system.
313 - Add the "arenas.purge" mallctl, which can be used to synchronously purge all
314 dirty unused pages.
315 - Make cumulative heap profiling data optional, so that it is possible to
316 limit the amount of memory consumed by heap profiling data structures.
317 - Add per thread allocation counters that can be accessed via the
318 "thread.allocated" and "thread.deallocated" mallctls.
Jason Evans379f8472010-10-24 16:18:29 -0700319
320 Incompatible changes:
Jason Evansb059a532010-10-24 16:54:40 -0700321 - Remove JEMALLOC_OPTIONS and malloc_options (see MALLOC_CONF above).
322 - Increase default backtrace depth from 4 to 128 for heap profiling.
323 - Disable interval-based profile dumps by default.
Jason Evans379f8472010-10-24 16:18:29 -0700324
325 Bug fixes:
326 - Remove bad assertions in fork handler functions. These assertions could
327 cause aborts for some combinations of configure settings.
328 - Fix strerror_r() usage to deal with non-standard semantics in GNU libc.
329 - Fix leak context reporting. This bug tended to cause the number of contexts
330 to be underreported (though the reported number of objects and bytes were
331 correct).
332 - Fix a realloc() bug for large in-place growing reallocation. This bug could
333 cause memory corruption, but it was hard to trigger.
334 - Fix an allocation bug for small allocations that could be triggered if
335 multiple threads raced to create a new run of backing pages.
336 - Enhance the heap profiler to trigger samples based on usable size, rather
337 than request size.
338 - Fix a heap profiling bug due to sometimes losing track of requested object
339 size for sampled objects.
340
Jason Evans63692862011-02-07 22:48:35 -0800341* 1.0.3 (August 12, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700342
343 Bug fixes:
344 - Fix the libunwind-based implementation of stack backtracing (used for heap
345 profiling). This bug could cause zero-length backtraces to be reported.
346 - Add a missing mutex unlock in library initialization code. If multiple
347 threads raced to initialize malloc, some of them could end up permanently
348 blocked.
349
Jason Evans63692862011-02-07 22:48:35 -0800350* 1.0.2 (May 11, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700351
352 Bug fixes:
353 - Fix junk filling of large objects, which could cause memory corruption.
354 - Add MAP_NORESERVE support for chunk mapping, because otherwise virtual
355 memory limits could cause swap file configuration to fail. Contributed by
356 Jordan DeLong.
357
Jason Evans63692862011-02-07 22:48:35 -0800358* 1.0.1 (April 14, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700359
360 Bug fixes:
361 - Fix compilation when --enable-fill is specified.
362 - Fix threads-related profiling bugs that affected accuracy and caused memory
363 to be leaked during thread exit.
364 - Fix dirty page purging race conditions that could cause crashes.
365 - Fix crash in tcache flushing code during thread destruction.
366
Jason Evans63692862011-02-07 22:48:35 -0800367* 1.0.0 (April 11, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700368
369 This release focuses on speed and run-time introspection. Numerous
370 algorithmic improvements make this release substantially faster than its
371 predecessors.
372
373 New features:
374 - Implement autoconf-based configuration system.
375 - Add mallctl*(), for the purposes of introspection and run-time
376 configuration.
377 - Make it possible for the application to manually flush a thread's cache, via
378 the "tcache.flush" mallctl.
379 - Base maximum dirty page count on proportion of active memory.
380 - Compute various addtional run-time statistics, including per size class
381 statistics for large objects.
382 - Expose malloc_stats_print(), which can be called repeatedly by the
383 application.
384 - Simplify the malloc_message() signature to only take one string argument,
385 and incorporate an opaque data pointer argument for use by the application
386 in combination with malloc_stats_print().
387 - Add support for allocation backed by one or more swap files, and allow the
388 application to disable over-commit if swap files are in use.
389 - Implement allocation profiling and leak checking.
390
391 Removed features:
392 - Remove the dynamic arena rebalancing code, since thread-specific caching
393 reduces its utility.
394
395 Bug fixes:
396 - Modify chunk allocation to work when address space layout randomization
397 (ASLR) is in use.
398 - Fix thread cleanup bugs related to TLS destruction.
399 - Handle 0-size allocation requests in posix_memalign().
400 - Fix a chunk leak. The leaked chunks were never touched, so this impacted
401 virtual memory usage, but not physical memory usage.
402
Jason Evans63692862011-02-07 22:48:35 -0800403* linux_2008082[78]a (August 27/28, 2008)
Jason Evans379f8472010-10-24 16:18:29 -0700404
405 These snapshot releases are the simple result of incorporating Linux-specific
406 support into the FreeBSD malloc sources.
407
408--------------------------------------------------------------------------------
409vim:filetype=text:textwidth=80