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

TOMOYO Linux Cross Reference
Linux/arch/x86/crypto/sha512-avx-asm.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/x86/crypto/sha512-avx-asm.S (Version linux-6.12-rc7) and /arch/mips/crypto/sha512-avx-asm.S (Version linux-5.16.20)


  1 ##############################################    
  2 # Implement fast SHA-512 with AVX instructions    
  3 #                                                 
  4 # Copyright (C) 2013 Intel Corporation.           
  5 #                                                 
  6 # Authors:                                        
  7 #     James Guilford <james.guilford@intel.com>    
  8 #     Kirk Yap <kirk.s.yap@intel.com>              
  9 #     David Cote <david.m.cote@intel.com>          
 10 #     Tim Chen <tim.c.chen@linux.intel.com>        
 11 #                                                 
 12 # This software is available to you under a ch    
 13 # licenses.  You may choose to be licensed und    
 14 # General Public License (GPL) Version 2, avai    
 15 # COPYING in the main directory of this source    
 16 # OpenIB.org BSD license below:                   
 17 #                                                 
 18 #     Redistribution and use in source and bin    
 19 #     without modification, are permitted prov    
 20 #     conditions are met:                         
 21 #                                                 
 22 #      - Redistributions of source code must r    
 23 #        copyright notice, this list of condit    
 24 #        disclaimer.                              
 25 #                                                 
 26 #      - Redistributions in binary form must r    
 27 #        copyright notice, this list of condit    
 28 #        disclaimer in the documentation and/o    
 29 #        provided with the distribution.          
 30 #                                                 
 31 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WA    
 32 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITE    
 33 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PU    
 34 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHO    
 35 # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LI    
 36 # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISI    
 37 # CONNECTION WITH THE SOFTWARE OR THE USE OR O    
 38 # SOFTWARE.                                       
 39 #                                                 
 40 ##############################################    
 41 #                                                 
 42 # This code is described in an Intel White-Pap    
 43 # "Fast SHA-512 Implementations on Intel Archi    
 44 #                                                 
 45 # To find it, surf to http://www.intel.com/p/e    
 46 # and search for that title.                      
 47 #                                                 
 48 ##############################################    
 49                                                   
 50 #include <linux/linkage.h>                        
 51 #include <linux/cfi_types.h>                      
 52                                                   
 53 .text                                             
 54                                                   
 55 # Virtual Registers                               
 56 # ARG1                                            
 57 digest  = %rdi                                    
 58 # ARG2                                            
 59 msg     = %rsi                                    
 60 # ARG3                                            
 61 msglen  = %rdx                                    
 62 T1      = %rcx                                    
 63 T2      = %r8                                     
 64 a_64    = %r9                                     
 65 b_64    = %r10                                    
 66 c_64    = %r11                                    
 67 d_64    = %r12                                    
 68 e_64    = %r13                                    
 69 f_64    = %r14                                    
 70 g_64    = %r15                                    
 71 h_64    = %rbx                                    
 72 tmp0    = %rax                                    
 73                                                   
 74 # Local variables (stack frame)                   
 75                                                   
 76 # Message Schedule                                
 77 W_SIZE = 80*8                                     
 78 # W[t] + K[t] | W[t+1] + K[t+1]                   
 79 WK_SIZE = 2*8                                     
 80                                                   
 81 frame_W = 0                                       
 82 frame_WK = frame_W + W_SIZE                       
 83 frame_size = frame_WK + WK_SIZE                   
 84                                                   
 85 # Useful QWORD "arrays" for simpler memory ref    
 86 # MSG, DIGEST, K_t, W_t are arrays                
 87 # WK_2(t) points to 1 of 2 qwords at frame.WK     
 88                                                   
 89 # Input message (arg1)                            
 90 #define MSG(i)    8*i(msg)                        
 91                                                   
 92 # Output Digest (arg2)                            
 93 #define DIGEST(i) 8*i(digest)                     
 94                                                   
 95 # SHA Constants (static mem)                      
 96 #define K_t(i)    8*i+K512(%rip)                  
 97                                                   
 98 # Message Schedule (stack frame)                  
 99 #define W_t(i)    8*i+frame_W(%rsp)               
