Add Changelog ...
[glibc.git] / sysdeps / unix / alpha / sysdep.S
blob2e5e7762681c7810632e939d537d72c29b7ddde8
1 /* Copyright (C) 1993, 1996, 1998, 2002, 2003, 2004, 2012
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, see
18    <http://www.gnu.org/licenses/>.  */
20 #include <sysdep.h>
21 #include <features.h>
23 #if defined(PIC)
24         /* Put this at the end of libc's text segment so that all of
25            the direct branches from the syscalls are forward, and 
26            thus predicted not taken.  */
27         .section .text.last, "ax", @progbits
28 #else
29         .text
30 #endif
32 #ifndef NOT_IN_libc
33 # define SYSCALL_ERROR_ERRNO __libc_errno
34 #else
35 # define SYSCALL_ERROR_ERRNO errno
36 #endif
38         .align 4
39         .globl  __syscall_error
40         .ent    __syscall_error
41 __syscall_error:
42         /* When building a shared library, we branch here without having
43            loaded the GP.  Nor, since it was a direct branch, have we
44            loaded PV with our address.
46            When building a static library, we tail call here from another
47            object file, possibly with a different GP, and must return with
48            the GP of our caller in place so that linker relaxation works.
50            Both issues are solved by computing the GP into T1 instead of
51            clobbering the traditional GP register.  */
52         .prologue 0
53         mov     v0, t0
54         br      t1, 1f
55 1:      ldah    t1, 0(t1) !gpdisp!1
56         call_pal PAL_rduniq
58         lda     t1, 0(t1) !gpdisp!1
59         ldq     t1, SYSCALL_ERROR_ERRNO(t1) !gottprel
60         addq    v0, t1, t1
61         lda     v0, -1
63         stl     t0, 0(t1)
64         ret
66         .end __syscall_error