ChangeLog 66 KB

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