Skip to content

Commit cf1230a

Browse files
committedAug 1, 2024
8337546: Remove unused GCCause::_adaptive_size_policy
Reviewed-by: tschatzl, kbarrett
1 parent 65646b5 commit cf1230a

File tree

4 files changed

+2
-13
lines changed

4 files changed

+2
-13
lines changed
 

‎src/hotspot/share/gc/shared/gcCause.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ const char* GCCause::to_string(GCCause::Cause cause) {
7878
case _metadata_GC_clear_soft_refs:
7979
return "Metadata GC Clear Soft References";
8080

81-
case _adaptive_size_policy:
82-
return "Ergonomics";
83-
8481
case _g1_inc_collection_pause:
8582
return "G1 Evacuation Pause";
8683

‎src/hotspot/share/gc/shared/gcCause.hpp

+1-7
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ class GCCause : public AllStatic {
6666
_metadata_GC_threshold,
6767
_metadata_GC_clear_soft_refs,
6868

69-
_adaptive_size_policy,
70-
7169
_g1_inc_collection_pause,
7270
_g1_compaction_pause,
7371
_g1_humongous_allocation,
@@ -110,20 +108,16 @@ class GCCause : public AllStatic {
110108

111109
// Causes for collection of the tenured gernation
112110
inline static bool is_tenured_allocation_failure_gc(GCCause::Cause cause) {
113-
// _adaptive_size_policy for a full collection after a young GC
114111
// _allocation_failure is the generic cause a collection which could result
115112
// in the collection of the tenured generation if there is not enough space
116113
// in the tenured generation to support a young GC.
117-
return (cause == GCCause::_adaptive_size_policy ||
118-
cause == GCCause::_allocation_failure);
114+
return cause == GCCause::_allocation_failure;
119115
}
120116

121117
// Causes for collection of the young generation
122118
inline static bool is_allocation_failure_gc(GCCause::Cause cause) {
123119
// _allocation_failure is the generic cause a collection for allocation failure
124-
// _adaptive_size_policy is for a collection done before a full GC
125120
return (cause == GCCause::_allocation_failure ||
126-
cause == GCCause::_adaptive_size_policy ||
127121
cause == GCCause::_shenandoah_allocation_failure_evac);
128122
}
129123

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/GCCause.java

-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ public enum GCCause {
4848
_metadata_GC_threshold ("Metadata GC Threshold"),
4949
_metadata_GC_clear_soft_refs ("Metadata GC Clear Soft References"),
5050

51-
_adaptive_size_policy ("Ergonomics"),
52-
5351
_g1_inc_collection_pause ("G1 Evacuation Pause"),
5452
_g1_compaction_pause ("G1 Compaction Pause"),
5553
_g1_humongous_allocation ("G1 Humongous Allocation"),

‎test/jdk/jdk/jfr/event/gc/collection/TestGCCauseWithParallelOld.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static void main(String[] args) throws Exception {
3939
String testID = "ParallelOld";
4040
String[] vmFlags = {"-XX:+UseParallelGC"};
4141
String[] gcNames = {GCHelper.gcParallelScavenge, GCHelper.gcParallelOld};
42-
String[] gcCauses = {"Allocation Failure", "Ergonomics", "System.gc()", "GCLocker Initiated GC"};
42+
String[] gcCauses = {"Allocation Failure", "System.gc()", "GCLocker Initiated GC"};
4343
GCGarbageCollectionUtil.test(testID, vmFlags, gcNames, gcCauses);
4444
}
4545
}

0 commit comments

Comments
 (0)
Please sign in to comment.