Skip to content

Commit d1edda8

Browse files
committedAug 16, 2022
8292338: aarch64: Use cbnz instruction in gen_continuation_enter when possible
Reviewed-by: haosun, shade, aph
1 parent 21f4eb2 commit d1edda8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -1050,8 +1050,7 @@ static void gen_continuation_enter(MacroAssembler* masm,
10501050

10511051
fill_continuation_entry(masm);
10521052

1053-
__ cmp(c_rarg2, (u1)0);
1054-
__ br(Assembler::NE, call_thaw);
1053+
__ cbnz(c_rarg2, call_thaw);
10551054

10561055
address mark = __ pc();
10571056
__ trampoline_call(resolve);
@@ -1076,8 +1075,7 @@ static void gen_continuation_enter(MacroAssembler* masm,
10761075

10771076
fill_continuation_entry(masm);
10781077

1079-
__ cmp(c_rarg2, (u1)0);
1080-
__ br(Assembler::NE, call_thaw);
1078+
__ cbnz(c_rarg2, call_thaw);
10811079

10821080
address mark = __ pc();
10831081
__ trampoline_call(resolve);

0 commit comments

Comments
 (0)
Please sign in to comment.