src/hotspot/share/gc/g1/g1EvacStats.cpp
author egahlin
Tue, 15 May 2018 20:24:34 +0200
changeset 50113 caf115bb98ad
parent 47216 71c04702a3d5
child 54982 b18c8301b8c2
permissions -rw-r--r--
8199712: Flight Recorder Reviewed-by: coleenp, ihse, erikj, dsamersoff, mseledtsov, egahlin, mgronlun Contributed-by: erik.gahlin@oracle.com, markus.gronlund@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
     1
/*
46290
3c4c1591507d 8151045: Remove code duplication in PLABStats/G1EvacStats::adjust_desired_plab_sz
aharlap
parents: 37997
diff changeset
     2
 * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
     4
 *
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
     7
 * published by the Free Software Foundation.
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
     8
 *
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    13
 * accompanied this code).
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    14
 *
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    18
 *
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    21
 * questions.
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    22
 *
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    23
 */
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    24
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    25
#include "precompiled.hpp"
37997
db6541410dfb 8154280: Zero build fails with undeclared G1LastPLABAverageOccupancy
coleenp
parents: 37068
diff changeset
    26
#include "gc/g1/g1_globals.hpp"
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    27
#include "gc/g1/g1EvacStats.hpp"
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    28
#include "gc/shared/gcId.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    29
#include "logging/log.hpp"
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 47216
diff changeset
    30
#include "memory/allocation.inline.hpp"
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    31
36390
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    32
void G1EvacStats::log_plab_allocation() {
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    33
  PLABStats::log_plab_allocation();
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    34
  log_debug(gc, plab)("%s other allocation: "
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    35
                      "region end waste: " SIZE_FORMAT "B, "
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    36
                      "regions filled: %u, "
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    37
                      "direct allocated: " SIZE_FORMAT "B, "
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    38
                      "failure used: " SIZE_FORMAT "B, "
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    39
                      "failure wasted: " SIZE_FORMAT "B",
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    40
                      _description,
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    41
                      _region_end_waste * HeapWordSize,
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    42
                      _regions_filled,
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    43
                      _direct_allocated * HeapWordSize,
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    44
                      _failure_used * HeapWordSize,
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    45
                      _failure_waste * HeapWordSize);
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    46
}
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    47
46290
3c4c1591507d 8151045: Remove code duplication in PLABStats/G1EvacStats::adjust_desired_plab_sz
aharlap
parents: 37997
diff changeset
    48
size_t G1EvacStats::compute_desired_plab_sz() {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    49
  // The size of the PLAB caps the amount of space that can be wasted at the
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    50
  // end of the collection. In the worst case the last PLAB could be completely
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    51
  // empty.
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    52
  // This allows us to calculate the new PLAB size to achieve the
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    53
  // TargetPLABWastePct given the latest memory usage and that the last buffer
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    54
  // will be G1LastPLABAverageOccupancy full.
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    55
  //
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    56
  // E.g. assume that if in the current GC 100 words were allocated and a
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    57
  // TargetPLABWastePct of 10 had been set.
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    58
  //
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    59
  // So we could waste up to 10 words to meet that percentage. Given that we
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    60
  // also assume that that buffer is typically half-full, the new desired PLAB
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    61
  // size is set to 20 words.
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    62
  //
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    63
  // The amount of allocation performed should be independent of the number of
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    64
  // threads, so should the maximum waste we can spend in total. So if
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    65
  // we used n threads to allocate, each of them can spend maximum waste/n words in
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    66
  // a first rough approximation. The number of threads only comes into play later
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    67
  // when actually retrieving the actual desired PLAB size.
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    68
  //
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    69
  // After calculating this optimal PLAB size the algorithm applies the usual
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    70
  // exponential decaying average over this value to guess the next PLAB size.
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    71
  //
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    72
  // We account region end waste fully to PLAB allocation (in the calculation of
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    73
  // what we consider as "used_for_waste_calculation" below). This is not
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    74
  // completely fair, but is a conservative assumption because PLABs may be sized
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    75
  // flexibly while we cannot adjust inline allocations.
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    76
  // Allocation during GC will try to minimize region end waste so this impact
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    77
  // should be minimal.
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    78
  //
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    79
  // We need to cover overflow when calculating the amount of space actually used
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    80
  // by objects in PLABs when subtracting the region end waste.
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    81
  // Region end waste may be higher than actual allocation. This may occur if many
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    82
  // threads do not allocate anything but a few rather large objects. In this
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    83
  // degenerate case the PLAB size would simply quickly tend to minimum PLAB size,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    84
  // which is an okay reaction.
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    85
  size_t const used_for_waste_calculation = used() > _region_end_waste ? used() - _region_end_waste : 0;
32602
27d046027824 8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents: 32379
diff changeset
    86
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    87
  size_t const total_waste_allowed = used_for_waste_calculation * TargetPLABWastePct;
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34230
diff changeset
    88
  size_t const cur_plab_sz = (size_t)((double)total_waste_allowed / G1LastPLABAverageOccupancy);
46290
3c4c1591507d 8151045: Remove code duplication in PLABStats/G1EvacStats::adjust_desired_plab_sz
aharlap
parents: 37997
diff changeset
    89
  return cur_plab_sz;
32379
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    90
}
aa14adafaf0f 8073013: Add detailed information about PLAB memory usage
tschatzl
parents:
diff changeset
    91
36390
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    92
G1EvacStats::G1EvacStats(const char* description, size_t desired_plab_sz_, unsigned wt) :
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    93
  PLABStats(description, desired_plab_sz_, wt),
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    94
  _region_end_waste(0),
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    95
  _regions_filled(0),
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    96
  _direct_allocated(0),
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    97
  _failure_used(0),
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    98
  _failure_waste(0) {
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
    99
}
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
   100
a2d991d1d628 8141141: Young and Old gen PLAB stats are similar in output with -XX:+PrintPLAB
tschatzl
parents: 35061
diff changeset
   101
34230
b9c64b7c06c9 8141570: Fix Zero interpreter build for --disable-precompiled-headers
coleenp
parents: 33605
diff changeset
   102
G1EvacStats::~G1EvacStats() { }