xref: /minix3/lib/libc/arch/vax/sys/__vfork14.S (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1*2fe8fb19SBen Gras/*
2*2fe8fb19SBen Gras * Copyright (c) 1983, 1993
3*2fe8fb19SBen Gras *	The Regents of the University of California.  All rights reserved.
4*2fe8fb19SBen Gras *
5*2fe8fb19SBen Gras * Redistribution and use in source and binary forms, with or without
6*2fe8fb19SBen Gras * modification, are permitted provided that the following conditions
7*2fe8fb19SBen Gras * are met:
8*2fe8fb19SBen Gras * 1. Redistributions of source code must retain the above copyright
9*2fe8fb19SBen Gras *    notice, this list of conditions and the following disclaimer.
10*2fe8fb19SBen Gras * 2. Redistributions in binary form must reproduce the above copyright
11*2fe8fb19SBen Gras *    notice, this list of conditions and the following disclaimer in the
12*2fe8fb19SBen Gras *    documentation and/or other materials provided with the distribution.
13*2fe8fb19SBen Gras * 3. Neither the name of the University nor the names of its contributors
14*2fe8fb19SBen Gras *    may be used to endorse or promote products derived from this software
15*2fe8fb19SBen Gras *    without specific prior written permission.
16*2fe8fb19SBen Gras *
17*2fe8fb19SBen Gras * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18*2fe8fb19SBen Gras * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19*2fe8fb19SBen Gras * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20*2fe8fb19SBen Gras * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21*2fe8fb19SBen Gras * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22*2fe8fb19SBen Gras * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23*2fe8fb19SBen Gras * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24*2fe8fb19SBen Gras * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25*2fe8fb19SBen Gras * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26*2fe8fb19SBen Gras * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27*2fe8fb19SBen Gras * SUCH DAMAGE.
28*2fe8fb19SBen Gras */
29*2fe8fb19SBen Gras
30*2fe8fb19SBen Gras#if defined(SYSLIBC_SCCS) && !defined(lint)
31*2fe8fb19SBen Gras	/* .asciz "@(#)Ovfork.s	8.1 (Berkeley) 6/4/93" */
32*2fe8fb19SBen Gras	.asciz "$NetBSD: __vfork14.S,v 1.5 2003/08/07 16:42:33 agc Exp $"
33*2fe8fb19SBen Gras#endif /* SYSLIBC_SCCS and not lint */
34*2fe8fb19SBen Gras
35*2fe8fb19SBen Gras/*
36*2fe8fb19SBen Gras * @(#)vfork.s	4.1 (Berkeley) 12/21/80
37*2fe8fb19SBen Gras * C library -- vfork
38*2fe8fb19SBen Gras */
39*2fe8fb19SBen Gras
40*2fe8fb19SBen Gras#include "SYS.h"
41*2fe8fb19SBen Gras
42*2fe8fb19SBen Gras/*
43*2fe8fb19SBen Gras * pid = vfork();
44*2fe8fb19SBen Gras *
45*2fe8fb19SBen Gras * %r1 == 0 in parent process, %r1 == 1 in child process.
46*2fe8fb19SBen Gras * %r0 == pid of child in parent, %r0 == pid of parent in child.
47*2fe8fb19SBen Gras *
48*2fe8fb19SBen Gras * trickery here, due to keith sklower, uses ret to clear the stack,
49*2fe8fb19SBen Gras * and then returns with a jump indirect, since only one person can return
50*2fe8fb19SBen Gras * with a ret off this stack... we do the ret before we vfork!
51*2fe8fb19SBen Gras */
52*2fe8fb19SBen Gras
53*2fe8fb19SBen GrasENTRY(__vfork14, 0)
54*2fe8fb19SBen Gras	movl	16(%fp),%r2	# save return address before we smash it
55*2fe8fb19SBen Gras	movab	here,16(%fp)
56*2fe8fb19SBen Gras	ret
57*2fe8fb19SBen Grashere:
58*2fe8fb19SBen Gras	chmk	$ SYS___vfork14
59*2fe8fb19SBen Gras	bcs	err		# if failed, set errno and return -1
60*2fe8fb19SBen Gras	/* this next trick is Chris Torek's fault */
61*2fe8fb19SBen Gras	mnegl	%r1,%r1		# %r1 = 0xffffffff if child, 0 if parent
62*2fe8fb19SBen Gras	bicl2	%r1,%r0		# %r0 &= ~%r1, i.e., 0 if child, else unchanged
63*2fe8fb19SBen Gras	jmp	(%r2)
64*2fe8fb19SBen Gras
65*2fe8fb19SBen Graserr:
66*2fe8fb19SBen Gras#ifdef _REENTRANT
67*2fe8fb19SBen Gras	pushr	$0x5
68*2fe8fb19SBen Gras	calls	$0,_C_LABEL(__errno)
69*2fe8fb19SBen Gras	movl	(%sp)+,(%r0)
70*2fe8fb19SBen Gras	mnegl	$1,%r0
71*2fe8fb19SBen Gras	rsb
72*2fe8fb19SBen Gras#else
73*2fe8fb19SBen Gras	movl	%r0,_C_LABEL(errno)
74*2fe8fb19SBen Gras	mnegl	$1,%r0
75*2fe8fb19SBen Gras	jmp	(%r2)
76*2fe8fb19SBen Gras#endif
77