src/hotspot/share/memory/metaspaceChunkFreeListSummary.hpp
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 30578 hotspot/src/share/vm/memory/metaspaceChunkFreeListSummary.hpp@8b6c44532ca2
child 49364 601146c66cad
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23470
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
     1
/*
30578
8b6c44532ca2 8079148: Fix incorrect include guards
pliden
parents: 23470
diff changeset
     2
 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
23470
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
     4
 *
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
     7
 * published by the Free Software Foundation.
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
     8
 *
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    13
 * accompanied this code).
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    14
 *
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    18
 *
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    21
 * questions.
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    22
 *
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    23
 */
30578
8b6c44532ca2 8079148: Fix incorrect include guards
pliden
parents: 23470
diff changeset
    24
8b6c44532ca2 8079148: Fix incorrect include guards
pliden
parents: 23470
diff changeset
    25
#ifndef SHARE_VM_MEMORY_METASPACECHUNKFREELISTSUMMARY_HPP
8b6c44532ca2 8079148: Fix incorrect include guards
pliden
parents: 23470
diff changeset
    26
#define SHARE_VM_MEMORY_METASPACECHUNKFREELISTSUMMARY_HPP
23470
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    27
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    28
#include "memory/allocation.hpp"
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    29
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    30
class MetaspaceChunkFreeListSummary VALUE_OBJ_CLASS_SPEC {
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    31
  size_t _num_specialized_chunks;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    32
  size_t _num_small_chunks;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    33
  size_t _num_medium_chunks;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    34
  size_t _num_humongous_chunks;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    35
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    36
  size_t _specialized_chunks_size_in_bytes;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    37
  size_t _small_chunks_size_in_bytes;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    38
  size_t _medium_chunks_size_in_bytes;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    39
  size_t _humongous_chunks_size_in_bytes;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    40
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    41
 public:
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    42
  MetaspaceChunkFreeListSummary() :
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    43
    _num_specialized_chunks(0),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    44
    _num_small_chunks(0),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    45
    _num_medium_chunks(0),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    46
    _num_humongous_chunks(0),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    47
    _specialized_chunks_size_in_bytes(0),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    48
    _small_chunks_size_in_bytes(0),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    49
    _medium_chunks_size_in_bytes(0),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    50
    _humongous_chunks_size_in_bytes(0)
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    51
  {}
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    52
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    53
  MetaspaceChunkFreeListSummary(size_t num_specialized_chunks,
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    54
                                size_t num_small_chunks,
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    55
                                size_t num_medium_chunks,
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    56
                                size_t num_humongous_chunks,
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    57
                                size_t specialized_chunks_size_in_bytes,
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    58
                                size_t small_chunks_size_in_bytes,
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    59
                                size_t medium_chunks_size_in_bytes,
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    60
                                size_t humongous_chunks_size_in_bytes) :
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    61
    _num_specialized_chunks(num_specialized_chunks),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    62
    _num_small_chunks(num_small_chunks),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    63
    _num_medium_chunks(num_medium_chunks),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    64
    _num_humongous_chunks(num_humongous_chunks),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    65
    _specialized_chunks_size_in_bytes(specialized_chunks_size_in_bytes),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    66
    _small_chunks_size_in_bytes(small_chunks_size_in_bytes),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    67
    _medium_chunks_size_in_bytes(medium_chunks_size_in_bytes),
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    68
    _humongous_chunks_size_in_bytes(humongous_chunks_size_in_bytes)
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    69
  {}
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    70
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    71
  size_t num_specialized_chunks() const {
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    72
    return _num_specialized_chunks;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    73
  }
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    74
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    75
  size_t num_small_chunks() const {
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    76
    return _num_small_chunks;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    77
  }
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    78
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    79
  size_t num_medium_chunks() const {
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    80
    return _num_medium_chunks;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    81
  }
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    82
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    83
  size_t num_humongous_chunks() const {
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    84
    return _num_humongous_chunks;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    85
  }
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    86
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    87
  size_t specialized_chunks_size_in_bytes() const {
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    88
    return _specialized_chunks_size_in_bytes;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    89
  }
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    90
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    91
  size_t small_chunks_size_in_bytes() const {
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    92
    return _small_chunks_size_in_bytes;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    93
  }
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    94
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    95
  size_t medium_chunks_size_in_bytes() const {
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    96
    return _medium_chunks_size_in_bytes;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    97
  }
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    98
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
    99
  size_t humongous_chunks_size_in_bytes() const {
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
   100
    return _humongous_chunks_size_in_bytes;
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
   101
  }
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
   102
};
ff2a7ea4225d 8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
diff changeset
   103
30578
8b6c44532ca2 8079148: Fix incorrect include guards
pliden
parents: 23470
diff changeset
   104
#endif // SHARE_VM_MEMORY_METASPACECHUNKFREELISTSUMMARY_HPP