1. 7928f62 Check whether gcc version supports __builtin_unreachable(). by Jason Evans · 9 years ago
  2. 694d082 Update list of private symbols. by Jason Evans · 9 years ago
  3. 1f27abc Refactor arena_mapbits_{small,large}_set() to not preserve unzeroed. by Jason Evans · 9 years ago
  4. 6bdeddb Fix build failure. by Jason Evans · 9 years ago
  5. 45186f0 Refactor arena_mapbits unzeroed flag management. by Jason Evans · 9 years ago
  6. de249c8 Arena chunk decommit cleanups and fixes. by Jason Evans · 9 years ago
  7. 8fadb1a Implement chunk hook support for page run commit/decommit. by Jason Evans · 9 years ago
  8. 67c46a9 work around _FORTIFY_SOURCE false positive by Daniel Micay · 9 years ago
  9. c1a6a51 MSVC compatibility changes by Matthijs · 9 years ago
  10. b49a334 Generalize chunk management hooks. by Jason Evans · 9 years ago
  11. d059b9d Implement support for non-coalescing maps on MinGW. by Jason Evans · 9 years ago
  12. 87ccb55 Fix huge_palloc() to handle size rather than usize input. by Jason Evans · 9 years ago
  13. 4becdf2 Fix sa2u() regression. by Jason Evans · 9 years ago
  14. 71cd2f0 Leave PRI* macros defined after using them to define FMT*. by Jason Evans · 9 years ago
  15. 5fae7dc Fix MinGW-related portability issues. by Jason Evans · 9 years ago
  16. e42c309 Add JEMALLOC_FORMAT_PRINTF(). by Jason Evans · 9 years ago
  17. 0063260 Move JEMALLOC_NOTHROW just after return type. by Jason Evans · 9 years ago
  18. 50cd636 Remove JEMALLOC_ALLOC_SIZE annotations on functions not returning pointers by Mike Hommey · 9 years ago
  19. 37fd111 Remove extraneous ';' on closing 'extern "C"' by Dave Rigby · 9 years ago
  20. 5bd8796 Change default chunk size from 256 KiB to 2 MiB. by Jason Evans · 9 years ago
  21. aa28266 Revert to first-best-fit run/chunk allocation. by Jason Evans · 9 years ago
  22. 0b8f0bc Add configure test for alloc_size attribute. by Jason Evans · 9 years ago
  23. ae93d6b Avoid function prototype incompatibilities. by Jason Evans · 9 years ago
  24. dde0672 Fix an integer overflow bug in {size2index,s2u}_compute(). by Jason Evans · 9 years ago
  25. 0313607 Fix MinGW build warnings. by Jason Evans · 9 years ago
  26. a1aaf94 Optimizations for Windows by Matthijs · 9 years ago
  27. 241abc6 Fix size class overflow handling when profiling is enabled. by Jason Evans · 9 years ago
  28. 0a9f9a4 Convert arena_maybe_purge() recursion to iteration. by Jason Evans · 9 years ago
  29. 713b844 Update a comment. by Jason Evans · 9 years ago
  30. c073f81 Fix type errors in C11 versions of atomic_*() functions. by Chi-hung Hsieh · 9 years ago
  31. 836bbe9 Impose a minimum tcache count for small size classes. by Jason Evans · 9 years ago
  32. 6591ff0 Fix arena_dalloc() performance regression. by Jason Evans · 9 years ago
  33. fd5f9e4 Avoid atomic operations for dependent rtree reads. by Jason Evans · 9 years ago
  34. c451831 Fix type punning in calls to atomic operation functions. by Jason Evans · 9 years ago
  35. 8a03cf0 Implement cache index randomization for large allocations. by Jason Evans · 9 years ago
  36. 562d266 Add the "stats.arenas.<i>.lg_dirty_mult" mallctl. by Jason Evans · 9 years ago
  37. 4acd75a Add the "stats.allocated" mallctl. by Jason Evans · 9 years ago
  38. 8ad6bf3 Fix indentation inconsistencies. by Igor Podlesny · 9 years ago
  39. e0a08a1 Restore --enable-ivsalloc. by Jason Evans · 9 years ago
  40. 8d6a3e8 Implement dynamic per arena control over dirty page purging. by Jason Evans · 9 years ago
  41. c9db461 Use InterlockedCompareExchange instead of non-existing InterlockedCompareExchange32 by Mike Hommey · 9 years ago
  42. 04211e2 Fix heap profiling regressions. by Jason Evans · 9 years ago
  43. 764b000 Fix a heap profiling regression. by Jason Evans · 9 years ago
  44. fbd8d77 Fix unsigned comparison underflow. by Jason Evans · 9 years ago
  45. f5c8f37 Normalize rdelm/rd structure field naming. by Jason Evans · 9 years ago
  46. 38e42d3 Refactor dirty run linkage to reduce sizeof(extent_node_t). by Jason Evans · 9 years ago
  47. 97c04a9 Use first-fit rather than first-best-fit run/chunk allocation. by Jason Evans · 9 years ago
  48. f044bb2 Change default chunk size from 4 MiB to 256 KiB. by Jason Evans · 9 years ago
  49. 4d871f7 Preserve LastError when calling TlsGetValue by Mike Hommey · 9 years ago
  50. 7c46fd5 Make --without-export actually work by Mike Hommey · 9 years ago
  51. 99bd94f Fix chunk cache races. by Jason Evans · 9 years ago
  52. 738e089 Rename "dirty chunks" to "cached chunks". by Jason Evans · 9 years ago
  53. 339c2b2 Fix chunk_unmap() to propagate dirty state. by Jason Evans · 9 years ago
  54. 47701b2 arena_chunk_dirty_node_init() --> extent_node_dirty_linkage_init() by Jason Evans · 9 years ago
  55. eafebfd Remove obsolete type arena_chunk_miscelms_t. by Jason Evans · 9 years ago
  56. a4e1888 Simplify extent_node_t and add extent_node_init(). by Jason Evans · 9 years ago
  57. ee41ad4 Integrate whole chunks into unused dirty page purging machinery. by Jason Evans · 9 years ago
  58. 40ab8f9 Remove more obsolete (incorrect) assertions. by Jason Evans · 9 years ago
  59. cb9b449 Remove obsolete (incorrect) assertions. by Jason Evans · 9 years ago
  60. 2195ba4 Normalize *_link and link_* fields to all be *_link. by Jason Evans · 9 years ago
  61. 41cfe03 If MALLOCX_ARENA(a) is specified, use it during tcache fill. by Jason Evans · 9 years ago
  62. 5f7140b Make prof_tctx accesses atomic. by Jason Evans · 9 years ago
  63. 88fef7c Refactor huge_*() calls into arena internals. by Jason Evans · 9 years ago
  64. cbf3a6d Move centralized chunk management into arenas. by Jason Evans · 9 years ago
  65. 051eae8 Remove unnecessary xchg* lock prefixes. by Jason Evans · 9 years ago
  66. 1cb181e Implement explicit tcache support. by Jason Evans · 9 years ago
  67. 23694b0 Fix arena_get() for (!init_if_missing && refresh_if_missing) case. by Jason Evans · 9 years ago
  68. 8d0e04d Refactor rtree to be lock-free. by Jason Evans · 9 years ago
  69. c810fce Add (x != 0) assertion to lg_floor(x). by Jason Evans · 9 years ago
  70. f500a10 Refactor base_alloc() to guarantee demand-zeroed memory. by Jason Evans · 9 years ago
  71. 918a1a5 Reduce extent_node_t size to fit in one cache line. by Jason Evans · 9 years ago
  72. a55dfa4 Implement more atomic operations. by Jason Evans · 9 years ago
  73. f872357 Add missing prototypes for bootstrap_{malloc,calloc,free}(). by Jason Evans · 9 years ago
  74. 5b8ed5b Implement the prof.gdump mallctl. by Jason Evans · 9 years ago
  75. 4581b97 Implement metadata statistics. by Jason Evans · 10 years ago
  76. 10aff3f Refactor bootstrapping to delay tsd initialization. by Jason Evans · 9 years ago
  77. b617df8 Add missing symbols to private_symbols.txt. by Abhishek Kulkarni · 9 years ago
  78. 51f8634 Add a isblank definition for MSVC < 2013 by Guilherme Goncalves · 10 years ago
  79. 2c5cb61 Introduce two new modes of junk filling: "alloc" and "free". by Guilherme Goncalves · 10 years ago
  80. b74041f Ignore MALLOC_CONF in set{uid,gid,cap} binaries. by Daniel Micay · 10 years ago
  81. e12eaf9 Style and spelling fixes. by Jason Evans · 10 years ago
  82. 59cd80e Add a C11 atomics-based implementation of atomic.h API. by Chih-hung Hsieh · 10 years ago
  83. a18c2b1 Style fixes. by Jason Evans · 10 years ago
  84. 879e76a teach the dss chunk allocator to handle new_addr by Daniel Micay · 10 years ago
  85. a213602 Remove extra definition of je_tsd_boot on win32. by Guilherme Goncalves · 10 years ago
  86. 9cf2be0 Make quarantine_init() static. by Jason Evans · 10 years ago
  87. c002a5c Fix two quarantine regressions. by Jason Evans · 10 years ago
  88. d7a9bab Fix arena_sdalloc() to use promoted size (second attempt). by Jason Evans · 10 years ago
  89. 6da2e9d Fix arena_sdalloc() to use promoted size. by Jason Evans · 10 years ago
  90. cfc5706 Miscellaneous cleanups. by Jason Evans · 10 years ago
  91. d33f834 avoid redundant chunk header reads by Daniel Micay · 10 years ago
  92. 809b0ac mark huge allocations as unlikely by Daniel Micay · 10 years ago
  93. 9b41ac9 Fix huge allocation statistics. by Jason Evans · 10 years ago
  94. 3c4d92e Add per size class huge allocation statistics. by Jason Evans · 10 years ago
  95. 44c97b7 Fix a prof_tctx_t/prof_tdata_t cleanup race. by Jason Evans · 10 years ago
  96. 381c23d Remove arena_dalloc_bin_run() clean page preservation. by Jason Evans · 10 years ago
  97. 81e5475 Add --with-lg-tiny-min, generalize --with-lg-quantum. by Jason Evans · 10 years ago
  98. fc0b3b7 Add configure options. by Jason Evans · 10 years ago
  99. f22214a Use regular arena allocation for huge tree nodes. by Daniel Micay · 10 years ago
  100. 8bb3198 Refactor/fix arenas manipulation. by Jason Evans · 10 years ago