Skip to content

Commit 22a1a32

Browse files
Stephanie CraterThomas Schatzl
Stephanie Crater
authored and
Thomas Schatzl
committedFeb 7, 2022
8268387: Rename maximum compaction to maximal compaction in G1
Reviewed-by: ayang, tschatzl
1 parent 7667771 commit 22a1a32

6 files changed

+21
-21
lines changed
 

‎src/hotspot/share/gc/g1/g1CollectedHeap.cpp

+12-12
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ void G1CollectedHeap::verify_after_full_collection() {
10981098

10991099
bool G1CollectedHeap::do_full_collection(bool explicit_gc,
11001100
bool clear_all_soft_refs,
1101-
bool do_maximum_compaction) {
1101+
bool do_maximal_compaction) {
11021102
assert_at_safepoint_on_vm_thread();
11031103

11041104
if (GCLocker::check_active_before_gc()) {
@@ -1111,7 +1111,7 @@ bool G1CollectedHeap::do_full_collection(bool explicit_gc,
11111111

11121112
G1FullGCMark gc_mark;
11131113
GCTraceTime(Info, gc) tm("Pause Full", NULL, gc_cause(), true);
1114-
G1FullCollector collector(this, explicit_gc, do_clear_all_soft_refs, do_maximum_compaction);
1114+
G1FullCollector collector(this, explicit_gc, do_clear_all_soft_refs, do_maximal_compaction);
11151115

11161116
collector.prepare_collection();
11171117
collector.collect();
@@ -1125,20 +1125,20 @@ void G1CollectedHeap::do_full_collection(bool clear_all_soft_refs) {
11251125
// Currently, there is no facility in the do_full_collection(bool) API to notify
11261126
// the caller that the collection did not succeed (e.g., because it was locked
11271127
// out by the GC locker). So, right now, we'll ignore the return value.
1128-
// When clear_all_soft_refs is set we want to do a maximum compaction
1128+
// When clear_all_soft_refs is set we want to do a maximal compaction
11291129
// not leaving any dead wood.
1130-
bool do_maximum_compaction = clear_all_soft_refs;
1130+
bool do_maximal_compaction = clear_all_soft_refs;
11311131
bool dummy = do_full_collection(true, /* explicit_gc */
11321132
clear_all_soft_refs,
1133-
do_maximum_compaction);
1133+
do_maximal_compaction);
11341134
}
11351135

11361136
bool G1CollectedHeap::upgrade_to_full_collection() {
11371137
GCCauseSetter compaction(this, GCCause::_g1_compaction_pause);
11381138
log_info(gc, ergo)("Attempting full compaction clearing soft references");
11391139
bool success = do_full_collection(false /* explicit gc */,
11401140
true /* clear_all_soft_refs */,
1141-
false /* do_maximum_compaction */);
1141+
false /* do_maximal_compaction */);
11421142
// do_full_collection only fails if blocked by GC locker and that can't
11431143
// be the case here since we only call this when already completed one gc.
11441144
assert(success, "invariant");
@@ -1162,7 +1162,7 @@ void G1CollectedHeap::resize_heap_if_necessary() {
11621162

11631163
HeapWord* G1CollectedHeap::satisfy_failed_allocation_helper(size_t word_size,
11641164
bool do_gc,
1165-
bool maximum_compaction,
1165+
bool maximal_compaction,
11661166
bool expect_null_mutator_alloc_region,
11671167
bool* gc_succeeded) {
11681168
*gc_succeeded = true;
@@ -1186,16 +1186,16 @@ HeapWord* G1CollectedHeap::satisfy_failed_allocation_helper(size_t word_size,
11861186
if (do_gc) {
11871187
GCCauseSetter compaction(this, GCCause::_g1_compaction_pause);
11881188
// Expansion didn't work, we'll try to do a Full GC.
1189-
// If maximum_compaction is set we clear all soft references and don't
1189+
// If maximal_compaction is set we clear all soft references and don't
11901190
// allow any dead wood to be left on the heap.
1191-
if (maximum_compaction) {
1192-
log_info(gc, ergo)("Attempting maximum full compaction clearing soft references");
1191+
if (maximal_compaction) {
1192+
log_info(gc, ergo)("Attempting maximal full compaction clearing soft references");
11931193
} else {
11941194
log_info(gc, ergo)("Attempting full compaction");
11951195
}
11961196
*gc_succeeded = do_full_collection(false, /* explicit_gc */
1197-
maximum_compaction /* clear_all_soft_refs */ ,
1198-
maximum_compaction /* do_maximum_compaction */);
1197+
maximal_compaction /* clear_all_soft_refs */ ,
1198+
maximal_compaction /* do_maximal_compaction */);
11991199
}
12001200

12011201
return NULL;

‎src/hotspot/share/gc/g1/g1CollectedHeap.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -486,13 +486,13 @@ class G1CollectedHeap : public CollectedHeap {
486486
// otherwise it's for a failed allocation.
487487
// - if clear_all_soft_refs is true, all soft references should be
488488
// cleared during the GC.
489-
// - if do_maximum_compaction is true, full gc will do a maximally
489+
// - if do_maximal_compaction is true, full gc will do a maximally
490490
// compacting collection, leaving no dead wood.
491491
// - it returns false if it is unable to do the collection due to the
492492
// GC locker being active, true otherwise.
493493
bool do_full_collection(bool explicit_gc,
494494
bool clear_all_soft_refs,
495-
bool do_maximum_compaction);
495+
bool do_maximal_compaction);
496496

497497
// Callback from VM_G1CollectFull operation, or collect_as_vm_thread.
498498
void do_full_collection(bool clear_all_soft_refs) override;
@@ -518,7 +518,7 @@ class G1CollectedHeap : public CollectedHeap {
518518
// Helper method for satisfy_failed_allocation()
519519
HeapWord* satisfy_failed_allocation_helper(size_t word_size,
520520
bool do_gc,
521-
bool maximum_compaction,
521+
bool maximal_compaction,
522522
bool expect_null_mutator_alloc_region,
523523
bool* gc_succeeded);
524524

‎src/hotspot/share/gc/g1/g1FullCollector.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ uint G1FullCollector::calc_active_workers() {
111111
G1FullCollector::G1FullCollector(G1CollectedHeap* heap,
112112
bool explicit_gc,
113113
bool clear_soft_refs,
114-
bool do_maximum_compaction) :
114+
bool do_maximal_compaction) :
115115
_heap(heap),
116-
_scope(heap->monitoring_support(), explicit_gc, clear_soft_refs, do_maximum_compaction),
116+
_scope(heap->monitoring_support(), explicit_gc, clear_soft_refs, do_maximal_compaction),
117117
_num_workers(calc_active_workers()),
118118
_oop_queue_set(_num_workers),
119119
_array_queue_set(_num_workers),

‎src/hotspot/share/gc/g1/g1FullCollector.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class G1FullCollector : StackObj {
9393
G1FullCollector(G1CollectedHeap* heap,
9494
bool explicit_gc,
9595
bool clear_soft_refs,
96-
bool do_maximum_compaction);
96+
bool do_maximal_compaction);
9797
~G1FullCollector();
9898

9999
void prepare_collection();

‎src/hotspot/share/gc/g1/g1FullGCScope.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ G1FullGCJFRTracerMark::~G1FullGCJFRTracerMark() {
3838
G1FullGCScope::G1FullGCScope(G1MonitoringSupport* monitoring_support,
3939
bool explicit_gc,
4040
bool clear_soft,
41-
bool do_maximum_compaction) :
41+
bool do_maximal_compaction) :
4242
_rm(),
4343
_explicit_gc(explicit_gc),
4444
_g1h(G1CollectedHeap::heap()),
@@ -50,7 +50,7 @@ G1FullGCScope::G1FullGCScope(G1MonitoringSupport* monitoring_support,
5050
_soft_refs(clear_soft, _g1h->soft_ref_policy()),
5151
_monitoring_scope(monitoring_support, true /* full_gc */, true /* all_memory_pools_affected */),
5252
_heap_printer(_g1h),
53-
_region_compaction_threshold(do_maximum_compaction ?
53+
_region_compaction_threshold(do_maximal_compaction ?
5454
HeapRegion::GrainWords :
5555
(1 - MarkSweepDeadRatio / 100.0) * HeapRegion::GrainWords) { }
5656

‎src/hotspot/share/gc/g1/g1VMOperations.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ void VM_G1CollectFull::doit() {
5252
GCCauseSetter x(g1h, _gc_cause);
5353
_gc_succeeded = g1h->do_full_collection(true /* explicit_gc */,
5454
false /* clear_all_soft_refs */,
55-
false /* do_maximum_compaction */);
55+
false /* do_maximal_compaction */);
5656
}
5757

5858
VM_G1TryInitiateConcMark::VM_G1TryInitiateConcMark(uint gc_count_before,

0 commit comments

Comments
 (0)
Please sign in to comment.