6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
/*
|
2013-12-24 11:48:39 -08:00
|
|
|
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
* 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"
|
2013-08-07 16:47:32 +02:00
|
|
|
#include "runtime/globals.hpp"
|
|
|
|
#include "runtime/perfData.hpp"
|
2013-03-04 13:01:24 +01:00
|
|
|
#include "utilities/exceptions.hpp"
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2013-08-07 16:47:32 +02:00
|
|
|
class MetaspacePerfCounters: public CHeapObj<mtInternal> {
|
|
|
|
friend class VMStructs;
|
|
|
|
PerfVariable* _capacity;
|
|
|
|
PerfVariable* _used;
|
|
|
|
PerfVariable* _max_capacity;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2013-08-07 16:47:32 +02:00
|
|
|
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;
|
|
|
|
|
2013-09-17 20:59:07 +02:00
|
|
|
size_t MetaspaceCounters::used() {
|
2014-03-31 17:09:38 +02:00
|
|
|
return MetaspaceAux::used_bytes();
|
2013-09-17 20:59:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t MetaspaceCounters::capacity() {
|
|
|
|
return MetaspaceAux::committed_bytes();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t MetaspaceCounters::max_capacity() {
|
|
|
|
return MetaspaceAux::reserved_bytes();
|
2013-02-12 14:15:45 -08:00
|
|
|
}
|
|
|
|
|
2013-08-07 16:47:32 +02:00
|
|
|
void MetaspaceCounters::initialize_performance_counters() {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
if (UsePerfData) {
|
2013-08-07 16:47:32 +02:00
|
|
|
assert(_perf_counters == NULL, "Should only be initialized once");
|
|
|
|
|
2013-09-17 20:59:07 +02:00
|
|
|
size_t min_capacity = 0;
|
|
|
|
_perf_counters = new MetaspacePerfCounters("metaspace", min_capacity,
|
|
|
|
capacity(), max_capacity(), used());
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-07 16:47:32 +02:00
|
|
|
void MetaspaceCounters::update_performance_counters() {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
if (UsePerfData) {
|
2013-08-07 16:47:32 +02:00
|
|
|
assert(_perf_counters != NULL, "Should be initialized");
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2013-09-17 20:59:07 +02:00
|
|
|
_perf_counters->update(capacity(), max_capacity(), used());
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-07 16:47:32 +02:00
|
|
|
MetaspacePerfCounters* CompressedClassSpaceCounters::_perf_counters = NULL;
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2013-09-17 20:59:07 +02:00
|
|
|
size_t CompressedClassSpaceCounters::used() {
|
2014-03-31 17:09:38 +02:00
|
|
|
return MetaspaceAux::used_bytes(Metaspace::ClassType);
|
2013-09-17 20:59:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t CompressedClassSpaceCounters::capacity() {
|
|
|
|
return MetaspaceAux::committed_bytes(Metaspace::ClassType);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t CompressedClassSpaceCounters::max_capacity() {
|
|
|
|
return MetaspaceAux::reserved_bytes(Metaspace::ClassType);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
}
|
|
|
|
|
2013-08-07 16:47:32 +02:00
|
|
|
void CompressedClassSpaceCounters::update_performance_counters() {
|
2013-08-12 17:37:02 +02:00
|
|
|
if (UsePerfData && UseCompressedClassPointers) {
|
2013-08-07 16:47:32 +02:00
|
|
|
assert(_perf_counters != NULL, "Should be initialized");
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
|
2013-09-17 20:59:07 +02:00
|
|
|
_perf_counters->update(capacity(), max_capacity(), used());
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-07 16:47:32 +02:00
|
|
|
void CompressedClassSpaceCounters::initialize_performance_counters() {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
if (UsePerfData) {
|
2013-08-07 16:47:32 +02:00
|
|
|
assert(_perf_counters == NULL, "Should only be initialized once");
|
|
|
|
const char* ns = "compressedclassspace";
|
|
|
|
|
2013-08-12 17:37:02 +02:00
|
|
|
if (UseCompressedClassPointers) {
|
2013-09-17 20:59:07 +02:00
|
|
|
size_t min_capacity = 0;
|
|
|
|
_perf_counters = new MetaspacePerfCounters(ns, min_capacity, capacity(),
|
|
|
|
max_capacity(), used());
|
2013-08-07 16:47:32 +02:00
|
|
|
} else {
|
|
|
|
_perf_counters = new MetaspacePerfCounters(ns, 0, 0, 0, 0);
|
|
|
|
}
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
}
|
|
|
|
}
|