src/hotspot/share/gc/g1/g1DefaultPolicy.hpp
author jwilhelm
Wed, 14 Feb 2018 13:29:45 +0100
changeset 48969 7eb296a8ce2c
parent 47681 149745044e48
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
     1
/*
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 41284
diff changeset
     2
 * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
     4
 *
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
     8
 *
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    13
 * accompanied this code).
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    14
 *
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    18
 *
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    21
 * questions.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    22
 *
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    23
 */
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    24
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    25
#ifndef SHARE_VM_GC_G1_G1DEFAULTPOLICY_HPP
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    26
#define SHARE_VM_GC_G1_G1DEFAULTPOLICY_HPP
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    27
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    28
#include "gc/g1/g1CollectorState.hpp"
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    29
#include "gc/g1/g1GCPhaseTimes.hpp"
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    30
#include "gc/g1/g1InCSetState.hpp"
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    31
#include "gc/g1/g1InitialMarkToMixedTimeTracker.hpp"
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    32
#include "gc/g1/g1MMUTracker.hpp"
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    33
#include "gc/g1/g1Predictions.hpp"
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    34
#include "gc/g1/g1Policy.hpp"
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    35
#include "gc/g1/g1YoungGenSizer.hpp"
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    36
#include "gc/shared/gcCause.hpp"
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    37
#include "utilities/pair.hpp"
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    38
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    39
class HeapRegion;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    40
class G1CollectionSet;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    41
class CollectionSetChooser;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    42
class G1IHOPControl;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    43
class G1Analytics;
38183
cb68e4923223 8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents: 38109
diff changeset
    44
class G1SurvivorRegions;
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    45
class G1YoungGenSizer;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    46
class GCPolicyCounters;
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 41284
diff changeset
    47
