Skip to content

Commit ae797c6

Browse files
afshin-zafaricalvinccheung
authored andcommittedMar 3, 2023
8301117: Remove old_size param from ResizeableResourceHashtable::resize()
Reviewed-by: dholmes, coleenp
1 parent 5085bd5 commit ae797c6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎src/hotspot/share/gc/g1/g1CodeRootSet.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ void G1CodeRootSet::add(nmethod* nm) {
3838
}
3939
added = _table->put(nm, nm);
4040
if (added && _table->table_size() == SmallSize && length() == Threshold) {
41-
_table->resize(SmallSize, LargeSize);
41+
_table->resize(LargeSize);
4242
}
4343
}
4444

‎src/hotspot/share/utilities/resizeableResourceHash.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,19 +98,19 @@ class ResizeableResourceHashtable : public ResourceHashtableBase<
9898
}
9999
if (BASE::number_of_entries() / int(old_size) > load_factor) {
100100
unsigned new_size = MIN2<unsigned>(old_size * 2, _max_size);
101-
resize(old_size, new_size);
101+
resize(new_size);
102102
return true;
103103
} else {
104104
return false;
105105
}
106106
}
107107

108-
void resize(unsigned old_size, unsigned new_size) {
108+
void resize(unsigned new_size) {
109109
Node** old_table = BASE::_table;
110110
Node** new_table = BASE::alloc_table(new_size);
111111

112112
Node* const* bucket = old_table;
113-
while (bucket < &old_table[old_size]) {
113+
while (bucket < &old_table[BASE::_table_size]) {
114114
Node* node = *bucket;
115115
while (node != nullptr) {
116116
Node* next = node->_next;

0 commit comments

Comments
 (0)
Please sign in to comment.