sparc64: add basic support
[uclibc-ng.git] / libc / sysdeps / linux / arc / __longjmp.S
blob91d1852af6a48281c83a4afeebc18a227b888269
1 /*
2  * Copyright (C) 2013 Synopsys, Inc. (www.synopsys.com)
3  *
4  * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
5  */
7 #include <sysdep.h>
9 ;@ r0 = jump buffer from which regs will be restored
10 ;@ r1 = value that setjmp( ) will return due to this longjmp
12 ENTRY(__longjmp)
14         ld_s r13, [r0]
15         ld_s r14, [r0,4]
16         ld   r15, [r0,8]
17         ld   r16, [r0,12]
18         ld   r17, [r0,16]
19         ld   r18, [r0,20]
20         ld   r19, [r0,24]
21         ld   r20, [r0,28]
22         ld   r21, [r0,32]
23         ld   r22, [r0,36]
24         ld   r23, [r0,40]
25         ld   r24, [r0,44]
26         ld   r25, [r0,48]
28         ld   blink, [r0,60]     ; load it early enough to not stall the pipeline
29         ld   fp,    [r0,52]
30         ld   sp,    [r0,56]
32         mov.f  r0, r1   ; get the setjmp return value(due to longjmp) in place
34         j.d    [blink]  ; to caller of setjmp location, right after the call
35         mov.z  r0, 1    ; can't let setjmp return 0 when it is due to longjmp
37 END(__longjmp)
38 libc_hidden_def(__longjmp)