SYS.h revision 1.2 1 1.1 fvdl /*-
2 1.1 fvdl * Copyright (c) 1990 The Regents of the University of California.
3 1.1 fvdl * All rights reserved.
4 1.1 fvdl *
5 1.1 fvdl * This code is derived from software contributed to Berkeley by
6 1.1 fvdl * William Jolitz.
7 1.1 fvdl *
8 1.1 fvdl * Redistribution and use in source and binary forms, with or without
9 1.1 fvdl * modification, are permitted provided that the following conditions
10 1.1 fvdl * are met:
11 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
12 1.1 fvdl * notice, this list of conditions and the following disclaimer.
13 1.1 fvdl * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 fvdl * notice, this list of conditions and the following disclaimer in the
15 1.1 fvdl * documentation and/or other materials provided with the distribution.
16 1.1 fvdl * 3. All advertising materials mentioning features or use of this software
17 1.1 fvdl * must display the following acknowledgement:
18 1.1 fvdl * This product includes software developed by the University of
19 1.1 fvdl * California, Berkeley and its contributors.
20 1.1 fvdl * 4. Neither the name of the University nor the names of its contributors
21 1.1 fvdl * may be used to endorse or promote products derived from this software
22 1.1 fvdl * without specific prior written permission.
23 1.1 fvdl *
24 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 1.1 fvdl * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 1.1 fvdl * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 1.1 fvdl * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 1.1 fvdl * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 1.1 fvdl * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 1.1 fvdl * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 1.1 fvdl * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 1.1 fvdl * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.1 fvdl * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 1.1 fvdl * SUCH DAMAGE.
35 1.1 fvdl *
36 1.1 fvdl * from: @(#)SYS.h 5.5 (Berkeley) 5/7/91
37 1.2 thorpej * $NetBSD: SYS.h,v 1.2 2002/01/14 00:55:57 thorpej Exp $
38 1.1 fvdl */
39 1.1 fvdl
40 1.1 fvdl /*
41 1.1 fvdl * XXXfvdl change to use syscall/sysret.
42 1.1 fvdl */
43 1.1 fvdl
44 1.1 fvdl #include <machine/asm.h>
45 1.1 fvdl #include <sys/syscall.h>
46 1.1 fvdl
47 1.1 fvdl #ifdef __STDC__
48 1.1 fvdl #define SYSTRAP(x) movl $(SYS_ ## x),%eax; int $0x80
49 1.1 fvdl #else
50 1.1 fvdl #define SYSTRAP(x) movl $(SYS_/**/x),%eax; int $0x80
51 1.1 fvdl #endif
52 1.1 fvdl
53 1.1 fvdl #define CERROR _C_LABEL(__cerror)
54 1.1 fvdl #define CURBRK _C_LABEL(__curbrk)
55 1.1 fvdl
56 1.1 fvdl #define _SYSCALL_NOERROR(x,y) \
57 1.1 fvdl ENTRY(x); \
58 1.1 fvdl SYSTRAP(y)
59 1.1 fvdl
60 1.1 fvdl #ifdef PIC
61 1.1 fvdl #define _SYSCALL(x,y) \
62 1.1 fvdl .text; _ALIGN_TEXT; \
63 1.1 fvdl 2: mov PIC_GOT(CERROR), %rcx; \
64 1.1 fvdl jmp *%rcx; \
65 1.1 fvdl _SYSCALL_NOERROR(x,y); \
66 1.1 fvdl jc 2b
67 1.1 fvdl #else
68 1.1 fvdl #define _SYSCALL(x,y) \
69 1.1 fvdl .text; _ALIGN_TEXT; \
70 1.1 fvdl 2: jmp CERROR; \
71 1.1 fvdl _SYSCALL_NOERROR(x,y); \
72 1.1 fvdl jc 2b
73 1.1 fvdl #endif
74 1.1 fvdl
75 1.1 fvdl #define SYSCALL_NOERROR(x) \
76 1.1 fvdl _SYSCALL_NOERROR(x,x)
77 1.1 fvdl
78 1.1 fvdl #define SYSCALL(x) \
79 1.1 fvdl _SYSCALL(x,x)
80 1.1 fvdl
81 1.1 fvdl #define PSEUDO_NOERROR(x,y) \
82 1.1 fvdl _SYSCALL_NOERROR(x,y); \
83 1.1 fvdl ret
84 1.1 fvdl
85 1.1 fvdl #define PSEUDO(x,y) \
86 1.1 fvdl _SYSCALL(x,y); \
87 1.1 fvdl ret
88 1.1 fvdl
89 1.1 fvdl #define RSYSCALL_NOERROR(x) \
90 1.1 fvdl PSEUDO_NOERROR(x,x)
91 1.1 fvdl
92 1.1 fvdl #define RSYSCALL(x) \
93 1.1 fvdl PSEUDO(x,x)
94 1.1 fvdl
95 1.2 thorpej #define WSYSCALL(weak,strong) \
96 1.2 thorpej WEAK_ALIAS(weak,strong); \
97 1.2 thorpej PSEUDO(strong,weak)
98 1.1 fvdl
99 1.1 fvdl .globl CERROR
100