2013-12-06 12:04:52 +01:00
|
|
|
/* $NetBSD: setjmp.S,v 1.15 2013/07/17 03:05:41 matt Exp $ */
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1990 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* the Systems Programming Group of the University of Utah Computer
|
|
|
|
* Science Department.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <machine/asm.h>
|
2013-12-06 12:04:52 +01:00
|
|
|
#include "assym.h"
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
|
|
#if 0
|
|
|
|
RCSID("from: @(#)setjmp.s 5.1 (Berkeley) 5/12/90")
|
|
|
|
#else
|
2013-12-06 12:04:52 +01:00
|
|
|
RCSID("$NetBSD: setjmp.S,v 1.15 2013/07/17 03:05:41 matt Exp $")
|
2011-02-14 20:36:03 +01:00
|
|
|
#endif
|
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* C library -- setjmp, longjmp
|
|
|
|
*
|
|
|
|
* longjmp(a,v)
|
|
|
|
* will generate a "return(v)" from
|
|
|
|
* the last call to
|
|
|
|
* setjmp(a)
|
|
|
|
* by restoring registers from the stack,
|
|
|
|
* and a struct sigcontext, see <signal.h>
|
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(__setjmp14)
|
|
|
|
/* Get signal stack info. Note overlay of ss_sp and ss_size! */
|
2013-12-06 12:04:52 +01:00
|
|
|
lea -12(%sp),%sp /* sizeof(stack_t) */
|
|
|
|
clrl (%sp) /* ss = NULL */
|
|
|
|
movl %sp,4(%sp) /* oss = stack_t on stack */
|
2011-02-14 20:36:03 +01:00
|
|
|
jbsr PIC_PLT(_C_LABEL(__sigaltstack14))
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
movl 8(%sp),%d0 /* ss_flags */
|
2011-02-14 20:36:03 +01:00
|
|
|
andl #1,%d0 /* extract SS_ONSTACK */
|
2013-12-06 12:04:52 +01:00
|
|
|
lea 12(%sp),%sp /* pop stack_t */
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
/* Get pointer to jmp_buf; a sigcontext is at the beginning. */
|
2013-12-06 12:04:52 +01:00
|
|
|
movl 4(%sp),%a0
|
|
|
|
movl %d0,SC_ONSTACK(%a0) /* store onstack */
|
|
|
|
clrl SC___MASK13(%a0) /* unused word (old style signal mask) */
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
/* Get the signal mask. */
|
2013-12-06 12:04:52 +01:00
|
|
|
pea SC_MASK(%a0) /* oset = &sc.sc_mask */
|
|
|
|
movl #0,-(%sp) /* set = NULL */
|
|
|
|
movl #0,-(%sp) /* action = 0 <ignored> */
|
2011-02-14 20:36:03 +01:00
|
|
|
jbsr PIC_PLT(_C_LABEL(__sigprocmask14))
|
|
|
|
addl #12,%sp
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
movl 4(%sp),%a0 /* get jmp_buf pointer again */
|
|
|
|
lea 4(%sp),%a1 /* adjust SP since we won't rts */
|
|
|
|
movl %a1,SC_SP(%a0) /* save SP */
|
|
|
|
movl %a6,SC_FP(%a0) /* save FP */
|
|
|
|
clrl SC_AP(%a0) /* no AP */
|
|
|
|
movl (%sp),SC_PC(%a0)/* save return PC */
|
|
|
|
clrl SC_PS(%a0) /* clear PS */
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
/* Save remaining non-scratch regs after signal mask. */
|
2013-12-06 12:04:52 +01:00
|
|
|
moveml #0x3CFC,SC_SIZE(%a0)
|
2011-02-14 20:36:03 +01:00
|
|
|
|
|
|
|
clrl %d0 /* return 0 */
|
|
|
|
rts
|
2013-12-06 12:04:52 +01:00
|
|
|
END(__setjmp14)
|