class STWGCTimer;
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    48
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    49
class G1DefaultPolicy: public G1Policy {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    50
 private:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    51
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    52
  static G1IHOPControl* create_ihop_control(const G1Predictions* predictor);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    53
  // Update the IHOP control with necessary statistics.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    54
  void update_ihop_prediction(double mutator_time_s,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    55
                              size_t mutator_alloc_bytes,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    56
                              size_t young_gen_size);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    57
  void report_ihop_statistics();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    58
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    59
  G1Predictions _predictor;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    60
  G1Analytics* _analytics;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    61
  G1MMUTracker* _mmu_tracker;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    62
  G1IHOPControl* _ihop_control;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    63
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    64
  GCPolicyCounters* _policy_counters;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    65
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    66
  double _full_collection_start_sec;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    67
41284
b4276ec89d0d 8164482: [REDO] G1 does not implement millis_since_last_gc which is needed by RMI GC
jprovino
parents: 40914
diff changeset
    68
  jlong _collection_pause_end_millis;
b4276ec89d0d 8164482: [REDO] G1 does not implement millis_since_last_gc which is needed by RMI GC
jprovino
parents: 40914
diff changeset
    69
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    70
  uint _young_list_target_length;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    71
  uint _young_list_fixed_length;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    72
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    73
  // The max number of regions we can extend the eden by while the GC
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    74
  // locker is active. This should be >= _young_list_target_length;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    75
  uint _young_list_max_length;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    76
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    77
  // SurvRateGroups below must be initialized after the predictor because they
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    78
  // indirectly use it through this object passed to their constructor.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    79
  SurvRateGroup* _short_lived_surv_rate_group;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    80
  SurvRateGroup* _survivor_surv_rate_group;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    81
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    82
  double _reserve_factor;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    83
  // This will be set when the heap is expanded
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    84
  // for the first time during initialization.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    85
  uint   _reserve_regions;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    86
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    87
  G1YoungGenSizer _young_gen_sizer;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    88
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    89
  uint _free_regions_at_end_of_collection;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    90
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    91
  size_t _max_rs_lengths;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    92
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    93
  size_t _rs_lengths_prediction;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    94
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    95
  size_t _pending_cards;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    96
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    97
  // The amount of allocated bytes in old gen during the last mutator and the following
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    98
  // young GC phase.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
    99
  size_t _bytes_allocated_in_old_since_last_gc;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   100
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   101
  G1InitialMarkToMixedTimeTracker _initial_mark_to_mixed;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   102
public:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   103
  const G1Predictions& predictor() const { return _predictor; }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   104
  const G1Analytics* analytics()   const { return const_cast<const G1Analytics*>(_analytics); }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   105
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   106
  void add_bytes_allocated_in_old_since_last_gc(size_t bytes) { _bytes_allocated_in_old_since_last_gc += bytes; }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   107
38109
6503703df058 8155209: Move setting of young index in cset to G1CollectionSet
mgerdin
parents: 38106
diff changeset
   108
  void set_region_eden(HeapRegion* hr) {
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   109
    hr->set_eden();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   110
    hr->install_surv_rate_group(_short_lived_surv_rate_group);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   111
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   112
38109
6503703df058 8155209: Move setting of young index in cset to G1CollectionSet
mgerdin
parents: 38106
diff changeset
   113
  void set_region_survivor(HeapRegion* hr) {
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   114
    assert(hr->is_survivor(), "pre-condition");
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   115
    hr->install_surv_rate_group(_survivor_surv_rate_group);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   116
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   117
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   118
  void record_max_rs_lengths(size_t rs_lengths) {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   119
    _max_rs_lengths = rs_lengths;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   120
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   121
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   122
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   123
  double predict_base_elapsed_time_ms(size_t pending_cards) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   124
  double predict_base_elapsed_time_ms(size_t pending_cards,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   125
                                      size_t scanned_cards) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   126
  size_t predict_bytes_to_copy(HeapRegion* hr) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   127
  double predict_region_elapsed_time_ms(HeapRegion* hr, bool for_young_gc) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   128
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   129
  double predict_survivor_regions_evac_time() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   130
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   131
  bool should_update_surv_rate_group_predictors() {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   132
    return collector_state()->last_gc_was_young() && !collector_state()->in_marking_window();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   133
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   134
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   135
  void cset_regions_freed() {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   136
    bool update = should_update_surv_rate_group_predictors();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   137
38185
c432f8466c73 8155634: Clean out old logging and dead code from SurvRateGroup
mgerdin
parents: 38183
diff changeset
   138
    _short_lived_surv_rate_group->all_surviving_words_recorded(predictor(), update);
c432f8466c73 8155634: Clean out old logging and dead code from SurvRateGroup
mgerdin
parents: 38183
diff changeset
   139
    _survivor_surv_rate_group->all_surviving_words_recorded(predictor(), update);
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   140
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   141
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   142
  G1MMUTracker* mmu_tracker() {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   143
    return _mmu_tracker;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   144
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   145
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   146
  const G1MMUTracker* mmu_tracker() const {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   147
    return _mmu_tracker;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   148
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   149
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   150
  double max_pause_time_ms() const {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   151
    return _mmu_tracker->max_gc_time() * 1000.0;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   152
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   153
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   154
  double predict_yg_surv_rate(int age, SurvRateGroup* surv_rate_group) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   155
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   156
  double predict_yg_surv_rate(int age) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   157
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   158
  double accum_yg_surv_rate_pred(int age) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   159
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   160
protected:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   161
  G1CollectionSet* _collection_set;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   162
  virtual double average_time_ms(G1GCPhaseTimes::GCParPhases phase) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   163
  virtual double other_time_ms(double pause_time_ms) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   164
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   165
  double young_other_time_ms() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   166
  double non_young_other_time_ms() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   167
  double constant_other_time_ms(double pause_time_ms) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   168
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   169
  CollectionSetChooser* cset_chooser() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   170
private:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   171
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   172
  // The number of bytes copied during the GC.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   173
  size_t _bytes_copied_during_gc;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   174
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   175
  // Stash a pointer to the g1 heap.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   176
  G1CollectedHeap* _g1;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   177
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   178
  G1GCPhaseTimes* _phase_times;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   179
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   180
  // This set of variables tracks the collector efficiency, in order to
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   181
  // determine whether we should initiate a new marking.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   182
  double _mark_remark_start_sec;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   183
  double _mark_cleanup_start_sec;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   184
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   185
  // Updates the internal young list maximum and target lengths. Returns the
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   186
  // unbounded young list target length.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   187
  uint update_young_list_max_and_target_length();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   188
  uint update_young_list_max_and_target_length(size_t rs_lengths);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   189
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   190
  // Update the young list target length either by setting it to the
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   191
  // desired fixed value or by calculating it using G1's pause
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   192
  // prediction model. If no rs_lengths parameter is passed, predict
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   193
  // the RS lengths using the prediction model, otherwise use the
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   194
  // given rs_lengths as the prediction.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   195
  // Returns the unbounded young list target length.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   196
  uint update_young_list_target_length(size_t rs_lengths);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   197
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   198
  // Calculate and return the minimum desired young list target
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   199
  // length. This is the minimum desired young list length according
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   200
  // to the user's inputs.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   201
  uint calculate_young_list_desired_min_length(uint base_min_length) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   202
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   203
  // Calculate and return the maximum desired young list target
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   204
  // length. This is the maximum desired young list length according
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   205
  // to the user's inputs.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   206
  uint calculate_young_list_desired_max_length() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   207
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   208
  // Calculate and return the maximum young list target length that
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   209
  // can fit into the pause time goal. The parameters are: rs_lengths
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   210
  // represent the prediction of how large the young RSet lengths will
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   211
  // be, base_min_length is the already existing number of regions in
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   212
  // the young list, min_length and max_length are the desired min and
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   213
  // max young list length according to the user's inputs.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   214
  uint calculate_young_list_target_length(size_t rs_lengths,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   215
                                          uint base_min_length,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   216
                                          uint desired_min_length,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   217
                                          uint desired_max_length) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   218
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   219
  // Result of the bounded_young_list_target_length() method, containing both the
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   220
  // bounded as well as the unbounded young list target lengths in this order.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   221
  typedef Pair<uint, uint, StackObj> YoungTargetLengths;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   222
  YoungTargetLengths young_list_target_lengths(size_t rs_lengths) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   223
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   224
  void update_rs_lengths_prediction();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   225
  void update_rs_lengths_prediction(size_t prediction);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   226
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   227
  // Check whether a given young length (young_length) fits into the
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   228
  // given target pause time and whether the prediction for the amount
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   229
  // of objects to be copied for the given length will fit into the
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   230
  // given free space (expressed by base_free_regions).  It is used by
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   231
  // calculate_young_list_target_length().
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   232
  bool predict_will_fit(uint young_length, double base_time_ms,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   233
                        uint base_free_regions, double target_pause_time_ms) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   234
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   235
public:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   236
  size_t pending_cards() const { return _pending_cards; }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   237
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   238
  uint calc_min_old_cset_length() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   239
  uint calc_max_old_cset_length() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   240
47679
4cfcb7be4984 8189666: Replace various inlined percentage calculations with global percent_of()
tschatzl
parents: 47216
diff changeset
   241
  // Returns the given amount of reclaimable bytes (that represents
4cfcb7be4984 8189666: Replace various inlined percentage calculations with global percent_of()
tschatzl
parents: 47216
diff changeset
   242
  // the amount of reclaimable space still to be collected) as a
4cfcb7be4984 8189666: Replace various inlined percentage calculations with global percent_of()
tschatzl
parents: 47216
diff changeset
   243
  // percentage of the current heap capacity.
47681
149745044e48 8189729: Change _perc suffixes in identifiers to _percent
tschatzl
parents: 47679
diff changeset
   244
  double reclaimable_bytes_percent(size_t reclaimable_bytes) const;
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   245
41284
b4276ec89d0d 8164482: [REDO] G1 does not implement millis_since_last_gc which is needed by RMI GC
jprovino
parents: 40914
diff changeset
   246
  jlong collection_pause_end_millis() { return _collection_pause_end_millis; }
b4276ec89d0d 8164482: [REDO] G1 does not implement millis_since_last_gc which is needed by RMI GC
jprovino
parents: 40914
diff changeset
   247
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   248
private:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   249
  // Sets up marking if proper conditions are met.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   250
  void maybe_start_marking();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   251
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   252
  // The kind of STW pause.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   253
  enum PauseKind {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   254
    FullGC,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   255
    YoungOnlyGC,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   256
    MixedGC,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   257
    LastYoungGC,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   258
    InitialMarkGC,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   259
    Cleanup,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   260
    Remark
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   261
  };
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   262
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   263
  // Calculate PauseKind from internal state.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   264
  PauseKind young_gc_pause_kind() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   265
  // Record the given STW pause with the given start and end times (in s).
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   266
  void record_pause(PauseKind kind, double start, double end);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   267
  // Indicate that we aborted marking before doing any mixed GCs.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   268
  void abort_time_to_mixed_tracking();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   269
public:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   270
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 41284
diff changeset
   271
  G1DefaultPolicy(STWGCTimer* gc_timer);
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   272
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   273
  virtual ~G1DefaultPolicy();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   274
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   275
  G1CollectorState* collector_state() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   276
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   277
  G1GCPhaseTimes* phase_times() const { return _phase_times; }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   278
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   279
  void revise_young_list_target_length_if_necessary(size_t rs_lengths);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   280
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   281
  void record_new_heap_size(uint new_number_of_regions);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   282
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   283
  void init(G1CollectedHeap* g1h, G1CollectionSet* collection_set);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   284
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   285
  virtual void note_gc_start();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   286
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   287
  bool need_to_start_conc_mark(const char* source, size_t alloc_word_size = 0);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   288
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   289
  bool about_to_start_mixed_phase() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   290
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   291
  void record_collection_pause_start(double start_time_sec);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   292
  void record_collection_pause_end(double pause_time_ms, size_t cards_scanned, size_t heap_used_bytes_before_gc);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   293
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   294
  void record_full_collection_start();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   295
  void record_full_collection_end();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   296
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   297
  void record_concurrent_mark_init_end(double mark_init_elapsed_time_ms);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   298
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   299
  void record_concurrent_mark_remark_start();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   300
  void record_concurrent_mark_remark_end();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   301
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   302
  void record_concurrent_mark_cleanup_start();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   303
  void record_concurrent_mark_cleanup_end();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   304
  void record_concurrent_mark_cleanup_completed();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   305
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   306
  virtual void print_phases();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   307
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   308
  void record_bytes_copied_during_gc(size_t bytes) {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   309
    _bytes_copied_during_gc += bytes;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   310
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   311
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   312
  size_t bytes_copied_during_gc() const {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   313
    return _bytes_copied_during_gc;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   314
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   315
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   316
  bool next_gc_should_be_mixed(const char* true_action_str,
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   317
                               const char* false_action_str) const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   318
38183
cb68e4923223 8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents: 38109
diff changeset
   319
  virtual void finalize_collection_set(double target_pause_time_ms, G1SurvivorRegions* survivor);
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   320
private:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   321
  // Set the state to start a concurrent marking cycle and clear
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   322
  // _initiate_conc_mark_if_possible because it has now been
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   323
  // acted on.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   324
  void initiate_conc_mark();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   325
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   326
public:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   327
  bool force_initial_mark_if_outside_cycle(GCCause::Cause gc_cause);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   328
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   329
  void decide_on_conc_mark_initiation();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   330
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   331
  void finished_recalculating_age_indexes(bool is_survivors) {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   332
    if (is_survivors) {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   333
      _survivor_surv_rate_group->finished_recalculating_age_indexes();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   334
    } else {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   335
      _short_lived_surv_rate_group->finished_recalculating_age_indexes();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   336
    }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   337
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   338
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   339
  size_t young_list_target_length() const { return _young_list_target_length; }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   340
38106
da14ba2f0cd9 8155082: Refactor mutator region restriction
sjohanss
parents: 38105
diff changeset
   341
  bool should_allocate_mutator_region() const;
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   342
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   343
  bool can_expand_young_list() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   344
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   345
  uint young_list_max_length() const {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   346
    return _young_list_max_length;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   347
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   348
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   349
  bool adaptive_young_list_length() const;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   350
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   351
  virtual bool should_process_references() const {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   352
    return true;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   353
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   354
38183
cb68e4923223 8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents: 38109
diff changeset
   355
  void transfer_survivors_to_cset(const G1SurvivorRegions* survivors);
cb68e4923223 8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents: 38109
diff changeset
   356
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   357
private:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   358
  //
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   359
  // Survivor regions policy.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   360
  //
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   361
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   362
  // Current tenuring threshold, set to 0 if the collector reaches the
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   363
  // maximum amount of survivors regions.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   364
  uint _tenuring_threshold;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   365
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   366
  // The limit on the number of regions allocated for survivors.
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   367
  uint _max_survivor_regions;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   368
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   369
  AgeTable _survivors_age_table;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   370
40914
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 39698
diff changeset
   371
protected:
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 39698
diff changeset
   372
  size_t desired_survivor_size() const;
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   373
public:
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   374
  uint tenuring_threshold() const { return _tenuring_threshold; }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   375
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   376
  uint max_survivor_regions() {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   377
    return _max_survivor_regions;
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   378
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   379
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   380
  void note_start_adding_survivor_regions() {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   381
    _survivor_surv_rate_group->start_adding_regions();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   382
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   383
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   384
  void note_stop_adding_survivor_regions() {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   385
    _survivor_surv_rate_group->stop_adding_regions();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   386
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   387
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   388
  void record_age_table(AgeTable* age_table) {
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   389
    _survivors_age_table.merge(age_table);
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   390
  }
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   391
40914
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 39698
diff changeset
   392
  void print_age_table();
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 39698
diff changeset
   393
38076
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   394
  void update_max_gc_locker_expansion();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   395
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   396
  void update_survivors_policy();
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   397
};
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   398
581ddcff38d9 8154753: Turn G1Policy into an interface
ehelin
parents:
diff changeset
   399
#endif // SHARE_VM_GC_G1_G1DEFAULTPOLICY_HPP