mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-30 00:31:08 +00:00
5a82c74822
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
93 lines
2.0 KiB
ArmAsm
93 lines
2.0 KiB
ArmAsm
/* SPARC v9 __mpn_rshift --
|
|
|
|
Copyright (C) 1996-2019 Free Software Foundation, Inc.
|
|
|
|
This file is part of the GNU MP Library.
|
|
|
|
The GNU MP 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 MP 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 MP Library; see the file COPYING.LIB. If not,
|
|
see <https://www.gnu.org/licenses/>. */
|
|
|
|
#include <sysdep.h>
|
|
|
|
/* INPUT PARAMETERS
|
|
res_ptr %o0
|
|
src_ptr %o1
|
|
size %o2
|
|
cnt %o3 */
|
|
|
|
.register %g2, #scratch
|
|
.register %g3, #scratch
|
|
|
|
ENTRY(__mpn_rshift)
|
|
ldx [%o1],%g2 ! load first limb
|
|
sub %g0,%o3,%o5 ! negate shift count
|
|
add %o2,-1,%o2
|
|
andcc %o2,4-1,%g4 ! number of limbs in first loop
|
|
sllx %g2,%o5,%g1 ! compute function result
|
|
be,pn %xcc,.L0 ! if multiple of 4 limbs, skip first loop
|
|
mov %g1,%g5
|
|
|
|
sub %o2,%g4,%o2 ! adjust count for main loop
|
|
|
|
.Loop0: ldx [%o1+8],%g3
|
|
add %o0,8,%o0
|
|
add %o1,8,%o1
|
|
srlx %g2,%o3,%o4
|
|
addcc %g4,-1,%g4
|
|
sllx %g3,%o5,%g1
|
|
mov %g3,%g2
|
|
or %o4,%g1,%o4
|
|
bne,pt %xcc,.Loop0
|
|
stx %o4,[%o0-8]
|
|
|
|
.L0: brz,pn %o2,.Lend
|
|
nop
|
|
|
|
.Loop: ldx [%o1+8],%g3
|
|
add %o0,32,%o0
|
|
srlx %g2,%o3,%o4
|
|
addcc %o2,-4,%o2
|
|
sllx %g3,%o5,%g1
|
|
|
|
ldx [%o1+16],%g2
|
|
srlx %g3,%o3,%g4
|
|
or %o4,%g1,%o4
|
|
stx %o4,[%o0-32]
|
|
sllx %g2,%o5,%g1
|
|
|
|
ldx [%o1+24],%g3
|
|
srlx %g2,%o3,%o4
|
|
or %g4,%g1,%g4
|
|
stx %g4,[%o0-24]
|
|
sllx %g3,%o5,%g1
|
|
|
|
ldx [%o1+32],%g2
|
|
srlx %g3,%o3,%g4
|
|
or %o4,%g1,%o4
|
|
stx %o4,[%o0-16]
|
|
sllx %g2,%o5,%g1
|
|
|
|
add %o1,32,%o1
|
|
or %g4,%g1,%g4
|
|
bne,pt %xcc,.Loop
|
|
stx %g4,[%o0-8]
|
|
|
|
.Lend: srlx %g2,%o3,%g2
|
|
stx %g2,[%o0-0]
|
|
|
|
jmpl %o7+8,%g0
|
|
mov %g5,%o0
|
|
|
|
END(__mpn_rshift)
|