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
8240239: Replace ConcurrentGCPhaseManager
Replace ConcurrentGCPhaseManager with ConcurrentGCBreakpoints Co-authored-by: Per Liden <per.liden@oracle.com> Reviewed-by: kbarrett, pliden, sangheki
- Loading branch information
Showing
with
841 additions
and 1,196 deletions.
- +43 −14 src/hotspot/share/gc/g1/g1CollectedHeap.cpp
- +2 −3 src/hotspot/share/gc/g1/g1CollectedHeap.hpp
- +61 −192 src/hotspot/share/gc/g1/g1ConcurrentMarkThread.cpp
- +1 −12 src/hotspot/share/gc/g1/g1ConcurrentMarkThread.hpp
- +18 −8 src/hotspot/share/gc/g1/g1Policy.cpp
- +10 −0 src/hotspot/share/gc/g1/g1VMOperations.cpp
- +2 −0 src/hotspot/share/gc/g1/g1VMOperations.hpp
- +3 −9 src/hotspot/share/gc/shared/collectedHeap.cpp
- +4 −19 src/hotspot/share/gc/shared/collectedHeap.hpp
- +176 −0 src/hotspot/share/gc/shared/concurrentGCBreakpoints.cpp
- +136 −0 src/hotspot/share/gc/shared/concurrentGCBreakpoints.hpp
- +0 −146 src/hotspot/share/gc/shared/concurrentGCPhaseManager.cpp
- +0 −137 src/hotspot/share/gc/shared/concurrentGCPhaseManager.hpp
- +4 −1 src/hotspot/share/gc/shared/gcCause.cpp
- +2 −1 src/hotspot/share/gc/shared/gcCause.hpp
- +59 −0 src/hotspot/share/gc/z/zBreakpoint.cpp
- +16 −24 ...nt_phase_control/TestConcurrentPhaseControlG1Basics.java → src/hotspot/share/gc/z/zBreakpoint.hpp
- +5 −1 src/hotspot/share/gc/z/zCollectedHeap.cpp
- +2 −1 src/hotspot/share/gc/z/zCollectedHeap.hpp
- +13 −1 src/hotspot/share/gc/z/zDriver.cpp
- +24 −8 src/hotspot/share/prims/whitebox.cpp
- +2 −2 src/hotspot/share/runtime/mutexLocker.cpp
- +1 −1 src/hotspot/share/runtime/mutexLocker.hpp
- +148 −0 test/hotspot/jtreg/gc/TestConcurrentGCBreakpoints.java
- +36 −35 test/hotspot/jtreg/gc/{g1/TestJNIWeakG1/TestJNIWeakG1.java → TestJNIWeak/TestJNIWeak.java}
- +6 −6 test/hotspot/jtreg/gc/{g1/TestJNIWeakG1/libTestJNIWeakG1.c → TestJNIWeak/libTestJNIWeak.c}
- +0 −246 test/hotspot/jtreg/gc/concurrent_phase_control/CheckControl.java
- +0 −63 test/hotspot/jtreg/gc/concurrent_phase_control/CheckSupported.java
- +0 −63 test/hotspot/jtreg/gc/concurrent_phase_control/CheckUnsupported.java
- +0 −80 test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlG1.java
- +0 −50 test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlParallel.java
- +0 −50 test/hotspot/jtreg/gc/concurrent_phase_control/TestConcurrentPhaseControlSerial.java
- +67 −23 test/lib/sun/hotspot/WhiteBox.java
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
Oops, something went wrong.