~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/mips/math-emu/dp_tint.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 /* IEEE754 floating point arithmetic
  3  * double precision: common utilities
  4  */
  5 /*
  6  * MIPS floating point support
  7  * Copyright (C) 1994-2000 Algorithmics Ltd.
  8  */
  9 
 10 #include "ieee754dp.h"
 11 
 12 int ieee754dp_tint(union ieee754dp x)
 13 {
 14         u64 residue;
 15         int round;
 16         int sticky;
 17         int odd;
 18 
 19         COMPXDP;
 20 
 21         ieee754_clearcx();
 22 
 23         EXPLODEXDP;
 24         FLUSHXDP;
 25 
 26         switch (xc) {
 27         case IEEE754_CLASS_SNAN:
 28         case IEEE754_CLASS_QNAN:
 29                 ieee754_setcx(IEEE754_INVALID_OPERATION);
 30                 return ieee754si_indef();
 31 
 32         case IEEE754_CLASS_INF:
 33                 ieee754_setcx(IEEE754_INVALID_OPERATION);
 34                 return ieee754si_overflow(xs);
 35 
 36         case IEEE754_CLASS_ZERO:
 37                 return 0;
 38 
 39         case IEEE754_CLASS_DNORM:
 40         case IEEE754_CLASS_NORM:
 41                 break;
 42         }
 43         if (xe > 31) {
 44                 /* Set invalid. We will only use overflow for floating
 45                    point overflow */
 46                 ieee754_setcx(IEEE754_INVALID_OPERATION);
 47                 return ieee754si_overflow(xs);
 48         }
 49         /* oh gawd */
 50         if (xe > DP_FBITS) {
 51                 xm <<= xe - DP_FBITS;
 52         } else if (xe < DP_FBITS) {
 53                 if (xe < -1) {
 54                         residue = xm;
 55                         round = 0;
 56                         sticky = residue != 0;
 57                         xm = 0;
 58                 } else {
 59                         residue = xm << (64 - DP_FBITS + xe);
 60                         round = (residue >> 63) != 0;
 61                         sticky = (residue << 1) != 0;
 62                         xm >>= DP_FBITS - xe;
 63                 }
 64                 /* Note: At this point upper 32 bits of xm are guaranteed
 65                    to be zero */
 66                 odd = (xm & 0x1) != 0x0;
 67                 switch (ieee754_csr.rm) {
 68                 case FPU_CSR_RN:
 69                         if (round && (sticky || odd))
 70                                 xm++;
 71                         break;
 72                 case FPU_CSR_RZ:
 73                         break;
 74                 case FPU_CSR_RU:        /* toward +Infinity */
 75                         if ((round || sticky) && !xs)
 76                                 xm++;
 77                         break;
 78                 case FPU_CSR_RD:        /* toward -Infinity */
 79                         if ((round || sticky) && xs)
 80                                 xm++;
 81                         break;
 82                 }
 83                 /* look for valid corner case 0x80000000 */
 84                 if ((xm >> 31) != 0 && (xs == 0 || xm != 0x80000000)) {
 85                         /* This can happen after rounding */
 86                         ieee754_setcx(IEEE754_INVALID_OPERATION);
 87                         return ieee754si_overflow(xs);
 88                 }
 89                 if (round || sticky)
 90                         ieee754_setcx(IEEE754_INEXACT);
 91         }
 92         if (xs)
 93                 return -xm;
 94         else
 95                 return xm;
 96 }
 97 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php