metaspaceCounters.cpp 4.5 KB
Newer Older
1
/*
2
 * Copyright (c) 2012, 2013, 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 29
#include "runtime/globals.hpp"
#include "runtime/perfData.hpp"
30
#include "utilities/exceptions.hpp"
31

32 33 34 35 36
class MetaspacePerfCounters: public CHeapObj<mtInternal> {
  friend class VMStructs;
  PerfVariable*      _capacity;
  PerfVariable*      _used;
  PerfVariable*      _max_capacity;
37

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
  PerfVariable* create_variable(const char *ns, const char *name, size_t value, TRAPS) {
    const char *path = PerfDataManager::counter_name(ns, name);
    return PerfDataManager::create_variable(SUN_GC, path, PerfData::U_Bytes, value, THREAD);
  }

  void create_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, THREAD);
  }

 public:
  MetaspacePerfCounters(const char* ns, size_t min_capacity, size_t curr_capacity, size_t max_capacity, size_t used) {
    EXCEPTION_MARK;
    ResourceMark rm;

    create_constant(ns, "minCapacity", min_capacity, THREAD);
    _capacity = create_variable(ns, "capacity", curr_capacity, THREAD);
    _max_capacity = create_variable(ns, "maxCapacity", max_capacity, THREAD);
    _used = create_variable(ns, "used", used, THREAD);
  }

  void update(size_t capacity, size_t max_capacity, size_t used) {
    _capacity->set_value(capacity);
    _max_capacity->set_value(max_capacity);
    _used->set_value(used);
  }
};

MetaspacePerfCounters* MetaspaceCounters::_perf_counters = NULL;

68
size_t MetaspaceCounters::used() {
69
  return MetaspaceAux::used_bytes();
70 71 72 73 74 75 76 77
}

size_t MetaspaceCounters::capacity() {
  return MetaspaceAux::committed_bytes();
}

size_t MetaspaceCounters::max_capacity() {
  return MetaspaceAux::reserved_bytes();
78 79
}

80
void MetaspaceCounters::initialize_performance_counters() {
81
  if (UsePerfData) {
82 83
    assert(_perf_counters == NULL, "Should only be initialized once");

84 85 86
    size_t min_capacity = 0;
    _perf_counters = new MetaspacePerfCounters("metaspace", min_capacity,
                                               capacity(), max_capacity(), used());
87 88 89
  }
}

90
void MetaspaceCounters::update_performance_counters() {
91
  if (UsePerfData) {
92
    assert(_perf_counters != NULL, "Should be initialized");
93

94
    _perf_counters->update(capacity(), max_capacity(), used());
95 96 97
  }
}

98
MetaspacePerfCounters* CompressedClassSpaceCounters::_perf_counters = NULL;
99

100
size_t CompressedClassSpaceCounters::used() {
101
  return MetaspaceAux::used_bytes(Metaspace::ClassType);
102 103 104 105 106 107 108 109
}

size_t CompressedClassSpaceCounters::capacity() {
  return MetaspaceAux::committed_bytes(Metaspace::ClassType);
}

size_t CompressedClassSpaceCounters::max_capacity() {
  return MetaspaceAux::reserved_bytes(Metaspace::ClassType);
110 111
}

112
void CompressedClassSpaceCounters::update_performance_counters() {
113
  if (UsePerfData && UseCompressedClassPointers) {
114
    assert(_perf_counters != NULL, "Should be initialized");
115

116
    _perf_counters->update(capacity(), max_capacity(), used());
117 118 119
  }
}

120
void CompressedClassSpaceCounters::initialize_performance_counters() {
121
  if (UsePerfData) {
122 123 124
    assert(_perf_counters == NULL, "Should only be initialized once");
    const char* ns = "compressedclassspace";

125
    if (UseCompressedClassPointers) {
126 127 128
      size_t min_capacity = 0;
      _perf_counters = new MetaspacePerfCounters(ns, min_capacity, capacity(),
                                                 max_capacity(), used());
129 130 131
    } else {
      _perf_counters = new MetaspacePerfCounters(ns, 0, 0, 0, 0);
    }
132 133
  }
}