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