Skip to content

Commit 95c8022

Browse files
committedJul 11, 2022
8290046: NMT: Remove unused MallocSiteTable::reset()
Reviewed-by: jiefu, zgu
1 parent 0c37008 commit 95c8022

File tree

2 files changed

+0
-26
lines changed

2 files changed

+0
-26
lines changed
 

‎src/hotspot/share/services/mallocSiteTable.cpp

-22
Original file line numberDiff line numberDiff line change
@@ -178,28 +178,6 @@ MallocSiteHashtableEntry* MallocSiteTable::new_entry(const NativeCallStack& key,
178178
return ::new (p) MallocSiteHashtableEntry(key, flags);
179179
}
180180

181-
void MallocSiteTable::reset() {
182-
for (int index = 0; index < table_size; index ++) {
183-
MallocSiteHashtableEntry* head = _table[index];
184-
_table[index] = NULL;
185-
delete_linked_list(head);
186-
}
187-
188-
_hash_entry_allocation_stack = NULL;
189-
_hash_entry_allocation_site = NULL;
190-
}
191-
192-
void MallocSiteTable::delete_linked_list(MallocSiteHashtableEntry* head) {
193-
MallocSiteHashtableEntry* p;
194-
while (head != NULL) {
195-
p = head;
196-
head = (MallocSiteHashtableEntry*)head->next();
197-
if (p != hash_entry_allocation_site()) {
198-
delete p;
199-
}
200-
}
201-
}
202-
203181
bool MallocSiteTable::walk_malloc_site(MallocSiteWalker* walker) {
204182
assert(walker != NULL, "NuLL walker");
205183
return walk(walker);

‎src/hotspot/share/services/mallocSiteTable.hpp

-4
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,6 @@ class MallocSiteTable : AllStatic {
174174

175175
private:
176176
static MallocSiteHashtableEntry* new_entry(const NativeCallStack& key, MEMFLAGS flags);
177-
static void reset();
178-
179-
// Delete a bucket linked list
180-
static void delete_linked_list(MallocSiteHashtableEntry* head);
181177

182178
static MallocSite* lookup_or_add(const NativeCallStack& key, uint32_t* marker, MEMFLAGS flags);
183179
static MallocSite* malloc_site(uint32_t marker);

0 commit comments

Comments
 (0)
Please sign in to comment.