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

TOMOYO Linux Cross Reference
Linux/arch/sh/lib/memset-sh4.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/sh/lib/memset-sh4.S (Version linux-6.12-rc7) and /arch/sparc/lib/memset-sh4.S (Version linux-5.3.18)


  1 /* SPDX-License-Identifier: GPL-2.0 */            
  2 /*                                                
  3  * "memset" implementation for SH4                
  4  *                                                
  5  * Copyright (C) 1999  Niibe Yutaka               
  6  * Copyright (c) 2009  STMicroelectronics Limi    
  7  * Author: Stuart Menefy <stuart.menefy:st.com    
  8  */                                               
  9                                                   
 10 /*                                                
 11  *            void *memset(void *s, int c, siz    
 12  */                                               
 13                                                   
 14 #include <linux/linkage.h>                        
 15                                                   
 16 ENTRY(memset)                                     
 17         mov     #12,r0                            
 18         add     r6,r4                             
 19         cmp/gt  r6,r0                             
 20         bt/s    40f             ! if it's too     
 21          mov    r4,r0                             
 22         and     #3,r0                             
 23         cmp/eq  #0,r0                             
 24         bt/s    2f              ! It's aligned    
 25          sub    r0,r6                             
 26 1:                                                
 27         dt      r0                                
 28         bf/s    1b                                
 29          mov.b  r5,@-r4                           
 30 2:                              ! make VVVV       
 31         extu.b  r5,r5                             
 32         swap.b  r5,r0           !   V0            
 33         or      r0,r5           !   VV            
 34         swap.w  r5,r0           ! VV00            
 35         or      r0,r5           ! VVVV            
 36                                                   
 37         ! Check if enough bytes need to be cop    
 38         mov     #0x40, r0       ! (MT)            
 39         cmp/gt  r6,r0           ! (MT)  64 > l    
 40                                                   
 41         bt/s    22f                               
 42          mov    r6,r0                             
 43                                                   
 44         ! align the dst to the cache block siz    
 45         mov     r4, r3                            
 46         mov     #~(0x1f), r1                      
 47                                                   
 48         and     r3, r1                            
 49         cmp/eq  r3, r1                            
 50                                                   
 51         bt/s    11f             ! dst is alrea    
 52          sub    r1, r3          ! r3-r1 -> r3     
 53         shlr2   r3              ! number of lo    
 54                                                   
 55 10:     mov.l   r5,@-r4                           
 56         dt      r3                                
 57         bf/s    10b                               
 58          add    #-4, r6                           
 59                                                   
 60 11:     ! dst is 32byte aligned                   
 61         mov     r6,r2                             
 62         mov     #-5,r0                            
 63         shld    r0,r2           ! number of lo    
 64                                                   
 65         add     #-32, r4                          
 66         mov     r5, r0                            
 67 12:                                               
 68         movca.l r0,@r4                            
 69         mov.l   r5,@(4, r4)                       
 70         mov.l   r5,@(8, r4)                       
 71         mov.l   r5,@(12,r4)                       
 72         mov.l   r5,@(16,r4)                       
 73         mov.l   r5,@(20,r4)                       
 74         add     #-0x20, r6                        
 75         mov.l   r5,@(24,r4)                       
 76         dt      r2                                
 77         mov.l   r5,@(28,r4)                       
 78         bf/s    12b                               
 79          add    #-32, r4                          
 80                                                   
 81         add     #32, r4                           
 82         mov     #8, r0                            
 83         cmp/ge  r0, r6                            
 84         bf      40f                               
 85                                                   
 86         mov     r6,r0                             
 87 22:                                               
 88         shlr2   r0                                
 89         shlr    r0              ! r0 = r6 >> 3    
 90 3:                                                
 91         dt      r0                                
 92         mov.l   r5,@-r4         ! set 8-byte a    
 93         bf/s    3b                                
 94          mov.l  r5,@-r4                           
 95         !                                         
 96         mov     #7,r0                             
 97         and     r0,r6                             
 98                                                   
 99         ! fill bytes (length may be zero)         
100 40:     tst     r6,r6                             
101         bt      5f                                
102 4:                                                
103         dt      r6                                
104         bf/s    4b                                
105          mov.b  r5,@-r4                           
106 5:                                                
107         rts                                       
108          mov    r4,r0                             
                                                      

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