123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /*
- * Copyright (C) 2016 Andes Technology, Inc.
- * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
- */
- /* Copyright (C) 1991-2003 Free Software Foundation, Inc.
- The GNU C Library is free software; you can redistribute it and/or
- 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.
- 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
- Lesser General Public License for more details.
- 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. */
-
- #include <sysdep.h>
- #define _ERRNO_H
- #include <bits/errno.h>
- .text
- .globl __syscall_error
- ENTRY (__syscall_error)
- subri $r0, $r0, #0
- #define __syscall_error __syscall_error_1
- #undef syscall_error
- #ifdef NO_UNDERSCORES
- __syscall_error:
- #else
- syscall_error:
- #endif
- #ifdef PIC
- /* set GP register */
- pushm $gp, $lp
- cfi_adjust_cfa_offset(8)
- cfi_rel_offset(gp, 0)
- cfi_rel_offset(lp, 4)
- mfusr $r15, $PC
- sethi $gp, hi20(_GLOBAL_OFFSET_TABLE_+4)
- ori $gp, $gp, lo12(_GLOBAL_OFFSET_TABLE_+8)
- add $gp, $gp, $r15
- #endif
- #if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN
- /* We translate the system's EWOULDBLOCK error into EAGAIN.
- The GNU C library always defines EWOULDBLOCK==EAGAIN.
- EWOULDBLOCK_sys is the original number. */
- push $t0
- cfi_adjust_cfa_offset(4)
- li $t0, EWOULDBLOCK_sys
- bne $r0, $t0, 1f
- pop $t0
- cfi_adjust_cfa_offset(-4)
- li $r0, EAGAIN
- 1:
- #endif
- #ifdef _LIBC_REENTRANT
- push $lp
- cfi_adjust_cfa_offset(4)
- cfi_rel_offset(lp, 0)
- push $r0
- cfi_adjust_cfa_offset(4)
- cfi_rel_offset(r0, 0)
- #ifdef PIC
- bal C_SYMBOL_NAME(__errno_location@PLT)
- #else
- bal C_SYMBOL_NAME(__errno_location)
- #endif
- pop $r1
- cfi_adjust_cfa_offset(-4)
- cfi_restore(r1)
- swi $r1, [$r0]
- li $r0, -1
- pop $lp
- cfi_adjust_cfa_offset(-4)
- cfi_restore(lp)
- #ifdef PIC
- /* restore GP register */
- popm $gp, $lp
- cfi_adjust_cfa_offset(-8)
- cfi_restore(lp)
- cfi_restore(gp)
- #endif
- 2:
- ret
- #else
- #ifndef PIC
- l.w $r1, .L1
- swi $r0, [$r1]
- li $r0, -1
- ret
- .L1: .long C_SYMBOL_NAME(errno)
- #else
- s.w $r0, errno@GOTOFF
- li $r0, -1
-
- /* restore GP register */
- popm $gp, $lp
- cfi_adjust_cfa_offset(-8)
- cfi_restore(lp)
- cfi_restore(gp)
- 2:
- ret
- #endif
- #endif
- #undef __syscall_error
- END (__syscall_error)
|