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

TOMOYO Linux Cross Reference
Linux/scripts/genksyms/keywords.c

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 /scripts/genksyms/keywords.c (Version linux-6.12-rc7) and /scripts/genksyms/keywords.c (Version linux-4.4.302)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 
  2 static struct resword {                           
  3         const char *name;                         
  4         int token;                                
  5 } keywords[] = {                                  
  6         { "__GENKSYMS_EXPORT_SYMBOL", EXPORT_S    
  7         { "__asm", ASM_KEYW },                    
  8         { "__asm__", ASM_KEYW },                  
  9         { "__attribute", ATTRIBUTE_KEYW },        
 10         { "__attribute__", ATTRIBUTE_KEYW },      
 11         { "__const", CONST_KEYW },                
 12         { "__const__", CONST_KEYW },              
 13         { "__extension__", EXTENSION_KEYW },      
 14         { "__inline", INLINE_KEYW },              
 15         { "__inline__", INLINE_KEYW },            
 16         { "__signed", SIGNED_KEYW },              
 17         { "__signed__", SIGNED_KEYW },            
 18         { "__typeof", TYPEOF_KEYW },              
 19         { "__typeof__", TYPEOF_KEYW },            
 20         { "__volatile", VOLATILE_KEYW },          
 21         { "__volatile__", VOLATILE_KEYW },        
 22         { "__builtin_va_list", VA_LIST_KEYW },    
 23                                                   
 24         { "__int128", BUILTIN_INT_KEYW },         
 25         { "__int128_t", BUILTIN_INT_KEYW },       
 26         { "__uint128_t", BUILTIN_INT_KEYW },      
 27                                                   
 28         // According to rth, c99 defines "_Boo    
 29         { "_Bool", BOOL_KEYW },                   
 30         { "__restrict", RESTRICT_KEYW },          
 31         { "__restrict__", RESTRICT_KEYW },        
 32         { "restrict", RESTRICT_KEYW },            
 33         { "asm", ASM_KEYW },                      
 34                                                   
 35         // c11 keywords that can be used at mo    
 36         { "_Static_assert", STATIC_ASSERT_KEYW    
 37                                                   
 38         // attribute commented out in modutils    
 39         // field name which breaks the genksym    
 40         // KAO. },                                
 41         // { "attribute", ATTRIBUTE_KEYW },       
 42                                                   
 43         { "auto", AUTO_KEYW },                    
 44         { "char", CHAR_KEYW },                    
 45         { "const", CONST_KEYW },                  
 46         { "double", DOUBLE_KEYW },                
 47         { "enum", ENUM_KEYW },                    
 48         { "extern", EXTERN_KEYW },                
 49         { "float", FLOAT_KEYW },                  
 50         { "inline", INLINE_KEYW },                
 51         { "int", INT_KEYW },                      
 52         { "long", LONG_KEYW },                    
 53         { "register", REGISTER_KEYW },            
 54         { "short", SHORT_KEYW },                  
 55         { "signed", SIGNED_KEYW },                
 56         { "static", STATIC_KEYW },                
 57         { "struct", STRUCT_KEYW },                
 58         { "typedef", TYPEDEF_KEYW },              
 59         { "typeof", TYPEOF_KEYW },                
 60         { "union", UNION_KEYW },                  
 61         { "unsigned", UNSIGNED_KEYW },            
 62         { "void", VOID_KEYW },                    
 63         { "volatile", VOLATILE_KEYW },            
 64 };                                                
 65                                                   
 66 #define NR_KEYWORDS (sizeof(keywords)/sizeof(s    
 67                                                   
 68 static int is_reserved_word(register const cha    
 69 {                                                 
 70         int i;                                    
 71         for (i = 0; i < NR_KEYWORDS; i++) {       
 72                 struct resword *r = keywords +    
 73                 int l = strlen(r->name);          
 74                 if (len == l && !memcmp(str, r    
 75                         return r->token;          
 76         }                                         
 77         return -1;                                
 78 }                                                 
 79                                                   

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