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.12 uebayasi * $NetBSD: SYS.h,v 1.12 2014/05/22 14:38:38 uebayasi Exp $ 34 1.1 fvdl */ 35 1.1 fvdl 36 1.1 fvdl #include <machine/asm.h> 37 1.1 fvdl #include <sys/syscall.h> 38 1.1 fvdl 39 1.4 wiz #ifdef __STDC__ 40 1.5 fvdl #define SYSTRAP(x) movl $(SYS_ ## x),%eax; movq %rcx, %r10; syscall 41 1.4 wiz #else 42 1.5 fvdl #define SYSTRAP(x) movl $(SYS_/**/x),%eax; movq %rcx, %r10; syscall 43 1.4 wiz #endif 44 1.1 fvdl 45 1.1 fvdl #define CERROR _C_LABEL(__cerror) 46 1.1 fvdl #define CURBRK _C_LABEL(__curbrk) 47 1.1 fvdl 48 1.1 fvdl #define _SYSCALL_NOERROR(x,y) \ 49 1.1 fvdl ENTRY(x); \ 50 1.1 fvdl SYSTRAP(y) 51 1.1 fvdl 52 1.10 dsl #define _SYSCALL_ERR \ 53 1.10 dsl jmp CERROR 54 1.10 dsl 55 1.1 fvdl #define _SYSCALL(x,y) \ 56 1.1 fvdl .text; _ALIGN_TEXT; \ 57 1.10 dsl 2: _SYSCALL_ERR; \ 58 1.1 fvdl _SYSCALL_NOERROR(x,y); \ 59 1.1 fvdl jc 2b 60 1.1 fvdl 61 1.1 fvdl #define SYSCALL_NOERROR(x) \ 62 1.1 fvdl _SYSCALL_NOERROR(x,x) 63 1.1 fvdl 64 1.1 fvdl #define SYSCALL(x) \ 65 1.1 fvdl _SYSCALL(x,x) 66 1.7 fvdl 67 1.1 fvdl #define PSEUDO_NOERROR(x,y) \ 68 1.1 fvdl _SYSCALL_NOERROR(x,y); \ 69 1.12 uebayasi ret; \ 70 1.12 uebayasi END(x) 71 1.1 fvdl 72 1.1 fvdl #define PSEUDO(x,y) \ 73 1.10 dsl _SYSCALL_NOERROR(x,y); \ 74 1.10 dsl jc 2f; \ 75 1.10 dsl ret; \ 76 1.12 uebayasi 2: _SYSCALL_ERR; \ 77 1.12 uebayasi END(x) 78 1.1 fvdl 79 1.1 fvdl #define RSYSCALL_NOERROR(x) \ 80 1.1 fvdl PSEUDO_NOERROR(x,x) 81 1.1 fvdl 82 1.1 fvdl #define RSYSCALL(x) \ 83 1.1 fvdl PSEUDO(x,x) 84 1.1 fvdl 85 1.2 thorpej #define WSYSCALL(weak,strong) \ 86 1.2 thorpej WEAK_ALIAS(weak,strong); \ 87 1.2 thorpej PSEUDO(strong,weak) 88 1.1 fvdl 89 1.1 fvdl .globl CERROR 90