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

TOMOYO Linux Cross Reference
Linux/arch/alpha/lib/ev6-csum_ipv6_magic.S

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/alpha/lib/ev6-csum_ipv6_magic.S (Version linux-6.12-rc7) and /arch/i386/lib/ev6-csum_ipv6_magic.S (Version linux-4.10.17)


  1 /* SPDX-License-Identifier: GPL-2.0 */            
  2 /*                                                
  3  * arch/alpha/lib/ev6-csum_ipv6_magic.S           
  4  * 21264 version contributed by Rick Gorton <ri    
  5  *                                                
  6  * unsigned short csum_ipv6_magic(struct in6_a    
  7  *                                struct in6_a    
  8  *                                __u32 len,      
  9  *                                unsigned sho    
 10  *                                unsigned int    
 11  *                                                
 12  * Much of the information about 21264 schedul    
 13  *      Compiler Writer's Guide for the Alpha     
 14  *      abbreviated as 'CWG' in other comments    
 15  *      ftp.digital.com/pub/Digital/info/semic    
 16  * Scheduling notation:                           
 17  *      E       - either cluster                  
 18  *      U       - upper subcluster; U0 - subcl    
 19  *      L       - lower subcluster; L0 - subcl    
 20  * Try not to change the actual algorithm if p    
 21  * Determining actual stalls (other than slott    
 22  *                                                
 23  * unsigned short csum_ipv6_magic(struct in6_a    
 24  *                                struct in6_a    
 25  *                                __u32 len,      
 26  *                                unsigned sho    
 27  *                                unsigned int    
 28  *                                                
 29  * Swap <proto> (takes form 0xaabb)               
 30  * Then shift it left by 48, so result is:        
 31  *      0xbbaa0000 00000000                       
 32  * Then turn it back into a sign extended 32-b    
 33  *      0xbbaa0000                                
 34  *                                                
 35  * Swap <len> (an unsigned int) using Mike Bur    
 36  * (we can't hide the 3-cycle latency of the u    
 37  * Assume input takes form 0xAABBCCDD             
 38  *                                                
 39  * Finally, original 'folding' approach is to     
 40  * add 4 ushorts, resulting in ushort/carry       
 41  * add carry bits + ushort --> ushort             
 42  * add carry bits + ushort --> ushort (in case    
 43  * Truncate to a ushort.  (took 13 instruction    
 44  * From doing some testing, using the approach    
 45  * results in the same outcome:                   
 46  * split into 2 uints, add those, generating a    
 47  * add the 3 low ushorts together, generating     
 48  * a final add of the 2 lower ushorts             
 49  * truncating the result.                         
 50  *                                                
 51  * Misalignment handling added by Ivan Kokshay<    
 52  * The cost is 16 instructions (~8 cycles), in    
 53  * may cause additional delay in rare cases (l    
 54  */                                               
 55                                                   
 56 #include <linux/export.h>                         
 57         .globl csum_ipv6_magic                    
 58         .align 4                                  
 59         .ent csum_ipv6_magic                      
 60         .frame $30,0,$26,0                        
 61 csum_ipv6_magic:                                  
 62         .prologue 0                               
 63                                                   
 64         ldq_u   $0,0($16)       # L : Latency:    
 65         inslh   $18,7,$4        # U : 00000000    
 66         ldq_u   $1,8($16)       # L : Latency:    
 67         sll     $19,8,$7        # U : U L U L     
 68                                                   
 69         and     $16,7,$6        # E : src misa    
 70         ldq_u   $5,15($16)      # L : Latency:    
 71         zapnot  $20,15,$20      # U : zero ext    
 72         ldq_u   $2,0($17)       # L : U L U L     
 73                                                   
 74         extql   $0,$6,$0        # U :             
 75         extqh   $1,$6,$22       # U :             
 76         ldq_u   $3,8($17)       # L : Latency:    
 77         sll     $19,24,$19      # U : U U L U     
 78                                                   
 79         cmoveq  $6,$31,$22      # E : src alig    
 80         ldq_u   $23,15($17)     # L : Latency:    
 81         inswl   $18,3,$18       # U : 000000CC    
 82         addl    $19,$7,$19      # E : U L U L     
 83                                                   
 84         or      $0,$22,$0       # E : 1st src     
 85         extql   $1,$6,$1        # U :             
 86         or      $18,$4,$18      # E : 000000CC    
 87         extqh   $5,$6,$5        # U : L U L U     
 88                                                   
 89         and     $17,7,$6        # E : dst misa    
 90         extql   $2,$6,$2        # U :             
 91         or      $1,$5,$1        # E : 2nd src     
 92         extqh   $3,$6,$22       # U : L U L U     
 93                                                   
 94         cmoveq  $6,$31,$22      # E : dst alig    
 95         extql   $3,$6,$3        # U :             
 96         addq    $20,$0,$20      # E : begin su    
 97         extqh   $23,$6,$23      # U : L U L U     
 98                                                   
 99         srl     $18,16,$4       # U : 00000000    
100         or      $2,$22,$2       # E : 1st dst     
101         zap     $19,0x3,$19     # U : <sign bi    
102         or      $3,$23,$3       # E : U L U L     
103                                                   
104         cmpult  $20,$0,$0       # E :             
105         addq    $20,$1,$20      # E :             
106         zapnot  $18,0xa,$18     # U : 00000000    
107         zap     $4,0xa,$4       # U : U U L L     
108                                                   
109         or      $18,$4,$18      # E : 00000000    
110         nop                     # E :             
111         cmpult  $20,$1,$1       # E :             
112         addq    $20,$2,$20      # E : U L U L     
113                                                   
114         cmpult  $20,$2,$2       # E :             
115         addq    $20,$3,$20      # E :             
116         cmpult  $20,$3,$3       # E : (1 cycle    
117         addq    $20,$18,$20     # E : U L U L     
118                                                   
119         cmpult  $20,$18,$18     # E :             
120         addq    $20,$19,$20     # E : (1 cycle    
121         addq    $0,$1,$0        # E : merge th    
122         addq    $2,$3,$2        # E :             
123                                                   
124         cmpult  $20,$19,$19     # E :             
125         addq    $18,$19,$18     # E : (1 cycle    
126         addq    $0,$2,$0        # E :             
127         addq    $20,$18,$20     # E : U L U L     
128                 /* (1 cycle stall on $18, 2 cy    
129                                                   
130         addq    $0,$20,$0       # E :             
131         zapnot  $0,15,$1        # U : Start fo    
132         nop                     # E :             
133         srl     $0,32,$0        # U : U L U L     
134                                                   
135         addq    $1,$0,$1        # E : Finished    
136         extwl   $1,2,$2         # U : ushort[1    
137         zapnot  $1,3,$0         # U : ushort[0    
138         extwl   $1,4,$1         # U : ushort[2    
139                                                   
140         addq    $0,$2,$0        # E               
141         addq    $0,$1,$3        # E : Finished    
142                 /* (1 cycle stall on $0) */       
143         extwl   $3,2,$1         # U : ushort[1    
144         nop                     # E : L U L U     
145                                                   
146         addq    $1,$3,$0        # E : Final ca    
147         not     $0,$4           # E : compleme    
148         zapnot  $4,3,$0         # U : clear up    
149                 /* (1 cycle stall on $4) */       
150         ret                     # L0 : L U L U    
151                                                   
152         .end csum_ipv6_magic                      
153         EXPORT_SYMBOL(csum_ipv6_magic)            
                                                      

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