Skip to content

Commit

Permalink
8274501: c2i entry barriers read int as long on AArch64
Browse files Browse the repository at this point in the history
Reviewed-by: shade, kbarrett, aph
  • Loading branch information
fisk committed Sep 30, 2021
1 parent c57ed22 commit f08180f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -276,7 +276,7 @@ void BarrierSetAssembler::c2i_entry_barrier(MacroAssembler* masm) {
__ load_method_holder_cld(rscratch1, rmethod);

// Is it a strong CLD?
__ ldr(rscratch2, Address(rscratch1, ClassLoaderData::keep_alive_offset()));
__ ldrw(rscratch2, Address(rscratch1, ClassLoaderData::keep_alive_offset()));
__ cbnz(rscratch2, method_live);

// Is it a weak but alive CLD?
Expand Down

1 comment on commit f08180f

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.