author | jlaskey |
Tue, 23 Jul 2013 12:00:29 -0300 | |
changeset 19089 | 51cfdcf21d35 |
parent 18091 | ddde9f0f414d |
child 20053 | a12bd7991794 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
2 |
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2332
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2332
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2332
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_CLASSFILE_SYMBOLTABLE_HPP |
26 |
#define SHARE_VM_CLASSFILE_SYMBOLTABLE_HPP |
|
27 |
||
28 |
#include "memory/allocation.inline.hpp" |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
29 |
#include "oops/symbol.hpp" |
7397 | 30 |
#include "utilities/hashtable.hpp" |
31 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
32 |
// The symbol table holds all Symbol*s and corresponding interned strings. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
33 |
// Symbol*s and literal strings should be canonicalized. |
1 | 34 |
// |
35 |
// The interned strings are created lazily. |
|
36 |
// |
|
37 |
// It is implemented as an open hash table with a fixed number of buckets. |
|
38 |
// |
|
39 |
// %note: |
|
40 |
// - symbolTableEntrys are allocated in blocks to reduce the space overhead. |
|
41 |
||
42 |
class BoolObjectClosure; |
|
13087 | 43 |
class outputStream; |
1 | 44 |
|
45 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
46 |
// Class to hold a newly created or referenced Symbol* temporarily in scope. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
47 |
// new_symbol() and lookup() will create a Symbol* if not already in the |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
48 |
// symbol table and add to the symbol's reference count. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
49 |
// probe() and lookup_only() will increment the refcount if symbol is found. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
50 |
class TempNewSymbol : public StackObj { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
51 |
Symbol* _temp; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
52 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
53 |
public: |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
54 |
TempNewSymbol() : _temp(NULL) {} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
55 |
// Creating or looking up a symbol increments the symbol's reference count |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
56 |
TempNewSymbol(Symbol *s) : _temp(s) {} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
57 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
58 |
// Operator= increments reference count. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
59 |
void operator=(const TempNewSymbol &s) { |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13199
diff
changeset
|
60 |
//clear(); //FIXME |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
61 |
_temp = s._temp; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
62 |
if (_temp !=NULL) _temp->increment_refcount(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
63 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
64 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
65 |
// Decrement reference counter so it can go away if it's unique |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13199
diff
changeset
|
66 |
void clear() { if (_temp != NULL) _temp->decrement_refcount(); _temp = NULL; } |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13199
diff
changeset
|
67 |
|
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13199
diff
changeset
|
68 |
~TempNewSymbol() { clear(); } |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
69 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
70 |
// Operators so they can be used like Symbols |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
71 |
Symbol* operator -> () const { return _temp; } |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
72 |
bool operator == (Symbol* o) const { return _temp == o; } |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
73 |
// Sneaky conversion function |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
74 |
operator Symbol*() { return _temp; } |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
75 |
}; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
76 |
|
13195 | 77 |
class SymbolTable : public Hashtable<Symbol*, mtSymbol> { |
1 | 78 |
friend class VMStructs; |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
79 |
friend class ClassFileParser; |
1 | 80 |
|
81 |
private: |
|
82 |
// The symbol table |
|
83 |
static SymbolTable* _the_table; |
|
84 |
||
13087 | 85 |
// Set if one bucket is out of balance due to hash algorithm deficiency |
86 |
static bool _needs_rehashing; |
|
87 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
88 |
// For statistics |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
89 |
static int symbols_removed; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
90 |
static int symbols_counted; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
91 |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
92 |
Symbol* allocate_symbol(const u1* name, int len, bool c_heap, TRAPS); // Assumes no characters larger than 0x7F |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
93 |
|
1 | 94 |
// Adding elements |
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
95 |
Symbol* basic_add(int index, u1* name, int len, unsigned int hashValue, |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
96 |
bool c_heap, TRAPS); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
97 |
bool basic_add(ClassLoaderData* loader_data, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
98 |
constantPoolHandle cp, int names_count, |
1 | 99 |
const char** names, int* lengths, int* cp_indices, |
100 |
unsigned int* hashValues, TRAPS); |
|
101 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
102 |
static void new_symbols(ClassLoaderData* loader_data, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
103 |
constantPoolHandle cp, int names_count, |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
104 |
const char** name, int* lengths, |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
105 |
int* cp_indices, unsigned int* hashValues, |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
106 |
TRAPS) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
107 |
add(loader_data, cp, names_count, name, lengths, cp_indices, hashValues, THREAD); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
108 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
109 |
|
1 | 110 |
// Table size |
111 |
enum { |
|
112 |
symbol_table_size = 20011 |
|
113 |
}; |
|
114 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
115 |
Symbol* lookup(int index, const char* name, int len, unsigned int hash); |
1 | 116 |
|
117 |
SymbolTable() |
|
13195 | 118 |
: Hashtable<Symbol*, mtSymbol>(symbol_table_size, sizeof (HashtableEntry<Symbol*, mtSymbol>)) {} |
1 | 119 |
|
13195 | 120 |
SymbolTable(HashtableBucket<mtSymbol>* t, int number_of_entries) |
121 |
: Hashtable<Symbol*, mtSymbol>(symbol_table_size, sizeof (HashtableEntry<Symbol*, mtSymbol>), t, |
|
1 | 122 |
number_of_entries) {} |
123 |
||
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
124 |
// Arena for permanent symbols (null class loader) that are never unloaded |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
125 |
static Arena* _arena; |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
126 |
static Arena* arena() { return _arena; } // called for statistics |
1 | 127 |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
128 |
static void initialize_symbols(int arena_alloc_size = 0); |
1 | 129 |
public: |
130 |
enum { |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
131 |
symbol_alloc_batch_size = 8, |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
132 |
// Pick initial size based on java -version size measurements |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
133 |
symbol_alloc_arena_size = 360*K |
1 | 134 |
}; |
135 |
||
136 |
// The symbol table |
|
137 |
static SymbolTable* the_table() { return _the_table; } |
|
138 |
||
139 |
static void create_table() { |
|
140 |
assert(_the_table == NULL, "One symbol table allowed."); |
|
141 |
_the_table = new SymbolTable(); |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
142 |
initialize_symbols(symbol_alloc_arena_size); |
1 | 143 |
} |
144 |
||
13195 | 145 |
static void create_table(HashtableBucket<mtSymbol>* t, int length, |
1 | 146 |
int number_of_entries) { |
147 |
assert(_the_table == NULL, "One symbol table allowed."); |
|
13195 | 148 |
assert(length == symbol_table_size * sizeof(HashtableBucket<mtSymbol>), |
1 | 149 |
"bad shared symbol size."); |
150 |
_the_table = new SymbolTable(t, number_of_entries); |
|
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
151 |
// if CDS give symbol table a default arena size since most symbols |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
152 |
// are already allocated in the shared misc section. |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
153 |
initialize_symbols(); |
1 | 154 |
} |
155 |
||
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
156 |
static unsigned int hash_symbol(const char* s, int len); |
13087 | 157 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
158 |
static Symbol* lookup(const char* name, int len, TRAPS); |
1 | 159 |
// lookup only, won't add. Also calculate hash. |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
160 |
static Symbol* lookup_only(const char* name, int len, unsigned int& hash); |
1 | 161 |
// Only copy to C string to be added if lookup failed. |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
162 |
static Symbol* lookup(const Symbol* sym, int begin, int end, TRAPS); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
163 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
164 |
static void release(Symbol* sym); |
1 | 165 |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
166 |
// Look up the address of the literal in the SymbolTable for this Symbol* |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
167 |
static Symbol** lookup_symbol_addr(Symbol* sym); |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
8885
diff
changeset
|
168 |
|
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
1
diff
changeset
|
169 |
// jchar (utf16) version of lookups |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
170 |
static Symbol* lookup_unicode(const jchar* name, int len, TRAPS); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
171 |
static Symbol* lookup_only_unicode(const jchar* name, int len, unsigned int& hash); |
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
1
diff
changeset
|
172 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
173 |
static void add(ClassLoaderData* loader_data, |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
174 |
constantPoolHandle cp, int names_count, |
1 | 175 |
const char** names, int* lengths, int* cp_indices, |
176 |
unsigned int* hashValues, TRAPS); |
|
177 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
178 |
// Release any dead symbols |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
179 |
static void unlink(); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
180 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
181 |
// iterate over symbols |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
182 |
static void symbols_do(SymbolClosure *cl); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
183 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
184 |
// Symbol creation |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
185 |
static Symbol* new_symbol(const char* utf8_buffer, int length, TRAPS) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
186 |
assert(utf8_buffer != NULL, "just checking"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
187 |
return lookup(utf8_buffer, length, THREAD); |
1 | 188 |
} |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
189 |
static Symbol* new_symbol(const char* name, TRAPS) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
190 |
return new_symbol(name, (int)strlen(name), THREAD); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
191 |
} |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
192 |
static Symbol* new_symbol(const Symbol* sym, int begin, int end, TRAPS) { |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
193 |
assert(begin <= end && end <= sym->utf8_length(), "just checking"); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
194 |
return lookup(sym, begin, end, THREAD); |
1 | 195 |
} |
196 |
||
12263
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
197 |
// Create a symbol in the arena for symbols that are not deleted |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
198 |
static Symbol* new_permanent_symbol(const char* name, TRAPS); |
d20640f4f8fe
7150058: Allocate symbols from null boot loader to an arena for NMT
coleenp
parents:
11480
diff
changeset
|
199 |
|
1 | 200 |
// Symbol lookup |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
201 |
static Symbol* lookup(int index, const char* name, int len, TRAPS); |
1 | 202 |
|
203 |
// Needed for preloading classes in signatures when compiling. |
|
204 |
// Returns the symbol is already present in symbol table, otherwise |
|
205 |
// NULL. NO ALLOCATION IS GUARANTEED! |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
206 |
static Symbol* probe(const char* name, int len) { |
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
1
diff
changeset
|
207 |
unsigned int ignore_hash; |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
1
diff
changeset
|
208 |
return lookup_only(name, len, ignore_hash); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
1
diff
changeset
|
209 |
} |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
210 |
static Symbol* probe_unicode(const jchar* name, int len) { |
2332
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
1
diff
changeset
|
211 |
unsigned int ignore_hash; |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
1
diff
changeset
|
212 |
return lookup_only_unicode(name, len, ignore_hash); |
5c7b6f4ce0a1
6814659: separable cleanups and subroutines for 6655638
jrose
parents:
1
diff
changeset
|
213 |
} |
1 | 214 |
|
215 |
// Histogram |
|
216 |
static void print_histogram() PRODUCT_RETURN; |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
217 |
static void print() PRODUCT_RETURN; |
1 | 218 |
|
219 |
// Debugging |
|
220 |
static void verify(); |
|
13087 | 221 |
static void dump(outputStream* st); |
1 | 222 |
|
223 |
// Sharing |
|
224 |
static void copy_buckets(char** top, char*end) { |
|
13195 | 225 |
the_table()->Hashtable<Symbol*, mtSymbol>::copy_buckets(top, end); |
1 | 226 |
} |
227 |
static void copy_table(char** top, char*end) { |
|
13195 | 228 |
the_table()->Hashtable<Symbol*, mtSymbol>::copy_table(top, end); |
1 | 229 |
} |
230 |
static void reverse(void* boundary = NULL) { |
|
13195 | 231 |
the_table()->Hashtable<Symbol*, mtSymbol>::reverse(boundary); |
1 | 232 |
} |
13087 | 233 |
|
234 |
// Rehash the symbol table if it gets out of balance |
|
235 |
static void rehash_table(); |
|
236 |
static bool needs_rehashing() { return _needs_rehashing; } |
|
1 | 237 |
}; |
238 |
||
13195 | 239 |
class StringTable : public Hashtable<oop, mtSymbol> { |
1 | 240 |
friend class VMStructs; |
241 |
||
242 |
private: |
|
243 |
// The string table |
|
244 |
static StringTable* _the_table; |
|
245 |
||
13087 | 246 |
// Set if one bucket is out of balance due to hash algorithm deficiency |
247 |
static bool _needs_rehashing; |
|
248 |
||
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
249 |
// Claimed high water mark for parallel chunked scanning |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
250 |
static volatile int _parallel_claimed_idx; |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
251 |
|
1 | 252 |
static oop intern(Handle string_or_null, jchar* chars, int length, TRAPS); |
253 |
oop basic_add(int index, Handle string_or_null, jchar* name, int len, |
|
254 |
unsigned int hashValue, TRAPS); |
|
255 |
||
256 |
oop lookup(int index, jchar* chars, int length, unsigned int hashValue); |
|
257 |
||
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
258 |
// Apply the give oop closure to the entries to the buckets |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
259 |
// in the range [start_idx, end_idx). |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
260 |
static void buckets_do(OopClosure* f, int start_idx, int end_idx); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
261 |
|
13195 | 262 |
StringTable() : Hashtable<oop, mtSymbol>((int)StringTableSize, |
263 |
sizeof (HashtableEntry<oop, mtSymbol>)) {} |
|
1 | 264 |
|
13195 | 265 |
StringTable(HashtableBucket<mtSymbol>* t, int number_of_entries) |
266 |
: Hashtable<oop, mtSymbol>((int)StringTableSize, sizeof (HashtableEntry<oop, mtSymbol>), t, |
|
8727 | 267 |
number_of_entries) {} |
1 | 268 |
public: |
269 |
// The string table |
|
270 |
static StringTable* the_table() { return _the_table; } |
|
271 |
||
14487
9a40ad461ee9
7122219: Passed StringTableSize value not verified
hseigel
parents:
13728
diff
changeset
|
272 |
// Size of one bucket in the string table. Used when checking for rollover. |
9a40ad461ee9
7122219: Passed StringTableSize value not verified
hseigel
parents:
13728
diff
changeset
|
273 |
static uint bucket_size() { return sizeof(HashtableBucket<mtSymbol>); } |
9a40ad461ee9
7122219: Passed StringTableSize value not verified
hseigel
parents:
13728
diff
changeset
|
274 |
|
1 | 275 |
static void create_table() { |
276 |
assert(_the_table == NULL, "One string table allowed."); |
|
277 |
_the_table = new StringTable(); |
|
278 |
} |
|
279 |
||
280 |
// GC support |
|
281 |
// Delete pointers to otherwise-unreachable objects. |
|
17846
68ef5934c097
8015422: Large performance hit when the StringTable is walked twice in Parallel Scavenge
stefank
parents:
16601
diff
changeset
|
282 |
static void unlink_or_oops_do(BoolObjectClosure* cl, OopClosure* f); |
68ef5934c097
8015422: Large performance hit when the StringTable is walked twice in Parallel Scavenge
stefank
parents:
16601
diff
changeset
|
283 |
static void unlink(BoolObjectClosure* cl) { |
68ef5934c097
8015422: Large performance hit when the StringTable is walked twice in Parallel Scavenge
stefank
parents:
16601
diff
changeset
|
284 |
unlink_or_oops_do(cl, NULL); |
68ef5934c097
8015422: Large performance hit when the StringTable is walked twice in Parallel Scavenge
stefank
parents:
16601
diff
changeset
|
285 |
} |
1 | 286 |
|
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
287 |
// Serially invoke "f->do_oop" on the locations of all oops in the table. |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
288 |
static void oops_do(OopClosure* f); |
1 | 289 |
|
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
290 |
// Possibly parallel version of the above |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
291 |
static void possibly_parallel_oops_do(OopClosure* f); |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
292 |
|
13087 | 293 |
// Hashing algorithm, used as the hash value used by the |
294 |
// StringTable for bucket selection and comparison (stored in the |
|
295 |
// HashtableEntry structures). This is used in the String.intern() method. |
|
13097
c146b608d91f
7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
coleenp
parents:
13087
diff
changeset
|
296 |
static unsigned int hash_string(const jchar* s, int len); |
13087 | 297 |
|
298 |
// Internal test. |
|
299 |
static void test_alt_hash() PRODUCT_RETURN; |
|
300 |
||
1 | 301 |
// Probing |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
302 |
static oop lookup(Symbol* symbol); |
16601 | 303 |
static oop lookup(jchar* chars, int length); |
1 | 304 |
|
305 |
// Interning |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
306 |
static oop intern(Symbol* symbol, TRAPS); |
1 | 307 |
static oop intern(oop string, TRAPS); |
308 |
static oop intern(const char *utf8_string, TRAPS); |
|
309 |
||
310 |
// Debugging |
|
311 |
static void verify(); |
|
13087 | 312 |
static void dump(outputStream* st); |
1 | 313 |
|
314 |
// Sharing |
|
315 |
static void copy_buckets(char** top, char*end) { |
|
13195 | 316 |
the_table()->Hashtable<oop, mtSymbol>::copy_buckets(top, end); |
1 | 317 |
} |
318 |
static void copy_table(char** top, char*end) { |
|
13195 | 319 |
the_table()->Hashtable<oop, mtSymbol>::copy_table(top, end); |
1 | 320 |
} |
321 |
static void reverse() { |
|
13195 | 322 |
the_table()->Hashtable<oop, mtSymbol>::reverse(); |
1 | 323 |
} |
13087 | 324 |
|
325 |
// Rehash the symbol table if it gets out of balance |
|
326 |
static void rehash_table(); |
|
327 |
static bool needs_rehashing() { return _needs_rehashing; } |
|
18091
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
328 |
|
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
329 |
// Parallel chunked scanning |
ddde9f0f414d
8015237: Parallelize string table scanning during strong root processing
johnc
parents:
17846
diff
changeset
|
330 |
static void clear_parallel_claimed_index() { _parallel_claimed_idx = 0; } |
1 | 331 |
}; |
7397 | 332 |
#endif // SHARE_VM_CLASSFILE_SYMBOLTABLE_HPP |