Use the new factored-out include code to do proper include path
[smatch.git] / symbol.h
blob372b179158aec1c4cfec3feab443710ab166aaad
1 #ifndef SYMBOL_H
2 #define SYMBOL_H
3 /*
4 * Basic symbol and namespace definitions.
6 * Copyright (C) 2003 Transmeta Corp.
8 * Licensed under the Open Software License version 1.1
9 */
11 #include "token.h"
14 * An identifier with semantic meaning is a "symbol".
16 * There's a 1:n relationship: each symbol is always
17 * associated with one identifier, while each identifier
18 * can have one or more semantic meanings due to C scope
19 * rules.
21 * The progression is symbol -> token -> identifier. The
22 * token contains the information on where the symbol was
23 * declared.
25 enum namespace {
26 NS_NONE,
27 NS_PREPROCESSOR,
28 NS_TYPEDEF,
29 NS_STRUCT,
30 NS_ENUM,
31 NS_LABEL,
32 NS_SYMBOL,
33 NS_ITERATOR,
36 enum type {
37 SYM_BASETYPE,
38 SYM_NODE,
39 SYM_PTR,
40 SYM_FN,
41 SYM_ARRAY,
42 SYM_STRUCT,
43 SYM_UNION,
44 SYM_ENUM,
45 SYM_TYPEDEF,
46 SYM_TYPEOF,
47 SYM_MEMBER,
48 SYM_BITFIELD,
49 SYM_LABEL,
52 struct ctype {
53 unsigned long modifiers;
54 unsigned long alignment;
55 unsigned int contextmask, context, as;
56 struct symbol *base_type;
59 struct symbol {
60 enum namespace namespace:8;
61 enum type type:8;
62 struct position pos; /* Where this symbol was declared */
63 struct ident *ident; /* What identifier this symbol is associated with */
64 struct symbol *next_id; /* Next semantic symbol that shares this identifier */
65 struct symbol **id_list; /* Backpointer to symbol list head */
66 struct scope *scope;
67 struct symbol *same_symbol;
69 struct preprocessor_sym {
70 int busy;
71 struct token *expansion;
72 struct token *arglist;
75 struct ctype_sym {
76 unsigned long offset;
77 unsigned int bit_size;
78 unsigned int bit_offset:8,
79 fieldwidth:8,
80 arg_count:10,
81 variadic:1,
82 used:1,
83 initialized:1;
84 int array_size;
85 struct ctype ctype;
86 struct symbol_list *arguments;
87 struct statement *stmt;
88 struct symbol_list *symbol_list;
89 struct expression *initializer;
90 long long value; /* Initial value */
94 /* Modifiers */
95 #define MOD_AUTO 0x0001
96 #define MOD_REGISTER 0x0002
97 #define MOD_STATIC 0x0004
98 #define MOD_EXTERN 0x0008
100 #define MOD_STORAGE (MOD_AUTO | MOD_REGISTER | MOD_STATIC | MOD_EXTERN | MOD_INLINE)
102 #define MOD_CONST 0x0010
103 #define MOD_VOLATILE 0x0020
104 #define MOD_SIGNED 0x0040
105 #define MOD_UNSIGNED 0x0080
107 #define MOD_CHAR 0x0100
108 #define MOD_SHORT 0x0200
109 #define MOD_LONG 0x0400
110 #define MOD_LONGLONG 0x0800
112 #define MOD_TYPEDEF 0x1000
113 #define MOD_STRUCTOF 0x2000
114 #define MOD_UNIONOF 0x4000
115 #define MOD_ENUMOF 0x8000
117 #define MOD_TYPEOF 0x10000
118 #define MOD_ATTRIBUTE 0x20000
119 #define MOD_INLINE 0x40000
120 #define MOD_ADDRESSABLE 0x80000
122 #define MOD_NOCAST 0x100000
123 #define MOD_NODEREF 0x200000
124 #define MOD_ACCESSED 0x400000
125 #define MOD_TOPLEVEL 0x800000 // scoping..
127 /* Basic types */
128 extern struct symbol void_type,
129 int_type,
130 fp_type,
131 vector_type,
132 bad_type;
134 /* C types */
135 extern struct symbol bool_ctype, void_ctype,
136 char_ctype, uchar_ctype,
137 short_ctype, ushort_ctype,
138 int_ctype, uint_ctype,
139 long_ctype, ulong_ctype,
140 llong_ctype, ullong_ctype,
141 float_ctype, double_ctype, ldouble_ctype,
142 string_ctype, ptr_ctype;
145 /* Basic identifiers */
146 extern struct ident sizeof_ident,
147 alignof_ident,
148 __alignof_ident,
149 __alignof___ident,
150 if_ident,
151 else_ident,
152 switch_ident,
153 case_ident,
154 default_ident,
155 break_ident,
156 continue_ident,
157 for_ident,
158 while_ident,
159 do_ident,
160 goto_ident,
161 return_ident;
163 extern struct ident __asm___ident,
164 __asm_ident,
165 asm_ident,
166 __volatile___ident,
167 __volatile_ident,
168 volatile_ident,
169 __attribute___ident,
170 __attribute_ident;
172 #define symbol_is_typename(sym) ((sym)->type == SYM_TYPE)
174 extern struct symbol_list *used_list;
176 extern void access_symbol(struct symbol *);
179 extern struct symbol *lookup_symbol(struct ident *, enum namespace);
180 extern void init_symbols(void);
181 extern struct symbol *alloc_symbol(struct position, int type);
182 extern void show_type(struct symbol *);
183 extern const char *modifier_string(unsigned long mod);
184 extern void show_symbol(struct symbol *);
185 extern void show_type_list(struct symbol *);
186 extern void show_symbol_list(struct symbol_list *, const char *);
187 extern void add_symbol(struct symbol_list **, struct symbol *);
188 extern void bind_symbol(struct symbol *, struct ident *, enum namespace);
190 extern struct symbol *examine_symbol_type(struct symbol *);
191 extern void examine_simple_symbol_type(struct symbol *);
192 extern const char *show_typename(struct symbol *sym);
194 extern void debug_symbol(struct symbol *);
195 extern void merge_type(struct symbol *sym, struct symbol *base_type);
196 extern void check_declaration(struct symbol *sym);
198 #endif /* SEMANTIC_H */