xref: /netbsd-src/lib/libc/arch/mips/SYS.h (revision 23c8222edbfb0f0932d88a8351d3a0cf817dfb9e)
1 /*	$NetBSD: SYS.h,v 1.18 2003/10/29 12:28:33 pooka Exp $ */
2 
3 /*-
4  * Copyright (c) 1996 Jonathan Stone
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by Jonathan Stone for
18  *      the NetBSD Project.
19  * 4. The name of the author may not be used to endorse or promote products
20  *    derived from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 /*-
35  * Copyright (c) 1991, 1993
36  *	The Regents of the University of California.  All rights reserved.
37  *
38  * This code is derived from software contributed to Berkeley by
39  * Ralph Campbell.
40  *
41  * Redistribution and use in source and binary forms, with or without
42  * modification, are permitted provided that the following conditions
43  * are met:
44  * 1. Redistributions of source code must retain the above copyright
45  *    notice, this list of conditions and the following disclaimer.
46  * 2. Redistributions in binary form must reproduce the above copyright
47  *    notice, this list of conditions and the following disclaimer in the
48  *    documentation and/or other materials provided with the distribution.
49  * 3. Neither the name of the University nor the names of its contributors
50  *    may be used to endorse or promote products derived from this software
51  *    without specific prior written permission.
52  *
53  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
54  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
55  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
56  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
57  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
58  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
61  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63  * SUCH DAMAGE.
64  *
65  *	from: @(#)SYS.h	8.1 (Berkeley) 6/4/93
66  */
67 
68 #include <sys/syscall.h>
69 #include <mips/asm.h>
70 
71 
72 /*
73  * If compiling for shared libs, Emit sysV ABI PIC segment pseudo-ops.
74  *
75  * i)  Emit .abicalls before .LEAF entrypoint, and .cpload/.cprestore after.
76  * ii) Do interprocedure jumps indirectly via t9, with the side-effect of
77  *     preserving the callee's entry address in t9.
78  */
79 #ifdef __ABICALLS__
80 	.abicalls
81 # define PIC_PROLOGUE(x,sr)	.set noreorder; .cpload sr; .set reorder
82 # define PIC_CALL(l,sr)		la sr, _C_LABEL(l); jr sr
83 #else
84 # define PIC_PROLOGUE(x,sr)
85 # define PIC_CALL(l,sr)		j  _C_LABEL(l)
86 #endif
87 
88 
89 #ifdef __STDC__
90 # define SYSTRAP(x)	li v0,SYS_ ## x; syscall;
91 #else
92 # define SYSTRAP(x)	li v0,SYS_/**/x; syscall;
93 #endif
94 
95 
96 /*
97  * Do a syscall that cannot fail (sync, get{p,u,g,eu,eg)id)
98  */
99 #define RSYSCALL_NOERROR(x)						\
100 	PSEUDO_NOERROR(x,x)
101 
102 /*
103  * Do a normal syscall.
104  */
105 #define RSYSCALL(x)							\
106 	PSEUDO(x,x)
107 
108 /*
109  * Do a syscall that has an internal name and a weak external alias.
110  */
111 #define	WSYSCALL(weak,strong)						\
112 	WEAK_ALIAS(weak,strong);					\
113 	PSEUDO(strong,weak)
114 
115 /*
116  * Do a renamed or pseudo syscall (e.g., _exit()), where the entrypoint
117  * and syscall name are not the same.
118  */
119 #define PSEUDO_NOERROR(x,y)						\
120 LEAF(x);								\
121 	SYSTRAP(y);							\
122 	j ra;								\
123 	END(x)
124 
125 #define PSEUDO(x,y)							\
126 LEAF(x);								\
127 	PIC_PROLOGUE(x,t9);						\
128 	SYSTRAP(y);							\
129 	bne a3,zero,err;						\
130 	j ra;								\
131 err:									\
132 	PIC_CALL(__cerror,t9);						\
133 	END(x)
134