Add of pthread support for VAX.

This commit is contained in:
matt 2003-01-19 23:20:14 +00:00
parent af85a1483e
commit 9eecca32ca
3 changed files with 396 additions and 0 deletions

View File

@ -0,0 +1,69 @@
# $NetBSD: genassym.cf,v 1.1 2003/01/19 23:20:14 matt 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.
#
# 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 <ucontext.h>
include <sys/queue.h>
include <machine/reg.h>
include "pthread.h"
include "pthread_int.h"
include "pthread_md.h"
define PT_NEXT offsetof(struct pthread_st, pt_next)
define PT_STATE offsetof(struct pthread_st, pt_state)
define PT_SWITCHTO offsetof(struct pthread_st, pt_switchto)
define PT_SWITCHTOUC offsetof(struct pthread_st, pt_switchtouc)
define PT_SLEEPUC offsetof(struct pthread_st, pt_sleepuc)
define PT_SPINLOCKS offsetof(struct pthread_st, pt_spinlocks)
define PT_HELDLOCK offsetof(struct pthread_st, pt_heldlock)
define PT_UC offsetof(struct pthread_st, pt_uc)
define CONTEXTSIZE sizeof(ucontext_t)
define UC_FLAGS offsetof(ucontext_t, uc_flags)
define UC_GREGS offsetof(ucontext_t, uc_mcontext.__gregs)
define PT_STATE_RECYCLABLE PT_STATE_RECYCLABLE
define _UC_CPU _UC_CPU
define _UC_USER _UC_USER
define _REG_R0 4*_REG_R0
define _REG_R6 4*_REG_R6
define _REG_R8 4*_REG_R8
define _REG_R10 4*_REG_R10
define _REG_AP 4*_REG_AP
define _REG_SP 4*_REG_SP
define _REG_FP 4*_REG_FP
define _REG_PC 4*_REG_PC
define _REG_PSL 4*_REG_PSL

View File

@ -0,0 +1,83 @@
/* $NetBSD: pthread_md.h,v 1.1 2003/01/19 23:20:14 matt 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.
*
* 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.
*/
#ifndef _LIB_PTHREAD_VAX_MD_H
#define _LIB_PTHREAD_VAX_MD_H
static __inline long
pthread__sp(void)
{
long ret;
__asm("movl %sp,%0" : "=r" (ret));
return ret;
}
#define pthread__uc_sp(ucp) ((ucp)->uc_mcontext.__gregs[_REG_SP])
#define pthread__uc_pc(ucp) ((ucp)->uc_mcontext.__gregs[_REG_PC])
/*
* Set initial, sane values for registers whose values aren't just
* "don't care".
* 0x03c00000 is PSL_U|PSL_PREVU from arch/vax/include/psl.h
*/
#define _INITCONTEXT_U_MD(ucp) \
(ucp)->uc_mcontext.__gregs[_REG_PSL] = 0x03c00000;
/*
* Conversions between struct reg and struct mcontext. Used by
* libpthread_dbg.
*/
#define PTHREAD_UCONTEXT_TO_REG(reg, uc) do { \
memcpy(&(reg)->r_regs, &(uc)->uc_mcontext.__gregs, \
17 * sizeof(__greg_t)); \
(reg)->fp = (uc)->uc_mcontext.__gregs[_REG_FP]; \
(reg)->sp = (uc)->uc_mcontext.__gregs[_REG_SP]; \
} while (/*CONSTCOND*/0)
#define PTHREAD_REG_TO_UCONTEXT(uc, reg) do { \
memcpy(&(uc)->uc_mcontext.__gregs, &(reg)->r_regs, \
17 * sizeof(__greg_t)); \
(uc)->uc_mcontext.__gregs[_REG_FP] = (reg)->fp; \
(uc)->uc_mcontext.__gregs[_REG_SP] = (reg)->sp; \
(uc)->uc_flags = ((uc)->uc_flags | _UC_CPU) & ~_UC_USER; \
} while (/*CONSTCOND*/0)
#endif /* _LIB_PTHREAD_VAX_MD_H */

View File

