author | alanb |
Thu, 17 Mar 2016 19:04:01 +0000 | |
changeset 36508 | 5f9eee6b383b |
parent 36187 | 1d61b06a3ae1 |
child 37172 | ff4d69314a4c |
permissions | -rw-r--r-- |
24426 | 1 |
/* |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34659
diff
changeset
|
2 |
* Copyright (c) 1997, 2016, 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 |
#include "precompiled.hpp" |
|
26 |
#include "classfile/altHashing.hpp" |
|
34659
3a7071043457
8143615: compactHashtable.hpp includes .inline.hpp file
iklam
parents:
33628
diff
changeset
|
27 |
#include "classfile/compactHashtable.inline.hpp" |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
34659
diff
changeset
|
28 |
#include "classfile/javaClasses.inline.hpp" |
24426 | 29 |
#include "classfile/stringTable.hpp" |
30 |
#include "classfile/systemDictionary.hpp" |
|
30764 | 31 |
#include "gc/shared/collectedHeap.inline.hpp" |
32 |
#include "gc/shared/gcLocker.inline.hpp" |
|
24426 | 33 |
#include "memory/allocation.inline.hpp" |
34 |
#include "memory/filemap.hpp" |
|
35 |
#include "oops/oop.inline.hpp" |
|
25351
7c198a690050
8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents:
24429
diff
changeset
|
36 |
#include "runtime/atomic.inline.hpp" |
24426 | 37 |
#include "runtime/mutexLocker.hpp" |
38 |
#include "utilities/hashtable.inline.hpp" |
|
27684
e0391b2bf625
8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents:
26421
diff
changeset
|
39 |
#include "utilities/macros.hpp" |
24426 | 40 |
#if INCLUDE_ALL_GCS |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
41 |
#include "gc/g1/g1CollectedHeap.hpp" |
30764 | 42 |
#include "gc/g1/g1SATBCardTableModRefBS.hpp" |
43 |
#include "gc/g1/g1StringDedup.hpp" |
|
24426 | 44 |
#endif |
45 |
||
46 |
// the number of buckets a thread claims |
|
47 |
const int ClaimChunkSize = 32; |
|
48 |
||
49 |
#ifdef ASSERT |
|
50 |
class StableMemoryChecker : public StackObj { |
|
51 |
enum { _bufsize = wordSize*4 }; |
|
52 |
||
53 |
address _region; |
|
54 |
jint _size; |
|
55 |
u1 _save_buf[_bufsize]; |
|
56 |
||
57 |
int sample(u1* save_buf) { |
|
58 |
if (_size <= _bufsize) { |
|
59 |
memcpy(save_buf, _region, _size); |
|
60 |
return _size; |
|
61 |
} else { |
|
62 |
// copy head and tail |
|
63 |
memcpy(&save_buf[0], _region, _bufsize/2); |
|
64 |
memcpy(&save_buf[_bufsize/2], _region + _size - _bufsize/2, _bufsize/2); |
|
65 |
return (_bufsize/2)*2; |
|
66 |
} |
|
67 |
} |
|
68 |
||
69 |
public: |
|
70 |
StableMemoryChecker(const void* region, jint size) { |
|
71 |
_region = (address) region; |
|
72 |
_size = size; |
|
73 |
sample(_save_buf); |
|
74 |
} |
|
75 |
||
76 |
bool verify() { |
|
77 |
u1 check_buf[sizeof(_save_buf)]; |
|
78 |
int check_size = sample(check_buf); |
|
79 |
return (0 == memcmp(_save_buf, check_buf, check_size)); |
|
80 |
} |
|
81 |
||
82 |
void set_region(const void* region) { _region = (address) region; } |
|
83 |
}; |
|
84 |
#endif |
|
85 |
||
86 |
||
87 |
// -------------------------------------------------------------------------- |
|
88 |
StringTable* StringTable::_the_table = NULL; |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
89 |
bool StringTable::_ignore_shared_strings = false; |
24426 | 90 |
bool StringTable::_needs_rehashing = false; |
91 |
||
92 |
volatile int StringTable::_parallel_claimed_idx = 0; |
|
93 |
||
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
94 |
CompactHashtable<oop, char> StringTable::_shared_table; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
95 |
|
24426 | 96 |
// Pick hashing algorithm |
33628 | 97 |
template<typename T> |
98 |
unsigned int StringTable::hash_string(const T* s, int len) { |
|
24426 | 99 |
return use_alternate_hashcode() ? AltHashing::murmur3_32(seed(), s, len) : |
100 |
java_lang_String::hash_code(s, len); |
|
101 |
} |
|
102 |
||
33628 | 103 |
// Explicit instantiation for all supported types. |
104 |
template unsigned int StringTable::hash_string<jchar>(const jchar* s, int len); |
|
105 |
template unsigned int StringTable::hash_string<jbyte>(const jbyte* s, int len); |
|
106 |
||
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
107 |
oop StringTable::lookup_shared(jchar* name, int len) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
108 |
// java_lang_String::hash_code() was used to compute hash values in the shared table. Don't |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
109 |
// use the hash value from StringTable::hash_string() as it might use alternate hashcode. |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
110 |
return _shared_table.lookup((const char*)name, |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
111 |
java_lang_String::hash_code(name, len), len); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
112 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
113 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
114 |
oop StringTable::lookup_in_main_table(int index, jchar* name, |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
115 |
int len, unsigned int hash) { |
24426 | 116 |
int count = 0; |
117 |
for (HashtableEntry<oop, mtSymbol>* l = bucket(index); l != NULL; l = l->next()) { |
|
118 |
count++; |
|
119 |
if (l->hash() == hash) { |
|
120 |
if (java_lang_String::equals(l->literal(), name, len)) { |
|
121 |
return l->literal(); |
|
122 |
} |
|
123 |
} |
|
124 |
} |
|
125 |
// If the bucket size is too deep check if this hash code is insufficient. |
|
26421
37d88e604ad0
8056084: Refactor Hashtable to allow implementations without rehashing support
mgerdin
parents:
25492
diff
changeset
|
126 |
if (count >= rehash_count && !needs_rehashing()) { |
24426 | 127 |
_needs_rehashing = check_rehash_table(count); |
128 |
} |
|
129 |
return NULL; |
|
130 |
} |
|
131 |
||
132 |
||
133 |
oop StringTable::basic_add(int index_arg, Handle string, jchar* name, |
|
134 |
int len, unsigned int hashValue_arg, TRAPS) { |
|
135 |
||
136 |
assert(java_lang_String::equals(string(), name, len), |
|
137 |
"string must be properly initialized"); |
|
138 |
// Cannot hit a safepoint in this function because the "this" pointer can move. |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
34659
diff
changeset
|
139 |
NoSafepointVerifier nsv; |
24426 | 140 |
|
141 |
// Check if the symbol table has been rehashed, if so, need to recalculate |
|
142 |
// the hash value and index before second lookup. |
|
143 |
unsigned int hashValue; |
|
144 |
int index; |
|
145 |
if (use_alternate_hashcode()) { |
|
146 |
hashValue = hash_string(name, len); |
|
147 |
index = hash_to_index(hashValue); |
|
148 |
} else { |
|
149 |
hashValue = hashValue_arg; |
|
150 |
index = index_arg; |
|
151 |
} |
|
152 |
||
153 |
// Since look-up was done lock-free, we need to check if another |
|
154 |
// thread beat us in the race to insert the symbol. |
|
155 |
||
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
156 |
// No need to lookup the shared table from here since the caller (intern()) already did |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
157 |
oop test = lookup_in_main_table(index, name, len, hashValue); // calls lookup(u1*, int) |
24426 | 158 |
if (test != NULL) { |
159 |
// Entry already added |
|
160 |
return test; |
|
161 |
} |
|
162 |
||
163 |
HashtableEntry<oop, mtSymbol>* entry = new_entry(hashValue, string()); |
|
164 |
add_entry(index, entry); |
|
165 |
return string(); |
|
166 |
} |
|
167 |
||
168 |
||
169 |
oop StringTable::lookup(Symbol* symbol) { |
|
170 |
ResourceMark rm; |
|
171 |
int length; |
|
172 |
jchar* chars = symbol->as_unicode(length); |
|
173 |
return lookup(chars, length); |
|
174 |
} |
|
175 |
||
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
176 |
// Tell the GC that this string was looked up in the StringTable. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
177 |
static void ensure_string_alive(oop string) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
178 |
// A lookup in the StringTable could return an object that was previously |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
179 |
// considered dead. The SATB part of G1 needs to get notified about this |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
180 |
// potential resurrection, otherwise the marking might not find the object. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
181 |
#if INCLUDE_ALL_GCS |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
182 |
if (UseG1GC && string != NULL) { |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
183 |
G1SATBCardTableModRefBS::enqueue(string); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
184 |
} |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
185 |
#endif |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
186 |
} |
24426 | 187 |
|
188 |
oop StringTable::lookup(jchar* name, int len) { |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
189 |
oop string = lookup_shared(name, len); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
190 |
if (string != NULL) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
191 |
return string; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
192 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
193 |
|
24426 | 194 |
unsigned int hash = hash_string(name, len); |
195 |
int index = the_table()->hash_to_index(hash); |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
196 |
string = the_table()->lookup_in_main_table(index, name, len, hash); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
197 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
198 |
ensure_string_alive(string); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
199 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
200 |
return string; |
24426 | 201 |
} |
202 |
||
203 |
oop StringTable::intern(Handle string_or_null, jchar* name, |
|
204 |
int len, TRAPS) { |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
205 |
oop found_string = lookup_shared(name, len); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
206 |
if (found_string != NULL) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
207 |
return found_string; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
208 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
209 |
|
24426 | 210 |
unsigned int hashValue = hash_string(name, len); |
211 |
int index = the_table()->hash_to_index(hashValue); |
|
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
212 |
found_string = the_table()->lookup_in_main_table(index, name, len, hashValue); |
24426 | 213 |
|
214 |
// Found |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
215 |
if (found_string != NULL) { |
36187
1d61b06a3ae1
8149837: String.intern creates morre work than necessary for G1
drwhite
parents:
35898
diff
changeset
|
216 |
if (found_string != string_or_null()) { |
1d61b06a3ae1
8149837: String.intern creates morre work than necessary for G1
drwhite
parents:
35898
diff
changeset
|
217 |
ensure_string_alive(found_string); |
1d61b06a3ae1
8149837: String.intern creates morre work than necessary for G1
drwhite
parents:
35898
diff
changeset
|
218 |
} |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
219 |
return found_string; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
220 |
} |
24426 | 221 |
|
222 |
debug_only(StableMemoryChecker smc(name, len * sizeof(name[0]))); |
|
223 |
assert(!Universe::heap()->is_in_reserved(name), |
|
224 |
"proposed name of symbol must be stable"); |
|
225 |
||
226 |
Handle string; |
|
227 |
// try to reuse the string if possible |
|
228 |
if (!string_or_null.is_null()) { |
|
229 |
string = string_or_null; |
|
230 |
} else { |
|
231 |
string = java_lang_String::create_from_unicode(name, len, CHECK_NULL); |
|
232 |
} |
|
233 |
||
234 |
#if INCLUDE_ALL_GCS |
|
235 |
if (G1StringDedup::is_enabled()) { |
|
236 |
// Deduplicate the string before it is interned. Note that we should never |
|
237 |
// deduplicate a string after it has been interned. Doing so will counteract |
|
238 |
// compiler optimizations done on e.g. interned string literals. |
|
239 |
G1StringDedup::deduplicate(string()); |
|
240 |
} |
|
241 |
#endif |
|
242 |
||
243 |
// Grab the StringTable_lock before getting the_table() because it could |
|
244 |
// change at safepoint. |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
245 |
oop added_or_found; |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
246 |
{ |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
247 |
MutexLocker ml(StringTable_lock, THREAD); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
248 |
// Otherwise, add to symbol to table |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
249 |
added_or_found = the_table()->basic_add(index, string, name, len, |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
250 |
hashValue, CHECK_NULL); |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
251 |
} |
24426 | 252 |
|
36187
1d61b06a3ae1
8149837: String.intern creates morre work than necessary for G1
drwhite
parents:
35898
diff
changeset
|
253 |
if (added_or_found != string()) { |
1d61b06a3ae1
8149837: String.intern creates morre work than necessary for G1
drwhite
parents:
35898
diff
changeset
|
254 |
ensure_string_alive(added_or_found); |
1d61b06a3ae1
8149837: String.intern creates morre work than necessary for G1
drwhite
parents:
35898
diff
changeset
|
255 |
} |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
256 |
|
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
257 |
return added_or_found; |
24426 | 258 |
} |
259 |
||
260 |
oop StringTable::intern(Symbol* symbol, TRAPS) { |
|
261 |
if (symbol == NULL) return NULL; |
|
262 |
ResourceMark rm(THREAD); |
|
263 |
int length; |
|
264 |
jchar* chars = symbol->as_unicode(length); |
|
265 |
Handle string; |
|
266 |
oop result = intern(string, chars, length, CHECK_NULL); |
|
267 |
return result; |
|
268 |
} |
|
269 |
||
270 |
||
271 |
oop StringTable::intern(oop string, TRAPS) |
|
272 |
{ |
|
273 |
if (string == NULL) return NULL; |
|
274 |
ResourceMark rm(THREAD); |
|
275 |
int length; |
|
276 |
Handle h_string (THREAD, string); |
|
277 |
jchar* chars = java_lang_String::as_unicode_string(string, length, CHECK_NULL); |
|
278 |
oop result = intern(h_string, chars, length, CHECK_NULL); |
|
279 |
return result; |
|
280 |
} |
|
281 |
||
282 |
||
283 |
oop StringTable::intern(const char* utf8_string, TRAPS) { |
|
284 |
if (utf8_string == NULL) return NULL; |
|
285 |
ResourceMark rm(THREAD); |
|
286 |
int length = UTF8::unicode_length(utf8_string); |
|
287 |
jchar* chars = NEW_RESOURCE_ARRAY(jchar, length); |
|
288 |
UTF8::convert_to_unicode(utf8_string, chars, length); |
|
289 |
Handle string; |
|
290 |
oop result = intern(string, chars, length, CHECK_NULL); |
|
291 |
return result; |
|
292 |
} |
|
293 |
||
294 |
void StringTable::unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f, int* processed, int* removed) { |
|
295 |
buckets_unlink_or_oops_do(is_alive, f, 0, the_table()->table_size(), processed, removed); |
|
296 |
} |
|
297 |
||
298 |
void StringTable::possibly_parallel_unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f, int* processed, int* removed) { |
|
299 |
// Readers of the table are unlocked, so we should only be removing |
|
300 |
// entries at a safepoint. |
|
301 |
assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint"); |
|
302 |
const int limit = the_table()->table_size(); |
|
303 |
||
304 |
for (;;) { |
|
305 |
// Grab next set of buckets to scan |
|
306 |
int start_idx = Atomic::add(ClaimChunkSize, &_parallel_claimed_idx) - ClaimChunkSize; |
|
307 |
if (start_idx >= limit) { |
|
308 |
// End of table |
|
309 |
break; |
|
310 |
} |
|
311 |
||
312 |
int end_idx = MIN2(limit, start_idx + ClaimChunkSize); |
|
313 |
buckets_unlink_or_oops_do(is_alive, f, start_idx, end_idx, processed, removed); |
|
314 |
} |
|
315 |
} |
|
316 |
||
317 |
void StringTable::buckets_oops_do(OopClosure* f, int start_idx, int end_idx) { |
|
318 |
const int limit = the_table()->table_size(); |
|
319 |
||
320 |
assert(0 <= start_idx && start_idx <= limit, |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31345
diff
changeset
|
321 |
"start_idx (%d) is out of bounds", start_idx); |
24426 | 322 |
assert(0 <= end_idx && end_idx <= limit, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31345
diff
changeset
|
323 |
"end_idx (%d) is out of bounds", end_idx); |
24426 | 324 |
assert(start_idx <= end_idx, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31345
diff
changeset
|
325 |
"Index ordering: start_idx=%d, end_idx=%d", |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31345
diff
changeset
|
326 |
start_idx, end_idx); |
24426 | 327 |
|
328 |
for (int i = start_idx; i < end_idx; i += 1) { |
|
329 |
HashtableEntry<oop, mtSymbol>* entry = the_table()->bucket(i); |
|
330 |
while (entry != NULL) { |
|
331 |
assert(!entry->is_shared(), "CDS not used for the StringTable"); |
|
332 |
||
333 |
f->do_oop((oop*)entry->literal_addr()); |
|
334 |
||
335 |
entry = entry->next(); |
|
336 |
} |
|
337 |
} |
|
338 |
} |
|
339 |
||
340 |
void StringTable::buckets_unlink_or_oops_do(BoolObjectClosure* is_alive, OopClosure* f, int start_idx, int end_idx, int* processed, int* removed) { |
|
341 |
const int limit = the_table()->table_size(); |
|
342 |
||
343 |
assert(0 <= start_idx && start_idx <= limit, |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31345
diff
changeset
|
344 |
"start_idx (%d) is out of bounds", start_idx); |
24426 | 345 |
assert(0 <= end_idx && end_idx <= limit, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31345
diff
changeset
|
346 |
"end_idx (%d) is out of bounds", end_idx); |
24426 | 347 |
assert(start_idx <= end_idx, |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31345
diff
changeset
|
348 |
"Index ordering: start_idx=%d, end_idx=%d", |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31345
diff
changeset
|
349 |
start_idx, end_idx); |
24426 | 350 |
|
351 |
for (int i = start_idx; i < end_idx; ++i) { |
|
352 |
HashtableEntry<oop, mtSymbol>** p = the_table()->bucket_addr(i); |
|
353 |
HashtableEntry<oop, mtSymbol>* entry = the_table()->bucket(i); |
|
354 |
while (entry != NULL) { |
|
355 |
assert(!entry->is_shared(), "CDS not used for the StringTable"); |
|
356 |
||
357 |
if (is_alive->do_object_b(entry->literal())) { |
|
358 |
if (f != NULL) { |
|
359 |
f->do_oop((oop*)entry->literal_addr()); |
|
360 |
} |
|
361 |
p = entry->next_addr(); |
|
362 |
} else { |
|
363 |
*p = entry->next(); |
|
364 |
the_table()->free_entry(entry); |
|
365 |
(*removed)++; |
|
366 |
} |
|
367 |
(*processed)++; |
|
368 |
entry = *p; |
|
369 |
} |
|
370 |
} |
|
371 |
} |
|
372 |
||
373 |
void StringTable::oops_do(OopClosure* f) { |
|
374 |
buckets_oops_do(f, 0, the_table()->table_size()); |
|
375 |
} |
|
376 |
||
377 |
void StringTable::possibly_parallel_oops_do(OopClosure* f) { |
|
378 |
const int limit = the_table()->table_size(); |
|
379 |
||
380 |
for (;;) { |
|
381 |
// Grab next set of buckets to scan |
|
382 |
int start_idx = Atomic::add(ClaimChunkSize, &_parallel_claimed_idx) - ClaimChunkSize; |
|
383 |
if (start_idx >= limit) { |
|
384 |
// End of table |
|
385 |
break; |
|
386 |
} |
|
387 |
||
388 |
int end_idx = MIN2(limit, start_idx + ClaimChunkSize); |
|
389 |
buckets_oops_do(f, start_idx, end_idx); |
|
390 |
} |
|
391 |
} |
|
392 |
||
393 |
// This verification is part of Universe::verify() and needs to be quick. |
|
394 |
// See StringTable::verify_and_compare() below for exhaustive verification. |
|
395 |
void StringTable::verify() { |
|
396 |
for (int i = 0; i < the_table()->table_size(); ++i) { |
|
397 |
HashtableEntry<oop, mtSymbol>* p = the_table()->bucket(i); |
|
398 |
for ( ; p != NULL; p = p->next()) { |
|
399 |
oop s = p->literal(); |
|
400 |
guarantee(s != NULL, "interned string is NULL"); |
|
401 |
unsigned int h = java_lang_String::hash_string(s); |
|
402 |
guarantee(p->hash() == h, "broken hash in string table entry"); |
|
403 |
guarantee(the_table()->hash_to_index(h) == i, |
|
404 |
"wrong index in string table"); |
|
405 |
} |
|
406 |
} |
|
407 |
} |
|
408 |
||
28363
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
409 |
void StringTable::dump(outputStream* st, bool verbose) { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
410 |
if (!verbose) { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
411 |
the_table()->dump_table(st, "StringTable"); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
412 |
} else { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
413 |
Thread* THREAD = Thread::current(); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
414 |
st->print_cr("VERSION: 1.1"); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
415 |
for (int i = 0; i < the_table()->table_size(); ++i) { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
416 |
HashtableEntry<oop, mtSymbol>* p = the_table()->bucket(i); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
417 |
for ( ; p != NULL; p = p->next()) { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
418 |
oop s = p->literal(); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
419 |
typeArrayOop value = java_lang_String::value(s); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
420 |
int length = java_lang_String::length(s); |
33628 | 421 |
bool is_latin1 = java_lang_String::is_latin1(s); |
28363
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
422 |
|
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
423 |
if (length <= 0) { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
424 |
st->print("%d: ", length); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
425 |
} else { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
426 |
ResourceMark rm(THREAD); |
33628 | 427 |
int utf8_length; |
428 |
char* utf8_string; |
|
429 |
||
430 |
if (!is_latin1) { |
|
431 |
jchar* chars = value->char_at_addr(0); |
|
432 |
utf8_length = UNICODE::utf8_length(chars, length); |
|
433 |
utf8_string = UNICODE::as_utf8(chars, length); |
|
434 |
} else { |
|
435 |
jbyte* bytes = value->byte_at_addr(0); |
|
436 |
utf8_length = UNICODE::utf8_length(bytes, length); |
|
437 |
utf8_string = UNICODE::as_utf8(bytes, length); |
|
438 |
} |
|
28363
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
439 |
|
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
440 |
st->print("%d: ", utf8_length); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
441 |
HashtableTextDump::put_utf8(st, utf8_string, utf8_length); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
442 |
} |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
443 |
st->cr(); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
444 |
} |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
445 |
} |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
446 |
} |
24426 | 447 |
} |
448 |
||
449 |
StringTable::VerifyRetTypes StringTable::compare_entries( |
|
450 |
int bkt1, int e_cnt1, |
|
451 |
HashtableEntry<oop, mtSymbol>* e_ptr1, |
|
452 |
int bkt2, int e_cnt2, |
|
453 |
HashtableEntry<oop, mtSymbol>* e_ptr2) { |
|
454 |
// These entries are sanity checked by verify_and_compare_entries() |
|
455 |
// before this function is called. |
|
456 |
oop str1 = e_ptr1->literal(); |
|
457 |
oop str2 = e_ptr2->literal(); |
|
458 |
||
459 |
if (str1 == str2) { |
|
460 |
tty->print_cr("ERROR: identical oop values (0x" PTR_FORMAT ") " |
|
461 |
"in entry @ bucket[%d][%d] and entry @ bucket[%d][%d]", |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
462 |
p2i(str1), bkt1, e_cnt1, bkt2, e_cnt2); |
24426 | 463 |
return _verify_fail_continue; |
464 |
} |
|
465 |
||
466 |
if (java_lang_String::equals(str1, str2)) { |
|
467 |
tty->print_cr("ERROR: identical String values in entry @ " |
|
468 |
"bucket[%d][%d] and entry @ bucket[%d][%d]", |
|
469 |
bkt1, e_cnt1, bkt2, e_cnt2); |
|
470 |
return _verify_fail_continue; |
|
471 |
} |
|
472 |
||
473 |
return _verify_pass; |
|
474 |
} |
|
475 |
||
476 |
StringTable::VerifyRetTypes StringTable::verify_entry(int bkt, int e_cnt, |
|
477 |
HashtableEntry<oop, mtSymbol>* e_ptr, |
|
478 |
StringTable::VerifyMesgModes mesg_mode) { |
|
479 |
||
480 |
VerifyRetTypes ret = _verify_pass; // be optimistic |
|
481 |
||
482 |
oop str = e_ptr->literal(); |
|
483 |
if (str == NULL) { |
|
484 |
if (mesg_mode == _verify_with_mesgs) { |
|
485 |
tty->print_cr("ERROR: NULL oop value in entry @ bucket[%d][%d]", bkt, |
|
486 |
e_cnt); |
|
487 |
} |
|
488 |
// NULL oop means no more verifications are possible |
|
489 |
return _verify_fail_done; |
|
490 |
} |
|
491 |
||
492 |
if (str->klass() != SystemDictionary::String_klass()) { |
|
493 |
if (mesg_mode == _verify_with_mesgs) { |
|
494 |
tty->print_cr("ERROR: oop is not a String in entry @ bucket[%d][%d]", |
|
495 |
bkt, e_cnt); |
|
496 |
} |
|
497 |
// not a String means no more verifications are possible |
|
498 |
return _verify_fail_done; |
|
499 |
} |
|
500 |
||
501 |
unsigned int h = java_lang_String::hash_string(str); |
|
502 |
if (e_ptr->hash() != h) { |
|
503 |
if (mesg_mode == _verify_with_mesgs) { |
|
504 |
tty->print_cr("ERROR: broken hash value in entry @ bucket[%d][%d], " |
|
505 |
"bkt_hash=%d, str_hash=%d", bkt, e_cnt, e_ptr->hash(), h); |
|
506 |
} |
|
507 |
ret = _verify_fail_continue; |
|
508 |
} |
|
509 |
||
510 |
if (the_table()->hash_to_index(h) != bkt) { |
|
511 |
if (mesg_mode == _verify_with_mesgs) { |
|
512 |
tty->print_cr("ERROR: wrong index value for entry @ bucket[%d][%d], " |
|
513 |
"str_hash=%d, hash_to_index=%d", bkt, e_cnt, h, |
|
514 |
the_table()->hash_to_index(h)); |
|
515 |
} |
|
516 |
ret = _verify_fail_continue; |
|
517 |
} |
|
518 |
||
519 |
return ret; |
|
520 |
} |
|
521 |
||
522 |
// See StringTable::verify() above for the quick verification that is |
|
523 |
// part of Universe::verify(). This verification is exhaustive and |
|
524 |
// reports on every issue that is found. StringTable::verify() only |
|
525 |
// reports on the first issue that is found. |
|
526 |
// |
|
527 |
// StringTable::verify_entry() checks: |
|
528 |
// - oop value != NULL (same as verify()) |
|
529 |
// - oop value is a String |
|
530 |
// - hash(String) == hash in entry (same as verify()) |
|
531 |
// - index for hash == index of entry (same as verify()) |
|
532 |
// |
|
533 |
// StringTable::compare_entries() checks: |
|
534 |
// - oops are unique across all entries |
|
535 |
// - String values are unique across all entries |
|
536 |
// |
|
537 |
int StringTable::verify_and_compare_entries() { |
|
538 |
assert(StringTable_lock->is_locked(), "sanity check"); |
|
539 |
||
540 |
int fail_cnt = 0; |
|
541 |
||
542 |
// first, verify all the entries individually: |
|
543 |
for (int bkt = 0; bkt < the_table()->table_size(); bkt++) { |
|
544 |
HashtableEntry<oop, mtSymbol>* e_ptr = the_table()->bucket(bkt); |
|
545 |
for (int e_cnt = 0; e_ptr != NULL; e_ptr = e_ptr->next(), e_cnt++) { |
|
546 |
VerifyRetTypes ret = verify_entry(bkt, e_cnt, e_ptr, _verify_with_mesgs); |
|
547 |
if (ret != _verify_pass) { |
|
548 |
fail_cnt++; |
|
549 |
} |
|
550 |
} |
|
551 |
} |
|
552 |
||
553 |
// Optimization: if the above check did not find any failures, then |
|
554 |
// the comparison loop below does not need to call verify_entry() |
|
555 |
// before calling compare_entries(). If there were failures, then we |
|
556 |
// have to call verify_entry() to see if the entry can be passed to |
|
557 |
// compare_entries() safely. When we call verify_entry() in the loop |
|
558 |
// below, we do so quietly to void duplicate messages and we don't |
|
559 |
// increment fail_cnt because the failures have already been counted. |
|
560 |
bool need_entry_verify = (fail_cnt != 0); |
|
561 |
||
562 |
// second, verify all entries relative to each other: |
|
563 |
for (int bkt1 = 0; bkt1 < the_table()->table_size(); bkt1++) { |
|
564 |
HashtableEntry<oop, mtSymbol>* e_ptr1 = the_table()->bucket(bkt1); |
|
565 |
for (int e_cnt1 = 0; e_ptr1 != NULL; e_ptr1 = e_ptr1->next(), e_cnt1++) { |
|
566 |
if (need_entry_verify) { |
|
567 |
VerifyRetTypes ret = verify_entry(bkt1, e_cnt1, e_ptr1, |
|
568 |
_verify_quietly); |
|
569 |
if (ret == _verify_fail_done) { |
|
570 |
// cannot use the current entry to compare against other entries |
|
571 |
continue; |
|
572 |
} |
|
573 |
} |
|
574 |
||
575 |
for (int bkt2 = bkt1; bkt2 < the_table()->table_size(); bkt2++) { |
|
576 |
HashtableEntry<oop, mtSymbol>* e_ptr2 = the_table()->bucket(bkt2); |
|
577 |
int e_cnt2; |
|
578 |
for (e_cnt2 = 0; e_ptr2 != NULL; e_ptr2 = e_ptr2->next(), e_cnt2++) { |
|
579 |
if (bkt1 == bkt2 && e_cnt2 <= e_cnt1) { |
|
580 |
// skip the entries up to and including the one that |
|
581 |
// we're comparing against |
|
582 |
continue; |
|
583 |
} |
|
584 |
||
585 |
if (need_entry_verify) { |
|
586 |
VerifyRetTypes ret = verify_entry(bkt2, e_cnt2, e_ptr2, |
|
587 |
_verify_quietly); |
|
588 |
if (ret == _verify_fail_done) { |
|
589 |
// cannot compare against this entry |
|
590 |
continue; |
|
591 |
} |
|
592 |
} |
|
593 |
||
594 |
// compare two entries, report and count any failures: |
|
595 |
if (compare_entries(bkt1, e_cnt1, e_ptr1, bkt2, e_cnt2, e_ptr2) |
|
596 |
!= _verify_pass) { |
|
597 |
fail_cnt++; |
|
598 |
} |
|
599 |
} |
|
600 |
} |
|
601 |
} |
|
602 |
} |
|
603 |
return fail_cnt; |
|
604 |
} |
|
605 |
||
606 |
// Create a new table and using alternate hash code, populate the new table |
|
607 |
// with the existing strings. Set flag to use the alternate hash code afterwards. |
|
608 |
void StringTable::rehash_table() { |
|
609 |
assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint"); |
|
610 |
// This should never happen with -Xshare:dump but it might in testing mode. |
|
611 |
if (DumpSharedSpaces) return; |
|
612 |
StringTable* new_table = new StringTable(); |
|
613 |
||
614 |
// Rehash the table |
|
615 |
the_table()->move_to(new_table); |
|
616 |
||
617 |
// Delete the table and buckets (entries are reused in new table). |
|
618 |
delete _the_table; |
|
619 |
// Don't check if we need rehashing until the table gets unbalanced again. |
|
620 |
// Then rehash with a new global seed. |
|
621 |
_needs_rehashing = false; |
|
622 |
_the_table = new_table; |
|
623 |
} |
|
28363
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
624 |
|
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
625 |
// Utility for dumping strings |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
626 |
StringtableDCmd::StringtableDCmd(outputStream* output, bool heap) : |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
627 |
DCmdWithParser(output, heap), |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
628 |
_verbose("-verbose", "Dump the content of each string in the table", |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
629 |
"BOOLEAN", false, "false") { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
630 |
_dcmdparser.add_dcmd_option(&_verbose); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
631 |
} |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
632 |
|
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
633 |
void StringtableDCmd::execute(DCmdSource source, TRAPS) { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
634 |
VM_DumpHashtable dumper(output(), VM_DumpHashtable::DumpStrings, |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
635 |
_verbose.value()); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
636 |
VMThread::execute(&dumper); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
637 |
} |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
638 |
|
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
639 |
int StringtableDCmd::num_arguments() { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
640 |
ResourceMark rm; |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
641 |
StringtableDCmd* dcmd = new StringtableDCmd(NULL, false); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
642 |
if (dcmd != NULL) { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
643 |
DCmdMark mark(dcmd); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
644 |
return dcmd->_dcmdparser.num_arguments(); |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
645 |
} else { |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
646 |
return 0; |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
647 |
} |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
27684
diff
changeset
|
648 |
} |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
649 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
650 |
// Sharing |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
651 |
bool StringTable::copy_shared_string(GrowableArray<MemRegion> *string_space, |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
652 |
CompactHashtableWriter* ch_table) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
653 |
#if INCLUDE_CDS && INCLUDE_ALL_GCS && defined(_LP64) && !defined(_WINDOWS) |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
654 |
assert(UseG1GC, "Only support G1 GC"); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
655 |
assert(UseCompressedOops && UseCompressedClassPointers, |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
656 |
"Only support UseCompressedOops and UseCompressedClassPointers enabled"); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
657 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
658 |
Thread* THREAD = Thread::current(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
659 |
G1CollectedHeap::heap()->begin_archive_alloc_range(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
660 |
for (int i = 0; i < the_table()->table_size(); ++i) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
661 |
HashtableEntry<oop, mtSymbol>* bucket = the_table()->bucket(i); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
662 |
for ( ; bucket != NULL; bucket = bucket->next()) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
663 |
oop s = bucket->literal(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
664 |
unsigned int hash = java_lang_String::hash_code(s); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
665 |
if (hash == 0) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
666 |
continue; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
667 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
668 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
669 |
// allocate the new 'value' array first |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
670 |
typeArrayOop v = java_lang_String::value(s); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
671 |
int v_len = v->size(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
672 |
typeArrayOop new_v; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
673 |
if (G1CollectedHeap::heap()->is_archive_alloc_too_large(v_len)) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
674 |
continue; // skip the current String. The 'value' array is too large to handle |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
675 |
} else { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
676 |
new_v = (typeArrayOop)G1CollectedHeap::heap()->archive_mem_allocate(v_len); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
677 |
if (new_v == NULL) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
678 |
return false; // allocation failed |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
679 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
680 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
681 |
// now allocate the new String object |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
682 |
int s_len = s->size(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
683 |
oop new_s = (oop)G1CollectedHeap::heap()->archive_mem_allocate(s_len); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
684 |
if (new_s == NULL) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
685 |
return false; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
686 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
687 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
688 |
s->identity_hash(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
689 |
v->identity_hash(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
690 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
691 |
// copy the objects' data |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
692 |
Copy::aligned_disjoint_words((HeapWord*)s, (HeapWord*)new_s, s_len); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
693 |
Copy::aligned_disjoint_words((HeapWord*)v, (HeapWord*)new_v, v_len); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
694 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
695 |
// adjust the pointer to the 'value' field in the new String oop. Also pre-compute and set the |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
696 |
// 'hash' field. That avoids "write" to the shared strings at runtime by the deduplication process. |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
697 |
java_lang_String::set_value_raw(new_s, new_v); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
698 |
if (java_lang_String::hash(new_s) == 0) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
699 |
java_lang_String::set_hash(new_s, hash); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
700 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
701 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
702 |
// add to the compact table |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
703 |
ch_table->add(hash, new_s); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
704 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
705 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
706 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
707 |
G1CollectedHeap::heap()->end_archive_alloc_range(string_space, os::vm_allocation_granularity()); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
708 |
assert(string_space->length() <= 2, "sanity"); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
709 |
#endif |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
710 |
return true; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
711 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
712 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
713 |
bool StringTable::copy_compact_table(char** top, char *end, GrowableArray<MemRegion> *string_space, |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
714 |
size_t* space_size) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
715 |
#if INCLUDE_CDS && defined(_LP64) && !defined(_WINDOWS) |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
716 |
if (!(UseG1GC && UseCompressedOops && UseCompressedClassPointers)) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
717 |
if (PrintSharedSpaces) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
718 |
tty->print_cr("Shared strings are excluded from the archive as UseG1GC, " |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
719 |
"UseCompressedOops and UseCompressedClassPointers are required."); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
720 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
721 |
return true; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
722 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
723 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
724 |
CompactHashtableWriter ch_table(CompactHashtable<oop, char>::_string_table, |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
725 |
the_table()->number_of_entries(), |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
726 |
&MetaspaceShared::stats()->string); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
727 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
728 |
// Copy the interned strings into the "string space" within the java heap |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
729 |
if (!copy_shared_string(string_space, &ch_table)) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
730 |
return false; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
731 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
732 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
733 |
for (int i = 0; i < string_space->length(); i++) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
734 |
*space_size += string_space->at(i).byte_size(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
735 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
736 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
737 |
// Now dump the compact table |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
738 |
if (*top + ch_table.get_required_bytes() > end) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
739 |
// not enough space left |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
740 |
return false; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
741 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
742 |
ch_table.dump(top, end); |
35898
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35499
diff
changeset
|
743 |
*top = (char*)align_ptr_up(*top, sizeof(void*)); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
744 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
745 |
#endif |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
746 |
return true; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
747 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
748 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
749 |
void StringTable::shared_oops_do(OopClosure* f) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
750 |
#if INCLUDE_CDS && defined(_LP64) && !defined(_WINDOWS) |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
751 |
_shared_table.oops_do(f); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
752 |
#endif |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
753 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
754 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
755 |
const char* StringTable::init_shared_table(FileMapInfo *mapinfo, char *buffer) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
756 |
#if INCLUDE_CDS && defined(_LP64) && !defined(_WINDOWS) |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
757 |
if (mapinfo->space_capacity(MetaspaceShared::first_string) == 0) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
758 |
// no shared string data |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
759 |
return buffer; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
760 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
761 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
762 |
// initialize the shared table |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
763 |
juint *p = (juint*)buffer; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
764 |
const char* end = _shared_table.init( |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
765 |
CompactHashtable<oop, char>::_string_table, (char*)p); |
35898
ddc274f0052f
8145628: hotspot metadata classes shouldn't use HeapWordSize or heap related macros like align_object_size
coleenp
parents:
35499
diff
changeset
|
766 |
const char* aligned_end = (const char*)align_ptr_up(end, sizeof(void*)); |
31345
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
767 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
768 |
if (_ignore_shared_strings) { |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
769 |
_shared_table.reset(); |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
770 |
} |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
771 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
772 |
return aligned_end; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
773 |
#endif |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
774 |
|
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
775 |
return buffer; |
1bba15125d8d
8015086: add interned strings to the shared archive.
jiangli
parents:
30764
diff
changeset
|
776 |
} |