Add Changelog ...
[glibc.git] / sysdeps / unix / sysv / linux / mips / mips64 / syscall.S
blobd6f0be2e1b4e5f41cc8b99e9c868beb101c62f19
1 /* Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library.  If not, see
16    <http://www.gnu.org/licenses/>.  */
18 #include <sysdep.h>
20 #include <sys/asm.h>
22 /* Usage:
23    long syscall (syscall_number, arg1, arg2, arg3, arg4, arg5, arg6, arg7)
25    We need to do some arg shifting, syscall_number will be in v0.  */
28         .text
29 NESTED (syscall, SZREG, ra)
30         .mask 0x00010000, -SZREG
31         .fmask 0x00000000, 0
32         PTR_ADDIU sp, -SZREG
33         REG_S s0, (sp)
35         move s0, a0
36         move a0, a1             /* shift arg1 - arg7.  */
37         move a1, a2
38         move a2, a3
39         move a3, a4
40         move a4, a5
41         move a5, a6
42         move a6, a7
44         move v0, s0             /* Syscall number -> v0 */
45         syscall                 /* Do the system call.  */
47         REG_L s0, (sp)
48         PTR_ADDIU sp, SZREG
49         bne a3, zero, L(error)
51         ret
53 L(error):
54         SETUP_GP64 (a0, syscall)
55         PTR_LA t9, __syscall_error
56         RESTORE_GP64
57         jr t9
59 END (syscall)