hotspot/src/share/vm/gc/parallel/psGCAdaptivePolicyCounters.hpp
author tschatzl
Thu, 28 Jan 2016 13:30:12 +0100
changeset 35877 a2a62511d0f8
parent 30764 fec48bf5a827
permissions -rw-r--r--
8146987: Improve Parallel GC Full GC by caching results of live_words_in_range() Summary: A large part of time in the parallel scavenge collector is spent finding out the amount of live words within memory ranges to find out where to move an object to. Try to incrementally calculate this value. Reviewed-by: tschatzl, mgerdin, jmasa Contributed-by: ray alex <sky1young@gmail.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 22551
diff changeset
     2
 * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 22551
diff changeset
    25
#ifndef SHARE_VM_GC_PARALLEL_PSGCADAPTIVEPOLICYCOUNTERS_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 22551
diff changeset
    26
#define SHARE_VM_GC_PARALLEL_PSGCADAPTIVEPOLICYCOUNTERS_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 22551
diff changeset
    28
#include "gc/parallel/gcAdaptivePolicyCounters.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 22551
diff changeset
    29
#include "gc/parallel/psAdaptiveSizePolicy.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 22551
diff changeset
    30
#include "gc/shared/gcPolicyCounters.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// PSGCAdaptivePolicyCounters is a holder class for performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// that track the data and decisions for the ergonomics policy for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// parallel scavenge collector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class PSGCAdaptivePolicyCounters : public GCAdaptivePolicyCounters {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // survivor space vs. tenuring threshold
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  PerfVariable* _old_promo_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  PerfVariable* _old_eden_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  PerfVariable* _avg_promoted_avg_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  PerfVariable* _avg_promoted_dev_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  PerfVariable* _avg_promoted_padded_avg_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  PerfVariable* _avg_pretenured_padded_avg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // young gen vs. old gen sizing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  PerfVariable* _avg_major_pause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  PerfVariable* _avg_major_interval;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  PerfVariable* _live_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  PerfVariable* _free_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  PerfVariable* _avg_base_footprint;
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1
diff changeset
    54
  PerfVariable* _gc_overhead_limit_exceeded_counter;
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1
diff changeset
    55
  PerfVariable* _live_at_last_full_gc_counter;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  PerfVariable* _old_capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  PerfVariable* _boundary_moved;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  PerfVariable* _change_old_gen_for_min_pauses;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  PerfVariable* _change_young_gen_for_maj_pauses_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  PerfVariable* _major_pause_old_slope;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  PerfVariable* _minor_pause_old_slope;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  PerfVariable* _major_pause_young_slope;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  PerfVariable* _scavenge_skipped;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  PerfVariable* _full_follows_scavenge;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Use this time stamp if the gc time stamp is not available.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  TimeStamp     _counter_time_stamp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  PSAdaptiveSizePolicy* ps_size_policy() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    return (PSAdaptiveSizePolicy*)_size_policy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  PSGCAdaptivePolicyCounters(const char* name, int collectors, int generations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                             PSAdaptiveSizePolicy* size_policy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  inline void update_old_capacity(size_t size_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    _old_capacity->set_value(size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  inline void update_old_eden_size(size_t old_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    _old_eden_size->set_value(old_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  inline void update_old_promo_size(size_t old_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    _old_promo_size->set_value(old_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  inline void update_boundary_moved(int size_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    _boundary_moved->set_value(size_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  inline void update_avg_promoted_avg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    _avg_promoted_avg_counter->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      (jlong)(ps_size_policy()->avg_promoted()->average())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  inline void update_avg_promoted_dev() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    _avg_promoted_dev_counter->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
      (jlong)(ps_size_policy()->avg_promoted()->deviation())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  inline void update_avg_promoted_padded_avg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    _avg_promoted_padded_avg_counter->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
      (jlong)(ps_size_policy()->avg_promoted()->padded_average())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  inline void update_avg_pretenured_padded_avg() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    _avg_pretenured_padded_avg->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      (jlong)(ps_size_policy()->_avg_pretenured->padded_average())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  inline void update_change_young_gen_for_maj_pauses() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    _change_young_gen_for_maj_pauses_counter->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      ps_size_policy()->change_young_gen_for_maj_pauses());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  inline void update_change_old_gen_for_min_pauses() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    _change_old_gen_for_min_pauses->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
      ps_size_policy()->change_old_gen_for_min_pauses());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
17842
0d11fa49f81f 8007762: Rename a bunch of methods in size policy across collectors
tamao
parents: 7397
diff changeset
   122
  // compute_generations_free_space() statistics
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  inline void update_avg_major_pause() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    _avg_major_pause->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
      (jlong)(ps_size_policy()->_avg_major_pause->average() * 1000.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  inline void update_avg_major_interval() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    _avg_major_interval->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      (jlong)(ps_size_policy()->_avg_major_interval->average() * 1000.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  inline void update_major_gc_cost_counter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    _major_gc_cost_counter->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      (jlong)(ps_size_policy()->major_gc_cost() * 100.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  inline void update_mutator_cost_counter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    _mutator_cost_counter->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      (jlong)(ps_size_policy()->mutator_cost() * 100.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  inline void update_live_space() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    _live_space->set_value(ps_size_policy()->live_space());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  inline void update_free_space() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    _free_space->set_value(ps_size_policy()->free_space());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  inline void update_avg_base_footprint() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    _avg_base_footprint->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
      (jlong)(ps_size_policy()->avg_base_footprint()->average())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  inline void update_avg_old_live() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    _avg_old_live_counter->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
      (jlong)(ps_size_policy()->avg_old_live()->average())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Scale up all the slopes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  inline void update_major_pause_old_slope() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    _major_pause_old_slope->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
      (jlong)(ps_size_policy()->major_pause_old_slope() * 1000)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  inline void update_minor_pause_old_slope() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    _minor_pause_old_slope->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
      (jlong)(ps_size_policy()->minor_pause_old_slope() * 1000)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  inline void update_major_pause_young_slope() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    _major_pause_young_slope->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      (jlong)(ps_size_policy()->major_pause_young_slope() * 1000)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  }
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1
diff changeset
   179
  inline void update_gc_overhead_limit_exceeded_counter() {
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1
diff changeset
   180
    _gc_overhead_limit_exceeded_counter->set_value(
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1
diff changeset
   181
      (jlong) ps_size_policy()->gc_overhead_limit_exceeded());
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1
diff changeset
   182
  }
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1
diff changeset
   183
  inline void update_live_at_last_full_gc_counter() {
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1
diff changeset
   184
    _live_at_last_full_gc_counter->set_value(
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1
diff changeset
   185
      (jlong)(ps_size_policy()->live_at_last_full_gc()));
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 1
diff changeset
   186
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  inline void update_scavenge_skipped(int cause) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    _scavenge_skipped->set_value(cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  inline void update_full_follows_scavenge(int event) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    _full_follows_scavenge->set_value(event);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // Update all the counters that can be updated from the size policy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // This should be called after all policy changes have been made
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 17842
diff changeset
   198
  // and reflected internally in the size policy.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  void update_counters_from_policy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Update counters that can be updated from fields internal to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // counter or from globals.  This is distinguished from counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // that are updated via input parameters.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  void update_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  virtual GCPolicyCounters::Name kind() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    return GCPolicyCounters::PSGCAdaptivePolicyCountersKind;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   210
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 22551
diff changeset
   211
#endif // SHARE_VM_GC_PARALLEL_PSGCADAPTIVEPOLICYCOUNTERS_HPP