1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Linux/PA-RISC Project (http://www.parisc-linux.org/)
5 * Floating-point emulation code
6 * Copyright (C) 2001 Hewlett-Packard (Paul Bame) <bame@debian.org>
12 * @(#) pa/spmath/sfdiv.c $Revision: 1.1 $
15 * Single Precision Floating-point Divide
17 * External Interfaces:
18 * sgl_fdiv(srcptr1,srcptr2,dstptr,status)
20 * Internal Interfaces:
23 * <<please update with a overview of the operation of this file>>
30 #include "sgl_float.h"
33 * Single Precision Floating-point Divide
37 sgl_fdiv (sgl_floating_point
* srcptr1
, sgl_floating_point
* srcptr2
,
38 sgl_floating_point
* dstptr
, unsigned int *status
)
40 register unsigned int opnd1
, opnd2
, opnd3
, result
;
41 register int dest_exponent
, count
;
42 register boolean inexact
= FALSE
, guardbit
= FALSE
, stickybit
= FALSE
;
48 * set sign bit of result
50 if (Sgl_sign(opnd1
) ^ Sgl_sign(opnd2
)) Sgl_setnegativezero(result
);
51 else Sgl_setzero(result
);
53 * check first operand for NaN's or infinity
55 if (Sgl_isinfinity_exponent(opnd1
)) {
56 if (Sgl_iszero_mantissa(opnd1
)) {
57 if (Sgl_isnotnan(opnd2
)) {
58 if (Sgl_isinfinity(opnd2
)) {
60 * invalid since both operands
63 if (Is_invalidtrap_enabled())
64 return(INVALIDEXCEPTION
);
66 Sgl_makequietnan(result
);
73 Sgl_setinfinity_exponentmantissa(result
);
80 * is NaN; signaling or quiet?
82 if (Sgl_isone_signaling(opnd1
)) {
83 /* trap if INVALIDTRAP enabled */
84 if (Is_invalidtrap_enabled())
85 return(INVALIDEXCEPTION
);
91 * is second operand a signaling NaN?
93 else if (Sgl_is_signalingnan(opnd2
)) {
94 /* trap if INVALIDTRAP enabled */
95 if (Is_invalidtrap_enabled())
96 return(INVALIDEXCEPTION
);
111 * check second operand for NaN's or infinity
113 if (Sgl_isinfinity_exponent(opnd2
)) {
114 if (Sgl_iszero_mantissa(opnd2
)) {
118 Sgl_setzero_exponentmantissa(result
);
123 * is NaN; signaling or quiet?
125 if (Sgl_isone_signaling(opnd2
)) {
126 /* trap if INVALIDTRAP enabled */
127 if (Is_invalidtrap_enabled()) return(INVALIDEXCEPTION
);
130 Sgl_set_quiet(opnd2
);
139 * check for division by zero
141 if (Sgl_iszero_exponentmantissa(opnd2
)) {
142 if (Sgl_iszero_exponentmantissa(opnd1
)) {
143 /* invalid since both operands are zero */
144 if (Is_invalidtrap_enabled()) return(INVALIDEXCEPTION
);
146 Sgl_makequietnan(result
);
150 if (Is_divisionbyzerotrap_enabled())
151 return(DIVISIONBYZEROEXCEPTION
);
152 Set_divisionbyzeroflag();
153 Sgl_setinfinity_exponentmantissa(result
);
160 dest_exponent
= Sgl_exponent(opnd1
) - Sgl_exponent(opnd2
) + SGL_BIAS
;
165 if (Sgl_isnotzero_exponent(opnd1
)) {
167 Sgl_clear_signexponent_set_hidden(opnd1
);
171 if (Sgl_iszero_mantissa(opnd1
)) {
172 Sgl_setzero_exponentmantissa(result
);
176 /* is denormalized; want to normalize */
177 Sgl_clear_signexponent(opnd1
);
178 Sgl_leftshiftby1(opnd1
);
179 Sgl_normalize(opnd1
,dest_exponent
);
181 /* opnd2 needs to have hidden bit set with msb in hidden bit */
182 if (Sgl_isnotzero_exponent(opnd2
)) {
183 Sgl_clear_signexponent_set_hidden(opnd2
);
186 /* is denormalized; want to normalize */
187 Sgl_clear_signexponent(opnd2
);
188 Sgl_leftshiftby1(opnd2
);
189 while(Sgl_iszero_hiddenhigh7mantissa(opnd2
)) {
190 Sgl_leftshiftby8(opnd2
);
193 if(Sgl_iszero_hiddenhigh3mantissa(opnd2
)) {
194 Sgl_leftshiftby4(opnd2
);
197 while(Sgl_iszero_hidden(opnd2
)) {
198 Sgl_leftshiftby1(opnd2
);
203 /* Divide the source mantissas */
206 * A non_restoring divide algorithm is used.
208 Sgl_subtract(opnd1
,opnd2
,opnd1
);
210 for (count
=1;count
<=SGL_P
&& Sgl_all(opnd1
);count
++) {
211 Sgl_leftshiftby1(opnd1
);
212 Sgl_leftshiftby1(opnd3
);
213 if (Sgl_iszero_sign(opnd1
)) {
214 Sgl_setone_lowmantissa(opnd3
);
215 Sgl_subtract(opnd1
,opnd2
,opnd1
);
217 else Sgl_addition(opnd1
,opnd2
,opnd1
);
219 if (count
<= SGL_P
) {
220 Sgl_leftshiftby1(opnd3
);
221 Sgl_setone_lowmantissa(opnd3
);
222 Sgl_leftshift(opnd3
,SGL_P
-count
);
223 if (Sgl_iszero_hidden(opnd3
)) {
224 Sgl_leftshiftby1(opnd3
);
229 if (Sgl_iszero_hidden(opnd3
)) {
230 /* need to get one more bit of result */
231 Sgl_leftshiftby1(opnd1
);
232 Sgl_leftshiftby1(opnd3
);
233 if (Sgl_iszero_sign(opnd1
)) {
234 Sgl_setone_lowmantissa(opnd3
);
235 Sgl_subtract(opnd1
,opnd2
,opnd1
);
237 else Sgl_addition(opnd1
,opnd2
,opnd1
);
240 if (Sgl_iszero_sign(opnd1
)) guardbit
= TRUE
;
241 stickybit
= Sgl_all(opnd1
);
243 inexact
= guardbit
| stickybit
;
248 if (inexact
&& (dest_exponent
> 0 || Is_underflowtrap_enabled())) {
249 Sgl_clear_signexponent(opnd3
);
250 switch (Rounding_mode()) {
252 if (Sgl_iszero_sign(result
))
253 Sgl_increment_mantissa(opnd3
);
256 if (Sgl_isone_sign(result
))
257 Sgl_increment_mantissa(opnd3
);
261 if (stickybit
|| Sgl_isone_lowmantissa(opnd3
))
262 Sgl_increment_mantissa(opnd3
);
265 if (Sgl_isone_hidden(opnd3
)) dest_exponent
++;
267 Sgl_set_mantissa(result
,opnd3
);
272 if (dest_exponent
>= SGL_INFINITY_EXPONENT
) {
273 /* trap if OVERFLOWTRAP enabled */
274 if (Is_overflowtrap_enabled()) {
276 * Adjust bias of result
278 Sgl_setwrapped_exponent(result
,dest_exponent
,ovfl
);
281 if (Is_inexacttrap_enabled())
282 return(OVERFLOWEXCEPTION
| INEXACTEXCEPTION
);
283 else Set_inexactflag();
284 return(OVERFLOWEXCEPTION
);
287 /* set result to infinity or largest number */
288 Sgl_setoverflow(result
);
294 else if (dest_exponent
<= 0) {
295 /* trap if UNDERFLOWTRAP enabled */
296 if (Is_underflowtrap_enabled()) {
298 * Adjust bias of result
300 Sgl_setwrapped_exponent(result
,dest_exponent
,unfl
);
303 if (Is_inexacttrap_enabled())
304 return(UNDERFLOWEXCEPTION
| INEXACTEXCEPTION
);
305 else Set_inexactflag();
306 return(UNDERFLOWEXCEPTION
);
309 /* Determine if should set underflow flag */
311 if (dest_exponent
== 0 && inexact
) {
312 switch (Rounding_mode()) {
314 if (Sgl_iszero_sign(result
)) {
315 Sgl_increment(opnd3
);
316 if (Sgl_isone_hiddenoverflow(opnd3
))
318 Sgl_decrement(opnd3
);
322 if (Sgl_isone_sign(result
)) {
323 Sgl_increment(opnd3
);
324 if (Sgl_isone_hiddenoverflow(opnd3
))
326 Sgl_decrement(opnd3
);
330 if (guardbit
&& (stickybit
||
331 Sgl_isone_lowmantissa(opnd3
))) {
332 Sgl_increment(opnd3
);
333 if (Sgl_isone_hiddenoverflow(opnd3
))
335 Sgl_decrement(opnd3
);
342 * denormalize result or set to signed zero
345 Sgl_denormalize(opnd3
,dest_exponent
,guardbit
,stickybit
,inexact
);
347 /* return rounded number */
349 switch (Rounding_mode()) {
351 if (Sgl_iszero_sign(result
)) {
352 Sgl_increment(opnd3
);
356 if (Sgl_isone_sign(result
)) {
357 Sgl_increment(opnd3
);
361 if (guardbit
&& (stickybit
||
362 Sgl_isone_lowmantissa(opnd3
))) {
363 Sgl_increment(opnd3
);
367 if (is_tiny
) Set_underflowflag();
369 Sgl_set_exponentmantissa(result
,opnd3
);
371 else Sgl_set_exponent(result
,dest_exponent
);
373 /* check for inexact */
375 if (Is_inexacttrap_enabled()) return(INEXACTEXCEPTION
);
376 else Set_inexactflag();