ChangeLog 78 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618
  1. Following are change highlights associated with official releases. Important
  2. bug fixes are all mentioned, but some internal enhancements are omitted here for
  3. brevity. Much more detail can be found in the git revision history:
  4. https://github.com/jemalloc/jemalloc
  5. * 5.3.0 (May 6, 2022)
  6. This release contains many speed and space optimizations, from micro
  7. optimizations on common paths to rework of internal data structures and
  8. locking schemes, and many more too detailed to list below. Multiple percent
  9. of system level metric improvements were measured in tested production
  10. workloads. The release has gone through large-scale production testing.
  11. New features:
  12. - Add the thread.idle mallctl which hints that the calling thread will be
  13. idle for a nontrivial period of time. (@davidtgoldblatt)
  14. - Allow small size classes to be the maximum size class to cache in the
  15. thread-specific cache, through the opt.[lg_]tcache_max option. (@interwq,
  16. @jordalgo)
  17. - Make the behavior of realloc(ptr, 0) configurable with opt.zero_realloc.
  18. (@davidtgoldblatt)
  19. - Add 'make uninstall' support. (@sangshuduo, @Lapenkov)
  20. - Support C++17 over-aligned allocation. (@marksantaniello)
  21. - Add the thread.peak mallctl for approximate per-thread peak memory tracking.
  22. (@davidtgoldblatt)
  23. - Add interval-based stats output opt.stats_interval. (@interwq)
  24. - Add prof.prefix to override filename prefixes for dumps. (@zhxchen17)
  25. - Add high resolution timestamp support for profiling. (@tyroguru)
  26. - Add the --collapsed flag to jeprof for flamegraph generation.
  27. (@igorwwwwwwwwwwwwwwwwwwww)
  28. - Add the --debug-syms-by-id option to jeprof for debug symbols discovery.
  29. (@DeannaGelbart)
  30. - Add the opt.prof_leak_error option to exit with error code when leak is
  31. detected using opt.prof_final. (@yunxuo)
  32. - Add opt.cache_oblivious as an runtime alternative to config.cache_oblivious.
  33. (@interwq)
  34. - Add mallctl interfaces:
  35. + opt.zero_realloc (@davidtgoldblatt)
  36. + opt.cache_oblivious (@interwq)
  37. + opt.prof_leak_error (@yunxuo)
  38. + opt.stats_interval (@interwq)
  39. + opt.stats_interval_opts (@interwq)
  40. + opt.tcache_max (@interwq)
  41. + opt.trust_madvise (@azat)
  42. + prof.prefix (@zhxchen17)
  43. + stats.zero_reallocs (@davidtgoldblatt)
  44. + thread.idle (@davidtgoldblatt)
  45. + thread.peak.{read,reset} (@davidtgoldblatt)
  46. Bug fixes:
  47. - Fix the synchronization around explicit tcache creation which could cause
  48. invalid tcache identifiers. This regression was first released in 5.0.0.
  49. (@yoshinorim, @davidtgoldblatt)
  50. - Fix a profiling biasing issue which could cause incorrect heap usage and
  51. object counts. This issue existed in all previous releases with the heap
  52. profiling feature. (@davidtgoldblatt)
  53. - Fix the order of stats counter updating on large realloc which could cause
  54. failed assertions. This regression was first released in 5.0.0. (@azat)
  55. - Fix the locking on the arena destroy mallctl, which could cause concurrent
  56. arena creations to fail. This functionality was first introduced in 5.0.0.
  57. (@interwq)
  58. Portability improvements:
  59. - Remove nothrow from system function declarations on macOS and FreeBSD.
  60. (@davidtgoldblatt, @fredemmott, @leres)
  61. - Improve overcommit and page alignment settings on NetBSD. (@zoulasc)
  62. - Improve CPU affinity support on BSD platforms. (@devnexen)
  63. - Improve utrace detection and support. (@devnexen)
  64. - Improve QEMU support with MADV_DONTNEED zeroed pages detection. (@azat)
  65. - Add memcntl support on Solaris / illumos. (@devnexen)
  66. - Improve CPU_SPINWAIT on ARM. (@AWSjswinney)
  67. - Improve TSD cleanup on FreeBSD. (@Lapenkov)
  68. - Disable percpu_arena if the CPU count cannot be reliably detected. (@azat)
  69. - Add malloc_size(3) override support. (@devnexen)
  70. - Add mmap VM_MAKE_TAG support. (@devnexen)
  71. - Add support for MADV_[NO]CORE. (@devnexen)
  72. - Add support for DragonFlyBSD. (@devnexen)
  73. - Fix the QUANTUM setting on MIPS64. (@brooksdavis)
  74. - Add the QUANTUM setting for ARC. (@vineetgarc)
  75. - Add the QUANTUM setting for LoongArch. (@wangjl-uos)
  76. - Add QNX support. (@jqian-aurora)
  77. - Avoid atexit(3) calls unless the relevant profiling features are enabled.
  78. (@BusyJay, @laiwei-rice, @interwq)
  79. - Fix unknown option detection when using Clang. (@Lapenkov)
  80. - Fix symbol conflict with musl libc. (@georgthegreat)
  81. - Add -Wimplicit-fallthrough checks. (@nickdesaulniers)
  82. - Add __forceinline support on MSVC. (@santagada)
  83. - Improve FreeBSD and Windows CI support. (@Lapenkov)
  84. - Add CI support for PPC64LE architecture. (@ezeeyahoo)
  85. Incompatible changes:
  86. - Maximum size class allowed in tcache (opt.[lg_]tcache_max) now has an upper
  87. bound of 8MiB. (@interwq)
  88. Optimizations and refactors (@davidtgoldblatt, @Lapenkov, @interwq):
  89. - Optimize the common cases of the thread cache operations.
  90. - Optimize internal data structures, including RB tree and pairing heap.
  91. - Optimize the internal locking on extent management.
  92. - Extract and refactor the internal page allocator and interface modules.
  93. Documentation:
  94. - Fix doc build with --with-install-suffix. (@lawmurray, @interwq)
  95. - Add PROFILING_INTERNALS.md. (@davidtgoldblatt)
  96. - Ensure the proper order of doc building and installation. (@Mingli-Yu)
  97. * 5.2.1 (August 5, 2019)
  98. This release is primarily about Windows. A critical virtual memory leak is
  99. resolved on all Windows platforms. The regression was present in all releases
  100. since 5.0.0.
  101. Bug fixes:
  102. - Fix a severe virtual memory leak on Windows. This regression was first
  103. released in 5.0.0. (@Ignition, @j0t, @frederik-h, @davidtgoldblatt,
  104. @interwq)
  105. - Fix size 0 handling in posix_memalign(). This regression was first released
  106. in 5.2.0. (@interwq)
  107. - Fix the prof_log unit test which may observe unexpected backtraces from
  108. compiler optimizations. The test was first added in 5.2.0. (@marxin,
  109. @gnzlbg, @interwq)
  110. - Fix the declaration of the extent_avail tree. This regression was first
  111. released in 5.1.0. (@zoulasc)
  112. - Fix an incorrect reference in jeprof. This functionality was first released
  113. in 3.0.0. (@prehistoric-penguin)
  114. - Fix an assertion on the deallocation fast-path. This regression was first
  115. released in 5.2.0. (@yinan1048576)
  116. - Fix the TLS_MODEL attribute in headers. This regression was first released
  117. in 5.0.0. (@zoulasc, @interwq)
  118. Optimizations and refactors:
  119. - Implement opt.retain on Windows and enable by default on 64-bit. (@interwq,
  120. @davidtgoldblatt)
  121. - Optimize away a branch on the operator delete[] path. (@mgrice)
  122. - Add format annotation to the format generator function. (@zoulasc)
  123. - Refactor and improve the size class header generation. (@yinan1048576)
  124. - Remove best fit. (@djwatson)
  125. - Avoid blocking on background thread locks for stats. (@oranagra, @interwq)
  126. * 5.2.0 (April 2, 2019)
  127. This release includes a few notable improvements, which are summarized below:
  128. 1) improved fast-path performance from the optimizations by @djwatson; 2)
  129. reduced virtual memory fragmentation and metadata usage; and 3) bug fixes on
  130. setting the number of background threads. In addition, peak / spike memory
  131. usage is improved with certain allocation patterns. As usual, the release and
  132. prior dev versions have gone through large-scale production testing.
  133. New features:
  134. - Implement oversize_threshold, which uses a dedicated arena for allocations
  135. crossing the specified threshold to reduce fragmentation. (@interwq)
  136. - Add extents usage information to stats. (@tyleretzel)
  137. - Log time information for sampled allocations. (@tyleretzel)
  138. - Support 0 size in sdallocx. (@djwatson)
  139. - Output rate for certain counters in malloc_stats. (@zinoale)
  140. - Add configure option --enable-readlinkat, which allows the use of readlinkat
  141. over readlink. (@davidtgoldblatt)
  142. - Add configure options --{enable,disable}-{static,shared} to allow not
  143. building unwanted libraries. (@Ericson2314)
  144. - Add configure option --disable-libdl to enable fully static builds.
  145. (@interwq)
  146. - Add mallctl interfaces:
  147. + opt.oversize_threshold (@interwq)
  148. + stats.arenas.<i>.extent_avail (@tyleretzel)
  149. + stats.arenas.<i>.extents.<j>.n{dirty,muzzy,retained} (@tyleretzel)
  150. + stats.arenas.<i>.extents.<j>.{dirty,muzzy,retained}_bytes
  151. (@tyleretzel)
  152. Portability improvements:
  153. - Update MSVC builds. (@maksqwe, @rustyx)
  154. - Workaround a compiler optimizer bug on s390x. (@rkmisra)
  155. - Make use of pthread_set_name_np(3) on FreeBSD. (@trasz)
  156. - Implement malloc_getcpu() to enable percpu_arena for windows. (@santagada)
  157. - Link against -pthread instead of -lpthread. (@paravoid)
  158. - Make background_thread not dependent on libdl. (@interwq)
  159. - Add stringify to fix a linker directive issue on MSVC. (@daverigby)
  160. - Detect and fall back when 8-bit atomics are unavailable. (@interwq)
  161. - Fall back to the default pthread_create if dlsym(3) fails. (@interwq)
  162. Optimizations and refactors:
  163. - Refactor the TSD module. (@davidtgoldblatt)
  164. - Avoid taking extents_muzzy mutex when muzzy is disabled. (@interwq)
  165. - Avoid taking large_mtx for auto arenas on the tcache flush path. (@interwq)
  166. - Optimize ixalloc by avoiding a size lookup. (@interwq)
  167. - Implement opt.oversize_threshold which uses a dedicated arena for requests
  168. crossing the threshold, also eagerly purges the oversize extents. Default
  169. the threshold to 8 MiB. (@interwq)
  170. - Clean compilation with -Wextra. (@gnzlbg, @jasone)
  171. - Refactor the size class module. (@davidtgoldblatt)
  172. - Refactor the stats emitter. (@tyleretzel)
  173. - Optimize pow2_ceil. (@rkmisra)
  174. - Avoid runtime detection of lazy purging on FreeBSD. (@trasz)
  175. - Optimize mmap(2) alignment handling on FreeBSD. (@trasz)
  176. - Improve error handling for THP state initialization. (@jsteemann)
  177. - Rework the malloc() fast path. (@djwatson)
  178. - Rework the free() fast path. (@djwatson)
  179. - Refactor and optimize the tcache fill / flush paths. (@djwatson)
  180. - Optimize sync / lwsync on PowerPC. (@chmeeedalf)
  181. - Bypass extent_dalloc() when retain is enabled. (@interwq)
  182. - Optimize the locking on large deallocation. (@interwq)
  183. - Reduce the number of pages committed from sanity checking in debug build.
  184. (@trasz, @interwq)
  185. - Deprecate OSSpinLock. (@interwq)
  186. - Lower the default number of background threads to 4 (when the feature
  187. is enabled). (@interwq)
  188. - Optimize the trylock spin wait. (@djwatson)
  189. - Use arena index for arena-matching checks. (@interwq)
  190. - Avoid forced decay on thread termination when using background threads.
  191. (@interwq)
  192. - Disable muzzy decay by default. (@djwatson, @interwq)
  193. - Only initialize libgcc unwinder when profiling is enabled. (@paravoid,
  194. @interwq)
  195. Bug fixes (all only relevant to jemalloc 5.x):
  196. - Fix background thread index issues with max_background_threads. (@djwatson,
  197. @interwq)
  198. - Fix stats output for opt.lg_extent_max_active_fit. (@interwq)
  199. - Fix opt.prof_prefix initialization. (@davidtgoldblatt)
  200. - Properly trigger decay on tcache destroy. (@interwq, @amosbird)
  201. - Fix tcache.flush. (@interwq)
  202. - Detect whether explicit extent zero out is necessary with huge pages or
  203. custom extent hooks, which may change the purge semantics. (@interwq)
  204. - Fix a side effect caused by extent_max_active_fit combined with decay-based
  205. purging, where freed extents can accumulate and not be reused for an
  206. extended period of time. (@interwq, @mpghf)
  207. - Fix a missing unlock on extent register error handling. (@zoulasc)
  208. Testing:
  209. - Simplify the Travis script output. (@gnzlbg)
  210. - Update the test scripts for FreeBSD. (@devnexen)
  211. - Add unit tests for the producer-consumer pattern. (@interwq)
  212. - Add Cirrus-CI config for FreeBSD builds. (@jasone)
  213. - Add size-matching sanity checks on tcache flush. (@davidtgoldblatt,
  214. @interwq)
  215. Incompatible changes:
  216. - Remove --with-lg-page-sizes. (@davidtgoldblatt)
  217. Documentation:
  218. - Attempt to build docs by default, however skip doc building when xsltproc
  219. is missing. (@interwq, @cmuellner)
  220. * 5.1.0 (May 4, 2018)
  221. This release is primarily about fine-tuning, ranging from several new features
  222. to numerous notable performance and portability enhancements. The release and
  223. prior dev versions have been running in multiple large scale applications for
  224. months, and the cumulative improvements are substantial in many cases.
  225. Given the long and successful production runs, this release is likely a good
  226. candidate for applications to upgrade, from both jemalloc 5.0 and before. For
  227. performance-critical applications, the newly added TUNING.md provides
  228. guidelines on jemalloc tuning.
  229. New features:
  230. - Implement transparent huge page support for internal metadata. (@interwq)
  231. - Add opt.thp to allow enabling / disabling transparent huge pages for all
  232. mappings. (@interwq)
  233. - Add maximum background thread count option. (@djwatson)
  234. - Allow prof_active to control opt.lg_prof_interval and prof.gdump.
  235. (@interwq)
  236. - Allow arena index lookup based on allocation addresses via mallctl.
  237. (@lionkov)
  238. - Allow disabling initial-exec TLS model. (@davidtgoldblatt, @KenMacD)
  239. - Add opt.lg_extent_max_active_fit to set the max ratio between the size of
  240. the active extent selected (to split off from) and the size of the requested
  241. allocation. (@interwq, @davidtgoldblatt)
  242. - Add retain_grow_limit to set the max size when growing virtual address
  243. space. (@interwq)
  244. - Add mallctl interfaces:
  245. + arena.<i>.retain_grow_limit (@interwq)
  246. + arenas.lookup (@lionkov)
  247. + max_background_threads (@djwatson)
  248. + opt.lg_extent_max_active_fit (@interwq)
  249. + opt.max_background_threads (@djwatson)
  250. + opt.metadata_thp (@interwq)
  251. + opt.thp (@interwq)
  252. + stats.metadata_thp (@interwq)
  253. Portability improvements:
  254. - Support GNU/kFreeBSD configuration. (@paravoid)
  255. - Support m68k, nios2 and SH3 architectures. (@paravoid)
  256. - Fall back to FD_CLOEXEC when O_CLOEXEC is unavailable. (@zonyitoo)
  257. - Fix symbol listing for cross-compiling. (@tamird)
  258. - Fix high bits computation on ARM. (@davidtgoldblatt, @paravoid)
  259. - Disable the CPU_SPINWAIT macro for Power. (@davidtgoldblatt, @marxin)
  260. - Fix MSVC 2015 & 2017 builds. (@rustyx)
  261. - Improve RISC-V support. (@EdSchouten)
  262. - Set name mangling script in strict mode. (@nicolov)
  263. - Avoid MADV_HUGEPAGE on ARM. (@marxin)
  264. - Modify configure to determine return value of strerror_r.
  265. (@davidtgoldblatt, @cferris1000)
  266. - Make sure CXXFLAGS is tested with CPP compiler. (@nehaljwani)
  267. - Fix 32-bit build on MSVC. (@rustyx)
  268. - Fix external symbol on MSVC. (@maksqwe)
  269. - Avoid a printf format specifier warning. (@jasone)
  270. - Add configure option --disable-initial-exec-tls which can allow jemalloc to
  271. be dynamically loaded after program startup. (@davidtgoldblatt, @KenMacD)
  272. - AArch64: Add ILP32 support. (@cmuellner)
  273. - Add --with-lg-vaddr configure option to support cross compiling.
  274. (@cmuellner, @davidtgoldblatt)
  275. Optimizations and refactors:
  276. - Improve active extent fit with extent_max_active_fit. This considerably
  277. reduces fragmentation over time and improves virtual memory and metadata
  278. usage. (@davidtgoldblatt, @interwq)
  279. - Eagerly coalesce large extents to reduce fragmentation. (@interwq)
  280. - sdallocx: only read size info when page aligned (i.e. possibly sampled),
  281. which speeds up the sized deallocation path significantly. (@interwq)
  282. - Avoid attempting new mappings for in place expansion with retain, since
  283. it rarely succeeds in practice and causes high overhead. (@interwq)
  284. - Refactor OOM handling in newImpl. (@wqfish)
  285. - Add internal fine-grained logging functionality for debugging use.
  286. (@davidtgoldblatt)
  287. - Refactor arena / tcache interactions. (@davidtgoldblatt)
  288. - Refactor extent management with dumpable flag. (@davidtgoldblatt)
  289. - Add runtime detection of lazy purging. (@interwq)
  290. - Use pairing heap instead of red-black tree for extents_avail. (@djwatson)
  291. - Use sysctl on startup in FreeBSD. (@trasz)
  292. - Use thread local prng state instead of atomic. (@djwatson)
  293. - Make decay to always purge one more extent than before, because in
  294. practice large extents are usually the ones that cross the decay threshold.
  295. Purging the additional extent helps save memory as well as reduce VM
  296. fragmentation. (@interwq)
  297. - Fast division by dynamic values. (@davidtgoldblatt)
  298. - Improve the fit for aligned allocation. (@interwq, @edwinsmith)
  299. - Refactor extent_t bitpacking. (@rkmisra)
  300. - Optimize the generated assembly for ticker operations. (@davidtgoldblatt)
  301. - Convert stats printing to use a structured text emitter. (@davidtgoldblatt)
  302. - Remove preserve_lru feature for extents management. (@djwatson)
  303. - Consolidate two memory loads into one on the fast deallocation path.
  304. (@davidtgoldblatt, @interwq)
  305. Bug fixes (most of the issues are only relevant to jemalloc 5.0):
  306. - Fix deadlock with multithreaded fork in OS X. (@davidtgoldblatt)
  307. - Validate returned file descriptor before use. (@zonyitoo)
  308. - Fix a few background thread initialization and shutdown issues. (@interwq)
  309. - Fix an extent coalesce + decay race by taking both coalescing extents off
  310. the LRU list. (@interwq)
  311. - Fix potentially unbound increase during decay, caused by one thread keep
  312. stashing memory to purge while other threads generating new pages. The
  313. number of pages to purge is checked to prevent this. (@interwq)
  314. - Fix a FreeBSD bootstrap assertion. (@strejda, @interwq)
  315. - Handle 32 bit mutex counters. (@rkmisra)
  316. - Fix a indexing bug when creating background threads. (@davidtgoldblatt,
  317. @binliu19)
  318. - Fix arguments passed to extent_init. (@yuleniwo, @interwq)
  319. - Fix addresses used for ordering mutexes. (@rkmisra)
  320. - Fix abort_conf processing during bootstrap. (@interwq)
  321. - Fix include path order for out-of-tree builds. (@cmuellner)
  322. Incompatible changes:
  323. - Remove --disable-thp. (@interwq)
  324. - Remove mallctl interfaces:
  325. + config.thp (@interwq)
  326. Documentation:
  327. - Add TUNING.md. (@interwq, @davidtgoldblatt, @djwatson)
  328. * 5.0.1 (July 1, 2017)
  329. This bugfix release fixes several issues, most of which are obscure enough
  330. that typical applications are not impacted.
  331. Bug fixes:
  332. - Update decay->nunpurged before purging, in order to avoid potential update
  333. races and subsequent incorrect purging volume. (@interwq)
  334. - Only abort on dlsym(3) error if the failure impacts an enabled feature (lazy
  335. locking and/or background threads). This mitigates an initialization
  336. failure bug for which we still do not have a clear reproduction test case.
  337. (@interwq)
  338. - Modify tsd management so that it neither crashes nor leaks if a thread's
  339. only allocation activity is to call free() after TLS destructors have been
  340. executed. This behavior was observed when operating with GNU libc, and is
  341. unlikely to be an issue with other libc implementations. (@interwq)
  342. - Mask signals during background thread creation. This prevents signals from
  343. being inadvertently delivered to background threads. (@jasone,
  344. @davidtgoldblatt, @interwq)
  345. - Avoid inactivity checks within background threads, in order to prevent
  346. recursive mutex acquisition. (@interwq)
  347. - Fix extent_grow_retained() to use the specified hooks when the
  348. arena.<i>.extent_hooks mallctl is used to override the default hooks.
  349. (@interwq)
  350. - Add missing reentrancy support for custom extent hooks which allocate.
  351. (@interwq)
  352. - Post-fork(2), re-initialize the list of tcaches associated with each arena
  353. to contain no tcaches except the forking thread's. (@interwq)
  354. - Add missing post-fork(2) mutex reinitialization for extent_grow_mtx. This
  355. fixes potential deadlocks after fork(2). (@interwq)
  356. - Enforce minimum autoconf version (currently 2.68), since 2.63 is known to
  357. generate corrupt configure scripts. (@jasone)
  358. - Ensure that the configured page size (--with-lg-page) is no larger than the
  359. configured huge page size (--with-lg-hugepage). (@jasone)
  360. * 5.0.0 (June 13, 2017)
  361. Unlike all previous jemalloc releases, this release does not use naturally
  362. aligned "chunks" for virtual memory management, and instead uses page-aligned
  363. "extents". This change has few externally visible effects, but the internal
  364. impacts are... extensive. Many other internal changes combine to make this
  365. the most cohesively designed version of jemalloc so far, with ample
  366. opportunity for further enhancements.
  367. Continuous integration is now an integral aspect of development thanks to the
  368. efforts of @davidtgoldblatt, and the dev branch tends to remain reasonably
  369. stable on the tested platforms (Linux, FreeBSD, macOS, and Windows). As a
  370. side effect the official release frequency may decrease over time.
  371. New features:
  372. - Implement optional per-CPU arena support; threads choose which arena to use
  373. based on current CPU rather than on fixed thread-->arena associations.
  374. (@interwq)
  375. - Implement two-phase decay of unused dirty pages. Pages transition from
  376. dirty-->muzzy-->clean, where the first phase transition relies on
  377. madvise(... MADV_FREE) semantics, and the second phase transition discards
  378. pages such that they are replaced with demand-zeroed pages on next access.
  379. (@jasone)
  380. - Increase decay time resolution from seconds to milliseconds. (@jasone)
  381. - Implement opt-in per CPU background threads, and use them for asynchronous
  382. decay-driven unused dirty page purging. (@interwq)
  383. - Add mutex profiling, which collects a variety of statistics useful for
  384. diagnosing overhead/contention issues. (@interwq)
  385. - Add C++ new/delete operator bindings. (@djwatson)
  386. - Support manually created arena destruction, such that all data and metadata
  387. are discarded. Add MALLCTL_ARENAS_DESTROYED for accessing merged stats
  388. associated with destroyed arenas. (@jasone)
  389. - Add MALLCTL_ARENAS_ALL as a fixed index for use in accessing
  390. merged/destroyed arena statistics via mallctl. (@jasone)
  391. - Add opt.abort_conf to optionally abort if invalid configuration options are
  392. detected during initialization. (@interwq)
  393. - Add opt.stats_print_opts, so that e.g. JSON output can be selected for the
  394. stats dumped during exit if opt.stats_print is true. (@jasone)
  395. - Add --with-version=VERSION for use when embedding jemalloc into another
  396. project's git repository. (@jasone)
  397. - Add --disable-thp to support cross compiling. (@jasone)
  398. - Add --with-lg-hugepage to support cross compiling. (@jasone)
  399. - Add mallctl interfaces (various authors):
  400. + background_thread
  401. + opt.abort_conf
  402. + opt.retain
  403. + opt.percpu_arena
  404. + opt.background_thread
  405. + opt.{dirty,muzzy}_decay_ms
  406. + opt.stats_print_opts
  407. + arena.<i>.initialized
  408. + arena.<i>.destroy
  409. + arena.<i>.{dirty,muzzy}_decay_ms
  410. + arena.<i>.extent_hooks
  411. + arenas.{dirty,muzzy}_decay_ms
  412. + arenas.bin.<i>.slab_size
  413. + arenas.nlextents
  414. + arenas.lextent.<i>.size
  415. + arenas.create
  416. + stats.background_thread.{num_threads,num_runs,run_interval}
  417. + stats.mutexes.{ctl,background_thread,prof,reset}.
  418. {num_ops,num_spin_acq,num_wait,max_wait_time,total_wait_time,max_num_thds,
  419. num_owner_switch}
  420. + stats.arenas.<i>.{dirty,muzzy}_decay_ms
  421. + stats.arenas.<i>.uptime
  422. + stats.arenas.<i>.{pmuzzy,base,internal,resident}
  423. + stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
  424. + stats.arenas.<i>.bins.<j>.{nslabs,reslabs,curslabs}
  425. + stats.arenas.<i>.bins.<j>.mutex.
  426. {num_ops,num_spin_acq,num_wait,max_wait_time,total_wait_time,max_num_thds,
  427. num_owner_switch}
  428. + stats.arenas.<i>.lextents.<j>.{nmalloc,ndalloc,nrequests,curlextents}
  429. + stats.arenas.i.mutexes.{large,extent_avail,extents_dirty,extents_muzzy,
  430. extents_retained,decay_dirty,decay_muzzy,base,tcache_list}.
  431. {num_ops,num_spin_acq,num_wait,max_wait_time,total_wait_time,max_num_thds,
  432. num_owner_switch}
  433. Portability improvements:
  434. - Improve reentrant allocation support, such that deadlock is less likely if
  435. e.g. a system library call in turn allocates memory. (@davidtgoldblatt,
  436. @interwq)
  437. - Support static linking of jemalloc with glibc. (@djwatson)
  438. Optimizations and refactors:
  439. - Organize virtual memory as "extents" of virtual memory pages, rather than as
  440. naturally aligned "chunks", and store all metadata in arbitrarily distant
  441. locations. This reduces virtual memory external fragmentation, and will
  442. interact better with huge pages (not yet explicitly supported). (@jasone)
  443. - Fold large and huge size classes together; only small and large size classes
  444. remain. (@jasone)
  445. - Unify the allocation paths, and merge most fast-path branching decisions.
  446. (@davidtgoldblatt, @interwq)
  447. - Embed per thread automatic tcache into thread-specific data, which reduces
  448. conditional branches and dereferences. Also reorganize tcache to increase
  449. fast-path data locality. (@interwq)
  450. - Rewrite atomics to closely model the C11 API, convert various
  451. synchronization from mutex-based to atomic, and use the explicit memory
  452. ordering control to resolve various hypothetical races without increasing
  453. synchronization overhead. (@davidtgoldblatt)
  454. - Extensively optimize rtree via various methods:
  455. + Add multiple layers of rtree lookup caching, since rtree lookups are now
  456. part of fast-path deallocation. (@interwq)
  457. + Determine rtree layout at compile time. (@jasone)
  458. + Make the tree shallower for common configurations. (@jasone)
  459. + Embed the root node in the top-level rtree data structure, thus avoiding
  460. one level of indirection. (@jasone)
  461. + Further specialize leaf elements as compared to internal node elements,
  462. and directly embed extent metadata needed for fast-path deallocation.
  463. (@jasone)
  464. + Ignore leading always-zero address bits (architecture-specific).
  465. (@jasone)
  466. - Reorganize headers (ongoing work) to make them hermetic, and disentangle
  467. various module dependencies. (@davidtgoldblatt)
  468. - Convert various internal data structures such as size class metadata from
  469. boot-time-initialized to compile-time-initialized. Propagate resulting data
  470. structure simplifications, such as making arena metadata fixed-size.
  471. (@jasone)
  472. - Simplify size class lookups when constrained to size classes that are
  473. multiples of the page size. This speeds lookups, but the primary benefit is
  474. complexity reduction in code that was the source of numerous regressions.
  475. (@jasone)
  476. - Lock individual extents when possible for localized extent operations,
  477. rather than relying on a top-level arena lock. (@davidtgoldblatt, @jasone)
  478. - Use first fit layout policy instead of best fit, in order to improve
  479. packing. (@jasone)
  480. - If munmap(2) is not in use, use an exponential series to grow each arena's
  481. virtual memory, so that the number of disjoint virtual memory mappings
  482. remains low. (@jasone)
  483. - Implement per arena base allocators, so that arenas never share any virtual
  484. memory pages. (@jasone)
  485. - Automatically generate private symbol name mangling macros. (@jasone)
  486. Incompatible changes:
  487. - Replace chunk hooks with an expanded/normalized set of extent hooks.
  488. (@jasone)
  489. - Remove ratio-based purging. (@jasone)
  490. - Remove --disable-tcache. (@jasone)
  491. - Remove --disable-tls. (@jasone)
  492. - Remove --enable-ivsalloc. (@jasone)
  493. - Remove --with-lg-size-class-group. (@jasone)
  494. - Remove --with-lg-tiny-min. (@jasone)
  495. - Remove --disable-cc-silence. (@jasone)
  496. - Remove --enable-code-coverage. (@jasone)
  497. - Remove --disable-munmap (replaced by opt.retain). (@jasone)
  498. - Remove Valgrind support. (@jasone)
  499. - Remove quarantine support. (@jasone)
  500. - Remove redzone support. (@jasone)
  501. - Remove mallctl interfaces (various authors):
  502. + config.munmap
  503. + config.tcache
  504. + config.tls
  505. + config.valgrind
  506. + opt.lg_chunk
  507. + opt.purge
  508. + opt.lg_dirty_mult
  509. + opt.decay_time
  510. + opt.quarantine
  511. + opt.redzone
  512. + opt.thp
  513. + arena.<i>.lg_dirty_mult
  514. + arena.<i>.decay_time
  515. + arena.<i>.chunk_hooks
  516. + arenas.initialized
  517. + arenas.lg_dirty_mult
  518. + arenas.decay_time
  519. + arenas.bin.<i>.run_size
  520. + arenas.nlruns
  521. + arenas.lrun.<i>.size
  522. + arenas.nhchunks
  523. + arenas.hchunk.<i>.size
  524. + arenas.extend
  525. + stats.cactive
  526. + stats.arenas.<i>.lg_dirty_mult
  527. + stats.arenas.<i>.decay_time
  528. + stats.arenas.<i>.metadata.{mapped,allocated}
  529. + stats.arenas.<i>.{npurge,nmadvise,purged}
  530. + stats.arenas.<i>.huge.{allocated,nmalloc,ndalloc,nrequests}
  531. + stats.arenas.<i>.bins.<j>.{nruns,reruns,curruns}
  532. + stats.arenas.<i>.lruns.<j>.{nmalloc,ndalloc,nrequests,curruns}
  533. + stats.arenas.<i>.hchunks.<j>.{nmalloc,ndalloc,nrequests,curhchunks}
  534. Bug fixes:
  535. - Improve interval-based profile dump triggering to dump only one profile when
  536. a single allocation's size exceeds the interval. (@jasone)
  537. - Use prefixed function names (as controlled by --with-jemalloc-prefix) when
  538. pruning backtrace frames in jeprof. (@jasone)
  539. * 4.5.0 (February 28, 2017)
  540. This is the first release to benefit from much broader continuous integration
  541. testing, thanks to @davidtgoldblatt. Had we had this testing infrastructure
  542. in place for prior releases, it would have caught all of the most serious
  543. regressions fixed by this release.
  544. New features:
  545. - Add --disable-thp and the opt.thp mallctl to provide opt-out mechanisms for
  546. transparent huge page integration. (@jasone)
  547. - Update zone allocator integration to work with macOS 10.12. (@glandium)
  548. - Restructure *CFLAGS configuration, so that CFLAGS behaves typically, and
  549. EXTRA_CFLAGS provides a way to specify e.g. -Werror during building, but not
  550. during configuration. (@jasone, @ronawho)
  551. Bug fixes:
  552. - Fix DSS (sbrk(2)-based) allocation. This regression was first released in
  553. 4.3.0. (@jasone)
  554. - Handle race in per size class utilization computation. This functionality
  555. was first released in 4.0.0. (@interwq)
  556. - Fix lock order reversal during gdump. (@jasone)
  557. - Fix/refactor tcache synchronization. This regression was first released in
  558. 4.0.0. (@jasone)
  559. - Fix various JSON-formatted malloc_stats_print() bugs. This functionality
  560. was first released in 4.3.0. (@jasone)
  561. - Fix huge-aligned allocation. This regression was first released in 4.4.0.
  562. (@jasone)
  563. - When transparent huge page integration is enabled, detect what state pages
  564. start in according to the kernel's current operating mode, and only convert
  565. arena chunks to non-huge during purging if that is not their initial state.
  566. This functionality was first released in 4.4.0. (@jasone)
  567. - Fix lg_chunk clamping for the --enable-cache-oblivious --disable-fill case.
  568. This regression was first released in 4.0.0. (@jasone, @428desmo)
  569. - Properly detect sparc64 when building for Linux. (@glaubitz)
  570. * 4.4.0 (December 3, 2016)
  571. New features:
  572. - Add configure support for *-*-linux-android. (@cferris1000, @jasone)
  573. - Add the --disable-syscall configure option, for use on systems that place
  574. security-motivated limitations on syscall(2). (@jasone)
  575. - Add support for Debian GNU/kFreeBSD. (@thesam)
  576. Optimizations:
  577. - Add extent serial numbers and use them where appropriate as a sort key that
  578. is higher priority than address, so that the allocation policy prefers older
  579. extents. This tends to improve locality (decrease fragmentation) when
  580. memory grows downward. (@jasone)
  581. - Refactor madvise(2) configuration so that MADV_FREE is detected and utilized
  582. on Linux 4.5 and newer. (@jasone)
  583. - Mark partially purged arena chunks as non-huge-page. This improves
  584. interaction with Linux's transparent huge page functionality. (@jasone)
  585. Bug fixes:
  586. - Fix size class computations for edge conditions involving extremely large
  587. allocations. This regression was first released in 4.0.0. (@jasone,
  588. @ingvarha)
  589. - Remove overly restrictive assertions related to the cactive statistic. This
  590. regression was first released in 4.1.0. (@jasone)
  591. - Implement a more reliable detection scheme for os_unfair_lock on macOS.
  592. (@jszakmeister)
  593. * 4.3.1 (November 7, 2016)
  594. Bug fixes:
  595. - Fix a severe virtual memory leak. This regression was first released in
  596. 4.3.0. (@interwq, @jasone)
  597. - Refactor atomic and prng APIs to restore support for 32-bit platforms that
  598. use pre-C11 toolchains, e.g. FreeBSD's mips. (@jasone)
  599. * 4.3.0 (November 4, 2016)
  600. This is the first release that passes the test suite for multiple Windows
  601. configurations, thanks in large part to @glandium setting up continuous
  602. integration via AppVeyor (and Travis CI for Linux and OS X).
  603. New features:
  604. - Add "J" (JSON) support to malloc_stats_print(). (@jasone)
  605. - Add Cray compiler support. (@ronawho)
  606. Optimizations:
  607. - Add/use adaptive spinning for bootstrapping and radix tree node
  608. initialization. (@jasone)
  609. Bug fixes:
  610. - Fix large allocation to search starting in the optimal size class heap,
  611. which can substantially reduce virtual memory churn and fragmentation. This
  612. regression was first released in 4.0.0. (@mjp41, @jasone)
  613. - Fix stats.arenas.<i>.nthreads accounting. (@interwq)
  614. - Fix and simplify decay-based purging. (@jasone)
  615. - Make DSS (sbrk(2)-related) operations lockless, which resolves potential
  616. deadlocks during thread exit. (@jasone)
  617. - Fix over-sized allocation of radix tree leaf nodes. (@mjp41, @ogaun,
  618. @jasone)
  619. - Fix over-sized allocation of arena_t (plus associated stats) data
  620. structures. (@jasone, @interwq)
  621. - Fix EXTRA_CFLAGS to not affect configuration. (@jasone)
  622. - Fix a Valgrind integration bug. (@ronawho)
  623. - Disallow 0x5a junk filling when running in Valgrind. (@jasone)
  624. - Fix a file descriptor leak on Linux. This regression was first released in
  625. 4.2.0. (@vsarunas, @jasone)
  626. - Fix static linking of jemalloc with glibc. (@djwatson)
  627. - Use syscall(2) rather than {open,read,close}(2) during boot on Linux. This
  628. works around other libraries' system call wrappers performing reentrant
  629. allocation. (@kspinka, @Whissi, @jasone)
  630. - Fix OS X default zone replacement to work with OS X 10.12. (@glandium,
  631. @jasone)
  632. - Fix cached memory management to avoid needless commit/decommit operations
  633. during purging, which resolves permanent virtual memory map fragmentation
  634. issues on Windows. (@mjp41, @jasone)
  635. - Fix TSD fetches to avoid (recursive) allocation. This is relevant to
  636. non-TLS and Windows configurations. (@jasone)
  637. - Fix malloc_conf overriding to work on Windows. (@jasone)
  638. - Forcibly disable lazy-lock on Windows (was forcibly *enabled*). (@jasone)
  639. * 4.2.1 (June 8, 2016)
  640. Bug fixes:
  641. - Fix bootstrapping issues for configurations that require allocation during
  642. tsd initialization (e.g. --disable-tls). (@cferris1000, @jasone)
  643. - Fix gettimeofday() version of nstime_update(). (@ronawho)
  644. - Fix Valgrind regressions in calloc() and chunk_alloc_wrapper(). (@ronawho)
  645. - Fix potential VM map fragmentation regression. (@jasone)
  646. - Fix opt_zero-triggered in-place huge reallocation zeroing. (@jasone)
  647. - Fix heap profiling context leaks in reallocation edge cases. (@jasone)
  648. * 4.2.0 (May 12, 2016)
  649. New features:
  650. - Add the arena.<i>.reset mallctl, which makes it possible to discard all of
  651. an arena's allocations in a single operation. (@jasone)
  652. - Add the stats.retained and stats.arenas.<i>.retained statistics. (@jasone)
  653. - Add the --with-version configure option. (@jasone)
  654. - Support --with-lg-page values larger than actual page size. (@jasone)
  655. Optimizations:
  656. - Use pairing heaps rather than red-black trees for various hot data
  657. structures. (@djwatson, @jasone)
  658. - Streamline fast paths of rtree operations. (@jasone)
  659. - Optimize the fast paths of calloc() and [m,d,sd]allocx(). (@jasone)
  660. - Decommit unused virtual memory if the OS does not overcommit. (@jasone)
  661. - Specify MAP_NORESERVE on Linux if [heuristic] overcommit is active, in order
  662. to avoid unfortunate interactions during fork(2). (@jasone)
  663. Bug fixes:
  664. - Fix chunk accounting related to triggering gdump profiles. (@jasone)
  665. - Link against librt for clock_gettime(2) if glibc < 2.17. (@jasone)
  666. - Scale leak report summary according to sampling probability. (@jasone)
  667. * 4.1.1 (May 3, 2016)
  668. This bugfix release resolves a variety of mostly minor issues, though the
  669. bitmap fix is critical for 64-bit Windows.
  670. Bug fixes:
  671. - Fix the linear scan version of bitmap_sfu() to shift by the proper amount
  672. even when sizeof(long) is not the same as sizeof(void *), as on 64-bit
  673. Windows. (@jasone)
  674. - Fix hashing functions to avoid unaligned memory accesses (and resulting
  675. crashes). This is relevant at least to some ARM-based platforms.
  676. (@rkmisra)
  677. - Fix fork()-related lock rank ordering reversals. These reversals were
  678. unlikely to cause deadlocks in practice except when heap profiling was
  679. enabled and active. (@jasone)
  680. - Fix various chunk leaks in OOM code paths. (@jasone)
  681. - Fix malloc_stats_print() to print opt.narenas correctly. (@jasone)
  682. - Fix MSVC-specific build/test issues. (@rustyx, @yuslepukhin)
  683. - Fix a variety of test failures that were due to test fragility rather than
  684. core bugs. (@jasone)
  685. * 4.1.0 (February 28, 2016)
  686. This release is primarily about optimizations, but it also incorporates a lot
  687. of portability-motivated refactoring and enhancements. Many people worked on
  688. this release, to an extent that even with the omission here of minor changes
  689. (see git revision history), and of the people who reported and diagnosed
  690. issues, so much of the work was contributed that starting with this release,
  691. changes are annotated with author credits to help reflect the collaborative
  692. effort involved.
  693. New features:
  694. - Implement decay-based unused dirty page purging, a major optimization with
  695. mallctl API impact. This is an alternative to the existing ratio-based
  696. unused dirty page purging, and is intended to eventually become the sole
  697. purging mechanism. New mallctls:
  698. + opt.purge
  699. + opt.decay_time
  700. + arena.<i>.decay
  701. + arena.<i>.decay_time
  702. + arenas.decay_time
  703. + stats.arenas.<i>.decay_time
  704. (@jasone, @cevans87)
  705. - Add --with-malloc-conf, which makes it possible to embed a default
  706. options string during configuration. This was motivated by the desire to
  707. specify --with-malloc-conf=purge:decay , since the default must remain
  708. purge:ratio until the 5.0.0 release. (@jasone)
  709. - Add MS Visual Studio 2015 support. (@rustyx, @yuslepukhin)
  710. - Make *allocx() size class overflow behavior defined. The maximum
  711. size class is now less than PTRDIFF_MAX to protect applications against
  712. numerical overflow, and all allocation functions are guaranteed to indicate
  713. errors rather than potentially crashing if the request size exceeds the
  714. maximum size class. (@jasone)
  715. - jeprof:
  716. + Add raw heap profile support. (@jasone)
  717. + Add --retain and --exclude for backtrace symbol filtering. (@jasone)
  718. Optimizations:
  719. - Optimize the fast path to combine various bootstrapping and configuration
  720. checks and execute more streamlined code in the common case. (@interwq)
  721. - Use linear scan for small bitmaps (used for small object tracking). In
  722. addition to speeding up bitmap operations on 64-bit systems, this reduces
  723. allocator metadata overhead by approximately 0.2%. (@djwatson)
  724. - Separate arena_avail trees, which substantially speeds up run tree
  725. operations. (@djwatson)
  726. - Use memoization (boot-time-computed table) for run quantization. Separate
  727. arena_avail trees reduced the importance of this optimization. (@jasone)
  728. - Attempt mmap-based in-place huge reallocation. This can dramatically speed
  729. up incremental huge reallocation. (@jasone)
  730. Incompatible changes:
  731. - Make opt.narenas unsigned rather than size_t. (@jasone)
  732. Bug fixes:
  733. - Fix stats.cactive accounting regression. (@rustyx, @jasone)
  734. - Handle unaligned keys in hash(). This caused problems for some ARM systems.
  735. (@jasone, @cferris1000)
  736. - Refactor arenas array. In addition to fixing a fork-related deadlock, this
  737. makes arena lookups faster and simpler. (@jasone)
  738. - Move retained memory allocation out of the default chunk allocation
  739. function, to a location that gets executed even if the application installs
  740. a custom chunk allocation function. This resolves a virtual memory leak.
  741. (@buchgr)
  742. - Fix a potential tsd cleanup leak. (@cferris1000, @jasone)
  743. - Fix run quantization. In practice this bug had no impact unless
  744. applications requested memory with alignment exceeding one page.
  745. (@jasone, @djwatson)
  746. - Fix LinuxThreads-specific bootstrapping deadlock. (Cosmin Paraschiv)
  747. - jeprof:
  748. + Don't discard curl options if timeout is not defined. (@djwatson)
  749. + Detect failed profile fetches. (@djwatson)
  750. - Fix stats.arenas.<i>.{dss,lg_dirty_mult,decay_time,pactive,pdirty} for
  751. --disable-stats case. (@jasone)
  752. * 4.0.4 (October 24, 2015)
  753. This bugfix release fixes another xallocx() regression. No other regressions
  754. have come to light in over a month, so this is likely a good starting point
  755. for people who prefer to wait for "dot one" releases with all the major issues
  756. shaken out.
  757. Bug fixes:
  758. - Fix xallocx(..., MALLOCX_ZERO to zero the last full trailing page of large
  759. allocations that have been randomly assigned an offset of 0 when
  760. --enable-cache-oblivious configure option is enabled.
  761. * 4.0.3 (September 24, 2015)
  762. This bugfix release continues the trend of xallocx() and heap profiling fixes.
  763. Bug fixes:
  764. - Fix xallocx(..., MALLOCX_ZERO) to zero all trailing bytes of large
  765. allocations when --enable-cache-oblivious configure option is enabled.
  766. - Fix xallocx(..., MALLOCX_ZERO) to zero trailing bytes of huge allocations
  767. when resizing from/to a size class that is not a multiple of the chunk size.
  768. - Fix prof_tctx_dump_iter() to filter out nodes that were created after heap
  769. profile dumping started.
  770. - Work around a potentially bad thread-specific data initialization
  771. interaction with NPTL (glibc's pthreads implementation).
  772. * 4.0.2 (September 21, 2015)
  773. This bugfix release addresses a few bugs specific to heap profiling.
  774. Bug fixes:
  775. - Fix ixallocx_prof_sample() to never modify nor create sampled small
  776. allocations. xallocx() is in general incapable of moving small allocations,
  777. so this fix removes buggy code without loss of generality.
  778. - Fix irallocx_prof_sample() to always allocate large regions, even when
  779. alignment is non-zero.
  780. - Fix prof_alloc_rollback() to read tdata from thread-specific data rather
  781. than dereferencing a potentially invalid tctx.
  782. * 4.0.1 (September 15, 2015)
  783. This is a bugfix release that is somewhat high risk due to the amount of
  784. refactoring required to address deep xallocx() problems. As a side effect of
  785. these fixes, xallocx() now tries harder to partially fulfill requests for
  786. optional extra space. Note that a couple of minor heap profiling
  787. optimizations are included, but these are better thought of as performance
  788. fixes that were integral to discovering most of the other bugs.
  789. Optimizations:
  790. - Avoid a chunk metadata read in arena_prof_tctx_set(), since it is in the
  791. fast path when heap profiling is enabled. Additionally, split a special
  792. case out into arena_prof_tctx_reset(), which also avoids chunk metadata
  793. reads.
  794. - Optimize irallocx_prof() to optimistically update the sampler state. The
  795. prior implementation appears to have been a holdover from when
  796. rallocx()/xallocx() functionality was combined as rallocm().
  797. Bug fixes:
  798. - Fix TLS configuration such that it is enabled by default for platforms on
  799. which it works correctly.
  800. - Fix arenas_cache_cleanup() and arena_get_hard() to handle
  801. allocation/deallocation within the application's thread-specific data
  802. cleanup functions even after arenas_cache is torn down.
  803. - Fix xallocx() bugs related to size+extra exceeding HUGE_MAXCLASS.
  804. - Fix chunk purge hook calls for in-place huge shrinking reallocation to
  805. specify the old chunk size rather than the new chunk size. This bug caused
  806. no correctness issues for the default chunk purge function, but was
  807. visible to custom functions set via the "arena.<i>.chunk_hooks" mallctl.
  808. - Fix heap profiling bugs:
  809. + Fix heap profiling to distinguish among otherwise identical sample sites
  810. with interposed resets (triggered via the "prof.reset" mallctl). This bug
  811. could cause data structure corruption that would most likely result in a
  812. segfault.
  813. + Fix irealloc_prof() to prof_alloc_rollback() on OOM.
  814. + Make one call to prof_active_get_unlocked() per allocation event, and use
  815. the result throughout the relevant functions that handle an allocation
  816. event. Also add a missing check in prof_realloc(). These fixes protect
  817. allocation events against concurrent prof_active changes.
  818. + Fix ixallocx_prof() to pass usize_max and zero to ixallocx_prof_sample()
  819. in the correct order.
  820. + Fix prof_realloc() to call prof_free_sampled_object() after calling
  821. prof_malloc_sample_object(). Prior to this fix, if tctx and old_tctx were
  822. the same, the tctx could have been prematurely destroyed.
  823. - Fix portability bugs:
  824. + Don't bitshift by negative amounts when encoding/decoding run sizes in
  825. chunk header maps. This affected systems with page sizes greater than 8
  826. KiB.
  827. + Rename index_t to szind_t to avoid an existing type on Solaris.
  828. + Add JEMALLOC_CXX_THROW to the memalign() function prototype, in order to
  829. match glibc and avoid compilation errors when including both
  830. jemalloc/jemalloc.h and malloc.h in C++ code.
  831. + Don't assume that /bin/sh is appropriate when running size_classes.sh
  832. during configuration.
  833. + Consider __sparcv9 a synonym for __sparc64__ when defining LG_QUANTUM.
  834. + Link tests to librt if it contains clock_gettime(2).
  835. * 4.0.0 (August 17, 2015)
  836. This version contains many speed and space optimizations, both minor and
  837. major. The major themes are generalization, unification, and simplification.
  838. Although many of these optimizations cause no visible behavior change, their
  839. cumulative effect is substantial.
  840. New features:
  841. - Normalize size class spacing to be consistent across the complete size
  842. range. By default there are four size classes per size doubling, but this
  843. is now configurable via the --with-lg-size-class-group option. Also add the
  844. --with-lg-page, --with-lg-page-sizes, --with-lg-quantum, and
  845. --with-lg-tiny-min options, which can be used to tweak page and size class
  846. settings. Impacts:
  847. + Worst case performance for incrementally growing/shrinking reallocation
  848. is improved because there are far fewer size classes, and therefore
  849. copying happens less often.
  850. + Internal fragmentation is limited to 20% for all but the smallest size
  851. classes (those less than four times the quantum). (1B + 4 KiB)
  852. and (1B + 4 MiB) previously suffered nearly 50% internal fragmentation.
  853. + Chunk fragmentation tends to be lower because there are fewer distinct run
  854. sizes to pack.
  855. - Add support for explicit tcaches. The "tcache.create", "tcache.flush", and
  856. "tcache.destroy" mallctls control tcache lifetime and flushing, and the
  857. MALLOCX_TCACHE(tc) and MALLOCX_TCACHE_NONE flags to the *allocx() API
  858. control which tcache is used for each operation.
  859. - Implement per thread heap profiling, as well as the ability to
  860. enable/disable heap profiling on a per thread basis. Add the "prof.reset",
  861. "prof.lg_sample", "thread.prof.name", "thread.prof.active",
  862. "opt.prof_thread_active_init", "prof.thread_active_init", and
  863. "thread.prof.active" mallctls.
  864. - Add support for per arena application-specified chunk allocators, configured
  865. via the "arena.<i>.chunk_hooks" mallctl.
  866. - Refactor huge allocation to be managed by arenas, so that arenas now
  867. function as general purpose independent allocators. This is important in
  868. the context of user-specified chunk allocators, aside from the scalability
  869. benefits. Related new statistics:
  870. + The "stats.arenas.<i>.huge.allocated", "stats.arenas.<i>.huge.nmalloc",
  871. "stats.arenas.<i>.huge.ndalloc", and "stats.arenas.<i>.huge.nrequests"
  872. mallctls provide high level per arena huge allocation statistics.
  873. + The "arenas.nhchunks", "arenas.hchunk.<i>.size",
  874. "stats.arenas.<i>.hchunks.<j>.nmalloc",
  875. "stats.arenas.<i>.hchunks.<j>.ndalloc",
  876. "stats.arenas.<i>.hchunks.<j>.nrequests", and
  877. "stats.arenas.<i>.hchunks.<j>.curhchunks" mallctls provide per size class
  878. statistics.
  879. - Add the 'util' column to malloc_stats_print() output, which reports the
  880. proportion of available regions that are currently in use for each small
  881. size class.
  882. - Add "alloc" and "free" modes for for junk filling (see the "opt.junk"
  883. mallctl), so that it is possible to separately enable junk filling for
  884. allocation versus deallocation.
  885. - Add the jemalloc-config script, which provides information about how
  886. jemalloc was configured, and how to integrate it into application builds.
  887. - Add metadata statistics, which are accessible via the "stats.metadata",
  888. "stats.arenas.<i>.metadata.mapped", and
  889. "stats.arenas.<i>.metadata.allocated" mallctls.
  890. - Add the "stats.resident" mallctl, which reports the upper limit of
  891. physically resident memory mapped by the allocator.
  892. - Add per arena control over unused dirty page purging, via the
  893. "arenas.lg_dirty_mult", "arena.<i>.lg_dirty_mult", and
  894. "stats.arenas.<i>.lg_dirty_mult" mallctls.
  895. - Add the "prof.gdump" mallctl, which makes it possible to toggle the gdump
  896. feature on/off during program execution.
  897. - Add sdallocx(), which implements sized deallocation. The primary
  898. optimization over dallocx() is the removal of a metadata read, which often
  899. suffers an L1 cache miss.
  900. - Add missing header includes in jemalloc/jemalloc.h, so that applications
  901. only have to #include <jemalloc/jemalloc.h>.
  902. - Add support for additional platforms:
  903. + Bitrig
  904. + Cygwin
  905. + DragonFlyBSD
  906. + iOS
  907. + OpenBSD
  908. + OpenRISC/or1k
  909. Optimizations:
  910. - Maintain dirty runs in per arena LRUs rather than in per arena trees of
  911. dirty-run-containing chunks. In practice this change significantly reduces
  912. dirty page purging volume.
  913. - Integrate whole chunks into the unused dirty page purging machinery. This
  914. reduces the cost of repeated huge allocation/deallocation, because it
  915. effectively introduces a cache of chunks.
  916. - Split the arena chunk map into two separate arrays, in order to increase
  917. cache locality for the frequently accessed bits.
  918. - Move small run metadata out of runs, into arena chunk headers. This reduces
  919. run fragmentation, smaller runs reduce external fragmentation for small size
  920. classes, and packed (less uniformly aligned) metadata layout improves CPU
  921. cache set distribution.
  922. - Randomly distribute large allocation base pointer alignment relative to page
  923. boundaries in order to more uniformly utilize CPU cache sets. This can be
  924. disabled via the --disable-cache-oblivious configure option, and queried via
  925. the "config.cache_oblivious" mallctl.
  926. - Micro-optimize the fast paths for the public API functions.
  927. - Refactor thread-specific data to reside in a single structure. This assures
  928. that only a single TLS read is necessary per call into the public API.
  929. - Implement in-place huge allocation growing and shrinking.
  930. - Refactor rtree (radix tree for chunk lookups) to be lock-free, and make
  931. additional optimizations that reduce maximum lookup depth to one or two
  932. levels. This resolves what was a concurrency bottleneck for per arena huge
  933. allocation, because a global data structure is critical for determining
  934. which arenas own which huge allocations.
  935. Incompatible changes:
  936. - Replace --enable-cc-silence with --disable-cc-silence to suppress spurious
  937. warnings by default.
  938. - Assure that the constness of malloc_usable_size()'s return type matches that
  939. of the system implementation.
  940. - Change the heap profile dump format to support per thread heap profiling,
  941. rename pprof to jeprof, and enhance it with the --thread=<n> option. As a
  942. result, the bundled jeprof must now be used rather than the upstream
  943. (gperftools) pprof.
  944. - Disable "opt.prof_final" by default, in order to avoid atexit(3), which can
  945. internally deadlock on some platforms.
  946. - Change the "arenas.nlruns" mallctl type from size_t to unsigned.
  947. - Replace the "stats.arenas.<i>.bins.<j>.allocated" mallctl with
  948. "stats.arenas.<i>.bins.<j>.curregs".
  949. - Ignore MALLOC_CONF in set{uid,gid,cap} binaries.
  950. - Ignore MALLOCX_ARENA(a) in dallocx(), in favor of using the
  951. MALLOCX_TCACHE(tc) and MALLOCX_TCACHE_NONE flags to control tcache usage.
  952. Removed features:
  953. - Remove the *allocm() API, which is superseded by the *allocx() API.
  954. - Remove the --enable-dss options, and make dss non-optional on all platforms
  955. which support sbrk(2).
  956. - Remove the "arenas.purge" mallctl, which was obsoleted by the
  957. "arena.<i>.purge" mallctl in 3.1.0.
  958. - Remove the unnecessary "opt.valgrind" mallctl; jemalloc automatically
  959. detects whether it is running inside Valgrind.
  960. - Remove the "stats.huge.allocated", "stats.huge.nmalloc", and
  961. "stats.huge.ndalloc" mallctls.
  962. - Remove the --enable-mremap option.
  963. - Remove the "stats.chunks.current", "stats.chunks.total", and
  964. "stats.chunks.high" mallctls.
  965. Bug fixes:
  966. - Fix the cactive statistic to decrease (rather than increase) when active
  967. memory decreases. This regression was first released in 3.5.0.
  968. - Fix OOM handling in memalign() and valloc(). A variant of this bug existed
  969. in all releases since 2.0.0, which introduced these functions.
  970. - Fix an OOM-related regression in arena_tcache_fill_small(), which could
  971. cause cache corruption on OOM. This regression was present in all releases
  972. from 2.2.0 through 3.6.0.
  973. - Fix size class overflow handling for malloc(), posix_memalign(), memalign(),
  974. calloc(), and realloc() when profiling is enabled.
  975. - Fix the "arena.<i>.dss" mallctl to return an error if "primary" or
  976. "secondary" precedence is specified, but sbrk(2) is not supported.
  977. - Fix fallback lg_floor() implementations to handle extremely large inputs.
  978. - Ensure the default purgeable zone is after the default zone on OS X.
  979. - Fix latent bugs in atomic_*().
  980. - Fix the "arena.<i>.dss" mallctl to handle read-only calls.
  981. - Fix tls_model configuration to enable the initial-exec model when possible.
  982. - Mark malloc_conf as a weak symbol so that the application can override it.
  983. - Correctly detect glibc's adaptive pthread mutexes.
  984. - Fix the --without-export configure option.
  985. * 3.6.0 (March 31, 2014)
  986. This version contains a critical bug fix for a regression present in 3.5.0 and
  987. 3.5.1.
  988. Bug fixes:
  989. - Fix a regression in arena_chunk_alloc() that caused crashes during
  990. small/large allocation if chunk allocation failed. In the absence of this
  991. bug, chunk allocation failure would result in allocation failure, e.g. NULL
  992. return from malloc(). This regression was introduced in 3.5.0.
  993. - Fix backtracing for gcc intrinsics-based backtracing by specifying
  994. -fno-omit-frame-pointer to gcc. Note that the application (and all the
  995. libraries it links to) must also be compiled with this option for
  996. backtracing to be reliable.
  997. - Use dss allocation precedence for huge allocations as well as small/large
  998. allocations.
  999. - Fix test assertion failure message formatting. This bug did not manifest on
  1000. x86_64 systems because of implementation subtleties in va_list.
  1001. - Fix inconsequential test failures for hash and SFMT code.
  1002. New features:
  1003. - Support heap profiling on FreeBSD. This feature depends on the proc
  1004. filesystem being mounted during heap profile dumping.
  1005. * 3.5.1 (February 25, 2014)
  1006. This version primarily addresses minor bugs in test code.
  1007. Bug fixes:
  1008. - Configure Solaris/Illumos to use MADV_FREE.
  1009. - Fix junk filling for mremap(2)-based huge reallocation. This is only
  1010. relevant if configuring with the --enable-mremap option specified.
  1011. - Avoid compilation failure if 'restrict' C99 keyword is not supported by the
  1012. compiler.
  1013. - Add a configure test for SSE2 rather than assuming it is usable on i686
  1014. systems. This fixes test compilation errors, especially on 32-bit Linux
  1015. systems.
  1016. - Fix mallctl argument size mismatches (size_t vs. uint64_t) in the stats unit
  1017. test.
  1018. - Fix/remove flawed alignment-related overflow tests.
  1019. - Prevent compiler optimizations that could change backtraces in the
  1020. prof_accum unit test.
  1021. * 3.5.0 (January 22, 2014)
  1022. This version focuses on refactoring and automated testing, though it also
  1023. includes some non-trivial heap profiling optimizations not mentioned below.
  1024. New features:
  1025. - Add the *allocx() API, which is a successor to the experimental *allocm()
  1026. API. The *allocx() functions are slightly simpler to use because they have
  1027. fewer parameters, they directly return the results of primary interest, and
  1028. mallocx()/rallocx() avoid the strict aliasing pitfall that
  1029. allocm()/rallocm() share with posix_memalign(). Note that *allocm() is
  1030. slated for removal in the next non-bugfix release.
  1031. - Add support for LinuxThreads.
  1032. Bug fixes:
  1033. - Unless heap profiling is enabled, disable floating point code and don't link
  1034. with libm. This, in combination with e.g. EXTRA_CFLAGS=-mno-sse on x64
  1035. systems, makes it possible to completely disable floating point register
  1036. use. Some versions of glibc neglect to save/restore caller-saved floating
  1037. point registers during dynamic lazy symbol loading, and the symbol loading
  1038. code uses whatever malloc the application happens to have linked/loaded
  1039. with, the result being potential floating point register corruption.
  1040. - Report ENOMEM rather than EINVAL if an OOM occurs during heap profiling
  1041. backtrace creation in imemalign(). This bug impacted posix_memalign() and
  1042. aligned_alloc().
  1043. - Fix a file descriptor leak in a prof_dump_maps() error path.
  1044. - Fix prof_dump() to close the dump file descriptor for all relevant error
  1045. paths.
  1046. - Fix rallocm() to use the arena specified by the ALLOCM_ARENA(s) flag for
  1047. allocation, not just deallocation.
  1048. - Fix a data race for large allocation stats counters.
  1049. - Fix a potential infinite loop during thread exit. This bug occurred on
  1050. Solaris, and could affect other platforms with similar pthreads TSD
  1051. implementations.
  1052. - Don't junk-fill reallocations unless usable size changes. This fixes a
  1053. violation of the *allocx()/*allocm() semantics.
  1054. - Fix growing large reallocation to junk fill new space.
  1055. - Fix huge deallocation to junk fill when munmap is disabled.
  1056. - Change the default private namespace prefix from empty to je_, and change
  1057. --with-private-namespace-prefix so that it prepends an additional prefix
  1058. rather than replacing je_. This reduces the likelihood of applications
  1059. which statically link jemalloc experiencing symbol name collisions.
  1060. - Add missing private namespace mangling (relevant when
  1061. --with-private-namespace is specified).
  1062. - Add and use JEMALLOC_INLINE_C so that static inline functions are marked as
  1063. static even for debug builds.
  1064. - Add a missing mutex unlock in a malloc_init_hard() error path. In practice
  1065. this error path is never executed.
  1066. - Fix numerous bugs in malloc_strotumax() error handling/reporting. These
  1067. bugs had no impact except for malformed inputs.
  1068. - Fix numerous bugs in malloc_snprintf(). These bugs were not exercised by
  1069. existing calls, so they had no impact.
  1070. * 3.4.1 (October 20, 2013)
  1071. Bug fixes:
  1072. - Fix a race in the "arenas.extend" mallctl that could cause memory corruption
  1073. of internal data structures and subsequent crashes.
  1074. - Fix Valgrind integration flaws that caused Valgrind warnings about reads of
  1075. uninitialized memory in:
  1076. + arena chunk headers
  1077. + internal zero-initialized data structures (relevant to tcache and prof
  1078. code)
  1079. - Preserve errno during the first allocation. A readlink(2) call during
  1080. initialization fails unless /etc/malloc.conf exists, so errno was typically
  1081. set during the first allocation prior to this fix.
  1082. - Fix compilation warnings reported by gcc 4.8.1.
  1083. * 3.4.0 (June 2, 2013)
  1084. This version is essentially a small bugfix release, but the addition of
  1085. aarch64 support requires that the minor version be incremented.
  1086. Bug fixes:
  1087. - Fix race-triggered deadlocks in chunk_record(). These deadlocks were
  1088. typically triggered by multiple threads concurrently deallocating huge
  1089. objects.
  1090. New features:
  1091. - Add support for the aarch64 architecture.
  1092. * 3.3.1 (March 6, 2013)
  1093. This version fixes bugs that are typically encountered only when utilizing
  1094. custom run-time options.
  1095. Bug fixes:
  1096. - Fix a locking order bug that could cause deadlock during fork if heap
  1097. profiling were enabled.
  1098. - Fix a chunk recycling bug that could cause the allocator to lose track of
  1099. whether a chunk was zeroed. On FreeBSD, NetBSD, and OS X, it could cause
  1100. corruption if allocating via sbrk(2) (unlikely unless running with the
  1101. "dss:primary" option specified). This was completely harmless on Linux
  1102. unless using mlockall(2) (and unlikely even then, unless the
  1103. --disable-munmap configure option or the "dss:primary" option was
  1104. specified). This regression was introduced in 3.1.0 by the
  1105. mlockall(2)/madvise(2) interaction fix.
  1106. - Fix TLS-related memory corruption that could occur during thread exit if the
  1107. thread never allocated memory. Only the quarantine and prof facilities were
  1108. susceptible.
  1109. - Fix two quarantine bugs:
  1110. + Internal reallocation of the quarantined object array leaked the old
  1111. array.
  1112. + Reallocation failure for internal reallocation of the quarantined object
  1113. array (very unlikely) resulted in memory corruption.
  1114. - Fix Valgrind integration to annotate all internally allocated memory in a
  1115. way that keeps Valgrind happy about internal data structure access.
  1116. - Fix building for s390 systems.
  1117. * 3.3.0 (January 23, 2013)
  1118. This version includes a few minor performance improvements in addition to the
  1119. listed new features and bug fixes.
  1120. New features:
  1121. - Add clipping support to lg_chunk option processing.
  1122. - Add the --enable-ivsalloc option.
  1123. - Add the --without-export option.
  1124. - Add the --disable-zone-allocator option.
  1125. Bug fixes:
  1126. - Fix "arenas.extend" mallctl to output the number of arenas.
  1127. - Fix chunk_recycle() to unconditionally inform Valgrind that returned memory
  1128. is undefined.
  1129. - Fix build break on FreeBSD related to alloca.h.
  1130. * 3.2.0 (November 9, 2012)
  1131. In addition to a couple of bug fixes, this version modifies page run
  1132. allocation and dirty page purging algorithms in order to better control
  1133. page-level virtual memory fragmentation.
  1134. Incompatible changes:
  1135. - Change the "opt.lg_dirty_mult" default from 5 to 3 (32:1 to 8:1).
  1136. Bug fixes:
  1137. - Fix dss/mmap allocation precedence code to use recyclable mmap memory only
  1138. after primary dss allocation fails.
  1139. - Fix deadlock in the "arenas.purge" mallctl. This regression was introduced
  1140. in 3.1.0 by the addition of the "arena.<i>.purge" mallctl.
  1141. * 3.1.0 (October 16, 2012)
  1142. New features:
  1143. - Auto-detect whether running inside Valgrind, thus removing the need to
  1144. manually specify MALLOC_CONF=valgrind:true.
  1145. - Add the "arenas.extend" mallctl, which allows applications to create
  1146. manually managed arenas.
  1147. - Add the ALLOCM_ARENA() flag for {,r,d}allocm().
  1148. - Add the "opt.dss", "arena.<i>.dss", and "stats.arenas.<i>.dss" mallctls,
  1149. which provide control over dss/mmap precedence.
  1150. - Add the "arena.<i>.purge" mallctl, which obsoletes "arenas.purge".
  1151. - Define LG_QUANTUM for hppa.
  1152. Incompatible changes:
  1153. - Disable tcache by default if running inside Valgrind, in order to avoid
  1154. making unallocated objects appear reachable to Valgrind.
  1155. - Drop const from malloc_usable_size() argument on Linux.
  1156. Bug fixes:
  1157. - Fix heap profiling crash if sampled object is freed via realloc(p, 0).
  1158. - Remove const from __*_hook variable declarations, so that glibc can modify
  1159. them during process forking.
  1160. - Fix mlockall(2)/madvise(2) interaction.
  1161. - Fix fork(2)-related deadlocks.
  1162. - Fix error return value for "thread.tcache.enabled" mallctl.
  1163. * 3.0.0 (May 11, 2012)
  1164. Although this version adds some major new features, the primary focus is on
  1165. internal code cleanup that facilitates maintainability and portability, most
  1166. of which is not reflected in the ChangeLog. This is the first release to
  1167. incorporate substantial contributions from numerous other developers, and the
  1168. result is a more broadly useful allocator (see the git revision history for
  1169. contribution details). Note that the license has been unified, thanks to
  1170. Facebook granting a license under the same terms as the other copyright
  1171. holders (see COPYING).
  1172. New features:
  1173. - Implement Valgrind support, redzones, and quarantine.
  1174. - Add support for additional platforms:
  1175. + FreeBSD
  1176. + Mac OS X Lion
  1177. + MinGW
  1178. + Windows (no support yet for replacing the system malloc)
  1179. - Add support for additional architectures:
  1180. + MIPS
  1181. + SH4
  1182. + Tilera
  1183. - Add support for cross compiling.
  1184. - Add nallocm(), which rounds a request size up to the nearest size class
  1185. without actually allocating.
  1186. - Implement aligned_alloc() (blame C11).
  1187. - Add the "thread.tcache.enabled" mallctl.
  1188. - Add the "opt.prof_final" mallctl.
  1189. - Update pprof (from gperftools 2.0).
  1190. - Add the --with-mangling option.
  1191. - Add the --disable-experimental option.
  1192. - Add the --disable-munmap option, and make it the default on Linux.
  1193. - Add the --enable-mremap option, which disables use of mremap(2) by default.
  1194. Incompatible changes:
  1195. - Enable stats by default.
  1196. - Enable fill by default.
  1197. - Disable lazy locking by default.
  1198. - Rename the "tcache.flush" mallctl to "thread.tcache.flush".
  1199. - Rename the "arenas.pagesize" mallctl to "arenas.page".
  1200. - Change the "opt.lg_prof_sample" default from 0 to 19 (1 B to 512 KiB).
  1201. - Change the "opt.prof_accum" default from true to false.
  1202. Removed features:
  1203. - Remove the swap feature, including the "config.swap", "swap.avail",
  1204. "swap.prezeroed", "swap.nfds", and "swap.fds" mallctls.
  1205. - Remove highruns statistics, including the
  1206. "stats.arenas.<i>.bins.<j>.highruns" and
  1207. "stats.arenas.<i>.lruns.<j>.highruns" mallctls.
  1208. - As part of small size class refactoring, remove the "opt.lg_[qc]space_max",
  1209. "arenas.cacheline", "arenas.subpage", "arenas.[tqcs]space_{min,max}", and
  1210. "arenas.[tqcs]bins" mallctls.
  1211. - Remove the "arenas.chunksize" mallctl.
  1212. - Remove the "opt.lg_prof_tcmax" option.
  1213. - Remove the "opt.lg_prof_bt_max" option.
  1214. - Remove the "opt.lg_tcache_gc_sweep" option.
  1215. - Remove the --disable-tiny option, including the "config.tiny" mallctl.
  1216. - Remove the --enable-dynamic-page-shift configure option.
  1217. - Remove the --enable-sysv configure option.
  1218. Bug fixes:
  1219. - Fix a statistics-related bug in the "thread.arena" mallctl that could cause
  1220. invalid statistics and crashes.
  1221. - Work around TLS deallocation via free() on Linux. This bug could cause
  1222. write-after-free memory corruption.
  1223. - Fix a potential deadlock that could occur during interval- and
  1224. growth-triggered heap profile dumps.
  1225. - Fix large calloc() zeroing bugs due to dropping chunk map unzeroed flags.
  1226. - Fix chunk_alloc_dss() to stop claiming memory is zeroed. This bug could
  1227. cause memory corruption and crashes with --enable-dss specified.
  1228. - Fix fork-related bugs that could cause deadlock in children between fork
  1229. and exec.
  1230. - Fix malloc_stats_print() to honor 'b' and 'l' in the opts parameter.
  1231. - Fix realloc(p, 0) to act like free(p).
  1232. - Do not enforce minimum alignment in memalign().
  1233. - Check for NULL pointer in malloc_usable_size().
  1234. - Fix an off-by-one heap profile statistics bug that could be observed in
  1235. interval- and growth-triggered heap profiles.
  1236. - Fix the "epoch" mallctl to update cached stats even if the passed in epoch
  1237. is 0.
  1238. - Fix bin->runcur management to fix a layout policy bug. This bug did not
  1239. affect correctness.
  1240. - Fix a bug in choose_arena_hard() that potentially caused more arenas to be
  1241. initialized than necessary.
  1242. - Add missing "opt.lg_tcache_max" mallctl implementation.
  1243. - Use glibc allocator hooks to make mixed allocator usage less likely.
  1244. - Fix build issues for --disable-tcache.
  1245. - Don't mangle pthread_create() when --with-private-namespace is specified.
  1246. * 2.2.5 (November 14, 2011)
  1247. Bug fixes:
  1248. - Fix huge_ralloc() race when using mremap(2). This is a serious bug that
  1249. could cause memory corruption and/or crashes.
  1250. - Fix huge_ralloc() to maintain chunk statistics.
  1251. - Fix malloc_stats_print(..., "a") output.
  1252. * 2.2.4 (November 5, 2011)
  1253. Bug fixes:
  1254. - Initialize arenas_tsd before using it. This bug existed for 2.2.[0-3], as
  1255. well as for --disable-tls builds in earlier releases.
  1256. - Do not assume a 4 KiB page size in test/rallocm.c.
  1257. * 2.2.3 (August 31, 2011)
  1258. This version fixes numerous bugs related to heap profiling.
  1259. Bug fixes:
  1260. - Fix a prof-related race condition. This bug could cause memory corruption,
  1261. but only occurred in non-default configurations (prof_accum:false).
  1262. - Fix off-by-one backtracing issues (make sure that prof_alloc_prep() is
  1263. excluded from backtraces).
  1264. - Fix a prof-related bug in realloc() (only triggered by OOM errors).
  1265. - Fix prof-related bugs in allocm() and rallocm().
  1266. - Fix prof_tdata_cleanup() for --disable-tls builds.
  1267. - Fix a relative include path, to fix objdir builds.
  1268. * 2.2.2 (July 30, 2011)
  1269. Bug fixes:
  1270. - Fix a build error for --disable-tcache.
  1271. - Fix assertions in arena_purge() (for real this time).
  1272. - Add the --with-private-namespace option. This is a workaround for symbol
  1273. conflicts that can inadvertently arise when using static libraries.
  1274. * 2.2.1 (March 30, 2011)
  1275. Bug fixes:
  1276. - Implement atomic operations for x86/x64. This fixes compilation failures
  1277. for versions of gcc that are still in wide use.
  1278. - Fix an assertion in arena_purge().
  1279. * 2.2.0 (March 22, 2011)
  1280. This version incorporates several improvements to algorithms and data
  1281. structures that tend to reduce fragmentation and increase speed.
  1282. New features:
  1283. - Add the "stats.cactive" mallctl.
  1284. - Update pprof (from google-perftools 1.7).
  1285. - Improve backtracing-related configuration logic, and add the
  1286. --disable-prof-libgcc option.
  1287. Bug fixes:
  1288. - Change default symbol visibility from "internal", to "hidden", which
  1289. decreases the overhead of library-internal function calls.
  1290. - Fix symbol visibility so that it is also set on OS X.
  1291. - Fix a build dependency regression caused by the introduction of the .pic.o
  1292. suffix for PIC object files.
  1293. - Add missing checks for mutex initialization failures.
  1294. - Don't use libgcc-based backtracing except on x64, where it is known to work.
  1295. - Fix deadlocks on OS X that were due to memory allocation in
  1296. pthread_mutex_lock().
  1297. - Heap profiling-specific fixes:
  1298. + Fix memory corruption due to integer overflow in small region index
  1299. computation, when using a small enough sample interval that profiling
  1300. context pointers are stored in small run headers.
  1301. + Fix a bootstrap ordering bug that only occurred with TLS disabled.
  1302. + Fix a rallocm() rsize bug.
  1303. + Fix error detection bugs for aligned memory allocation.
  1304. * 2.1.3 (March 14, 2011)
  1305. Bug fixes:
  1306. - Fix a cpp logic regression (due to the "thread.{de,}allocatedp" mallctl fix
  1307. for OS X in 2.1.2).
  1308. - Fix a "thread.arena" mallctl bug.
  1309. - Fix a thread cache stats merging bug.
  1310. * 2.1.2 (March 2, 2011)
  1311. Bug fixes:
  1312. - Fix "thread.{de,}allocatedp" mallctl for OS X.
  1313. - Add missing jemalloc.a to build system.
  1314. * 2.1.1 (January 31, 2011)
  1315. Bug fixes:
  1316. - Fix aligned huge reallocation (affected allocm()).
  1317. - Fix the ALLOCM_LG_ALIGN macro definition.
  1318. - Fix a heap dumping deadlock.
  1319. - Fix a "thread.arena" mallctl bug.
  1320. * 2.1.0 (December 3, 2010)
  1321. This version incorporates some optimizations that can't quite be considered
  1322. bug fixes.
  1323. New features:
  1324. - Use Linux's mremap(2) for huge object reallocation when possible.
  1325. - Avoid locking in mallctl*() when possible.
  1326. - Add the "thread.[de]allocatedp" mallctl's.
  1327. - Convert the manual page source from roff to DocBook, and generate both roff
  1328. and HTML manuals.
  1329. Bug fixes:
  1330. - Fix a crash due to incorrect bootstrap ordering. This only impacted
  1331. --enable-debug --enable-dss configurations.
  1332. - Fix a minor statistics bug for mallctl("swap.avail", ...).
  1333. * 2.0.1 (October 29, 2010)
  1334. Bug fixes:
  1335. - Fix a race condition in heap profiling that could cause undefined behavior
  1336. if "opt.prof_accum" were disabled.
  1337. - Add missing mutex unlocks for some OOM error paths in the heap profiling
  1338. code.
  1339. - Fix a compilation error for non-C99 builds.
  1340. * 2.0.0 (October 24, 2010)
  1341. This version focuses on the experimental *allocm() API, and on improved
  1342. run-time configuration/introspection. Nonetheless, numerous performance
  1343. improvements are also included.
  1344. New features:
  1345. - Implement the experimental {,r,s,d}allocm() API, which provides a superset
  1346. of the functionality available via malloc(), calloc(), posix_memalign(),
  1347. realloc(), malloc_usable_size(), and free(). These functions can be used to
  1348. allocate/reallocate aligned zeroed memory, ask for optional extra memory
  1349. during reallocation, prevent object movement during reallocation, etc.
  1350. - Replace JEMALLOC_OPTIONS/JEMALLOC_PROF_PREFIX with MALLOC_CONF, which is
  1351. more human-readable, and more flexible. For example:
  1352. JEMALLOC_OPTIONS=AJP
  1353. is now:
  1354. MALLOC_CONF=abort:true,fill:true,stats_print:true
  1355. - Port to Apple OS X. Sponsored by Mozilla.
  1356. - Make it possible for the application to control thread-->arena mappings via
  1357. the "thread.arena" mallctl.
  1358. - Add compile-time support for all TLS-related functionality via pthreads TSD.
  1359. This is mainly of interest for OS X, which does not support TLS, but has a
  1360. TSD implementation with similar performance.
  1361. - Override memalign() and valloc() if they are provided by the system.
  1362. - Add the "arenas.purge" mallctl, which can be used to synchronously purge all
  1363. dirty unused pages.
  1364. - Make cumulative heap profiling data optional, so that it is possible to
  1365. limit the amount of memory consumed by heap profiling data structures.
  1366. - Add per thread allocation counters that can be accessed via the
  1367. "thread.allocated" and "thread.deallocated" mallctls.
  1368. Incompatible changes:
  1369. - Remove JEMALLOC_OPTIONS and malloc_options (see MALLOC_CONF above).
  1370. - Increase default backtrace depth from 4 to 128 for heap profiling.
  1371. - Disable interval-based profile dumps by default.
  1372. Bug fixes:
  1373. - Remove bad assertions in fork handler functions. These assertions could
  1374. cause aborts for some combinations of configure settings.
  1375. - Fix strerror_r() usage to deal with non-standard semantics in GNU libc.
  1376. - Fix leak context reporting. This bug tended to cause the number of contexts
  1377. to be underreported (though the reported number of objects and bytes were
  1378. correct).
  1379. - Fix a realloc() bug for large in-place growing reallocation. This bug could
  1380. cause memory corruption, but it was hard to trigger.
  1381. - Fix an allocation bug for small allocations that could be triggered if
  1382. multiple threads raced to create a new run of backing pages.
  1383. - Enhance the heap profiler to trigger samples based on usable size, rather
  1384. than request size.
  1385. - Fix a heap profiling bug due to sometimes losing track of requested object
  1386. size for sampled objects.
  1387. * 1.0.3 (August 12, 2010)
  1388. Bug fixes:
  1389. - Fix the libunwind-based implementation of stack backtracing (used for heap
  1390. profiling). This bug could cause zero-length backtraces to be reported.
  1391. - Add a missing mutex unlock in library initialization code. If multiple
  1392. threads raced to initialize malloc, some of them could end up permanently
  1393. blocked.
  1394. * 1.0.2 (May 11, 2010)
  1395. Bug fixes:
  1396. - Fix junk filling of large objects, which could cause memory corruption.
  1397. - Add MAP_NORESERVE support for chunk mapping, because otherwise virtual
  1398. memory limits could cause swap file configuration to fail. Contributed by
  1399. Jordan DeLong.
  1400. * 1.0.1 (April 14, 2010)
  1401. Bug fixes:
  1402. - Fix compilation when --enable-fill is specified.
  1403. - Fix threads-related profiling bugs that affected accuracy and caused memory
  1404. to be leaked during thread exit.
  1405. - Fix dirty page purging race conditions that could cause crashes.
  1406. - Fix crash in tcache flushing code during thread destruction.
  1407. * 1.0.0 (April 11, 2010)
  1408. This release focuses on speed and run-time introspection. Numerous
  1409. algorithmic improvements make this release substantially faster than its
  1410. predecessors.
  1411. New features:
  1412. - Implement autoconf-based configuration system.
  1413. - Add mallctl*(), for the purposes of introspection and run-time
  1414. configuration.
  1415. - Make it possible for the application to manually flush a thread's cache, via
  1416. the "tcache.flush" mallctl.
  1417. - Base maximum dirty page count on proportion of active memory.
  1418. - Compute various additional run-time statistics, including per size class
  1419. statistics for large objects.
  1420. - Expose malloc_stats_print(), which can be called repeatedly by the
  1421. application.
  1422. - Simplify the malloc_message() signature to only take one string argument,
  1423. and incorporate an opaque data pointer argument for use by the application
  1424. in combination with malloc_stats_print().
  1425. - Add support for allocation backed by one or more swap files, and allow the
  1426. application to disable over-commit if swap files are in use.
  1427. - Implement allocation profiling and leak checking.
  1428. Removed features:
  1429. - Remove the dynamic arena rebalancing code, since thread-specific caching
  1430. reduces its utility.
  1431. Bug fixes:
  1432. - Modify chunk allocation to work when address space layout randomization
  1433. (ASLR) is in use.
  1434. - Fix thread cleanup bugs related to TLS destruction.
  1435. - Handle 0-size allocation requests in posix_memalign().
  1436. - Fix a chunk leak. The leaked chunks were never touched, so this impacted
  1437. virtual memory usage, but not physical memory usage.
  1438. * linux_2008082[78]a (August 27/28, 2008)
  1439. These snapshot releases are the simple result of incorporating Linux-specific
  1440. support into the FreeBSD malloc sources.
  1441. --------------------------------------------------------------------------------
  1442. vim:filetype=text:textwidth=80