author | mchung |
Fri, 22 May 2015 16:43:39 -0700 | |
changeset 30789 | 9eca83469588 |
parent 29743 | 981893a47bec |
child 32108 | aa5490a167ee |
permissions | -rw-r--r-- |
2 | 1 |
/* |
16867 | 2 |
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package java.util; |
|
16867 | 27 |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
28 |
import java.io.IOException; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
29 |
import java.io.InvalidObjectException; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
30 |
import java.io.Serializable; |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
31 |
import java.lang.reflect.ParameterizedType; |
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
32 |
import java.lang.reflect.Type; |
18280
6c3c0ff49eb5
8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents:
18166
diff
changeset
|
33 |
import java.util.function.BiConsumer; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
34 |
import java.util.function.BiFunction; |
16867 | 35 |
import java.util.function.Consumer; |
36 |
import java.util.function.Function; |
|
2 | 37 |
|
38 |
/** |
|
39 |
* Hash table based implementation of the <tt>Map</tt> interface. This |
|
40 |
* implementation provides all of the optional map operations, and permits |
|
41 |
* <tt>null</tt> values and the <tt>null</tt> key. (The <tt>HashMap</tt> |
|
42 |
* class is roughly equivalent to <tt>Hashtable</tt>, except that it is |
|
43 |
* unsynchronized and permits nulls.) This class makes no guarantees as to |
|
44 |
* the order of the map; in particular, it does not guarantee that the order |
|
45 |
* will remain constant over time. |
|
46 |
* |
|
47 |
* <p>This implementation provides constant-time performance for the basic |
|
48 |
* operations (<tt>get</tt> and <tt>put</tt>), assuming the hash function |
|
49 |
* disperses the elements properly among the buckets. Iteration over |
|
50 |
* collection views requires time proportional to the "capacity" of the |
|
51 |
* <tt>HashMap</tt> instance (the number of buckets) plus its size (the number |
|
52 |
* of key-value mappings). Thus, it's very important not to set the initial |
|
53 |
* capacity too high (or the load factor too low) if iteration performance is |
|
54 |
* important. |
|
55 |
* |
|
56 |
* <p>An instance of <tt>HashMap</tt> has two parameters that affect its |
|
57 |
* performance: <i>initial capacity</i> and <i>load factor</i>. The |
|
58 |
* <i>capacity</i> is the number of buckets in the hash table, and the initial |
|
59 |
* capacity is simply the capacity at the time the hash table is created. The |
|
60 |
* <i>load factor</i> is a measure of how full the hash table is allowed to |
|
61 |
* get before its capacity is automatically increased. When the number of |
|
62 |
* entries in the hash table exceeds the product of the load factor and the |
|
63 |
* current capacity, the hash table is <i>rehashed</i> (that is, internal data |
|
64 |
* structures are rebuilt) so that the hash table has approximately twice the |
|
65 |
* number of buckets. |
|
66 |
* |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
67 |
* <p>As a general rule, the default load factor (.75) offers a good |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
68 |
* tradeoff between time and space costs. Higher values decrease the |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
69 |
* space overhead but increase the lookup cost (reflected in most of |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
70 |
* the operations of the <tt>HashMap</tt> class, including |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
71 |
* <tt>get</tt> and <tt>put</tt>). The expected number of entries in |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
72 |
* the map and its load factor should be taken into account when |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
73 |
* setting its initial capacity, so as to minimize the number of |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
74 |
* rehash operations. If the initial capacity is greater than the |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
75 |
* maximum number of entries divided by the load factor, no rehash |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
76 |
* operations will ever occur. |
2 | 77 |
* |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
78 |
* <p>If many mappings are to be stored in a <tt>HashMap</tt> |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
79 |
* instance, creating it with a sufficiently large capacity will allow |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
80 |
* the mappings to be stored more efficiently than letting it perform |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
81 |
* automatic rehashing as needed to grow the table. Note that using |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
82 |
* many keys with the same {@code hashCode()} is a sure way to slow |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
83 |
* down performance of any hash table. To ameliorate impact, when keys |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
84 |
* are {@link Comparable}, this class may use comparison order among |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
85 |
* keys to help break ties. |
2 | 86 |
* |
87 |
* <p><strong>Note that this implementation is not synchronized.</strong> |
|
88 |
* If multiple threads access a hash map concurrently, and at least one of |
|
89 |
* the threads modifies the map structurally, it <i>must</i> be |
|
90 |
* synchronized externally. (A structural modification is any operation |
|
91 |
* that adds or deletes one or more mappings; merely changing the value |
|
92 |
* associated with a key that an instance already contains is not a |
|
93 |
* structural modification.) This is typically accomplished by |
|
94 |
* synchronizing on some object that naturally encapsulates the map. |
|
95 |
* |
|
96 |
* If no such object exists, the map should be "wrapped" using the |
|
97 |
* {@link Collections#synchronizedMap Collections.synchronizedMap} |
|
98 |
* method. This is best done at creation time, to prevent accidental |
|
99 |
* unsynchronized access to the map:<pre> |
|
100 |
* Map m = Collections.synchronizedMap(new HashMap(...));</pre> |
|
101 |
* |
|
102 |
* <p>The iterators returned by all of this class's "collection view methods" |
|
103 |
* are <i>fail-fast</i>: if the map is structurally modified at any time after |
|
104 |
* the iterator is created, in any way except through the iterator's own |
|
105 |
* <tt>remove</tt> method, the iterator will throw a |
|
106 |
* {@link ConcurrentModificationException}. Thus, in the face of concurrent |
|
107 |
* modification, the iterator fails quickly and cleanly, rather than risking |
|
108 |
* arbitrary, non-deterministic behavior at an undetermined time in the |
|
109 |
* future. |
|
110 |
* |
|
111 |
* <p>Note that the fail-fast behavior of an iterator cannot be guaranteed |
|
112 |
* as it is, generally speaking, impossible to make any hard guarantees in the |
|
113 |
* presence of unsynchronized concurrent modification. Fail-fast iterators |
|
114 |
* throw <tt>ConcurrentModificationException</tt> on a best-effort basis. |
|
115 |
* Therefore, it would be wrong to write a program that depended on this |
|
116 |
* exception for its correctness: <i>the fail-fast behavior of iterators |
|
117 |
* should be used only to detect bugs.</i> |
|
118 |
* |
|
119 |
* <p>This class is a member of the |
|
120 |
* <a href="{@docRoot}/../technotes/guides/collections/index.html"> |
|
121 |
* Java Collections Framework</a>. |
|
122 |
* |
|
123 |
* @param <K> the type of keys maintained by this map |
|
124 |
* @param <V> the type of mapped values |
|
125 |
* |
|
126 |
* @author Doug Lea |
|
127 |
* @author Josh Bloch |
|
128 |
* @author Arthur van Hoff |
|
129 |
* @author Neal Gafter |
|
130 |
* @see Object#hashCode() |
|
131 |
* @see Collection |
|
132 |
* @see Map |
|
133 |
* @see TreeMap |
|
134 |
* @see Hashtable |
|
135 |
* @since 1.2 |
|
136 |
*/ |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
137 |
public class HashMap<K,V> extends AbstractMap<K,V> |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
138 |
implements Map<K,V>, Cloneable, Serializable { |
2 | 139 |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
140 |
private static final long serialVersionUID = 362498820763181265L; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
141 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
142 |
/* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
143 |
* Implementation notes. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
144 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
145 |
* This map usually acts as a binned (bucketed) hash table, but |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
146 |
* when bins get too large, they are transformed into bins of |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
147 |
* TreeNodes, each structured similarly to those in |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
148 |
* java.util.TreeMap. Most methods try to use normal bins, but |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
149 |
* relay to TreeNode methods when applicable (simply by checking |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
150 |
* instanceof a node). Bins of TreeNodes may be traversed and |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
151 |
* used like any others, but additionally support faster lookup |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
152 |
* when overpopulated. However, since the vast majority of bins in |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
153 |
* normal use are not overpopulated, checking for existence of |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
154 |
* tree bins may be delayed in the course of table methods. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
155 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
156 |
* Tree bins (i.e., bins whose elements are all TreeNodes) are |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
157 |
* ordered primarily by hashCode, but in the case of ties, if two |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
158 |
* elements are of the same "class C implements Comparable<C>", |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
159 |
* type then their compareTo method is used for ordering. (We |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
160 |
* conservatively check generic types via reflection to validate |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
161 |
* this -- see method comparableClassFor). The added complexity |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
162 |
* of tree bins is worthwhile in providing worst-case O(log n) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
163 |
* operations when keys either have distinct hashes or are |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
164 |
* orderable, Thus, performance degrades gracefully under |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
165 |
* accidental or malicious usages in which hashCode() methods |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
166 |
* return values that are poorly distributed, as well as those in |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
167 |
* which many keys share a hashCode, so long as they are also |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
168 |
* Comparable. (If neither of these apply, we may waste about a |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
169 |
* factor of two in time and space compared to taking no |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
170 |
* precautions. But the only known cases stem from poor user |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
171 |
* programming practices that are already so slow that this makes |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
172 |
* little difference.) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
173 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
174 |
* Because TreeNodes are about twice the size of regular nodes, we |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
175 |
* use them only when bins contain enough nodes to warrant use |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
176 |
* (see TREEIFY_THRESHOLD). And when they become too small (due to |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
177 |
* removal or resizing) they are converted back to plain bins. In |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
178 |
* usages with well-distributed user hashCodes, tree bins are |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
179 |
* rarely used. Ideally, under random hashCodes, the frequency of |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
180 |
* nodes in bins follows a Poisson distribution |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
181 |
* (http://en.wikipedia.org/wiki/Poisson_distribution) with a |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
182 |
* parameter of about 0.5 on average for the default resizing |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
183 |
* threshold of 0.75, although with a large variance because of |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
184 |
* resizing granularity. Ignoring variance, the expected |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
185 |
* occurrences of list size k are (exp(-0.5) * pow(0.5, k) / |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
186 |
* factorial(k)). The first values are: |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
187 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
188 |
* 0: 0.60653066 |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
189 |
* 1: 0.30326533 |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
190 |
* 2: 0.07581633 |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
191 |
* 3: 0.01263606 |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
192 |
* 4: 0.00157952 |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
193 |
* 5: 0.00015795 |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
194 |
* 6: 0.00001316 |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
195 |
* 7: 0.00000094 |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
196 |
* 8: 0.00000006 |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
197 |
* more: less than 1 in ten million |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
198 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
199 |
* The root of a tree bin is normally its first node. However, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
200 |
* sometimes (currently only upon Iterator.remove), the root might |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
201 |
* be elsewhere, but can be recovered following parent links |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
202 |
* (method TreeNode.root()). |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
203 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
204 |
* All applicable internal methods accept a hash code as an |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
205 |
* argument (as normally supplied from a public method), allowing |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
206 |
* them to call each other without recomputing user hashCodes. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
207 |
* Most internal methods also accept a "tab" argument, that is |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
208 |
* normally the current table, but may be a new or old one when |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
209 |
* resizing or converting. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
210 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
211 |
* When bin lists are treeified, split, or untreeified, we keep |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
212 |
* them in the same relative access/traversal order (i.e., field |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
213 |
* Node.next) to better preserve locality, and to slightly |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
214 |
* simplify handling of splits and traversals that invoke |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
215 |
* iterator.remove. When using comparators on insertion, to keep a |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
216 |
* total ordering (or as close as is required here) across |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
217 |
* rebalancings, we compare classes and identityHashCodes as |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
218 |
* tie-breakers. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
219 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
220 |
* The use and transitions among plain vs tree modes is |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
221 |
* complicated by the existence of subclass LinkedHashMap. See |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
222 |
* below for hook methods defined to be invoked upon insertion, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
223 |
* removal and access that allow LinkedHashMap internals to |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
224 |
* otherwise remain independent of these mechanics. (This also |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
225 |
* requires that a map instance be passed to some utility methods |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
226 |
* that may create new nodes.) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
227 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
228 |
* The concurrent-programming-like SSA-based coding style helps |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
229 |
* avoid aliasing errors amid all of the twisty pointer operations. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
230 |
*/ |
2 | 231 |
|
232 |
/** |
|
233 |
* The default initial capacity - MUST be a power of two. |
|
234 |
*/ |
|
16855
106eaf391fbc
8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents:
16725
diff
changeset
|
235 |
static final int DEFAULT_INITIAL_CAPACITY = 1 << 4; // aka 16 |
2 | 236 |
|
237 |
/** |
|
238 |
* The maximum capacity, used if a higher value is implicitly specified |
|
239 |
* by either of the constructors with arguments. |
|
240 |
* MUST be a power of two <= 1<<30. |
|
241 |
*/ |
|
242 |
static final int MAXIMUM_CAPACITY = 1 << 30; |
|
243 |
||
244 |
/** |
|
245 |
* The load factor used when none specified in constructor. |
|
246 |
*/ |
|
247 |
static final float DEFAULT_LOAD_FACTOR = 0.75f; |
|
248 |
||
249 |
/** |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
250 |
* The bin count threshold for using a tree rather than list for a |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
251 |
* bin. Bins are converted to trees when adding an element to a |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
252 |
* bin with at least this many nodes. The value must be greater |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
253 |
* than 2 and should be at least 8 to mesh with assumptions in |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
254 |
* tree removal about conversion back to plain bins upon |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
255 |
* shrinkage. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
256 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
257 |
static final int TREEIFY_THRESHOLD = 8; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
258 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
259 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
260 |
* The bin count threshold for untreeifying a (split) bin during a |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
261 |
* resize operation. Should be less than TREEIFY_THRESHOLD, and at |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
262 |
* most 6 to mesh with shrinkage detection under removal. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
263 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
264 |
static final int UNTREEIFY_THRESHOLD = 6; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
265 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
266 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
267 |
* The smallest table capacity for which bins may be treeified. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
268 |
* (Otherwise the table is resized if too many nodes in a bin.) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
269 |
* Should be at least 4 * TREEIFY_THRESHOLD to avoid conflicts |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
270 |
* between resizing and treeification thresholds. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
271 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
272 |
static final int MIN_TREEIFY_CAPACITY = 64; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
273 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
274 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
275 |
* Basic hash bin node, used for most entries. (See below for |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
276 |
* TreeNode subclass, and in LinkedHashMap for its Entry subclass.) |
16855
106eaf391fbc
8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents:
16725
diff
changeset
|
277 |
*/ |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
278 |
static class Node<K,V> implements Map.Entry<K,V> { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
279 |
final int hash; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
280 |
final K key; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
281 |
V value; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
282 |
Node<K,V> next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
283 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
284 |
Node(int hash, K key, V value, Node<K,V> next) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
285 |
this.hash = hash; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
286 |
this.key = key; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
287 |
this.value = value; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
288 |
this.next = next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
289 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
290 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
291 |
public final K getKey() { return key; } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
292 |
public final V getValue() { return value; } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
293 |
public final String toString() { return key + "=" + value; } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
294 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
295 |
public final int hashCode() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
296 |
return Objects.hashCode(key) ^ Objects.hashCode(value); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
297 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
298 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
299 |
public final V setValue(V newValue) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
300 |
V oldValue = value; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
301 |
value = newValue; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
302 |
return oldValue; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
303 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
304 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
305 |
public final boolean equals(Object o) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
306 |
if (o == this) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
307 |
return true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
308 |
if (o instanceof Map.Entry) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
309 |
Map.Entry<?,?> e = (Map.Entry<?,?>)o; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
310 |
if (Objects.equals(key, e.getKey()) && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
311 |
Objects.equals(value, e.getValue())) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
312 |
return true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
313 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
314 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
315 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
316 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
317 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
318 |
/* ---------------- Static utilities -------------- */ |
16855
106eaf391fbc
8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents:
16725
diff
changeset
|
319 |
|
106eaf391fbc
8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents:
16725
diff
changeset
|
320 |
/** |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
321 |
* Computes key.hashCode() and spreads (XORs) higher bits of hash |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
322 |
* to lower. Because the table uses power-of-two masking, sets of |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
323 |
* hashes that vary only in bits above the current mask will |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
324 |
* always collide. (Among known examples are sets of Float keys |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
325 |
* holding consecutive whole numbers in small tables.) So we |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
326 |
* apply a transform that spreads the impact of higher bits |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
327 |
* downward. There is a tradeoff between speed, utility, and |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
328 |
* quality of bit-spreading. Because many common sets of hashes |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
329 |
* are already reasonably distributed (so don't benefit from |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
330 |
* spreading), and because we use trees to handle large sets of |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
331 |
* collisions in bins, we just XOR some shifted bits in the |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
332 |
* cheapest possible way to reduce systematic lossage, as well as |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
333 |
* to incorporate impact of the highest bits that would otherwise |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
334 |
* never be used in index calculations because of table bounds. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
335 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
336 |
static final int hash(Object key) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
337 |
int h; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
338 |
return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
339 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
340 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
341 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
342 |
* Returns x's Class if it is of the form "class C implements |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
343 |
* Comparable<C>", else null. |
2 | 344 |
*/ |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
345 |
static Class<?> comparableClassFor(Object x) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
346 |
if (x instanceof Comparable) { |
22078
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
347 |
Class<?> c; Type[] ts, as; ParameterizedType p; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
348 |
if ((c = x.getClass()) == String.class) // bypass checks |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
349 |
return c; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
350 |
if ((ts = c.getGenericInterfaces()) != null) { |
22078
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
351 |
for (Type t : ts) { |
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
352 |
if ((t instanceof ParameterizedType) && |
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
353 |
((p = (ParameterizedType) t).getRawType() == |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
354 |
Comparable.class) && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
355 |
(as = p.getActualTypeArguments()) != null && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
356 |
as.length == 1 && as[0] == c) // type arg is c |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
357 |
return c; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
358 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
359 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
360 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
361 |
return null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
362 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
363 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
364 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
365 |
* Returns k.compareTo(x) if x matches kc (k's screened comparable |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
366 |
* class), else 0. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
367 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
368 |
@SuppressWarnings({"rawtypes","unchecked"}) // for cast to Comparable |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
369 |
static int compareComparables(Class<?> kc, Object k, Object x) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
370 |
return (x == null || x.getClass() != kc ? 0 : |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
371 |
((Comparable)k).compareTo(x)); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
372 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
373 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
374 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
375 |
* Returns a power of two size for the given target capacity. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
376 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
377 |
static final int tableSizeFor(int cap) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
378 |
int n = cap - 1; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
379 |
n |= n >>> 1; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
380 |
n |= n >>> 2; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
381 |
n |= n >>> 4; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
382 |
n |= n >>> 8; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
383 |
n |= n >>> 16; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
384 |
return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
385 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
386 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
387 |
/* ---------------- Fields -------------- */ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
388 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
389 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
390 |
* The table, initialized on first use, and resized as |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
391 |
* necessary. When allocated, length is always a power of two. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
392 |
* (We also tolerate length zero in some operations to allow |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
393 |
* bootstrapping mechanics that are currently not needed.) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
394 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
395 |
transient Node<K,V>[] table; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
396 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
397 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
398 |
* Holds cached entrySet(). Note that AbstractMap fields are used |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
399 |
* for keySet() and values(). |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
400 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
401 |
transient Set<Map.Entry<K,V>> entrySet; |
2 | 402 |
|
403 |
/** |
|
404 |
* The number of key-value mappings contained in this map. |
|
405 |
*/ |
|
406 |
transient int size; |
|
407 |
||
408 |
/** |
|
409 |
* The number of times this HashMap has been structurally modified |
|
410 |
* Structural modifications are those that change the number of mappings in |
|
411 |
* the HashMap or otherwise modify its internal structure (e.g., |
|
412 |
* rehash). This field is used to make iterators on Collection-views of |
|
413 |
* the HashMap fail-fast. (See ConcurrentModificationException). |
|
414 |
*/ |
|
65 | 415 |
transient int modCount; |
2 | 416 |
|
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
417 |
/** |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
418 |
* The next size value at which to resize (capacity * load factor). |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
419 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
420 |
* @serial |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
421 |
*/ |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
422 |
// (The javadoc description is true upon serialization. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
423 |
// Additionally, if the table array has not been allocated, this |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
424 |
// field holds the initial array capacity, or zero signifying |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
425 |
// DEFAULT_INITIAL_CAPACITY.) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
426 |
int threshold; |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
427 |
|
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
428 |
/** |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
429 |
* The load factor for the hash table. |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
430 |
* |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
431 |
* @serial |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
432 |
*/ |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
433 |
final float loadFactor; |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
434 |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
435 |
/* ---------------- Public operations -------------- */ |
12859
c44b88bb9b5e
7126277: Alternative String hashing implementation
mduigou
parents:
12448
diff
changeset
|
436 |
|
2 | 437 |
/** |
438 |
* Constructs an empty <tt>HashMap</tt> with the specified initial |
|
439 |
* capacity and load factor. |
|
440 |
* |
|
441 |
* @param initialCapacity the initial capacity |
|
442 |
* @param loadFactor the load factor |
|
443 |
* @throws IllegalArgumentException if the initial capacity is negative |
|
444 |
* or the load factor is nonpositive |
|
445 |
*/ |
|
446 |
public HashMap(int initialCapacity, float loadFactor) { |
|
447 |
if (initialCapacity < 0) |
|
448 |
throw new IllegalArgumentException("Illegal initial capacity: " + |
|
449 |
initialCapacity); |
|
450 |
if (initialCapacity > MAXIMUM_CAPACITY) |
|
451 |
initialCapacity = MAXIMUM_CAPACITY; |
|
452 |
if (loadFactor <= 0 || Float.isNaN(loadFactor)) |
|
453 |
throw new IllegalArgumentException("Illegal load factor: " + |
|
454 |
loadFactor); |
|
455 |
this.loadFactor = loadFactor; |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
456 |
this.threshold = tableSizeFor(initialCapacity); |
2 | 457 |
} |
458 |
||
459 |
/** |
|
460 |
* Constructs an empty <tt>HashMap</tt> with the specified initial |
|
461 |
* capacity and the default load factor (0.75). |
|
462 |
* |
|
463 |
* @param initialCapacity the initial capacity. |
|
464 |
* @throws IllegalArgumentException if the initial capacity is negative. |
|
465 |
*/ |
|
466 |
public HashMap(int initialCapacity) { |
|
467 |
this(initialCapacity, DEFAULT_LOAD_FACTOR); |
|
468 |
} |
|
469 |
||
470 |
/** |
|
471 |
* Constructs an empty <tt>HashMap</tt> with the default initial capacity |
|
472 |
* (16) and the default load factor (0.75). |
|
473 |
*/ |
|
474 |
public HashMap() { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
475 |
this.loadFactor = DEFAULT_LOAD_FACTOR; // all other fields defaulted |
2 | 476 |
} |
477 |
||
478 |
/** |
|
479 |
* Constructs a new <tt>HashMap</tt> with the same mappings as the |
|
480 |
* specified <tt>Map</tt>. The <tt>HashMap</tt> is created with |
|
481 |
* default load factor (0.75) and an initial capacity sufficient to |
|
482 |
* hold the mappings in the specified <tt>Map</tt>. |
|
483 |
* |
|
484 |
* @param m the map whose mappings are to be placed in this map |
|
485 |
* @throws NullPointerException if the specified map is null |
|
486 |
*/ |
|
487 |
public HashMap(Map<? extends K, ? extends V> m) { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
488 |
this.loadFactor = DEFAULT_LOAD_FACTOR; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
489 |
putMapEntries(m, false); |
16855
106eaf391fbc
8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents:
16725
diff
changeset
|
490 |
} |
106eaf391fbc
8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents:
16725
diff
changeset
|
491 |
|
106eaf391fbc
8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents:
16725
diff
changeset
|
492 |
/** |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
493 |
* Implements Map.putAll and Map constructor |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
494 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
495 |
* @param m the map |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
496 |
* @param evict false when initially constructing this map, else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
497 |
* true (relayed to method afterNodeInsertion). |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
498 |
*/ |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
499 |
final void putMapEntries(Map<? extends K, ? extends V> m, boolean evict) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
500 |
int s = m.size(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
501 |
if (s > 0) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
502 |
if (table == null) { // pre-size |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
503 |
float ft = ((float)s / loadFactor) + 1.0F; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
504 |
int t = ((ft < (float)MAXIMUM_CAPACITY) ? |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
505 |
(int)ft : MAXIMUM_CAPACITY); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
506 |
if (t > threshold) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
507 |
threshold = tableSizeFor(t); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
508 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
509 |
else if (s > threshold) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
510 |
resize(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
511 |
for (Map.Entry<? extends K, ? extends V> e : m.entrySet()) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
512 |
K key = e.getKey(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
513 |
V value = e.getValue(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
514 |
putVal(hash(key), key, value, false, evict); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
515 |
} |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
516 |
} |
2 | 517 |
} |
518 |
||
519 |
/** |
|
520 |
* Returns the number of key-value mappings in this map. |
|
521 |
* |
|
522 |
* @return the number of key-value mappings in this map |
|
523 |
*/ |
|
524 |
public int size() { |
|
525 |
return size; |
|
526 |
} |
|
527 |
||
528 |
/** |
|
529 |
* Returns <tt>true</tt> if this map contains no key-value mappings. |
|
530 |
* |
|
531 |
* @return <tt>true</tt> if this map contains no key-value mappings |
|
532 |
*/ |
|
533 |
public boolean isEmpty() { |
|
534 |
return size == 0; |
|
535 |
} |
|
536 |
||
537 |
/** |
|
538 |
* Returns the value to which the specified key is mapped, |
|
539 |
* or {@code null} if this map contains no mapping for the key. |
|
540 |
* |
|
541 |
* <p>More formally, if this map contains a mapping from a key |
|
542 |
* {@code k} to a value {@code v} such that {@code (key==null ? k==null : |
|
543 |
* key.equals(k))}, then this method returns {@code v}; otherwise |
|
544 |
* it returns {@code null}. (There can be at most one such mapping.) |
|
545 |
* |
|
546 |
* <p>A return value of {@code null} does not <i>necessarily</i> |
|
547 |
* indicate that the map contains no mapping for the key; it's also |
|
548 |
* possible that the map explicitly maps the key to {@code null}. |
|
549 |
* The {@link #containsKey containsKey} operation may be used to |
|
550 |
* distinguish these two cases. |
|
551 |
* |
|
552 |
* @see #put(Object, Object) |
|
553 |
*/ |
|
554 |
public V get(Object key) { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
555 |
Node<K,V> e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
556 |
return (e = getNode(hash(key), key)) == null ? null : e.value; |
2 | 557 |
} |
558 |
||
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
559 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
560 |
* Implements Map.get and related methods |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
561 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
562 |
* @param hash hash for key |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
563 |
* @param key the key |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
564 |
* @return the node, or null if none |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
565 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
566 |
final Node<K,V> getNode(int hash, Object key) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
567 |
Node<K,V>[] tab; Node<K,V> first, e; int n; K k; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
568 |
if ((tab = table) != null && (n = tab.length) > 0 && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
569 |
(first = tab[(n - 1) & hash]) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
570 |
if (first.hash == hash && // always check first node |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
571 |
((k = first.key) == key || (key != null && key.equals(k)))) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
572 |
return first; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
573 |
if ((e = first.next) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
574 |
if (first instanceof TreeNode) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
575 |
return ((TreeNode<K,V>)first).getTreeNode(hash, key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
576 |
do { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
577 |
if (e.hash == hash && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
578 |
((k = e.key) == key || (key != null && key.equals(k)))) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
579 |
return e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
580 |
} while ((e = e.next) != null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
581 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
582 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
583 |
return null; |
16867 | 584 |
} |
585 |
||
2 | 586 |
/** |
587 |
* Returns <tt>true</tt> if this map contains a mapping for the |
|
588 |
* specified key. |
|
589 |
* |
|
590 |
* @param key The key whose presence in this map is to be tested |
|
591 |
* @return <tt>true</tt> if this map contains a mapping for the specified |
|
592 |
* key. |
|
593 |
*/ |
|
594 |
public boolean containsKey(Object key) { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
595 |
return getNode(hash(key), key) != null; |
2 | 596 |
} |
597 |
||
598 |
/** |
|
599 |
* Associates the specified value with the specified key in this map. |
|
600 |
* If the map previously contained a mapping for the key, the old |
|
601 |
* value is replaced. |
|
602 |
* |
|
603 |
* @param key key with which the specified value is to be associated |
|
604 |
* @param value value to be associated with the specified key |
|
605 |
* @return the previous value associated with <tt>key</tt>, or |
|
606 |
* <tt>null</tt> if there was no mapping for <tt>key</tt>. |
|
607 |
* (A <tt>null</tt> return can also indicate that the map |
|
608 |
* previously associated <tt>null</tt> with <tt>key</tt>.) |
|
609 |
*/ |
|
610 |
public V put(K key, V value) { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
611 |
return putVal(hash(key), key, value, false, true); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
612 |
} |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
613 |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
614 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
615 |
* Implements Map.put and related methods |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
616 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
617 |
* @param hash hash for key |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
618 |
* @param key the key |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
619 |
* @param value the value to put |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
620 |
* @param onlyIfAbsent if true, don't change existing value |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
621 |
* @param evict if false, the table is in creation mode. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
622 |
* @return previous value, or null if none |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
623 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
624 |
final V putVal(int hash, K key, V value, boolean onlyIfAbsent, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
625 |
boolean evict) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
626 |
Node<K,V>[] tab; Node<K,V> p; int n, i; |
20199
0a9d1d17b076
8025173: HashMap.put() replacing an existing key can trigger a resize()
bchristi
parents:
20189
diff
changeset
|
627 |
if ((tab = table) == null || (n = tab.length) == 0) |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
628 |
n = (tab = resize()).length; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
629 |
if ((p = tab[i = (n - 1) & hash]) == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
630 |
tab[i] = newNode(hash, key, value, null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
631 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
632 |
Node<K,V> e; K k; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
633 |
if (p.hash == hash && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
634 |
((k = p.key) == key || (key != null && key.equals(k)))) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
635 |
e = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
636 |
else if (p instanceof TreeNode) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
637 |
e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
638 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
639 |
for (int binCount = 0; ; ++binCount) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
640 |
if ((e = p.next) == null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
641 |
p.next = newNode(hash, key, value, null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
642 |
if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
643 |
treeifyBin(tab, hash); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
644 |
break; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
645 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
646 |
if (e.hash == hash && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
647 |
((k = e.key) == key || (key != null && key.equals(k)))) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
648 |
break; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
649 |
p = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
650 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
651 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
652 |
if (e != null) { // existing mapping for key |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
653 |
V oldValue = e.value; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
654 |
if (!onlyIfAbsent || oldValue == null) |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
655 |
e.value = value; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
656 |
afterNodeAccess(e); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
657 |
return oldValue; |
2 | 658 |
} |
659 |
} |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
660 |
++modCount; |
20199
0a9d1d17b076
8025173: HashMap.put() replacing an existing key can trigger a resize()
bchristi
parents:
20189
diff
changeset
|
661 |
if (++size > threshold) |
0a9d1d17b076
8025173: HashMap.put() replacing an existing key can trigger a resize()
bchristi
parents:
20189
diff
changeset
|
662 |
resize(); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
663 |
afterNodeInsertion(evict); |
2 | 664 |
return null; |
665 |
} |
|
666 |
||
667 |
/** |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
668 |
* Initializes or doubles table size. If null, allocates in |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
669 |
* accord with initial capacity target held in field threshold. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
670 |
* Otherwise, because we are using power-of-two expansion, the |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
671 |
* elements from each bin must either stay at same index, or move |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
672 |
* with a power of two offset in the new table. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
673 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
674 |
* @return the table |
2 | 675 |
*/ |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
676 |
final Node<K,V>[] resize() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
677 |
Node<K,V>[] oldTab = table; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
678 |
int oldCap = (oldTab == null) ? 0 : oldTab.length; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
679 |
int oldThr = threshold; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
680 |
int newCap, newThr = 0; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
681 |
if (oldCap > 0) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
682 |
if (oldCap >= MAXIMUM_CAPACITY) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
683 |
threshold = Integer.MAX_VALUE; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
684 |
return oldTab; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
685 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
686 |
else if ((newCap = oldCap << 1) < MAXIMUM_CAPACITY && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
687 |
oldCap >= DEFAULT_INITIAL_CAPACITY) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
688 |
newThr = oldThr << 1; // double threshold |
2 | 689 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
690 |
else if (oldThr > 0) // initial capacity was placed in threshold |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
691 |
newCap = oldThr; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
692 |
else { // zero initial threshold signifies using defaults |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
693 |
newCap = DEFAULT_INITIAL_CAPACITY; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
694 |
newThr = (int)(DEFAULT_LOAD_FACTOR * DEFAULT_INITIAL_CAPACITY); |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
695 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
696 |
if (newThr == 0) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
697 |
float ft = (float)newCap * loadFactor; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
698 |
newThr = (newCap < MAXIMUM_CAPACITY && ft < (float)MAXIMUM_CAPACITY ? |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
699 |
(int)ft : Integer.MAX_VALUE); |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
700 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
701 |
threshold = newThr; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
702 |
@SuppressWarnings({"rawtypes","unchecked"}) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
703 |
Node<K,V>[] newTab = (Node<K,V>[])new Node[newCap]; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
704 |
table = newTab; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
705 |
if (oldTab != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
706 |
for (int j = 0; j < oldCap; ++j) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
707 |
Node<K,V> e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
708 |
if ((e = oldTab[j]) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
709 |
oldTab[j] = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
710 |
if (e.next == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
711 |
newTab[e.hash & (newCap - 1)] = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
712 |
else if (e instanceof TreeNode) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
713 |
((TreeNode<K,V>)e).split(this, newTab, j, oldCap); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
714 |
else { // preserve order |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
715 |
Node<K,V> loHead = null, loTail = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
716 |
Node<K,V> hiHead = null, hiTail = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
717 |
Node<K,V> next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
718 |
do { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
719 |
next = e.next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
720 |
if ((e.hash & oldCap) == 0) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
721 |
if (loTail == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
722 |
loHead = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
723 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
724 |
loTail.next = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
725 |
loTail = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
726 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
727 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
728 |
if (hiTail == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
729 |
hiHead = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
730 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
731 |
hiTail.next = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
732 |
hiTail = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
733 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
734 |
} while ((e = next) != null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
735 |
if (loTail != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
736 |
loTail.next = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
737 |
newTab[j] = loHead; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
738 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
739 |
if (hiTail != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
740 |
hiTail.next = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
741 |
newTab[j + oldCap] = hiHead; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
742 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
743 |
} |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
744 |
} |
2 | 745 |
} |
746 |
} |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
747 |
return newTab; |
2 | 748 |
} |
749 |
||
750 |
/** |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
751 |
* Replaces all linked nodes in bin at index for given hash unless |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
752 |
* table is too small, in which case resizes instead. |
2 | 753 |
*/ |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
754 |
final void treeifyBin(Node<K,V>[] tab, int hash) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
755 |
int n, index; Node<K,V> e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
756 |
if (tab == null || (n = tab.length) < MIN_TREEIFY_CAPACITY) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
757 |
resize(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
758 |
else if ((e = tab[index = (n - 1) & hash]) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
759 |
TreeNode<K,V> hd = null, tl = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
760 |
do { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
761 |
TreeNode<K,V> p = replacementTreeNode(e, null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
762 |
if (tl == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
763 |
hd = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
764 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
765 |
p.prev = tl; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
766 |
tl.next = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
767 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
768 |
tl = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
769 |
} while ((e = e.next) != null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
770 |
if ((tab[index] = hd) != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
771 |
hd.treeify(tab); |
2 | 772 |
} |
773 |
} |
|
774 |
||
775 |
/** |
|
776 |
* Copies all of the mappings from the specified map to this map. |
|
777 |
* These mappings will replace any mappings that this map had for |
|
778 |
* any of the keys currently in the specified map. |
|
779 |
* |
|
780 |
* @param m mappings to be stored in this map |
|
781 |
* @throws NullPointerException if the specified map is null |
|
782 |
*/ |
|
783 |
public void putAll(Map<? extends K, ? extends V> m) { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
784 |
putMapEntries(m, true); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
785 |
} |
2 | 786 |
|
787 |
/** |
|
788 |
* Removes the mapping for the specified key from this map if present. |
|
789 |
* |
|
790 |
* @param key key whose mapping is to be removed from the map |
|
791 |
* @return the previous value associated with <tt>key</tt>, or |
|
792 |
* <tt>null</tt> if there was no mapping for <tt>key</tt>. |
|
793 |
* (A <tt>null</tt> return can also indicate that the map |
|
794 |
* previously associated <tt>null</tt> with <tt>key</tt>.) |
|
795 |
*/ |
|
796 |
public V remove(Object key) { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
797 |
Node<K,V> e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
798 |
return (e = removeNode(hash(key), key, null, false, true)) == null ? |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
799 |
null : e.value; |
18280
6c3c0ff49eb5
8016446: Improve forEach/replaceAll for Map, HashMap, Hashtable, IdentityHashMap, WeakHashMap, TreeMap, ConcurrentMap
mduigou
parents:
18166
diff
changeset
|
800 |
} |
16867 | 801 |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
802 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
803 |
* Implements Map.remove and related methods |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
804 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
805 |
* @param hash hash for key |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
806 |
* @param key the key |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
807 |
* @param value the value to match if matchValue, else ignored |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
808 |
* @param matchValue if true only remove if value is equal |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
809 |
* @param movable if false do not move other nodes while removing |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
810 |
* @return the node, or null if none |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
811 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
812 |
final Node<K,V> removeNode(int hash, Object key, Object value, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
813 |
boolean matchValue, boolean movable) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
814 |
Node<K,V>[] tab; Node<K,V> p; int n, index; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
815 |
if ((tab = table) != null && (n = tab.length) > 0 && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
816 |
(p = tab[index = (n - 1) & hash]) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
817 |
Node<K,V> node = null, e; K k; V v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
818 |
if (p.hash == hash && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
819 |
((k = p.key) == key || (key != null && key.equals(k)))) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
820 |
node = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
821 |
else if ((e = p.next) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
822 |
if (p instanceof TreeNode) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
823 |
node = ((TreeNode<K,V>)p).getTreeNode(hash, key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
824 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
825 |
do { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
826 |
if (e.hash == hash && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
827 |
((k = e.key) == key || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
828 |
(key != null && key.equals(k)))) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
829 |
node = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
830 |
break; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
831 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
832 |
p = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
833 |
} while ((e = e.next) != null); |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
834 |
} |
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
835 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
836 |
if (node != null && (!matchValue || (v = node.value) == value || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
837 |
(value != null && value.equals(v)))) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
838 |
if (node instanceof TreeNode) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
839 |
((TreeNode<K,V>)node).removeTreeNode(this, tab, movable); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
840 |
else if (node == p) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
841 |
tab[index] = node.next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
842 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
843 |
p.next = node.next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
844 |
++modCount; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
845 |
--size; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
846 |
afterNodeRemoval(node); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
847 |
return node; |
16867 | 848 |
} |
849 |
} |
|
850 |
return null; |
|
851 |
} |
|
852 |
||
2 | 853 |
/** |
854 |
* Removes all of the mappings from this map. |
|
855 |
* The map will be empty after this call returns. |
|
856 |
*/ |
|
857 |
public void clear() { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
858 |
Node<K,V>[] tab; |
2 | 859 |
modCount++; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
860 |
if ((tab = table) != null && size > 0) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
861 |
size = 0; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
862 |
for (int i = 0; i < tab.length; ++i) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
863 |
tab[i] = null; |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
864 |
} |
2 | 865 |
} |
866 |
||
867 |
/** |
|
868 |
* Returns <tt>true</tt> if this map maps one or more keys to the |
|
869 |
* specified value. |
|
870 |
* |
|
871 |
* @param value value whose presence in this map is to be tested |
|
872 |
* @return <tt>true</tt> if this map maps one or more keys to the |
|
873 |
* specified value |
|
874 |
*/ |
|
875 |
public boolean containsValue(Object value) { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
876 |
Node<K,V>[] tab; V v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
877 |
if ((tab = table) != null && size > 0) { |
22078
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
878 |
for (Node<K, V> e : tab) { |
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
879 |
for (; e != null; e = e.next) { |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
880 |
if ((v = e.value) == value || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
881 |
(value != null && value.equals(v))) |
17939
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
882 |
return true; |
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
883 |
} |
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
884 |
} |
bd750ec19d82
8005698: Handle Frequent HashMap Collisions with Balanced Trees
bchristi
parents:
17168
diff
changeset
|
885 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
886 |
return false; |
2 | 887 |
} |
888 |
||
889 |
/** |
|
890 |
* Returns a {@link Set} view of the keys contained in this map. |
|
891 |
* The set is backed by the map, so changes to the map are |
|
892 |
* reflected in the set, and vice-versa. If the map is modified |
|
893 |
* while an iteration over the set is in progress (except through |
|
894 |
* the iterator's own <tt>remove</tt> operation), the results of |
|
895 |
* the iteration are undefined. The set supports element removal, |
|
896 |
* which removes the corresponding mapping from the map, via the |
|
897 |
* <tt>Iterator.remove</tt>, <tt>Set.remove</tt>, |
|
898 |
* <tt>removeAll</tt>, <tt>retainAll</tt>, and <tt>clear</tt> |
|
899 |
* operations. It does not support the <tt>add</tt> or <tt>addAll</tt> |
|
900 |
* operations. |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
901 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
902 |
* @return a set view of the keys contained in this map |
2 | 903 |
*/ |
904 |
public Set<K> keySet() { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
905 |
Set<K> ks; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
906 |
return (ks = keySet) == null ? (keySet = new KeySet()) : ks; |
2 | 907 |
} |
908 |
||
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
909 |
final class KeySet extends AbstractSet<K> { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
910 |
public final int size() { return size; } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
911 |
public final void clear() { HashMap.this.clear(); } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
912 |
public final Iterator<K> iterator() { return new KeyIterator(); } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
913 |
public final boolean contains(Object o) { return containsKey(o); } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
914 |
public final boolean remove(Object key) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
915 |
return removeNode(hash(key), key, null, false, true) != null; |
2 | 916 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
917 |
public final Spliterator<K> spliterator() { |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
918 |
return new KeySpliterator<>(HashMap.this, 0, -1, 0, 0); |
2 | 919 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
920 |
public final void forEach(Consumer<? super K> action) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
921 |
Node<K,V>[] tab; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
922 |
if (action == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
923 |
throw new NullPointerException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
924 |
if (size > 0 && (tab = table) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
925 |
int mc = modCount; |
22078
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
926 |
for (Node<K, V> e : tab) { |
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
927 |
for (; e != null; e = e.next) |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
928 |
action.accept(e.key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
929 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
930 |
if (modCount != mc) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
931 |
throw new ConcurrentModificationException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
932 |
} |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
933 |
} |
2 | 934 |
} |
935 |
||
936 |
/** |
|
937 |
* Returns a {@link Collection} view of the values contained in this map. |
|
938 |
* The collection is backed by the map, so changes to the map are |
|
939 |
* reflected in the collection, and vice-versa. If the map is |
|
940 |
* modified while an iteration over the collection is in progress |
|
941 |
* (except through the iterator's own <tt>remove</tt> operation), |
|
942 |
* the results of the iteration are undefined. The collection |
|
943 |
* supports element removal, which removes the corresponding |
|
944 |
* mapping from the map, via the <tt>Iterator.remove</tt>, |
|
945 |
* <tt>Collection.remove</tt>, <tt>removeAll</tt>, |
|
946 |
* <tt>retainAll</tt> and <tt>clear</tt> operations. It does not |
|
947 |
* support the <tt>add</tt> or <tt>addAll</tt> operations. |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
948 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
949 |
* @return a view of the values contained in this map |
2 | 950 |
*/ |
951 |
public Collection<V> values() { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
952 |
Collection<V> vs; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
953 |
return (vs = values) == null ? (values = new Values()) : vs; |
2 | 954 |
} |
955 |
||
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
956 |
final class Values extends AbstractCollection<V> { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
957 |
public final int size() { return size; } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
958 |
public final void clear() { HashMap.this.clear(); } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
959 |
public final Iterator<V> iterator() { return new ValueIterator(); } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
960 |
public final boolean contains(Object o) { return containsValue(o); } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
961 |
public final Spliterator<V> spliterator() { |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
962 |
return new ValueSpliterator<>(HashMap.this, 0, -1, 0, 0); |
2 | 963 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
964 |
public final void forEach(Consumer<? super V> action) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
965 |
Node<K,V>[] tab; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
966 |
if (action == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
967 |
throw new NullPointerException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
968 |
if (size > 0 && (tab = table) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
969 |
int mc = modCount; |
22078
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
970 |
for (Node<K, V> e : tab) { |
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
971 |
for (; e != null; e = e.next) |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
972 |
action.accept(e.value); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
973 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
974 |
if (modCount != mc) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
975 |
throw new ConcurrentModificationException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
976 |
} |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
977 |
} |
2 | 978 |
} |
979 |
||
980 |
/** |
|
981 |
* Returns a {@link Set} view of the mappings contained in this map. |
|
982 |
* The set is backed by the map, so changes to the map are |
|
983 |
* reflected in the set, and vice-versa. If the map is modified |
|
984 |
* while an iteration over the set is in progress (except through |
|
985 |
* the iterator's own <tt>remove</tt> operation, or through the |
|
986 |
* <tt>setValue</tt> operation on a map entry returned by the |
|
987 |
* iterator) the results of the iteration are undefined. The set |
|
988 |
* supports element removal, which removes the corresponding |
|
989 |
* mapping from the map, via the <tt>Iterator.remove</tt>, |
|
990 |
* <tt>Set.remove</tt>, <tt>removeAll</tt>, <tt>retainAll</tt> and |
|
991 |
* <tt>clear</tt> operations. It does not support the |
|
992 |
* <tt>add</tt> or <tt>addAll</tt> operations. |
|
993 |
* |
|
994 |
* @return a set view of the mappings contained in this map |
|
995 |
*/ |
|
996 |
public Set<Map.Entry<K,V>> entrySet() { |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
997 |
Set<Map.Entry<K,V>> es; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
998 |
return (es = entrySet) == null ? (entrySet = new EntrySet()) : es; |
2 | 999 |
} |
1000 |
||
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1001 |
final class EntrySet extends AbstractSet<Map.Entry<K,V>> { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1002 |
public final int size() { return size; } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1003 |
public final void clear() { HashMap.this.clear(); } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1004 |
public final Iterator<Map.Entry<K,V>> iterator() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1005 |
return new EntryIterator(); |
2 | 1006 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1007 |
public final boolean contains(Object o) { |
2 | 1008 |
if (!(o instanceof Map.Entry)) |
1009 |
return false; |
|
12448 | 1010 |
Map.Entry<?,?> e = (Map.Entry<?,?>) o; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1011 |
Object key = e.getKey(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1012 |
Node<K,V> candidate = getNode(hash(key), key); |
2 | 1013 |
return candidate != null && candidate.equals(e); |
1014 |
} |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1015 |
public final boolean remove(Object o) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1016 |
if (o instanceof Map.Entry) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1017 |
Map.Entry<?,?> e = (Map.Entry<?,?>) o; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1018 |
Object key = e.getKey(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1019 |
Object value = e.getValue(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1020 |
return removeNode(hash(key), key, value, true, true) != null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1021 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1022 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1023 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1024 |
public final Spliterator<Map.Entry<K,V>> spliterator() { |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1025 |
return new EntrySpliterator<>(HashMap.this, 0, -1, 0, 0); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1026 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1027 |
public final void forEach(Consumer<? super Map.Entry<K,V>> action) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1028 |
Node<K,V>[] tab; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1029 |
if (action == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1030 |
throw new NullPointerException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1031 |
if (size > 0 && (tab = table) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1032 |
int mc = modCount; |
22078
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
1033 |
for (Node<K, V> e : tab) { |
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
1034 |
for (; e != null; e = e.next) |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1035 |
action.accept(e); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1036 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1037 |
if (modCount != mc) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1038 |
throw new ConcurrentModificationException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1039 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1040 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1041 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1042 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1043 |
// Overrides of JDK8 Map extension methods |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1044 |
|
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1045 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1046 |
public V getOrDefault(Object key, V defaultValue) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1047 |
Node<K,V> e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1048 |
return (e = getNode(hash(key), key)) == null ? defaultValue : e.value; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1049 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1050 |
|
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1051 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1052 |
public V putIfAbsent(K key, V value) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1053 |
return putVal(hash(key), key, value, true, true); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1054 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1055 |
|
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1056 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1057 |
public boolean remove(Object key, Object value) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1058 |
return removeNode(hash(key), key, value, true, true) != null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1059 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1060 |
|
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1061 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1062 |
public boolean replace(K key, V oldValue, V newValue) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1063 |
Node<K,V> e; V v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1064 |
if ((e = getNode(hash(key), key)) != null && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1065 |
((v = e.value) == oldValue || (v != null && v.equals(oldValue)))) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1066 |
e.value = newValue; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1067 |
afterNodeAccess(e); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1068 |
return true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1069 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1070 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1071 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1072 |
|
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1073 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1074 |
public V replace(K key, V value) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1075 |
Node<K,V> e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1076 |
if ((e = getNode(hash(key), key)) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1077 |
V oldValue = e.value; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1078 |
e.value = value; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1079 |
afterNodeAccess(e); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1080 |
return oldValue; |
2 | 1081 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1082 |
return null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1083 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1084 |
|
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1085 |
/** |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1086 |
* {@inheritDoc} |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1087 |
* |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1088 |
* <p>This method will, on a best-effort basis, throw a |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1089 |
* {@link ConcurrentModificationException} if it is detected that the |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1090 |
* mapping function modifies this map during computation. |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1091 |
* |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1092 |
* @throws ConcurrentModificationException if it is detected that the |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1093 |
* mapping function modified this map |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1094 |
*/ |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1095 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1096 |
public V computeIfAbsent(K key, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1097 |
Function<? super K, ? extends V> mappingFunction) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1098 |
if (mappingFunction == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1099 |
throw new NullPointerException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1100 |
int hash = hash(key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1101 |
Node<K,V>[] tab; Node<K,V> first; int n, i; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1102 |
int binCount = 0; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1103 |
TreeNode<K,V> t = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1104 |
Node<K,V> old = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1105 |
if (size > threshold || (tab = table) == null || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1106 |
(n = tab.length) == 0) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1107 |
n = (tab = resize()).length; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1108 |
if ((first = tab[i = (n - 1) & hash]) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1109 |
if (first instanceof TreeNode) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1110 |
old = (t = (TreeNode<K,V>)first).getTreeNode(hash, key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1111 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1112 |
Node<K,V> e = first; K k; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1113 |
do { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1114 |
if (e.hash == hash && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1115 |
((k = e.key) == key || (key != null && key.equals(k)))) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1116 |
old = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1117 |
break; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1118 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1119 |
++binCount; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1120 |
} while ((e = e.next) != null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1121 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1122 |
V oldValue; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1123 |
if (old != null && (oldValue = old.value) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1124 |
afterNodeAccess(old); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1125 |
return oldValue; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1126 |
} |
2 | 1127 |
} |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1128 |
int mc = modCount; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1129 |
V v = mappingFunction.apply(key); |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1130 |
if (mc != modCount) { throw new ConcurrentModificationException(); } |
22054
503bc3781dfe
8030016: HashMap.computeIfAbsent generates spurious access event
mduigou
parents:
21352
diff
changeset
|
1131 |
if (v == null) { |
503bc3781dfe
8030016: HashMap.computeIfAbsent generates spurious access event
mduigou
parents:
21352
diff
changeset
|
1132 |
return null; |
503bc3781dfe
8030016: HashMap.computeIfAbsent generates spurious access event
mduigou
parents:
21352
diff
changeset
|
1133 |
} else if (old != null) { |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1134 |
old.value = v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1135 |
afterNodeAccess(old); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1136 |
return v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1137 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1138 |
else if (t != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1139 |
t.putTreeVal(this, tab, hash, key, v); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1140 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1141 |
tab[i] = newNode(hash, key, v, first); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1142 |
if (binCount >= TREEIFY_THRESHOLD - 1) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1143 |
treeifyBin(tab, hash); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1144 |
} |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1145 |
modCount = mc + 1; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1146 |
++size; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1147 |
afterNodeInsertion(true); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1148 |
return v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1149 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1150 |
|
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1151 |
/** |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1152 |
* {@inheritDoc} |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1153 |
* |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1154 |
* <p>This method will, on a best-effort basis, throw a |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1155 |
* {@link ConcurrentModificationException} if it is detected that the |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1156 |
* remapping function modifies this map during computation. |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1157 |
* |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1158 |
* @throws ConcurrentModificationException if it is detected that the |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1159 |
* remapping function modified this map |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1160 |
*/ |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1161 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1162 |
public V computeIfPresent(K key, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1163 |
BiFunction<? super K, ? super V, ? extends V> remappingFunction) { |
20189
1e618f2a82d9
8024331: j.u.Map.computeIfPresent() default/nondefault implementations don't throw NPE if the remappingFunction is null and the key is absent
bpb
parents:
19806
diff
changeset
|
1164 |
if (remappingFunction == null) |
1e618f2a82d9
8024331: j.u.Map.computeIfPresent() default/nondefault implementations don't throw NPE if the remappingFunction is null and the key is absent
bpb
parents:
19806
diff
changeset
|
1165 |
throw new NullPointerException(); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1166 |
Node<K,V> e; V oldValue; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1167 |
int hash = hash(key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1168 |
if ((e = getNode(hash, key)) != null && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1169 |
(oldValue = e.value) != null) { |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1170 |
int mc = modCount; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1171 |
V v = remappingFunction.apply(key, oldValue); |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1172 |
if (mc != modCount) { throw new ConcurrentModificationException(); } |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1173 |
if (v != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1174 |
e.value = v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1175 |
afterNodeAccess(e); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1176 |
return v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1177 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1178 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1179 |
removeNode(hash, key, null, false, true); |
2 | 1180 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1181 |
return null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1182 |
} |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1183 |
|
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1184 |
/** |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1185 |
* {@inheritDoc} |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1186 |
* |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1187 |
* <p>This method will, on a best-effort basis, throw a |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1188 |
* {@link ConcurrentModificationException} if it is detected that the |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1189 |
* remapping function modifies this map during computation. |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1190 |
* |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1191 |
* @throws ConcurrentModificationException if it is detected that the |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1192 |
* remapping function modified this map |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1193 |
*/ |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1194 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1195 |
public V compute(K key, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1196 |
BiFunction<? super K, ? super V, ? extends V> remappingFunction) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1197 |
if (remappingFunction == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1198 |
throw new NullPointerException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1199 |
int hash = hash(key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1200 |
Node<K,V>[] tab; Node<K,V> first; int n, i; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1201 |
int binCount = 0; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1202 |
TreeNode<K,V> t = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1203 |
Node<K,V> old = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1204 |
if (size > threshold || (tab = table) == null || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1205 |
(n = tab.length) == 0) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1206 |
n = (tab = resize()).length; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1207 |
if ((first = tab[i = (n - 1) & hash]) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1208 |
if (first instanceof TreeNode) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1209 |
old = (t = (TreeNode<K,V>)first).getTreeNode(hash, key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1210 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1211 |
Node<K,V> e = first; K k; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1212 |
do { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1213 |
if (e.hash == hash && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1214 |
((k = e.key) == key || (key != null && key.equals(k)))) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1215 |
old = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1216 |
break; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1217 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1218 |
++binCount; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1219 |
} while ((e = e.next) != null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1220 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1221 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1222 |
V oldValue = (old == null) ? null : old.value; |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1223 |
int mc = modCount; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1224 |
V v = remappingFunction.apply(key, oldValue); |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1225 |
if (mc != modCount) { throw new ConcurrentModificationException(); } |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1226 |
if (old != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1227 |
if (v != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1228 |
old.value = v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1229 |
afterNodeAccess(old); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1230 |
} |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1231 |
else |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1232 |
removeNode(hash, key, null, false, true); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1233 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1234 |
else if (v != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1235 |
if (t != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1236 |
t.putTreeVal(this, tab, hash, key, v); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1237 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1238 |
tab[i] = newNode(hash, key, v, first); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1239 |
if (binCount >= TREEIFY_THRESHOLD - 1) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1240 |
treeifyBin(tab, hash); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1241 |
} |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1242 |
modCount = mc + 1; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1243 |
++size; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1244 |
afterNodeInsertion(true); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1245 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1246 |
return v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1247 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1248 |
|
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1249 |
/** |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1250 |
* {@inheritDoc} |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1251 |
* |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1252 |
* <p>This method will, on a best-effort basis, throw a |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1253 |
* {@link ConcurrentModificationException} if it is detected that the |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1254 |
* remapping function modifies this map during computation. |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1255 |
* |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1256 |
* @throws ConcurrentModificationException if it is detected that the |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1257 |
* remapping function modified this map |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1258 |
*/ |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1259 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1260 |
public V merge(K key, V value, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1261 |
BiFunction<? super V, ? super V, ? extends V> remappingFunction) { |
22055
d9836bf9992a
8029055: Map.merge implementations should refuse null value param
mduigou
parents:
22054
diff
changeset
|
1262 |
if (value == null) |
d9836bf9992a
8029055: Map.merge implementations should refuse null value param
mduigou
parents:
22054
diff
changeset
|
1263 |
throw new NullPointerException(); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1264 |
if (remappingFunction == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1265 |
throw new NullPointerException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1266 |
int hash = hash(key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1267 |
Node<K,V>[] tab; Node<K,V> first; int n, i; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1268 |
int binCount = 0; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1269 |
TreeNode<K,V> t = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1270 |
Node<K,V> old = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1271 |
if (size > threshold || (tab = table) == null || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1272 |
(n = tab.length) == 0) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1273 |
n = (tab = resize()).length; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1274 |
if ((first = tab[i = (n - 1) & hash]) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1275 |
if (first instanceof TreeNode) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1276 |
old = (t = (TreeNode<K,V>)first).getTreeNode(hash, key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1277 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1278 |
Node<K,V> e = first; K k; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1279 |
do { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1280 |
if (e.hash == hash && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1281 |
((k = e.key) == key || (key != null && key.equals(k)))) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1282 |
old = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1283 |
break; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1284 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1285 |
++binCount; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1286 |
} while ((e = e.next) != null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1287 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1288 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1289 |
if (old != null) { |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1290 |
V v; |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1291 |
if (old.value != null) { |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1292 |
int mc = modCount; |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1293 |
v = remappingFunction.apply(old.value, value); |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1294 |
if (mc != modCount) { |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1295 |
throw new ConcurrentModificationException(); |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1296 |
} |
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1297 |
} else { |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1298 |
v = value; |
29743
981893a47bec
8071667: HashMap.computeIfAbsent() adds entry that HashMap.get() does not find.
bchristi
parents:
25859
diff
changeset
|
1299 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1300 |
if (v != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1301 |
old.value = v; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1302 |
afterNodeAccess(old); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1303 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1304 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1305 |
removeNode(hash, key, null, false, true); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1306 |
return v; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1307 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1308 |
if (value != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1309 |
if (t != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1310 |
t.putTreeVal(this, tab, hash, key, value); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1311 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1312 |
tab[i] = newNode(hash, key, value, first); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1313 |
if (binCount >= TREEIFY_THRESHOLD - 1) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1314 |
treeifyBin(tab, hash); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1315 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1316 |
++modCount; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1317 |
++size; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1318 |
afterNodeInsertion(true); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1319 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1320 |
return value; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1321 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1322 |
|
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1323 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1324 |
public void forEach(BiConsumer<? super K, ? super V> action) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1325 |
Node<K,V>[] tab; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1326 |
if (action == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1327 |
throw new NullPointerException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1328 |
if (size > 0 && (tab = table) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1329 |
int mc = modCount; |
22078
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
1330 |
for (Node<K, V> e : tab) { |
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
1331 |
for (; e != null; e = e.next) |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1332 |
action.accept(e.key, e.value); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1333 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1334 |
if (modCount != mc) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1335 |
throw new ConcurrentModificationException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1336 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1337 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1338 |
|
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1339 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1340 |
public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1341 |
Node<K,V>[] tab; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1342 |
if (function == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1343 |
throw new NullPointerException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1344 |
if (size > 0 && (tab = table) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1345 |
int mc = modCount; |
22078
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
1346 |
for (Node<K, V> e : tab) { |
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
1347 |
for (; e != null; e = e.next) { |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1348 |
e.value = function.apply(e.key, e.value); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1349 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1350 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1351 |
if (modCount != mc) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1352 |
throw new ConcurrentModificationException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1353 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1354 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1355 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1356 |
/* ------------------------------------------------------------ */ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1357 |
// Cloning and serialization |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1358 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1359 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1360 |
* Returns a shallow copy of this <tt>HashMap</tt> instance: the keys and |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1361 |
* values themselves are not cloned. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1362 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1363 |
* @return a shallow copy of this map |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1364 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1365 |
@SuppressWarnings("unchecked") |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1366 |
@Override |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1367 |
public Object clone() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1368 |
HashMap<K,V> result; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1369 |
try { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1370 |
result = (HashMap<K,V>)super.clone(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1371 |
} catch (CloneNotSupportedException e) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1372 |
// this shouldn't happen, since we are Cloneable |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1373 |
throw new InternalError(e); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1374 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1375 |
result.reinitialize(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1376 |
result.putMapEntries(this, false); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1377 |
return result; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1378 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1379 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1380 |
// These methods are also used when serializing HashSets |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1381 |
final float loadFactor() { return loadFactor; } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1382 |
final int capacity() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1383 |
return (table != null) ? table.length : |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1384 |
(threshold > 0) ? threshold : |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1385 |
DEFAULT_INITIAL_CAPACITY; |
2 | 1386 |
} |
1387 |
||
1388 |
/** |
|
1389 |
* Save the state of the <tt>HashMap</tt> instance to a stream (i.e., |
|
1390 |
* serialize it). |
|
1391 |
* |
|
1392 |
* @serialData The <i>capacity</i> of the HashMap (the length of the |
|
16725
9e7cfcc4ff6a
8011199: Backout changeset JDK-7143928 (2b34a1eb3153)
mduigou
parents:
16723
diff
changeset
|
1393 |
* bucket array) is emitted (int), followed by the |
2 | 1394 |
* <i>size</i> (an int, the number of key-value |
1395 |
* mappings), followed by the key (Object) and value (Object) |
|
1396 |
* for each key-value mapping. The key-value mappings are |
|
1397 |
* emitted in no particular order. |
|
1398 |
*/ |
|
1399 |
private void writeObject(java.io.ObjectOutputStream s) |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1400 |
throws IOException { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1401 |
int buckets = capacity(); |
2 | 1402 |
// Write out the threshold, loadfactor, and any hidden stuff |
1403 |
s.defaultWriteObject(); |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1404 |
s.writeInt(buckets); |
2 | 1405 |
s.writeInt(size); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1406 |
internalWriteEntries(s); |
2 | 1407 |
} |
1408 |
||
1409 |
/** |
|
12859
c44b88bb9b5e
7126277: Alternative String hashing implementation
mduigou
parents:
12448
diff
changeset
|
1410 |
* Reconstitute the {@code HashMap} instance from a stream (i.e., |
2 | 1411 |
* deserialize it). |
1412 |
*/ |
|
1413 |
private void readObject(java.io.ObjectInputStream s) |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1414 |
throws IOException, ClassNotFoundException { |
12859
c44b88bb9b5e
7126277: Alternative String hashing implementation
mduigou
parents:
12448
diff
changeset
|
1415 |
// Read in the threshold (ignored), loadfactor, and any hidden stuff |
2 | 1416 |
s.defaultReadObject(); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1417 |
reinitialize(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1418 |
if (loadFactor <= 0 || Float.isNaN(loadFactor)) |
12859
c44b88bb9b5e
7126277: Alternative String hashing implementation
mduigou
parents:
12448
diff
changeset
|
1419 |
throw new InvalidObjectException("Illegal load factor: " + |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1420 |
loadFactor); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1421 |
s.readInt(); // Read and ignore number of buckets |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1422 |
int mappings = s.readInt(); // Read number of mappings (size) |
12859
c44b88bb9b5e
7126277: Alternative String hashing implementation
mduigou
parents:
12448
diff
changeset
|
1423 |
if (mappings < 0) |
c44b88bb9b5e
7126277: Alternative String hashing implementation
mduigou
parents:
12448
diff
changeset
|
1424 |
throw new InvalidObjectException("Illegal mappings count: " + |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1425 |
mappings); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1426 |
else if (mappings > 0) { // (if zero, use defaults) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1427 |
// Size the table using given load factor only if within |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1428 |
// range of 0.25...4.0 |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1429 |
float lf = Math.min(Math.max(0.25f, loadFactor), 4.0f); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1430 |
float fc = (float)mappings / lf + 1.0f; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1431 |
int cap = ((fc < DEFAULT_INITIAL_CAPACITY) ? |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1432 |
DEFAULT_INITIAL_CAPACITY : |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1433 |
(fc >= MAXIMUM_CAPACITY) ? |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1434 |
MAXIMUM_CAPACITY : |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1435 |
tableSizeFor((int)fc)); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1436 |
float ft = (float)cap * lf; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1437 |
threshold = ((cap < MAXIMUM_CAPACITY && ft < MAXIMUM_CAPACITY) ? |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1438 |
(int)ft : Integer.MAX_VALUE); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1439 |
@SuppressWarnings({"rawtypes","unchecked"}) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1440 |
Node<K,V>[] tab = (Node<K,V>[])new Node[cap]; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1441 |
table = tab; |
16855
106eaf391fbc
8011200: (coll) Optimize empty HashMap and ArrayList
mduigou
parents:
16725
diff
changeset
|
1442 |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1443 |
// Read the keys and values, and put the mappings in the HashMap |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1444 |
for (int i = 0; i < mappings; i++) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1445 |
@SuppressWarnings("unchecked") |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1446 |
K key = (K) s.readObject(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1447 |
@SuppressWarnings("unchecked") |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1448 |
V value = (V) s.readObject(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1449 |
putVal(hash(key), key, value, false, false); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1450 |
} |
2 | 1451 |
} |
1452 |
} |
|
1453 |
||
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1454 |
/* ------------------------------------------------------------ */ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1455 |
// iterators |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1456 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1457 |
abstract class HashIterator { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1458 |
Node<K,V> next; // next entry to return |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1459 |
Node<K,V> current; // current entry |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1460 |
int expectedModCount; // for fast-fail |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1461 |
int index; // current slot |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1462 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1463 |
HashIterator() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1464 |
expectedModCount = modCount; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1465 |
Node<K,V>[] t = table; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1466 |
current = next = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1467 |
index = 0; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1468 |
if (t != null && size > 0) { // advance to first entry |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1469 |
do {} while (index < t.length && (next = t[index++]) == null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1470 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1471 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1472 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1473 |
public final boolean hasNext() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1474 |
return next != null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1475 |
} |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1476 |
|
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1477 |
final Node<K,V> nextNode() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1478 |
Node<K,V>[] t; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1479 |
Node<K,V> e = next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1480 |
if (modCount != expectedModCount) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1481 |
throw new ConcurrentModificationException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1482 |
if (e == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1483 |
throw new NoSuchElementException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1484 |
if ((next = (current = e).next) == null && (t = table) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1485 |
do {} while (index < t.length && (next = t[index++]) == null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1486 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1487 |
return e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1488 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1489 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1490 |
public final void remove() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1491 |
Node<K,V> p = current; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1492 |
if (p == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1493 |
throw new IllegalStateException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1494 |
if (modCount != expectedModCount) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1495 |
throw new ConcurrentModificationException(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1496 |
current = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1497 |
K key = p.key; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1498 |
removeNode(hash(key), key, null, false, false); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1499 |
expectedModCount = modCount; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1500 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1501 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1502 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1503 |
final class KeyIterator extends HashIterator |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1504 |
implements Iterator<K> { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1505 |
public final K next() { return nextNode().key; } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1506 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1507 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1508 |
final class ValueIterator extends HashIterator |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1509 |
implements Iterator<V> { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1510 |
public final V next() { return nextNode().value; } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1511 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1512 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1513 |
final class EntryIterator extends HashIterator |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1514 |
implements Iterator<Map.Entry<K,V>> { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1515 |
public final Map.Entry<K,V> next() { return nextNode(); } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1516 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1517 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1518 |
/* ------------------------------------------------------------ */ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1519 |
// spliterators |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1520 |
|
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1521 |
static class HashMapSpliterator<K,V> { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1522 |
final HashMap<K,V> map; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1523 |
Node<K,V> current; // current node |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1524 |
int index; // current index, modified on advance/split |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1525 |
int fence; // one past last index |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1526 |
int est; // size estimate |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1527 |
int expectedModCount; // for comodification checks |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1528 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1529 |
HashMapSpliterator(HashMap<K,V> m, int origin, |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1530 |
int fence, int est, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1531 |
int expectedModCount) { |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1532 |
this.map = m; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1533 |
this.index = origin; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1534 |
this.fence = fence; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1535 |
this.est = est; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1536 |
this.expectedModCount = expectedModCount; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1537 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1538 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1539 |
final int getFence() { // initialize fence and size on first use |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1540 |
int hi; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1541 |
if ((hi = fence) < 0) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1542 |
HashMap<K,V> m = map; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1543 |
est = m.size; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1544 |
expectedModCount = m.modCount; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1545 |
Node<K,V>[] tab = m.table; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1546 |
hi = fence = (tab == null) ? 0 : tab.length; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1547 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1548 |
return hi; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1549 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1550 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1551 |
public final long estimateSize() { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1552 |
getFence(); // force init |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1553 |
return (long) est; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1554 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1555 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1556 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1557 |
static final class KeySpliterator<K,V> |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1558 |
extends HashMapSpliterator<K,V> |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1559 |
implements Spliterator<K> { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1560 |
KeySpliterator(HashMap<K,V> m, int origin, int fence, int est, |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1561 |
int expectedModCount) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1562 |
super(m, origin, fence, est, expectedModCount); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1563 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1564 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1565 |
public KeySpliterator<K,V> trySplit() { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1566 |
int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1567 |
return (lo >= mid || current != null) ? null : |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1568 |
new KeySpliterator<>(map, lo, index = mid, est >>>= 1, |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1569 |
expectedModCount); |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1570 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1571 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1572 |
public void forEachRemaining(Consumer<? super K> action) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1573 |
int i, hi, mc; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1574 |
if (action == null) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1575 |
throw new NullPointerException(); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1576 |
HashMap<K,V> m = map; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1577 |
Node<K,V>[] tab = m.table; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1578 |
if ((hi = fence) < 0) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1579 |
mc = expectedModCount = m.modCount; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1580 |
hi = fence = (tab == null) ? 0 : tab.length; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1581 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1582 |
else |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1583 |
mc = expectedModCount; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1584 |
if (tab != null && tab.length >= hi && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1585 |
(i = index) >= 0 && (i < (index = hi) || current != null)) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1586 |
Node<K,V> p = current; |
17949
6c33d8f2601e
8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents:
17939
diff
changeset
|
1587 |
current = null; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1588 |
do { |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1589 |
if (p == null) |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1590 |
p = tab[i++]; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1591 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1592 |
action.accept(p.key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1593 |
p = p.next; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1594 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1595 |
} while (p != null || i < hi); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1596 |
if (m.modCount != mc) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1597 |
throw new ConcurrentModificationException(); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1598 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1599 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1600 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1601 |
public boolean tryAdvance(Consumer<? super K> action) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1602 |
int hi; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1603 |
if (action == null) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1604 |
throw new NullPointerException(); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1605 |
Node<K,V>[] tab = map.table; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1606 |
if (tab != null && tab.length >= (hi = getFence()) && index >= 0) { |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1607 |
while (current != null || index < hi) { |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1608 |
if (current == null) |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1609 |
current = tab[index++]; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1610 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1611 |
K k = current.key; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1612 |
current = current.next; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1613 |
action.accept(k); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1614 |
if (map.modCount != expectedModCount) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1615 |
throw new ConcurrentModificationException(); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1616 |
return true; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1617 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1618 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1619 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1620 |
return false; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1621 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1622 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1623 |
public int characteristics() { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1624 |
return (fence < 0 || est == map.size ? Spliterator.SIZED : 0) | |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1625 |
Spliterator.DISTINCT; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1626 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1627 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1628 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1629 |
static final class ValueSpliterator<K,V> |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1630 |
extends HashMapSpliterator<K,V> |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1631 |
implements Spliterator<V> { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1632 |
ValueSpliterator(HashMap<K,V> m, int origin, int fence, int est, |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1633 |
int expectedModCount) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1634 |
super(m, origin, fence, est, expectedModCount); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1635 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1636 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1637 |
public ValueSpliterator<K,V> trySplit() { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1638 |
int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1639 |
return (lo >= mid || current != null) ? null : |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1640 |
new ValueSpliterator<>(map, lo, index = mid, est >>>= 1, |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1641 |
expectedModCount); |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1642 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1643 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1644 |
public void forEachRemaining(Consumer<? super V> action) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1645 |
int i, hi, mc; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1646 |
if (action == null) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1647 |
throw new NullPointerException(); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1648 |
HashMap<K,V> m = map; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1649 |
Node<K,V>[] tab = m.table; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1650 |
if ((hi = fence) < 0) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1651 |
mc = expectedModCount = m.modCount; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1652 |
hi = fence = (tab == null) ? 0 : tab.length; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1653 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1654 |
else |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1655 |
mc = expectedModCount; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1656 |
if (tab != null && tab.length >= hi && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1657 |
(i = index) >= 0 && (i < (index = hi) || current != null)) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1658 |
Node<K,V> p = current; |
17949
6c33d8f2601e
8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents:
17939
diff
changeset
|
1659 |
current = null; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1660 |
do { |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1661 |
if (p == null) |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1662 |
p = tab[i++]; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1663 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1664 |
action.accept(p.value); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1665 |
p = p.next; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1666 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1667 |
} while (p != null || i < hi); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1668 |
if (m.modCount != mc) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1669 |
throw new ConcurrentModificationException(); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1670 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1671 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1672 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1673 |
public boolean tryAdvance(Consumer<? super V> action) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1674 |
int hi; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1675 |
if (action == null) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1676 |
throw new NullPointerException(); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1677 |
Node<K,V>[] tab = map.table; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1678 |
if (tab != null && tab.length >= (hi = getFence()) && index >= 0) { |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1679 |
while (current != null || index < hi) { |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1680 |
if (current == null) |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1681 |
current = tab[index++]; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1682 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1683 |
V v = current.value; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1684 |
current = current.next; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1685 |
action.accept(v); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1686 |
if (map.modCount != expectedModCount) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1687 |
throw new ConcurrentModificationException(); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1688 |
return true; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1689 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1690 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1691 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1692 |
return false; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1693 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1694 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1695 |
public int characteristics() { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1696 |
return (fence < 0 || est == map.size ? Spliterator.SIZED : 0); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1697 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1698 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1699 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1700 |
static final class EntrySpliterator<K,V> |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1701 |
extends HashMapSpliterator<K,V> |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1702 |
implements Spliterator<Map.Entry<K,V>> { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1703 |
EntrySpliterator(HashMap<K,V> m, int origin, int fence, int est, |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1704 |
int expectedModCount) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1705 |
super(m, origin, fence, est, expectedModCount); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1706 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1707 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1708 |
public EntrySpliterator<K,V> trySplit() { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1709 |
int hi = getFence(), lo = index, mid = (lo + hi) >>> 1; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1710 |
return (lo >= mid || current != null) ? null : |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1711 |
new EntrySpliterator<>(map, lo, index = mid, est >>>= 1, |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1712 |
expectedModCount); |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1713 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1714 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1715 |
public void forEachRemaining(Consumer<? super Map.Entry<K,V>> action) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1716 |
int i, hi, mc; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1717 |
if (action == null) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1718 |
throw new NullPointerException(); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1719 |
HashMap<K,V> m = map; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1720 |
Node<K,V>[] tab = m.table; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1721 |
if ((hi = fence) < 0) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1722 |
mc = expectedModCount = m.modCount; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1723 |
hi = fence = (tab == null) ? 0 : tab.length; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1724 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1725 |
else |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1726 |
mc = expectedModCount; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1727 |
if (tab != null && tab.length >= hi && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1728 |
(i = index) >= 0 && (i < (index = hi) || current != null)) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1729 |
Node<K,V> p = current; |
17949
6c33d8f2601e
8013649: HashMap spliterator tryAdvance() encounters remaining elements after forEachRemaining()
psandoz
parents:
17939
diff
changeset
|
1730 |
current = null; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1731 |
do { |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1732 |
if (p == null) |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1733 |
p = tab[i++]; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1734 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1735 |
action.accept(p); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1736 |
p = p.next; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1737 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1738 |
} while (p != null || i < hi); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1739 |
if (m.modCount != mc) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1740 |
throw new ConcurrentModificationException(); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1741 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1742 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1743 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1744 |
public boolean tryAdvance(Consumer<? super Map.Entry<K,V>> action) { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1745 |
int hi; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1746 |
if (action == null) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1747 |
throw new NullPointerException(); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1748 |
Node<K,V>[] tab = map.table; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1749 |
if (tab != null && tab.length >= (hi = getFence()) && index >= 0) { |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1750 |
while (current != null || index < hi) { |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1751 |
if (current == null) |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1752 |
current = tab[index++]; |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1753 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1754 |
Node<K,V> e = current; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1755 |
current = current.next; |
17168
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1756 |
action.accept(e); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1757 |
if (map.modCount != expectedModCount) |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1758 |
throw new ConcurrentModificationException(); |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1759 |
return true; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1760 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1761 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1762 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1763 |
return false; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1764 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1765 |
|
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1766 |
public int characteristics() { |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1767 |
return (fence < 0 || est == map.size ? Spliterator.SIZED : 0) | |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1768 |
Spliterator.DISTINCT; |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1769 |
} |
b7d3500f2516
8011426: java.util collection Spliterator implementations
psandoz
parents:
16867
diff
changeset
|
1770 |
} |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1771 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1772 |
/* ------------------------------------------------------------ */ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1773 |
// LinkedHashMap support |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1774 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1775 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1776 |
/* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1777 |
* The following package-protected methods are designed to be |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1778 |
* overridden by LinkedHashMap, but not by any other subclass. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1779 |
* Nearly all other internal methods are also package-protected |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1780 |
* but are declared final, so can be used by LinkedHashMap, view |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1781 |
* classes, and HashSet. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1782 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1783 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1784 |
// Create a regular (non-tree) node |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1785 |
Node<K,V> newNode(int hash, K key, V value, Node<K,V> next) { |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1786 |
return new Node<>(hash, key, value, next); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1787 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1788 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1789 |
// For conversion from TreeNodes to plain nodes |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1790 |
Node<K,V> replacementNode(Node<K,V> p, Node<K,V> next) { |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1791 |
return new Node<>(p.hash, p.key, p.value, next); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1792 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1793 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1794 |
// Create a tree bin node |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1795 |
TreeNode<K,V> newTreeNode(int hash, K key, V value, Node<K,V> next) { |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1796 |
return new TreeNode<>(hash, key, value, next); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1797 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1798 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1799 |
// For treeifyBin |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1800 |
TreeNode<K,V> replacementTreeNode(Node<K,V> p, Node<K,V> next) { |
21352
0372edc9a995
8024688: further split Map and ConcurrentMap defaults eliminating looping from Map defaults, Map.merge fixes and doc fixes.
mduigou
parents:
20199
diff
changeset
|
1801 |
return new TreeNode<>(p.hash, p.key, p.value, next); |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1802 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1803 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1804 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1805 |
* Reset to initial default state. Called by clone and readObject. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1806 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1807 |
void reinitialize() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1808 |
table = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1809 |
entrySet = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1810 |
keySet = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1811 |
values = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1812 |
modCount = 0; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1813 |
threshold = 0; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1814 |
size = 0; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1815 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1816 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1817 |
// Callbacks to allow LinkedHashMap post-actions |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1818 |
void afterNodeAccess(Node<K,V> p) { } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1819 |
void afterNodeInsertion(boolean evict) { } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1820 |
void afterNodeRemoval(Node<K,V> p) { } |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1821 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1822 |
// Called only from writeObject, to ensure compatible ordering. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1823 |
void internalWriteEntries(java.io.ObjectOutputStream s) throws IOException { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1824 |
Node<K,V>[] tab; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1825 |
if (size > 0 && (tab = table) != null) { |
22078
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
1826 |
for (Node<K, V> e : tab) { |
bdec5d53e98c
8030851: Update code in java.util to use newer language features
psandoz
parents:
22055
diff
changeset
|
1827 |
for (; e != null; e = e.next) { |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1828 |
s.writeObject(e.key); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1829 |
s.writeObject(e.value); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1830 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1831 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1832 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1833 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1834 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1835 |
/* ------------------------------------------------------------ */ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1836 |
// Tree bins |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1837 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1838 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1839 |
* Entry for Tree bins. Extends LinkedHashMap.Entry (which in turn |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1840 |
* extends Node) so can be used as extension of either regular or |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1841 |
* linked node. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1842 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1843 |
static final class TreeNode<K,V> extends LinkedHashMap.Entry<K,V> { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1844 |
TreeNode<K,V> parent; // red-black tree links |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1845 |
TreeNode<K,V> left; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1846 |
TreeNode<K,V> right; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1847 |
TreeNode<K,V> prev; // needed to unlink next upon deletion |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1848 |
boolean red; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1849 |
TreeNode(int hash, K key, V val, Node<K,V> next) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1850 |
super(hash, key, val, next); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1851 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1852 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1853 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1854 |
* Returns root of tree containing this node. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1855 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1856 |
final TreeNode<K,V> root() { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1857 |
for (TreeNode<K,V> r = this, p;;) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1858 |
if ((p = r.parent) == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1859 |
return r; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1860 |
r = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1861 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1862 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1863 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1864 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1865 |
* Ensures that the given root is the first node of its bin. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1866 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1867 |
static <K,V> void moveRootToFront(Node<K,V>[] tab, TreeNode<K,V> root) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1868 |
int n; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1869 |
if (root != null && tab != null && (n = tab.length) > 0) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1870 |
int index = (n - 1) & root.hash; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1871 |
TreeNode<K,V> first = (TreeNode<K,V>)tab[index]; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1872 |
if (root != first) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1873 |
Node<K,V> rn; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1874 |
tab[index] = root; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1875 |
TreeNode<K,V> rp = root.prev; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1876 |
if ((rn = root.next) != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1877 |
((TreeNode<K,V>)rn).prev = rp; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1878 |
if (rp != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1879 |
rp.next = rn; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1880 |
if (first != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1881 |
first.prev = root; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1882 |
root.next = first; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1883 |
root.prev = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1884 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1885 |
assert checkInvariants(root); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1886 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1887 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1888 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1889 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1890 |
* Finds the node starting at root p with the given hash and key. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1891 |
* The kc argument caches comparableClassFor(key) upon first use |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1892 |
* comparing keys. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1893 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1894 |
final TreeNode<K,V> find(int h, Object k, Class<?> kc) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1895 |
TreeNode<K,V> p = this; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1896 |
do { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1897 |
int ph, dir; K pk; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1898 |
TreeNode<K,V> pl = p.left, pr = p.right, q; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1899 |
if ((ph = p.hash) > h) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1900 |
p = pl; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1901 |
else if (ph < h) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1902 |
p = pr; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1903 |
else if ((pk = p.key) == k || (k != null && k.equals(pk))) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1904 |
return p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1905 |
else if (pl == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1906 |
p = pr; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1907 |
else if (pr == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1908 |
p = pl; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1909 |
else if ((kc != null || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1910 |
(kc = comparableClassFor(k)) != null) && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1911 |
(dir = compareComparables(kc, k, pk)) != 0) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1912 |
p = (dir < 0) ? pl : pr; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1913 |
else if ((q = pr.find(h, k, kc)) != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1914 |
return q; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1915 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1916 |
p = pl; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1917 |
} while (p != null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1918 |
return null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1919 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1920 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1921 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1922 |
* Calls find for root node. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1923 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1924 |
final TreeNode<K,V> getTreeNode(int h, Object k) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1925 |
return ((parent != null) ? root() : this).find(h, k, null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1926 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1927 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1928 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1929 |
* Tie-breaking utility for ordering insertions when equal |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1930 |
* hashCodes and non-comparable. We don't require a total |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1931 |
* order, just a consistent insertion rule to maintain |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1932 |
* equivalence across rebalancings. Tie-breaking further than |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1933 |
* necessary simplifies testing a bit. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1934 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1935 |
static int tieBreakOrder(Object a, Object b) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1936 |
int d; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1937 |
if (a == null || b == null || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1938 |
(d = a.getClass().getName(). |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1939 |
compareTo(b.getClass().getName())) == 0) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1940 |
d = (System.identityHashCode(a) <= System.identityHashCode(b) ? |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1941 |
-1 : 1); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1942 |
return d; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1943 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1944 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1945 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1946 |
* Forms tree of the nodes linked from this node. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1947 |
* @return root of tree |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1948 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1949 |
final void treeify(Node<K,V>[] tab) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1950 |
TreeNode<K,V> root = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1951 |
for (TreeNode<K,V> x = this, next; x != null; x = next) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1952 |
next = (TreeNode<K,V>)x.next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1953 |
x.left = x.right = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1954 |
if (root == null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1955 |
x.parent = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1956 |
x.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1957 |
root = x; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1958 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1959 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1960 |
K k = x.key; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1961 |
int h = x.hash; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1962 |
Class<?> kc = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1963 |
for (TreeNode<K,V> p = root;;) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1964 |
int dir, ph; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1965 |
K pk = p.key; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1966 |
if ((ph = p.hash) > h) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1967 |
dir = -1; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1968 |
else if (ph < h) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1969 |
dir = 1; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1970 |
else if ((kc == null && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1971 |
(kc = comparableClassFor(k)) == null) || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1972 |
(dir = compareComparables(kc, k, pk)) == 0) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1973 |
dir = tieBreakOrder(k, pk); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1974 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1975 |
TreeNode<K,V> xp = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1976 |
if ((p = (dir <= 0) ? p.left : p.right) == null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1977 |
x.parent = xp; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1978 |
if (dir <= 0) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1979 |
xp.left = x; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1980 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1981 |
xp.right = x; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1982 |
root = balanceInsertion(root, x); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1983 |
break; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1984 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1985 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1986 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1987 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1988 |
moveRootToFront(tab, root); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1989 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1990 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1991 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1992 |
* Returns a list of non-TreeNodes replacing those linked from |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1993 |
* this node. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1994 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1995 |
final Node<K,V> untreeify(HashMap<K,V> map) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1996 |
Node<K,V> hd = null, tl = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1997 |
for (Node<K,V> q = this; q != null; q = q.next) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1998 |
Node<K,V> p = map.replacementNode(q, null); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
1999 |
if (tl == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2000 |
hd = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2001 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2002 |
tl.next = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2003 |
tl = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2004 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2005 |
return hd; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2006 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2007 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2008 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2009 |
* Tree version of putVal. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2010 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2011 |
final TreeNode<K,V> putTreeVal(HashMap<K,V> map, Node<K,V>[] tab, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2012 |
int h, K k, V v) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2013 |
Class<?> kc = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2014 |
boolean searched = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2015 |
TreeNode<K,V> root = (parent != null) ? root() : this; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2016 |
for (TreeNode<K,V> p = root;;) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2017 |
int dir, ph; K pk; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2018 |
if ((ph = p.hash) > h) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2019 |
dir = -1; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2020 |
else if (ph < h) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2021 |
dir = 1; |
24859
c54a1ef9eaae
8046085: inserting null key into HashMap treebin fails.
mduigou
parents:
22078
diff
changeset
|
2022 |
else if ((pk = p.key) == k || (k != null && k.equals(pk))) |
19806
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2023 |
return p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2024 |
else if ((kc == null && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2025 |
(kc = comparableClassFor(k)) == null) || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2026 |
(dir = compareComparables(kc, k, pk)) == 0) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2027 |
if (!searched) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2028 |
TreeNode<K,V> q, ch; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2029 |
searched = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2030 |
if (((ch = p.left) != null && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2031 |
(q = ch.find(h, k, kc)) != null) || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2032 |
((ch = p.right) != null && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2033 |
(q = ch.find(h, k, kc)) != null)) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2034 |
return q; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2035 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2036 |
dir = tieBreakOrder(k, pk); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2037 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2038 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2039 |
TreeNode<K,V> xp = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2040 |
if ((p = (dir <= 0) ? p.left : p.right) == null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2041 |
Node<K,V> xpn = xp.next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2042 |
TreeNode<K,V> x = map.newTreeNode(h, k, v, xpn); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2043 |
if (dir <= 0) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2044 |
xp.left = x; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2045 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2046 |
xp.right = x; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2047 |
xp.next = x; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2048 |
x.parent = x.prev = xp; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2049 |
if (xpn != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2050 |
((TreeNode<K,V>)xpn).prev = x; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2051 |
moveRootToFront(tab, balanceInsertion(root, x)); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2052 |
return null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2053 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2054 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2055 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2056 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2057 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2058 |
* Removes the given node, that must be present before this call. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2059 |
* This is messier than typical red-black deletion code because we |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2060 |
* cannot swap the contents of an interior node with a leaf |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2061 |
* successor that is pinned by "next" pointers that are accessible |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2062 |
* independently during traversal. So instead we swap the tree |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2063 |
* linkages. If the current tree appears to have too few nodes, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2064 |
* the bin is converted back to a plain bin. (The test triggers |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2065 |
* somewhere between 2 and 6 nodes, depending on tree structure). |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2066 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2067 |
final void removeTreeNode(HashMap<K,V> map, Node<K,V>[] tab, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2068 |
boolean movable) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2069 |
int n; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2070 |
if (tab == null || (n = tab.length) == 0) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2071 |
return; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2072 |
int index = (n - 1) & hash; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2073 |
TreeNode<K,V> first = (TreeNode<K,V>)tab[index], root = first, rl; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2074 |
TreeNode<K,V> succ = (TreeNode<K,V>)next, pred = prev; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2075 |
if (pred == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2076 |
tab[index] = first = succ; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2077 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2078 |
pred.next = succ; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2079 |
if (succ != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2080 |
succ.prev = pred; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2081 |
if (first == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2082 |
return; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2083 |
if (root.parent != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2084 |
root = root.root(); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2085 |
if (root == null || root.right == null || |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2086 |
(rl = root.left) == null || rl.left == null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2087 |
tab[index] = first.untreeify(map); // too small |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2088 |
return; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2089 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2090 |
TreeNode<K,V> p = this, pl = left, pr = right, replacement; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2091 |
if (pl != null && pr != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2092 |
TreeNode<K,V> s = pr, sl; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2093 |
while ((sl = s.left) != null) // find successor |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2094 |
s = sl; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2095 |
boolean c = s.red; s.red = p.red; p.red = c; // swap colors |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2096 |
TreeNode<K,V> sr = s.right; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2097 |
TreeNode<K,V> pp = p.parent; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2098 |
if (s == pr) { // p was s's direct parent |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2099 |
p.parent = s; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2100 |
s.right = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2101 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2102 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2103 |
TreeNode<K,V> sp = s.parent; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2104 |
if ((p.parent = sp) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2105 |
if (s == sp.left) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2106 |
sp.left = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2107 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2108 |
sp.right = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2109 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2110 |
if ((s.right = pr) != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2111 |
pr.parent = s; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2112 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2113 |
p.left = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2114 |
if ((p.right = sr) != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2115 |
sr.parent = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2116 |
if ((s.left = pl) != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2117 |
pl.parent = s; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2118 |
if ((s.parent = pp) == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2119 |
root = s; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2120 |
else if (p == pp.left) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2121 |
pp.left = s; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2122 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2123 |
pp.right = s; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2124 |
if (sr != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2125 |
replacement = sr; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2126 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2127 |
replacement = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2128 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2129 |
else if (pl != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2130 |
replacement = pl; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2131 |
else if (pr != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2132 |
replacement = pr; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2133 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2134 |
replacement = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2135 |
if (replacement != p) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2136 |
TreeNode<K,V> pp = replacement.parent = p.parent; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2137 |
if (pp == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2138 |
root = replacement; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2139 |
else if (p == pp.left) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2140 |
pp.left = replacement; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2141 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2142 |
pp.right = replacement; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2143 |
p.left = p.right = p.parent = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2144 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2145 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2146 |
TreeNode<K,V> r = p.red ? root : balanceDeletion(root, replacement); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2147 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2148 |
if (replacement == p) { // detach |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2149 |
TreeNode<K,V> pp = p.parent; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2150 |
p.parent = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2151 |
if (pp != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2152 |
if (p == pp.left) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2153 |
pp.left = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2154 |
else if (p == pp.right) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2155 |
pp.right = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2156 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2157 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2158 |
if (movable) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2159 |
moveRootToFront(tab, r); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2160 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2161 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2162 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2163 |
* Splits nodes in a tree bin into lower and upper tree bins, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2164 |
* or untreeifies if now too small. Called only from resize; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2165 |
* see above discussion about split bits and indices. |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2166 |
* |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2167 |
* @param map the map |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2168 |
* @param tab the table for recording bin heads |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2169 |
* @param index the index of the table being split |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2170 |
* @param bit the bit of hash to split on |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2171 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2172 |
final void split(HashMap<K,V> map, Node<K,V>[] tab, int index, int bit) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2173 |
TreeNode<K,V> b = this; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2174 |
// Relink into lo and hi lists, preserving order |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2175 |
TreeNode<K,V> loHead = null, loTail = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2176 |
TreeNode<K,V> hiHead = null, hiTail = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2177 |
int lc = 0, hc = 0; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2178 |
for (TreeNode<K,V> e = b, next; e != null; e = next) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2179 |
next = (TreeNode<K,V>)e.next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2180 |
e.next = null; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2181 |
if ((e.hash & bit) == 0) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2182 |
if ((e.prev = loTail) == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2183 |
loHead = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2184 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2185 |
loTail.next = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2186 |
loTail = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2187 |
++lc; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2188 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2189 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2190 |
if ((e.prev = hiTail) == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2191 |
hiHead = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2192 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2193 |
hiTail.next = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2194 |
hiTail = e; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2195 |
++hc; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2196 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2197 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2198 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2199 |
if (loHead != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2200 |
if (lc <= UNTREEIFY_THRESHOLD) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2201 |
tab[index] = loHead.untreeify(map); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2202 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2203 |
tab[index] = loHead; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2204 |
if (hiHead != null) // (else is already treeified) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2205 |
loHead.treeify(tab); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2206 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2207 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2208 |
if (hiHead != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2209 |
if (hc <= UNTREEIFY_THRESHOLD) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2210 |
tab[index + bit] = hiHead.untreeify(map); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2211 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2212 |
tab[index + bit] = hiHead; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2213 |
if (loHead != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2214 |
hiHead.treeify(tab); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2215 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2216 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2217 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2218 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2219 |
/* ------------------------------------------------------------ */ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2220 |
// Red-black tree methods, all adapted from CLR |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2221 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2222 |
static <K,V> TreeNode<K,V> rotateLeft(TreeNode<K,V> root, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2223 |
TreeNode<K,V> p) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2224 |
TreeNode<K,V> r, pp, rl; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2225 |
if (p != null && (r = p.right) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2226 |
if ((rl = p.right = r.left) != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2227 |
rl.parent = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2228 |
if ((pp = r.parent = p.parent) == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2229 |
(root = r).red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2230 |
else if (pp.left == p) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2231 |
pp.left = r; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2232 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2233 |
pp.right = r; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2234 |
r.left = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2235 |
p.parent = r; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2236 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2237 |
return root; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2238 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2239 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2240 |
static <K,V> TreeNode<K,V> rotateRight(TreeNode<K,V> root, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2241 |
TreeNode<K,V> p) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2242 |
TreeNode<K,V> l, pp, lr; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2243 |
if (p != null && (l = p.left) != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2244 |
if ((lr = p.left = l.right) != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2245 |
lr.parent = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2246 |
if ((pp = l.parent = p.parent) == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2247 |
(root = l).red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2248 |
else if (pp.right == p) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2249 |
pp.right = l; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2250 |
else |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2251 |
pp.left = l; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2252 |
l.right = p; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2253 |
p.parent = l; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2254 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2255 |
return root; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2256 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2257 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2258 |
static <K,V> TreeNode<K,V> balanceInsertion(TreeNode<K,V> root, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2259 |
TreeNode<K,V> x) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2260 |
x.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2261 |
for (TreeNode<K,V> xp, xpp, xppl, xppr;;) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2262 |
if ((xp = x.parent) == null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2263 |
x.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2264 |
return x; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2265 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2266 |
else if (!xp.red || (xpp = xp.parent) == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2267 |
return root; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2268 |
if (xp == (xppl = xpp.left)) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2269 |
if ((xppr = xpp.right) != null && xppr.red) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2270 |
xppr.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2271 |
xp.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2272 |
xpp.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2273 |
x = xpp; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2274 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2275 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2276 |
if (x == xp.right) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2277 |
root = rotateLeft(root, x = xp); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2278 |
xpp = (xp = x.parent) == null ? null : xp.parent; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2279 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2280 |
if (xp != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2281 |
xp.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2282 |
if (xpp != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2283 |
xpp.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2284 |
root = rotateRight(root, xpp); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2285 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2286 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2287 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2288 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2289 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2290 |
if (xppl != null && xppl.red) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2291 |
xppl.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2292 |
xp.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2293 |
xpp.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2294 |
x = xpp; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2295 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2296 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2297 |
if (x == xp.left) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2298 |
root = rotateRight(root, x = xp); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2299 |
xpp = (xp = x.parent) == null ? null : xp.parent; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2300 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2301 |
if (xp != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2302 |
xp.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2303 |
if (xpp != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2304 |
xpp.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2305 |
root = rotateLeft(root, xpp); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2306 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2307 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2308 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2309 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2310 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2311 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2312 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2313 |
static <K,V> TreeNode<K,V> balanceDeletion(TreeNode<K,V> root, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2314 |
TreeNode<K,V> x) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2315 |
for (TreeNode<K,V> xp, xpl, xpr;;) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2316 |
if (x == null || x == root) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2317 |
return root; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2318 |
else if ((xp = x.parent) == null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2319 |
x.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2320 |
return x; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2321 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2322 |
else if (x.red) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2323 |
x.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2324 |
return root; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2325 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2326 |
else if ((xpl = xp.left) == x) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2327 |
if ((xpr = xp.right) != null && xpr.red) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2328 |
xpr.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2329 |
xp.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2330 |
root = rotateLeft(root, xp); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2331 |
xpr = (xp = x.parent) == null ? null : xp.right; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2332 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2333 |
if (xpr == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2334 |
x = xp; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2335 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2336 |
TreeNode<K,V> sl = xpr.left, sr = xpr.right; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2337 |
if ((sr == null || !sr.red) && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2338 |
(sl == null || !sl.red)) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2339 |
xpr.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2340 |
x = xp; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2341 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2342 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2343 |
if (sr == null || !sr.red) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2344 |
if (sl != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2345 |
sl.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2346 |
xpr.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2347 |
root = rotateRight(root, xpr); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2348 |
xpr = (xp = x.parent) == null ? |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2349 |
null : xp.right; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2350 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2351 |
if (xpr != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2352 |
xpr.red = (xp == null) ? false : xp.red; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2353 |
if ((sr = xpr.right) != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2354 |
sr.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2355 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2356 |
if (xp != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2357 |
xp.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2358 |
root = rotateLeft(root, xp); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2359 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2360 |
x = root; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2361 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2362 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2363 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2364 |
else { // symmetric |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2365 |
if (xpl != null && xpl.red) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2366 |
xpl.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2367 |
xp.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2368 |
root = rotateRight(root, xp); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2369 |
xpl = (xp = x.parent) == null ? null : xp.left; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2370 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2371 |
if (xpl == null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2372 |
x = xp; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2373 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2374 |
TreeNode<K,V> sl = xpl.left, sr = xpl.right; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2375 |
if ((sl == null || !sl.red) && |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2376 |
(sr == null || !sr.red)) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2377 |
xpl.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2378 |
x = xp; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2379 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2380 |
else { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2381 |
if (sl == null || !sl.red) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2382 |
if (sr != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2383 |
sr.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2384 |
xpl.red = true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2385 |
root = rotateLeft(root, xpl); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2386 |
xpl = (xp = x.parent) == null ? |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2387 |
null : xp.left; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2388 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2389 |
if (xpl != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2390 |
xpl.red = (xp == null) ? false : xp.red; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2391 |
if ((sl = xpl.left) != null) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2392 |
sl.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2393 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2394 |
if (xp != null) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2395 |
xp.red = false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2396 |
root = rotateRight(root, xp); |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2397 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2398 |
x = root; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2399 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2400 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2401 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2402 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2403 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2404 |
|
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2405 |
/** |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2406 |
* Recursive invariant check |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2407 |
*/ |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2408 |
static <K,V> boolean checkInvariants(TreeNode<K,V> t) { |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2409 |
TreeNode<K,V> tp = t.parent, tl = t.left, tr = t.right, |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2410 |
tb = t.prev, tn = (TreeNode<K,V>)t.next; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2411 |
if (tb != null && tb.next != t) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2412 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2413 |
if (tn != null && tn.prev != t) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2414 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2415 |
if (tp != null && t != tp.left && t != tp.right) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2416 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2417 |
if (tl != null && (tl.parent != t || tl.hash > t.hash)) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2418 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2419 |
if (tr != null && (tr.parent != t || tr.hash < t.hash)) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2420 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2421 |
if (t.red && tl != null && tl.red && tr != null && tr.red) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2422 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2423 |
if (tl != null && !checkInvariants(tl)) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2424 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2425 |
if (tr != null && !checkInvariants(tr)) |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2426 |
return false; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2427 |
return true; |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2428 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2429 |
} |
dda89341ee2d
8023463: Improvements to HashMap/LinkedHashMap use of bins/buckets and trees (red/black)
psandoz
parents:
19184
diff
changeset
|
2430 |
|
2 | 2431 |
} |