Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8272563: assert(is_double_stack() && !is_virtual()) failed: type check #5164

Closed
wants to merge 4 commits into from
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/hotspot/share/gc/shared/c1/cardTableBarrierSetC1.cpp
Expand Up @@ -67,6 +67,8 @@ void CardTableBarrierSetC1::post_barrier(LIRAccess& access, LIR_OprDesc* addr, L
#else
LIR_Opr tmp = gen->new_pointer_register();
if (TwoOperandLIRForm) {
LIR_Opr addr_opr = LIR_OprFact::address(new LIR_Address(addr, addr->type()));
__ leal(addr_opr, tmp);
__ move(addr, tmp);
fmatte1 marked this conversation as resolved.
Show resolved Hide resolved
__ unsigned_shift_right(tmp, CardTable::card_shift, tmp);
} else {
Expand Down