2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2019-01-31 10:29:53 -05:00
|
|
|
* Copyright (c) 1997, 2019, 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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "precompiled.hpp"
|
2012-06-13 19:52:59 -04:00
|
|
|
#include "classfile/altHashing.hpp"
|
2018-09-18 21:47:14 -07:00
|
|
|
#include "classfile/compactHashtable.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "classfile/javaClasses.hpp"
|
|
|
|
#include "classfile/symbolTable.hpp"
|
2012-03-23 11:16:05 -04:00
|
|
|
#include "memory/allocation.inline.hpp"
|
2019-05-17 08:29:55 -07:00
|
|
|
#include "memory/dynamicArchive.hpp"
|
2017-08-02 18:06:38 -07:00
|
|
|
#include "memory/metaspaceClosure.hpp"
|
2018-09-18 21:47:14 -07:00
|
|
|
#include "memory/metaspaceShared.hpp"
|
2016-04-04 12:57:48 -04:00
|
|
|
#include "memory/resourceArea.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "oops/oop.inline.hpp"
|
2016-08-21 20:56:37 -04:00
|
|
|
#include "runtime/atomic.hpp"
|
2018-08-14 18:42:14 -05:00
|
|
|
#include "runtime/interfaceSupport.inline.hpp"
|
|
|
|
#include "runtime/timerTrace.hpp"
|
2017-08-02 10:52:50 -04:00
|
|
|
#include "services/diagnosticCommand.hpp"
|
2018-08-14 18:42:14 -05:00
|
|
|
#include "utilities/concurrentHashTable.inline.hpp"
|
|
|
|
#include "utilities/concurrentHashTableTasks.inline.hpp"
|
2019-03-30 08:26:20 -07:00
|
|
|
#include "utilities/utf8.hpp"
|
2018-08-14 18:42:14 -05:00
|
|
|
|
|
|
|
// We used to not resize at all, so let's be conservative
|
|
|
|
// and not set it too short before we decide to resize,
|
|
|
|
// to match previous startup behavior
|
2018-12-10 11:59:55 -06:00
|
|
|
const double PREF_AVG_LIST_LEN = 8.0;
|
2019-07-30 09:56:18 -04:00
|
|
|
// 2^24 is max size, like StringTable.
|
|
|
|
const size_t END_SIZE = 24;
|
2018-08-14 18:42:14 -05:00
|
|
|
// If a chain gets to 100 something might be wrong
|
2018-12-10 11:59:55 -06:00
|
|
|
const size_t REHASH_LEN = 100;
|
2018-08-14 18:42:14 -05:00
|
|
|
|
2018-12-10 11:59:55 -06:00
|
|
|
const size_t ON_STACK_BUFFER_LENGTH = 128;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2018-09-18 21:47:14 -07:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
inline bool symbol_equals_compact_hashtable_entry(Symbol* value, const char* key, int len) {
|
|
|
|
if (value->equals(key, len)) {
|
|
|
|
assert(value->refcount() == PERM_REFCOUNT, "must be shared");
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-07 19:40:27 -08:00
|
|
|
static OffsetCompactHashtable<
|
2018-09-18 21:47:14 -07:00
|
|
|
const char*, Symbol*,
|
|
|
|
symbol_equals_compact_hashtable_entry
|
|
|
|
> _shared_table;
|
|
|
|
|
2019-05-17 08:29:55 -07:00
|
|
|
static OffsetCompactHashtable<
|
|
|
|
const char*, Symbol*,
|
|
|
|
symbol_equals_compact_hashtable_entry
|
|
|
|
> _dynamic_shared_table;
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
// --------------------------------------------------------------------------
|
2019-05-16 07:09:17 -04:00
|
|
|
|
2019-06-24 16:51:23 -04:00
|
|
|
typedef ConcurrentHashTable<SymbolTableConfig, mtSymbol> SymbolTableHash;
|
2019-05-16 07:09:17 -04:00
|
|
|
static SymbolTableHash* _local_table = NULL;
|
|
|
|
|
|
|
|
volatile bool SymbolTable::_has_work = 0;
|
|
|
|
volatile bool SymbolTable::_needs_rehashing = false;
|
|
|
|
|
|
|
|
// For statistics
|
|
|
|
static size_t _symbols_removed = 0;
|
|
|
|
static size_t _symbols_counted = 0;
|
|
|
|
static size_t _current_size = 0;
|
|
|
|
|
|
|
|
static volatile size_t _items_count = 0;
|
|
|
|
static volatile bool _has_items_to_clean = false;
|
|
|
|
|
|
|
|
|
|
|
|
static volatile bool _alt_hash = false;
|
|
|
|
static volatile bool _lookup_shared_first = false;
|
|
|
|
|
2012-03-23 11:16:05 -04:00
|
|
|
// Static arena for symbols that are not deallocated
|
|
|
|
Arena* SymbolTable::_arena = NULL;
|
2014-12-17 23:34:52 -05:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
static juint murmur_seed = 0;
|
|
|
|
|
|
|
|
static inline void log_trace_symboltable_helper(Symbol* sym, const char* msg) {
|
|
|
|
#ifndef PRODUCT
|
|
|
|
ResourceMark rm;
|
|
|
|
log_trace(symboltable)("%s [%s]", msg, sym->as_quoted_ascii());
|
|
|
|
#endif // PRODUCT
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pick hashing algorithm.
|
|
|
|
static uintx hash_symbol(const char* s, int len, bool useAlt) {
|
|
|
|
return useAlt ?
|
|
|
|
AltHashing::murmur3_32(murmur_seed, (const jbyte*)s, len) :
|
|
|
|
java_lang_String::hash_code((const jbyte*)s, len);
|
|
|
|
}
|
|
|
|
|
2019-05-17 08:29:55 -07:00
|
|
|
#if INCLUDE_CDS
|
2018-08-14 18:42:14 -05:00
|
|
|
static uintx hash_shared_symbol(const char* s, int len) {
|
|
|
|
return java_lang_String::hash_code((const jbyte*)s, len);
|
|
|
|
}
|
2019-05-17 08:29:55 -07:00
|
|
|
#endif
|
2018-08-14 18:42:14 -05:00
|
|
|
|
2019-06-24 16:51:23 -04:00
|
|
|
class SymbolTableConfig : public AllStatic {
|
2018-08-14 18:42:14 -05:00
|
|
|
private:
|
|
|
|
public:
|
2019-06-24 16:51:23 -04:00
|
|
|
typedef Symbol* Value; // value of the Node in the hashtable
|
|
|
|
|
|
|
|
static uintx get_hash(Value const& value, bool* is_dead) {
|
2018-08-14 18:42:14 -05:00
|
|
|
*is_dead = (value->refcount() == 0);
|
|
|
|
if (*is_dead) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
2019-05-16 07:09:17 -04:00
|
|
|
return hash_symbol((const char*)value->bytes(), value->utf8_length(), _alt_hash);
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// We use default allocation/deallocation but counted
|
2019-06-24 16:51:23 -04:00
|
|
|
static void* allocate_node(size_t size, Value const& value) {
|
2018-08-14 18:42:14 -05:00
|
|
|
SymbolTable::item_added();
|
2019-06-24 16:51:23 -04:00
|
|
|
return AllocateHeap(size, mtSymbol);
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
2019-06-24 16:51:23 -04:00
|
|
|
static void free_node(void* memory, Value const& value) {
|
2018-12-11 14:09:54 -06:00
|
|
|
// We get here because #1 some threads lost a race to insert a newly created Symbol
|
|
|
|
// or #2 we're cleaning up unused symbol.
|
|
|
|
// If #1, then the symbol can be either permanent (refcount==PERM_REFCOUNT),
|
|
|
|
// or regular newly created one (refcount==1)
|
|
|
|
// If #2, then the symbol is dead (refcount==0)
|
|
|
|
assert((value->refcount() == PERM_REFCOUNT) || (value->refcount() == 1) || (value->refcount() == 0),
|
2018-08-14 18:42:14 -05:00
|
|
|
"refcount %d", value->refcount());
|
2018-12-11 14:09:54 -06:00
|
|
|
if (value->refcount() == 1) {
|
|
|
|
value->decrement_refcount();
|
|
|
|
assert(value->refcount() == 0, "expected dead symbol");
|
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
SymbolTable::delete_symbol(value);
|
2019-06-24 16:51:23 -04:00
|
|
|
FreeHeap(memory);
|
2018-08-14 18:42:14 -05:00
|
|
|
SymbolTable::item_removed();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static size_t ceil_log2(size_t value) {
|
|
|
|
size_t ret;
|
|
|
|
for (ret = 1; ((size_t)1 << ret) < value; ++ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-05-16 07:09:17 -04:00
|
|
|
void SymbolTable::create_table () {
|
2018-08-14 18:42:14 -05:00
|
|
|
size_t start_size_log_2 = ceil_log2(SymbolTableSize);
|
|
|
|
_current_size = ((size_t)1) << start_size_log_2;
|
|
|
|
log_trace(symboltable)("Start size: " SIZE_FORMAT " (" SIZE_FORMAT ")",
|
|
|
|
_current_size, start_size_log_2);
|
|
|
|
_local_table = new SymbolTableHash(start_size_log_2, END_SIZE, REHASH_LEN);
|
2019-05-16 07:09:17 -04:00
|
|
|
|
|
|
|
// Initialize the arena for global symbols, size passed in depends on CDS.
|
|
|
|
if (symbol_alloc_arena_size == 0) {
|
|
|
|
_arena = new (mtSymbol) Arena(mtSymbol);
|
|
|
|
} else {
|
|
|
|
_arena = new (mtSymbol) Arena(mtSymbol, symbol_alloc_arena_size);
|
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void SymbolTable::delete_symbol(Symbol* sym) {
|
|
|
|
if (sym->refcount() == PERM_REFCOUNT) {
|
2019-04-25 10:56:31 -04:00
|
|
|
MutexLocker ml(SymbolArena_lock, Mutex::_no_safepoint_check_flag); // Protect arena
|
2018-08-14 18:42:14 -05:00
|
|
|
// Deleting permanent symbol should not occur very often (insert race condition),
|
|
|
|
// so log it.
|
|
|
|
log_trace_symboltable_helper(sym, "Freeing permanent symbol");
|
|
|
|
if (!arena()->Afree(sym, sym->size())) {
|
|
|
|
log_trace_symboltable_helper(sym, "Leaked permanent symbol");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
delete sym;
|
|
|
|
}
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2019-11-25 12:30:24 +01:00
|
|
|
void SymbolTable::reset_has_items_to_clean() { Atomic::store(&_has_items_to_clean, false); }
|
|
|
|
void SymbolTable::mark_has_items_to_clean() { Atomic::store(&_has_items_to_clean, true); }
|
2019-05-16 07:09:17 -04:00
|
|
|
bool SymbolTable::has_items_to_clean() { return Atomic::load(&_has_items_to_clean); }
|
2019-01-31 10:29:53 -05:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
void SymbolTable::item_added() {
|
2019-05-16 07:09:17 -04:00
|
|
|
Atomic::inc(&_items_count);
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void SymbolTable::item_removed() {
|
2019-05-16 07:09:17 -04:00
|
|
|
Atomic::inc(&(_symbols_removed));
|
|
|
|
Atomic::dec(&_items_count);
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
|
|
|
|
2019-05-16 07:09:17 -04:00
|
|
|
double SymbolTable::get_load_factor() {
|
2018-08-14 18:42:14 -05:00
|
|
|
return (double)_items_count/_current_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t SymbolTable::table_size() {
|
|
|
|
return ((size_t)1) << _local_table->get_size_log2(Thread::current());
|
|
|
|
}
|
|
|
|
|
2019-01-31 10:29:53 -05:00
|
|
|
void SymbolTable::trigger_cleanup() {
|
2019-04-25 10:56:31 -04:00
|
|
|
MutexLocker ml(Service_lock, Mutex::_no_safepoint_check_flag);
|
2019-05-16 07:09:17 -04:00
|
|
|
_has_work = true;
|
2018-08-14 18:42:14 -05:00
|
|
|
Service_lock->notify_all();
|
|
|
|
}
|
|
|
|
|
2019-05-14 11:29:18 -04:00
|
|
|
Symbol* SymbolTable::allocate_symbol(const char* name, int len, bool c_heap) {
|
2012-06-25 21:33:35 -04:00
|
|
|
assert (len <= Symbol::max_length(), "should be checked by caller");
|
|
|
|
|
2012-03-23 11:16:05 -04:00
|
|
|
Symbol* sym;
|
2019-10-02 16:55:08 -07:00
|
|
|
if (Arguments::is_dumping_archive()) {
|
2017-08-02 18:06:38 -07:00
|
|
|
c_heap = false;
|
|
|
|
}
|
|
|
|
if (c_heap) {
|
2012-03-23 11:16:05 -04:00
|
|
|
// refcount starts as 1
|
2019-05-14 11:29:18 -04:00
|
|
|
sym = new (len) Symbol((const u1*)name, len, 1);
|
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
|
|
|
assert(sym != NULL, "new should call vm_exit_out_of_memory if C_HEAP is exhausted");
|
|
|
|
} else {
|
2013-03-13 15:15:56 -04:00
|
|
|
// Allocate to global arena
|
2019-04-25 10:56:31 -04:00
|
|
|
MutexLocker ml(SymbolArena_lock, Mutex::_no_safepoint_check_flag); // Protect arena
|
2019-05-14 11:29:18 -04:00
|
|
|
sym = new (len, arena()) Symbol((const u1*)name, len, PERM_REFCOUNT);
|
2012-03-23 11:16:05 -04:00
|
|
|
}
|
2011-01-27 16:11:27 -08:00
|
|
|
return sym;
|
|
|
|
}
|
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
class SymbolsDo : StackObj {
|
|
|
|
SymbolClosure *_cl;
|
|
|
|
public:
|
|
|
|
SymbolsDo(SymbolClosure *cl) : _cl(cl) {}
|
|
|
|
bool operator()(Symbol** value) {
|
|
|
|
assert(value != NULL, "expected valid value");
|
|
|
|
assert(*value != NULL, "value should point to a symbol");
|
|
|
|
_cl->do_symbol(value);
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-09-18 21:47:14 -07:00
|
|
|
class SharedSymbolIterator {
|
|
|
|
SymbolClosure* _symbol_closure;
|
|
|
|
public:
|
|
|
|
SharedSymbolIterator(SymbolClosure* f) : _symbol_closure(f) {}
|
|
|
|
void do_value(Symbol* symbol) {
|
|
|
|
_symbol_closure->do_symbol(&symbol);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
// Call function for all symbols in the symbol table.
|
|
|
|
void SymbolTable::symbols_do(SymbolClosure *cl) {
|
2015-01-14 16:35:00 -05:00
|
|
|
// all symbols from shared table
|
2018-09-18 21:47:14 -07:00
|
|
|
SharedSymbolIterator iter(cl);
|
|
|
|
_shared_table.iterate(&iter);
|
2019-05-17 08:29:55 -07:00
|
|
|
_dynamic_shared_table.iterate(&iter);
|
2015-01-14 16:35:00 -05:00
|
|
|
|
|
|
|
// all symbols from the dynamic table
|
2018-08-14 18:42:14 -05:00
|
|
|
SymbolsDo sd(cl);
|
2019-05-16 07:09:17 -04:00
|
|
|
if (!_local_table->try_scan(Thread::current(), sd)) {
|
2019-06-11 07:31:47 -04:00
|
|
|
log_info(symboltable)("symbols_do unavailable at this moment");
|
2011-01-27 16:11:27 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
class MetaspacePointersDo : StackObj {
|
|
|
|
MetaspaceClosure *_it;
|
|
|
|
public:
|
|
|
|
MetaspacePointersDo(MetaspaceClosure *it) : _it(it) {}
|
|
|
|
bool operator()(Symbol** value) {
|
|
|
|
assert(value != NULL, "expected valid value");
|
|
|
|
assert(*value != NULL, "value should point to a symbol");
|
|
|
|
_it->push(value);
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-08-02 18:06:38 -07:00
|
|
|
void SymbolTable::metaspace_pointers_do(MetaspaceClosure* it) {
|
2019-10-02 16:55:08 -07:00
|
|
|
Arguments::assert_is_dumping_archive();
|
2018-08-14 18:42:14 -05:00
|
|
|
MetaspacePointersDo mpd(it);
|
2019-05-16 07:09:17 -04:00
|
|
|
_local_table->do_safepoint_scan(mpd);
|
2017-08-02 18:06:38 -07:00
|
|
|
}
|
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
Symbol* SymbolTable::lookup_dynamic(const char* name,
|
2014-12-17 23:34:52 -05:00
|
|
|
int len, unsigned int hash) {
|
2019-05-16 07:09:17 -04:00
|
|
|
Symbol* sym = do_lookup(name, len, hash);
|
2018-08-14 18:42:14 -05:00
|
|
|
assert((sym == NULL) || sym->refcount() != 0, "refcount must not be zero");
|
|
|
|
return sym;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 08:29:55 -07:00
|
|
|
#if INCLUDE_CDS
|
2014-12-17 23:34:52 -05:00
|
|
|
Symbol* SymbolTable::lookup_shared(const char* name,
|
|
|
|
int len, unsigned int hash) {
|
2019-05-17 08:29:55 -07:00
|
|
|
Symbol* sym = NULL;
|
2018-08-14 18:42:14 -05:00
|
|
|
if (!_shared_table.empty()) {
|
2019-05-16 07:09:17 -04:00
|
|
|
if (_alt_hash) {
|
2018-08-14 18:42:14 -05:00
|
|
|
// hash_code parameter may use alternate hashing algorithm but the shared table
|
|
|
|
// always uses the same original hash code.
|
|
|
|
hash = hash_shared_symbol(name, len);
|
|
|
|
}
|
2019-05-17 08:29:55 -07:00
|
|
|
sym = _shared_table.lookup(name, hash, len);
|
|
|
|
if (sym == NULL && DynamicArchive::is_mapped()) {
|
|
|
|
sym = _dynamic_shared_table.lookup(name, hash, len);
|
|
|
|
}
|
2016-03-23 09:00:22 -07:00
|
|
|
}
|
2019-05-17 08:29:55 -07:00
|
|
|
return sym;
|
2014-12-17 23:34:52 -05:00
|
|
|
}
|
2019-05-17 08:29:55 -07:00
|
|
|
#endif
|
2014-12-17 23:34:52 -05:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
Symbol* SymbolTable::lookup_common(const char* name,
|
2014-12-17 23:34:52 -05:00
|
|
|
int len, unsigned int hash) {
|
|
|
|
Symbol* sym;
|
|
|
|
if (_lookup_shared_first) {
|
|
|
|
sym = lookup_shared(name, len, hash);
|
2018-08-14 18:42:14 -05:00
|
|
|
if (sym == NULL) {
|
|
|
|
_lookup_shared_first = false;
|
|
|
|
sym = lookup_dynamic(name, len, hash);
|
2014-12-17 23:34:52 -05:00
|
|
|
}
|
|
|
|
} else {
|
2018-08-14 18:42:14 -05:00
|
|
|
sym = lookup_dynamic(name, len, hash);
|
|
|
|
if (sym == NULL) {
|
|
|
|
sym = lookup_shared(name, len, hash);
|
|
|
|
if (sym != NULL) {
|
|
|
|
_lookup_shared_first = true;
|
|
|
|
}
|
2014-12-17 23:34:52 -05:00
|
|
|
}
|
|
|
|
}
|
2016-04-06 21:53:44 -07:00
|
|
|
return sym;
|
|
|
|
}
|
|
|
|
|
2019-05-14 11:29:18 -04:00
|
|
|
Symbol* SymbolTable::new_symbol(const char* name, int len) {
|
2019-05-16 07:09:17 -04:00
|
|
|
unsigned int hash = hash_symbol(name, len, _alt_hash);
|
|
|
|
Symbol* sym = lookup_common(name, len, hash);
|
2018-08-14 18:42:14 -05:00
|
|
|
if (sym == NULL) {
|
2019-05-16 07:09:17 -04:00
|
|
|
sym = do_add_if_needed(name, len, hash, true);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
assert(sym->refcount() != 0, "lookup should have incremented the count");
|
|
|
|
assert(sym->equals(name, len), "symbol must be properly initialized");
|
|
|
|
return sym;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2019-05-14 11:29:18 -04:00
|
|
|
Symbol* SymbolTable::new_symbol(const Symbol* sym, int begin, int end) {
|
|
|
|
assert(begin <= end && end <= sym->utf8_length(), "just checking");
|
2018-08-14 18:42:14 -05:00
|
|
|
assert(sym->refcount() != 0, "require a valid symbol");
|
|
|
|
const char* name = (const char*)sym->base() + begin;
|
|
|
|
int len = end - begin;
|
2019-05-16 07:09:17 -04:00
|
|
|
unsigned int hash = hash_symbol(name, len, _alt_hash);
|
|
|
|
Symbol* found = lookup_common(name, len, hash);
|
2018-08-14 18:42:14 -05:00
|
|
|
if (found == NULL) {
|
2019-05-16 07:09:17 -04:00
|
|
|
found = do_add_if_needed(name, len, hash, true);
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
|
|
|
class SymbolTableLookup : StackObj {
|
|
|
|
private:
|
|
|
|
Thread* _thread;
|
|
|
|
uintx _hash;
|
|
|
|
int _len;
|
|
|
|
const char* _str;
|
|
|
|
public:
|
2019-05-14 11:29:18 -04:00
|
|
|
SymbolTableLookup(const char* key, int len, uintx hash)
|
|
|
|
: _hash(hash), _len(len), _str(key) {}
|
2018-08-14 18:42:14 -05:00
|
|
|
uintx get_hash() const {
|
|
|
|
return _hash;
|
|
|
|
}
|
|
|
|
bool equals(Symbol** value, bool* is_dead) {
|
|
|
|
assert(value != NULL, "expected valid value");
|
|
|
|
assert(*value != NULL, "value should point to a symbol");
|
|
|
|
Symbol *sym = *value;
|
|
|
|
if (sym->equals(_str, _len)) {
|
|
|
|
if (sym->try_increment_refcount()) {
|
|
|
|
// something is referencing this symbol now.
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
assert(sym->refcount() == 0, "expected dead symbol");
|
|
|
|
*is_dead = true;
|
|
|
|
return false;
|
2012-01-11 17:34:02 -05:00
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
} else {
|
|
|
|
*is_dead = (sym->refcount() == 0);
|
|
|
|
return false;
|
2012-01-11 17:34:02 -05:00
|
|
|
}
|
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
class SymbolTableGet : public StackObj {
|
|
|
|
Symbol* _return;
|
|
|
|
public:
|
|
|
|
SymbolTableGet() : _return(NULL) {}
|
|
|
|
void operator()(Symbol** value) {
|
|
|
|
assert(value != NULL, "expected valid value");
|
|
|
|
assert(*value != NULL, "value should point to a symbol");
|
|
|
|
_return = *value;
|
|
|
|
}
|
2018-12-10 11:59:55 -06:00
|
|
|
Symbol* get_res_sym() const {
|
2018-08-14 18:42:14 -05:00
|
|
|
return _return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Symbol* SymbolTable::do_lookup(const char* name, int len, uintx hash) {
|
|
|
|
Thread* thread = Thread::current();
|
2019-05-14 11:29:18 -04:00
|
|
|
SymbolTableLookup lookup(name, len, hash);
|
2018-08-14 18:42:14 -05:00
|
|
|
SymbolTableGet stg;
|
|
|
|
bool rehash_warning = false;
|
|
|
|
_local_table->get(thread, lookup, stg, &rehash_warning);
|
2018-12-11 14:09:54 -06:00
|
|
|
update_needs_rehash(rehash_warning);
|
2018-08-14 18:42:14 -05:00
|
|
|
Symbol* sym = stg.get_res_sym();
|
|
|
|
assert((sym == NULL) || sym->refcount() != 0, "found dead symbol");
|
|
|
|
return sym;
|
|
|
|
}
|
|
|
|
|
|
|
|
Symbol* SymbolTable::lookup_only(const char* name, int len, unsigned int& hash) {
|
2019-05-16 07:09:17 -04:00
|
|
|
hash = hash_symbol(name, len, _alt_hash);
|
|
|
|
return lookup_common(name, len, hash);
|
2012-01-11 17:34:02 -05:00
|
|
|
}
|
|
|
|
|
2009-03-20 23:19:36 -07:00
|
|
|
// Suggestion: Push unicode-based lookup all the way into the hashing
|
|
|
|
// and probing logic, so there is no need for convert_to_utf8 until
|
2011-01-27 16:11:27 -08:00
|
|
|
// an actual new Symbol* is created.
|
2019-05-14 11:29:18 -04:00
|
|
|
Symbol* SymbolTable::new_symbol(const jchar* name, int utf16_length) {
|
2009-03-20 23:19:36 -07:00
|
|
|
int utf8_length = UNICODE::utf8_length((jchar*) name, utf16_length);
|
2018-08-14 18:42:14 -05:00
|
|
|
char stack_buf[ON_STACK_BUFFER_LENGTH];
|
2009-03-20 23:19:36 -07:00
|
|
|
if (utf8_length < (int) sizeof(stack_buf)) {
|
|
|
|
char* chars = stack_buf;
|
|
|
|
UNICODE::convert_to_utf8(name, utf16_length, chars);
|
2019-05-14 11:29:18 -04:00
|
|
|
return new_symbol(chars, utf8_length);
|
2009-03-20 23:19:36 -07:00
|
|
|
} else {
|
2019-05-14 11:29:18 -04:00
|
|
|
ResourceMark rm;
|
2018-08-14 18:42:14 -05:00
|
|
|
char* chars = NEW_RESOURCE_ARRAY(char, utf8_length + 1);
|
2009-03-20 23:19:36 -07:00
|
|
|
UNICODE::convert_to_utf8(name, utf16_length, chars);
|
2019-05-14 11:29:18 -04:00
|
|
|
return new_symbol(chars, utf8_length);
|
2009-03-20 23:19:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-27 16:11:27 -08:00
|
|
|
Symbol* SymbolTable::lookup_only_unicode(const jchar* name, int utf16_length,
|
2019-05-14 11:29:18 -04:00
|
|
|
unsigned int& hash) {
|
2009-03-20 23:19:36 -07:00
|
|
|
int utf8_length = UNICODE::utf8_length((jchar*) name, utf16_length);
|
2018-08-14 18:42:14 -05:00
|
|
|
char stack_buf[ON_STACK_BUFFER_LENGTH];
|
2009-03-20 23:19:36 -07:00
|
|
|
if (utf8_length < (int) sizeof(stack_buf)) {
|
|
|
|
char* chars = stack_buf;
|
|
|
|
UNICODE::convert_to_utf8(name, utf16_length, chars);
|
|
|
|
return lookup_only(chars, utf8_length, hash);
|
|
|
|
} else {
|
|
|
|
ResourceMark rm;
|
2018-08-14 18:42:14 -05:00
|
|
|
char* chars = NEW_RESOURCE_ARRAY(char, utf8_length + 1);
|
2009-03-20 23:19:36 -07:00
|
|
|
UNICODE::convert_to_utf8(name, utf16_length, chars);
|
|
|
|
return lookup_only(chars, utf8_length, hash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-22 16:41:01 +01:00
|
|
|
void SymbolTable::new_symbols(ClassLoaderData* loader_data, const constantPoolHandle& cp,
|
|
|
|
int names_count, const char** names, int* lengths,
|
2019-05-14 11:29:18 -04:00
|
|
|
int* cp_indices, unsigned int* hashValues) {
|
2018-08-14 18:42:14 -05:00
|
|
|
bool c_heap = !loader_data->is_the_null_class_loader_data();
|
|
|
|
for (int i = 0; i < names_count; i++) {
|
|
|
|
const char *name = names[i];
|
|
|
|
int len = lengths[i];
|
|
|
|
unsigned int hash = hashValues[i];
|
2019-05-16 07:09:17 -04:00
|
|
|
assert(lookup_shared(name, len, hash) == NULL, "must have checked already");
|
|
|
|
Symbol* sym = do_add_if_needed(name, len, hash, c_heap);
|
2018-08-14 18:42:14 -05:00
|
|
|
assert(sym->refcount() != 0, "lookup should have incremented the count");
|
|
|
|
cp->symbol_at_put(cp_indices[i], sym);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-14 11:29:18 -04:00
|
|
|
Symbol* SymbolTable::do_add_if_needed(const char* name, int len, uintx hash, bool heap) {
|
|
|
|
SymbolTableLookup lookup(name, len, hash);
|
2018-12-11 14:09:54 -06:00
|
|
|
SymbolTableGet stg;
|
2018-08-14 18:42:14 -05:00
|
|
|
bool clean_hint = false;
|
2018-12-11 14:09:54 -06:00
|
|
|
bool rehash_warning = false;
|
|
|
|
Symbol* sym = NULL;
|
2019-05-14 11:29:18 -04:00
|
|
|
Thread* THREAD = Thread::current();
|
2018-12-11 14:09:54 -06:00
|
|
|
|
|
|
|
do {
|
2019-05-20 10:06:07 -04:00
|
|
|
// Callers have looked up the symbol once, insert the symbol.
|
2019-05-16 07:09:17 -04:00
|
|
|
sym = allocate_symbol(name, len, heap);
|
2018-12-11 14:09:54 -06:00
|
|
|
if (_local_table->insert(THREAD, lookup, sym, &rehash_warning, &clean_hint)) {
|
|
|
|
break;
|
|
|
|
}
|
2019-05-20 10:06:07 -04:00
|
|
|
// In case another thread did a concurrent add, return value already in the table.
|
|
|
|
// This could fail if the symbol got deleted concurrently, so loop back until success.
|
|
|
|
if (_local_table->get(THREAD, lookup, stg, &rehash_warning)) {
|
|
|
|
sym = stg.get_res_sym();
|
|
|
|
break;
|
|
|
|
}
|
2018-12-11 14:09:54 -06:00
|
|
|
} while(true);
|
|
|
|
|
|
|
|
update_needs_rehash(rehash_warning);
|
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
if (clean_hint) {
|
2019-01-31 10:29:53 -05:00
|
|
|
mark_has_items_to_clean();
|
2018-08-14 18:42:14 -05:00
|
|
|
check_concurrent_work();
|
|
|
|
}
|
2018-12-11 14:09:54 -06:00
|
|
|
|
|
|
|
assert((sym == NULL) || sym->refcount() != 0, "found dead symbol");
|
2018-08-14 18:42:14 -05:00
|
|
|
return sym;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2019-05-14 11:29:18 -04:00
|
|
|
Symbol* SymbolTable::new_permanent_symbol(const char* name) {
|
2018-08-14 18:42:14 -05:00
|
|
|
unsigned int hash = 0;
|
|
|
|
int len = (int)strlen(name);
|
|
|
|
Symbol* sym = SymbolTable::lookup_only(name, len, hash);
|
|
|
|
if (sym == NULL) {
|
2019-05-16 07:09:17 -04:00
|
|
|
sym = do_add_if_needed(name, len, hash, false);
|
2012-03-23 11:16:05 -04:00
|
|
|
}
|
2019-03-14 18:56:25 +01:00
|
|
|
if (!sym->is_permanent()) {
|
|
|
|
sym->make_permanent();
|
2018-08-14 18:42:14 -05:00
|
|
|
log_trace_symboltable_helper(sym, "Asked for a permanent symbol, but got a regular one");
|
|
|
|
}
|
|
|
|
return sym;
|
2012-03-23 11:16:05 -04:00
|
|
|
}
|
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
struct SizeFunc : StackObj {
|
|
|
|
size_t operator()(Symbol** value) {
|
|
|
|
assert(value != NULL, "expected valid value");
|
|
|
|
assert(*value != NULL, "value should point to a symbol");
|
|
|
|
return (*value)->size() * HeapWordSize;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-05-08 11:11:50 -05:00
|
|
|
TableStatistics SymbolTable::get_table_statistics() {
|
|
|
|
static TableStatistics ts;
|
|
|
|
SizeFunc sz;
|
|
|
|
ts = _local_table->statistics_get(Thread::current(), sz, ts);
|
|
|
|
return ts;
|
|
|
|
}
|
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
void SymbolTable::print_table_statistics(outputStream* st,
|
|
|
|
const char* table_name) {
|
|
|
|
SizeFunc sz;
|
|
|
|
_local_table->statistics_to(Thread::current(), sz, st, table_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verification
|
|
|
|
class VerifySymbols : StackObj {
|
|
|
|
public:
|
|
|
|
bool operator()(Symbol** value) {
|
|
|
|
guarantee(value != NULL, "expected valid value");
|
|
|
|
guarantee(*value != NULL, "value should point to a symbol");
|
|
|
|
Symbol* sym = *value;
|
|
|
|
guarantee(sym->equals((const char*)sym->bytes(), sym->utf8_length()),
|
|
|
|
"symbol must be internally consistent");
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
};
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
void SymbolTable::verify() {
|
|
|
|
Thread* thr = Thread::current();
|
|
|
|
VerifySymbols vs;
|
2019-05-16 07:09:17 -04:00
|
|
|
if (!_local_table->try_scan(thr, vs)) {
|
2019-06-11 07:31:47 -04:00
|
|
|
log_info(symboltable)("verify unavailable at this moment");
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dumping
|
|
|
|
class DumpSymbol : StackObj {
|
|
|
|
Thread* _thr;
|
|
|
|
outputStream* _st;
|
|
|
|
public:
|
|
|
|
DumpSymbol(Thread* thr, outputStream* st) : _thr(thr), _st(st) {}
|
|
|
|
bool operator()(Symbol** value) {
|
|
|
|
assert(value != NULL, "expected valid value");
|
|
|
|
assert(*value != NULL, "value should point to a symbol");
|
|
|
|
Symbol* sym = *value;
|
|
|
|
const char* utf8_string = (const char*)sym->bytes();
|
|
|
|
int utf8_length = sym->utf8_length();
|
|
|
|
_st->print("%d %d: ", utf8_length, sym->refcount());
|
|
|
|
HashtableTextDump::put_utf8(_st, utf8_string, utf8_length);
|
|
|
|
_st->cr();
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
};
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
void SymbolTable::dump(outputStream* st, bool verbose) {
|
|
|
|
if (!verbose) {
|
2019-05-16 07:09:17 -04:00
|
|
|
print_table_statistics(st, "SymbolTable");
|
2012-06-25 21:33:35 -04:00
|
|
|
} else {
|
2018-08-14 18:42:14 -05:00
|
|
|
Thread* thr = Thread::current();
|
|
|
|
ResourceMark rm(thr);
|
|
|
|
st->print_cr("VERSION: 1.1");
|
|
|
|
DumpSymbol ds(thr, st);
|
2019-05-16 07:09:17 -04:00
|
|
|
if (!_local_table->try_scan(thr, ds)) {
|
2018-08-14 18:42:14 -05:00
|
|
|
log_info(symboltable)("dump unavailable at this moment");
|
|
|
|
}
|
2012-06-25 21:33:35 -04:00
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
2012-06-13 19:52:59 -04:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
#if INCLUDE_CDS
|
|
|
|
struct CopyToArchive : StackObj {
|
2018-10-08 16:29:10 -07:00
|
|
|
CompactHashtableWriter* _writer;
|
|
|
|
CopyToArchive(CompactHashtableWriter* writer) : _writer(writer) {}
|
2018-08-14 18:42:14 -05:00
|
|
|
bool operator()(Symbol** value) {
|
|
|
|
assert(value != NULL, "expected valid value");
|
|
|
|
assert(*value != NULL, "value should point to a symbol");
|
|
|
|
Symbol* sym = *value;
|
|
|
|
unsigned int fixed_hash = hash_shared_symbol((const char*)sym->bytes(), sym->utf8_length());
|
|
|
|
assert(fixed_hash == hash_symbol((const char*)sym->bytes(), sym->utf8_length(), false),
|
|
|
|
"must not rehash during dumping");
|
2019-05-17 08:29:55 -07:00
|
|
|
if (DynamicDumpSharedSpaces) {
|
|
|
|
sym = DynamicArchive::original_to_target(sym);
|
|
|
|
}
|
2018-11-07 19:40:27 -08:00
|
|
|
_writer->add(fixed_hash, MetaspaceShared::object_delta_u4(sym));
|
2018-08-14 18:42:14 -05:00
|
|
|
return true;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
};
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2018-10-08 16:29:10 -07:00
|
|
|
void SymbolTable::copy_shared_symbol_table(CompactHashtableWriter* writer) {
|
2018-08-14 18:42:14 -05:00
|
|
|
CopyToArchive copy(writer);
|
2019-05-16 07:09:17 -04:00
|
|
|
_local_table->do_safepoint_scan(copy);
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
2012-03-23 11:16:05 -04:00
|
|
|
|
2019-05-17 08:29:55 -07:00
|
|
|
size_t SymbolTable::estimate_size_for_archive() {
|
|
|
|
return CompactHashtableWriter::estimate_size(int(_items_count));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SymbolTable::write_to_archive(bool is_static_archive) {
|
|
|
|
CompactHashtableWriter writer(int(_items_count),
|
2018-10-08 16:29:10 -07:00
|
|
|
&MetaspaceShared::stats()->symbol);
|
2018-08-14 18:42:14 -05:00
|
|
|
copy_shared_symbol_table(&writer);
|
2019-05-17 08:29:55 -07:00
|
|
|
if (is_static_archive) {
|
2019-05-31 12:51:36 -07:00
|
|
|
_shared_table.reset();
|
2019-05-17 08:29:55 -07:00
|
|
|
writer.dump(&_shared_table, "symbol");
|
|
|
|
|
|
|
|
// Verify table is correct
|
|
|
|
Symbol* sym = vmSymbols::java_lang_Object();
|
|
|
|
const char* name = (const char*)sym->bytes();
|
|
|
|
int len = sym->utf8_length();
|
|
|
|
unsigned int hash = hash_symbol(name, len, _alt_hash);
|
|
|
|
assert(sym == _shared_table.lookup(name, hash, len), "sanity");
|
|
|
|
} else {
|
2019-05-31 12:51:36 -07:00
|
|
|
_dynamic_shared_table.reset();
|
2019-05-17 08:29:55 -07:00
|
|
|
writer.dump(&_dynamic_shared_table, "symbol");
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 08:29:55 -07:00
|
|
|
void SymbolTable::serialize_shared_table_header(SerializeClosure* soc,
|
|
|
|
bool is_static_archive) {
|
|
|
|
OffsetCompactHashtable<const char*, Symbol*, symbol_equals_compact_hashtable_entry> * table;
|
|
|
|
if (is_static_archive) {
|
|
|
|
table = &_shared_table;
|
|
|
|
} else {
|
|
|
|
table = &_dynamic_shared_table;
|
|
|
|
}
|
|
|
|
table->serialize_header(soc);
|
2018-08-14 18:42:14 -05:00
|
|
|
if (soc->writing()) {
|
|
|
|
// Sanity. Make sure we don't use the shared table at dump time
|
2019-05-17 08:29:55 -07:00
|
|
|
table->reset();
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
|
|
|
#endif //INCLUDE_CDS
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
// Concurrent work
|
|
|
|
void SymbolTable::grow(JavaThread* jt) {
|
|
|
|
SymbolTableHash::GrowTask gt(_local_table);
|
|
|
|
if (!gt.prepare(jt)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
log_trace(symboltable)("Started to grow");
|
|
|
|
{
|
|
|
|
TraceTime timer("Grow", TRACETIME_LOG(Debug, symboltable, perf));
|
|
|
|
while (gt.do_task(jt)) {
|
|
|
|
gt.pause(jt);
|
|
|
|
{
|
|
|
|
ThreadBlockInVM tbivm(jt);
|
|
|
|
}
|
|
|
|
gt.cont(jt);
|
2012-06-25 21:33:35 -04:00
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
|
|
|
gt.done(jt);
|
|
|
|
_current_size = table_size();
|
|
|
|
log_debug(symboltable)("Grown to size:" SIZE_FORMAT, _current_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct SymbolTableDoDelete : StackObj {
|
2018-12-10 11:59:55 -06:00
|
|
|
size_t _deleted;
|
2018-08-14 18:42:14 -05:00
|
|
|
SymbolTableDoDelete() : _deleted(0) {}
|
|
|
|
void operator()(Symbol** value) {
|
|
|
|
assert(value != NULL, "expected valid value");
|
|
|
|
assert(*value != NULL, "value should point to a symbol");
|
|
|
|
Symbol *sym = *value;
|
|
|
|
assert(sym->refcount() == 0, "refcount");
|
|
|
|
_deleted++;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SymbolTableDeleteCheck : StackObj {
|
2018-12-10 11:59:55 -06:00
|
|
|
size_t _processed;
|
2018-08-14 18:42:14 -05:00
|
|
|
SymbolTableDeleteCheck() : _processed(0) {}
|
|
|
|
bool operator()(Symbol** value) {
|
|
|
|
assert(value != NULL, "expected valid value");
|
|
|
|
assert(*value != NULL, "value should point to a symbol");
|
|
|
|
_processed++;
|
|
|
|
Symbol *sym = *value;
|
|
|
|
return (sym->refcount() == 0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void SymbolTable::clean_dead_entries(JavaThread* jt) {
|
|
|
|
SymbolTableHash::BulkDeleteTask bdt(_local_table);
|
|
|
|
if (!bdt.prepare(jt)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SymbolTableDeleteCheck stdc;
|
|
|
|
SymbolTableDoDelete stdd;
|
|
|
|
{
|
|
|
|
TraceTime timer("Clean", TRACETIME_LOG(Debug, symboltable, perf));
|
|
|
|
while (bdt.do_task(jt, stdc, stdd)) {
|
|
|
|
bdt.pause(jt);
|
|
|
|
{
|
|
|
|
ThreadBlockInVM tbivm(jt);
|
|
|
|
}
|
|
|
|
bdt.cont(jt);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2019-05-16 07:09:17 -04:00
|
|
|
reset_has_items_to_clean();
|
2018-08-14 18:42:14 -05:00
|
|
|
bdt.done(jt);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
|
2019-11-25 12:31:39 +01:00
|
|
|
Atomic::add(&_symbols_counted, stdc._processed);
|
2018-08-14 18:42:14 -05:00
|
|
|
|
2018-12-10 11:59:55 -06:00
|
|
|
log_debug(symboltable)("Cleaned " SIZE_FORMAT " of " SIZE_FORMAT,
|
2018-08-14 18:42:14 -05:00
|
|
|
stdd._deleted, stdc._processed);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
void SymbolTable::check_concurrent_work() {
|
|
|
|
if (_has_work) {
|
|
|
|
return;
|
|
|
|
}
|
2019-01-31 10:29:53 -05:00
|
|
|
// We should clean/resize if we have
|
2018-08-14 18:42:14 -05:00
|
|
|
// more items than preferred load factor or
|
|
|
|
// more dead items than water mark.
|
2019-01-31 10:29:53 -05:00
|
|
|
if (has_items_to_clean() || (get_load_factor() > PREF_AVG_LIST_LEN)) {
|
|
|
|
log_debug(symboltable)("Concurrent work triggered, load factor: %f, items to clean: %s",
|
|
|
|
get_load_factor(), has_items_to_clean() ? "true" : "false");
|
|
|
|
trigger_cleanup();
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-16 07:09:17 -04:00
|
|
|
void SymbolTable::do_concurrent_work(JavaThread* jt) {
|
2018-08-14 18:42:14 -05:00
|
|
|
double load_factor = get_load_factor();
|
|
|
|
log_debug(symboltable, perf)("Concurrent work, live factor: %g", load_factor);
|
|
|
|
// We prefer growing, since that also removes dead items
|
|
|
|
if (load_factor > PREF_AVG_LIST_LEN && !_local_table->is_max_size_reached()) {
|
|
|
|
grow(jt);
|
|
|
|
} else {
|
|
|
|
clean_dead_entries(jt);
|
|
|
|
}
|
|
|
|
_has_work = false;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
// Rehash
|
|
|
|
bool SymbolTable::do_rehash() {
|
|
|
|
if (!_local_table->is_safepoint_safe()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-06-11 07:31:47 -04:00
|
|
|
// We use current size
|
|
|
|
size_t new_size = _local_table->get_size_log2(Thread::current());
|
|
|
|
SymbolTableHash* new_table = new SymbolTableHash(new_size, END_SIZE, REHASH_LEN);
|
2018-08-14 18:42:14 -05:00
|
|
|
// Use alt hash from now on
|
|
|
|
_alt_hash = true;
|
|
|
|
if (!_local_table->try_move_nodes_to(Thread::current(), new_table)) {
|
|
|
|
_alt_hash = false;
|
|
|
|
delete new_table;
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-17 19:15:52 -07:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
// free old table
|
|
|
|
delete _local_table;
|
|
|
|
_local_table = new_table;
|
2014-12-17 23:34:52 -05:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
return true;
|
2017-08-02 18:06:38 -07:00
|
|
|
}
|
2012-06-13 19:52:59 -04:00
|
|
|
|
2019-05-16 07:09:17 -04:00
|
|
|
void SymbolTable::rehash_table() {
|
2018-08-14 18:42:14 -05:00
|
|
|
static bool rehashed = false;
|
|
|
|
log_debug(symboltable)("Table imbalanced, rehashing called.");
|
2017-08-02 18:06:38 -07:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
// Grow instead of rehash.
|
|
|
|
if (get_load_factor() > PREF_AVG_LIST_LEN &&
|
|
|
|
!_local_table->is_max_size_reached()) {
|
|
|
|
log_debug(symboltable)("Choosing growing over rehashing.");
|
2019-01-31 10:29:53 -05:00
|
|
|
trigger_cleanup();
|
2018-08-14 18:42:14 -05:00
|
|
|
_needs_rehashing = false;
|
|
|
|
return;
|
2016-04-17 19:15:52 -07:00
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
|
|
|
|
// Already rehashed.
|
|
|
|
if (rehashed) {
|
|
|
|
log_warning(symboltable)("Rehashing already done, still long lists.");
|
2019-01-31 10:29:53 -05:00
|
|
|
trigger_cleanup();
|
2018-08-14 18:42:14 -05:00
|
|
|
_needs_rehashing = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
murmur_seed = AltHashing::compute_seed();
|
|
|
|
|
|
|
|
if (do_rehash()) {
|
|
|
|
rehashed = true;
|
|
|
|
} else {
|
|
|
|
log_info(symboltable)("Resizes in progress rehashing skipped.");
|
|
|
|
}
|
|
|
|
|
|
|
|
_needs_rehashing = false;
|
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Non-product code
|
|
|
|
|
|
|
|
#ifndef PRODUCT
|
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
class HistogramIterator : StackObj {
|
|
|
|
public:
|
|
|
|
static const size_t results_length = 100;
|
|
|
|
size_t counts[results_length];
|
|
|
|
size_t sizes[results_length];
|
|
|
|
size_t total_size;
|
|
|
|
size_t total_count;
|
|
|
|
size_t total_length;
|
|
|
|
size_t max_length;
|
|
|
|
size_t out_of_range_count;
|
|
|
|
size_t out_of_range_size;
|
|
|
|
HistogramIterator() : total_size(0), total_count(0), total_length(0),
|
|
|
|
max_length(0), out_of_range_count(0), out_of_range_size(0) {
|
|
|
|
// initialize results to zero
|
|
|
|
for (size_t i = 0; i < results_length; i++) {
|
|
|
|
counts[i] = 0;
|
|
|
|
sizes[i] = 0;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
bool operator()(Symbol** value) {
|
|
|
|
assert(value != NULL, "expected valid value");
|
|
|
|
assert(*value != NULL, "value should point to a symbol");
|
|
|
|
Symbol* sym = *value;
|
|
|
|
size_t size = sym->size();
|
|
|
|
size_t len = sym->utf8_length();
|
|
|
|
if (len < results_length) {
|
|
|
|
counts[len]++;
|
|
|
|
sizes[len] += size;
|
|
|
|
} else {
|
|
|
|
out_of_range_count++;
|
|
|
|
out_of_range_size += size;
|
|
|
|
}
|
|
|
|
total_count++;
|
|
|
|
total_size += size;
|
|
|
|
total_length += len;
|
|
|
|
max_length = MAX2(max_length, len);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
void SymbolTable::print_histogram() {
|
|
|
|
HistogramIterator hi;
|
2019-05-16 07:09:17 -04:00
|
|
|
_local_table->do_scan(Thread::current(), hi);
|
2014-09-22 18:34:35 +04:00
|
|
|
tty->print_cr("Symbol Table Histogram:");
|
2018-08-14 18:42:14 -05:00
|
|
|
tty->print_cr(" Total number of symbols " SIZE_FORMAT_W(7), hi.total_count);
|
|
|
|
tty->print_cr(" Total size in memory " SIZE_FORMAT_W(7) "K",
|
|
|
|
(hi.total_size * wordSize) / 1024);
|
2019-05-16 07:09:17 -04:00
|
|
|
tty->print_cr(" Total counted " SIZE_FORMAT_W(7), _symbols_counted);
|
|
|
|
tty->print_cr(" Total removed " SIZE_FORMAT_W(7), _symbols_removed);
|
|
|
|
if (_symbols_counted > 0) {
|
2014-09-22 18:34:35 +04:00
|
|
|
tty->print_cr(" Percent removed %3.2f",
|
2019-05-16 07:09:17 -04:00
|
|
|
((float)_symbols_removed / _symbols_counted) * 100);
|
2018-08-14 18:42:14 -05:00
|
|
|
}
|
|
|
|
tty->print_cr(" Reference counts " SIZE_FORMAT_W(7), Symbol::_total_count);
|
|
|
|
tty->print_cr(" Symbol arena used " SIZE_FORMAT_W(7) "K", arena()->used() / 1024);
|
|
|
|
tty->print_cr(" Symbol arena size " SIZE_FORMAT_W(7) "K", arena()->size_in_bytes() / 1024);
|
|
|
|
tty->print_cr(" Total symbol length " SIZE_FORMAT_W(7), hi.total_length);
|
|
|
|
tty->print_cr(" Maximum symbol length " SIZE_FORMAT_W(7), hi.max_length);
|
|
|
|
tty->print_cr(" Average symbol length %7.2f", ((float)hi.total_length / hi.total_count));
|
2014-09-22 18:34:35 +04:00
|
|
|
tty->print_cr(" Symbol length histogram:");
|
|
|
|
tty->print_cr(" %6s %10s %10s", "Length", "#Symbols", "Size");
|
2018-08-14 18:42:14 -05:00
|
|
|
for (size_t i = 0; i < hi.results_length; i++) {
|
|
|
|
if (hi.counts[i] > 0) {
|
|
|
|
tty->print_cr(" " SIZE_FORMAT_W(6) " " SIZE_FORMAT_W(10) " " SIZE_FORMAT_W(10) "K",
|
|
|
|
i, hi.counts[i], (hi.sizes[i] * wordSize) / 1024);
|
2011-01-27 16:11:27 -08:00
|
|
|
}
|
|
|
|
}
|
2018-08-14 18:42:14 -05:00
|
|
|
tty->print_cr(" >=" SIZE_FORMAT_W(6) " " SIZE_FORMAT_W(10) " " SIZE_FORMAT_W(10) "K\n",
|
|
|
|
hi.results_length, hi.out_of_range_count, (hi.out_of_range_size*wordSize) / 1024);
|
2011-01-27 16:11:27 -08:00
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
#endif // PRODUCT
|
2014-12-17 23:34:52 -05:00
|
|
|
|
|
|
|
// Utility for dumping symbols
|
|
|
|
SymboltableDCmd::SymboltableDCmd(outputStream* output, bool heap) :
|
|
|
|
DCmdWithParser(output, heap),
|
|
|
|
_verbose("-verbose", "Dump the content of each symbol in the table",
|
|
|
|
"BOOLEAN", false, "false") {
|
|
|
|
_dcmdparser.add_dcmd_option(&_verbose);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SymboltableDCmd::execute(DCmdSource source, TRAPS) {
|
|
|
|
VM_DumpHashtable dumper(output(), VM_DumpHashtable::DumpSymbols,
|
|
|
|
_verbose.value());
|
|
|
|
VMThread::execute(&dumper);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SymboltableDCmd::num_arguments() {
|
|
|
|
ResourceMark rm;
|
|
|
|
SymboltableDCmd* dcmd = new SymboltableDCmd(NULL, false);
|
|
|
|
if (dcmd != NULL) {
|
|
|
|
DCmdMark mark(dcmd);
|
|
|
|
return dcmd->_dcmdparser.num_arguments();
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|