You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when do "jump_fcontext", we have an opportunity to pass "void*" to target coroutine. how to do with that argument is up to the target coroutine.
some time we do want to do some 'clean up job' right before return to the target coroutine. because there exist some task that must not be executed on current stack. for example , free current stack memory.
and for muti-threaded environment, we do need a way to distinguish where a context-switch is finished.
by changing jump_fcontext to transfer_t jump_fcontext( fcontext_t const to, void * vp, transfer_t (* fn)( fcontext_t from, void*));
we can now:
pass a cleanup function to clean stack right after stack pointer got swapped.
notify the scheduler that "from coroutine context" is now safe to be used as "to coroutine".
record "from" that does not relay on jumpee coroutine to do the job. that makes code cleaner and easy to understand.
doing things before return to target is a bit faster. because the registers are not restored and then saved-again by "the code that called when jump_context returns" with is in fact doing things for previous coroutine.
changes to the assembly code
right after loading RSP from "to".
add this lines
test %rdx, %rdx // test for 3th argument, aka callback_fn
je skip_call
mov %rax, %rsi // pass from:fctx argument to callback_fn as first argument, %rdi is already the same argument
call * %rdx // call callback_fn, and use its result as return , do not touch %rax:%rdx pair.
skip_call:
// original code that retore registers
The text was updated successfully, but these errors were encountered:
executing a function before resuming a coroutine is done via ontop_fcontext() - wouldn't this satisfy your needs?
the API satisfy my needs. but when I look into the implementation, no.
the "ontop_fcontext" invoke fn after it "restored" the context. which is then clobbered and callee saved by fn.
that hurt performance.
rational
when do "jump_fcontext", we have an opportunity to pass "void*" to target coroutine. how to do with that argument is up to the target coroutine.
some time we do want to do some 'clean up job' right before return to the target coroutine. because there exist some task that must not be executed on current stack. for example , free current stack memory.
and for muti-threaded environment, we do need a way to distinguish where a context-switch is finished.
by changing jump_fcontext to
transfer_t jump_fcontext( fcontext_t const to, void * vp, transfer_t (* fn)( fcontext_t from, void*));
we can now:
changes to the assembly code
right after loading RSP from "to".
add this lines
The text was updated successfully, but these errors were encountered: