1129202Scognet/*	$NetBSD: setjmp.S,v 1.5 2003/04/05 23:08:51 bjh21 Exp $	*/
2129202Scognet
3129202Scognet/*
4129202Scognet * Copyright (c) 1997 Mark Brinicombe
5129202Scognet * All rights reserved.
6129202Scognet *
7129202Scognet * Redistribution and use in source and binary forms, with or without
8129202Scognet * modification, are permitted provided that the following conditions
9129202Scognet * are met:
10129202Scognet * 1. Redistributions of source code must retain the above copyright
11129202Scognet *    notice, this list of conditions and the following disclaimer.
12129202Scognet * 2. Redistributions in binary form must reproduce the above copyright
13129202Scognet *    notice, this list of conditions and the following disclaimer in the
14129202Scognet *    documentation and/or other materials provided with the distribution.
15129202Scognet * 3. All advertising materials mentioning features or use of this software
16129202Scognet *    must display the following acknowledgement:
17129202Scognet *	This product includes software developed by Mark Brinicombe
18129202Scognet * 4. Neither the name of the University nor the names of its contributors
19129202Scognet *    may be used to endorse or promote products derived from this software
20129202Scognet *    without specific prior written permission.
21129202Scognet *
22129202Scognet * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
23129202Scognet * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24129202Scognet * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25129202Scognet * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
26129202Scognet * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27129202Scognet * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28129202Scognet * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29129202Scognet * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30129202Scognet * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31129202Scognet * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32129202Scognet * SUCH DAMAGE.
33129202Scognet */
34129202Scognet
35129202Scognet#include <machine/asm.h>
36129202Scognet__FBSDID("$FreeBSD$");
37129202Scognet/*
38129202Scognet * C library -- setjmp, longjmp
39129202Scognet *
40129202Scognet *	longjmp(a,v)
41129202Scognet * will generate a "return(v)" from the last call to
42129202Scognet *	setjmp(a)
43129202Scognet * by restoring registers from the stack.
44129202Scognet * The previous signal state is restored.
45129202Scognet */
46129202Scognet
47129202ScognetENTRY(setjmp)
48129202Scognet	/* Block all signals and retrieve the old signal mask */
49129202Scognet	stmfd	sp!, {r0, r14}
50137464Scognet	add	r2, r0, #(25 * 4) /* oset */
51135685Scognet	mov	r0, #0x00000001 /* SIG_BLOCK */
52135685Scognet	mov	r1, #0 /* set */
53129202Scognet
54135685Scognet	bl	PIC_SYM(_C_LABEL(sigprocmask), PLT)
55129202Scognet
56129202Scognet	ldmfd	sp!, {r0, r14}
57129202Scognet
58129202Scognet	ldr	r1, .Lsetjmp_magic
59129202Scognet	str	r1, [r0], #4
60129202Scognet
61193145Smarcel#ifdef __SOFTFP__
62129202Scognet	add	r0, r0, #52
63129202Scognet#else
64129202Scognet	/* Store fp registers */
65129202Scognet	sfm	f4, 4, [r0], #48
66129202Scognet	/* Store fpsr */
67129202Scognet	rfs	r1
68129202Scognet	str	r1, [r0], #0x0004
69193145Smarcel#endif	/* __SOFTFP__ */
70129202Scognet	/* Store integer registers */
71129202Scognet        stmia	r0, {r4-r14}
72129202Scognet        mov	r0, #0x00000000
73137464Scognet	RET
74129202Scognet
75129202Scognet.Lsetjmp_magic:
76129202Scognet	.word	_JB_MAGIC_SETJMP
77129202Scognet
78129202Scognet
79129202Scognet.weak _C_LABEL(longjmp)
80129202Scognet.set _C_LABEL(longjmp), _C_LABEL(__longjmp)
81129202ScognetENTRY(__longjmp)
82129202Scognet	ldr	r2, .Lsetjmp_magic
83129202Scognet	ldr	r3, [r0]
84129202Scognet	teq	r2, r3
85129202Scognet	bne	botch
86129202Scognet
87129202Scognet
88129202Scognet	/* Set signal mask */
89129202Scognet	stmfd	sp!, {r0, r1, r14}
90129202Scognet	sub	sp, sp, #4	/* align the stack */
91129202Scognet
92137464Scognet	add	r1, r0, #(25 * 4) /* Signal mask */
93135685Scognet	mov	r0, #3 /* SIG_SETMASK */
94135685Scognet	mov	r2, #0
95135685Scognet	bl	PIC_SYM(_C_LABEL(sigprocmask), PLT)
96129202Scognet
97129202Scognet	add	sp, sp, #4	/* unalign the stack */
98129202Scognet	ldmfd	sp!, {r0, r1, r14}
99129202Scognet
100129202Scognet	add	r0, r0, #4
101193145Smarcel#ifdef __SOFTFP__
102129202Scognet	add	r0, r0, #52
103129202Scognet#else
104129202Scognet	/* Restore fp registers */
105129202Scognet	lfm	f4, 4, [r0], #48
106129202Scognet	/* Restore FPSR */
107129202Scognet	ldr	r4, [r0], #0x0004
108129202Scognet	wfs	r4
109193145Smarcel#endif	/* __SOFTFP__ */
110129202Scognet	/* Restore integer registers */
111129202Scognet        ldmia	r0, {r4-r14}
112129202Scognet
113129202Scognet	/* Validate sp and r14 */
114129202Scognet	teq	sp, #0
115129202Scognet	teqne	r14, #0
116129202Scognet	beq	botch
117129202Scognet
118129202Scognet	/* Set return value */
119129202Scognet
120129202Scognet	mov	r0, r1
121129202Scognet	teq	r0, #0x00000000
122129202Scognet	moveq	r0, #0x00000001
123137464Scognet	RET
124129202Scognet
125129202Scognet	/* validation failed, die die die. */
126129202Scognetbotch:
127129202Scognet	bl	PIC_SYM(_C_LABEL(longjmperror), PLT)
128129202Scognet	bl	PIC_SYM(_C_LABEL(abort), PLT)
129129202Scognet	b	. - 8		/* Cannot get here */
130