@@ -273,14 +273,14 @@ class RelativizeDerivedPointers : public DerivedOopClosure {
273
273
274
274
OrderAccess::loadload ();
275
275
intptr_t derived_int_val = Atomic::load ((intptr_t *)derived_loc); // *derived_loc;
276
- if (derived_int_val <= 0 ) { // an offset of 0 was observed on AArch64
276
+ if (derived_int_val <= 0 ) {
277
277
return ;
278
278
}
279
279
280
280
// 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,
281
281
// so we are guaranteed that the value in derived_loc is consistent with base (i.e. points into the object).
282
282
intptr_t offset = derived_int_val - cast_from_oop<intptr_t >(base);
283
- assert (offset >= 0 , " Derived pointer offset is %ld" , offset); // an offset of 0 was observed on AArch64
283
+ assert (offset >= 0 , " Derived pointer offset is %ld" , offset);
284
284
// assert (offset >= 0 && offset <= (base->size() << LogHeapWordSize), "offset: %ld size: %d", offset, (base->size() << LogHeapWordSize)); -- base might be invalid at this point
285
285
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
286
286
} else {
@@ -304,17 +304,11 @@ class DerelativizeDerivedPointers : public DerivedOopClosure {
304
304
305
305
// 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,
306
306
// so we are guaranteed that the value in derived_loc is consistent with base (i.e. points into the object).
307
- if (offset <= 0 ) { // an offset of 0 was observed on AArch64
307
+ if (offset <= 0 ) {
308
308
offset = -offset;
309
309
assert (offset >= 0 && (size_t )offset <= (base->size () << LogHeapWordSize), " " );
310
310
Atomic::store ((intptr_t *)derived_loc, cast_from_oop<intptr_t >(base) + offset);
311
311
}
312
- #ifdef ASSERT
313
- else {
314
- offset = offset - cast_from_oop<intptr_t >(base);
315
- assert (offset >= 0 && (size_t )offset <= (base->size () << LogHeapWordSize), " offset: " PTR_FORMAT " size: %zu" , offset, (base->size () << LogHeapWordSize));
316
- }
317
- #endif
318
312
}
319
313
}
320
314
};
@@ -744,10 +738,10 @@ class StackChunkVerifyBitmapClosure : public BitMapClosure {
744
738
745
739
class StackChunkVerifyOopsClosure : public OopClosure {
746
740
stackChunkOop _chunk;
747
- intptr_t * _sp ;
741
+ intptr_t * _unextended_sp ;
748
742
int _count;
749
743
public:
750
- StackChunkVerifyOopsClosure (stackChunkOop chunk, intptr_t * sp ) : _chunk(chunk), _sp(sp ), _count(0 ) {}
744
+ StackChunkVerifyOopsClosure (stackChunkOop chunk, intptr_t * unextended_sp ) : _chunk(chunk), _unextended_sp(unextended_sp ), _count(0 ) {}
751
745
int count () { return _count; }
752
746
void do_oop (oop* p) override { (_chunk->has_bitmap () && UseCompressedOops) ? do_oop_work ((narrowOop*)p) : do_oop_work (p); }
753
747
void do_oop (narrowOop* p) override { do_oop_work (p); }
@@ -768,8 +762,10 @@ class StackChunkVerifyOopsClosure : public OopClosure {
768
762
769
763
class StackChunkVerifyDerivedPointersClosure : public DerivedOopClosure {
770
764
stackChunkOop _chunk;
765
+ intptr_t * _unextended_sp;
771
766
public:
772
- StackChunkVerifyDerivedPointersClosure (stackChunkOop chunk) : _chunk(chunk) {}
767
+
768
+ StackChunkVerifyDerivedPointersClosure (stackChunkOop chunk, intptr_t * unextended_sp) : _chunk(chunk), _unextended_sp(unextended_sp) {}
773
769
774
770
virtual void do_derived_oop (oop* base_loc, derived_pointer* derived_loc) override {
775
771
log_develop_trace (jvmcont)(" debug_verify_stack_chunk base: " INTPTR_FORMAT " derived: " INTPTR_FORMAT, p2i (base_loc), p2i (derived_loc));
@@ -784,11 +780,12 @@ class StackChunkVerifyDerivedPointersClosure : public DerivedOopClosure {
784
780
ZGC_ONLY (assert (!UseZGC || ZAddress::is_good (cast_from_oop<uintptr_t >(base)), " " );)
785
781
OrderAccess::loadload ();
786
782
intptr_t offset = Atomic::load ((intptr_t *)derived_loc);
787
- offset = offset <= 0 // an offset of 0 was observed on AArch64
783
+ offset = offset <= 0
788
784
? -offset
789
785
: offset - cast_from_oop<intptr_t >(base);
790
786
791
787
// Has been seen to fail on AArch64 for some reason
788
+ // It looks as if a derived pointer appears live in the oopMap but isn't used.
792
789
// 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);
793
790
} else {
794
791
assert (*derived_loc == derived_pointer (0 ), " " );
@@ -850,11 +847,11 @@ class VerifyStackClosure {
850
847
// }
851
848
// }
852
849
853
- StackChunkVerifyOopsClosure oops_closure (_chunk, f.sp ());
850
+ StackChunkVerifyOopsClosure oops_closure (_chunk, f.unextended_sp ());
854
851
f.iterate_oops (&oops_closure, map);
855
852
assert (oops_closure.count () == num_oops, " oops: %d oopmap->num_oops(): %d" , oops_closure.count (), num_oops);
856
853
857
- StackChunkVerifyDerivedPointersClosure derived_oops_closure (_chunk);
854
+ StackChunkVerifyDerivedPointersClosure derived_oops_closure (_chunk, f. unextended_sp () );
858
855
f.iterate_derived_pointers (&derived_oops_closure, map);
859
856
860
857
_callee_interpreted = f.is_interpreted ();
0 commit comments