100                                                   
101 # W[t]+K[t] (stack frame)                         
102 #define WK_2(i)   8*((i%2))+frame_WK(%rsp)        
103                                                   
104 .macro RotateState                                
105         # Rotate symbols a..h right               
106         TMP   = h_64                              
107         h_64  = g_64                              
108         g_64  = f_64                              
109         f_64  = e_64                              
110         e_64  = d_64                              
111         d_64  = c_64                              
112         c_64  = b_64                              
113         b_64  = a_64                              
114         a_64  = TMP                               
115 .endm                                             
116                                                   
117 .macro RORQ p1 p2                                 
118         # shld is faster than ror on Sandybrid    
119         shld    $(64-\p2), \p1, \p1               
120 .endm                                             
121                                                   
122 .macro SHA512_Round rnd                           
123         # Compute Round %%t                       
124         mov     f_64, T1          # T1 = f        
125         mov     e_64, tmp0        # tmp = e       
126         xor     g_64, T1          # T1 = f ^ g    
127         RORQ    tmp0, 23   # 41    # tmp = e r    
128         and     e_64, T1          # T1 = (f ^     
129         xor     e_64, tmp0        # tmp = (e r    
130         xor     g_64, T1          # T1 = ((f ^    
131         idx = \rnd                                
132         add     WK_2(idx), T1     # W[t] + K[t    
133         RORQ    tmp0, 4   # 18    # tmp = ((e     
134         xor     e_64, tmp0        # tmp = (((e    
135         mov     a_64, T2          # T2 = a        
136         add     h_64, T1          # T1 = CH(e,    
137         RORQ    tmp0, 14  # 14    # tmp = ((((    
138         add     tmp0, T1          # T1 = CH(e,    
139         mov     a_64, tmp0        # tmp = a       
140         xor     c_64, T2          # T2 = a ^ c    
141         and     c_64, tmp0        # tmp = a &     
142         and     b_64, T2          # T2 = (a ^     
143         xor     tmp0, T2          # T2 = ((a ^    
144         mov     a_64, tmp0        # tmp = a       
145         RORQ    tmp0, 5  # 39     # tmp = a ro    
146         xor     a_64, tmp0        # tmp = (a r    
147         add     T1, d_64          # e(next_sta    
148         RORQ    tmp0, 6  # 34     # tmp = ((a     
149         xor     a_64, tmp0        # tmp = (((a    
150         lea     (T1, T2), h_64    # a(next_sta    
151         RORQ    tmp0, 28  # 28    # tmp = ((((    
152         add     tmp0, h_64        # a(next_sta    
153         RotateState                               
154 .endm                                             
155                                                   
156 .macro SHA512_2Sched_2Round_avx rnd               
157         # Compute rounds t-2 and t-1              
158         # Compute message schedule QWORDS t an    
159                                                   
160         #   Two rounds are computed based on t    
161         # K[t-1]+W[t-1] which were previously     
162         # scheduler.                              
163         #   The two new schedule QWORDS are st    
164         # They are then added to their respect    
165         # [K_t(t)] and [K_t(t+1)] and stored a    
166         #   For brievity, the comments followi    
167         # the first of a pair of QWORDS.          
168         # Eg. XMM4=W[t-2] really means XMM4={W    
169         #   The computation of the message sch    
170         # stitched to take advantage of instru    
171                                                   
172         idx = \rnd - 2                            
173         vmovdqa W_t(idx), %xmm4         # XMM4    
174         idx = \rnd - 15                           
175         vmovdqu W_t(idx), %xmm5         # XMM5    
176         mov     f_64, T1                          
177         vpsrlq  $61, %xmm4, %xmm0       # XMM0    
178         mov     e_64, tmp0                        
179         vpsrlq  $1, %xmm5, %xmm6        # XMM6    
180         xor     g_64, T1                          
181         RORQ    tmp0, 23 # 41                     
182         vpsrlq  $19, %xmm4, %xmm1       # XMM1    
183         and     e_64, T1                          
184         xor     e_64, tmp0                        
185         vpxor   %xmm1, %xmm0, %xmm0     # XMM0    
186         xor     g_64, T1                          
187         idx = \rnd                                
188         add     WK_2(idx), T1#                    
189         vpsrlq  $8, %xmm5, %xmm7        # XMM7    
190         RORQ    tmp0, 4 # 18                      
191         vpsrlq  $6, %xmm4, %xmm2        # XMM2    
192         xor     e_64, tmp0                        
193         mov     a_64, T2                          
194         add     h_64, T1                          
195         vpxor   %xmm7, %xmm6, %xmm6     # XMM6    
196         RORQ    tmp0, 14 # 14                     
197         add     tmp0, T1                          
198         vpsrlq  $7, %xmm5, %xmm8        # XMM8    
199         mov     a_64, tmp0                        
200         xor     c_64, T2                          
201         vpsllq  $(64-61), %xmm4, %xmm3  # XMM3    
202         and     c_64, tmp0                        
203         and     b_64, T2                          
204         vpxor   %xmm3, %xmm2, %xmm2     # XMM2    
205         xor     tmp0, T2                          
206         mov     a_64, tmp0                        
207         vpsllq  $(64-1), %xmm5, %xmm9   # XMM9    
208         RORQ    tmp0, 5 # 39                      
209         vpxor   %xmm9, %xmm8, %xmm8     # XMM8    
210         xor     a_64, tmp0                        
211         add     T1, d_64                          
212         RORQ    tmp0, 6 # 34                      
213         xor     a_64, tmp0                        
214         vpxor   %xmm8, %xmm6, %xmm6     # XMM6    
215                                         #  W[t    
216         lea     (T1, T2), h_64                    
217         RORQ    tmp0, 28 # 28                     
218         vpsllq  $(64-19), %xmm4, %xmm4  # XMM4    
219         add     tmp0, h_64                        
220         RotateState                               
221         vpxor   %xmm4, %xmm0, %xmm0     # XMM0    
222                                         #         
223         mov     f_64, T1                          
224         vpxor   %xmm2, %xmm0, %xmm0     # XMM0    
225         mov     e_64, tmp0                        
226         xor     g_64, T1                          
227         idx = \rnd - 16                           
228         vpaddq  W_t(idx), %xmm0, %xmm0  # XMM0    
229         idx = \rnd - 7                            
230         vmovdqu W_t(idx), %xmm1         # XMM1    
231         RORQ    tmp0, 23 # 41                     
232         and     e_64, T1                          
233         xor     e_64, tmp0                        
234         xor     g_64, T1                          
235         vpsllq  $(64-8), %xmm5, %xmm5   # XMM5    
236         idx = \rnd + 1                            
237         add     WK_2(idx), T1                     
238         vpxor   %xmm5, %xmm6, %xmm6     # XMM6    
239         RORQ    tmp0, 4 # 18                      
240         vpaddq  %xmm6, %xmm0, %xmm0     # XMM0    
241         xor     e_64, tmp0                        
242         vpaddq  %xmm1, %xmm0, %xmm0     # XMM0    
243                                         #         
244         mov     a_64, T2                          
245         add     h_64, T1                          
246         RORQ    tmp0, 14 # 14                     
247         add     tmp0, T1                          
248         idx = \rnd                                
249         vmovdqa %xmm0, W_t(idx)         # Stor    
250         vpaddq  K_t(idx), %xmm0, %xmm0  # Comp    
251         vmovdqa %xmm0, WK_2(idx)        # Stor    
252         mov     a_64, tmp0                        
253         xor     c_64, T2                          
254         and     c_64, tmp0                        
255         and     b_64, T2                          
256         xor     tmp0, T2                          
257         mov     a_64, tmp0                        
258         RORQ    tmp0, 5 # 39                      
259         xor     a_64, tmp0                        
260         add     T1, d_64                          
261         RORQ    tmp0, 6 # 34                      
262         xor     a_64, tmp0                        
263         lea     (T1, T2), h_64                    
264         RORQ    tmp0, 28 # 28                     
265         add     tmp0, h_64                        
266         RotateState                               
267 .endm                                             
268                                                   
269 ##############################################    
270 # void sha512_transform_avx(sha512_state *stat    
271 # Purpose: Updates the SHA512 digest stored at    
272 # stored in "data".                               
273 # The size of the message pointed to by "data"    
274 # of SHA512 message blocks.                       
275 # "blocks" is the message length in SHA512 blo    
276 ##############################################    
277 SYM_TYPED_FUNC_START(sha512_transform_avx)        
278         test msglen, msglen                       
279         je .Lnowork                               
280                                                   
281         # Save GPRs                               
282         push    %rbx                              
283         push    %r12                              
284         push    %r13                              
285         push    %r14                              
286         push    %r15                              
287                                                   
288         # Allocate Stack Space                    
289         push    %rbp                              
290         mov     %rsp, %rbp                        
291         sub     $frame_size, %rsp                 
292         and     $~(0x20 - 1), %rsp                
293                                                   
294 .Lupdateblock:                                    
295                                                   
296         # Load state variables                    
297         mov     DIGEST(0), a_64                   
298         mov     DIGEST(1), b_64                   
299         mov     DIGEST(2), c_64                   
300         mov     DIGEST(3), d_64                   
301         mov     DIGEST(4), e_64                   
302         mov     DIGEST(5), f_64                   
303         mov     DIGEST(6), g_64                   
304         mov     DIGEST(7), h_64                   
305                                                   
306         t = 0                                     
307         .rept 80/2 + 1                            
308         # (80 rounds) / (2 rounds/iteration) +    
309         # +1 iteration because the scheduler l    
310                 .if t < 2                         
311                         # BSWAP 2 QWORDS          
312                         vmovdqa  XMM_QWORD_BSW    
313                         vmovdqu  MSG(t), %xmm0    
314                         vpshufb  %xmm1, %xmm0,    
315                         vmovdqa  %xmm0, W_t(t)    
316                         vpaddq   K_t(t), %xmm0    
317                         vmovdqa  %xmm0, WK_2(t    
318                 .elseif t < 16                    
319                         # BSWAP 2 QWORDS# Comp    
320                         vmovdqu  MSG(t), %xmm0    
321                         vpshufb  %xmm1, %xmm0,    
322                         SHA512_Round t-2    #     
323                         vmovdqa  %xmm0, W_t(t)    
324                         vpaddq   K_t(t), %xmm0    
325                         SHA512_Round t-1    #     
326                         vmovdqa  %xmm0, WK_2(t    
327                 .elseif t < 79                    
328                         # Schedule 2 QWORDS# C    
329                         SHA512_2Sched_2Round_a    
330                 .else                             
331                         # Compute 2 Rounds        
332                         SHA512_Round t-2          
333                         SHA512_Round t-1          
334                 .endif                            
335                 t = t+2                           
336         .endr                                     
337                                                   
338         # Update digest                           
339         add     a_64, DIGEST(0)                   
340         add     b_64, DIGEST(1)                   
341         add     c_64, DIGEST(2)                   
342         add     d_64, DIGEST(3)                   
343         add     e_64, DIGEST(4)                   
344         add     f_64, DIGEST(5)                   
345         add     g_64, DIGEST(6)                   
346         add     h_64, DIGEST(7)                   
347                                                   
348         # Advance to next message block           
349         add     $16*8, msg                        
350         dec     msglen                            
351         jnz     .Lupdateblock                     
352                                                   
353         # Restore Stack Pointer                   
354         mov     %rbp, %rsp                        
355         pop     %rbp                              
356                                                   
357         # Restore GPRs                            
358         pop     %r15                              
359         pop     %r14                              
360         pop     %r13                              
361         pop     %r12                              
362         pop     %rbx                              
363                                                   
364 .Lnowork:                                         
365         RET                                       
366 SYM_FUNC_END(sha512_transform_avx)                
367                                                   
368 ##############################################    
369 ### Binary Data                                   
370                                                   
371 .section        .rodata.cst16.XMM_QWORD_BSWAP,    
372 .align 16                                         
373 # Mask for byte-swapping a couple of qwords in    
374 XMM_QWORD_BSWAP:                                  
375         .octa 0x08090a0b0c0d0e0f00010203040506    
376                                                   
377 # Mergeable 640-byte rodata section. This allo    
378 # with other, exactly the same 640-byte fragme    
379 # (if such section exists).                       
380 .section        .rodata.cst640.K512, "aM", @pr    
381 .align 64                                         
382 # K[t] used in SHA512 hashing                     
383 K512:                                             
384         .quad 0x428a2f98d728ae22,0x7137449123e    
385         .quad 0xb5c0fbcfec4d3b2f,0xe9b5dba5818    
386         .quad 0x3956c25bf348b538,0x59f111f1b60    
387         .quad 0x923f82a4af194f9b,0xab1c5ed5da6    
388         .quad 0xd807aa98a3030242,0x12835b01457    
389         .quad 0x243185be4ee4b28c,0x550c7dc3d5f    
390         .quad 0x72be5d74f27b896f,0x80deb1fe3b1    
391         .quad 0x9bdc06a725c71235,0xc19bf174cf6    
392         .quad 0xe49b69c19ef14ad2,0xefbe4786384    
393         .quad 0x0fc19dc68b8cd5b5,0x240ca1cc77a    
394         .quad 0x2de92c6f592b0275,0x4a7484aa6ea    
395         .quad 0x5cb0a9dcbd41fbd4,0x76f988da831    
396         .quad 0x983e5152ee66dfab,0xa831c66d2db    
397         .quad 0xb00327c898fb213f,0xbf597fc7bee    
398         .quad 0xc6e00bf33da88fc2,0xd5a79147930    
399         .quad 0x06ca6351e003826f,0x142929670a0    
400         .quad 0x27b70a8546d22ffc,0x2e1b21385c2    
401         .quad 0x4d2c6dfc5ac42aed,0x53380d139d9    
402         .quad 0x650a73548baf63de,0x766a0abb3c7    
403         .quad 0x81c2c92e47edaee6,0x92722c85148    
404         .quad 0xa2bfe8a14cf10364,0xa81a664bbc4    
405         .quad 0xc24b8b70d0f89791,0xc76c51a3065    
406         .quad 0xd192e819d6ef5218,0xd6990624556    
407         .quad 0xf40e35855771202a,0x106aa07032b    
408         .quad 0x19a4c116b8d2d0c8,0x1e376c08514    
409         .quad 0x2748774cdf8eeb99,0x34b0bcb5e19    
410         .quad 0x391c0cb3c5c95a63,0x4ed8aa4ae34    
411         .quad 0x5b9cca4f7763e373,0x682e6ff3d6b    
412         .quad 0x748f82ee5defb2fc,0x78a5636f431    
413         .quad 0x84c87814a1f0ab72,0x8cc702081a6    
414         .quad 0x90befffa23631e28,0xa4506cebde8    
415         .quad 0xbef9a3f7b2c67915,0xc67178f2e37    
416         .quad 0xca273eceea26619c,0xd186b8c721c    
417         .quad 0xeada7dd6cde0eb1e,0xf57d4f7fee6    
418         .quad 0x06f067aa72176fba,0x0a637dc5a2c    
419         .quad 0x113f9804bef90dae,0x1b710b35131    
420         .quad 0x28db77f523047d84,0x32caab7b40c    
421         .quad 0x3c9ebe0a15c9bebc,0x431d67c49c1    
422         .quad 0x4cc5d4becb3e42b6,0x597f299cfc6    
423         .quad 0x5fcb6fab3ad6faec,0x6c44198c4a4    
                                                      

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