hotspot/src/share/vm/gc/shared/ageTable.cpp
author coleenp
Mon, 25 Apr 2016 09:51:00 -0400
changeset 38074 8475fdc6dcc3
parent 36097 c830c234e056
child 40914 90c87069b39c
permissions -rw-r--r--
8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure Summary: GC walks the mirror using OopClosure rather than using CLDClosure in oops_interpreted_do() Reviewed-by: dlong, twisti, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35492
diff changeset
     2
 * Copyright (c) 1997, 2016, 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: 2105
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2105
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: 2105
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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35492
diff changeset
    26
#include "gc/shared/ageTable.inline.hpp"
36097
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
    27
#include "gc/shared/ageTableTracer.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30154
diff changeset
    28
#include "gc/shared/collectedHeap.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30154
diff changeset
    29
#include "gc/shared/collectorPolicy.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30154
diff changeset
    30
#include "gc/shared/gcPolicyCounters.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "memory/resourceArea.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
    32
#include "logging/log.hpp"
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35492
diff changeset
    33
#include "oops/oop.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35492
diff changeset
    36
/* Copyright (c) 1992, 2016, Oracle and/or its affiliates, and Stanford University.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
   See the LICENSE file for license information. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35061
diff changeset
    39
AgeTable::AgeTable(bool global) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  if (UsePerfData && global) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    const char* agetable_ns = "generation.0.agetable";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    const char* bytes_ns = PerfDataManager::name_space(agetable_ns, "bytes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    for(int age = 0; age < table_size; age ++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
      char age_name[10];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
      jio_snprintf(age_name, sizeof(age_name), "%2.2d", age);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
      const char* cname = PerfDataManager::counter_name(bytes_ns, age_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
      _perf_sizes[age] = PerfDataManager::create_variable(SUN_GC, cname,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
                                                          PerfData::U_Bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                                                          CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    const char* cname = PerfDataManager::counter_name(agetable_ns, "size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    PerfDataManager::create_constant(SUN_GC, cname, PerfData::U_None,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                                     table_size, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35061
diff changeset
    66
void AgeTable::clear() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  for (size_t* p = sizes; p < sizes + table_size; ++p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    *p = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35061
diff changeset
    72
void AgeTable::merge(AgeTable* subTable) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  for (int i = 0; i < table_size; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    sizes[i]+= subTable->sizes[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35061
diff changeset
    78
uint AgeTable::compute_tenuring_threshold(size_t survivor_capacity, GCPolicyCounters* gc_counters) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  size_t desired_survivor_size = (size_t)((((double) survivor_capacity)*TargetSurvivorRatio)/100);
23506
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    80
  uint result;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    81
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    82
  if (AlwaysTenure || NeverTenure) {
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    83
    assert(MaxTenuringThreshold == 0 || MaxTenuringThreshold == markOopDesc::max_age + 1,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32736
diff changeset
    84
           "MaxTenuringThreshold should be 0 or markOopDesc::max_age + 1, but is " UINTX_FORMAT, MaxTenuringThreshold);
23506
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    85
    result = MaxTenuringThreshold;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    86
  } else {
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    87
    size_t total = 0;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    88
    uint age = 1;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    89
    assert(sizes[0] == 0, "no objects with age zero should be recorded");
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    90
    while (age < table_size) {
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    91
      total += sizes[age];
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    92
      // check if including objects of age 'age' made us pass the desired
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    93
      // size, if so 'age' is the new threshold
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    94
      if (total > desired_survivor_size) break;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    95
      age++;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    96
    }
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    97
    result = age < MaxTenuringThreshold ? age : MaxTenuringThreshold;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   101
  log_debug(gc, age)("Desired survivor size " SIZE_FORMAT " bytes, new threshold " UINTX_FORMAT " (max threshold " UINTX_FORMAT ")",
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   102
                     desired_survivor_size*oopSize, (uintx) result, MaxTenuringThreshold);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
36097
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   104
  if (log_is_enabled(Trace, gc, age) || UsePerfData || AgeTableTracer::is_tenuring_distribution_event_enabled()) {
23506
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
   105
    size_t total = 0;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
   106
    uint age = 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    while (age < table_size) {
36097
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   108
      size_t wordSize = sizes[age];
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   109
      total += wordSize;
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   110
      if (wordSize > 0) {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   111
        log_trace(gc, age)("- age %3u: " SIZE_FORMAT_W(10) " bytes, " SIZE_FORMAT_W(10) " total",
36097
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   112
                            age, wordSize*oopSize, total*oopSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      }
36097
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   114
      AgeTableTracer::send_tenuring_distribution_event(age, wordSize*oopSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      if (UsePerfData) {
36097
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   116
        _perf_sizes[age]->set_value(wordSize*oopSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      age++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      gc_counters->tenuring_threshold()->set_value(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      gc_counters->desired_survivor_size()->set_value(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
        desired_survivor_size*oopSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}