Skip to content

Commit 661035a

Browse files
committedNov 2, 2021
Fix chunk bitmap verification
1 parent 7b7e39b commit 661035a

File tree

1 file changed

+12
-59
lines changed

1 file changed

+12
-59
lines changed
 

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

+12-59
Original file line numberDiff line numberDiff line change
@@ -773,69 +773,25 @@ void InstanceStackChunkKlass::fix_thawed_frame(stackChunkOop chunk, const frame&
773773
template <typename OopT>
774774
class StackChunkVerifyBitmapClosure : public BitMapClosure {
775775
stackChunkOop _chunk;
776-
intptr_t* _top;
777-
intptr_t* _next;
778776
public:
779777
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) {}
785780

786781
bool do_bit(BitMap::idx_t index) override {
787782
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());
796783
_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-
}
805784

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());
838792
}
793+
794+
return true; // continue processing
839795
}
840796
};
841797

@@ -1041,20 +997,17 @@ bool InstanceStackChunkKlass::verify(oop obj, size_t* out_size, int* out_oops, i
1041997

1042998
if (chunk->has_bitmap()) {
1043999
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;
10451000
int oop_count;
10461001
if (UseCompressedOops) {
10471002
StackChunkVerifyBitmapClosure<narrowOop> bitmap_closure(chunk);
10481003
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;
10501004
oop_count = bitmap_closure._count;
10511005
} else {
10521006
StackChunkVerifyBitmapClosure<oop> bitmap_closure(chunk);
10531007
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;
10551008
oop_count = bitmap_closure._count;
10561009
}
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);
10581011
}
10591012

10601013
return true;

0 commit comments

Comments
 (0)
Please sign in to comment.