Remove support in configure for unsupported architectures
[glibc.git] / sysdeps / unix / sysv / linux / ia64 / sysdep.S
blob3271857d610d91127c7ce62e57221650b48928f5
1 /* Copyright (C) 1999-2001, 2003, 2004, 2011 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>.
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.
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.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
20 #include <sysdep.h>
21 #include <features.h>
22 #include <tls.h>
24 ENTRY(__syscall_error)
25 #if RTLD_PRIVATE_ERRNO
26         /*
27          * Note that the gp has to be set properly for this to work.
28          * As long as all syscalls are in the same load unit
29          * (executable or shared library) as this routine, we should
30          * be fine.  Otherwise, we would have to first load the global
31          * pointer register from __gp.
32          */
33         addl    r2=@gprel(rtld_errno),gp
34         ;;
35         st4     [r2]=r8
36         mov     r8=-1
37 #else
38 # ifndef NOT_IN_libc
39 #  define SYSCALL_ERROR_ERRNO __libc_errno
40 # else
41 #  define SYSCALL_ERROR_ERRNO errno
42 # endif
43         addl    r2=@ltoff(@tprel(SYSCALL_ERROR_ERRNO)), gp;;
44         ld8     r2=[r2]
45         mov     r3=r8;;
46         mov     r8=-1
47         add     r2=r2,r13;;
48         st4     [r2]=r3
49 #endif
50         ret                     // ret is #define'd in syscall.h!
51 END(__syscall_error)
53 ENTRY(__ia64_syscall)
54         mov r15=r37             /* syscall number */
55         break __BREAK_SYSCALL
56         cmp.eq p6,p0=-1,r10     /* r10 = -1 on error */
57 (p6)    br.cond.spnt.few __syscall_error
58         ret
59 PSEUDO_END(__ia64_syscall)