author | mikael |
Tue, 09 Oct 2012 10:09:34 -0700 | |
changeset 13963 | e5b53c306fb5 |
parent 13195 | be27e1b6a4b9 |
child 24351 | 61b33cc6d3cf |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13087 | 2 |
* Copyright (c) 2003, 2012, 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:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
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:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_UTILITIES_HASHTABLE_INLINE_HPP |
26 |
#define SHARE_VM_UTILITIES_HASHTABLE_INLINE_HPP |
|
27 |
||
28 |
#include "memory/allocation.inline.hpp" |
|
29 |
#include "utilities/hashtable.hpp" |
|
13195 | 30 |
#include "utilities/dtrace.hpp" |
7397 | 31 |
|
1 | 32 |
// Inline function definitions for hashtable.hpp. |
33 |
||
34 |
// -------------------------------------------------------------------------- |
|
35 |
||
36 |
// Initialize a table. |
|
37 |
||
13195 | 38 |
template <MEMFLAGS F> inline BasicHashtable<F>::BasicHashtable(int table_size, int entry_size) { |
1 | 39 |
// Called on startup, no locking needed |
40 |
initialize(table_size, entry_size, 0); |
|
13195 | 41 |
_buckets = NEW_C_HEAP_ARRAY2(HashtableBucket<F>, table_size, F, CURRENT_PC); |
1 | 42 |
for (int index = 0; index < _table_size; index++) { |
43 |
_buckets[index].clear(); |
|
44 |
} |
|
45 |
} |
|
46 |
||
47 |
||
13195 | 48 |
template <MEMFLAGS F> inline BasicHashtable<F>::BasicHashtable(int table_size, int entry_size, |
49 |
HashtableBucket<F>* buckets, |
|
1 | 50 |
int number_of_entries) { |
51 |
// Called on startup, no locking needed |
|
52 |
initialize(table_size, entry_size, number_of_entries); |
|
53 |
_buckets = buckets; |
|
54 |
} |
|
55 |
||
56 |
||
13195 | 57 |
template <MEMFLAGS F> inline void BasicHashtable<F>::initialize(int table_size, int entry_size, |
1 | 58 |
int number_of_entries) { |
59 |
// Called on startup, no locking needed |
|
60 |
_table_size = table_size; |
|
61 |
_entry_size = entry_size; |
|
62 |
_free_list = NULL; |
|
63 |
_first_free_entry = NULL; |
|
64 |
_end_block = NULL; |
|
65 |
_number_of_entries = number_of_entries; |
|
66 |
#ifdef ASSERT |
|
67 |
_lookup_count = 0; |
|
68 |
_lookup_length = 0; |
|
69 |
#endif |
|
70 |
} |
|
71 |
||
72 |
||
73 |
// The following method is MT-safe and may be used with caution. |
|
13195 | 74 |
template <MEMFLAGS F> inline BasicHashtableEntry<F>* BasicHashtable<F>::bucket(int i) { |
1 | 75 |
return _buckets[i].get_entry(); |
76 |
} |
|
77 |
||
78 |
||
13195 | 79 |
template <MEMFLAGS F> inline void HashtableBucket<F>::set_entry(BasicHashtableEntry<F>* l) { |
1 | 80 |
// Warning: Preserve store ordering. The SystemDictionary is read |
81 |
// without locks. The new SystemDictionaryEntry must be |
|
82 |
// complete before other threads can be allowed to see it |
|
83 |
// via a store to _buckets[index]. |
|
84 |
OrderAccess::release_store_ptr(&_entry, l); |
|
85 |
} |
|
86 |
||
87 |
||
13195 | 88 |
template <MEMFLAGS F> inline BasicHashtableEntry<F>* HashtableBucket<F>::get_entry() const { |
1 | 89 |
// Warning: Preserve load ordering. The SystemDictionary is read |
90 |
// without locks. The new SystemDictionaryEntry must be |
|
91 |
// complete before other threads can be allowed to see it |
|
92 |
// via a store to _buckets[index]. |
|
13195 | 93 |
return (BasicHashtableEntry<F>*) OrderAccess::load_ptr_acquire(&_entry); |
1 | 94 |
} |
95 |
||
96 |
||
13195 | 97 |
template <MEMFLAGS F> inline void BasicHashtable<F>::set_entry(int index, BasicHashtableEntry<F>* entry) { |
1 | 98 |
_buckets[index].set_entry(entry); |
99 |
} |
|
100 |
||
101 |
||
13195 | 102 |
template <MEMFLAGS F> inline void BasicHashtable<F>::add_entry(int index, BasicHashtableEntry<F>* entry) { |
1 | 103 |
entry->set_next(bucket(index)); |
104 |
_buckets[index].set_entry(entry); |
|
105 |
++_number_of_entries; |
|
106 |
} |
|
107 |
||
13195 | 108 |
template <MEMFLAGS F> inline void BasicHashtable<F>::free_entry(BasicHashtableEntry<F>* entry) { |
1 | 109 |
entry->set_next(_free_list); |
110 |
_free_list = entry; |
|
111 |
--_number_of_entries; |
|
112 |
} |
|
7397 | 113 |
|
114 |
#endif // SHARE_VM_UTILITIES_HASHTABLE_INLINE_HPP |