mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
8030177: G1: Enable TLAB resizing
Reviewed-by: tschatzl, stefank, jmasa
This commit is contained in:
parent
81ba2e32c0
commit
9b29efeb63
20 changed files with 141 additions and 74 deletions
|
@ -488,6 +488,10 @@ size_t ParallelScavengeHeap::tlab_capacity(Thread* thr) const {
|
|||
return young_gen()->eden_space()->tlab_capacity(thr);
|
||||
}
|
||||
|
||||
size_t ParallelScavengeHeap::tlab_used(Thread* thr) const {
|
||||
return young_gen()->eden_space()->tlab_used(thr);
|
||||
}
|
||||
|
||||
size_t ParallelScavengeHeap::unsafe_max_tlab_alloc(Thread* thr) const {
|
||||
return young_gen()->eden_space()->unsafe_max_tlab_alloc(thr);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue