NetBSD/lib/libpthread/arch/m68k/_context_u.S

133 lines
4.6 KiB
ArmAsm
Raw Normal View History

2003-01-18 13:32:11 +03:00
/* $NetBSD: _context_u.S,v 1.2 2003/01/18 10:34:19 thorpej Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Nathan J. Williams and Steve C. Woodford.
*
* 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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>
#include "assym.h"
/*
* Save the current context into the ucontext_t structure pointed to
* by %a0. The value of %pc to save is passed in %a1.
*
* We only need to save the `callee' saved registers.
*/
#define GETC \
moveml %d2-%d7,%a0@(UC_REGS + (_REG_D2 * 4)) ; \
moveml %a2-%a7,%a0@(UC_REGS + (_REG_A2 * 4)) ; \
movl %a1,%a0@(UC_REGS + (_REG_PC * 4)) ; \
clrl %a0@(UC_REGS + (_REG_PS * 4)) ; \
fnop ; \
fmovem %fpcr,%a0@(UC_FPREGS + _FPREG_PCR) ; \
fmovem %fpsr,%a0@(UC_FPREGS + _FPREG_PSR) ; \
fmovem %fpiar,%a0@(UC_FPREGS + _FPREG_PIADDR) ; \
fmovem %fp0-%fp7,%a0@(UC_FPREGS + _FPREG_FP0) ; \
movl #(_UC_CPU+_UC_FPU+_UC_USER),%a0@/*(UC_FLAGS)*/
/*
* Restore the complete context from the ucontext_t structure pointed
* to by %a0. We can't short-cut caller saved registers here. In fact,
* we have to do some gymnastics to avoid restoring the saved %sp until
* all other saved registers have been read out. This is because there's
* a chance the ucontext_t structure is allocated at the base of the new
* context's stack.
*/
#define SETC \
movl %a0@/*(UC_FLAGS)*/,%d0 ; \
btstl #_UC_USER_BIT,%d0 ; \
beqs 2f ; \
andw #_UC_FPU,%d0 ; \
beqs 1f ; \
fnop ; \
fmovem %a0@(UC_FPREGS + _FPREG_PCR),%fpcr ; \
fmovem %a0@(UC_FPREGS + _FPREG_PSR),%fpsr ; \
fmovem %a0@(UC_FPREGS + _FPREG_PIADDR),%fpiar ; \
fmovem %a0@(UC_FPREGS + _FPREG_FP0),%fp0-%fp7 ; \
1: moveml %a0@(UC_REGS + (_REG_D2 * 4)),%d2-%d7 ; \
moveml %a0@(UC_REGS + (_REG_A2 * 4)),%a2-%a6 ; \
movl %a0@(UC_REGS + (_REG_SP * 4)),%a1 ; \
movl %a0@(UC_REGS + (_REG_PC * 4)),%a1@- ; \
movw %a0@(UC_REGS + (_REG_PS * 4) + 2),%cc ; \
movl %a1,%sp ; \
rts ; \
2: pea %a0@ ; \
jbsr PIC_PLT(_C_LABEL(setcontext))
/* NOTREACHED */
#if 1
/*
* int _getcontext_u(ucontext_t *ctx)
* Store the current context in the provided ctx structure.
*/
ENTRY_NOPROFILE(_getcontext_u)
movl %sp@+,%a1 /* a1 -> return address */
movl %sp@,%a0 /* a0 -> `from' */
GETC
moveql #0,%d0
jmp %a1@
/*
* int _swapcontext_u(ucontext_t *from, const ucontext_t *to)
* Save the current context in `from' before switching to the
* new context in `to'.
*/
ENTRY_NOPROFILE(_swapcontext_u)
movl %sp@+,%a1 /* a1 -> return address */
movl %sp@,%a0 /* a0 -> `from' */
GETC
/* FALLTHROUGH */
/*
* int _setcontext_u(const ucontext_t *ctx)
* Make the context stored in ctx current.
*/
ENTRY_NOPROFILE(_setcontext_u)
movl %sp@(4),%a0
SETC
/* NOTREACHED */
#else
ENTRY_NOPROFILE(_getcontext_u)
jbra PIC_PLT(_C_LABEL(getcontext))
ENTRY_NOPROFILE(_swapcontext_u)
jbra PIC_PLT(_C_LABEL(swapcontext))
ENTRY_NOPROFILE(_setcontext_u)
jbra PIC_PLT(_C_LABEL(setcontext))
#endif