@ -0,0 +1,244 @@
/* $NetBSD: pthread_switch.S,v 1.1 2003/01/19 23:20:14 matt 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.
*
* 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.
*/
/*
* This file implements low-level routines that are exported to
* the machine-independent parts of the thread library. The routines are:
*
* void pthread__switch(pthread_t self, pthread_t next);
* void pthread__upcall_switch(pthread_t self, pthread_t next);
* void pthread__locked_switch(pthread_t self, pthread_t next,
* pt_spin_t *lock);
*
* as well as some utility code used by these routines.
*/
#include <machine/asm.h>
#include "assym.h"
/* Force an error when "notreached" code is reached. */
#define NOTREACHED \
halt; \
/* NOTREACHED */
/* *** WARNING ***
* STACK_SWITCH is more subtle than it looks. Please go read the extended
* comment in the i386 pthread_switch.S file.
*/
#define STACK_SWITCH(pt) \
movl PT_UC(pt),%sp
ENTRY(pthread__switch, 0)
movab -(CONTEXTSIZE)(%sp), %sp
/* Get the current context */
pushl %sp
calls $1,_getcontext_u
/* Edit the context to make it continue below, rather than here */
movab switch_return_point,(UC_GREGS + _REG_PC)(%sp)
movq 4(%ap),%r2
STACK_SWITCH(%r3) /* r3 = next */
pushl PT_UC(%r3) /* r3 = next */
movl %sp,PT_UC(%r2) /* r2 = self */
calls $1,_setcontext_u
switch_return_point:
ret
/*
* Helper switch code used by pthread__locked_switch() and
* pthread__upcall_switch() when they discover spinlock preemption.
*/
pthread__switch_away:
STACK_SWITCH(%r3)
/* If we're invoked from the switch-to-next provisions of
* pthread__locked_switch or pthread__upcall_switch, there may
* be a fake spinlock-count set. If so, they will set r4 to
* let us know, and we decrement it now that we're no longer
* using the old stack.
*/
subl2 %r4,PT_SPINLOCKS(%r5)
pushl PT_UC(%r3)
calls $1, _setcontext_u
NOTREACHED
/*
* void pthread__locked_switch(pthread_t self, pthread_t next,
* pt_spin_t *lock);
*/
ENTRY(pthread__locked_switch, 0)
movab -(CONTEXTSIZE)(%sp),(%sp)
movl 8(%ap),%r5
/* Make sure we get continuted */
incl PT_SPINLOCKS(%r5)
/* Get the current context */
pushl %sp
calls $1, _getcontext_u
movq 4(%ap),%r4
/* Edit the context to make it continue below, rather than here */
movab locked_return_point, (UC_GREGS + _REG_PC)(%sp)
STACK_SWITCH(%r5)
movl %sp, PT_UC(%r4)
/* Check if the switcher was preempted and continued to here. */
movl PT_NEXT(%r4),%r3
beql 1f
/* Yes, it was. Stash the thread we were going to switch to,
* the lock the original thread was holding,
* and switch to the next thread in the continuation chain.
* Mark the fact that this was a locked switch, and so the
* thread does not need to be put on a run queue.
* Don't release the lock. It's possible that if we do so,
* PT_SWITCHTO will be stomped by another switch_lock and
* preemption.
*/
movl %r5, PT_SWITCHTO(%r4)
movl PT_UC(%r5), PT_SWITCHTOUC(%r4)
movl 12(%ap), PT_HELDLOCK(%r4)
incl PT_SPINLOCKS(%r4)
/* Save the context we previously stored in PT_UC(a0);
* that was overwritten when we were preempted and continued,
* so we need to put it somewhere.
*/
movl %sp, PT_SLEEPUC(%r4)
movl $1, %r4
brw pthread__switch_away
/* No locked old-preemption */
1: /* We've moved to the new stack, and the old context has been
* saved. The queue lock can be released.
*/
/* Reduce the lock count... */
decl PT_SPINLOCKS(%r4)
/* ... actually release the lock.. */
clrl *12(%ap)
/* .. and remove the fake lock */
incl PT_SPINLOCKS(%r5)
/* Check if we were preempted while holding the fake lock. */
movl PT_NEXT(%r5),%r3
beql 2f
/* Yes, we were. Go to the next element in the chain. */
movl %r5, PT_SWITCHTO(%r5)
movl PT_UC(%r5), PT_SWITCHTOUC(%r5)
clrl %r4
brw pthread__switch_away
NOTREACHED
2: pushl PT_UC(%r5)
calls $1, _setcontext_u
locked_return_point:
ret
/*
* void pthread__upcall_switch(pthread_t self, pthread_t next);
*
* Quit an upcall, recycle it, and jump to the selected thread.
*/
ENTRY(pthread__upcall_switch, 0)
movq 4(%ap),%r4
/* Loading the global pointer is unnecessary; this routine
* is only ever called from the pthreads module, and the C
* code will have gp set up.
*
* Also, this code never returns, so we can treat s0-s6 as
* convenient registers that will be saved for us by callees,
* but that we do not have to save.
*/
/* Create a "fake" lock count so that this code will be continued */
incl PT_SPINLOCKS(%r4)
STACK_SWITCH(%r5)
/* Check if the upcall code was preempted and continued to here. */
movl PT_NEXT(%r4),%r3
beql 1f
/* Yes, it was. Stash the thread we were going to switch to,
* and switch to the next thread in the continuation chain.
*/
movq %r5,PT_SWITCHTO(%r4)
movl PT_UC(%r5), PT_SWITCHTOUC(%r4)
movl PT_STATE_RECYCLABLE,PT_STATE(%r4)
movl $1,%r4
brw pthread__switch_away
/* No old-upcall-preemption */
1: movq %r4,-(%sp)
calls $2, pthread__sa_recycle
/* grab the arguments again */
movq 4(%ap),%r4
/* We can now release the fake lock. */
decl PT_SPINLOCKS(%r5)
/* Check if we were preempted and continued while faking the lock */
movl PT_NEXT(%r5),%r3
beql 2f
/* Yes, we were. Stash the to-be-switched-to context in our thread
* structure and go to the next link in the chain.
*/
movl %r5, PT_SWITCHTO(%r5)
movl PT_UC(%r5), PT_SWITCHTOUC(%r5)
clrl %r4
brw pthread__switch_away
/* No new-upcall-preemption */
2: pushl PT_UC(%r5)
calls $1, _setcontext_u
NOTREACHED