(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / unix / mips / sysdep.S
blob8c172db190598b8889cbaa0f430549f351548432
1 /* Copyright (C) 1992, 1993, 1994, 1997, 1998, 1999, 2000, 2002, 2003 
2    Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Brendan Kehoe (brendan@zen.org).
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, write to the Free
18    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19    02111-1307 USA.  */
21 #include <sysdep.h>
22 #define _ERRNO_H
23 #include <bits/errno.h>
24 #include <sys/asm.h>
26 #ifdef _LIBC_REENTRANT
28 LOCALSZ= 3
29 FRAMESZ= (((NARGSAVE+LOCALSZ)*SZREG)+ALSZ)&ALMASK
30 RAOFF= FRAMESZ-(1*SZREG)
31 GPOFF= FRAMESZ-(2*SZREG)
32 V0OFF= FRAMESZ-(3*SZREG)
33         
34 ENTRY(__syscall_error)
35 #ifdef __PIC__
36         .set noat
37         SETUP_GPX (AT)
38         .set at
39 #endif
40         PTR_SUBU sp, FRAMESZ
41         .set noat
42         SETUP_GPX64(GPOFF,AT)
43         .set at
44 #ifdef __PIC__
45         SAVE_GP(GPOFF)
46 #endif
47         REG_S   v0, V0OFF(sp)
48         REG_S   ra, RAOFF(sp)
50 #if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN
51         /* We translate the system's EWOULDBLOCK error into EAGAIN.
52            The GNU C library always defines EWOULDBLOCK==EAGAIN.
53            EWOULDBLOCK_sys is the original number.  */
54         bne     v0, EWOULDBLOCK_sys, L(skip)
55         nop
56         li      v0, EAGAIN
57 L(skip):
58 #endif
59         /* Find our per-thread errno address  */
60         jal     __errno_location
62         /* Store the error value.  */
63         REG_L   t0, V0OFF(sp)
64         sw      t0, 0(v0)
66         /* And just kick back a -1.  */
67         REG_L   ra, RAOFF(sp)
68         RESTORE_GP64
69         PTR_ADDU sp, FRAMESZ
70         li      v0, -1
71         j       ra
72         END(__syscall_error)
74 #else /* _LIBC_REENTRANT */
77 ENTRY(__syscall_error)
78 #ifdef __PIC__
79         SETUP_GPX (AT)
80 #endif
81         SETUP_GPX64 (t9, AT)
82         
83 #if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN
84         /* We translate the system's EWOULDBLOCK error into EAGAIN.
85            The GNU C library always defines EWOULDBLOCK==EAGAIN.
86            EWOULDBLOCK_sys is the original number.  */
87         bne v0, EWOULDBLOCK_sys, L(skip)
88         li v0, EAGAIN
89 L(skip):
90 #endif
91         /* Store it in errno... */
92         sw v0, errno
94         /* And just kick back a -1.  */
95         li v0, -1
97         RESTORE_GP64
98         j ra
99         END(__syscall_error)
100 #endif  /* _LIBC_REENTRANT  */