2021-01-02 19:32:25 +00:00
|
|
|
/* Copyright (C) 1999-2021 Free Software Foundation, Inc.
|
2012-04-17 02:02:27 +00:00
|
|
|
|
|
|
|
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
|
2012-04-17 02:10:24 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>.
|
2012-04-17 02:02:27 +00:00
|
|
|
|
|
|
|
Note that __sigsetjmp() did NOT flush the register stack. Instead,
|
|
|
|
we do it here since __longjmp() is usually much less frequently
|
|
|
|
invoked than __sigsetjmp(). The only difficulty is that __sigsetjmp()
|
|
|
|
didn't (and wouldn't be able to) save ar.rnat either. This is a problem
|
|
|
|
because if we're not careful, we could end up loading random NaT bits.
|
|
|
|
There are two cases:
|
|
|
|
|
|
|
|
(i) ar.bsp < ia64_rse_rnat_addr(jmpbuf.ar_bsp)
|
|
|
|
ar.rnat contains the desired bits---preserve ar.rnat
|
|
|
|
across loadrs and write to ar.bspstore
|
|
|
|
|
|
|
|
(ii) ar.bsp >= ia64_rse_rnat_addr(jmpbuf.ar_bsp)
|
|
|
|
The desired ar.rnat is stored in
|
|
|
|
ia64_rse_rnat_addr(jmpbuf.ar_bsp). Load those
|
|
|
|
bits into ar.rnat after setting ar.bspstore. */
|
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
#include <features.h>
|
|
|
|
|
|
|
|
# define pPos p6 /* is rotate count positive? */
|
|
|
|
# define pNeg p7 /* is rotate count negative? */
|
|
|
|
|
|
|
|
|
|
|
|
/* __longjmp(__jmp_buf buf, int val) */
|
|
|
|
|
|
|
|
LEAF(__longjmp)
|
|
|
|
#ifdef CHECK_RSP
|
2013-12-29 21:16:25 +00:00
|
|
|
alloc r8=ar.pfs,2,1,3,0
|
|
|
|
CHECK_RSP
|
2012-04-17 02:02:27 +00:00
|
|
|
#else
|
2013-12-29 21:16:25 +00:00
|
|
|
alloc r8=ar.pfs,2,0,0,0
|
2012-04-17 02:02:27 +00:00
|
|
|
#endif
|
|
|
|
mov r27=ar.rsc
|
|
|
|
add r2=0x98,in0 // r2 <- &jmpbuf.orig_jmp_buf_addr
|
|
|
|
;;
|
|
|
|
ld8 r8=[r2],-16 // r8 <- orig_jmp_buf_addr
|
|
|
|
mov r10=ar.bsp
|
|
|
|
and r11=~0x3,r27 // clear ar.rsc.mode
|
|
|
|
;;
|
|
|
|
flushrs // flush dirty regs to backing store (must be first in insn grp)
|
|
|
|
ld8 r23=[r2],8 // r23 <- jmpbuf.ar_bsp
|
|
|
|
sub r8=r8,in0 // r8 <- &orig_jmpbuf - &jmpbuf
|
|
|
|
;;
|
|
|
|
ld8 r25=[r2] // r25 <- jmpbuf.ar_unat
|
|
|
|
extr.u r8=r8,3,6 // r8 <- (&orig_jmpbuf - &jmpbuf)/8 & 0x3f
|
|
|
|
;;
|
|
|
|
cmp.lt pNeg,pPos=r8,r0
|
|
|
|
mov r2=in0
|
|
|
|
;;
|
|
|
|
(pPos) mov r16=r8
|
|
|
|
(pNeg) add r16=64,r8
|
|
|
|
(pPos) sub r17=64,r8
|
|
|
|
(pNeg) sub r17=r0,r8
|
|
|
|
;;
|
|
|
|
mov ar.rsc=r11 // put RSE in enforced lazy mode
|
|
|
|
shr.u r8=r25,r16
|
|
|
|
add r3=8,in0 // r3 <- &jmpbuf.r1
|
|
|
|
shl r9=r25,r17
|
|
|
|
;;
|
|
|
|
ld8.fill.nta r28=[r2],16 // r28 <- jmpbuf.sp
|
|
|
|
or r25=r8,r9
|
|
|
|
;;
|
|
|
|
mov r26=ar.rnat
|
|
|
|
mov ar.unat=r25 // setup ar.unat (NaT bits for r1, r4-r7, and r12)
|
|
|
|
;;
|
2013-12-30 09:40:38 +00:00
|
|
|
ld8.fill.nta gp=[r3],32 // r1 (gp)
|
2012-04-17 02:02:27 +00:00
|
|
|
dep r11=-1,r23,3,6 // r11 <- ia64_rse_rnat_addr(jmpbuf.ar_bsp)
|
|
|
|
mov sp=r28 // r12 (sp)
|
|
|
|
;;
|
|
|
|
ld8.nta r16=[r2],16 // caller's unat
|
2013-12-30 09:40:38 +00:00
|
|
|
// ld8.nta r17=[r3],16 // fpsr
|
2012-04-17 02:02:27 +00:00
|
|
|
;;
|
|
|
|
ld8.fill.nta r4=[r2],16 // r4
|
|
|
|
ld8.fill.nta r5=[r3],16 // r5 (gp)
|
|
|
|
cmp.geu p8,p0=r10,r11 // p8 <- (ar.bsp >= jmpbuf.ar_bsp)
|
|
|
|
;;
|
|
|
|
ld8.fill.nta r6=[r2],16 // r6
|
|
|
|
ld8.fill.nta r7=[r3],16 // r7
|
|
|
|
;;
|
|
|
|
mov ar.unat=r16 // restore caller's unat
|
2013-12-30 09:40:38 +00:00
|
|
|
// mov ar.fpsr=r17 // restore fpsr
|
2012-04-17 02:02:27 +00:00
|
|
|
;;
|
|
|
|
ld8.nta r16=[r2],16 // b0
|
|
|
|
ld8.nta r17=[r3],16 // b1
|
|
|
|
;;
|
|
|
|
(p8) ld8 r26=[r11] // r26 <- *ia64_rse_rnat_addr(jmpbuf.ar_bsp)
|
|
|
|
mov ar.bspstore=r23 // restore ar.bspstore
|
|
|
|
;;
|
|
|
|
ld8.nta r18=[r2],16 // b2
|
|
|
|
ld8.nta r19=[r3],16 // b3
|
|
|
|
;;
|
|
|
|
#ifdef PTR_DEMANGLE
|
|
|
|
PTR_DEMANGLE (r16, r24)
|
|
|
|
#endif
|
|
|
|
ld8.nta r20=[r2],16 // b4
|
|
|
|
ld8.nta r21=[r3],16 // b5
|
|
|
|
;;
|
|
|
|
ld8.nta r11=[r2],16 // ar.pfs
|
|
|
|
ld8.nta r22=[r3],56 // ar.lc
|
|
|
|
;;
|
|
|
|
ld8.nta r24=[r2],32 // pr
|
|
|
|
mov b0=r16
|
|
|
|
;;
|
|
|
|
ldf.fill.nta f2=[r2],32
|
|
|
|
ldf.fill.nta f3=[r3],32
|
|
|
|
mov b1=r17
|
|
|
|
;;
|
|
|
|
ldf.fill.nta f4=[r2],32
|
|
|
|
ldf.fill.nta f5=[r3],32
|
|
|
|
mov b2=r18
|
|
|
|
;;
|
|
|
|
ldf.fill.nta f16=[r2],32
|
|
|
|
ldf.fill.nta f17=[r3],32
|
|
|
|
mov b3=r19
|
|
|
|
;;
|
|
|
|
ldf.fill.nta f18=[r2],32
|
|
|
|
ldf.fill.nta f19=[r3],32
|
|
|
|
mov b4=r20
|
|
|
|
;;
|
|
|
|
ldf.fill.nta f20=[r2],32
|
|
|
|
ldf.fill.nta f21=[r3],32
|
|
|
|
mov b5=r21
|
|
|
|
;;
|
|
|
|
ldf.fill.nta f22=[r2],32
|
|
|
|
ldf.fill.nta f23=[r3],32
|
|
|
|
mov ar.lc=r22
|
|
|
|
;;
|
|
|
|
ldf.fill.nta f24=[r2],32
|
|
|
|
ldf.fill.nta f25=[r3],32
|
|
|
|
cmp.eq p8,p9=0,in1
|
|
|
|
;;
|
|
|
|
ldf.fill.nta f26=[r2],32
|
|
|
|
ldf.fill.nta f27=[r3],32
|
|
|
|
mov ar.pfs=r11
|
|
|
|
;;
|
|
|
|
ldf.fill.nta f28=[r2],32
|
|
|
|
ldf.fill.nta f29=[r3],32
|
|
|
|
;;
|
|
|
|
ldf.fill.nta f30=[r2]
|
|
|
|
ldf.fill.nta f31=[r3]
|
|
|
|
(p8) mov r8=1
|
|
|
|
|
|
|
|
mov ar.rnat=r26 // restore ar.rnat
|
|
|
|
;;
|
|
|
|
mov ar.rsc=r27 // restore ar.rsc
|
|
|
|
(p9) mov r8=in1
|
|
|
|
|
|
|
|
invala // virt. -> phys. regnum mapping may change
|
|
|
|
mov pr=r24,-1
|
|
|
|
ret
|
|
|
|
END(__longjmp)
|