blob: 118df96f02ce4500af720643f33856110ed8c8ad [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 Evans213667f2016-11-04 00:02:43 -07007* 4.3.0 (November 4, 2016)
Jason Evans1ceae2f2016-11-02 19:45:01 -07008
9 This is the first release that passes the test suite for multiple Windows
10 configurations, thanks in large part to @glandium setting up continuous
11 integration via AppVeyor (and Travis CI for Linux and OS X).
12
13 New features:
14 - Add "J" (JSON) support to malloc_stats_print(). (@jasone)
15 - Add Cray compiler support. (@ronawho)
16
17 Optimizations:
18 - Add/use adaptive spinning for bootstrapping and radix tree node
19 initialization. (@jasone)
20
21 Bug fixes:
Jason Evans213667f2016-11-04 00:02:43 -070022 - Fix large allocation to search starting in the optimal size class heap,
23 which can substantially reduce virtual memory churn and fragmentation. This
24 regression was first released in 4.0.0. (@mjp41, @jasone)
Jason Evans1ceae2f2016-11-02 19:45:01 -070025 - Fix stats.arenas.<i>.nthreads accounting. (@interwq)
26 - Fix and simplify decay-based purging. (@jasone)
27 - Make DSS (sbrk(2)-related) operations lockless, which resolves potential
28 deadlocks during thread exit. (@jasone)
29 - Fix over-sized allocation of radix tree leaf nodes. (@mjp41, @ogaun,
30 @jasone)
Jason Evans23f04ef2016-11-04 15:15:24 -070031 - Fix over-sized allocation of arena_t (plus associated stats) data
32 structures. (@jasone, @interwq)
Jason Evans1ceae2f2016-11-02 19:45:01 -070033 - Fix EXTRA_CFLAGS to not affect configuration. (@jasone)
34 - Fix a Valgrind integration bug. (@ronawho)
35 - Disallow 0x5a junk filling when running in Valgrind. (@jasone)
36 - Fix a file descriptor leak on Linux. This regression was first released in
Jason Evans213667f2016-11-04 00:02:43 -070037 4.2.0. (@vsarunas, @jasone)
Jason Evans1ceae2f2016-11-02 19:45:01 -070038 - Fix static linking of jemalloc with glibc. (@djwatson)
39 - Use syscall(2) rather than {open,read,close}(2) during boot on Linux. This
40 works around other libraries' system call wrappers performing reentrant
Jason Evans213667f2016-11-04 00:02:43 -070041 allocation. (@kspinka, @Whissi, @jasone)
Jason Evans1ceae2f2016-11-02 19:45:01 -070042 - Fix OS X default zone replacement to work with OS X 10.12. (@glandium,
43 @jasone)
Jason Evans213667f2016-11-04 00:02:43 -070044 - Fix cached memory management to avoid needless commit/decommit operations
45 during purging, which resolves permanent virtual memory map fragmentation
46 issues on Windows. (@mjp41, @jasone)
Jason Evans1ceae2f2016-11-02 19:45:01 -070047 - Fix TSD fetches to avoid (recursive) allocation. This is relevant to
48 non-TLS and Windows configurations. (@jasone)
49 - Fix malloc_conf overriding to work on Windows. (@jasone)
50 - Forcibly disable lazy-lock on Windows (was forcibly *enabled*). (@jasone)
51
Jason Evans5271b672016-06-07 14:40:43 -070052* 4.2.1 (June 8, 2016)
53
54 Bug fixes:
55 - Fix bootstrapping issues for configurations that require allocation during
56 tsd initialization (e.g. --disable-tls). (@cferris1000, @jasone)
57 - Fix gettimeofday() version of nstime_update(). (@ronawho)
58 - Fix Valgrind regressions in calloc() and chunk_alloc_wrapper(). (@ronawho)
59 - Fix potential VM map fragmentation regression. (@jasone)
60 - Fix opt_zero-triggered in-place huge reallocation zeroing. (@jasone)
61 - Fix heap profiling context leaks in reallocation edge cases. (@jasone)
62
Jason Evans09f85852016-05-12 14:23:50 -070063* 4.2.0 (May 12, 2016)
Jason Evans62c217e2016-05-06 15:22:32 -070064
65 New features:
66 - Add the arena.<i>.reset mallctl, which makes it possible to discard all of
Jason Evansc19b48f2016-05-12 15:06:50 -070067 an arena's allocations in a single operation. (@jasone)
Jason Evans62c217e2016-05-06 15:22:32 -070068 - Add the stats.retained and stats.arenas.<i>.retained statistics. (@jasone)
69 - Add the --with-version configure option. (@jasone)
70 - Support --with-lg-page values larger than actual page size. (@jasone)
71
72 Optimizations:
73 - Use pairing heaps rather than red-black trees for various hot data
74 structures. (@djwatson, @jasone)
75 - Streamline fast paths of rtree operations. (@jasone)
76 - Optimize the fast paths of calloc() and [m,d,sd]allocx(). (@jasone)
77 - Decommit unused virtual memory if the OS does not overcommit. (@jasone)
78 - Specify MAP_NORESERVE on Linux if [heuristic] overcommit is active, in order
79 to avoid unfortunate interactions during fork(2). (@jasone)
80
81 Bug fixes:
Jason Evans7790a0b2016-05-11 00:52:59 -070082 - Fix chunk accounting related to triggering gdump profiles. (@jasone)
Jason Evans62c217e2016-05-06 15:22:32 -070083 - Link against librt for clock_gettime(2) if glibc < 2.17. (@jasone)
84 - Scale leak report summary according to sampling probability. (@jasone)
85
Jason Evans21cda0d2016-05-03 12:11:36 -070086* 4.1.1 (May 3, 2016)
87
88 This bugfix release resolves a variety of mostly minor issues, though the
89 bitmap fix is critical for 64-bit Windows.
90
91 Bug fixes:
92 - Fix the linear scan version of bitmap_sfu() to shift by the proper amount
93 even when sizeof(long) is not the same as sizeof(void *), as on 64-bit
94 Windows. (@jasone)
95 - Fix hashing functions to avoid unaligned memory accesses (and resulting
96 crashes). This is relevant at least to some ARM-based platforms.
97 (@rkmisra)
98 - Fix fork()-related lock rank ordering reversals. These reversals were
99 unlikely to cause deadlocks in practice except when heap profiling was
100 enabled and active. (@jasone)
101 - Fix various chunk leaks in OOM code paths. (@jasone)
102 - Fix malloc_stats_print() to print opt.narenas correctly. (@jasone)
Jason Evans7ba6e742016-05-03 17:46:07 -0700103 - Fix MSVC-specific build/test issues. (@rustyx, @yuslepukhin)
Jason Evans21cda0d2016-05-03 12:11:36 -0700104 - Fix a variety of test failures that were due to test fragility rather than
105 core bugs. (@jasone)
106
Jason Evans3a342612016-02-28 14:52:17 -0800107* 4.1.0 (February 28, 2016)
Jason Evans14be4a72016-02-26 21:00:02 -0800108
109 This release is primarily about optimizations, but it also incorporates a lot
110 of portability-motivated refactoring and enhancements. Many people worked on
111 this release, to an extent that even with the omission here of minor changes
112 (see git revision history), and of the people who reported and diagnosed
113 issues, so much of the work was contributed that starting with this release,
114 changes are annotated with author credits to help reflect the collaborative
115 effort involved.
116
117 New features:
118 - Implement decay-based unused dirty page purging, a major optimization with
119 mallctl API impact. This is an alternative to the existing ratio-based
120 unused dirty page purging, and is intended to eventually become the sole
121 purging mechanism. New mallctls:
122 + opt.purge
123 + opt.decay_time
124 + arena.<i>.decay
125 + arena.<i>.decay_time
126 + arenas.decay_time
127 + stats.arenas.<i>.decay_time
128 (@jasone, @cevans87)
129 - Add --with-malloc-conf, which makes it possible to embed a default
130 options string during configuration. This was motivated by the desire to
131 specify --with-malloc-conf=purge:decay , since the default must remain
132 purge:ratio until the 5.0.0 release. (@jasone)
Jason Evanse025c512016-02-28 00:01:13 -0800133 - Add MS Visual Studio 2015 support. (@rustyx, @yuslepukhin)
Jason Evans14be4a72016-02-26 21:00:02 -0800134 - Make *allocx() size class overflow behavior defined. The maximum
135 size class is now less than PTRDIFF_MAX to protect applications against
136 numerical overflow, and all allocation functions are guaranteed to indicate
137 errors rather than potentially crashing if the request size exceeds the
138 maximum size class. (@jasone)
Jason Evans14be4a72016-02-26 21:00:02 -0800139 - jeprof:
140 + Add raw heap profile support. (@jasone)
141 + Add --retain and --exclude for backtrace symbol filtering. (@jasone)
142
143 Optimizations:
144 - Optimize the fast path to combine various bootstrapping and configuration
145 checks and execute more streamlined code in the common case. (@interwq)
146 - Use linear scan for small bitmaps (used for small object tracking). In
147 addition to speeding up bitmap operations on 64-bit systems, this reduces
148 allocator metadata overhead by approximately 0.2%. (@djwatson)
149 - Separate arena_avail trees, which substantially speeds up run tree
150 operations. (@djwatson)
151 - Use memoization (boot-time-computed table) for run quantization. Separate
152 arena_avail trees reduced the importance of this optimization. (@jasone)
153 - Attempt mmap-based in-place huge reallocation. This can dramatically speed
154 up incremental huge reallocation. (@jasone)
155
156 Incompatible changes:
157 - Make opt.narenas unsigned rather than size_t. (@jasone)
158
159 Bug fixes:
Jason Evanse025c512016-02-28 00:01:13 -0800160 - Fix stats.cactive accounting regression. (@rustyx, @jasone)
161 - Handle unaligned keys in hash(). This caused problems for some ARM systems.
Jason Evanse3998c62016-03-07 17:55:55 -0800162 (@jasone, @cferris1000)
Jason Evans14be4a72016-02-26 21:00:02 -0800163 - Refactor arenas array. In addition to fixing a fork-related deadlock, this
164 makes arena lookups faster and simpler. (@jasone)
Jason Evans14be4a72016-02-26 21:00:02 -0800165 - Move retained memory allocation out of the default chunk allocation
166 function, to a location that gets executed even if the application installs
167 a custom chunk allocation function. This resolves a virtual memory leak.
168 (@buchgr)
Jason Evanse3998c62016-03-07 17:55:55 -0800169 - Fix a potential tsd cleanup leak. (@cferris1000, @jasone)
Jason Evanse025c512016-02-28 00:01:13 -0800170 - Fix run quantization. In practice this bug had no impact unless
171 applications requested memory with alignment exceeding one page.
172 (@jasone, @djwatson)
Jason Evans14be4a72016-02-26 21:00:02 -0800173 - Fix LinuxThreads-specific bootstrapping deadlock. (Cosmin Paraschiv)
174 - jeprof:
175 + Don't discard curl options if timeout is not defined. (@djwatson)
176 + Detect failed profile fetches. (@djwatson)
Jason Evanse025c512016-02-28 00:01:13 -0800177 - Fix stats.arenas.<i>.{dss,lg_dirty_mult,decay_time,pactive,pdirty} for
178 --disable-stats case. (@jasone)
Jason Evans14be4a72016-02-26 21:00:02 -0800179
Jason Evansbe413472015-10-24 07:53:25 -0700180* 4.0.4 (October 24, 2015)
181
182 This bugfix release fixes another xallocx() regression. No other regressions
183 have come to light in over a month, so this is likely a good starting point
184 for people who prefer to wait for "dot one" releases with all the major issues
185 shaken out.
Jason Evansa784e412015-09-24 22:21:55 -0700186
187 Bug fixes:
188 - Fix xallocx(..., MALLOCX_ZERO to zero the last full trailing page of large
189 allocations that have been randomly assigned an offset of 0 when
190 --enable-cache-oblivious configure option is enabled.
191
Jason Evans02709682015-09-24 20:05:26 -0700192* 4.0.3 (September 24, 2015)
193
194 This bugfix release continues the trend of xallocx() and heap profiling fixes.
Jason Evansfb64ec22015-09-21 18:37:18 -0700195
196 Bug fixes:
Jason Evansd260f442015-09-24 16:38:45 -0700197 - Fix xallocx(..., MALLOCX_ZERO) to zero all trailing bytes of large
198 allocations when --enable-cache-oblivious configure option is enabled.
199 - Fix xallocx(..., MALLOCX_ZERO) to zero trailing bytes of huge allocations
200 when resizing from/to a size class that is not a multiple of the chunk size.
Jason Evansfb64ec22015-09-21 18:37:18 -0700201 - Fix prof_tctx_dump_iter() to filter out nodes that were created after heap
202 profile dumping started.
Jason Evansd36c7eb2015-09-24 16:53:18 -0700203 - Work around a potentially bad thread-specific data initialization
204 interaction with NPTL (glibc's pthreads implementation).
Jason Evansfb64ec22015-09-21 18:37:18 -0700205
Jason Evansb8e966f2015-09-21 10:19:37 -0700206* 4.0.2 (September 21, 2015)
207
208 This bugfix release addresses a few bugs specific to heap profiling.
Jason Evans38e2c8f2015-09-17 10:05:56 -0700209
210 Bug fixes:
211 - Fix ixallocx_prof_sample() to never modify nor create sampled small
212 allocations. xallocx() is in general incapable of moving small allocations,
213 so this fix removes buggy code without loss of generality.
Jason Evans4be9c792015-09-17 10:17:55 -0700214 - Fix irallocx_prof_sample() to always allocate large regions, even when
215 alignment is non-zero.
Jason Evans3ca0cf62015-09-17 14:47:39 -0700216 - Fix prof_alloc_rollback() to read tdata from thread-specific data rather
217 than dereferencing a potentially invalid tctx.
Jason Evans38e2c8f2015-09-17 10:05:56 -0700218
Jason Evans1d7540c2015-09-15 15:26:23 -0700219* 4.0.1 (September 15, 2015)
220
221 This is a bugfix release that is somewhat high risk due to the amount of
222 refactoring required to address deep xallocx() problems. As a side effect of
223 these fixes, xallocx() now tries harder to partially fulfill requests for
224 optional extra space. Note that a couple of minor heap profiling
225 optimizations are included, but these are better thought of as performance
226 fixes that were integral to disovering most of the other bugs.
227
228 Optimizations:
229 - Avoid a chunk metadata read in arena_prof_tctx_set(), since it is in the
230 fast path when heap profiling is enabled. Additionally, split a special
231 case out into arena_prof_tctx_reset(), which also avoids chunk metadata
232 reads.
233 - Optimize irallocx_prof() to optimistically update the sampler state. The
234 prior implementation appears to have been a holdover from when
235 rallocx()/xallocx() functionality was combined as rallocm().
Jason Evans5ef33a92015-08-19 14:12:05 -0700236
237 Bug fixes:
Jason Evans1d7540c2015-09-15 15:26:23 -0700238 - Fix TLS configuration such that it is enabled by default for platforms on
239 which it works correctly.
Jason Evans30949da2015-08-25 16:13:59 -0700240 - Fix arenas_cache_cleanup() and arena_get_hard() to handle
241 allocation/deallocation within the application's thread-specific data
242 cleanup functions even after arenas_cache is torn down.
Jason Evans1d7540c2015-09-15 15:26:23 -0700243 - Fix xallocx() bugs related to size+extra exceeding HUGE_MAXCLASS.
Mike Hommey6d8075f2015-08-27 20:30:15 -0700244 - Fix chunk purge hook calls for in-place huge shrinking reallocation to
245 specify the old chunk size rather than the new chunk size. This bug caused
246 no correctness issues for the default chunk purge function, but was
247 visible to custom functions set via the "arena.<i>.chunk_hooks" mallctl.
Jason Evans1d7540c2015-09-15 15:26:23 -0700248 - Fix heap profiling bugs:
249 + Fix heap profiling to distinguish among otherwise identical sample sites
250 with interposed resets (triggered via the "prof.reset" mallctl). This bug
251 could cause data structure corruption that would most likely result in a
252 segfault.
253 + Fix irealloc_prof() to prof_alloc_rollback() on OOM.
254 + Make one call to prof_active_get_unlocked() per allocation event, and use
255 the result throughout the relevant functions that handle an allocation
256 event. Also add a missing check in prof_realloc(). These fixes protect
257 allocation events against concurrent prof_active changes.
258 + Fix ixallocx_prof() to pass usize_max and zero to ixallocx_prof_sample()
259 in the correct order.
260 + Fix prof_realloc() to call prof_free_sampled_object() after calling
261 prof_malloc_sample_object(). Prior to this fix, if tctx and old_tctx were
262 the same, the tctx could have been prematurely destroyed.
263 - Fix portability bugs:
264 + Don't bitshift by negative amounts when encoding/decoding run sizes in
265 chunk header maps. This affected systems with page sizes greater than 8
266 KiB.
267 + Rename index_t to szind_t to avoid an existing type on Solaris.
268 + Add JEMALLOC_CXX_THROW to the memalign() function prototype, in order to
269 match glibc and avoid compilation errors when including both
270 jemalloc/jemalloc.h and malloc.h in C++ code.
271 + Don't assume that /bin/sh is appropriate when running size_classes.sh
272 during configuration.
273 + Consider __sparcv9 a synonym for __sparc64__ when defining LG_QUANTUM.
274 + Link tests to librt if it contains clock_gettime(2).
Jason Evans5ef33a92015-08-19 14:12:05 -0700275
Jason Evans9b68f672015-08-17 13:21:08 -0700276* 4.0.0 (August 17, 2015)
Jason Evans54673fd2015-02-23 22:28:43 -0800277
278 This version contains many speed and space optimizations, both minor and
279 major. The major themes are generalization, unification, and simplification.
280 Although many of these optimizations cause no visible behavior change, their
281 cumulative effect is substantial.
282
283 New features:
284 - Normalize size class spacing to be consistent across the complete size
285 range. By default there are four size classes per size doubling, but this
286 is now configurable via the --with-lg-size-class-group option. Also add the
287 --with-lg-page, --with-lg-page-sizes, --with-lg-quantum, and
288 --with-lg-tiny-min options, which can be used to tweak page and size class
289 settings. Impacts:
290 + Worst case performance for incrementally growing/shrinking reallocation
291 is improved because there are far fewer size classes, and therefore
292 copying happens less often.
293 + Internal fragmentation is limited to 20% for all but the smallest size
294 classes (those less than four times the quantum). (1B + 4 KiB)
295 and (1B + 4 MiB) previously suffered nearly 50% internal fragmentation.
296 + Chunk fragmentation tends to be lower because there are fewer distinct run
297 sizes to pack.
298 - Add support for explicit tcaches. The "tcache.create", "tcache.flush", and
299 "tcache.destroy" mallctls control tcache lifetime and flushing, and the
300 MALLOCX_TCACHE(tc) and MALLOCX_TCACHE_NONE flags to the *allocx() API
301 control which tcache is used for each operation.
302 - Implement per thread heap profiling, as well as the ability to
303 enable/disable heap profiling on a per thread basis. Add the "prof.reset",
304 "prof.lg_sample", "thread.prof.name", "thread.prof.active",
305 "opt.prof_thread_active_init", "prof.thread_active_init", and
306 "thread.prof.active" mallctls.
307 - Add support for per arena application-specified chunk allocators, configured
Jason Evansb49a3342015-07-28 11:28:19 -0400308 via the "arena.<i>.chunk_hooks" mallctl.
Jason Evans54673fd2015-02-23 22:28:43 -0800309 - Refactor huge allocation to be managed by arenas, so that arenas now
310 function as general purpose independent allocators. This is important in
311 the context of user-specified chunk allocators, aside from the scalability
312 benefits. Related new statistics:
313 + The "stats.arenas.<i>.huge.allocated", "stats.arenas.<i>.huge.nmalloc",
314 "stats.arenas.<i>.huge.ndalloc", and "stats.arenas.<i>.huge.nrequests"
315 mallctls provide high level per arena huge allocation statistics.
Qinfan Wu89750352015-04-21 16:57:42 -0700316 + The "arenas.nhchunks", "arenas.hchunk.<i>.size",
Jason Evans54673fd2015-02-23 22:28:43 -0800317 "stats.arenas.<i>.hchunks.<j>.nmalloc",
318 "stats.arenas.<i>.hchunks.<j>.ndalloc",
319 "stats.arenas.<i>.hchunks.<j>.nrequests", and
320 "stats.arenas.<i>.hchunks.<j>.curhchunks" mallctls provide per size class
321 statistics.
322 - Add the 'util' column to malloc_stats_print() output, which reports the
323 proportion of available regions that are currently in use for each small
324 size class.
325 - Add "alloc" and "free" modes for for junk filling (see the "opt.junk"
326 mallctl), so that it is possible to separately enable junk filling for
327 allocation versus deallocation.
328 - Add the jemalloc-config script, which provides information about how
329 jemalloc was configured, and how to integrate it into application builds.
330 - Add metadata statistics, which are accessible via the "stats.metadata",
331 "stats.arenas.<i>.metadata.mapped", and
332 "stats.arenas.<i>.metadata.allocated" mallctls.
Jason Evans4acd75a2015-03-23 17:25:57 -0700333 - Add the "stats.resident" mallctl, which reports the upper limit of
334 physically resident memory mapped by the allocator.
Jason Evans562d2662015-03-24 16:36:12 -0700335 - Add per arena control over unused dirty page purging, via the
336 "arenas.lg_dirty_mult", "arena.<i>.lg_dirty_mult", and
337 "stats.arenas.<i>.lg_dirty_mult" mallctls.
Jason Evans54673fd2015-02-23 22:28:43 -0800338 - Add the "prof.gdump" mallctl, which makes it possible to toggle the gdump
339 feature on/off during program execution.
340 - Add sdallocx(), which implements sized deallocation. The primary
341 optimization over dallocx() is the removal of a metadata read, which often
342 suffers an L1 cache miss.
343 - Add missing header includes in jemalloc/jemalloc.h, so that applications
344 only have to #include <jemalloc/jemalloc.h>.
345 - Add support for additional platforms:
346 + Bitrig
347 + Cygwin
348 + DragonFlyBSD
349 + iOS
350 + OpenBSD
351 + OpenRISC/or1k
352
353 Optimizations:
Jason Evans54673fd2015-02-23 22:28:43 -0800354 - Maintain dirty runs in per arena LRUs rather than in per arena trees of
355 dirty-run-containing chunks. In practice this change significantly reduces
356 dirty page purging volume.
357 - Integrate whole chunks into the unused dirty page purging machinery. This
358 reduces the cost of repeated huge allocation/deallocation, because it
359 effectively introduces a cache of chunks.
360 - Split the arena chunk map into two separate arrays, in order to increase
361 cache locality for the frequently accessed bits.
362 - Move small run metadata out of runs, into arena chunk headers. This reduces
363 run fragmentation, smaller runs reduce external fragmentation for small size
364 classes, and packed (less uniformly aligned) metadata layout improves CPU
365 cache set distribution.
Jason Evans8a03cf02015-05-04 09:58:36 -0700366 - Randomly distribute large allocation base pointer alignment relative to page
367 boundaries in order to more uniformly utilize CPU cache sets. This can be
Jason Evansf2bc8522015-07-17 16:38:25 -0700368 disabled via the --disable-cache-oblivious configure option, and queried via
369 the "config.cache_oblivious" mallctl.
Jason Evans54673fd2015-02-23 22:28:43 -0800370 - Micro-optimize the fast paths for the public API functions.
371 - Refactor thread-specific data to reside in a single structure. This assures
372 that only a single TLS read is necessary per call into the public API.
373 - Implement in-place huge allocation growing and shrinking.
374 - Refactor rtree (radix tree for chunk lookups) to be lock-free, and make
375 additional optimizations that reduce maximum lookup depth to one or two
376 levels. This resolves what was a concurrency bottleneck for per arena huge
377 allocation, because a global data structure is critical for determining
378 which arenas own which huge allocations.
379
380 Incompatible changes:
381 - Replace --enable-cc-silence with --disable-cc-silence to suppress spurious
382 warnings by default.
383 - Assure that the constness of malloc_usable_size()'s return type matches that
384 of the system implementation.
385 - Change the heap profile dump format to support per thread heap profiling,
Jason Evans70417202015-05-01 12:31:12 -0700386 rename pprof to jeprof, and enhance it with the --thread=<n> option. As a
387 result, the bundled jeprof must now be used rather than the upstream
388 (gperftools) pprof.
Jason Evans54673fd2015-02-23 22:28:43 -0800389 - Disable "opt.prof_final" by default, in order to avoid atexit(3), which can
390 internally deadlock on some platforms.
391 - Change the "arenas.nlruns" mallctl type from size_t to unsigned.
392 - Replace the "stats.arenas.<i>.bins.<j>.allocated" mallctl with
393 "stats.arenas.<i>.bins.<j>.curregs".
394 - Ignore MALLOC_CONF in set{uid,gid,cap} binaries.
395 - Ignore MALLOCX_ARENA(a) in dallocx(), in favor of using the
396 MALLOCX_TCACHE(tc) and MALLOCX_TCACHE_NONE flags to control tcache usage.
397
398 Removed features:
399 - Remove the *allocm() API, which is superseded by the *allocx() API.
400 - Remove the --enable-dss options, and make dss non-optional on all platforms
401 which support sbrk(2).
402 - Remove the "arenas.purge" mallctl, which was obsoleted by the
403 "arena.<i>.purge" mallctl in 3.1.0.
404 - Remove the unnecessary "opt.valgrind" mallctl; jemalloc automatically
405 detects whether it is running inside Valgrind.
406 - Remove the "stats.huge.allocated", "stats.huge.nmalloc", and
407 "stats.huge.ndalloc" mallctls.
408 - Remove the --enable-mremap option.
Jason Evans54673fd2015-02-23 22:28:43 -0800409 - Remove the "stats.chunks.current", "stats.chunks.total", and
410 "stats.chunks.high" mallctls.
411
412 Bug fixes:
413 - Fix the cactive statistic to decrease (rather than increase) when active
414 memory decreases. This regression was first released in 3.5.0.
415 - Fix OOM handling in memalign() and valloc(). A variant of this bug existed
416 in all releases since 2.0.0, which introduced these functions.
Jason Evans32dca112015-07-09 11:34:13 -0700417 - Fix an OOM-related regression in arena_tcache_fill_small(), which could
418 cause cache corruption on OOM. This regression was present in all releases
419 from 2.2.0 through 3.6.0.
Jason Evans241abc62015-06-23 18:47:07 -0700420 - Fix size class overflow handling for malloc(), posix_memalign(), memalign(),
421 calloc(), and realloc() when profiling is enabled.
Jason Evans54673fd2015-02-23 22:28:43 -0800422 - Fix the "arena.<i>.dss" mallctl to return an error if "primary" or
423 "secondary" precedence is specified, but sbrk(2) is not supported.
424 - Fix fallback lg_floor() implementations to handle extremely large inputs.
425 - Ensure the default purgeable zone is after the default zone on OS X.
426 - Fix latent bugs in atomic_*().
427 - Fix the "arena.<i>.dss" mallctl to handle read-only calls.
428 - Fix tls_model configuration to enable the initial-exec model when possible.
429 - Mark malloc_conf as a weak symbol so that the application can override it.
430 - Correctly detect glibc's adaptive pthread mutexes.
431 - Fix the --without-export configure option.
432
Jason Evansff536312014-03-31 09:23:10 -0700433* 3.6.0 (March 31, 2014)
434
435 This version contains a critical bug fix for a regression present in 3.5.0 and
436 3.5.1.
437
438 Bug fixes:
439 - Fix a regression in arena_chunk_alloc() that caused crashes during
440 small/large allocation if chunk allocation failed. In the absence of this
441 bug, chunk allocation failure would result in allocation failure, e.g. NULL
442 return from malloc(). This regression was introduced in 3.5.0.
443 - Fix backtracing for gcc intrinsics-based backtracing by specifying
444 -fno-omit-frame-pointer to gcc. Note that the application (and all the
445 libraries it links to) must also be compiled with this option for
446 backtracing to be reliable.
447 - Use dss allocation precedence for huge allocations as well as small/large
448 allocations.
Jason Evans54673fd2015-02-23 22:28:43 -0800449 - Fix test assertion failure message formatting. This bug did not manifest on
Jason Evansff536312014-03-31 09:23:10 -0700450 x86_64 systems because of implementation subtleties in va_list.
451 - Fix inconsequential test failures for hash and SFMT code.
452
453 New features:
454 - Support heap profiling on FreeBSD. This feature depends on the proc
455 filesystem being mounted during heap profile dumping.
456
Jason Evansb9ec5c92014-02-25 16:43:51 -0800457* 3.5.1 (February 25, 2014)
458
459 This version primarily addresses minor bugs in test code.
460
461 Bug fixes:
462 - Configure Solaris/Illumos to use MADV_FREE.
463 - Fix junk filling for mremap(2)-based huge reallocation. This is only
464 relevant if configuring with the --enable-mremap option specified.
465 - Avoid compilation failure if 'restrict' C99 keyword is not supported by the
466 compiler.
467 - Add a configure test for SSE2 rather than assuming it is usable on i686
468 systems. This fixes test compilation errors, especially on 32-bit Linux
469 systems.
470 - Fix mallctl argument size mismatches (size_t vs. uint64_t) in the stats unit
471 test.
472 - Fix/remove flawed alignment-related overflow tests.
473 - Prevent compiler optimizations that could change backtraces in the
474 prof_accum unit test.
Jason Evans379f8472010-10-24 16:18:29 -0700475
Jason Evans798a4812014-01-22 11:09:50 -0800476* 3.5.0 (January 22, 2014)
Jason Evans86abd0d2013-11-30 15:25:42 -0800477
Jason Evans264dfd32014-01-17 17:01:23 -0800478 This version focuses on refactoring and automated testing, though it also
479 includes some non-trivial heap profiling optimizations not mentioned below.
480
481 New features:
482 - Add the *allocx() API, which is a successor to the experimental *allocm()
483 API. The *allocx() functions are slightly simpler to use because they have
484 fewer parameters, they directly return the results of primary interest, and
485 mallocx()/rallocx() avoid the strict aliasing pitfall that
Jason Evans9c8baec2014-01-22 13:08:47 -0800486 allocm()/rallocm() share with posix_memalign(). Note that *allocm() is
Jason Evans264dfd32014-01-17 17:01:23 -0800487 slated for removal in the next non-bugfix release.
488 - Add support for LinuxThreads.
489
Jason Evans86abd0d2013-11-30 15:25:42 -0800490 Bug fixes:
Jason Evansd37d5ad2013-12-05 23:01:50 -0800491 - Unless heap profiling is enabled, disable floating point code and don't link
492 with libm. This, in combination with e.g. EXTRA_CFLAGS=-mno-sse on x64
493 systems, makes it possible to completely disable floating point register
494 use. Some versions of glibc neglect to save/restore caller-saved floating
495 point registers during dynamic lazy symbol loading, and the symbol loading
496 code uses whatever malloc the application happens to have linked/loaded
497 with, the result being potential floating point register corruption.
Jason Evans264dfd32014-01-17 17:01:23 -0800498 - Report ENOMEM rather than EINVAL if an OOM occurs during heap profiling
499 backtrace creation in imemalign(). This bug impacted posix_memalign() and
500 aligned_alloc().
501 - Fix a file descriptor leak in a prof_dump_maps() error path.
502 - Fix prof_dump() to close the dump file descriptor for all relevant error
503 paths.
504 - Fix rallocm() to use the arena specified by the ALLOCM_ARENA(s) flag for
505 allocation, not just deallocation.
506 - Fix a data race for large allocation stats counters.
507 - Fix a potential infinite loop during thread exit. This bug occurred on
508 Solaris, and could affect other platforms with similar pthreads TSD
509 implementations.
510 - Don't junk-fill reallocations unless usable size changes. This fixes a
511 violation of the *allocx()/*allocm() semantics.
512 - Fix growing large reallocation to junk fill new space.
513 - Fix huge deallocation to junk fill when munmap is disabled.
Jason Evans86abd0d2013-11-30 15:25:42 -0800514 - Change the default private namespace prefix from empty to je_, and change
515 --with-private-namespace-prefix so that it prepends an additional prefix
516 rather than replacing je_. This reduces the likelihood of applications
517 which statically link jemalloc experiencing symbol name collisions.
Jason Evans264dfd32014-01-17 17:01:23 -0800518 - Add missing private namespace mangling (relevant when
519 --with-private-namespace is specified).
520 - Add and use JEMALLOC_INLINE_C so that static inline functions are marked as
521 static even for debug builds.
522 - Add a missing mutex unlock in a malloc_init_hard() error path. In practice
523 this error path is never executed.
524 - Fix numerous bugs in malloc_strotumax() error handling/reporting. These
525 bugs had no impact except for malformed inputs.
526 - Fix numerous bugs in malloc_snprintf(). These bugs were not exercised by
527 existing calls, so they had no impact.
Jason Evans86abd0d2013-11-30 15:25:42 -0800528
Jason Evans0f7ba3f2013-10-20 19:40:09 -0700529* 3.4.1 (October 20, 2013)
Jason Evansff08ef72013-10-19 21:41:10 -0700530
531 Bug fixes:
Jason Evans7b651802013-10-20 14:09:54 -0700532 - Fix a race in the "arenas.extend" mallctl that could cause memory corruption
533 of internal data structures and subsequent crashes.
Jason Evansdda90f52013-10-19 23:48:40 -0700534 - Fix Valgrind integration flaws that caused Valgrind warnings about reads of
535 uninitialized memory in:
536 + arena chunk headers
537 + internal zero-initialized data structures (relevant to tcache and prof
538 code)
Jason Evansff08ef72013-10-19 21:41:10 -0700539 - Preserve errno during the first allocation. A readlink(2) call during
540 initialization fails unless /etc/malloc.conf exists, so errno was typically
541 set during the first allocation prior to this fix.
542 - Fix compilation warnings reported by gcc 4.8.1.
543
Jason Evans765cc2b2013-06-02 20:58:00 -0700544* 3.4.0 (June 2, 2013)
545
546 This version is essentially a small bugfix release, but the addition of
547 aarch64 support requires that the minor version be incremented.
548
549 Bug fixes:
550 - Fix race-triggered deadlocks in chunk_record(). These deadlocks were
551 typically triggered by multiple threads concurrently deallocating huge
552 objects.
553
554 New features:
555 - Add support for the aarch64 architecture.
556
Jason Evans22988352013-03-06 11:11:17 -0800557* 3.3.1 (March 6, 2013)
558
559 This version fixes bugs that are typically encountered only when utilizing
560 custom run-time options.
Jason Evansbbe29d32013-01-30 15:03:11 -0800561
562 Bug fixes:
Jason Evans88c222c2013-02-06 11:59:30 -0800563 - Fix a locking order bug that could cause deadlock during fork if heap
564 profiling were enabled.
Jason Evansa7a28c32013-01-31 16:53:58 -0800565 - Fix a chunk recycling bug that could cause the allocator to lose track of
Jason Evans765cc2b2013-06-02 20:58:00 -0700566 whether a chunk was zeroed. On FreeBSD, NetBSD, and OS X, it could cause
Jason Evansa7a28c32013-01-31 16:53:58 -0800567 corruption if allocating via sbrk(2) (unlikely unless running with the
568 "dss:primary" option specified). This was completely harmless on Linux
569 unless using mlockall(2) (and unlikely even then, unless the
570 --disable-munmap configure option or the "dss:primary" option was
571 specified). This regression was introduced in 3.1.0 by the
572 mlockall(2)/madvise(2) interaction fix.
Jason Evansbbe29d32013-01-30 15:03:11 -0800573 - Fix TLS-related memory corruption that could occur during thread exit if the
574 thread never allocated memory. Only the quarantine and prof facilities were
575 susceptible.
Jason Evansd0e942e2013-01-31 14:42:41 -0800576 - Fix two quarantine bugs:
577 + Internal reallocation of the quarantined object array leaked the old
578 array.
579 + Reallocation failure for internal reallocation of the quarantined object
580 array (very unlikely) resulted in memory corruption.
Jason Evans06912752013-01-31 17:02:53 -0800581 - Fix Valgrind integration to annotate all internally allocated memory in a
582 way that keeps Valgrind happy about internal data structure access.
Jason Evans22988352013-03-06 11:11:17 -0800583 - Fix building for s390 systems.
Jason Evansbbe29d32013-01-30 15:03:11 -0800584
Jason Evansb5681fb2013-01-22 22:45:09 -0800585* 3.3.0 (January 23, 2013)
586
587 This version includes a few minor performance improvements in addition to the
588 listed new features and bug fixes.
589
590 New features:
591 - Add clipping support to lg_chunk option processing.
592 - Add the --enable-ivsalloc option.
593 - Add the --without-export option.
594 - Add the --disable-zone-allocator option.
Jason Evans6eb84fb2012-11-29 22:13:04 -0800595
596 Bug fixes:
597 - Fix "arenas.extend" mallctl to output the number of arenas.
Jason Evansa33488d2013-10-03 14:38:39 -0700598 - Fix chunk_recycle() to unconditionally inform Valgrind that returned memory
Jason Evans12711852012-12-12 10:12:18 -0800599 is undefined.
Jason Evansb5681fb2013-01-22 22:45:09 -0800600 - Fix build break on FreeBSD related to alloca.h.
Jason Evans6eb84fb2012-11-29 22:13:04 -0800601
Jason Evans556ddc72012-11-07 15:16:29 -0800602* 3.2.0 (November 9, 2012)
603
604 In addition to a couple of bug fixes, this version modifies page run
605 allocation and dirty page purging algorithms in order to better control
606 page-level virtual memory fragmentation.
Jason Evans12efefb2012-10-16 22:06:56 -0700607
Jason Evanse3d13062012-10-30 15:42:37 -0700608 Incompatible changes:
Jason Evans556ddc72012-11-07 15:16:29 -0800609 - Change the "opt.lg_dirty_mult" default from 5 to 3 (32:1 to 8:1).
Jason Evanse3d13062012-10-30 15:42:37 -0700610
Jason Evans12efefb2012-10-16 22:06:56 -0700611 Bug fixes:
612 - Fix dss/mmap allocation precedence code to use recyclable mmap memory only
613 after primary dss allocation fails.
Jason Evanse3d13062012-10-30 15:42:37 -0700614 - Fix deadlock in the "arenas.purge" mallctl. This regression was introduced
615 in 3.1.0 by the addition of the "arena.<i>.purge" mallctl.
Jason Evans12efefb2012-10-16 22:06:56 -0700616
Jason Evans2b592b02012-10-16 10:12:40 -0700617* 3.1.0 (October 16, 2012)
Jason Evans3860eac2012-05-15 13:53:21 -0700618
Jason Evans781fe752012-05-15 14:48:14 -0700619 New features:
620 - Auto-detect whether running inside Valgrind, thus removing the need to
621 manually specify MALLOC_CONF=valgrind:true.
Jason Evans2b592b02012-10-16 10:12:40 -0700622 - Add the "arenas.extend" mallctl, which allows applications to create
623 manually managed arenas.
624 - Add the ALLOCM_ARENA() flag for {,r,d}allocm().
625 - Add the "opt.dss", "arena.<i>.dss", and "stats.arenas.<i>.dss" mallctls,
626 which provide control over dss/mmap precedence.
627 - Add the "arena.<i>.purge" mallctl, which obsoletes "arenas.purge".
628 - Define LG_QUANTUM for hppa.
Jason Evans781fe752012-05-15 14:48:14 -0700629
Jason Evans174b70e2012-05-15 23:31:53 -0700630 Incompatible changes:
631 - Disable tcache by default if running inside Valgrind, in order to avoid
632 making unallocated objects appear reachable to Valgrind.
Jason Evans2b592b02012-10-16 10:12:40 -0700633 - Drop const from malloc_usable_size() argument on Linux.
Jason Evans174b70e2012-05-15 23:31:53 -0700634
Jason Evans3860eac2012-05-15 13:53:21 -0700635 Bug fixes:
636 - Fix heap profiling crash if sampled object is freed via realloc(p, 0).
Jason Evans5c710ce2012-05-23 16:09:22 -0700637 - Remove const from __*_hook variable declarations, so that glibc can modify
638 them during process forking.
Jason Evans2b592b02012-10-16 10:12:40 -0700639 - Fix mlockall(2)/madvise(2) interaction.
640 - Fix fork(2)-related deadlocks.
641 - Fix error return value for "thread.tcache.enabled" mallctl.
Jason Evans3860eac2012-05-15 13:53:21 -0700642
Jason Evanscbb71ca2012-05-11 17:00:20 -0700643* 3.0.0 (May 11, 2012)
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700644
645 Although this version adds some major new features, the primary focus is on
646 internal code cleanup that facilitates maintainability and portability, most
647 of which is not reflected in the ChangeLog. This is the first release to
648 incorporate substantial contributions from numerous other developers, and the
649 result is a more broadly useful allocator (see the git revision history for
650 contribution details). Note that the license has been unified, thanks to
651 Facebook granting a license under the same terms as the other copyright
652 holders (see COPYING).
653
654 New features:
655 - Implement Valgrind support, redzones, and quarantine.
Jason Evans079687b2012-04-23 12:49:23 -0700656 - Add support for additional platforms:
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700657 + FreeBSD
658 + Mac OS X Lion
Jason Evans40f514f2012-04-22 16:21:06 -0700659 + MinGW
Jason Evanscbb71ca2012-05-11 17:00:20 -0700660 + Windows (no support yet for replacing the system malloc)
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700661 - Add support for additional architectures:
662 + MIPS
663 + SH4
664 + Tilera
665 - Add support for cross compiling.
666 - Add nallocm(), which rounds a request size up to the nearest size class
667 without actually allocating.
668 - Implement aligned_alloc() (blame C11).
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700669 - Add the "thread.tcache.enabled" mallctl.
Jason Evans0b25fe72012-04-17 16:39:33 -0700670 - Add the "opt.prof_final" mallctl.
Jason Evans25a000e2012-04-17 15:49:30 -0700671 - Update pprof (from gperftools 2.0).
Jason Evanscbb71ca2012-05-11 17:00:20 -0700672 - Add the --with-mangling option.
673 - Add the --disable-experimental option.
674 - Add the --disable-munmap option, and make it the default on Linux.
675 - Add the --enable-mremap option, which disables use of mremap(2) by default.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700676
677 Incompatible changes:
678 - Enable stats by default.
679 - Enable fill by default.
680 - Disable lazy locking by default.
681 - Rename the "tcache.flush" mallctl to "thread.tcache.flush".
682 - Rename the "arenas.pagesize" mallctl to "arenas.page".
Jason Evans0b25fe72012-04-17 16:39:33 -0700683 - Change the "opt.lg_prof_sample" default from 0 to 19 (1 B to 512 KiB).
684 - Change the "opt.prof_accum" default from true to false.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700685
686 Removed features:
687 - Remove the swap feature, including the "config.swap", "swap.avail",
688 "swap.prezeroed", "swap.nfds", and "swap.fds" mallctls.
689 - Remove highruns statistics, including the
690 "stats.arenas.<i>.bins.<j>.highruns" and
691 "stats.arenas.<i>.lruns.<j>.highruns" mallctls.
692 - As part of small size class refactoring, remove the "opt.lg_[qc]space_max",
693 "arenas.cacheline", "arenas.subpage", "arenas.[tqcs]space_{min,max}", and
694 "arenas.[tqcs]bins" mallctls.
695 - Remove the "arenas.chunksize" mallctl.
696 - Remove the "opt.lg_prof_tcmax" option.
697 - Remove the "opt.lg_prof_bt_max" option.
698 - Remove the "opt.lg_tcache_gc_sweep" option.
699 - Remove the --disable-tiny option, including the "config.tiny" mallctl.
700 - Remove the --enable-dynamic-page-shift configure option.
701 - Remove the --enable-sysv configure option.
702
703 Bug fixes:
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700704 - Fix a statistics-related bug in the "thread.arena" mallctl that could cause
705 invalid statistics and crashes.
Jason Evans079687b2012-04-23 12:49:23 -0700706 - Work around TLS deallocation via free() on Linux. This bug could cause
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700707 write-after-free memory corruption.
Jason Evans52386b22012-04-22 16:00:11 -0700708 - Fix a potential deadlock that could occur during interval- and
709 growth-triggered heap profile dumps.
Jason Evansd8ceef62012-05-10 20:59:39 -0700710 - Fix large calloc() zeroing bugs due to dropping chunk map unzeroed flags.
Jason Evans8f0e0eb2012-04-21 13:33:48 -0700711 - Fix chunk_alloc_dss() to stop claiming memory is zeroed. This bug could
712 cause memory corruption and crashes with --enable-dss specified.
Jason Evans52386b22012-04-22 16:00:11 -0700713 - Fix fork-related bugs that could cause deadlock in children between fork
714 and exec.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700715 - Fix malloc_stats_print() to honor 'b' and 'l' in the opts parameter.
716 - Fix realloc(p, 0) to act like free(p).
717 - Do not enforce minimum alignment in memalign().
718 - Check for NULL pointer in malloc_usable_size().
Jason Evans52386b22012-04-22 16:00:11 -0700719 - Fix an off-by-one heap profile statistics bug that could be observed in
720 interval- and growth-triggered heap profiles.
Jason Evans6b9ed672012-04-25 13:12:46 -0700721 - Fix the "epoch" mallctl to update cached stats even if the passed in epoch
722 is 0.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700723 - Fix bin->runcur management to fix a layout policy bug. This bug did not
724 affect correctness.
725 - Fix a bug in choose_arena_hard() that potentially caused more arenas to be
726 initialized than necessary.
727 - Add missing "opt.lg_tcache_max" mallctl implementation.
728 - Use glibc allocator hooks to make mixed allocator usage less likely.
729 - Fix build issues for --disable-tcache.
Jason Evans918d6e22012-04-20 13:42:21 -0700730 - Don't mangle pthread_create() when --with-private-namespace is specified.
Jason Evans9ef7f5d2012-04-16 18:16:48 -0700731
Jason Evansb3bd8852011-11-14 17:12:45 -0800732* 2.2.5 (November 14, 2011)
733
734 Bug fixes:
735 - Fix huge_ralloc() race when using mremap(2). This is a serious bug that
736 could cause memory corruption and/or crashes.
737 - Fix huge_ralloc() to maintain chunk statistics.
738 - Fix malloc_stats_print(..., "a") output.
739
Jason Evansca9ee1a2011-11-05 21:46:23 -0700740* 2.2.4 (November 5, 2011)
741
742 Bug fixes:
743 - Initialize arenas_tsd before using it. This bug existed for 2.2.[0-3], as
744 well as for --disable-tls builds in earlier releases.
745 - Do not assume a 4 KiB page size in test/rallocm.c.
746
Jason Evansc67e4fd2011-08-31 15:19:13 -0700747* 2.2.3 (August 31, 2011)
748
749 This version fixes numerous bugs related to heap profiling.
750
751 Bug fixes:
752 - Fix a prof-related race condition. This bug could cause memory corruption,
753 but only occurred in non-default configurations (prof_accum:false).
754 - Fix off-by-one backtracing issues (make sure that prof_alloc_prep() is
755 excluded from backtraces).
756 - Fix a prof-related bug in realloc() (only triggered by OOM errors).
757 - Fix prof-related bugs in allocm() and rallocm().
758 - Fix prof_tdata_cleanup() for --disable-tls builds.
759 - Fix a relative include path, to fix objdir builds.
760
Jason Evans4c484812011-07-30 16:59:13 -0700761* 2.2.2 (July 30, 2011)
762
763 Bug fixes:
764 - Fix a build error for --disable-tcache.
765 - Fix assertions in arena_purge() (for real this time).
766 - Add the --with-private-namespace option. This is a workaround for symbol
767 conflicts that can inadvertently arise when using static libraries.
768
Jason Evans7d9ebea2011-03-30 15:01:08 -0700769* 2.2.1 (March 30, 2011)
770
771 Bug fixes:
772 - Implement atomic operations for x86/x64. This fixes compilation failures
773 for versions of gcc that are still in wide use.
774 - Fix an assertion in arena_purge().
775
Jason Evans4bcd9872011-03-22 15:30:22 -0700776* 2.2.0 (March 22, 2011)
777
778 This version incorporates several improvements to algorithms and data
779 structures that tend to reduce fragmentation and increase speed.
780
781 New features:
782 - Add the "stats.cactive" mallctl.
783 - Update pprof (from google-perftools 1.7).
784 - Improve backtracing-related configuration logic, and add the
785 --disable-prof-libgcc option.
786
787 Bug fixes:
788 - Change default symbol visibility from "internal", to "hidden", which
789 decreases the overhead of library-internal function calls.
790 - Fix symbol visibility so that it is also set on OS X.
791 - Fix a build dependency regression caused by the introduction of the .pic.o
792 suffix for PIC object files.
793 - Add missing checks for mutex initialization failures.
794 - Don't use libgcc-based backtracing except on x64, where it is known to work.
795 - Fix deadlocks on OS X that were due to memory allocation in
796 pthread_mutex_lock().
797 - Heap profiling-specific fixes:
798 + Fix memory corruption due to integer overflow in small region index
799 computation, when using a small enough sample interval that profiling
800 context pointers are stored in small run headers.
801 + Fix a bootstrap ordering bug that only occurred with TLS disabled.
802 + Fix a rallocm() rsize bug.
803 + Fix error detection bugs for aligned memory allocation.
804
Jason Evans0e4d0d12011-03-14 16:41:03 -0700805* 2.1.3 (March 14, 2011)
806
807 Bug fixes:
808 - Fix a cpp logic regression (due to the "thread.{de,}allocatedp" mallctl fix
809 for OS X in 2.1.2).
810 - Fix a "thread.arena" mallctl bug.
811 - Fix a thread cache stats merging bug.
812
je6e56e5e2011-03-02 11:23:41 -0800813* 2.1.2 (March 2, 2011)
814
815 Bug fixes:
816 - Fix "thread.{de,}allocatedp" mallctl for OS X.
817 - Add missing jemalloc.a to build system.
818
Jason Evans63692862011-02-07 22:48:35 -0800819* 2.1.1 (January 31, 2011)
Jason Evansada55b22011-01-31 20:08:56 -0800820
Jason Evans63692862011-02-07 22:48:35 -0800821 Bug fixes:
Jason Evansada55b22011-01-31 20:08:56 -0800822 - Fix aligned huge reallocation (affected allocm()).
823 - Fix the ALLOCM_LG_ALIGN macro definition.
824 - Fix a heap dumping deadlock.
825 - Fix a "thread.arena" mallctl bug.
826
Jason Evans63692862011-02-07 22:48:35 -0800827* 2.1.0 (December 3, 2010)
Jason Evans0e8d3d22010-12-03 17:02:16 -0800828
829 This version incorporates some optimizations that can't quite be considered
830 bug fixes.
831
832 New features:
833 - Use Linux's mremap(2) for huge object reallocation when possible.
834 - Avoid locking in mallctl*() when possible.
835 - Add the "thread.[de]allocatedp" mallctl's.
836 - Convert the manual page source from roff to DocBook, and generate both roff
837 and HTML manuals.
838
839 Bug fixes:
840 - Fix a crash due to incorrect bootstrap ordering. This only impacted
841 --enable-debug --enable-dss configurations.
842 - Fix a minor statistics bug for mallctl("swap.avail", ...).
843
Jason Evans63692862011-02-07 22:48:35 -0800844* 2.0.1 (October 29, 2010)
Jason Evans53806fe2010-10-29 20:16:39 -0700845
846 Bug fixes:
847 - Fix a race condition in heap profiling that could cause undefined behavior
Jason Evansada55b22011-01-31 20:08:56 -0800848 if "opt.prof_accum" were disabled.
Jason Evans53806fe2010-10-29 20:16:39 -0700849 - Add missing mutex unlocks for some OOM error paths in the heap profiling
850 code.
851 - Fix a compilation error for non-C99 builds.
852
Jason Evans63692862011-02-07 22:48:35 -0800853* 2.0.0 (October 24, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700854
855 This version focuses on the experimental *allocm() API, and on improved
856 run-time configuration/introspection. Nonetheless, numerous performance
857 improvements are also included.
858
859 New features:
Jason Evansb059a532010-10-24 16:54:40 -0700860 - Implement the experimental {,r,s,d}allocm() API, which provides a superset
861 of the functionality available via malloc(), calloc(), posix_memalign(),
862 realloc(), malloc_usable_size(), and free(). These functions can be used to
863 allocate/reallocate aligned zeroed memory, ask for optional extra memory
864 during reallocation, prevent object movement during reallocation, etc.
865 - Replace JEMALLOC_OPTIONS/JEMALLOC_PROF_PREFIX with MALLOC_CONF, which is
866 more human-readable, and more flexible. For example:
867 JEMALLOC_OPTIONS=AJP
868 is now:
869 MALLOC_CONF=abort:true,fill:true,stats_print:true
870 - Port to Apple OS X. Sponsored by Mozilla.
871 - Make it possible for the application to control thread-->arena mappings via
872 the "thread.arena" mallctl.
873 - Add compile-time support for all TLS-related functionality via pthreads TSD.
874 This is mainly of interest for OS X, which does not support TLS, but has a
875 TSD implementation with similar performance.
876 - Override memalign() and valloc() if they are provided by the system.
877 - Add the "arenas.purge" mallctl, which can be used to synchronously purge all
878 dirty unused pages.
879 - Make cumulative heap profiling data optional, so that it is possible to
880 limit the amount of memory consumed by heap profiling data structures.
881 - Add per thread allocation counters that can be accessed via the
882 "thread.allocated" and "thread.deallocated" mallctls.
Jason Evans379f8472010-10-24 16:18:29 -0700883
884 Incompatible changes:
Jason Evansb059a532010-10-24 16:54:40 -0700885 - Remove JEMALLOC_OPTIONS and malloc_options (see MALLOC_CONF above).
886 - Increase default backtrace depth from 4 to 128 for heap profiling.
887 - Disable interval-based profile dumps by default.
Jason Evans379f8472010-10-24 16:18:29 -0700888
889 Bug fixes:
890 - Remove bad assertions in fork handler functions. These assertions could
891 cause aborts for some combinations of configure settings.
892 - Fix strerror_r() usage to deal with non-standard semantics in GNU libc.
893 - Fix leak context reporting. This bug tended to cause the number of contexts
894 to be underreported (though the reported number of objects and bytes were
895 correct).
896 - Fix a realloc() bug for large in-place growing reallocation. This bug could
897 cause memory corruption, but it was hard to trigger.
898 - Fix an allocation bug for small allocations that could be triggered if
899 multiple threads raced to create a new run of backing pages.
900 - Enhance the heap profiler to trigger samples based on usable size, rather
901 than request size.
902 - Fix a heap profiling bug due to sometimes losing track of requested object
903 size for sampled objects.
904
Jason Evans63692862011-02-07 22:48:35 -0800905* 1.0.3 (August 12, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700906
907 Bug fixes:
908 - Fix the libunwind-based implementation of stack backtracing (used for heap
909 profiling). This bug could cause zero-length backtraces to be reported.
910 - Add a missing mutex unlock in library initialization code. If multiple
911 threads raced to initialize malloc, some of them could end up permanently
912 blocked.
913
Jason Evans63692862011-02-07 22:48:35 -0800914* 1.0.2 (May 11, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700915
916 Bug fixes:
917 - Fix junk filling of large objects, which could cause memory corruption.
918 - Add MAP_NORESERVE support for chunk mapping, because otherwise virtual
919 memory limits could cause swap file configuration to fail. Contributed by
920 Jordan DeLong.
921
Jason Evans63692862011-02-07 22:48:35 -0800922* 1.0.1 (April 14, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700923
924 Bug fixes:
925 - Fix compilation when --enable-fill is specified.
926 - Fix threads-related profiling bugs that affected accuracy and caused memory
927 to be leaked during thread exit.
928 - Fix dirty page purging race conditions that could cause crashes.
929 - Fix crash in tcache flushing code during thread destruction.
930
Jason Evans63692862011-02-07 22:48:35 -0800931* 1.0.0 (April 11, 2010)
Jason Evans379f8472010-10-24 16:18:29 -0700932
933 This release focuses on speed and run-time introspection. Numerous
934 algorithmic improvements make this release substantially faster than its
935 predecessors.
936
937 New features:
938 - Implement autoconf-based configuration system.
939 - Add mallctl*(), for the purposes of introspection and run-time
940 configuration.
941 - Make it possible for the application to manually flush a thread's cache, via
942 the "tcache.flush" mallctl.
943 - Base maximum dirty page count on proportion of active memory.
charsyamad6800f2015-07-04 01:06:06 +0900944 - Compute various additional run-time statistics, including per size class
Jason Evans379f8472010-10-24 16:18:29 -0700945 statistics for large objects.
946 - Expose malloc_stats_print(), which can be called repeatedly by the
947 application.
948 - Simplify the malloc_message() signature to only take one string argument,
949 and incorporate an opaque data pointer argument for use by the application
950 in combination with malloc_stats_print().
951 - Add support for allocation backed by one or more swap files, and allow the
952 application to disable over-commit if swap files are in use.
953 - Implement allocation profiling and leak checking.
954
955 Removed features:
956 - Remove the dynamic arena rebalancing code, since thread-specific caching
957 reduces its utility.
958
959 Bug fixes:
960 - Modify chunk allocation to work when address space layout randomization
961 (ASLR) is in use.
962 - Fix thread cleanup bugs related to TLS destruction.
963 - Handle 0-size allocation requests in posix_memalign().
964 - Fix a chunk leak. The leaked chunks were never touched, so this impacted
965 virtual memory usage, but not physical memory usage.
966
Jason Evans63692862011-02-07 22:48:35 -0800967* linux_2008082[78]a (August 27/28, 2008)
Jason Evans379f8472010-10-24 16:18:29 -0700968
969 These snapshot releases are the simple result of incorporating Linux-specific
970 support into the FreeBSD malloc sources.
971
972--------------------------------------------------------------------------------
973vim:filetype=text:textwidth=80