@@ -81,7 +81,7 @@ bool MallocSiteTable::initialize() {
81
81
_hash_entry_allocation_site = &entry;
82
82
83
83
// Add the allocation site to hashtable.
84
- int index = hash_to_index (stack .hash ());
84
+ int index = hash_to_index (entry .hash ());
85
85
_table[index ] = const_cast <MallocSiteHashtableEntry*>(&entry);
86
86
87
87
return true ;
@@ -117,7 +117,8 @@ bool MallocSiteTable::walk(MallocSiteWalker* walker) {
117
117
MallocSite* MallocSiteTable::lookup_or_add (const NativeCallStack& key, size_t * bucket_idx,
118
118
size_t * pos_idx, MEMFLAGS flags) {
119
119
assert (flags != mtNone, " Should have a real memory type" );
120
- unsigned int index = hash_to_index (key.hash ());
120
+ const unsigned int hash = key.calculate_hash ();
121
+ const unsigned int index = hash_to_index (hash);
121
122
*bucket_idx = (size_t )index ;
122
123
*pos_idx = 0 ;
123
124
@@ -137,9 +138,11 @@ MallocSite* MallocSiteTable::lookup_or_add(const NativeCallStack& key, size_t* b
137
138
138
139
MallocSiteHashtableEntry* head = _table[index ];
139
140
while (head != NULL && (*pos_idx) <= MAX_BUCKET_LENGTH) {
140
- MallocSite* site = head->data ();
141
- if (site->flag () == flags && site->equals (key)) {
142
- return head->data ();
141
+ if (head->hash () == hash) {
142
+ MallocSite* site = head->data ();
143
+ if (site->flag () == flags && site->equals (key)) {
144
+ return head->data ();
145
+ }
143
146
}
144
147
145
148
if (head->next () == NULL && (*pos_idx) < MAX_BUCKET_LENGTH) {
0 commit comments