]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4re-core/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/arc/__longjmp.S
Update
[l4.git] / l4 / pkg / l4re-core / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / arc / __longjmp.S
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  */
6
7 #include <sysdep.h>
8
9 ;@ r0 = jump buffer from which regs will be restored
10 ;@ r1 = value that setjmp( ) will return due to this longjmp
11
12 ENTRY(__longjmp)
13
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]
27
28         ld   blink, [r0,60]     ; load it early enough to not stall the pipeline
29         ld   fp,    [r0,52]
30         ld   sp,    [r0,56]
31
32         mov.f  r0, r1   ; get the setjmp return value(due to longjmp) in place
33
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
36
37 END(__longjmp)
38 libc_hidden_def(__longjmp)