mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
Merge
This commit is contained in:
commit
8d6035660e
223 changed files with 5079 additions and 2219 deletions
|
@ -294,3 +294,29 @@ void CollectedHeap::resize_all_tlabs() {
|
|||
ThreadLocalAllocBuffer::resize_all_tlabs();
|
||||
}
|
||||
}
|
||||
|
||||
void CollectedHeap::pre_full_gc_dump() {
|
||||
if (HeapDumpBeforeFullGC) {
|
||||
TraceTime tt("Heap Dump: ", PrintGCDetails, false, gclog_or_tty);
|
||||
// We are doing a "major" collection and a heap dump before
|
||||
// major collection has been requested.
|
||||
HeapDumper::dump_heap();
|
||||
}
|
||||
if (PrintClassHistogramBeforeFullGC) {
|
||||
TraceTime tt("Class Histogram: ", PrintGCDetails, true, gclog_or_tty);
|
||||
VM_GC_HeapInspection inspector(gclog_or_tty, false /* ! full gc */, false /* ! prologue */);
|
||||
inspector.doit();
|
||||
}
|
||||
}
|
||||
|
||||
void CollectedHeap::post_full_gc_dump() {
|
||||
if (HeapDumpAfterFullGC) {
|
||||
TraceTime tt("Heap Dump", PrintGCDetails, false, gclog_or_tty);
|
||||
HeapDumper::dump_heap();
|
||||
}
|
||||
if (PrintClassHistogramAfterFullGC) {
|
||||
TraceTime tt("Class Histogram", PrintGCDetails, true, gclog_or_tty);
|
||||
VM_GC_HeapInspection inspector(gclog_or_tty, false /* ! full gc */, false /* ! prologue */);
|
||||
inspector.doit();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue