metaspaceCounters.cpp 4.3 KB
Newer Older
1
/*
2
 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 *
 */

#include "precompiled.hpp"
#include "memory/metaspaceCounters.hpp"
#include "memory/resourceArea.hpp"
28
#include "utilities/exceptions.hpp"
29 30 31

MetaspaceCounters* MetaspaceCounters::_metaspace_counters = NULL;

32 33 34 35
MetaspaceCounters::MetaspaceCounters() :
    _capacity(NULL),
    _used(NULL),
    _max_capacity(NULL) {
36 37 38 39
  if (UsePerfData) {
    size_t min_capacity = MetaspaceAux::min_chunk_size();
    size_t max_capacity = MetaspaceAux::reserved_in_bytes();
    size_t curr_capacity = MetaspaceAux::capacity_in_bytes();
J
jmasa 已提交
40
    size_t used = MetaspaceAux::used_in_bytes();
41 42 43 44 45

    initialize(min_capacity, max_capacity, curr_capacity, used);
  }
}

46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
static PerfVariable* create_ms_variable(const char *ns,
                                        const char *name,
                                        size_t value,
                                        TRAPS) {
  const char *path = PerfDataManager::counter_name(ns, name);
  PerfVariable *result =
      PerfDataManager::create_variable(SUN_GC, path, PerfData::U_Bytes, value,
                                       CHECK_NULL);
  return result;
}

static void create_ms_constant(const char *ns,
                               const char *name,
                               size_t value,
                               TRAPS) {
  const char *path = PerfDataManager::counter_name(ns, name);
  PerfDataManager::create_constant(SUN_GC, path, PerfData::U_Bytes, value, CHECK);
}

65 66 67 68 69 70 71 72 73
void MetaspaceCounters::initialize(size_t min_capacity,
                                   size_t max_capacity,
                                   size_t curr_capacity,
                                   size_t used) {

  if (UsePerfData) {
    EXCEPTION_MARK;
    ResourceMark rm;

74
    const char *ms = "metaspace";
75

76 77 78 79
    create_ms_constant(ms, "minCapacity", min_capacity, CHECK);
    _max_capacity = create_ms_variable(ms, "maxCapacity", max_capacity, CHECK);
    _capacity = create_ms_variable(ms, "capacity", curr_capacity, CHECK);
    _used = create_ms_variable(ms, "used", used, CHECK);
80 81 82 83 84
  }
}

void MetaspaceCounters::update_capacity() {
  assert(UsePerfData, "Should not be called unless being used");
85
  assert(_capacity != NULL, "Should be initialized");
86 87 88 89 90 91
  size_t capacity_in_bytes = MetaspaceAux::capacity_in_bytes();
  _capacity->set_value(capacity_in_bytes);
}

void MetaspaceCounters::update_used() {
  assert(UsePerfData, "Should not be called unless being used");
92
  assert(_used != NULL, "Should be initialized");
J
jmasa 已提交
93
  size_t used_in_bytes = MetaspaceAux::used_in_bytes();
94 95 96 97 98
  _used->set_value(used_in_bytes);
}

void MetaspaceCounters::update_max_capacity() {
  assert(UsePerfData, "Should not be called unless being used");
99
  assert(_max_capacity != NULL, "Should be initialized");
100 101 102 103 104 105 106 107 108 109 110 111 112 113
  size_t reserved_in_bytes = MetaspaceAux::reserved_in_bytes();
  _max_capacity->set_value(reserved_in_bytes);
}

void MetaspaceCounters::update_all() {
  if (UsePerfData) {
    update_used();
    update_capacity();
    update_max_capacity();
  }
}

void MetaspaceCounters::initialize_performance_counters() {
  if (UsePerfData) {
114
    assert(_metaspace_counters == NULL, "Should only be initialized once");
115 116 117 118 119 120
    _metaspace_counters = new MetaspaceCounters();
  }
}

void MetaspaceCounters::update_performance_counters() {
  if (UsePerfData) {
121
    assert(_metaspace_counters != NULL, "Should be initialized");
122 123 124 125
    _metaspace_counters->update_all();
  }
}