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

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

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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 ] ~

Diff markup

Differences between /arch/mips/math-emu/sp_sqrt.c (Architecture ppc) and /arch/m68k/math-emu/sp_sqrt.c (Architecture m68k)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 
  2 /* IEEE754 floating point arithmetic              
  3  * single precision square root                   
  4  */                                               
  5 /*                                                
  6  * MIPS floating point support                    
  7  * Copyright (C) 1994-2000 Algorithmics Ltd.      
  8  */                                               
  9                                                   
 10 #include "ieee754sp.h"                            
 11                                                   
 12 union ieee754sp ieee754sp_sqrt(union ieee754sp    
 13 {                                                 
 14         int ix, s, q, m, t, i;                    
 15         unsigned int r;                           
 16         COMPXSP;                                  
 17                                                   
 18         /* take care of Inf and NaN */            
 19                                                   
 20         EXPLODEXSP;                               
 21         ieee754_clearcx();                        
 22         FLUSHXSP;                                 
 23                                                   
 24         /* x == INF or NAN? */                    
 25         switch (xc) {                             
 26         case IEEE754_CLASS_SNAN:                  
 27                 return ieee754sp_nanxcpt(x);      
 28                                                   
 29         case IEEE754_CLASS_QNAN:                  
 30                 /* sqrt(Nan) = Nan */             
 31                 return x;                         
 32                                                   
 33         case IEEE754_CLASS_ZERO:                  
 34                 /* sqrt(0) = 0 */                 
 35                 return x;                         
 36                                                   
 37         case IEEE754_CLASS_INF:                   
 38                 if (xs) {                         
 39                         /* sqrt(-Inf) = Nan */    
 40                         ieee754_setcx(IEEE754_    
 41                         return ieee754sp_indef    
 42                 }                                 
 43                 /* sqrt(+Inf) = Inf */            
 44                 return x;                         
 45                                                   
 46         case IEEE754_CLASS_DNORM:                 
 47         case IEEE754_CLASS_NORM:                  
 48                 if (xs) {                         
 49                         /* sqrt(-x) = Nan */      
 50                         ieee754_setcx(IEEE754_    
 51                         return ieee754sp_indef    
 52                 }                                 
 53                 break;                            
 54         }                                         
 55                                                   
 56         ix = x.bits;                              
 57                                                   
 58         /* normalize x */                         
 59         m = (ix >> 23);                           
 60         if (m == 0) {           /* subnormal x    
 61                 for (i = 0; (ix & 0x00800000)     
 62                         ix <<= 1;                 
 63                 m -= i - 1;                       
 64         }                                         
 65         m -= 127;               /* unbias expo    
 66         ix = (ix & 0x007fffff) | 0x00800000;      
 67         if (m & 1)              /* odd m, doub    
 68                 ix += ix;                         
 69         m >>= 1;                /* m = [m/2] *    
 70                                                   
 71         /* generate sqrt(x) bit by bit */         
 72         ix += ix;                                 
 73         s = 0;                                    
 74         q = 0;                  /* q = sqrt(x)    
 75         r = 0x01000000;         /* r = moving     
 76                                                   
 77         while (r != 0) {                          
 78                 t = s + r;                        
 79                 if (t <= ix) {                    
 80                         s = t + r;                
 81                         ix -= t;                  
 82                         q += r;                   
 83                 }                                 
 84                 ix += ix;                         
 85                 r >>= 1;                          
 86         }                                         
 87                                                   
 88         if (ix != 0) {                            
 89                 ieee754_setcx(IEEE754_INEXACT)    
 90                 switch (ieee754_csr.rm) {         
 91                 case FPU_CSR_RU:                  
 92                         q += 2;                   
 93                         break;                    
 94                 case FPU_CSR_RN:                  
 95                         q += (q & 1);             
 96                         break;                    
 97                 }                                 
 98         }                                         
 99         ix = (q >> 1) + 0x3f000000;               
100         ix += (m << 23);                          
101         x.bits = ix;                              
102         return x;                                 
103 }                                                 
104                                                   

~ [ 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