Skip to content

Commit fbc0744

Browse files
committedJan 10, 2022
Re-disable an assert that fails on AArch64
1 parent dd6df46 commit fbc0744

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/hotspot/share/oops/instanceStackChunkKlass.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ class RelativizeDerivedPointers : public DerivedOopClosure {
291291
// at this point, we've seen a non-offset value *after* we've read the base, but we write the offset *before* fixing the base,
292292
// so we are guaranteed that the value in derived_loc is consistent with base (i.e. points into the object).
293293
intptr_t offset = derived_int_val - cast_from_oop<intptr_t>(base);
294+
assert (offset >= 0, "Derived pointer offset is %ld", offset); // an offset of 0 was observed on AArch64
294295
// assert (offset >= 0 && offset <= (base->size() << LogHeapWordSize), "offset: %ld size: %d", offset, (base->size() << LogHeapWordSize)); -- base might be invalid at this point
295296
Atomic::store((intptr_t*)derived_loc, -offset); // there could be a benign race here; we write a negative offset to let the sign bit signify it's an offset rather than an address
296297
} else {
@@ -842,8 +843,8 @@ class StackChunkVerifyDerivedPointersClosure : public DerivedOopClosure {
842843
? -offset
843844
: offset - cast_from_oop<intptr_t>(base);
844845

845-
assert (offset >= 0 && offset <= (intptr_t)(base->size() << LogHeapWordSize), "offset: %ld base->size: %zu relative: %d", offset, base->size() << LogHeapWordSize, *(intptr_t*)derived_loc <= 0);
846-
} else {
846+
// Has been seen to fail on AArch64 for some reason
847+
// assert (offset >= 0 && offset <= (intptr_t)(base->size() << LogHeapWordSize), "offset: %ld base->size: %zu relative: %d", offset, base->size() << LogHeapWordSize, *(intptr_t*)derived_loc <= 0); } else {
847848
assert (*derived_loc == derived_pointer(0), "");
848849
}
849850
}

0 commit comments

Comments
 (0)
Please sign in to comment.