2023-01-06 21:08:04 +00:00
|
|
|
/* Copyright (C) 2004-2023 Free Software Foundation, Inc.
|
2004-03-27 00:32:28 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
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-03-09 23:56:38 +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/>. */
|
2004-03-27 00:32:28 +00:00
|
|
|
|
|
|
|
/* Common bits for implementing software divide. */
|
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
#ifdef __linux__
|
|
|
|
# include <asm/gentrap.h>
|
|
|
|
# include <asm/pal.h>
|
|
|
|
#else
|
|
|
|
# include <machine/pal.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* These are not normal C functions. Argument registers are t10 and t11;
|
|
|
|
the result goes in t12; the return address is in t9. Only t12 and AT
|
|
|
|
may be clobbered. */
|
|
|
|
#define X t10
|
|
|
|
#define Y t11
|
|
|
|
#define RV t12
|
|
|
|
#define RA t9
|
|
|
|
|
2005-05-28 23:40:09 +00:00
|
|
|
/* The secureplt format does not allow the division routines to be called
|
2013-06-05 20:26:40 +00:00
|
|
|
via plt; there aren't enough registers free to be clobbered. Avoid
|
2005-05-28 23:40:09 +00:00
|
|
|
setting the symbol type to STT_FUNC, so that the linker won't be tempted
|
|
|
|
to create a plt entry. */
|
|
|
|
#define funcnoplt notype
|
|
|
|
|
2004-03-27 00:32:28 +00:00
|
|
|
/* None of these functions should use implicit anything. */
|
|
|
|
.set nomacro
|
|
|
|
.set noat
|
|
|
|
|
|
|
|
/* Code fragment to invoke _mcount for profiling. This should be invoked
|
|
|
|
directly after allocation of the stack frame. */
|
|
|
|
.macro CALL_MCOUNT
|
|
|
|
#ifdef PROF
|
|
|
|
stq ra, 0(sp)
|
|
|
|
stq pv, 8(sp)
|
|
|
|
stq gp, 16(sp)
|
|
|
|
cfi_rel_offset (ra, 0)
|
|
|
|
cfi_rel_offset (pv, 8)
|
|
|
|
cfi_rel_offset (gp, 16)
|
|
|
|
br AT, 1f
|
|
|
|
.set macro
|
|
|
|
1: ldgp gp, 0(AT)
|
|
|
|
mov RA, ra
|
|
|
|
lda AT, _mcount
|
|
|
|
jsr AT, (AT), _mcount
|
|
|
|
.set nomacro
|
|
|
|
ldq ra, 0(sp)
|
|
|
|
ldq pv, 8(sp)
|
|
|
|
ldq gp, 16(sp)
|
|
|
|
cfi_restore (ra)
|
|
|
|
cfi_restore (pv)
|
|
|
|
cfi_restore (gp)
|
|
|
|
/* Realign subsequent code with what we'd have without this
|
|
|
|
macro at all. This means aligned with one arithmetic insn
|
|
|
|
used within the bundle. */
|
|
|
|
.align 4
|
|
|
|
nop
|
|
|
|
#endif
|
|
|
|
.endm
|
|
|
|
|
|
|
|
/* In order to make the below work, all top-level divide routines must
|
|
|
|
use the same frame size. */
|
2004-09-06 02:01:35 +00:00
|
|
|
#define FRAME 64
|
2004-03-27 00:32:28 +00:00
|
|
|
|
|
|
|
/* Code fragment to generate an integer divide-by-zero fault. When
|
|
|
|
building libc.so, we arrange for there to be one copy of this code
|
|
|
|
placed late in the dso, such that all branches are forward. When
|
|
|
|
building libc.a, we use multiple copies to avoid having an out of
|
|
|
|
range branch. Users should jump to DIVBYZERO. */
|
|
|
|
|
|
|
|
.macro DO_DIVBYZERO
|
|
|
|
#ifdef PIC
|
|
|
|
#define DIVBYZERO __divbyzero
|
|
|
|
.section .gnu.linkonce.t.divbyzero, "ax", @progbits
|
|
|
|
.globl __divbyzero
|
|
|
|
.type __divbyzero, @function
|
|
|
|
.usepv __divbyzero, no
|
|
|
|
.hidden __divbyzero
|
|
|
|
#else
|
|
|
|
#define DIVBYZERO $divbyzero
|
|
|
|
#endif
|
|
|
|
|
|
|
|
.align 4
|
|
|
|
DIVBYZERO:
|
|
|
|
cfi_startproc
|
|
|
|
cfi_return_column (RA)
|
|
|
|
cfi_def_cfa_offset (FRAME)
|
|
|
|
|
|
|
|
mov a0, RV
|
|
|
|
unop
|
|
|
|
lda a0, GEN_INTDIV
|
|
|
|
call_pal PAL_gentrap
|
|
|
|
|
|
|
|
mov RV, a0
|
|
|
|
clr RV
|
|
|
|
lda sp, FRAME(sp)
|
|
|
|
cfi_def_cfa_offset (0)
|
|
|
|
ret $31, (RA), 1
|
|
|
|
|
|
|
|
cfi_endproc
|
|
|
|
.size DIVBYZERO, .-DIVBYZERO
|
|
|
|
.endm
|
2004-05-06 22:01:01 +00:00
|
|
|
|
|
|
|
/* Like the ev6 instructions, but fall back to stack use on prior machines. */
|
|
|
|
|
|
|
|
.arch ev6
|
|
|
|
|
|
|
|
.macro _ITOFS gr, fr, slot
|
|
|
|
#ifdef __alpha_fix__
|
|
|
|
itofs \gr, \fr
|
|
|
|
#else
|
2004-06-14 18:04:25 +00:00
|
|
|
stl \gr, \slot(sp)
|
|
|
|
lds \fr, \slot(sp)
|
2004-05-06 22:01:01 +00:00
|
|
|
#endif
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro _ITOFT gr, fr, slot
|
|
|
|
#ifdef __alpha_fix__
|
|
|
|
itoft \gr, \fr
|
|
|
|
#else
|
2004-06-14 18:04:25 +00:00
|
|
|
stq \gr, \slot(sp)
|
|
|
|
ldt \fr, \slot(sp)
|
2004-05-06 22:01:01 +00:00
|
|
|
#endif
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro _FTOIT fr, gr, slot
|
|
|
|
#ifdef __alpha_fix__
|
|
|
|
ftoit \fr, \gr
|
|
|
|
#else
|
2004-06-14 18:04:25 +00:00
|
|
|
stt \fr, \slot(sp)
|
|
|
|
ldq \gr, \slot(sp)
|
2004-05-06 22:01:01 +00:00
|
|
|
#endif
|
|
|
|
.endm
|
|
|
|
|
|
|
|
/* Similarly, but move two registers. Schedules better for pre-ev6. */
|
|
|
|
|
|
|
|
.macro _ITOFT2 gr1, fr1, slot1, gr2, fr2, slot2
|
|
|
|
#ifdef __alpha_fix__
|
|
|
|
itoft \gr1, \fr1
|
|
|
|
itoft \gr2, \fr2
|
|
|
|
#else
|
2004-06-14 18:04:25 +00:00
|
|
|
stq \gr1, \slot1(sp)
|
|
|
|
stq \gr2, \slot2(sp)
|
|
|
|
ldt \fr1, \slot1(sp)
|
|
|
|
ldt \fr2, \slot2(sp)
|
2004-05-06 22:01:01 +00:00
|
|
|
#endif
|
|
|
|
.endm
|