author | jmasa |
Wed, 25 Jun 2014 20:41:16 -0700 | |
changeset 25354 | f6762819b488 |
parent 24351 | 61b33cc6d3cf |
child 34666 | 1c7168ea0034 |
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" |
|
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
13195
diff
changeset
|
29 |
#include "runtime/orderAccess.inline.hpp" |
7397 | 30 |
#include "utilities/hashtable.hpp" |
13195 | 31 |
#include "utilities/dtrace.hpp" |
7397 | 32 |
|
1 | 33 |
// Inline function definitions for hashtable.hpp. |
34 |
||
35 |
// -------------------------------------------------------------------------- |
|
36 |
||
37 |
// Initialize a table. |
|
38 |
||
13195 | 39 |
template <MEMFLAGS F> inline BasicHashtable<F>::BasicHashtable(int table_size, int entry_size) { |
1 | 40 |
// Called on startup, no locking needed |
41 |
initialize(table_size, entry_size, 0); |
|
13195 | 42 |
_buckets = NEW_C_HEAP_ARRAY2(HashtableBucket<F>, table_size, F, CURRENT_PC); |
1 | 43 |
for (int index = 0; index < _table_size; index++) { |
44 |
_buckets[index].clear(); |
|
45 |
} |
|
46 |
} |
|
47 |
||
48 |
||
13195 | 49 |
template <MEMFLAGS F> inline BasicHashtable<F>::BasicHashtable(int table_size, int entry_size, |
50 |
HashtableBucket<F>* buckets, |
|
1 | 51 |
int number_of_entries) { |
52 |
// Called on startup, no locking needed |
|
53 |
initialize(table_size, entry_size, number_of_entries); |
|
54 |
_buckets = buckets; |
|
55 |
} |
|
56 |
||
57 |
||
13195 | 58 |
template <MEMFLAGS F> inline void BasicHashtable<F>::initialize(int table_size, int entry_size, |
1 | 59 |
int number_of_entries) { |
60 |
// Called on startup, no locking needed |
|
61 |
_table_size = table_size; |
|
62 |
_entry_size = entry_size; |
|
63 |
_free_list = NULL; |
|
64 |
_first_free_entry = NULL; |
|
65 |
_end_block = NULL; |
|
66 |
_number_of_entries = number_of_entries; |
|
67 |
#ifdef ASSERT |
|
68 |
_lookup_count = 0; |
|
69 |
_lookup_length = 0; |
|
70 |
#endif |
|
71 |
} |
|
72 |
||
73 |
||
74 |
// The following method is MT-safe and may be used with caution. |
|
13195 | 75 |
template <MEMFLAGS F> inline BasicHashtableEntry<F>* BasicHashtable<F>::bucket(int i) { |
1 | 76 |
return _buckets[i].get_entry(); |
77 |
} |
|
78 |
||
79 |
||
13195 | 80 |
template <MEMFLAGS F> inline void HashtableBucket<F>::set_entry(BasicHashtableEntry<F>* l) { |
1 | 81 |
// Warning: Preserve store ordering. The SystemDictionary is read |
82 |
// without locks. The new SystemDictionaryEntry must be |
|
83 |
// complete before other threads can be allowed to see it |
|
84 |
// via a store to _buckets[index]. |
|
85 |
OrderAccess::release_store_ptr(&_entry, l); |
|
86 |
} |
|
87 |
||
88 |
||
13195 | 89 |
template <MEMFLAGS F> inline BasicHashtableEntry<F>* HashtableBucket<F>::get_entry() const { |
1 | 90 |
// Warning: Preserve load ordering. The SystemDictionary is read |
91 |
// without locks. The new SystemDictionaryEntry must be |
|
92 |
// complete before other threads can be allowed to see it |
|
93 |
// via a store to _buckets[index]. |
|
13195 | 94 |
return (BasicHashtableEntry<F>*) OrderAccess::load_ptr_acquire(&_entry); |
1 | 95 |
} |
96 |
||
97 |
||
13195 | 98 |
template <MEMFLAGS F> inline void BasicHashtable<F>::set_entry(int index, BasicHashtableEntry<F>* entry) { |
1 | 99 |
_buckets[index].set_entry(entry); |
100 |
} |
|
101 |
||
102 |
||
13195 | 103 |
template <MEMFLAGS F> inline void BasicHashtable<F>::add_entry(int index, BasicHashtableEntry<F>* entry) { |
1 | 104 |
entry->set_next(bucket(index)); |
105 |
_buckets[index].set_entry(entry); |
|
106 |
++_number_of_entries; |
|
107 |
} |
|
108 |
||
13195 | 109 |
template <MEMFLAGS F> inline void BasicHashtable<F>::free_entry(BasicHashtableEntry<F>* entry) { |
1 | 110 |
entry->set_next(_free_list); |
111 |
_free_list = entry; |
|
112 |
--_number_of_entries; |
|
113 |
} |
|
7397 | 114 |
|
115 |
#endif // SHARE_VM_UTILITIES_HASHTABLE_INLINE_HPP |