glibc/sysdeps/alpha/div.S

88 lines
1.6 KiB
ArmAsm
Raw Normal View History

/* Copyright (C) 1996-2017 Free Software Foundation, Inc.
1996-11-06 05:24:11 +01:00
This file is part of the GNU C Library.
1997-03-20 20:33:28 +01:00
Contributed by Richard Henderson <rth@tamu.edu>.
1996-11-06 05:24:11 +01:00
The GNU C Library is free software; you can redistribute it and/or
2001-07-06 06:56:23 +02: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.
1996-11-06 05:24:11 +01: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 06:56:23 +02:00
Lesser General Public License for more details.
1996-11-06 05:24:11 +01:00
2001-07-06 06:56:23 +02:00
You should have received a copy of the GNU Lesser General Public
2012-03-10 00:56:38 +01:00
License along with the GNU C Library. If not, see
<http://www.gnu.org/licenses/>. */
1996-11-06 05:24:11 +01:00
#include "div_libc.h"
1996-11-06 05:24:11 +01:00
#undef FRAME
#ifdef __alpha_fix__
#define FRAME 0
1996-11-06 05:24:11 +01:00
#else
#define FRAME 16
1996-11-06 05:24:11 +01:00
#endif
.set noat
.align 4
.globl div
.ent div
div:
.frame sp, FRAME, ra
#if FRAME > 0
lda sp, -FRAME(sp)
#endif
1996-11-06 05:24:11 +01:00
#ifdef PROF
.set macro
1996-11-06 05:24:11 +01:00
ldgp gp, 0(pv)
lda AT, _mcount
jsr AT, (AT), _mcount
.set nomacro
1996-11-06 05:24:11 +01:00
.prologue 1
#else
.prologue 0
#endif
beq $18, $divbyzero
excb
mf_fpcr $f10
_ITOFT2 $17, $f0, 0, $18, $f1, 8
cvtqt $f0, $f0
cvtqt $f1, $f1
divt/c $f0, $f1, $f0
cvttq/c $f0, $f0
excb
mt_fpcr $f10
_FTOIT $f0, $0, 0
mull $0, $18, $1
subl $17, $1, $1
stl $0, 0(a0)
stl $1, 4(a0)
mov a0, v0
#if FRAME > 0
lda sp, FRAME(sp)
#endif
ret
1996-11-06 05:24:11 +01:00
$divbyzero:
mov a0, v0
lda a0, GEN_INTDIV
1996-11-06 05:24:11 +01:00
call_pal PAL_gentrap
stl zero, 0(v0)
stl zero, 4(v0)
#if FRAME > 0
lda sp, FRAME(sp)
#endif
1996-11-06 05:24:11 +01:00
ret
.end div