2018-11-20 09:59:10 +00:00
|
|
|
##
|
2018-11-20 10:16:29 +00:00
|
|
|
## This file is part of the "Coroutine" project and released under the MIT License.
|
2018-11-20 09:59:10 +00:00
|
|
|
##
|
|
|
|
## Created by Samuel Williams on 10/5/2018.
|
2019-12-28 12:41:47 +13:00
|
|
|
## Copyright, 2018, by Samuel Williams.
|
2018-11-20 09:59:10 +00:00
|
|
|
##
|
|
|
|
|
2019-05-16 18:58:17 +09:00
|
|
|
#define TOKEN_PASTE(x,y) x##y
|
|
|
|
#define PREFIXED_SYMBOL(prefix,name) TOKEN_PASTE(prefix,name)
|
|
|
|
|
2018-11-20 09:59:10 +00:00
|
|
|
.text
|
|
|
|
|
2019-05-16 18:58:17 +09:00
|
|
|
.globl PREFIXED_SYMBOL(SYMBOL_PREFIX,coroutine_transfer)
|
|
|
|
PREFIXED_SYMBOL(SYMBOL_PREFIX,coroutine_transfer):
|
2018-11-20 09:59:10 +00:00
|
|
|
|
|
|
|
# Save caller state
|
|
|
|
pushq %rbp
|
|
|
|
pushq %rbx
|
|
|
|
pushq %r12
|
|
|
|
pushq %r13
|
|
|
|
pushq %r14
|
|
|
|
pushq %r15
|
2018-11-20 10:17:00 +00:00
|
|
|
|
2018-11-20 09:59:10 +00:00
|
|
|
# Save caller stack pointer
|
|
|
|
movq %rsp, (%rdi)
|
2018-11-20 10:17:00 +00:00
|
|
|
|
2018-11-20 09:59:10 +00:00
|
|
|
# Restore callee stack pointer
|
|
|
|
movq (%rsi), %rsp
|
2018-11-20 10:17:00 +00:00
|
|
|
|
2019-06-24 23:54:19 +12:00
|
|
|
# Restore callee state
|
2018-11-20 09:59:10 +00:00
|
|
|
popq %r15
|
|
|
|
popq %r14
|
|
|
|
popq %r13
|
|
|
|
popq %r12
|
|
|
|
popq %rbx
|
|
|
|
popq %rbp
|
2018-11-20 10:17:00 +00:00
|
|
|
|
2018-11-20 09:59:10 +00:00
|
|
|
# Put the first argument into the return value
|
2018-11-20 09:59:23 +00:00
|
|
|
movq %rdi, %rax
|
2018-11-20 10:17:00 +00:00
|
|
|
|
2018-11-20 09:59:10 +00:00
|
|
|
# We pop the return address and jump to it
|
|
|
|
ret
|
2018-11-24 11:35:34 +00:00
|
|
|
|
2021-03-04 22:12:58 +00:00
|
|
|
#if (defined(__linux__) || defined(__FreeBSD__)) && defined(__ELF__)
|
2018-11-24 11:35:34 +00:00
|
|
|
.section .note.GNU-stack,"",%progbits
|
|
|
|
#endif
|