@@ -773,69 +773,25 @@ void InstanceStackChunkKlass::fix_thawed_frame(stackChunkOop chunk, const frame&
773
773
template <typename OopT>
774
774
class StackChunkVerifyBitmapClosure : public BitMapClosure {
775
775
stackChunkOop _chunk;
776
- intptr_t * _top;
777
- intptr_t * _next;
778
776
public:
779
777
int _count;
780
- bool _exact; // whether or not the top, and therefore the count, is exact
781
- StackChunkVerifyBitmapClosure (stackChunkOop chunk) : _chunk(chunk), _count(0 ) {
782
- find_frame_top (StackChunkFrameStream<true >(chunk));
783
- log_develop_trace (jvmcont)(" debug_verify_stack_chunk bitmap stack top: " INTPTR_FORMAT, p2i (_top));
784
- }
778
+
779
+ StackChunkVerifyBitmapClosure (stackChunkOop chunk) : _chunk(chunk), _count(0 ) {}
785
780
786
781
bool do_bit (BitMap::idx_t index) override {
787
782
OopT* p = _chunk->address_for_bit <OopT>(index );
788
- #if (defined(X86) || defined(AARCH64)) && !defined(ZERO)
789
- if ((intptr_t *)p < _top && (intptr_t *)p != _chunk->sp_address () - frame::sender_sp_offset) return true ; // skip oops that are not seen by the oopmap scan
790
- #else
791
- Unimplemented ();
792
- #endif
793
-
794
- log_develop_trace (jvmcont)(" debug_verify_stack_chunk bitmap oop p: " INTPTR_FORMAT " index: " SIZE_FORMAT " bit_offset: " SIZE_FORMAT,
795
- p2i (p), index , _chunk->bit_offset ());
796
783
_count++;
797
- if (SafepointSynchronize::is_at_safepoint ()) return true ;
798
-
799
- oop obj = safe_load (p);
800
- assert ((!_exact && (intptr_t *)p < _next) || obj == nullptr || is_good_oop (obj),
801
- " p: " INTPTR_FORMAT " obj: " INTPTR_FORMAT " index: " SIZE_FORMAT " bit_offset: " SIZE_FORMAT,
802
- p2i (p), p2i ((oopDesc*)obj), index , _chunk->bit_offset ());
803
- return true ; // continue processing
804
- }
805
784
806
- void find_frame_top (const StackChunkFrameStream<true >& f) {
807
- // We do this just so that the count is the same as the oopmap scan for verification purposes, but for GC traveral it's not important.
808
- _next = nullptr ;
809
- _exact = true ;
810
- if (f.is_interpreted ()) {
811
- ResourceMark rm;
812
- InterpreterOopMap mask;
813
- frame fr = f.to_frame ();
814
- fr.interpreted_frame_oop_map (&mask);
815
- #if (defined(X86) || defined(AARCH64)) && !defined(ZERO)
816
- _top = fr.addr_at (frame::interpreter_frame_initial_sp_offset) - mask.expression_stack_size ();
817
- #else
818
- Unimplemented ();
819
- _top = 0 ;
820
- #endif
821
- } else if (f.is_compiled ()) {
822
- Method* callee = f.cb ()->as_compiled_method ()->attached_method_before_pc (f.pc ());
823
- if (callee != nullptr ) {
824
- int outgoing_args_words = (callee->num_stack_arg_slots () * VMRegImpl::stack_slot_size) >> LogBytesPerWord;
825
- _top = f.unextended_sp () + outgoing_args_words;
826
- } else {
827
- _top = f.unextended_sp ();
828
- #if (defined(X86) || defined(AARCH64)) && !defined(ZERO)
829
- _next = _top + f.cb ()->frame_size () - frame::sender_sp_offset;
830
- #else
831
- Unimplemented ();
832
- _next = 0 ;
833
- #endif
834
- _exact = false ;
835
- }
836
- } else {
837
- _top = f.unextended_sp ();
785
+ log_develop_trace (jvmcont)(" debug_verify_stack_chunk bitmap p: " INTPTR_FORMAT " i: " SIZE_FORMAT, p2i (p), index );
786
+
787
+ if (!SafepointSynchronize::is_at_safepoint ()) {
788
+ oop obj = safe_load (p);
789
+ assert (obj == nullptr || is_good_oop (obj),
790
+ " p: " INTPTR_FORMAT " obj: " INTPTR_FORMAT " index: " SIZE_FORMAT " bit_offset: " SIZE_FORMAT,
791
+ p2i (p), p2i ((oopDesc*)obj), index , _chunk->bit_offset ());
838
792
}
793
+
794
+ return true ; // continue processing
839
795
}
840
796
};
841
797
@@ -1041,20 +997,17 @@ bool InstanceStackChunkKlass::verify(oop obj, size_t* out_size, int* out_oops, i
1041
997
1042
998
if (chunk->has_bitmap ()) {
1043
999
assert (chunk->bitmap ().size () == chunk->bit_offset () + (size_t )(chunk->stack_size () << (UseCompressedOops ? 1 : 0 )), " bitmap().size(): %zu bit_offset: %zu stack_size: %d" , chunk->bitmap ().size (), chunk->bit_offset (), chunk->stack_size ());
1044
- bool exact;
1045
1000
int oop_count;
1046
1001
if (UseCompressedOops) {
1047
1002
StackChunkVerifyBitmapClosure<narrowOop> bitmap_closure (chunk);
1048
1003
chunk->bitmap ().iterate(&bitmap_closure, chunk->bit_index_for ((narrowOop*)(chunk->sp_address () - metadata_words ())), chunk->bit_index_for ((narrowOop*)chunk->end_address ()));
1049
- exact = bitmap_closure._exact ;
1050
1004
oop_count = bitmap_closure._count ;
1051
1005
} else {
1052
1006
StackChunkVerifyBitmapClosure<oop> bitmap_closure (chunk);
1053
1007
chunk->bitmap ().iterate(&bitmap_closure, chunk->bit_index_for ((oop*)(chunk->sp_address () - metadata_words ())), chunk->bit_index_for ((oop*)chunk->end_address ()));
1054
- exact = bitmap_closure._exact ;
1055
1008
oop_count = bitmap_closure._count ;
1056
1009
}
1057
- assert (exact ? oop_count == closure. _num_oops : oop_count > = closure._num_oops , " bitmap_closure._count: %d closure._num_oops: %d" , oop_count, closure._num_oops );
1010
+ assert (oop_count == closure._num_oops , " bitmap_closure._count: %d closure._num_oops: %d" , oop_count, closure._num_oops );
1058
1011
}
1059
1012
1060
1013
return true ;
0 commit comments