__setjmp14.S revision 1.1 1 1.1 thorpej /* $NetBSD: __setjmp14.S,v 1.1 1998/09/29 03:01:37 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 1994, 1995 Carnegie-Mellon University.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Author: Chris G. Demetriou
8 1.1 thorpej *
9 1.1 thorpej * Permission to use, copy, modify and distribute this software and
10 1.1 thorpej * its documentation is hereby granted, provided that both the copyright
11 1.1 thorpej * notice and this permission notice appear in all copies of the
12 1.1 thorpej * software, derivative works or modified versions, and any portions
13 1.1 thorpej * thereof, and that both notices appear in supporting documentation.
14 1.1 thorpej *
15 1.1 thorpej * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
16 1.1 thorpej * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
17 1.1 thorpej * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
18 1.1 thorpej *
19 1.1 thorpej * Carnegie Mellon requests users of this software to return to
20 1.1 thorpej *
21 1.1 thorpej * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
22 1.1 thorpej * School of Computer Science
23 1.1 thorpej * Carnegie Mellon University
24 1.1 thorpej * Pittsburgh PA 15213-3890
25 1.1 thorpej *
26 1.1 thorpej * any improvements or extensions that they make and grant Carnegie the
27 1.1 thorpej * rights to redistribute these changes.
28 1.1 thorpej */
29 1.1 thorpej
30 1.1 thorpej #include <machine/asm.h>
31 1.1 thorpej
32 1.1 thorpej /*
33 1.1 thorpej * C library -- setjmp, longjmp
34 1.1 thorpej *
35 1.1 thorpej * longjmp(a,v)
36 1.1 thorpej * will generate a "return(v)" from
37 1.1 thorpej * the last call to
38 1.1 thorpej * setjmp(a)
39 1.1 thorpej * by restoring registers from the stack,
40 1.1 thorpej * and the previous signal state.
41 1.1 thorpej */
42 1.1 thorpej
43 1.1 thorpej .set noreorder
44 1.1 thorpej
45 1.1 thorpej LEAF(__setjmp14, 1)
46 1.1 thorpej LDGP(pv)
47 1.1 thorpej stq ra, (2 * 8)(a0) /* sc_pc = return address */
48 1.1 thorpej stq s0, (( 9 + 4) * 8)(a0) /* saved bits of sc_regs */
49 1.1 thorpej stq s1, ((10 + 4) * 8)(a0)
50 1.1 thorpej stq s2, ((11 + 4) * 8)(a0)
51 1.1 thorpej stq s3, ((12 + 4) * 8)(a0)
52 1.1 thorpej stq s4, ((13 + 4) * 8)(a0)
53 1.1 thorpej stq s5, ((14 + 4) * 8)(a0)
54 1.1 thorpej stq s6, ((15 + 4) * 8)(a0)
55 1.1 thorpej stq ra, ((26 + 4) * 8)(a0)
56 1.1 thorpej stq sp, ((30 + 4) * 8)(a0)
57 1.1 thorpej
58 1.1 thorpej /*
59 1.1 thorpej * get signal information
60 1.1 thorpej */
61 1.1 thorpej mov a0, s0 /* squirrel away ptr to sc */
62 1.1 thorpej
63 1.1 thorpej /* see what's blocked */
64 1.1 thorpej mov zero, a0 /* how (insignificant) */
65 1.1 thorpej mov zero, a1 /* set (NULL) */
66 1.1 thorpej lda a2, 648(s0) /* point to mask in sc */
67 1.1 thorpej CALL(__sigprocmask14)
68 1.1 thorpej
69 1.1 thorpej lda sp, -24(sp) /* sizeof struct sigaltstack */
70 1.1 thorpej mov zero, a0
71 1.1 thorpej mov sp, a1
72 1.1 thorpej CALL(__sigaltstack14)
73 1.1 thorpej ldl t0, 16(sp) /* offset of ss_flags */
74 1.1 thorpej lda sp, 24(sp) /* sizeof struct sigaltstack */
75 1.1 thorpej ldq ra, ((26 + 4) * 8)(s0) /* restore return address */
76 1.1 thorpej blt v0, botch /* check for error */
77 1.1 thorpej and t0, 0x1, t0 /* get SA_ONSTACK flag */
78 1.1 thorpej stq t0, (0 * 8)(s0) /* and save it in sc_onstack */
79 1.1 thorpej /*
80 1.1 thorpej * Restore old s0 and a0, and continue saving registers
81 1.1 thorpej */
82 1.1 thorpej mov s0, a0
83 1.1 thorpej ldq s0, (( 9 + 4) * 8)(a0)
84 1.1 thorpej
85 1.1 thorpej ldiq t0, 0xacedbade /* sigcontext magic number */
86 1.1 thorpej stq t0, ((31 + 4) * 8)(a0) /* magic in sc_regs[31] */
87 1.1 thorpej /* Too bad we can't check if we actually used FP */
88 1.1 thorpej ldiq t0, 1
89 1.1 thorpej stq t0, (36 * 8)(a0) /* say we've used FP. */
90 1.1 thorpej stt fs0, ((2 + 37) * 8)(a0) /* saved bits of sc_fpregs */
91 1.1 thorpej stt fs1, ((3 + 37) * 8)(a0)
92 1.1 thorpej stt fs2, ((4 + 37) * 8)(a0)
93 1.1 thorpej stt fs3, ((5 + 37) * 8)(a0)
94 1.1 thorpej stt fs4, ((6 + 37) * 8)(a0)
95 1.1 thorpej stt fs5, ((7 + 37) * 8)(a0)
96 1.1 thorpej stt fs6, ((8 + 37) * 8)(a0)
97 1.1 thorpej stt fs7, ((9 + 37) * 8)(a0)
98 1.1 thorpej mf_fpcr ft0 /* get FP control reg */
99 1.1 thorpej stt ft0, (69 * 8)(a0) /* and store it in sc_fpcr */
100 1.1 thorpej stq zero, (70 * 8)(a0) /* FP software control XXX */
101 1.1 thorpej stq zero, (71 * 8)(a0) /* sc_reserved[0] */
102 1.1 thorpej stq zero, (72 * 8)(a0) /* sc_reserved[1] */
103 1.1 thorpej stq zero, (73 * 8)(a0) /* sc_xxx[0] */
104 1.1 thorpej stq zero, (74 * 8)(a0) /* sc_xxx[1] */
105 1.1 thorpej stq zero, (75 * 8)(a0) /* sc_xxx[2] */
106 1.1 thorpej stq zero, (76 * 8)(a0) /* sc_xxx[3] */
107 1.1 thorpej stq zero, (77 * 8)(a0) /* sc_xxx[4] */
108 1.1 thorpej stq zero, (78 * 8)(a0) /* sc_xxx[5] */
109 1.1 thorpej stq zero, (79 * 8)(a0) /* sc_xxx[6] */
110 1.1 thorpej stq zero, (80 * 8)(a0) /* sc_xxx[7] */
111 1.1 thorpej
112 1.1 thorpej mov zero, v0 /* return zero */
113 1.1 thorpej RET
114 1.1 thorpej END(__setjmp14)
115 1.1 thorpej
116 1.1 thorpej LEAF(__longjmp14, 2)
117 1.1 thorpej LDGP(pv)
118 1.1 thorpej stq a1, (( 0 + 4) * 8)(a0) /* save return value */
119 1.1 thorpej CALL(__sigreturn14) /* use sigreturn to return */
120 1.1 thorpej
121 1.1 thorpej botch:
122 1.1 thorpej CALL(longjmperror)
123 1.1 thorpej CALL(abort)
124 1.1 thorpej RET /* "can't" get here... */
125 1.1 thorpej END(__longjmp14)
126