2014-05-07 14:16:45 -05:00
|
|
|
/*
|
2018-02-22 10:39:42 +01:00
|
|
|
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
|
2014-05-07 14:16:45 -05: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 "classfile/altHashing.hpp"
|
2015-12-02 18:14:54 -08:00
|
|
|
#include "classfile/compactHashtable.inline.hpp"
|
2016-01-04 15:41:05 +01:00
|
|
|
#include "classfile/javaClasses.inline.hpp"
|
2014-05-07 14:16:45 -05:00
|
|
|
#include "classfile/stringTable.hpp"
|
|
|
|
#include "classfile/systemDictionary.hpp"
|
2018-05-07 14:57:25 +02:00
|
|
|
#include "gc/shared/collectedHeap.hpp"
|
2018-06-07 14:11:56 +02:00
|
|
|
#include "gc/shared/oopStorage.inline.hpp"
|
|
|
|
#include "gc/shared/oopStorageParState.inline.hpp"
|
2017-06-05 13:13:38 -04:00
|
|
|
#include "logging/log.hpp"
|
2018-06-07 14:11:56 +02:00
|
|
|
#include "logging/logStream.hpp"
|
2014-05-07 14:16:45 -05:00
|
|
|
#include "memory/allocation.inline.hpp"
|
|
|
|
#include "memory/filemap.hpp"
|
2018-09-18 21:46:17 -07:00
|
|
|
#include "memory/metaspaceShared.inline.hpp"
|
2016-04-04 12:57:48 -04:00
|
|
|
#include "memory/resourceArea.hpp"
|
2018-05-07 14:57:25 +02:00
|
|
|
#include "memory/universe.hpp"
|
2018-01-08 16:21:23 +01:00
|
|
|
#include "oops/access.inline.hpp"
|
2014-05-07 14:16:45 -05:00
|
|
|
#include "oops/oop.inline.hpp"
|
2018-02-22 10:39:42 +01:00
|
|
|
#include "oops/typeArrayOop.inline.hpp"
|
2018-06-07 14:11:56 +02:00
|
|
|
#include "oops/weakHandle.inline.hpp"
|
2016-08-21 20:56:37 -04:00
|
|
|
#include "runtime/atomic.hpp"
|
2018-03-14 12:12:00 +01:00
|
|
|
#include "runtime/handles.inline.hpp"
|
2014-05-07 14:16:45 -05:00
|
|
|
#include "runtime/mutexLocker.hpp"
|
2018-03-23 18:54:12 +01:00
|
|
|
#include "runtime/safepointVerifiers.hpp"
|
2018-06-07 14:11:56 +02:00
|
|
|
#include "runtime/timerTrace.hpp"
|
|
|
|
#include "runtime/interfaceSupport.inline.hpp"
|
2017-08-02 10:52:50 -04:00
|
|
|
#include "services/diagnosticCommand.hpp"
|
2018-06-07 14:11:56 +02:00
|
|
|
#include "utilities/concurrentHashTable.inline.hpp"
|
|
|
|
#include "utilities/concurrentHashTableTasks.inline.hpp"
|
2014-11-12 12:41:59 +01:00
|
|
|
#include "utilities/macros.hpp"
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// We prefer short chains of avg 2
|
|
|
|
#define PREF_AVG_LIST_LEN 2
|
|
|
|
// 2^24 is max size
|
|
|
|
#define END_SIZE 24
|
|
|
|
// If a chain gets to 32 something might be wrong
|
|
|
|
#define REHASH_LEN 32
|
|
|
|
// If we have as many dead items as 50% of the number of bucket
|
|
|
|
#define CLEAN_DEAD_HIGH_WATER_MARK 0.5
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
StringTable* StringTable::_the_table = NULL;
|
|
|
|
CompactHashtable<oop, char> StringTable::_shared_table;
|
2018-08-14 18:42:14 -05:00
|
|
|
volatile bool StringTable::_shared_string_mapped = false;
|
|
|
|
volatile bool StringTable::_alt_hash = false;
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
static juint murmur_seed = 0;
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
uintx hash_string(const jchar* s, int len, bool useAlt) {
|
|
|
|
return useAlt ?
|
|
|
|
AltHashing::murmur3_32(murmur_seed, s, len) :
|
|
|
|
java_lang_String::hash_code(s, len);
|
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
class StringTableConfig : public StringTableHash::BaseConfig {
|
|
|
|
private:
|
2014-05-07 14:16:45 -05:00
|
|
|
public:
|
2018-06-07 14:11:56 +02:00
|
|
|
static uintx get_hash(WeakHandle<vm_string_table_data> const& value,
|
|
|
|
bool* is_dead) {
|
|
|
|
EXCEPTION_MARK;
|
|
|
|
oop val_oop = value.peek();
|
|
|
|
if (val_oop == NULL) {
|
|
|
|
*is_dead = true;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*is_dead = false;
|
|
|
|
ResourceMark rm(THREAD);
|
|
|
|
// All String oops are hashed as unicode
|
|
|
|
int length;
|
|
|
|
jchar* chars = java_lang_String::as_unicode_string(val_oop, length, THREAD);
|
|
|
|
if (chars != NULL) {
|
|
|
|
return hash_string(chars, length, StringTable::_alt_hash);
|
|
|
|
}
|
|
|
|
vm_exit_out_of_memory(length, OOM_MALLOC_ERROR, "get hash from oop");
|
|
|
|
return 0;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
// We use default allocation/deallocation but counted
|
|
|
|
static void* allocate_node(size_t size,
|
|
|
|
WeakHandle<vm_string_table_data> const& value) {
|
|
|
|
StringTable::item_added();
|
|
|
|
return StringTableHash::BaseConfig::allocate_node(size, value);
|
|
|
|
}
|
|
|
|
static void free_node(void* memory,
|
|
|
|
WeakHandle<vm_string_table_data> const& value) {
|
|
|
|
value.release();
|
|
|
|
StringTableHash::BaseConfig::free_node(memory, value);
|
|
|
|
StringTable::item_removed();
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
class StringTableLookupJchar : StackObj {
|
|
|
|
private:
|
|
|
|
Thread* _thread;
|
|
|
|
uintx _hash;
|
|
|
|
int _len;
|
|
|
|
const jchar* _str;
|
|
|
|
Handle _found;
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
public:
|
|
|
|
StringTableLookupJchar(Thread* thread, uintx hash, const jchar* key, int len)
|
2018-08-08 15:31:07 +02:00
|
|
|
: _thread(thread), _hash(hash), _len(len), _str(key) {
|
2018-06-07 14:11:56 +02:00
|
|
|
}
|
|
|
|
uintx get_hash() const {
|
|
|
|
return _hash;
|
|
|
|
}
|
|
|
|
bool equals(WeakHandle<vm_string_table_data>* value, bool* is_dead) {
|
|
|
|
oop val_oop = value->peek();
|
|
|
|
if (val_oop == NULL) {
|
|
|
|
// dead oop, mark this hash dead for cleaning
|
|
|
|
*is_dead = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool equals = java_lang_String::equals(val_oop, (jchar*)_str, _len);
|
|
|
|
if (!equals) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Need to resolve weak handle and Handleize through possible safepoint.
|
|
|
|
_found = Handle(_thread, value->resolve());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
class StringTableLookupOop : public StackObj {
|
|
|
|
private:
|
|
|
|
Thread* _thread;
|
|
|
|
uintx _hash;
|
|
|
|
Handle _find;
|
|
|
|
Handle _found; // Might be a different oop with the same value that's already
|
|
|
|
// in the table, which is the point.
|
|
|
|
public:
|
|
|
|
StringTableLookupOop(Thread* thread, uintx hash, Handle handle)
|
|
|
|
: _thread(thread), _hash(hash), _find(handle) { }
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
uintx get_hash() const {
|
|
|
|
return _hash;
|
|
|
|
}
|
2015-06-12 17:29:14 -04:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
bool equals(WeakHandle<vm_string_table_data>* value, bool* is_dead) {
|
|
|
|
oop val_oop = value->peek();
|
|
|
|
if (val_oop == NULL) {
|
|
|
|
// dead oop, mark this hash dead for cleaning
|
|
|
|
*is_dead = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool equals = java_lang_String::equals(_find(), val_oop);
|
|
|
|
if (!equals) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Need to resolve weak handle and Handleize through possible safepoint.
|
|
|
|
_found = Handle(_thread, value->resolve());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
static size_t ceil_log2(size_t val) {
|
2018-06-07 14:11:56 +02:00
|
|
|
size_t ret;
|
|
|
|
for (ret = 1; ((size_t)1 << ret) < val; ++ret);
|
|
|
|
return ret;
|
2017-03-15 13:03:13 +01:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
StringTable::StringTable() : _local_table(NULL), _current_size(0), _has_work(0),
|
2018-08-14 18:42:14 -05:00
|
|
|
_needs_rehashing(false), _weak_handles(NULL), _items_count(0), _uncleaned_items_count(0) {
|
2018-06-07 14:11:56 +02:00
|
|
|
_weak_handles = new OopStorage("StringTable weak",
|
|
|
|
StringTableWeakAlloc_lock,
|
|
|
|
StringTableWeakActive_lock);
|
2018-08-14 18:42:14 -05:00
|
|
|
size_t start_size_log_2 = ceil_log2(StringTableSize);
|
2018-06-07 14:11:56 +02:00
|
|
|
_current_size = ((size_t)1) << start_size_log_2;
|
|
|
|
log_trace(stringtable)("Start size: " SIZE_FORMAT " (" SIZE_FORMAT ")",
|
|
|
|
_current_size, start_size_log_2);
|
|
|
|
_local_table = new StringTableHash(start_size_log_2, END_SIZE, REHASH_LEN);
|
2016-03-22 13:32:18 -04:00
|
|
|
}
|
8141132: JEP 254: Compact Strings
Adopt a more space-efficient internal representation for strings.
Co-authored-by: Brent Christian <brent.christian@oracle.com>
Co-authored-by: Vivek Deshpande <vivek.r.deshpande@intel.com>
Co-authored-by: Charlie Hunt <charlie.hunt@oracle.com>
Co-authored-by: Vladimir Kozlov <vladimir.kozlov@oracle.com>
Co-authored-by: Roger Riggs <roger.riggs@oracle.com>
Co-authored-by: Xueming Shen <xueming.shen@oracle.com>
Co-authored-by: Aleksey Shipilev <aleksey.shipilev@oracle.com>
Co-authored-by: Sandhya Viswanathan <sandhya.viswanathan@intel.com>
Reviewed-by: alanb, bdelsart, coleenp, iklam, jiangli, jrose, kevinw, naoto, pliden, roland, smarks, twisti
2015-11-03 09:41:03 +01:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
size_t StringTable::item_added() {
|
2018-08-14 18:42:14 -05:00
|
|
|
return Atomic::add((size_t)1, &(the_table()->_items_count));
|
2018-01-08 16:21:23 +01:00
|
|
|
}
|
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
size_t StringTable::add_items_count_to_clean(size_t ndead) {
|
|
|
|
size_t total = Atomic::add((size_t)ndead, &(the_table()->_uncleaned_items_count));
|
2018-06-07 14:11:56 +02:00
|
|
|
log_trace(stringtable)(
|
|
|
|
"Uncleaned items:" SIZE_FORMAT " added: " SIZE_FORMAT " total:" SIZE_FORMAT,
|
2018-08-14 18:42:14 -05:00
|
|
|
the_table()->_uncleaned_items_count, ndead, total);
|
2018-06-07 14:11:56 +02:00
|
|
|
return total;
|
2018-01-08 16:21:23 +01:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::item_removed() {
|
2018-08-14 18:42:14 -05:00
|
|
|
Atomic::add((size_t)-1, &(the_table()->_items_count));
|
2018-01-08 16:21:23 +01:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
double StringTable::get_load_factor() {
|
2018-08-14 18:42:14 -05:00
|
|
|
return (double)_items_count/_current_size;
|
2015-06-12 17:29:14 -04:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
double StringTable::get_dead_factor() {
|
2018-08-14 18:42:14 -05:00
|
|
|
return (double)_uncleaned_items_count/_current_size;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-08-14 18:42:14 -05:00
|
|
|
size_t StringTable::table_size() {
|
|
|
|
return ((size_t)1) << _local_table->get_size_log2(Thread::current());
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::trigger_concurrent_work() {
|
|
|
|
MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
|
|
|
|
the_table()->_has_work = true;
|
|
|
|
Service_lock->notify_all();
|
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// Probing
|
2014-05-07 14:16:45 -05:00
|
|
|
oop StringTable::lookup(Symbol* symbol) {
|
|
|
|
ResourceMark rm;
|
|
|
|
int length;
|
|
|
|
jchar* chars = symbol->as_unicode(length);
|
|
|
|
return lookup(chars, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
oop StringTable::lookup(jchar* name, int len) {
|
2017-03-15 13:03:13 +01:00
|
|
|
unsigned int hash = java_lang_String::hash_code(name, len);
|
2018-06-07 14:11:56 +02:00
|
|
|
oop string = StringTable::the_table()->lookup_shared(name, len, hash);
|
2015-06-12 17:29:14 -04:00
|
|
|
if (string != NULL) {
|
|
|
|
return string;
|
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
if (StringTable::_alt_hash) {
|
|
|
|
hash = hash_string(name, len, true);
|
2017-03-15 13:03:13 +01:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
return StringTable::the_table()->do_lookup(name, len, hash);
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
class StringTableGet : public StackObj {
|
|
|
|
Thread* _thread;
|
|
|
|
Handle _return;
|
|
|
|
public:
|
|
|
|
StringTableGet(Thread* thread) : _thread(thread) {}
|
|
|
|
void operator()(WeakHandle<vm_string_table_data>* val) {
|
|
|
|
oop result = val->resolve();
|
|
|
|
assert(result != NULL, "Result should be reachable");
|
|
|
|
_return = Handle(_thread, result);
|
2014-07-07 10:12:40 +02:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
oop get_res_oop() {
|
|
|
|
return _return();
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
};
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
oop StringTable::do_lookup(jchar* name, int len, uintx hash) {
|
|
|
|
Thread* thread = Thread::current();
|
|
|
|
StringTableLookupJchar lookup(thread, hash, name, len);
|
|
|
|
StringTableGet stg(thread);
|
|
|
|
bool rehash_warning;
|
|
|
|
_local_table->get(thread, lookup, stg, &rehash_warning);
|
|
|
|
if (rehash_warning) {
|
|
|
|
_needs_rehashing = true;
|
2014-07-07 10:12:40 +02:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
return stg.get_res_oop();
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// Interning
|
2014-05-07 14:16:45 -05:00
|
|
|
oop StringTable::intern(Symbol* symbol, TRAPS) {
|
|
|
|
if (symbol == NULL) return NULL;
|
|
|
|
ResourceMark rm(THREAD);
|
|
|
|
int length;
|
|
|
|
jchar* chars = symbol->as_unicode(length);
|
|
|
|
Handle string;
|
|
|
|
oop result = intern(string, chars, length, CHECK_NULL);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
oop StringTable::intern(oop string, TRAPS) {
|
2014-05-07 14:16:45 -05:00
|
|
|
if (string == NULL) return NULL;
|
|
|
|
ResourceMark rm(THREAD);
|
|
|
|
int length;
|
|
|
|
Handle h_string (THREAD, string);
|
2018-06-07 14:11:56 +02:00
|
|
|
jchar* chars = java_lang_String::as_unicode_string(string, length,
|
|
|
|
CHECK_NULL);
|
2014-05-07 14:16:45 -05:00
|
|
|
oop result = intern(h_string, chars, length, CHECK_NULL);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
oop StringTable::intern(const char* utf8_string, TRAPS) {
|
|
|
|
if (utf8_string == NULL) return NULL;
|
|
|
|
ResourceMark rm(THREAD);
|
|
|
|
int length = UTF8::unicode_length(utf8_string);
|
|
|
|
jchar* chars = NEW_RESOURCE_ARRAY(jchar, length);
|
|
|
|
UTF8::convert_to_unicode(utf8_string, chars, length);
|
|
|
|
Handle string;
|
|
|
|
oop result = intern(string, chars, length, CHECK_NULL);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
oop StringTable::intern(Handle string_or_null_h, jchar* name, int len, TRAPS) {
|
|
|
|
// shared table always uses java_lang_String::hash_code
|
|
|
|
unsigned int hash = java_lang_String::hash_code(name, len);
|
|
|
|
oop found_string = StringTable::the_table()->lookup_shared(name, len, hash);
|
|
|
|
if (found_string != NULL) {
|
|
|
|
return found_string;
|
|
|
|
}
|
|
|
|
if (StringTable::_alt_hash) {
|
|
|
|
hash = hash_string(name, len, true);
|
|
|
|
}
|
|
|
|
return StringTable::the_table()->do_intern(string_or_null_h, name, len,
|
|
|
|
hash, CHECK_NULL);
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
class StringTableCreateEntry : public StackObj {
|
|
|
|
private:
|
|
|
|
Thread* _thread;
|
|
|
|
Handle _return;
|
|
|
|
Handle _store;
|
|
|
|
public:
|
|
|
|
StringTableCreateEntry(Thread* thread, Handle store)
|
|
|
|
: _thread(thread), _store(store) {}
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
WeakHandle<vm_string_table_data> operator()() { // No dups found
|
|
|
|
WeakHandle<vm_string_table_data> wh =
|
|
|
|
WeakHandle<vm_string_table_data>::create(_store);
|
|
|
|
return wh;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
void operator()(bool inserted, WeakHandle<vm_string_table_data>* val) {
|
|
|
|
oop result = val->resolve();
|
|
|
|
assert(result != NULL, "Result should be reachable");
|
|
|
|
_return = Handle(_thread, result);
|
|
|
|
}
|
|
|
|
oop get_return() const {
|
|
|
|
return _return();
|
|
|
|
}
|
|
|
|
};
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
oop StringTable::do_intern(Handle string_or_null_h, jchar* name,
|
|
|
|
int len, uintx hash, TRAPS) {
|
|
|
|
HandleMark hm(THREAD); // cleanup strings created
|
|
|
|
Handle string_h;
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
if (!string_or_null_h.is_null()) {
|
|
|
|
string_h = string_or_null_h;
|
|
|
|
} else {
|
|
|
|
string_h = java_lang_String::create_from_unicode(name, len, CHECK_NULL);
|
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// Deduplicate the string before it is interned. Note that we should never
|
|
|
|
// deduplicate a string after it has been interned. Doing so will counteract
|
|
|
|
// compiler optimizations done on e.g. interned string literals.
|
|
|
|
Universe::heap()->deduplicate_string(string_h());
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
assert(java_lang_String::equals(string_h(), name, len),
|
|
|
|
"string must be properly initialized");
|
|
|
|
assert(len == java_lang_String::length(string_h()), "Must be same length");
|
|
|
|
StringTableLookupOop lookup(THREAD, hash, string_h);
|
|
|
|
StringTableCreateEntry stc(THREAD, string_h);
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
bool rehash_warning;
|
|
|
|
_local_table->get_insert_lazy(THREAD, lookup, stc, stc, &rehash_warning);
|
|
|
|
if (rehash_warning) {
|
|
|
|
_needs_rehashing = true;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
return stc.get_return();
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// GC support
|
|
|
|
class StringTableIsAliveCounter : public BoolObjectClosure {
|
|
|
|
BoolObjectClosure* _real_boc;
|
|
|
|
public:
|
|
|
|
size_t _count;
|
|
|
|
size_t _count_total;
|
|
|
|
StringTableIsAliveCounter(BoolObjectClosure* boc) : _real_boc(boc), _count(0),
|
|
|
|
_count_total(0) {}
|
|
|
|
bool do_object_b(oop obj) {
|
|
|
|
bool ret = _real_boc->do_object_b(obj);
|
|
|
|
if (!ret) {
|
|
|
|
++_count;
|
|
|
|
}
|
|
|
|
++_count_total;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
};
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f,
|
2018-08-27 17:20:29 -04:00
|
|
|
size_t* processed, size_t* removed) {
|
2018-06-07 14:11:56 +02:00
|
|
|
DoNothingClosure dnc;
|
|
|
|
assert(is_alive != NULL, "No closure");
|
|
|
|
StringTableIsAliveCounter stiac(is_alive);
|
|
|
|
OopClosure* tmp = f != NULL ? f : &dnc;
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
StringTable::the_table()->_weak_handles->weak_oops_do(&stiac, tmp);
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-14 07:26:27 +02:00
|
|
|
// This is the serial case without ParState.
|
|
|
|
// Just set the correct number and check for a cleaning phase.
|
2018-08-14 18:42:14 -05:00
|
|
|
the_table()->_uncleaned_items_count = stiac._count;
|
2018-06-07 14:11:56 +02:00
|
|
|
StringTable::the_table()->check_concurrent_work();
|
2018-06-14 07:26:27 +02:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
if (processed != NULL) {
|
2018-08-27 17:20:29 -04:00
|
|
|
*processed = stiac._count_total;
|
2018-06-07 14:11:56 +02:00
|
|
|
}
|
|
|
|
if (removed != NULL) {
|
2018-08-27 17:20:29 -04:00
|
|
|
*removed = stiac._count;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void StringTable::oops_do(OopClosure* f) {
|
2018-06-07 14:11:56 +02:00
|
|
|
assert(f != NULL, "No closure");
|
|
|
|
StringTable::the_table()->_weak_handles->oops_do(f);
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::possibly_parallel_unlink(
|
|
|
|
OopStorage::ParState<false, false>* _par_state_string, BoolObjectClosure* cl,
|
2018-08-27 17:20:29 -04:00
|
|
|
size_t* processed, size_t* removed)
|
2018-06-07 14:11:56 +02:00
|
|
|
{
|
|
|
|
DoNothingClosure dnc;
|
|
|
|
assert(cl != NULL, "No closure");
|
|
|
|
StringTableIsAliveCounter stiac(cl);
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
_par_state_string->weak_oops_do(&stiac, &dnc);
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-14 07:26:27 +02:00
|
|
|
// Accumulate the dead strings.
|
2018-08-14 18:42:14 -05:00
|
|
|
the_table()->add_items_count_to_clean(stiac._count);
|
2018-06-14 07:26:27 +02:00
|
|
|
|
2018-08-27 17:20:29 -04:00
|
|
|
*processed = stiac._count_total;
|
|
|
|
*removed = stiac._count;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::possibly_parallel_oops_do(
|
|
|
|
OopStorage::ParState<false /* concurrent */, false /* const */>*
|
|
|
|
_par_state_string, OopClosure* f)
|
|
|
|
{
|
|
|
|
assert(f != NULL, "No closure");
|
|
|
|
_par_state_string->oops_do(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Concurrent work
|
|
|
|
void StringTable::grow(JavaThread* jt) {
|
|
|
|
StringTableHash::GrowTask gt(_local_table);
|
|
|
|
if (!gt.prepare(jt)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
log_trace(stringtable)("Started to grow");
|
|
|
|
{
|
|
|
|
TraceTime timer("Grow", TRACETIME_LOG(Debug, stringtable, perf));
|
2018-06-18 16:13:21 +02:00
|
|
|
while (gt.do_task(jt)) {
|
2018-06-07 14:11:56 +02:00
|
|
|
gt.pause(jt);
|
|
|
|
{
|
|
|
|
ThreadBlockInVM tbivm(jt);
|
|
|
|
}
|
|
|
|
gt.cont(jt);
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
gt.done(jt);
|
2018-08-14 18:42:14 -05:00
|
|
|
_current_size = table_size();
|
2018-06-07 14:11:56 +02:00
|
|
|
log_debug(stringtable)("Grown to size:" SIZE_FORMAT, _current_size);
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
struct StringTableDoDelete : StackObj {
|
|
|
|
void operator()(WeakHandle<vm_string_table_data>* val) {
|
2018-06-14 07:26:27 +02:00
|
|
|
/* do nothing */
|
2018-06-07 14:11:56 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct StringTableDeleteCheck : StackObj {
|
|
|
|
long _count;
|
|
|
|
long _item;
|
|
|
|
StringTableDeleteCheck() : _count(0), _item(0) {}
|
|
|
|
bool operator()(WeakHandle<vm_string_table_data>* val) {
|
|
|
|
++_item;
|
|
|
|
oop tmp = val->peek();
|
|
|
|
if (tmp == NULL) {
|
|
|
|
++_count;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void StringTable::clean_dead_entries(JavaThread* jt) {
|
|
|
|
StringTableHash::BulkDeleteTask bdt(_local_table);
|
|
|
|
if (!bdt.prepare(jt)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringTableDeleteCheck stdc;
|
|
|
|
StringTableDoDelete stdd;
|
|
|
|
{
|
|
|
|
TraceTime timer("Clean", TRACETIME_LOG(Debug, stringtable, perf));
|
2018-06-18 16:13:21 +02:00
|
|
|
while(bdt.do_task(jt, stdc, stdd)) {
|
2018-06-07 14:11:56 +02:00
|
|
|
bdt.pause(jt);
|
|
|
|
{
|
|
|
|
ThreadBlockInVM tbivm(jt);
|
|
|
|
}
|
2018-06-27 12:46:15 +02:00
|
|
|
bdt.cont(jt);
|
2014-12-17 23:34:52 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
bdt.done(jt);
|
|
|
|
}
|
|
|
|
log_debug(stringtable)("Cleaned %ld of %ld", stdc._count, stdc._item);
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::check_concurrent_work() {
|
|
|
|
if (_has_work) {
|
|
|
|
return;
|
|
|
|
}
|
2018-06-14 07:26:27 +02:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
double load_factor = StringTable::get_load_factor();
|
|
|
|
double dead_factor = StringTable::get_dead_factor();
|
|
|
|
// We should clean/resize if we have more dead than alive,
|
|
|
|
// more items than preferred load factor or
|
|
|
|
// more dead items than water mark.
|
|
|
|
if ((dead_factor > load_factor) ||
|
|
|
|
(load_factor > PREF_AVG_LIST_LEN) ||
|
|
|
|
(dead_factor > CLEAN_DEAD_HIGH_WATER_MARK)) {
|
|
|
|
log_debug(stringtable)("Concurrent work triggered, live factor:%g dead factor:%g",
|
|
|
|
load_factor, dead_factor);
|
|
|
|
trigger_concurrent_work();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void StringTable::concurrent_work(JavaThread* jt) {
|
|
|
|
_has_work = false;
|
|
|
|
double load_factor = get_load_factor();
|
|
|
|
log_debug(stringtable, 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);
|
|
|
|
}
|
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::do_concurrent_work(JavaThread* jt) {
|
|
|
|
StringTable::the_table()->concurrent_work(jt);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rehash
|
|
|
|
bool StringTable::do_rehash() {
|
|
|
|
if (!_local_table->is_safepoint_safe()) {
|
|
|
|
return false;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// We use max size
|
|
|
|
StringTableHash* new_table = new StringTableHash(END_SIZE, END_SIZE, REHASH_LEN);
|
|
|
|
// 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;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// free old table
|
|
|
|
delete _local_table;
|
|
|
|
_local_table = new_table;
|
|
|
|
|
|
|
|
return true;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::try_rehash_table() {
|
|
|
|
static bool rehashed = false;
|
|
|
|
log_debug(stringtable)("Table imbalanced, rehashing called.");
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// Grow instead of rehash.
|
|
|
|
if (get_load_factor() > PREF_AVG_LIST_LEN &&
|
|
|
|
!_local_table->is_max_size_reached()) {
|
|
|
|
log_debug(stringtable)("Choosing growing over rehashing.");
|
|
|
|
trigger_concurrent_work();
|
|
|
|
_needs_rehashing = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Already rehashed.
|
|
|
|
if (rehashed) {
|
|
|
|
log_warning(stringtable)("Rehashing already done, still long lists.");
|
|
|
|
trigger_concurrent_work();
|
|
|
|
_needs_rehashing = false;
|
|
|
|
return;
|
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
murmur_seed = AltHashing::compute_seed();
|
|
|
|
{
|
|
|
|
if (do_rehash()) {
|
|
|
|
rehashed = true;
|
|
|
|
} else {
|
|
|
|
log_info(stringtable)("Resizes in progress rehashing skipped.");
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
_needs_rehashing = false;
|
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::rehash_table() {
|
|
|
|
StringTable::the_table()->try_rehash_table();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Statistics
|
|
|
|
static int literal_size(oop obj) {
|
|
|
|
// NOTE: this would over-count if (pre-JDK8)
|
|
|
|
// java_lang_Class::has_offset_field() is true and the String.value array is
|
|
|
|
// shared by several Strings. However, starting from JDK8, the String.value
|
|
|
|
// array is not shared anymore.
|
|
|
|
if (obj == NULL) {
|
|
|
|
return 0;
|
|
|
|
} else if (obj->klass() == SystemDictionary::String_klass()) {
|
|
|
|
return (obj->size() + java_lang_String::value(obj)->size()) * HeapWordSize;
|
|
|
|
} else {
|
|
|
|
return obj->size();
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
struct SizeFunc : StackObj {
|
|
|
|
size_t operator()(WeakHandle<vm_string_table_data>* val) {
|
|
|
|
oop s = val->peek();
|
|
|
|
if (s == NULL) {
|
|
|
|
// Dead
|
|
|
|
return 0;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
return literal_size(s);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
void StringTable::print_table_statistics(outputStream* st,
|
|
|
|
const char* table_name) {
|
|
|
|
SizeFunc sz;
|
|
|
|
_local_table->statistics_to(Thread::current(), sz, st, table_name);
|
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// Verification
|
|
|
|
class VerifyStrings : StackObj {
|
|
|
|
public:
|
|
|
|
bool operator()(WeakHandle<vm_string_table_data>* val) {
|
|
|
|
oop s = val->peek();
|
|
|
|
if (s != NULL) {
|
|
|
|
assert(java_lang_String::length(s) >= 0, "Length on string must work.");
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
return true;
|
|
|
|
};
|
|
|
|
};
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// This verification is part of Universe::verify() and needs to be quick.
|
|
|
|
void StringTable::verify() {
|
|
|
|
Thread* thr = Thread::current();
|
|
|
|
VerifyStrings vs;
|
|
|
|
if (!the_table()->_local_table->try_scan(thr, vs)) {
|
|
|
|
log_info(stringtable)("verify unavailable at this moment");
|
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// Verification and comp
|
|
|
|
class VerifyCompStrings : StackObj {
|
|
|
|
GrowableArray<oop>* _oops;
|
|
|
|
public:
|
|
|
|
size_t _errors;
|
|
|
|
VerifyCompStrings(GrowableArray<oop>* oops) : _oops(oops), _errors(0) {}
|
|
|
|
bool operator()(WeakHandle<vm_string_table_data>* val) {
|
|
|
|
oop s = val->resolve();
|
|
|
|
if (s == NULL) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
int len = _oops->length();
|
|
|
|
for (int i = 0; i < len; i++) {
|
|
|
|
bool eq = java_lang_String::equals(s, _oops->at(i));
|
|
|
|
assert(!eq, "Duplicate strings");
|
|
|
|
if (eq) {
|
|
|
|
_errors++;
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
_oops->push(s);
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t StringTable::verify_and_compare_entries() {
|
|
|
|
Thread* thr = Thread::current();
|
|
|
|
GrowableArray<oop>* oops =
|
|
|
|
new (ResourceObj::C_HEAP, mtInternal)
|
|
|
|
GrowableArray<oop>((int)the_table()->_current_size, true);
|
|
|
|
|
|
|
|
VerifyCompStrings vcs(oops);
|
|
|
|
if (!the_table()->_local_table->try_scan(thr, vcs)) {
|
|
|
|
log_info(stringtable)("verify unavailable at this moment");
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
delete oops;
|
|
|
|
return vcs._errors;
|
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
// Dumping
|
|
|
|
class PrintString : StackObj {
|
|
|
|
Thread* _thr;
|
|
|
|
outputStream* _st;
|
|
|
|
public:
|
|
|
|
PrintString(Thread* thr, outputStream* st) : _thr(thr), _st(st) {}
|
|
|
|
bool operator()(WeakHandle<vm_string_table_data>* val) {
|
|
|
|
oop s = val->peek();
|
|
|
|
if (s == NULL) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
typeArrayOop value = java_lang_String::value_no_keepalive(s);
|
|
|
|
int length = java_lang_String::length(s);
|
|
|
|
bool is_latin1 = java_lang_String::is_latin1(s);
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
if (length <= 0) {
|
|
|
|
_st->print("%d: ", length);
|
|
|
|
} else {
|
|
|
|
ResourceMark rm(_thr);
|
|
|
|
int utf8_length = length;
|
|
|
|
char* utf8_string;
|
|
|
|
|
|
|
|
if (!is_latin1) {
|
|
|
|
jchar* chars = value->char_at_addr(0);
|
|
|
|
utf8_string = UNICODE::as_utf8(chars, utf8_length);
|
|
|
|
} else {
|
|
|
|
jbyte* bytes = value->byte_at_addr(0);
|
|
|
|
utf8_string = UNICODE::as_utf8(bytes, utf8_length);
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
|
|
|
|
_st->print("%d: ", utf8_length);
|
|
|
|
HashtableTextDump::put_utf8(_st, utf8_string, utf8_length);
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
_st->cr();
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
};
|
2014-05-07 14:16:45 -05:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::dump(outputStream* st, bool verbose) {
|
|
|
|
if (!verbose) {
|
|
|
|
the_table()->print_table_statistics(st, "StringTable");
|
|
|
|
} else {
|
|
|
|
Thread* thr = Thread::current();
|
|
|
|
ResourceMark rm(thr);
|
|
|
|
st->print_cr("VERSION: 1.1");
|
|
|
|
PrintString ps(thr, st);
|
|
|
|
if (!the_table()->_local_table->try_scan(thr, ps)) {
|
|
|
|
st->print_cr("dump unavailable at this moment");
|
|
|
|
}
|
|
|
|
}
|
2014-05-07 14:16:45 -05:00
|
|
|
}
|
2014-12-17 23:34:52 -05:00
|
|
|
|
|
|
|
// Utility for dumping strings
|
|
|
|
StringtableDCmd::StringtableDCmd(outputStream* output, bool heap) :
|
|
|
|
DCmdWithParser(output, heap),
|
|
|
|
_verbose("-verbose", "Dump the content of each string in the table",
|
|
|
|
"BOOLEAN", false, "false") {
|
|
|
|
_dcmdparser.add_dcmd_option(&_verbose);
|
|
|
|
}
|
|
|
|
|
|
|
|
void StringtableDCmd::execute(DCmdSource source, TRAPS) {
|
|
|
|
VM_DumpHashtable dumper(output(), VM_DumpHashtable::DumpStrings,
|
|
|
|
_verbose.value());
|
|
|
|
VMThread::execute(&dumper);
|
|
|
|
}
|
|
|
|
|
|
|
|
int StringtableDCmd::num_arguments() {
|
|
|
|
ResourceMark rm;
|
|
|
|
StringtableDCmd* dcmd = new StringtableDCmd(NULL, false);
|
|
|
|
if (dcmd != NULL) {
|
|
|
|
DCmdMark mark(dcmd);
|
|
|
|
return dcmd->_dcmdparser.num_arguments();
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2015-06-12 17:29:14 -04:00
|
|
|
|
|
|
|
// Sharing
|
2018-06-07 14:11:56 +02:00
|
|
|
#if INCLUDE_CDS_JAVA_HEAP
|
|
|
|
oop StringTable::lookup_shared(jchar* name, int len, unsigned int hash) {
|
|
|
|
assert(hash == java_lang_String::hash_code(name, len),
|
|
|
|
"hash must be computed using java_lang_String::hash_code");
|
|
|
|
return _shared_table.lookup((const char*)name, hash, len);
|
|
|
|
}
|
|
|
|
|
2017-08-14 14:32:17 -04:00
|
|
|
oop StringTable::create_archived_string(oop s, Thread* THREAD) {
|
|
|
|
assert(DumpSharedSpaces, "this function is only used with -Xshare:dump");
|
|
|
|
|
2018-07-08 12:43:05 -04:00
|
|
|
if (MetaspaceShared::is_archive_object(s)) {
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2017-08-14 14:32:17 -04:00
|
|
|
oop new_s = NULL;
|
2018-01-08 16:21:23 +01:00
|
|
|
typeArrayOop v = java_lang_String::value_no_keepalive(s);
|
2018-06-07 14:11:56 +02:00
|
|
|
typeArrayOop new_v =
|
|
|
|
(typeArrayOop)MetaspaceShared::archive_heap_object(v, THREAD);
|
2017-08-14 14:32:17 -04:00
|
|
|
if (new_v == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
new_s = MetaspaceShared::archive_heap_object(s, THREAD);
|
|
|
|
if (new_s == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// adjust the pointer to the 'value' field in the new String oop
|
|
|
|
java_lang_String::set_value_raw(new_s, new_v);
|
|
|
|
return new_s;
|
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
struct CopyToArchive : StackObj {
|
|
|
|
CompactStringTableWriter* _writer;
|
|
|
|
CopyToArchive(CompactStringTableWriter* writer) : _writer(writer) {}
|
|
|
|
bool operator()(WeakHandle<vm_string_table_data>* val) {
|
|
|
|
oop s = val->peek();
|
|
|
|
if (s == NULL) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
unsigned int hash = java_lang_String::hash_code(s);
|
|
|
|
if (hash == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2015-06-12 17:29:14 -04:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
java_lang_String::set_hash(s, hash);
|
|
|
|
oop new_s = StringTable::create_archived_string(s, Thread::current());
|
|
|
|
if (new_s == NULL) {
|
|
|
|
return true;
|
2015-06-12 17:29:14 -04:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
|
|
|
|
val->replace(new_s);
|
|
|
|
// add to the compact table
|
|
|
|
_writer->add(hash, new_s);
|
|
|
|
return true;
|
2015-06-12 17:29:14 -04:00
|
|
|
}
|
2018-06-07 14:11:56 +02:00
|
|
|
};
|
2015-06-12 17:29:14 -04:00
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::copy_shared_string_table(CompactStringTableWriter* writer) {
|
|
|
|
assert(MetaspaceShared::is_heap_object_archiving_allowed(), "must be");
|
|
|
|
|
|
|
|
CopyToArchive copy(writer);
|
|
|
|
StringTable::the_table()->_local_table->do_scan(Thread::current(), copy);
|
2015-06-12 17:29:14 -04:00
|
|
|
}
|
|
|
|
|
2018-06-07 14:11:56 +02:00
|
|
|
void StringTable::write_to_archive() {
|
2017-08-14 14:32:17 -04:00
|
|
|
assert(MetaspaceShared::is_heap_object_archiving_allowed(), "must be");
|
|
|
|
|
2016-04-17 19:15:52 -07:00
|
|
|
_shared_table.reset();
|
2018-08-14 18:42:14 -05:00
|
|
|
int num_buckets = the_table()->_items_count / SharedSymbolTableBucketSize;
|
2017-08-14 14:32:17 -04:00
|
|
|
// calculation of num_buckets can result in zero buckets, we need at least one
|
|
|
|
CompactStringTableWriter writer(num_buckets > 1 ? num_buckets : 1,
|
|
|
|
&MetaspaceShared::stats()->string);
|
|
|
|
|
|
|
|
// Copy the interned strings into the "string space" within the java heap
|
2018-06-07 14:11:56 +02:00
|
|
|
copy_shared_string_table(&writer);
|
|
|
|
writer.dump(&_shared_table);
|
2017-08-02 18:06:38 -07:00
|
|
|
}
|
2015-06-12 17:29:14 -04:00
|
|
|
|
2017-08-02 18:06:38 -07:00
|
|
|
void StringTable::serialize(SerializeClosure* soc) {
|
2016-04-17 19:15:52 -07:00
|
|
|
_shared_table.set_type(CompactHashtable<oop, char>::_string_table);
|
|
|
|
_shared_table.serialize(soc);
|
2015-06-12 17:29:14 -04:00
|
|
|
|
2016-04-17 19:15:52 -07:00
|
|
|
if (soc->writing()) {
|
2018-06-07 14:11:56 +02:00
|
|
|
// Sanity. Make sure we don't use the shared table at dump time
|
|
|
|
_shared_table.reset();
|
2017-08-14 14:32:17 -04:00
|
|
|
} else if (!_shared_string_mapped) {
|
2016-04-17 19:15:52 -07:00
|
|
|
_shared_table.reset();
|
2015-06-12 17:29:14 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void StringTable::shared_oops_do(OopClosure* f) {
|
|
|
|
_shared_table.oops_do(f);
|
|
|
|
}
|
2017-08-14 14:32:17 -04:00
|
|
|
#endif //INCLUDE_CDS_JAVA_HEAP
|