2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2018-07-20 14:52:11 -04:00
|
|
|
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00: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.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* 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.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "precompiled.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
|
|
|
#include "classfile/altHashing.hpp"
|
|
|
|
#include "classfile/classLoaderData.hpp"
|
2017-08-02 18:06:38 -07:00
|
|
|
#include "logging/log.hpp"
|
|
|
|
#include "logging/logStream.hpp"
|
2014-06-04 11:56:44 +02:00
|
|
|
#include "memory/allocation.inline.hpp"
|
|
|
|
#include "memory/resourceArea.hpp"
|
2011-01-27 16:11:27 -08:00
|
|
|
#include "oops/symbol.hpp"
|
2016-08-21 20:56:37 -04:00
|
|
|
#include "runtime/atomic.hpp"
|
2011-01-27 16:11:27 -08:00
|
|
|
#include "runtime/os.hpp"
|
|
|
|
|
2018-07-20 14:52:11 -04:00
|
|
|
uint32_t Symbol::pack_length_and_refcount(int length, int refcount) {
|
|
|
|
STATIC_ASSERT(max_symbol_length == ((1 << 16) - 1));
|
|
|
|
STATIC_ASSERT(PERM_REFCOUNT == ((1 << 16) - 1));
|
|
|
|
assert(length >= 0, "negative length");
|
|
|
|
assert(length <= max_symbol_length, "too long symbol");
|
|
|
|
assert(refcount >= 0, "negative refcount");
|
|
|
|
assert(refcount <= PERM_REFCOUNT, "invalid refcount");
|
|
|
|
uint32_t hi = length;
|
|
|
|
uint32_t lo = refcount;
|
|
|
|
return (hi << 16) | lo;
|
|
|
|
}
|
|
|
|
|
2013-06-23 22:08:28 -07:00
|
|
|
Symbol::Symbol(const u1* name, int length, int refcount) {
|
2018-07-20 14:52:11 -04:00
|
|
|
_length_and_refcount = pack_length_and_refcount(length, refcount);
|
2015-08-14 10:10:35 -07:00
|
|
|
_identity_hash = (short)os::random();
|
2018-07-20 14:52:11 -04:00
|
|
|
for (int i = 0; i < length; i++) {
|
2011-01-27 16:11:27 -08:00
|
|
|
byte_at_put(i, name[i]);
|
|
|
|
}
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-08-29 18:56:29 -04:00
|
|
|
void* Symbol::operator new(size_t sz, int len, TRAPS) throw() {
|
2016-01-30 11:02:29 -05:00
|
|
|
int alloc_size = size(len)*wordSize;
|
2012-06-28 17:03:16 -04:00
|
|
|
address res = (address) AllocateHeap(alloc_size, mtSymbol);
|
2012-03-23 11:16:05 -04:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2013-08-29 18:56:29 -04:00
|
|
|
void* Symbol::operator new(size_t sz, int len, Arena* arena, TRAPS) throw() {
|
2016-01-30 11:02:29 -05:00
|
|
|
int alloc_size = size(len)*wordSize;
|
|
|
|
address res = (address)arena->Amalloc_4(alloc_size);
|
2012-03-23 11:16:05 -04:00
|
|
|
return res;
|
2011-01-27 16:11:27 -08:00
|
|
|
}
|
2010-01-05 15:21:25 +01:00
|
|
|
|
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
|
|
|
void Symbol::operator delete(void *p) {
|
|
|
|
assert(((Symbol*)p)->refcount() == 0, "should not call this");
|
|
|
|
FreeHeap(p);
|
|
|
|
}
|
|
|
|
|
2010-01-05 15:21:25 +01:00
|
|
|
// ------------------------------------------------------------------
|
2011-01-27 16:11:27 -08:00
|
|
|
// Symbol::starts_with
|
2010-01-05 15:21:25 +01:00
|
|
|
//
|
|
|
|
// Tests if the symbol starts with the specified prefix of the given
|
|
|
|
// length.
|
2011-01-27 16:11:27 -08:00
|
|
|
bool Symbol::starts_with(const char* prefix, int len) const {
|
2010-01-05 15:21:25 +01:00
|
|
|
if (len > utf8_length()) return false;
|
|
|
|
while (len-- > 0) {
|
|
|
|
if (prefix[len] != (char) byte_at(len))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
assert(len == -1, "we should be at the beginning");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
2011-01-27 16:11:27 -08:00
|
|
|
// Symbol::index_of
|
2010-01-05 15:21:25 +01:00
|
|
|
//
|
|
|
|
// Finds if the given string is a substring of this symbol's utf8 bytes.
|
|
|
|
// Return -1 on failure. Otherwise return the first index where str occurs.
|
2011-01-27 16:11:27 -08:00
|
|
|
int Symbol::index_of_at(int i, const char* str, int len) const {
|
2010-01-05 15:21:25 +01:00
|
|
|
assert(i >= 0 && i <= utf8_length(), "oob");
|
|
|
|
if (len <= 0) return 0;
|
|
|
|
char first_char = str[0];
|
2011-01-27 16:11:27 -08:00
|
|
|
address bytes = (address) ((Symbol*)this)->base();
|
2010-01-05 15:21:25 +01:00
|
|
|
address limit = bytes + utf8_length() - len; // inclusive limit
|
|
|
|
address scan = bytes + i;
|
|
|
|
if (scan > limit)
|
|
|
|
return -1;
|
2012-07-24 10:51:00 -07:00
|
|
|
for (; scan <= limit; scan++) {
|
2010-01-05 15:21:25 +01:00
|
|
|
scan = (address) memchr(scan, first_char, (limit + 1 - scan));
|
|
|
|
if (scan == NULL)
|
|
|
|
return -1; // not found
|
|
|
|
assert(scan >= bytes+i && scan <= limit, "scan oob");
|
|
|
|
if (memcmp(scan, str, len) == 0)
|
|
|
|
return (int)(scan - bytes);
|
|
|
|
}
|
2012-07-24 10:51:00 -07:00
|
|
|
return -1;
|
2010-01-05 15:21:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
char* Symbol::as_C_string(char* buf, int size) const {
|
2007-12-01 00:00:00 +00:00
|
|
|
if (size > 0) {
|
|
|
|
int len = MIN2(size - 1, utf8_length());
|
|
|
|
for (int i = 0; i < len; i++) {
|
|
|
|
buf[i] = byte_at(i);
|
|
|
|
}
|
|
|
|
buf[len] = '\0';
|
|
|
|
}
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
char* Symbol::as_C_string() const {
|
2007-12-01 00:00:00 +00:00
|
|
|
int len = utf8_length();
|
|
|
|
char* str = NEW_RESOURCE_ARRAY(char, len + 1);
|
|
|
|
return as_C_string(str, len + 1);
|
|
|
|
}
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
char* Symbol::as_C_string_flexible_buffer(Thread* t,
|
2007-12-01 00:00:00 +00:00
|
|
|
char* buf, int size) const {
|
|
|
|
char* str;
|
|
|
|
int len = utf8_length();
|
|
|
|
int buf_len = len + 1;
|
|
|
|
if (size < buf_len) {
|
|
|
|
str = NEW_RESOURCE_ARRAY(char, buf_len);
|
|
|
|
} else {
|
|
|
|
str = buf;
|
|
|
|
}
|
|
|
|
return as_C_string(str, buf_len);
|
|
|
|
}
|
|
|
|
|
2015-10-26 10:36:54 +01:00
|
|
|
void Symbol::print_utf8_on(outputStream* st) const {
|
|
|
|
st->print("%s", as_C_string());
|
|
|
|
}
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
void Symbol::print_symbol_on(outputStream* st) const {
|
2016-03-06 15:50:13 -05:00
|
|
|
char *s;
|
2007-12-01 00:00:00 +00:00
|
|
|
st = st ? st : tty;
|
2016-03-06 15:50:13 -05:00
|
|
|
{
|
|
|
|
// ResourceMark may not affect st->print(). If st is a string
|
|
|
|
// stream it could resize, using the same resource arena.
|
|
|
|
ResourceMark rm;
|
|
|
|
s = as_quoted_ascii();
|
|
|
|
s = os::strdup(s);
|
|
|
|
}
|
|
|
|
if (s == NULL) {
|
|
|
|
st->print("(null)");
|
|
|
|
} else {
|
|
|
|
st->print("%s", s);
|
|
|
|
os::free(s);
|
|
|
|
}
|
2012-11-12 14:03:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
char* Symbol::as_quoted_ascii() const {
|
|
|
|
const char *ptr = (const char *)&_body[0];
|
|
|
|
int quoted_length = UTF8::quoted_ascii_length(ptr, utf8_length());
|
|
|
|
char* result = NEW_RESOURCE_ARRAY(char, quoted_length + 1);
|
2013-04-01 14:05:41 -07:00
|
|
|
UTF8::as_quoted_ascii(ptr, utf8_length(), result, quoted_length + 1);
|
2012-11-12 14:03:53 -08:00
|
|
|
return result;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
jchar* Symbol::as_unicode(int& length) const {
|
|
|
|
Symbol* this_ptr = (Symbol*)this;
|
2007-12-01 00:00:00 +00:00
|
|
|
length = UTF8::unicode_length((char*)this_ptr->bytes(), utf8_length());
|
|
|
|
jchar* result = NEW_RESOURCE_ARRAY(jchar, length);
|
|
|
|
if (length > 0) {
|
|
|
|
UTF8::convert_to_unicode((char*)this_ptr->bytes(), result, length);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
const char* Symbol::as_klass_external_name(char* buf, int size) const {
|
2007-12-01 00:00:00 +00:00
|
|
|
if (size > 0) {
|
|
|
|
char* str = as_C_string(buf, size);
|
|
|
|
int length = (int)strlen(str);
|
|
|
|
// Turn all '/'s into '.'s (also for array klasses)
|
|
|
|
for (int index = 0; index < length; index++) {
|
|
|
|
if (str[index] == '/') {
|
|
|
|
str[index] = '.';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
} else {
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
const char* Symbol::as_klass_external_name() const {
|
2007-12-01 00:00:00 +00:00
|
|
|
char* str = as_C_string();
|
|
|
|
int length = (int)strlen(str);
|
|
|
|
// Turn all '/'s into '.'s (also for array klasses)
|
|
|
|
for (int index = 0; index < length; index++) {
|
|
|
|
if (str[index] == '/') {
|
|
|
|
str[index] = '.';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
2011-01-27 16:11:27 -08:00
|
|
|
|
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
|
|
|
// Alternate hashing for unbalanced symbol tables.
|
2014-02-10 21:29:14 -08:00
|
|
|
unsigned int Symbol::new_hash(juint seed) {
|
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
|
|
|
ResourceMark rm;
|
|
|
|
// Use alternate hashing algorithm on this symbol.
|
|
|
|
return AltHashing::murmur3_32(seed, (const jbyte*)as_C_string(), utf8_length());
|
|
|
|
}
|
2011-01-27 16:11:27 -08:00
|
|
|
|
2018-07-20 14:52:11 -04:00
|
|
|
// Increment refcount while checking for zero. If the Symbol's refcount becomes zero
|
|
|
|
// a thread could be concurrently removing the Symbol. This is used during SymbolTable
|
|
|
|
// lookup to avoid reviving a dead Symbol.
|
|
|
|
bool Symbol::try_increment_refcount() {
|
|
|
|
uint32_t found = _length_and_refcount;
|
|
|
|
while (true) {
|
|
|
|
uint32_t old_value = found;
|
|
|
|
int refc = extract_refcount(old_value);
|
|
|
|
if (refc == PERM_REFCOUNT) {
|
|
|
|
return true; // sticky max or created permanent
|
|
|
|
} else if (refc == 0) {
|
|
|
|
return false; // dead, can't revive.
|
|
|
|
} else {
|
|
|
|
found = Atomic::cmpxchg(old_value + 1, &_length_and_refcount, old_value);
|
|
|
|
if (found == old_value) {
|
|
|
|
return true; // successfully updated.
|
|
|
|
}
|
|
|
|
// refcount changed, try again.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The increment_refcount() is called when not doing lookup. It is assumed that you
|
|
|
|
// have a symbol with a non-zero refcount and it can't become zero while referenced by
|
|
|
|
// this caller.
|
2013-02-27 09:40:30 +01:00
|
|
|
void Symbol::increment_refcount() {
|
2018-07-20 14:52:11 -04:00
|
|
|
if (!try_increment_refcount()) {
|
|
|
|
#ifdef ASSERT
|
|
|
|
print();
|
|
|
|
fatal("refcount has gone to zero");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#ifndef PRODUCT
|
|
|
|
if (refcount() != PERM_REFCOUNT) { // not a permanent symbol
|
2013-02-27 09:40:30 +01:00
|
|
|
NOT_PRODUCT(Atomic::inc(&_total_count);)
|
|
|
|
}
|
2018-07-20 14:52:11 -04:00
|
|
|
#endif
|
2013-02-27 09:40:30 +01:00
|
|
|
}
|
|
|
|
|
2018-07-20 14:52:11 -04:00
|
|
|
// Decrement refcount potentially while racing increment, so we need
|
|
|
|
// to check the value after attempting to decrement so that if another
|
|
|
|
// thread increments to PERM_REFCOUNT the value is not decremented.
|
2013-02-27 09:40:30 +01:00
|
|
|
void Symbol::decrement_refcount() {
|
2018-07-20 14:52:11 -04:00
|
|
|
uint32_t found = _length_and_refcount;
|
|
|
|
while (true) {
|
|
|
|
uint32_t old_value = found;
|
|
|
|
int refc = extract_refcount(old_value);
|
|
|
|
if (refc == PERM_REFCOUNT) {
|
|
|
|
return; // refcount is permanent, permanent is sticky
|
|
|
|
} else if (refc == 0) {
|
2013-02-27 09:40:30 +01:00
|
|
|
#ifdef ASSERT
|
|
|
|
print();
|
2018-07-20 14:52:11 -04:00
|
|
|
fatal("refcount underflow");
|
2013-02-27 09:40:30 +01:00
|
|
|
#endif
|
2018-07-20 14:52:11 -04:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
found = Atomic::cmpxchg(old_value - 1, &_length_and_refcount, old_value);
|
|
|
|
if (found == old_value) {
|
|
|
|
return; // successfully updated.
|
|
|
|
}
|
|
|
|
// refcount changed, try again.
|
|
|
|
}
|
2013-02-27 09:40:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-02 18:06:38 -07:00
|
|
|
void Symbol::metaspace_pointers_do(MetaspaceClosure* it) {
|
|
|
|
if (log_is_enabled(Trace, cds)) {
|
|
|
|
LogStream trace_stream(Log(cds)::trace());
|
|
|
|
trace_stream.print("Iter(Symbol): %p ", this);
|
|
|
|
print_value_on(&trace_stream);
|
|
|
|
trace_stream.cr();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
void Symbol::print_on(outputStream* st) const {
|
|
|
|
if (this == NULL) {
|
|
|
|
st->print_cr("NULL");
|
|
|
|
} else {
|
|
|
|
st->print("Symbol: '");
|
|
|
|
print_symbol_on(st);
|
|
|
|
st->print("'");
|
|
|
|
st->print(" count %d", refcount());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The print_value functions are present in all builds, to support the
|
|
|
|
// disassembler and error reporting.
|
|
|
|
void Symbol::print_value_on(outputStream* st) const {
|
|
|
|
if (this == NULL) {
|
|
|
|
st->print("NULL");
|
|
|
|
} else {
|
|
|
|
st->print("'");
|
|
|
|
for (int i = 0; i < utf8_length(); i++) {
|
|
|
|
st->print("%c", byte_at(i));
|
|
|
|
}
|
|
|
|
st->print("'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-23 11:16:05 -04:00
|
|
|
// SymbolTable prints this in its statistics
|
2018-08-14 18:42:14 -05:00
|
|
|
NOT_PRODUCT(size_t Symbol::_total_count = 0;)
|