index
:
platform_external_jemalloc_new
android10-c2f2-release
android10-c2f2-s1-release
android10-c2f2-s2-release
android10-d4-release
android10-d4-s1-release
android10-dev
android10-gsi
android10-mainline-a-release
android10-mainline-media-release
android10-mainline-networking-release
android10-mainline-release
android10-mainline-resolv-release
android10-mainline-tzdata-release
android10-qpr1-b-release
android10-qpr1-b-s1-release
android10-qpr1-c-release
android10-qpr1-c-s1-release
android10-qpr1-d-release
android10-qpr1-mainline-release
android10-qpr1-release
android10-qpr2-release
android10-qpr2-s1-release
android10-qpr2-s2-release
android10-qpr2-s3-release
android10-qpr2-s4-release
android10-qpr3-release
android10-qpr3-s1-release
android10-release
android10-s1-release
android10-s2-release
android10-s3-release
android10-security-release
android10-tests-release
android11-dev
android11-gsi
android11-mainline-release
android11-release
android11-tests-release
master
master-cuttlefish-testing-release
master-plus-llvm
ndk-sysroot-r21
sdk-release
simpleperf-release
upstream-dev
upstream-jemalloc
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
tcache.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove unused stats from cache structure.
Christopher Ferris
2019-04-30
1
-0
/
+16
*
Further updates to jemalloc code.
Christopher Ferris
2018-11-01
1
-0
/
+4
*
Rename cache_alloc_easy to cache_bin_alloc_easy.
David T. Goldblatt
2017-12-18
1
-1
/
+1
*
Pull out arena_bin_info_t and arena_bin_t into their own file.
David T. Goldblatt
2017-12-18
1
-6
/
+6
*
Make arena stats collection go through cache bins.
David Goldblatt
2017-08-16
1
-0
/
+9
*
Pull out caching for a bin into its own file.
David Goldblatt
2017-08-16
1
-19
/
+19
*
Pass tsd to tcache_flush().
Qi Wang
2017-06-15
1
-2
/
+1
*
Header refactoring: Pull size helpers out of jemalloc module.
David Goldblatt
2017-05-31
1
-3
/
+3
*
Header refactoring: unify and de-catchall mutex module
David Goldblatt
2017-05-24
1
-0
/
+1
*
Header refactoring: unify and de-catchall witness code.
David Goldblatt
2017-05-24
1
-2
/
+2
*
Allow mutexes to take a lock ordering enum at construction.
David Goldblatt
2017-05-19
1
-1
/
+2
*
Revert "Use trylock in tcache_bin_flush when possible."
Qi Wang
2017-05-01
1
-123
/
+48
*
Header refactoring: tsd - cleanup and dependency breaking.
David Goldblatt
2017-05-01
1
-4
/
+1
*
Inline tcache_bin_flush_small_impl / _large_impl.
Qi Wang
2017-04-27
1
-2
/
+2
*
Use trylock in tcache_bin_flush when possible.
Qi Wang
2017-04-25
1
-48
/
+123
*
Remove redundant extent lookup in tcache_bin_flush_large.
Qi Wang
2017-04-25
1
-1
/
+1
*
Header refactoring: size_classes module - remove from the catchall
David Goldblatt
2017-04-24
1
-0
/
+1
*
Remove --disable-tcache.
Jason Evans
2017-04-21
1
-32
/
+12
*
Header refactoring: move assert.h out of the catch-all
David Goldblatt
2017-04-18
1
-0
/
+2
*
Bundle 3 branches on fast path into tsd_state.
Qi Wang
2017-04-14
1
-0
/
+2
*
Header refactoring: Split up jemalloc_internal.h
David Goldblatt
2017-04-11
1
-1
/
+2
*
Pass dealloc_ctx down free() fast path.
Qi Wang
2017-04-11
1
-2
/
+2
*
Optimizing TSD and thread cache layout.
Qi Wang
2017-04-07
1
-31
/
+45
*
Get rid of tcache_enabled_t as we have runtime init support.
Qi Wang
2017-04-07
1
-3
/
+3
*
Integrate auto tcache into TSD.
Qi Wang
2017-04-07
1
-58
/
+149
*
Lookup extent once per time during tcache_flush_small / _large.
Qi Wang
2017-03-28
1
-14
/
+28
*
Remove extent dereferences from the deallocation fast paths.
Jason Evans
2017-03-22
1
-2
/
+1
*
Remove extent arg from isalloc() and arena_salloc().
Jason Evans
2017-03-22
1
-1
/
+1
*
Refactor tcaches flush/destroy to reduce lock duration.
Jason Evans
2017-03-16
1
-6
/
+13
*
Implement per-CPU arena.
Qi Wang
2017-03-08
1
-4
/
+7
*
Store associated arena in tcache.
Qi Wang
2017-03-07
1
-8
/
+9
*
Synchronize arena->tcache_ql with arena->tcache_ql_mtx.
Jason Evans
2017-02-16
1
-6
/
+4
*
Convert arena->stats synchronization to atomics.
Jason Evans
2017-02-16
1
-14
/
+9
*
Convert arena->prof_accumbytes synchronization to atomics.
Jason Evans
2017-02-16
1
-1
/
+1
*
Disentangle arena and extent locking.
Jason Evans
2017-02-01
1
-11
/
+20
*
Fix/refactor tcaches synchronization.
Jason Evans
2017-02-01
1
-12
/
+76
*
Replace tabs following #define with spaces.
Jason Evans
2017-01-20
1
-1
/
+1
*
Remove extraneous parens around return arguments.
Jason Evans
2017-01-20
1
-14
/
+14
*
Update brace style.
Jason Evans
2017-01-20
1
-58
/
+62
*
Remove redundent stats-merging logic when destroying tcache.
Qi Wang
2017-01-17
1
-11
/
+4
*
Remove leading blank lines from function bodies.
Jason Evans
2017-01-13
1
-6
/
+0
*
Implement per arena base allocators.
Jason Evans
2016-12-26
1
-4
/
+4
*
Uniformly cast mallctl[bymib]() oldp/newp arguments to (void *).
Jason Evans
2016-10-27
1
-2
/
+2
*
Do not (recursively) allocate within tsd_fetch().
Jason Evans
2016-10-20
1
-4
/
+4
*
Make tsd cleanup functions optional, remove noop cleanup functions.
Jason Evans
2016-06-05
1
-7
/
+0
*
Rename huge to large.
Jason Evans
2016-06-05
1
-14
/
+14
*
Move slabs out of chunks.
Jason Evans
2016-06-05
1
-7
/
+1
*
Use huge size class infrastructure for large size classes.
Jason Evans
2016-06-05
1
-24
/
+17
*
Implement cache-oblivious support for huge size classes.
Jason Evans
2016-06-03
1
-2
/
+2
*
Refactor rtree to always use base_alloc() for node allocation.
Jason Evans
2016-06-03
1
-6
/
+7
[next]