2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
9 /******************************************************************************
14 void longjmp (jmp_buf env, int val);
17 Save the current context so that you can return to it later.
20 env - The context/environment to restore
21 val - This value is returned by setjmp() when you return to the
22 saved context. You cannot return 0. If val is 0, then
23 setjmp() returns with 1.
26 This function doesn't return.
37 ... this code is executed after setjmp() returns ...
39 // This is no good example on how to use this function
40 // You should not do that
48 ... this code is executed if you call longjmp(env) ...
60 ******************************************************************************/
66 .globl AROS_CDEFNAME(longjmp)
67 .type AROS_CDEFNAME(longjmp),@function
69 .set FirstArg, 4 /* Skip Return-Adress */
73 AROS_CDEFNAME
(longjmp
):
75 move.
l env
(sp
),a0
/* save area pointer */
78 moveq.
l #1,d0 /* make sure it isn't 0 */
80 move.
l 4(a0
),sp
/* restore SP */
81 move.
l 0(a0
),(sp
) /* restore PC */
82 movem.
l 8(a0
),d2-d7
/a2-a6
/* restore remaining non-scratch regs */
85 /* New version adapted from libnix instead of ixemul.
86 * Note the slightly different register save order.
88 addq.w
#4,sp /* returns to other address */
89 move.
l (sp
)+,a0
/* get address of jmp_buf */
90 move.
l (sp
)+,d0
/* get return code */
92 moveq.
l #1,d0 /* make sure it isn't 0 */
94 move.
l 48(a0
),sp
/* restore sp */
95 move.
l (a0
)+,(sp
) /* set return address */
96 movem.
l (a0
),d2-d7
/a2-a6
/* restore all registers except scratch and sp */
101 The jmp_buf is filled as follows (d0/d1/a0/a1 are not saved):
103 _jmp_buf offset contents