1 /* Copyright (C) 1993-2017 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Brendan Kehoe (brendan@zen.org).
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, see
17 <http://www.gnu.org/licenses/>. */
23 /* Put this at the end of libc's text segment so that all of
24 the direct branches from the syscalls are forward, and
25 thus predicted not taken. */
26 .section .text.last, "ax", @progbits
32 # define SYSCALL_ERROR_ERRNO __libc_errno
34 # define SYSCALL_ERROR_ERRNO errno
38 .globl __syscall_error
41 /* When building a shared library, we branch here without having
42 loaded the GP. Nor, since it was a direct branch, have we
43 loaded PV with our address.
45 When building a static library, we tail call here from another
46 object file, possibly with a different GP, and must return with
47 the GP of our caller in place so that linker relaxation works.
49 Both issues are solved by computing the GP into T1 instead of
50 clobbering the traditional GP register. */
54 1: ldah t1, 0(t1) !gpdisp!1
57 lda t1, 0(t1) !gpdisp!1
58 ldq t1, SYSCALL_ERROR_ERRNO(t1) !gottprel