Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
sp_div.c
Go to the documentation of this file.
1 /* IEEE754 floating point arithmetic
2  * single precision
3  */
4 /*
5  * MIPS floating point support
6  * Copyright (C) 1994-2000 Algorithmics Ltd.
7  *
8  * ########################################################################
9  *
10  * This program is free software; you can distribute it and/or modify it
11  * under the terms of the GNU General Public License (Version 2) as
12  * published by the Free Software Foundation.
13  *
14  * This program is distributed in the hope it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17  * for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
22  *
23  * ########################################################################
24  */
25 
26 
27 #include "ieee754sp.h"
28 
29 ieee754sp ieee754sp_div(ieee754sp x, ieee754sp y)
30 {
31  COMPXSP;
32  COMPYSP;
33 
34  EXPLODEXSP;
35  EXPLODEYSP;
36 
37  CLEARCX;
38 
39  FLUSHXSP;
40  FLUSHYSP;
41 
42  switch (CLPAIR(xc, yc)) {
55  return ieee754sp_nanxcpt(ieee754sp_indef(), "div", x, y);
56 
61  return y;
62 
68  return x;
69 
70 
71  /* Infinity handling
72  */
73 
76  return ieee754sp_xcpt(ieee754sp_indef(), "div", x, y);
77 
81  return ieee754sp_zero(xs ^ ys);
82 
86  return ieee754sp_inf(xs ^ ys);
87 
88  /* Zero handling
89  */
90 
93  return ieee754sp_xcpt(ieee754sp_indef(), "div", x, y);
94 
98  return ieee754sp_xcpt(ieee754sp_inf(xs ^ ys), "div", x, y);
99 
102  return ieee754sp_zero(xs == ys ? 0 : 1);
103 
105  SPDNORMX;
106 
108  SPDNORMY;
109  break;
110 
112  SPDNORMX;
113  break;
114 
116  break;
117  }
118  assert(xm & SP_HIDDEN_BIT);
119  assert(ym & SP_HIDDEN_BIT);
120 
121  /* provide rounding space */
122  xm <<= 3;
123  ym <<= 3;
124 
125  {
126  /* now the dirty work */
127 
128  unsigned rm = 0;
129  int re = xe - ye;
130  unsigned bm;
131 
132  for (bm = SP_MBIT(SP_MBITS + 2); bm; bm >>= 1) {
133  if (xm >= ym) {
134  xm -= ym;
135  rm |= bm;
136  if (xm == 0)
137  break;
138  }
139  xm <<= 1;
140  }
141  rm <<= 1;
142  if (xm)
143  rm |= 1; /* have remainder, set sticky */
144 
145  assert(rm);
146 
147  /* normalise rm to rounding precision ?
148  */
149  while ((rm >> (SP_MBITS + 3)) == 0) {
150  rm <<= 1;
151  re--;
152  }
153 
154  SPNORMRET2(xs == ys ? 0 : 1, re, rm, "div", x, y);
155  }
156 }