OSDN Git Service

Replace FSF snail mail address with URLs
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / alpha / syscall.S
1 /* Copyright (C) 1996 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by David Mosberger <davidm@azstarnet.com>, 1996.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, see
17    <http://www.gnu.org/licenses/>.  */
18
19 #include <features.h>
20 #include <sys/regdef.h>
21 #include <asm/pal.h>
22
23 /*
24  * This is for COMPATIBILITY with Linux/x86 only.  Linux/Alpha system
25  * calls return an error indication in a3.  This allows arbitrary 64bit 
26  * values to be returned in v0 (because negative values are not
27  * mistaken as error numbers).  However, C allows only one value to
28  * be returned, so the interface below folds the error indication passed in
29  * a3 back into v0: it sets v0 to -errno if an error occurs.  Thus,
30  * no negative 64bit numbers can be returned.  To avoid this problem,
31  * use assembly stubs wherever possible/convenient.
32  *
33  * Usage:
34  *
35  * long syscall(syscall_number, arg1, arg2, arg3, arg4, arg5)
36  *
37  * syscall_number = the index of the system call we're invoking
38  * arg1-arg5 = up to 5 integer arguments to the system call
39  *
40  * We need to do some arg shifting: the kernel expects the
41  * syscall number in v0 and the first five args in a0-a4.
42  *
43  */
44
45 .globl __syscall;
46 .align 4;
47 .ent __syscall, 0;
48 __syscall:
49 .frame sp, 0, ra
50         .prologue 0
51
52         mov     a0, v0          /* Syscall number -> v0 */
53         mov     a1, a0          /* arg1-arg5 -> a0-a4 */
54         mov     a2, a1
55         mov     a3, a2
56         mov     a4, a3
57         mov     a5, a4
58
59         call_pal PAL_callsys    /* Invoke system call */
60         bne     a3, $error
61         ret
62
63 $error:
64         br      gp, 2f
65 2:      ldgp    gp, 0(gp)
66         jmp     zero,__syscall_error
67
68 .end __syscall
69
70 weak_alias (__syscall, syscall)