@@ -1098,7 +1098,7 @@ void G1CollectedHeap::verify_after_full_collection() {
1098
1098
1099
1099
bool G1CollectedHeap::do_full_collection (bool explicit_gc,
1100
1100
bool clear_all_soft_refs,
1101
- bool do_maximum_compaction ) {
1101
+ bool do_maximal_compaction ) {
1102
1102
assert_at_safepoint_on_vm_thread ();
1103
1103
1104
1104
if (GCLocker::check_active_before_gc ()) {
@@ -1111,7 +1111,7 @@ bool G1CollectedHeap::do_full_collection(bool explicit_gc,
1111
1111
1112
1112
G1FullGCMark gc_mark;
1113
1113
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 );
1115
1115
1116
1116
collector.prepare_collection ();
1117
1117
collector.collect ();
@@ -1125,20 +1125,20 @@ void G1CollectedHeap::do_full_collection(bool clear_all_soft_refs) {
1125
1125
// Currently, there is no facility in the do_full_collection(bool) API to notify
1126
1126
// the caller that the collection did not succeed (e.g., because it was locked
1127
1127
// 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
1129
1129
// not leaving any dead wood.
1130
- bool do_maximum_compaction = clear_all_soft_refs;
1130
+ bool do_maximal_compaction = clear_all_soft_refs;
1131
1131
bool dummy = do_full_collection (true , /* explicit_gc */
1132
1132
clear_all_soft_refs,
1133
- do_maximum_compaction );
1133
+ do_maximal_compaction );
1134
1134
}
1135
1135
1136
1136
bool G1CollectedHeap::upgrade_to_full_collection () {
1137
1137
GCCauseSetter compaction (this , GCCause::_g1_compaction_pause);
1138
1138
log_info (gc, ergo)(" Attempting full compaction clearing soft references" );
1139
1139
bool success = do_full_collection (false /* explicit gc */ ,
1140
1140
true /* clear_all_soft_refs */ ,
1141
- false /* do_maximum_compaction */ );
1141
+ false /* do_maximal_compaction */ );
1142
1142
// do_full_collection only fails if blocked by GC locker and that can't
1143
1143
// be the case here since we only call this when already completed one gc.
1144
1144
assert (success, " invariant" );
@@ -1162,7 +1162,7 @@ void G1CollectedHeap::resize_heap_if_necessary() {
1162
1162
1163
1163
HeapWord* G1CollectedHeap::satisfy_failed_allocation_helper (size_t word_size,
1164
1164
bool do_gc,
1165
- bool maximum_compaction ,
1165
+ bool maximal_compaction ,
1166
1166
bool expect_null_mutator_alloc_region,
1167
1167
bool * gc_succeeded) {
1168
1168
*gc_succeeded = true ;
@@ -1186,16 +1186,16 @@ HeapWord* G1CollectedHeap::satisfy_failed_allocation_helper(size_t word_size,
1186
1186
if (do_gc) {
1187
1187
GCCauseSetter compaction (this , GCCause::_g1_compaction_pause);
1188
1188
// 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
1190
1190
// 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" );
1193
1193
} else {
1194
1194
log_info (gc, ergo)(" Attempting full compaction" );
1195
1195
}
1196
1196
*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 */ );
1199
1199
}
1200
1200
1201
1201
return NULL ;
0 commit comments