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
8245961: Shenandoah: move some root marking to concurrent phase
Reviewed-by: shade
- Loading branch information
Showing
with
198 additions
and 82 deletions.
- +116 −56 src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.cpp
- +0 −10 src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.hpp
- +2 −2 src/hotspot/share/gc/shenandoah/shenandoahNMethod.cpp
- +3 −0 src/hotspot/share/gc/shenandoah/shenandoahPhaseTimings.cpp
- +7 −0 src/hotspot/share/gc/shenandoah/shenandoahPhaseTimings.hpp
- +7 −10 src/hotspot/share/gc/shenandoah/shenandoahRootProcessor.cpp
- +18 −4 src/hotspot/share/gc/shenandoah/shenandoahRootProcessor.hpp
- +45 −0 src/hotspot/share/gc/shenandoah/shenandoahRootProcessor.inline.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
@@ -91,16 +91,6 @@ class ShenandoahConcurrentMark: public CHeapObj<mtGC> { | ||
public: | ||
void preclean_weak_refs(); | ||
|
||
// ---------- Helpers | ||
// Used from closures, need to be public | ||
// | ||
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
Oops, something went wrong.