mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 02:24:40 +02:00
6631166
: CMS: better heuristics when combatting fragmentation
Autonomic per-worker free block cache sizing, tunable coalition policies, fixes to per-size block statistics, retuned gain and bandwidth of some feedback loop filters to allow quicker reactivity to abrupt changes in ambient demand, and other heuristics to reduce fragmentation of the CMS old gen. Also tightened some assertions, including those related to locking. Reviewed-by: jmasa
This commit is contained in:
parent
1383dc414b
commit
272a6d47bb
26 changed files with 1099 additions and 345 deletions
|
@ -67,3 +67,8 @@ void FreeChunk::verifyList() const {
|
|||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
void FreeChunk::print_on(outputStream* st) {
|
||||
st->print_cr("Next: " PTR_FORMAT " Prev: " PTR_FORMAT " %s",
|
||||
next(), prev(), cantCoalesce() ? "[can't coalesce]" : "");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue