Skip to content

Commit

Permalink
8323595: is_aligned(p, alignof(OopT))) assertion fails in Jetty witho…
Browse files Browse the repository at this point in the history
…ut compressed OOPs

Reviewed-by: fparain, dlong
  • Loading branch information
pchilano committed Jan 18, 2024
1 parent cbfddf4 commit 52f787f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/runtime/continuationFreezeThaw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2181,7 +2181,7 @@ void ThawBase::clear_bitmap_bits(address start, address end) {
log_develop_trace(continuations)("clearing bitmap for " INTPTR_FORMAT " - " INTPTR_FORMAT, p2i(start), p2i(effective_end));
stackChunkOop chunk = _cont.tail();
chunk->bitmap().clear_range(chunk->bit_index_for(start), chunk->bit_index_for(effective_end));
assert(chunk->bitmap().count_one_bits(chunk->bit_index_for(effective_end), chunk->bit_index_for(end)) == 0, "bits should not be set");
assert(effective_end == end || !chunk->bitmap().at(chunk->bit_index_for(effective_end)), "bit should not be set");
}

NOINLINE void ThawBase::recurse_thaw_interpreted_frame(const frame& hf, frame& caller, int num_frames) {
Expand Down

0 comments on commit 52f787f

Please sign in to comment.