ruby/coroutine/arm32/Context.S
Nobuyoshi Nakada 1f39184bc7 Substitute coroutine_transfer with prefixed symbol in Makefile
```
coroutine/arm64/Context.S:31:57: error: invoking macro TOKEN_PASTE argument 1: empty macro arguments are undefined in ISO C90 [-Wpedantic]
   31 | .global PREFIXED_SYMBOL(SYMBOL_PREFIX,coroutine_transfer)
      |                                                         ^
```
2024-10-08 23:29:49 +09:00

32 lines
716 B
ArmAsm

##
## This file is part of the "Coroutine" project and released under the MIT License.
##
## Created by Samuel Williams on 10/5/2018.
## Copyright, 2018, by Samuel Williams.
##
#define TOKEN_PASTE(x,y) x##y
.file "Context.S"
.text
.globl PREFIXED_SYMBOL(coroutine_transfer)
.align 2
.type PREFIXED_SYMBOL(coroutine_transfer),%function
.syntax unified
PREFIXED_SYMBOL(coroutine_transfer):
# Save caller state (8 registers + return address)
push {r4-r11,lr}
# Save caller stack pointer
str sp, [r0]
# Restore callee stack pointer
ldr sp, [r1]
# Restore callee state (8 registers program counter)
pop {r4-r11,pc}
#if defined(__linux__) && defined(__ELF__)
.section .note.GNU-stack,"",%progbits
#endif