xref: /minix3/lib/libc/arch/vax/sys/__vfork14.S (revision e415d488727a332a2c69df018aa35e2cecf4148a)
12fe8fb19SBen Gras/*
22fe8fb19SBen Gras * Copyright (c) 1983, 1993
32fe8fb19SBen Gras *	The Regents of the University of California.  All rights reserved.
42fe8fb19SBen Gras *
52fe8fb19SBen Gras * Redistribution and use in source and binary forms, with or without
62fe8fb19SBen Gras * modification, are permitted provided that the following conditions
72fe8fb19SBen Gras * are met:
82fe8fb19SBen Gras * 1. Redistributions of source code must retain the above copyright
92fe8fb19SBen Gras *    notice, this list of conditions and the following disclaimer.
102fe8fb19SBen Gras * 2. Redistributions in binary form must reproduce the above copyright
112fe8fb19SBen Gras *    notice, this list of conditions and the following disclaimer in the
122fe8fb19SBen Gras *    documentation and/or other materials provided with the distribution.
132fe8fb19SBen Gras * 3. Neither the name of the University nor the names of its contributors
142fe8fb19SBen Gras *    may be used to endorse or promote products derived from this software
152fe8fb19SBen Gras *    without specific prior written permission.
162fe8fb19SBen Gras *
172fe8fb19SBen Gras * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
182fe8fb19SBen Gras * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
192fe8fb19SBen Gras * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
202fe8fb19SBen Gras * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
212fe8fb19SBen Gras * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
222fe8fb19SBen Gras * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
232fe8fb19SBen Gras * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
242fe8fb19SBen Gras * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
252fe8fb19SBen Gras * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
262fe8fb19SBen Gras * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
272fe8fb19SBen Gras * SUCH DAMAGE.
282fe8fb19SBen Gras */
292fe8fb19SBen Gras
30*e415d488SLionel Sambuc#include "SYS.h"
31*e415d488SLionel Sambuc
322fe8fb19SBen Gras#if defined(SYSLIBC_SCCS) && !defined(lint)
332fe8fb19SBen Gras	/* .asciz "@(#)Ovfork.s	8.1 (Berkeley) 6/4/93" */
34*e415d488SLionel SambucRCSID("$NetBSD: __vfork14.S,v 1.7 2011/11/21 16:17:48 chs Exp $")
352fe8fb19SBen Gras#endif /* SYSLIBC_SCCS and not lint */
362fe8fb19SBen Gras
372fe8fb19SBen Gras/*
382fe8fb19SBen Gras * @(#)vfork.s	4.1 (Berkeley) 12/21/80
392fe8fb19SBen Gras * C library -- vfork
402fe8fb19SBen Gras */
412fe8fb19SBen Gras
422fe8fb19SBen Gras/*
432fe8fb19SBen Gras * pid = vfork();
442fe8fb19SBen Gras *
452fe8fb19SBen Gras * %r1 == 0 in parent process, %r1 == 1 in child process.
462fe8fb19SBen Gras * %r0 == pid of child in parent, %r0 == pid of parent in child.
472fe8fb19SBen Gras *
482fe8fb19SBen Gras * trickery here, due to keith sklower, uses ret to clear the stack,
492fe8fb19SBen Gras * and then returns with a jump indirect, since only one person can return
502fe8fb19SBen Gras * with a ret off this stack... we do the ret before we vfork!
512fe8fb19SBen Gras */
522fe8fb19SBen Gras
532fe8fb19SBen GrasENTRY(__vfork14, 0)
54*e415d488SLionel Sambuc	movl	16(%fp),%r0	# save return address before we smash it
552fe8fb19SBen Gras	movab	here,16(%fp)
562fe8fb19SBen Gras	ret
572fe8fb19SBen Grashere:
58*e415d488SLionel Sambuc	movl	%r0,%r2
592fe8fb19SBen Gras	chmk	$ SYS___vfork14
602fe8fb19SBen Gras	bcs	err		# if failed, set errno and return -1
612fe8fb19SBen Gras	/* this next trick is Chris Torek's fault */
622fe8fb19SBen Gras	mnegl	%r1,%r1		# %r1 = 0xffffffff if child, 0 if parent
632fe8fb19SBen Gras	bicl2	%r1,%r0		# %r0 &= ~%r1, i.e., 0 if child, else unchanged
642fe8fb19SBen Gras	jmp	(%r2)
652fe8fb19SBen Gras
662fe8fb19SBen Graserr:
672fe8fb19SBen Gras#ifdef _REENTRANT
682fe8fb19SBen Gras	pushr	$0x5
692fe8fb19SBen Gras	calls	$0,_C_LABEL(__errno)
702fe8fb19SBen Gras	movl	(%sp)+,(%r0)
712fe8fb19SBen Gras	mnegl	$1,%r0
722fe8fb19SBen Gras	rsb
732fe8fb19SBen Gras#else
742fe8fb19SBen Gras	movl	%r0,_C_LABEL(errno)
752fe8fb19SBen Gras	mnegl	$1,%r0
762fe8fb19SBen Gras	jmp	(%r2)
772fe8fb19SBen Gras#endif
78*e415d488SLionel SambucEND(__vfork14)
79