(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / unix / sysv / linux / mips / mips64 / syscall.S
blobea5bf491d6920f5ed9164db59db548848f97785b
1 /* Copyright (C) 2001, 2002, 2003 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, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
19 #include <sysdep.h>
21 #include <sys/asm.h>
23 /* Please consult the file sysdeps/unix/sysv/linux/x86-64/sysdep.h for
24    more information about the value -4095 used below.  */
26 /* Usage: long syscall (syscall_number, arg1, arg2, arg3, arg4, arg5)
27    We need to do some arg shifting, the syscall_number will be in
28    rax.  */
31         .text
32 ENTRY (syscall)
33         move v0, a0             /* Syscall number -> v0 */
34         move a0, a1             /* shift arg1 - arg7.  */
35         move a1, a2
36         move a2, a3
37         move a3, a4
38         move a4, a5
39         move a5, a6
40         move a6, a7
42         syscall                 /* Do the system call.  */
43         bne a3, zero, L(error)
45         ret
47 L(error):
48         .cpsetup t9, a0, syscall
49         PTR_LA t9,__syscall_error
50         .cprestore
51         jr t9
53 PSEUDO_END (syscall)