2002-11-08 02:18:48 +00:00
|
|
|
/* Copyright (C) 1993, 1996, 1998, 2002 Free Software Foundation, Inc.
|
2001-07-06 04:56:23 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-03-10 01:51:02 +00:00
|
|
|
Contributed by Brendan Kehoe (brendan@zen.org).
|
|
|
|
|
1996-12-04 01:41:27 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1995-03-10 01:51:02 +00:00
|
|
|
|
1996-12-04 01:41:27 +00:00
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1995-03-10 01:51:02 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
1995-03-10 01:51:02 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
1996-09-07 04:10:03 +00:00
|
|
|
#include <features.h>
|
1995-03-10 01:51:02 +00:00
|
|
|
|
2002-11-08 02:18:48 +00:00
|
|
|
#if defined(__ELF__) && defined(PIC)
|
|
|
|
/* Put this at the end of libc's text segment so that all of
|
|
|
|
the direct branches from the syscalls are forward, and
|
|
|
|
thus predicted not taken. */
|
|
|
|
.section .text.last, "ax", @progbits
|
|
|
|
#else
|
1996-07-18 08:41:25 +00:00
|
|
|
.text
|
2002-11-08 02:18:48 +00:00
|
|
|
#endif
|
1996-09-07 04:10:03 +00:00
|
|
|
|
2002-11-08 02:18:48 +00:00
|
|
|
#ifdef PIC
|
|
|
|
/* When building a shared library, we branch here without
|
|
|
|
having loaded the GP. Nor, since it was a direct branch,
|
|
|
|
have we loaded PV with our address. Do both. */
|
|
|
|
# define LOADGP br pv, 1f; 1: ldgp gp, 0(pv)
|
|
|
|
# define PROLOGUE .prologue 0
|
|
|
|
#else
|
|
|
|
# define LOADGP ldgp gp, 0(pv)
|
|
|
|
# define PROLOGUE .prologue 1
|
|
|
|
#endif
|
1996-09-07 04:10:03 +00:00
|
|
|
|
2002-11-08 02:18:48 +00:00
|
|
|
.align 4
|
1996-09-07 04:10:03 +00:00
|
|
|
.globl __syscall_error
|
|
|
|
.ent __syscall_error
|
|
|
|
__syscall_error:
|
2002-11-08 02:18:48 +00:00
|
|
|
|
2002-11-28 22:47:04 +00:00
|
|
|
#if defined(_LIBC_REENTRANT) && USE___THREAD
|
2002-11-08 02:18:48 +00:00
|
|
|
|
|
|
|
LOADGP
|
|
|
|
PROLOGUE
|
|
|
|
mov v0, t0
|
|
|
|
call_pal PAL_rduniq
|
|
|
|
ldq t1, __libc_errno(gp) !gottprel
|
|
|
|
addq v0, t1, v0
|
|
|
|
stl t0, 0(v0)
|
|
|
|
lda v0, -1
|
|
|
|
ret
|
|
|
|
|
|
|
|
#elif defined(_LIBC_REENTRANT)
|
|
|
|
|
|
|
|
LOADGP
|
1996-09-07 04:10:03 +00:00
|
|
|
lda sp, -16(sp)
|
|
|
|
.frame sp, 16, ra, 0
|
|
|
|
stq ra, 0(sp)
|
|
|
|
stq v0, 8(sp)
|
|
|
|
.mask 0x4000001, -16
|
2002-11-08 02:18:48 +00:00
|
|
|
PROLOGUE
|
1996-06-19 06:37:47 +00:00
|
|
|
|
1996-10-02 01:39:48 +00:00
|
|
|
/* Find our per-thread errno address */
|
2002-11-08 02:18:48 +00:00
|
|
|
#ifdef PIC
|
|
|
|
bsr ra, __errno_location !samegp
|
|
|
|
#else
|
1996-09-07 04:10:03 +00:00
|
|
|
jsr ra, __errno_location
|
2002-11-08 02:18:48 +00:00
|
|
|
#endif
|
1996-09-07 04:10:03 +00:00
|
|
|
|
|
|
|
/* Store the error value. */
|
1997-05-31 00:46:24 +00:00
|
|
|
ldq t0, 8(sp)
|
1996-09-07 04:10:03 +00:00
|
|
|
stl t0, 0(v0)
|
1995-03-10 01:51:02 +00:00
|
|
|
|
1996-09-07 04:10:03 +00:00
|
|
|
/* And kick back a -1. */
|
1996-06-19 06:37:47 +00:00
|
|
|
ldi v0, -1
|
1996-09-07 04:10:03 +00:00
|
|
|
|
|
|
|
ldq ra, 0(sp)
|
|
|
|
lda sp, 16(sp)
|
1995-03-10 01:51:02 +00:00
|
|
|
ret
|
1996-09-07 04:10:03 +00:00
|
|
|
|
2002-11-08 02:18:48 +00:00
|
|
|
#else
|
1996-09-07 04:10:03 +00:00
|
|
|
|
2002-11-08 02:18:48 +00:00
|
|
|
LOADGP
|
|
|
|
PROLOGUE
|
1996-09-07 04:10:03 +00:00
|
|
|
stl v0, errno
|
|
|
|
lda v0, -1
|
|
|
|
ret
|
|
|
|
|
2002-11-08 02:18:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
.end __syscall_error
|