author | egahlin |
Tue, 15 May 2018 20:24:34 +0200 | |
changeset 50113 | caf115bb98ad |
parent 49621 | 5ef28d560b6f |
child 50445 | bd6b78feb6a3 |
permissions | -rw-r--r-- |
24426 | 1 |
/* |
49621 | 2 |
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. |
24426 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#ifndef SHARE_VM_CLASSFILE_STRINGTABLE_HPP |
|
26 |
#define SHARE_VM_CLASSFILE_STRINGTABLE_HPP |
|
27 |
||
28 |
#include "utilities/hashtable.hpp" |
|
29 |
||
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
28363
diff
changeset
|
30 |
template <class T, class N> class CompactHashtable; |
37995 | 31 |
class CompactStringTableWriter; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
28363
diff
changeset
|
32 |
class FileMapInfo; |
37995 | 33 |
class SerializeClosure; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
28363
diff
changeset
|
34 |
|
26421
37d88e604ad0
8056084: Refactor Hashtable to allow implementations without rehashing support
mgerdin
parents:
24426
diff
changeset
|
35 |
class StringTable : public RehashableHashtable<oop, mtSymbol> { |
24426 | 36 |
friend class VMStructs; |
37 |
friend class Symbol; |
|
38 |
||
39 |
private: |
|
40 |
// The string table |
|
41 |
static StringTable* _the_table; |
|
42 |
||
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
28363
diff
changeset
|
43 |
// Shared string table |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
28363
diff
changeset
|
44 |
static CompactHashtable<oop, char> _shared_table; |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
45 |
static bool _shared_string_mapped; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
28363
diff
changeset
|
46 |
|
24426 | 47 |
// Set if one bucket is out of balance due to hash algorithm deficiency |
48 |
static bool _needs_rehashing; |
|
49 |
||
50 |
// Claimed high water mark for parallel chunked scanning |
|
51 |
static volatile int _parallel_claimed_idx; |
|
52 |
||
53 |
static oop intern(Handle string_or_null, jchar* chars, int length, TRAPS); |
|
54 |
oop basic_add(int index, Handle string_or_null, jchar* name, int len, |
|
55 |
unsigned int hashValue, TRAPS); |
|
56 |
||
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
28363
diff
changeset
|
57 |
oop lookup_in_main_table(int index, jchar* chars, int length, unsigned int hashValue); |
44323
1566bea4793a
8176593: Throwable::getStackTrace performance regression
redestad
parents:
37995
diff
changeset
|
58 |
static oop lookup_shared(jchar* name, int len, unsigned int hash); |
24426 | 59 |
|
60 |
// Apply the give oop closure to the entries to the buckets |
|
61 |
// in the range [start_idx, end_idx). |
|
62 |
static void buckets_oops_do(OopClosure* f, int start_idx, int end_idx); |
|
45114
45644c5f6b8e
8180048: Interned string and symbol table leak memory during parallel unlinking
tschatzl
parents:
44323
diff
changeset
|
63 |
|
45644c5f6b8e
8180048: Interned string and symbol table leak memory during parallel unlinking
tschatzl
parents:
44323
diff
changeset
|
64 |
typedef StringTable::BucketUnlinkContext BucketUnlinkContext; |
24426 | 65 |
// Unlink or apply the give oop closure to the entries to the buckets |
45114
45644c5f6b8e
8180048: Interned string and symbol table leak memory during parallel unlinking
tschatzl
parents:
44323
diff
changeset
|
66 |
// in the range [start_idx, end_idx). Unlinked bucket entries are collected in the given |
45644c5f6b8e
8180048: Interned string and symbol table leak memory during parallel unlinking
tschatzl
parents:
44323
diff
changeset
|
67 |
// context to be freed later. |
45644c5f6b8e
8180048: Interned string and symbol table leak memory during parallel unlinking
tschatzl
parents:
44323
diff
changeset
|
68 |
// This allows multiple threads to work on the table at once. |
45644c5f6b8e
8180048: Interned string and symbol table leak memory during parallel unlinking
tschatzl
parents:
44323
diff
changeset
|
69 |
static void buckets_unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f, int start_idx, int end_idx, BucketUnlinkContext* context); |
24426 | 70 |
|
44323
1566bea4793a
8176593: Throwable::getStackTrace performance regression
redestad
parents:
37995
diff
changeset
|
71 |
// Hashing algorithm, used as the hash value used by the |
1566bea4793a
8176593: Throwable::getStackTrace performance regression
redestad
parents:
37995
diff
changeset
|
72 |
// StringTable for bucket selection and comparison (stored in the |
1566bea4793a
8176593: Throwable::getStackTrace performance regression
redestad
parents:
37995
diff
changeset
|
73 |
// HashtableEntry structures). This is used in the String.intern() method. |
1566bea4793a
8176593: Throwable::getStackTrace performance regression
redestad
parents:
37995
diff
changeset
|
74 |
static unsigned int hash_string(const jchar* s, int len); |
1566bea4793a
8176593: Throwable::getStackTrace performance regression
redestad
parents:
37995
diff
changeset
|
75 |
static unsigned int hash_string(oop string); |
1566bea4793a
8176593: Throwable::getStackTrace performance regression
redestad
parents:
37995
diff
changeset
|
76 |
static unsigned int alt_hash_string(const jchar* s, int len); |
1566bea4793a
8176593: Throwable::getStackTrace performance regression
redestad
parents:
37995
diff
changeset
|
77 |
|
48618
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
48157
diff
changeset
|
78 |
// Accessors for the string roots in the hashtable entries. |
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
48157
diff
changeset
|
79 |
// Use string_object_no_keepalive() only when the value is not returned |
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
48157
diff
changeset
|
80 |
// outside of a scope where a thread transition is possible. |
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
48157
diff
changeset
|
81 |
static oop string_object(HashtableEntry<oop, mtSymbol>* entry); |
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
48157
diff
changeset
|
82 |
static oop string_object_no_keepalive(HashtableEntry<oop, mtSymbol>* entry); |
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
48157
diff
changeset
|
83 |
static void set_string_object(HashtableEntry<oop, mtSymbol>* entry, oop string); |
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
48157
diff
changeset
|
84 |
|
26421
37d88e604ad0
8056084: Refactor Hashtable to allow implementations without rehashing support
mgerdin
parents:
24426
diff
changeset
|
85 |
StringTable() : RehashableHashtable<oop, mtSymbol>((int)StringTableSize, |
24426 | 86 |
sizeof (HashtableEntry<oop, mtSymbol>)) {} |
87 |
||
88 |
StringTable(HashtableBucket<mtSymbol>* t, int number_of_entries) |
|
26421
37d88e604ad0
8056084: Refactor Hashtable to allow implementations without rehashing support
mgerdin
parents:
24426
diff
changeset
|
89 |
: RehashableHashtable<oop, mtSymbol>((int)StringTableSize, sizeof (HashtableEntry<oop, mtSymbol>), t, |
24426 | 90 |
number_of_entries) {} |
91 |
public: |
|
92 |
// The string table |
|
93 |
static StringTable* the_table() { return _the_table; } |
|
94 |
||
95 |
// Size of one bucket in the string table. Used when checking for rollover. |
|
96 |
static uint bucket_size() { return sizeof(HashtableBucket<mtSymbol>); } |
|
97 |
||
98 |
static void create_table() { |
|
99 |
assert(_the_table == NULL, "One string table allowed."); |
|
100 |
_the_table = new StringTable(); |
|
101 |
} |
|
102 |
||
103 |
// GC support |
|
104 |
// Delete pointers to otherwise-unreachable objects. |
|
105 |
static void unlink_or_oops_do(BoolObjectClosure* cl, OopClosure* f) { |
|
106 |
int processed = 0; |
|
107 |
int removed = 0; |
|
108 |
unlink_or_oops_do(cl, f, &processed, &removed); |
|
109 |
} |
|
110 |
static void unlink(BoolObjectClosure* cl) { |
|
111 |
int processed = 0; |
|
112 |
int removed = 0; |
|
113 |
unlink_or_oops_do(cl, NULL, &processed, &removed); |
|
114 |
} |
|
115 |
static void unlink_or_oops_do(BoolObjectClosure* cl, OopClosure* f, int* processed, int* removed); |
|
116 |
static void unlink(BoolObjectClosure* cl, int* processed, int* removed) { |
|
117 |
unlink_or_oops_do(cl, NULL, processed, removed); |
|
118 |
} |
|
119 |
// Serially invoke "f->do_oop" on the locations of all oops in the table. |
|
120 |
static void oops_do(OopClosure* f); |
|
121 |
||
122 |
// Possibly parallel versions of the above |
|
123 |
static void possibly_parallel_unlink_or_oops_do(BoolObjectClosure* cl, OopClosure* f, int* processed, int* removed); |
|
124 |
static void possibly_parallel_unlink(BoolObjectClosure* cl, int* processed, int* removed) { |
|
125 |
possibly_parallel_unlink_or_oops_do(cl, NULL, processed, removed); |
|
126 |
} |
|
127 |
static void possibly_parallel_oops_do(OopClosure* f); |
|
128 |
||
129 |
// Internal test. |
|
130 |
static void test_alt_hash() PRODUCT_RETURN; |
|
131 |
||
132 |
// Probing |
|
133 |
static oop lookup(Symbol* symbol); |
|
134 |
static oop lookup(jchar* chars, int length); |
|
135 |
||
136 |
// Interning |
|
137 |
static oop intern(Symbol* symbol, TRAPS); |
|
138 |
static oop intern(oop string, TRAPS); |
|
139 |
static oop intern(const char *utf8_string, TRAPS); |
|
140 |
||
141 |
// Debugging |
|
142 |
static void verify(); |
|
28363
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
26421
diff
changeset
|
143 |
static void dump(outputStream* st, bool verbose=false); |
24426 | 144 |
|
145 |
enum VerifyMesgModes { |
|
146 |
_verify_quietly = 0, |
|
147 |
_verify_with_mesgs = 1 |
|
148 |
}; |
|
149 |
||
150 |
enum VerifyRetTypes { |
|
151 |
_verify_pass = 0, |
|
152 |
_verify_fail_continue = 1, |
|
153 |
_verify_fail_done = 2 |
|
154 |
}; |
|
155 |
||
156 |
static VerifyRetTypes compare_entries(int bkt1, int e_cnt1, |
|
157 |
HashtableEntry<oop, mtSymbol>* e_ptr1, |
|
158 |
int bkt2, int e_cnt2, |
|
159 |
HashtableEntry<oop, mtSymbol>* e_ptr2); |
|
160 |
static VerifyRetTypes verify_entry(int bkt, int e_cnt, |
|
161 |
HashtableEntry<oop, mtSymbol>* e_ptr, |
|
162 |
VerifyMesgModes mesg_mode); |
|
163 |
static int verify_and_compare_entries(); |
|
164 |
||
165 |
// Sharing |
|
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
166 |
static void set_shared_string_mapped() { _shared_string_mapped = true; } |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
167 |
static bool shared_string_mapped() { return _shared_string_mapped; } |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
168 |
static void shared_oops_do(OopClosure* f) NOT_CDS_JAVA_HEAP_RETURN; |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
28363
diff
changeset
|
169 |
static bool copy_shared_string(GrowableArray<MemRegion> *string_space, |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
170 |
CompactStringTableWriter* ch_table) NOT_CDS_JAVA_HEAP_RETURN_(false); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
171 |
static oop create_archived_string(oop s, Thread* THREAD) NOT_CDS_JAVA_HEAP_RETURN_(NULL); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
172 |
static void write_to_archive(GrowableArray<MemRegion> *string_space) NOT_CDS_JAVA_HEAP_RETURN; |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46746
diff
changeset
|
173 |
static void serialize(SerializeClosure* soc) NOT_CDS_JAVA_HEAP_RETURN; |
24426 | 174 |
|
175 |
// Rehash the symbol table if it gets out of balance |
|
176 |
static void rehash_table(); |
|
177 |
static bool needs_rehashing() { return _needs_rehashing; } |
|
178 |
||
179 |
// Parallel chunked scanning |
|
180 |
static void clear_parallel_claimed_index() { _parallel_claimed_idx = 0; } |
|
181 |
static int parallel_claimed_index() { return _parallel_claimed_idx; } |
|
182 |
}; |
|
183 |
#endif // SHARE_VM_CLASSFILE_STRINGTABLE_HPP |