Make sure to re-examine a struct/union/enum type after
[smatch.git] / ident-list.h
blob9cbdec342b60e9f47563d204a7b16c70ef236e9a
2 #define IDENT(n) __IDENT(n## _ident, #n, 0)
3 #define IDENT_RESERVED(n) __IDENT(n## _ident, #n, 1)
5 /* Basic C reserved words.. */
6 IDENT_RESERVED(sizeof);
7 IDENT_RESERVED(if);
8 IDENT_RESERVED(else);
9 IDENT_RESERVED(return);
10 IDENT_RESERVED(switch);
11 IDENT_RESERVED(case);
12 IDENT_RESERVED(default);
13 IDENT_RESERVED(break);
14 IDENT_RESERVED(continue);
15 IDENT_RESERVED(for);
16 IDENT_RESERVED(while);
17 IDENT_RESERVED(do);
18 IDENT_RESERVED(goto);
20 /* C typenames. They get marked as reserved when initialized */
21 IDENT(struct);
22 IDENT(union);
23 IDENT(enum);
24 IDENT(__attribute__);
25 IDENT(__attribute);
26 IDENT(volatile);
27 IDENT(__volatile__);
28 IDENT(__volatile);
30 /* Extended gcc identifiers */
31 IDENT(asm);
32 IDENT(alignof);
33 IDENT_RESERVED(__asm__);
34 IDENT_RESERVED(__asm);
35 IDENT_RESERVED(__alignof);
36 IDENT_RESERVED(__alignof__);
37 IDENT_RESERVED(__sizeof_ptr__);
39 /* Attribute names */
40 IDENT(defined); IDENT(packed); IDENT(__packed__);
41 IDENT(aligned); IDENT(__aligned__); IDENT(nocast);
42 IDENT(noderef); IDENT(safe); IDENT(force);
43 IDENT(address_space); IDENT(context); IDENT(mode);
44 IDENT(__mode__); IDENT(__QI__); IDENT(QI);
45 IDENT(__HI__); IDENT(HI); IDENT(__SI__);
46 IDENT(SI); IDENT(__DI__); IDENT(DI);
47 IDENT(__word__); IDENT(word); IDENT(format);
48 IDENT(__format__); IDENT(section); IDENT(__section__);
49 IDENT(unused); IDENT(__unused__); IDENT(const);
50 IDENT(__const); IDENT(__const__); IDENT(noreturn);
51 IDENT(__noreturn__); IDENT(regparm); IDENT(weak);
52 IDENT(alias); IDENT(pure); IDENT(always_inline);
53 IDENT(syscall_linkage); IDENT(visibility);
54 IDENT(bitwise);
55 IDENT(model); IDENT(__model__);
56 IDENT(__format_arg__);
58 /* Preprocessor idents */
59 __IDENT(pragma_ident, "__pragma__", 0);
60 __IDENT(__VA_ARGS___ident, "__VA_ARGS__", 0);
61 __IDENT(__LINE___ident, "__LINE__", 0);
62 __IDENT(__FILE___ident, "__FILE__", 0);
63 __IDENT(__func___ident, "__func__", 0);
64 __IDENT(__FUNCTION___ident, "__FUNCTION__", 0);
65 __IDENT(__PRETTY_FUNCTION___ident, "__PRETTY_FUNCTION__", 0);
67 /* Sparse commands */
68 IDENT_RESERVED(__context__);
69 IDENT_RESERVED(__range__);
71 /* Magic function names we recognize */
72 IDENT(memset); IDENT(memcpy);
73 IDENT(copy_to_user); IDENT(copy_from_user);
75 #undef __IDENT
76 #undef IDENT
77 #undef IDENT_RESERVED