Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8281631: HashMap copy constructor and putAll can over-allocate table #7431

Closed
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
bb42df9
9072610: HashMap.putAll can cause redundant space waste
XenoAmess Feb 4, 2022
2a1bf27
9072610: HashMap.putAll can cause redundant space waste
XenoAmess Feb 11, 2022
c665447
9072610: HashMap.putAll can cause redundant space waste
XenoAmess Feb 11, 2022
4e42cae
9072610: HashMap.putAll can cause redundant space waste
XenoAmess Feb 11, 2022
95dc4c1
9072610: HashMap.putAll can cause redundant space waste
XenoAmess Feb 15, 2022
e77fe7d
9072610: HashMap.putAll can cause redundant space waste
XenoAmess Feb 15, 2022
6d9069d
9072610: HashMap copy constructor and putAll can over-allocate table
XenoAmess Feb 15, 2022
73ff17b
9072610: HashMap copy constructor and putAll can over-allocate table
XenoAmess Feb 16, 2022
e8bfa52
revert changes in ConcurrentHashMap
XenoAmess Feb 16, 2022
f37f8d2
fix test
XenoAmess Feb 16, 2022
b191bd6
fix test
XenoAmess Feb 16, 2022
3e8f2d7
fix test
XenoAmess Feb 16, 2022
d0a4e6f
fix test
XenoAmess Feb 16, 2022
2998571
fix license year in test
XenoAmess Feb 17, 2022
87b7333
migrate to junit
XenoAmess Feb 17, 2022
29af7c2
migrate to junit
XenoAmess Feb 17, 2022
cdfb03b
migrate to junit
XenoAmess Feb 17, 2022
226a7ba
change threshold
XenoAmess Feb 18, 2022
aa59969
migrate to junit
XenoAmess Feb 18, 2022
182c22d
revert unrelated changes and add it to ProblemList.txt
XenoAmess Feb 18, 2022
746ad4f
refine test
XenoAmess Feb 18, 2022
4b96c4e
1. optimize IdentityHashMap that when calling ::new(Map), do not call…
XenoAmess Feb 20, 2022
6d0ab0e
refine test
XenoAmess Feb 20, 2022
e724cc0
refine IdentityHashMap
XenoAmess Feb 20, 2022
475e040
revert changes to IdentityHashMap
XenoAmess Mar 2, 2022
d168ad4
cast several float to double before calculation
XenoAmess Mar 3, 2022
261ae62
refine test
XenoAmess Mar 4, 2022
a364aa4
refactor WhiteBoxResizeTest
XenoAmess Mar 5, 2022
d1fd4b0
refactor tests
XenoAmess Mar 5, 2022
a4ca31d
refactor tests
XenoAmess Mar 5, 2022
49aeef2
refactor tests
XenoAmess Mar 5, 2022
5c31e92
Restore WhiteBoxResizeTest.java
stuart-marks Mar 7, 2022
cc99628
initial rewrite of WhiteBoxResizeTest
stuart-marks Mar 8, 2022
536495a
Cleanup and commenting.
stuart-marks Mar 9, 2022
c23f945
Remove 'randomness' keyword.
stuart-marks Mar 9, 2022
11a57a2
clean out tests
XenoAmess Mar 10, 2022
3f1e0e7
manually create reference for ensuring test for WeakHashMap when Inte…
XenoAmess Mar 10, 2022
866b460
refine test
XenoAmess Mar 11, 2022
0d1fc15
refine test
XenoAmess Mar 11, 2022
9b9156c
refine test
XenoAmess Mar 11, 2022
09fde4c
fix test
XenoAmess Mar 11, 2022
5187185
change KeyStructure to String
XenoAmess Mar 11, 2022
a980bda
refine test
XenoAmess Mar 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/java.base/share/classes/java/util/WeakHashMap.java
Original file line number Diff line number Diff line change
@@ -555,7 +555,7 @@ public void putAll(Map<? extends K, ? extends V> m) {
* to at most one extra resize.
*/
if (numKeysToBeAdded > threshold) {
int targetCapacity = (int)(numKeysToBeAdded / loadFactor + 1);
int targetCapacity = (int)Math.ceil(numKeysToBeAdded / loadFactor);
if (targetCapacity > MAXIMUM_CAPACITY)
targetCapacity = MAXIMUM_CAPACITY;
int newCapacity = table.length;
Original file line number Diff line number Diff line change
@@ -895,7 +895,7 @@ public ConcurrentHashMap(int initialCapacity,
throw new IllegalArgumentException();
if (initialCapacity < concurrencyLevel) // Use at least as many bins
initialCapacity = concurrencyLevel; // as estimated threads
long size = (long)(1.0 + (long)initialCapacity / loadFactor);
long size = (long)Math.ceil(initialCapacity / (double)loadFactor);
int cap = (size >= (long)MAXIMUM_CAPACITY) ?
MAXIMUM_CAPACITY : tableSizeFor((int)size);
this.sizeCtl = cap;
@@ -1463,7 +1463,7 @@ private void readObject(java.io.ObjectInputStream s)
if (size == 0L)
sizeCtl = 0;
else {
long ts = (long)(1.0 + size / LOAD_FACTOR);
long ts = (long)Math.ceil(size / (double)LOAD_FACTOR);
int n = (ts >= (long)MAXIMUM_CAPACITY) ?
MAXIMUM_CAPACITY : tableSizeFor((int)ts);
@SuppressWarnings("unchecked")