Skip to content

Commit 722142e

Browse files
committedFeb 26, 2021
8261520: JDK-8261302 breaks runtime/NMT/CheckForProperDetailStackTrace.java
Reviewed-by: zgu, coleenp
1 parent bcca100 commit 722142e

File tree

6 files changed

+22
-26
lines changed

6 files changed

+22
-26
lines changed
 

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

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ class AllocationSite {
3636
const MEMFLAGS _flag;
3737
public:
3838
AllocationSite(const NativeCallStack& stack, MEMFLAGS flag) : _call_stack(stack), _flag(flag) { }
39-
int hash() const { return _call_stack.hash(); }
4039

4140
bool equals(const NativeCallStack& stack) const {
4241
return _call_stack.equals(stack);

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

+8-5
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ bool MallocSiteTable::initialize() {
8181
_hash_entry_allocation_site = &entry;
8282

8383
// Add the allocation site to hashtable.
84-
int index = hash_to_index(stack.hash());
84+
int index = hash_to_index(entry.hash());
8585
_table[index] = const_cast<MallocSiteHashtableEntry*>(&entry);
8686

8787
return true;
@@ -117,7 +117,8 @@ bool MallocSiteTable::walk(MallocSiteWalker* walker) {
117117
MallocSite* MallocSiteTable::lookup_or_add(const NativeCallStack& key, size_t* bucket_idx,
118118
size_t* pos_idx, MEMFLAGS flags) {
119119
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);
121122
*bucket_idx = (size_t)index;
122123
*pos_idx = 0;
123124

@@ -137,9 +138,11 @@ MallocSite* MallocSiteTable::lookup_or_add(const NativeCallStack& key, size_t* b
137138

138139
MallocSiteHashtableEntry* head = _table[index];
139140
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+
}
143146
}
144147

145148
if (head->next() == NULL && (*pos_idx) < MAX_BUCKET_LENGTH) {

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,13 @@ class MallocSite : public AllocationSite {
5757
class MallocSiteHashtableEntry : public CHeapObj<mtNMT> {
5858
private:
5959
MallocSite _malloc_site;
60+
const unsigned int _hash;
6061
MallocSiteHashtableEntry* volatile _next;
6162

6263
public:
6364

6465
MallocSiteHashtableEntry(NativeCallStack stack, MEMFLAGS flags):
65-
_malloc_site(stack, flags), _next(NULL) {
66+
_malloc_site(stack, flags), _hash(stack.calculate_hash()), _next(NULL) {
6667
assert(flags != mtNone, "Expect a real memory type");
6768
}
6869

@@ -75,6 +76,8 @@ class MallocSiteHashtableEntry : public CHeapObj<mtNMT> {
7576
// The operation can be failed due to contention from other thread.
7677
bool atomic_insert(MallocSiteHashtableEntry* entry);
7778

79+
unsigned int hash() const { return _hash; }
80+
7881
inline const MallocSite* peek() const { return &_malloc_site; }
7982
inline MallocSite* data() { return &_malloc_site; }
8083

‎src/hotspot/share/utilities/nativeCallStack.cpp

+1-12
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,7 @@
3030

3131
const NativeCallStack NativeCallStack::_empty_stack; // Uses default ctor
3232

33-
static unsigned int calculate_hash(address stack[NMT_TrackingStackDepth]) {
34-
uintptr_t hash = 0;
35-
for (int i = 0; i < NMT_TrackingStackDepth; i++) {
36-
hash += (uintptr_t)stack[i];
37-
}
38-
return hash;
39-
}
40-
41-
NativeCallStack::NativeCallStack(int toSkip) :
42-
_hash_value(0) {
33+
NativeCallStack::NativeCallStack(int toSkip) {
4334

4435
// We need to skip the NativeCallStack::NativeCallStack frame if a tail call is NOT used
4536
// to call os::get_native_stack. A tail call is used if _NMT_NOINLINE_ is not defined
@@ -55,7 +46,6 @@ NativeCallStack::NativeCallStack(int toSkip) :
5546
#endif // Special-case for BSD.
5647
#endif // Not a tail call.
5748
os::get_native_stack(_stack, NMT_TrackingStackDepth, toSkip);
58-
_hash_value = calculate_hash(_stack);
5949
}
6050

6151
NativeCallStack::NativeCallStack(address* pc, int frameCount) {
@@ -68,7 +58,6 @@ NativeCallStack::NativeCallStack(address* pc, int frameCount) {
6858
for (; index < NMT_TrackingStackDepth; index ++) {
6959
_stack[index] = NULL;
7060
}
71-
_hash_value = calculate_hash(_stack);
7261
}
7362

7463
// number of stack frames captured

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

+9-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,11 @@ class MemTracker;
5656
class NativeCallStack : public StackObj {
5757
private:
5858
address _stack[NMT_TrackingStackDepth];
59-
unsigned int _hash_value;
6059
static const NativeCallStack _empty_stack;
6160
public:
6261
// Default ctor creates an empty stack.
6362
// (it may make sense to remove this altogether but its used in a few places).
64-
NativeCallStack() : _hash_value(0) {
63+
NativeCallStack() {
6564
memset(_stack, 0, sizeof(_stack));
6665
}
6766

@@ -83,9 +82,6 @@ class NativeCallStack : public StackObj {
8382
}
8483

8584
inline bool equals(const NativeCallStack& other) const {
86-
// compare hash values
87-
if (hash() != other.hash()) return false;
88-
// compare each frame
8985
return compare(other) == 0;
9086
}
9187

@@ -94,7 +90,14 @@ class NativeCallStack : public StackObj {
9490
return _stack[index];
9591
}
9692

97-
unsigned int hash() const { return _hash_value; }
93+
// Helper; calculates a hash value over the stack frames in this stack
94+
unsigned int calculate_hash() const {
95+
uintptr_t hash = 0;
96+
for (int i = 0; i < NMT_TrackingStackDepth; i++) {
97+
hash += (uintptr_t)_stack[i];
98+
}
99+
return hash;
100+
}
98101

99102
void print_on(outputStream* out) const;
100103
void print_on(outputStream* out, int indent) const;

‎test/hotspot/jtreg/ProblemList.txt

-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java 8241293 macosx-x64
8585
runtime/cds/appcds/jigsaw/modulepath/ModulePathAndCP_JFR.java 8253437 windows-x64
8686
runtime/cds/DeterministicDump.java 8253495 generic-all
8787
runtime/jni/terminatedThread/TestTerminatedThread.java 8219652 aix-ppc64
88-
runtime/NMT/CheckForProperDetailStackTrace.java 8261520 generic-all
8988
runtime/ReservedStack/ReservedStackTest.java 8231031 generic-all
9089
containers/docker/TestJFRWithJMX.java 8256417 linux-5.4.17-2011.5.3.el8uek.x86_64
9190

0 commit comments

Comments
 (0)
Please sign in to comment.