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

TOMOYO Linux Cross Reference
Linux/arch/riscv/lib/strcmp.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/riscv/lib/strcmp.S (Version linux-6.12-rc7) and /arch/mips/lib/strcmp.S (Version linux-6.6.60)


  1 /* SPDX-License-Identifier: GPL-2.0-only */       
  2                                                   
  3 #include <linux/linkage.h>                        
  4 #include <asm/asm.h>                              
  5 #include <asm/alternative-macros.h>               
  6 #include <asm/hwcap.h>                            
  7                                                   
  8 /* int strcmp(const char *cs, const char *ct)     
  9 SYM_FUNC_START(strcmp)                            
 10                                                   
 11         ALTERNATIVE("nop", "j strcmp_zbb", 0,     
 12                                                   
 13         /*                                        
 14          * Returns                                
 15          *   a0 - comparison result, value lik    
 16          *                                        
 17          * Parameters                             
 18          *   a0 - string1                         
 19          *   a1 - string2                         
 20          *                                        
 21          * Clobbers                               
 22          *   t0, t1                               
 23          */                                       
 24 1:                                                
 25         lbu     t0, 0(a0)                         
 26         lbu     t1, 0(a1)                         
 27         addi    a0, a0, 1                         
 28         addi    a1, a1, 1                         
 29         bne     t0, t1, 2f                        
 30         bnez    t0, 1b                            
 31         li      a0, 0                             
 32         ret                                       
 33 2:                                                
 34         /*                                        
 35          * strcmp only needs to return (< 0, 0    
 36          * not necessarily -1, 0, +1              
 37          */                                       
 38         sub     a0, t0, t1                        
 39         ret                                       
 40                                                   
 41 /*                                                
 42  * Variant of strcmp using the ZBB extension i    
 43  * The code was published as part of the bitma    
 44  * in Appendix A.                                 
 45  */                                               
 46 #ifdef CONFIG_RISCV_ISA_ZBB                       
 47 strcmp_zbb:                                       
 48                                                   
 49 .option push                                      
 50 .option arch,+zbb                                 
 51                                                   
 52         /*                                        
 53          * Returns                                
 54          *   a0 - comparison result, value lik    
 55          *                                        
 56          * Parameters                             
 57          *   a0 - string1                         
 58          *   a1 - string2                         
 59          *                                        
 60          * Clobbers                               
 61          *   t0, t1, t2, t3, t4                   
 62          */                                       
 63                                                   
 64         or      t2, a0, a1                        
 65         li      t4, -1                            
 66         and     t2, t2, SZREG-1                   
 67         bnez    t2, 3f                            
 68                                                   
 69         /* Main loop for aligned string.  */      
 70         .p2align 3                                
 71 1:                                                
 72         REG_L   t0, 0(a0)                         
 73         REG_L   t1, 0(a1)                         
 74         orc.b   t3, t0                            
 75         bne     t3, t4, 2f                        
 76         addi    a0, a0, SZREG                     
 77         addi    a1, a1, SZREG                     
 78         beq     t0, t1, 1b                        
 79                                                   
 80         /*                                        
 81          * Words don't match, and no null byte    
 82          * word. Get bytes in big-endian order    
 83          */                                       
 84 #ifndef CONFIG_CPU_BIG_ENDIAN                     
 85         rev8    t0, t0                            
 86         rev8    t1, t1                            
 87 #endif                                            
 88                                                   
 89         /* Synthesize (t0 >= t1) ? 1 : -1 in a    
 90         sltu    a0, t0, t1                        
 91         neg     a0, a0                            
 92         ori     a0, a0, 1                         
 93         ret                                       
 94                                                   
 95 2:                                                
 96         /*                                        
 97          * Found a null byte.                     
 98          * If words don't match, fall back to     
 99          */                                       
100         bne     t0, t1, 3f                        
101                                                   
102         /* Otherwise, strings are equal. */       
103         li      a0, 0                             
104         ret                                       
105                                                   
106         /* Simple loop for misaligned strings.    
107         .p2align 3                                
108 3:                                                
109         lbu     t0, 0(a0)                         
110         lbu     t1, 0(a1)                         
111         addi    a0, a0, 1                         
112         addi    a1, a1, 1                         
113         bne     t0, t1, 4f                        
114         bnez    t0, 3b                            
115                                                   
116 4:                                                
117         sub     a0, t0, t1                        
118         ret                                       
119                                                   
120 .option pop                                       
121 #endif                                            
122 SYM_FUNC_END(strcmp)                              
123 SYM_FUNC_ALIAS(__pi_strcmp, strcmp)               
124 EXPORT_SYMBOL(strcmp)                             
                                                      

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