Home | History | Annotate | Line # | Download | only in x86_64
SYS.h revision 1.10
      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.10      dsl  *	$NetBSD: SYS.h,v 1.10 2007/11/23 07:36:05 dsl 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.1     fvdl #ifdef PIC
     53  1.10      dsl #define _SYSCALL_ERR	 						\
     54  1.10      dsl 	mov PIC_GOT(CERROR), %rcx;					\
     55  1.10      dsl 	jmp *%rcx
     56   1.1     fvdl #else
     57  1.10      dsl #define _SYSCALL_ERR							\
     58  1.10      dsl 	jmp CERROR
     59  1.10      dsl #endif
     60  1.10      dsl 
     61   1.1     fvdl #define _SYSCALL(x,y)							\
     62   1.1     fvdl 	.text; _ALIGN_TEXT;						\
     63  1.10      dsl 	2: _SYSCALL_ERR;						\
     64   1.1     fvdl 	_SYSCALL_NOERROR(x,y);						\
     65   1.1     fvdl 	jc 2b
     66   1.1     fvdl 
     67   1.1     fvdl #define SYSCALL_NOERROR(x)						\
     68   1.1     fvdl 	_SYSCALL_NOERROR(x,x)
     69   1.1     fvdl 
     70   1.1     fvdl #define SYSCALL(x)							\
     71   1.1     fvdl 	_SYSCALL(x,x)
     72   1.7     fvdl 
     73   1.1     fvdl #define PSEUDO_NOERROR(x,y)						\
     74   1.1     fvdl 	_SYSCALL_NOERROR(x,y);						\
     75   1.1     fvdl 	ret
     76   1.1     fvdl 
     77   1.1     fvdl #define PSEUDO(x,y)							\
     78  1.10      dsl 	_SYSCALL_NOERROR(x,y);						\
     79  1.10      dsl 	jc 2f;								\
     80  1.10      dsl 	ret;								\
     81  1.10      dsl 	2: _SYSCALL_ERR
     82   1.1     fvdl 
     83   1.1     fvdl #define RSYSCALL_NOERROR(x)						\
     84   1.1     fvdl 	PSEUDO_NOERROR(x,x)
     85   1.1     fvdl 
     86   1.1     fvdl #define RSYSCALL(x)							\
     87   1.1     fvdl 	PSEUDO(x,x)
     88   1.1     fvdl 
     89   1.2  thorpej #define	WSYSCALL(weak,strong)						\
     90   1.2  thorpej 	WEAK_ALIAS(weak,strong);					\
     91   1.2  thorpej 	PSEUDO(strong,weak)
     92   1.1     fvdl 
     93   1.1     fvdl 	.globl	CERROR
     94