SYS.h revision 1.7 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.6 agc * 3. Neither the name of the University nor the names of its contributors
17 1.1 fvdl * may be used to endorse or promote products derived from this software
18 1.1 fvdl * without specific prior written permission.
19 1.1 fvdl *
20 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 1.1 fvdl * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.1 fvdl * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.1 fvdl * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 1.1 fvdl * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.1 fvdl * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.1 fvdl * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.1 fvdl * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.1 fvdl * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.1 fvdl * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.1 fvdl * SUCH DAMAGE.
31 1.1 fvdl *
32 1.1 fvdl * from: @(#)SYS.h 5.5 (Berkeley) 5/7/91
33 1.7 fvdl * $NetBSD: SYS.h,v 1.7 2003/10/18 22:47:37 fvdl Exp $
34 1.1 fvdl */
35 1.1 fvdl
36 1.1 fvdl /*
37 1.1 fvdl * XXXfvdl change to use syscall/sysret.
38 1.1 fvdl */
39 1.1 fvdl
40 1.1 fvdl #include <machine/asm.h>
41 1.1 fvdl #include <sys/syscall.h>
42 1.1 fvdl
43 1.4 wiz #ifdef __STDC__
44 1.5 fvdl #define SYSTRAP(x) movl $(SYS_ ## x),%eax; movq %rcx, %r10; syscall
45 1.7 fvdl #define OSYSTRAP(x) movl $(SYS_ ## x),%eax; int $0x80
46 1.4 wiz #else
47 1.5 fvdl #define SYSTRAP(x) movl $(SYS_/**/x),%eax; movq %rcx, %r10; syscall
48 1.7 fvdl #define OSYSTRAP(x) movl $(SYS_/**/x),%eax; int $0x80
49 1.4 wiz #endif
50 1.1 fvdl
51 1.1 fvdl #define CERROR _C_LABEL(__cerror)
52 1.1 fvdl #define CURBRK _C_LABEL(__curbrk)
53 1.1 fvdl
54 1.1 fvdl #define _SYSCALL_NOERROR(x,y) \
55 1.1 fvdl ENTRY(x); \
56 1.1 fvdl SYSTRAP(y)
57 1.1 fvdl
58 1.7 fvdl #define _OSYSCALL_NOERROR(x,y) \
59 1.7 fvdl ENTRY(x); \
60 1.7 fvdl OSYSTRAP(y)
61 1.7 fvdl
62 1.1 fvdl #ifdef PIC
63 1.1 fvdl #define _SYSCALL(x,y) \
64 1.1 fvdl .text; _ALIGN_TEXT; \
65 1.1 fvdl 2: mov PIC_GOT(CERROR), %rcx; \
66 1.1 fvdl jmp *%rcx; \
67 1.1 fvdl _SYSCALL_NOERROR(x,y); \
68 1.1 fvdl jc 2b
69 1.1 fvdl #else
70 1.1 fvdl #define _SYSCALL(x,y) \
71 1.1 fvdl .text; _ALIGN_TEXT; \
72 1.1 fvdl 2: jmp CERROR; \
73 1.1 fvdl _SYSCALL_NOERROR(x,y); \
74 1.1 fvdl jc 2b
75 1.1 fvdl #endif
76 1.1 fvdl
77 1.7 fvdl #ifdef PIC
78 1.7 fvdl #define _OSYSCALL(x,y) \
79 1.7 fvdl .text; _ALIGN_TEXT; \
80 1.7 fvdl 2: mov PIC_GOT(CERROR), %rcx; \
81 1.7 fvdl jmp *%rcx; \
82 1.7 fvdl _OSYSCALL_NOERROR(x,y); \
83 1.7 fvdl jc 2b
84 1.7 fvdl #else
85 1.7 fvdl #define _OSYSCALL(x,y) \
86 1.7 fvdl .text; _ALIGN_TEXT; \
87 1.7 fvdl 2: jmp CERROR; \
88 1.7 fvdl _OSYSCALL_NOERROR(x,y); \
89 1.7 fvdl jc 2b
90 1.7 fvdl #endif
91 1.7 fvdl
92 1.7 fvdl
93 1.1 fvdl #define SYSCALL_NOERROR(x) \
94 1.1 fvdl _SYSCALL_NOERROR(x,x)
95 1.1 fvdl
96 1.7 fvdl #define OSYSCALL_NOERROR(x) \
97 1.7 fvdl _OSYSCALL_NOERROR(x,x)
98 1.7 fvdl
99 1.1 fvdl #define SYSCALL(x) \
100 1.1 fvdl _SYSCALL(x,x)
101 1.7 fvdl
102 1.7 fvdl #define OSYSCALL(x) \
103 1.7 fvdl _OSYSCALL(x,x)
104 1.1 fvdl
105 1.1 fvdl #define PSEUDO_NOERROR(x,y) \
106 1.1 fvdl _SYSCALL_NOERROR(x,y); \
107 1.1 fvdl ret
108 1.1 fvdl
109 1.1 fvdl #define PSEUDO(x,y) \
110 1.1 fvdl _SYSCALL(x,y); \
111 1.1 fvdl ret
112 1.1 fvdl
113 1.1 fvdl #define RSYSCALL_NOERROR(x) \
114 1.1 fvdl PSEUDO_NOERROR(x,x)
115 1.1 fvdl
116 1.1 fvdl #define RSYSCALL(x) \
117 1.1 fvdl PSEUDO(x,x)
118 1.1 fvdl
119 1.2 thorpej #define WSYSCALL(weak,strong) \
120 1.2 thorpej WEAK_ALIAS(weak,strong); \
121 1.2 thorpej PSEUDO(strong,weak)
122 1.1 fvdl
123 1.1 fvdl .globl CERROR
124