blob: 1b266fb16973093016a96eb5c77197eebfc390ef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* IEEE754 floating point arithmetic
2 * single precision
3 */
4/*
5 * MIPS floating point support
6 * Copyright (C) 1994-2000 Algorithmics Ltd.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can distribute it and/or modify it
9 * under the terms of the GNU General Public License (Version 2) as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
Ralf Baechle3f7cac42014-04-26 01:49:14 +020019 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "ieee754sp.h"
Ralf Baechleb3a7ad22014-04-22 16:33:07 +020023#include "ieee754dp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ralf Baechle2209bcb2014-04-16 01:31:11 +020025union ieee754sp ieee754sp_fdp(union ieee754dp x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
Ralf Baechle3f7cac42014-04-26 01:49:14 +020027 u32 rm;
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 COMPXDP;
Ralf Baechle2209bcb2014-04-16 01:31:11 +020030 union ieee754sp nan;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32 EXPLODEXDP;
33
Ralf Baechle9e8bad12014-04-19 00:36:32 +020034 ieee754_clearcx();
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36 FLUSHXDP;
37
38 switch (xc) {
39 case IEEE754_CLASS_SNAN:
Ralf Baechle9e8bad12014-04-19 00:36:32 +020040 ieee754_setcx(IEEE754_INVALID_OPERATION);
Ralf Baechle90efba32014-04-25 03:19:57 +020041 return ieee754sp_nanxcpt(ieee754sp_indef());
Ralf Baechle3f7cac42014-04-26 01:49:14 +020042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 case IEEE754_CLASS_QNAN:
44 nan = buildsp(xs, SP_EMAX + 1 + SP_EBIAS, (u32)
Ralf Baechlead8fb5532014-04-22 15:51:55 +020045 (xm >> (DP_FBITS - SP_FBITS)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 if (!ieee754sp_isnan(nan))
47 nan = ieee754sp_indef();
Ralf Baechle90efba32014-04-25 03:19:57 +020048 return ieee754sp_nanxcpt(nan);
Ralf Baechle3f7cac42014-04-26 01:49:14 +020049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 case IEEE754_CLASS_INF:
51 return ieee754sp_inf(xs);
Ralf Baechle3f7cac42014-04-26 01:49:14 +020052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 case IEEE754_CLASS_ZERO:
54 return ieee754sp_zero(xs);
Ralf Baechle3f7cac42014-04-26 01:49:14 +020055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 case IEEE754_CLASS_DNORM:
57 /* can't possibly be sp representable */
Ralf Baechle9e8bad12014-04-19 00:36:32 +020058 ieee754_setcx(IEEE754_UNDERFLOW);
59 ieee754_setcx(IEEE754_INEXACT);
Ralf Baechle56a64732014-04-30 11:21:55 +020060 if ((ieee754_csr.rm == FPU_CSR_RU && !xs) ||
61 (ieee754_csr.rm == FPU_CSR_RD && xs))
Ralf Baechle90efba32014-04-25 03:19:57 +020062 return ieee754sp_mind(xs);
63 return ieee754sp_zero(xs);
Ralf Baechle3f7cac42014-04-26 01:49:14 +020064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 case IEEE754_CLASS_NORM:
66 break;
67 }
68
Ralf Baechle3f7cac42014-04-26 01:49:14 +020069 /*
70 * Convert from DP_FBITS to SP_FBITS+3 with sticky right shift.
71 */
72 rm = (xm >> (DP_FBITS - (SP_FBITS + 3))) |
73 ((xm << (64 - (DP_FBITS - (SP_FBITS + 3)))) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Ralf Baechle3f7cac42014-04-26 01:49:14 +020075 return ieee754sp_format(xs, xe, rm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}