summary refs log tree commit diff
path: root/src/rt/arch/aarch64/morestack.S
blob: c5e412140e44a4dd54e6f504d51dac8c1087003f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include "macros.S"

// Mark stack as non-executable
#if defined(__linux__) && defined(__ELF__)
.section	.note.GNU-stack, "", %progbits
#endif

/* See i386/morestack.S for the lengthy, general explanation. */

#if defined(__APPLE__)
#define MORESTACK ___morestack
#define STACK_EXHAUSTED _rust_stack_exhausted@plt
#else
#define MORESTACK __morestack
#define STACK_EXHAUSTED rust_stack_exhausted
#endif

.global STACK_EXHAUSTED

#if defined(__APPLE__)
.private_extern MORESTACK
#else
.hidden MORESTACK
#endif

#if !defined(__APPLE__)
.type MORESTACK,%function
#endif

// FIXME(AARCH64): this might not be perfectly right but works for now
MORESTACK:
	.cfi_startproc
	bl STACK_EXHAUSTED
	// the above function ensures that it never returns
	.cfi_endproc