This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8252043: Move inner class metaspace cleaning out of safepoint cleanup…
… tasks Clean up inner metaspaces from ServiceThread if cleanup is needed for concurrent GCs. Reviewed-by: eosterlund, pchilanomate
- Loading branch information
Showing
with
60 additions
and 28 deletions.
- +24 −4 src/hotspot/share/classfile/classLoaderDataGraph.cpp
- +4 −2 src/hotspot/share/classfile/classLoaderDataGraph.hpp
- +1 −1 src/hotspot/share/gc/g1/g1CollectedHeap.cpp
- +1 −1 src/hotspot/share/gc/g1/g1ConcurrentMark.cpp
- +1 −1 src/hotspot/share/gc/parallel/psParallelCompact.cpp
- +1 −1 src/hotspot/share/gc/shared/genCollectedHeap.cpp
- +1 −1 src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp
- +1 −1 src/hotspot/share/gc/shenandoah/shenandoahUnload.cpp
- +2 −2 src/hotspot/share/gc/z/zUnload.cpp
- +3 −2 src/hotspot/share/oops/instanceKlass.cpp
- +1 −10 src/hotspot/share/runtime/safepoint.cpp
- +7 −0 src/hotspot/share/runtime/serviceThread.cpp
- +5 −2 src/hotspot/share/runtime/vmOperations.cpp
- +8 −0 src/hotspot/share/runtime/vmOperations.hpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -185,7 +185,7 @@ void ShenandoahUnload::unload() { | ||
|
||
{ | ||
ShenandoahTimingsTracker t(ShenandoahPhaseTimings::conc_class_unload_purge_cldg); | ||
ClassLoaderDataGraph::purge(/*at_safepoint*/false); | ||
} | ||
|
||
{ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters