src/hotspot/share/gc/shared/ageTable.cpp
author stefank
Tue, 06 Aug 2019 10:48:21 +0200
changeset 57777 90ead0febf56
parent 54678 93f09ca4a7f8
permissions -rw-r--r--
8229258: Rework markOop and markOopDesc into a simpler mark word value carrier Reviewed-by: rkennke, coleenp, kbarrett, dcubed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46560
388aa8d67c80 8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents: 40914
diff changeset
     2
 * Copyright (c) 1997, 2017, 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"
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47216
diff changeset
    26
#include "jvm.h"
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35492
diff changeset
    27
#include "gc/shared/ageTable.inline.hpp"
36097
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
    28
#include "gc/shared/ageTableTracer.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30154
diff changeset
    29
#include "gc/shared/collectedHeap.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/resourceArea.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
    31
#include "logging/log.hpp"
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35492
diff changeset
    32
#include "oops/oop.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 35492
diff changeset
    35
/* Copyright (c) 1992, 2016, Oracle and/or its affiliates, and Stanford University.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
   See the LICENSE file for license information. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35061
diff changeset
    38
AgeTable::AgeTable(bool global) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  if (UsePerfData && global) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    const char* agetable_ns = "generation.0.agetable";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    const char* bytes_ns = PerfDataManager::name_space(agetable_ns, "bytes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    for(int age = 0; age < table_size; age ++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
      char age_name[10];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
      jio_snprintf(age_name, sizeof(age_name), "%2.2d", age);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
      const char* cname = PerfDataManager::counter_name(bytes_ns, age_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
      _perf_sizes[age] = PerfDataManager::create_variable(SUN_GC, cname,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
                                                          PerfData::U_Bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
                                                          CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    const char* cname = PerfDataManager::counter_name(agetable_ns, "size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    PerfDataManager::create_constant(SUN_GC, cname, PerfData::U_None,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
                                     table_size, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35061
diff changeset
    65
void AgeTable::clear() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  for (size_t* p = sizes; p < sizes + table_size; ++p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    *p = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
35492
c8c0273e6b91 8146690: Make all classes in GC follow the naming convention.
david
parents: 35061
diff changeset
    71
void AgeTable::merge(AgeTable* subTable) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  for (int i = 0; i < table_size; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    sizes[i]+= subTable->sizes[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
40914
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
    77
uint AgeTable::compute_tenuring_threshold(size_t desired_survivor_size) {
23506
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    78
  uint result;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    79
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    80
  if (AlwaysTenure || NeverTenure) {
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 54678
diff changeset
    81
    assert(MaxTenuringThreshold == 0 || MaxTenuringThreshold == markWord::max_age + 1,
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 54678
diff changeset
    82
           "MaxTenuringThreshold should be 0 or markWord::max_age + 1, but is " UINTX_FORMAT, MaxTenuringThreshold);
23506
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    83
    result = MaxTenuringThreshold;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    84
  } else {
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    85
    size_t total = 0;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    86
    uint age = 1;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    87
    assert(sizes[0] == 0, "no objects with age zero should be recorded");
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    88
    while (age < table_size) {
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    89
      total += sizes[age];
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    90
      // check if including objects of age 'age' made us pass the desired
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    91
      // size, if so 'age' is the new threshold
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    92
      if (total > desired_survivor_size) break;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    93
      age++;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    94
    }
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
    95
    result = age < MaxTenuringThreshold ? age : MaxTenuringThreshold;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
    99
  log_debug(gc, age)("Desired survivor size " SIZE_FORMAT " bytes, new threshold " UINTX_FORMAT " (max threshold " UINTX_FORMAT ")",
40914
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   100
                     desired_survivor_size * oopSize, (uintx) result, MaxTenuringThreshold);
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   101
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   102
  return result;
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   103
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
40914
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   105
void AgeTable::print_age_table(uint tenuring_threshold) {
36097
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   106
  if (log_is_enabled(Trace, gc, age) || UsePerfData || AgeTableTracer::is_tenuring_distribution_event_enabled()) {
40914
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   107
    log_trace(gc, age)("Age table with threshold %u (max threshold " UINTX_FORMAT ")",
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   108
                       tenuring_threshold, MaxTenuringThreshold);
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   109
23506
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
   110
    size_t total = 0;
9b98355e9060 6521376: MaxTenuringThreshold and AlwayTenure/NeverTenure consistency
tamao
parents: 15228
diff changeset
   111
    uint age = 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    while (age < table_size) {
36097
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   113
      size_t wordSize = sizes[age];
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   114
      total += wordSize;
c830c234e056 8009538: [Event Request] Want events for tenuring distribution
david
parents: 35862
diff changeset
   115
      if (wordSize > 0) {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33105
diff changeset
   116
        log_trace(gc, age)("- age %3u: " SIZE_FORMAT_W(10) " bytes, " SIZE_FORMAT_W(10) " total",
40914
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   117
                            age, wordSize * oopSize, total * oopSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      }
40914
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   119
      AgeTableTracer::send_tenuring_distribution_event(age, wordSize * oopSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      if (UsePerfData) {
40914
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   121
        _perf_sizes[age]->set_value(wordSize * oopSize);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      age++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
40914
90c87069b39c 8164936: G1 age table printout contains contents from previous GC
tschatzl
parents: 36097
diff changeset
   126
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127