Skip to content

Commit d260a4e

Browse files
committedJul 1, 2022
8289434: x86_64: Improve comment on gen_continuation_enter()
Reviewed-by: kvn
1 parent 124c63c commit d260a4e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

‎src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -1314,11 +1314,11 @@ static void gen_continuation_enter(MacroAssembler* masm,
13141314

13151315
Label L_thaw, L_exit;
13161316

1317-
// If continuation, call to thaw. Otherwise, resolve the call and exit.
1317+
// If isContinue, call to thaw. Otherwise, call Continuation.enter(Continuation c, boolean isContinue)
13181318
__ testptr(reg_is_cont, reg_is_cont);
13191319
__ jccb(Assembler::notZero, L_thaw);
13201320

1321-
// --- Resolve path
1321+
// --- call Continuation.enter(Continuation c, boolean isContinue)
13221322

13231323
// Make sure the call is patchable
13241324
__ align(BytesPerWord, __ offset() + NativeCall::displacement_offset);
@@ -1330,7 +1330,10 @@ static void gen_continuation_enter(MacroAssembler* masm,
13301330
fatal("CodeCache is full at gen_continuation_enter");
13311331
}
13321332

1333-
// Call the resolve stub
1333+
// The call needs to be resolved. There's a special case for this in
1334+
// SharedRuntime::find_callee_info_helper() which calls
1335+
// LinkResolver::resolve_continuation_enter() which resolves the call to
1336+
// Continuation.enter(Continuation c, boolean isContinue).
13341337
AddressLiteral resolve(SharedRuntime::get_resolve_static_call_stub(),
13351338
relocInfo::static_call_type);
13361339
__ call(resolve);

0 commit comments

Comments
 (0)
Please sign in to comment.