sparse: Allow override of sizeof(bool) warning
[smatch.git] / symbol.h
blob43c165befe76ea1a662fc29140b87523a587412d
1 #ifndef SYMBOL_H
2 #define SYMBOL_H
3 /*
4 * Basic symbol and namespace definitions.
6 * Copyright (C) 2003 Transmeta Corp.
7 * 2003 Linus Torvalds
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 * THE SOFTWARE.
28 #include "token.h"
29 #include "target.h"
32 * An identifier with semantic meaning is a "symbol".
34 * There's a 1:n relationship: each symbol is always
35 * associated with one identifier, while each identifier
36 * can have one or more semantic meanings due to C scope
37 * rules.
39 * The progression is symbol -> token -> identifier. The
40 * token contains the information on where the symbol was
41 * declared.
43 enum namespace {
44 NS_NONE = 0,
45 NS_MACRO = 1,
46 NS_TYPEDEF = 2,
47 NS_STRUCT = 4, // Also used for unions and enums.
48 NS_LABEL = 8,
49 NS_SYMBOL = 16,
50 NS_ITERATOR = 32,
51 NS_PREPROCESSOR = 64,
52 NS_UNDEF = 128,
53 NS_KEYWORD = 256,
56 enum type {
57 SYM_UNINITIALIZED,
58 SYM_PREPROCESSOR,
59 SYM_BASETYPE,
60 SYM_NODE,
61 SYM_PTR,
62 SYM_FN,
63 SYM_ARRAY,
64 SYM_STRUCT,
65 SYM_UNION,
66 SYM_ENUM,
67 SYM_TYPEDEF,
68 SYM_TYPEOF,
69 SYM_MEMBER,
70 SYM_BITFIELD,
71 SYM_LABEL,
72 SYM_RESTRICT,
73 SYM_FOULED,
74 SYM_KEYWORD,
75 SYM_BAD,
78 enum keyword {
79 KW_SPECIFIER = 1 << 0,
80 KW_MODIFIER = 1 << 1,
81 KW_QUALIFIER = 1 << 2,
82 KW_ATTRIBUTE = 1 << 3,
83 KW_STATEMENT = 1 << 4,
84 KW_ASM = 1 << 5,
85 KW_MODE = 1 << 6,
86 KW_SHORT = 1 << 7,
87 KW_LONG = 1 << 8,
88 KW_EXACT = 1 << 9,
91 struct context {
92 struct expression *context;
93 unsigned int in, out;
96 extern struct context *alloc_context(void);
98 DECLARE_PTR_LIST(context_list, struct context);
100 struct ctype {
101 unsigned long modifiers;
102 unsigned long alignment;
103 struct context_list *contexts;
104 unsigned int as;
105 struct symbol *base_type;
108 struct decl_state {
109 struct ctype ctype;
110 struct ident **ident;
111 struct symbol_op *mode;
112 unsigned char prefer_abstract, is_inline, storage_class, is_tls;
115 struct symbol_op {
116 enum keyword type;
117 int (*evaluate)(struct expression *);
118 int (*expand)(struct expression *, int);
119 int (*args)(struct expression *);
121 /* keywords */
122 struct token *(*declarator)(struct token *token, struct decl_state *ctx);
123 struct token *(*statement)(struct token *token, struct statement *stmt);
124 struct token *(*toplevel)(struct token *token, struct symbol_list **list);
125 struct token *(*attribute)(struct token *token, struct symbol *attr, struct decl_state *ctx);
126 struct symbol *(*to_mode)(struct symbol *);
128 int test, set, class;
131 extern int expand_safe_p(struct expression *expr, int cost);
132 extern int expand_constant_p(struct expression *expr, int cost);
134 #define SYM_ATTR_WEAK 0
135 #define SYM_ATTR_NORMAL 1
136 #define SYM_ATTR_STRONG 2
138 struct symbol {
139 enum type type:8;
140 enum namespace namespace:9;
141 unsigned char used:1, attr:2, enum_member:1, bound:1;
142 struct position pos; /* Where this symbol was declared */
143 struct position endpos; /* Where this symbol ends*/
144 struct ident *ident; /* What identifier this symbol is associated with */
145 struct symbol *next_id; /* Next semantic symbol that shares this identifier */
146 struct symbol *replace; /* What is this symbol shadowed by in copy-expression */
147 struct scope *scope;
148 union {
149 struct symbol *same_symbol;
150 struct symbol *next_subobject;
153 struct symbol_op *op;
155 union {
156 struct /* NS_MACRO */ {
157 struct token *expansion;
158 struct token *arglist;
159 struct scope *used_in;
161 struct /* NS_PREPROCESSOR */ {
162 int (*handler)(struct stream *, struct token **, struct token *);
163 int normal;
165 struct /* NS_SYMBOL */ {
166 unsigned long offset;
167 int bit_size;
168 unsigned int bit_offset:8,
169 arg_count:10,
170 variadic:1,
171 initialized:1,
172 examined:1,
173 expanding:1,
174 evaluated:1,
175 string:1,
176 designated_init:1,
177 forced_arg:1;
178 struct expression *array_size;
179 struct ctype ctype;
180 struct symbol_list *arguments;
181 struct statement *stmt;
182 struct symbol_list *symbol_list;
183 struct statement *inline_stmt;
184 struct symbol_list *inline_symbol_list;
185 struct expression *initializer;
186 struct entrypoint *ep;
187 long long value; /* Initial value */
188 struct symbol *definition;
191 union /* backend */ {
192 struct basic_block *bb_target; /* label */
193 void *aux; /* Auxiliary info, e.g. backend information */
194 struct { /* sparse ctags */
195 char kind;
196 unsigned char visited:1;
199 pseudo_t pseudo;
202 /* Modifiers */
203 #define MOD_AUTO 0x0001
204 #define MOD_REGISTER 0x0002
205 #define MOD_STATIC 0x0004
206 #define MOD_EXTERN 0x0008
208 #define MOD_CONST 0x0010
209 #define MOD_VOLATILE 0x0020
210 #define MOD_SIGNED 0x0040
211 #define MOD_UNSIGNED 0x0080
213 #define MOD_CHAR 0x0100
214 #define MOD_SHORT 0x0200
215 #define MOD_LONG 0x0400
216 #define MOD_LONGLONG 0x0800
217 #define MOD_LONGLONGLONG 0x1000
218 #define MOD_PURE 0x2000
220 #define MOD_TYPEDEF 0x10000
222 #define MOD_TLS 0x20000
223 #define MOD_INLINE 0x40000
224 #define MOD_ADDRESSABLE 0x80000
226 #define MOD_NOCAST 0x100000
227 #define MOD_NODEREF 0x200000
228 #define MOD_ACCESSED 0x400000
229 #define MOD_TOPLEVEL 0x800000 // scoping..
231 #define MOD_ASSIGNED 0x2000000
232 #define MOD_TYPE 0x4000000
233 #define MOD_SAFE 0x8000000 // non-null/non-trapping pointer
235 #define MOD_USERTYPE 0x10000000
236 #define MOD_NORETURN 0x20000000
237 #define MOD_EXPLICITLY_SIGNED 0x40000000
238 #define MOD_BITWISE 0x80000000
241 #define MOD_NONLOCAL (MOD_EXTERN | MOD_TOPLEVEL)
242 #define MOD_STORAGE (MOD_AUTO | MOD_REGISTER | MOD_STATIC | MOD_EXTERN | MOD_INLINE | MOD_TOPLEVEL)
243 #define MOD_SIGNEDNESS (MOD_SIGNED | MOD_UNSIGNED | MOD_EXPLICITLY_SIGNED)
244 #define MOD_LONG_ALL (MOD_LONG | MOD_LONGLONG | MOD_LONGLONGLONG)
245 #define MOD_SPECIFIER (MOD_CHAR | MOD_SHORT | MOD_LONG_ALL | MOD_SIGNEDNESS)
246 #define MOD_SIZE (MOD_CHAR | MOD_SHORT | MOD_LONG_ALL)
247 #define MOD_IGNORE (MOD_TOPLEVEL | MOD_STORAGE | MOD_ADDRESSABLE | \
248 MOD_ASSIGNED | MOD_USERTYPE | MOD_ACCESSED | MOD_EXPLICITLY_SIGNED)
249 #define MOD_PTRINHERIT (MOD_VOLATILE | MOD_CONST | MOD_NODEREF | MOD_STORAGE | MOD_NORETURN)
252 /* Current parsing/evaluation function */
253 extern struct symbol *current_fn;
255 /* Abstract types */
256 extern struct symbol int_type,
257 fp_type;
259 /* C types */
260 extern struct symbol bool_ctype, void_ctype, type_ctype,
261 char_ctype, schar_ctype, uchar_ctype,
262 short_ctype, sshort_ctype, ushort_ctype,
263 int_ctype, sint_ctype, uint_ctype,
264 long_ctype, slong_ctype, ulong_ctype,
265 llong_ctype, sllong_ctype, ullong_ctype,
266 lllong_ctype, slllong_ctype, ulllong_ctype,
267 float_ctype, double_ctype, ldouble_ctype,
268 string_ctype, ptr_ctype, lazy_ptr_ctype,
269 incomplete_ctype, label_ctype, bad_ctype,
270 null_ctype;
272 /* Special internal symbols */
273 extern struct symbol zero_int;
275 #define __IDENT(n,str,res) \
276 extern struct ident n
277 #include "ident-list.h"
279 #define symbol_is_typename(sym) ((sym)->type == SYM_TYPE)
281 extern struct symbol_list *translation_unit_used_list;
283 extern void access_symbol(struct symbol *);
285 extern const char * type_difference(struct ctype *c1, struct ctype *c2,
286 unsigned long mod1, unsigned long mod2);
288 extern struct symbol *lookup_symbol(struct ident *, enum namespace);
289 extern struct symbol *create_symbol(int stream, const char *name, int type, int namespace);
290 extern void init_symbols(void);
291 extern void init_ctype(void);
292 extern struct symbol *alloc_symbol(struct position, int type);
293 extern void show_type(struct symbol *);
294 extern const char *modifier_string(unsigned long mod);
295 extern void show_symbol(struct symbol *);
296 extern int show_symbol_expr_init(struct symbol *sym);
297 extern void show_type_list(struct symbol *);
298 extern void show_symbol_list(struct symbol_list *, const char *);
299 extern void add_symbol(struct symbol_list **, struct symbol *);
300 extern void bind_symbol(struct symbol *, struct ident *, enum namespace);
302 extern struct symbol *examine_symbol_type(struct symbol *);
303 extern struct symbol *examine_pointer_target(struct symbol *);
304 extern void examine_simple_symbol_type(struct symbol *);
305 extern const char *show_typename(struct symbol *sym);
306 extern const char *builtin_typename(struct symbol *sym);
307 extern const char *builtin_ctypename(struct ctype *ctype);
308 extern const char* get_type_name(enum type type);
310 extern void debug_symbol(struct symbol *);
311 extern void merge_type(struct symbol *sym, struct symbol *base_type);
312 extern void check_declaration(struct symbol *sym);
314 static inline struct symbol *get_base_type(const struct symbol *sym)
316 return examine_symbol_type(sym->ctype.base_type);
319 static inline int is_int_type(const struct symbol *type)
321 if (type->type == SYM_NODE)
322 type = type->ctype.base_type;
323 if (type->type == SYM_ENUM)
324 type = type->ctype.base_type;
325 return type->type == SYM_BITFIELD ||
326 type->ctype.base_type == &int_type;
329 static inline int is_enum_type(const struct symbol *type)
331 if (type->type == SYM_NODE)
332 type = type->ctype.base_type;
333 return (type->type == SYM_ENUM);
336 static inline int is_type_type(struct symbol *type)
338 return (type->ctype.modifiers & MOD_TYPE) != 0;
341 static inline int is_ptr_type(struct symbol *type)
343 if (type->type == SYM_NODE)
344 type = type->ctype.base_type;
345 return type->type == SYM_PTR || type->type == SYM_ARRAY || type->type == SYM_FN;
348 static inline int is_float_type(struct symbol *type)
350 if (type->type == SYM_NODE)
351 type = type->ctype.base_type;
352 return type->ctype.base_type == &fp_type;
355 static inline int is_byte_type(struct symbol *type)
357 return type->bit_size == bits_in_char && type->type != SYM_BITFIELD;
360 static inline int is_void_type(struct symbol *type)
362 if (type->type == SYM_NODE)
363 type = type->ctype.base_type;
364 return type == &void_ctype;
367 static inline int is_bool_type(struct symbol *type)
369 if (type->type == SYM_NODE)
370 type = type->ctype.base_type;
371 return type == &bool_ctype;
374 static inline int is_function(struct symbol *type)
376 return type && type->type == SYM_FN;
379 static inline int is_extern_inline(struct symbol *sym)
381 return (sym->ctype.modifiers & MOD_EXTERN) &&
382 (sym->ctype.modifiers & MOD_INLINE) &&
383 is_function(sym->ctype.base_type);
386 static inline int get_sym_type(struct symbol *type)
388 if (type->type == SYM_NODE)
389 type = type->ctype.base_type;
390 if (type->type == SYM_ENUM)
391 type = type->ctype.base_type;
392 return type->type;
395 static inline struct symbol *lookup_keyword(struct ident *ident, enum namespace ns)
397 if (!ident->keyword)
398 return NULL;
399 return lookup_symbol(ident, ns);
402 #define is_restricted_type(type) (get_sym_type(type) == SYM_RESTRICT)
403 #define is_fouled_type(type) (get_sym_type(type) == SYM_FOULED)
404 #define is_bitfield_type(type) (get_sym_type(type) == SYM_BITFIELD)
405 extern int is_ptr_type(struct symbol *);
407 void create_fouled(struct symbol *type);
408 struct symbol *befoul(struct symbol *type);
410 #endif /* SYMBOL_H */