Fix compiler int<->ptr conversion warnings
[smatch.git] / smatch.h
blobb1390315e851534d7aeed9827690cf637e8fec7d
1 /*
2 * sparse/smatch.h
4 * Copyright (C) 2006 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
8 */
10 #ifndef SMATCH_H_
11 # define SMATCH_H_
13 #include <stdio.h>
14 #include <string.h>
15 #include <limits.h>
16 #include "lib.h"
17 #include "allocate.h"
18 #include "parse.h"
19 #include "expression.h"
21 #define KERNEL
22 #define MAXSMSTATES 1000000 /* Limits RAM use. Give up on big functions */
23 struct smatch_state {
24 const char *name;
25 void *data;
27 #define STATE(_x) static struct smatch_state _x = { .name = #_x }
28 extern struct smatch_state undefined;
29 extern struct smatch_state merged;
30 extern struct smatch_state true_state;
31 extern struct smatch_state false_state;
32 DECLARE_ALLOCATOR(smatch_state);
34 static inline void *INT_PTR(int i)
36 return (void *)(long)i;
39 static inline int PTR_INT(void *p)
41 return (int)(long)p;
44 struct sm_state {
45 const char *name;
46 unsigned int owner;
47 struct symbol *sym;
48 struct smatch_state *state;
49 int line;
50 struct state_list_stack *my_pools;
51 struct state_list_stack *all_pools;
52 struct state_list *possible;
55 enum hook_type {
56 EXPR_HOOK,
57 STMT_HOOK,
58 SYM_HOOK,
59 DECLARATION_HOOK,
60 ASSIGNMENT_HOOK,
61 CONDITION_HOOK,
62 WHOLE_CONDITION_HOOK,
63 FUNCTION_CALL_HOOK,
64 CALL_ASSIGNMENT_HOOK,
65 OP_HOOK,
66 DEREF_HOOK,
67 CASE_HOOK,
68 BASE_HOOK,
69 FUNC_DEF_HOOK,
70 END_FUNC_HOOK,
71 RETURN_HOOK,
72 END_FILE_HOOK,
74 void add_hook(void *func, enum hook_type type);
75 typedef struct smatch_state *(merge_func_t)(const char *name,
76 struct symbol *sym,
77 struct smatch_state *s1,
78 struct smatch_state *s2);
79 typedef struct smatch_state *(unmatched_func_t)(struct sm_state *state);
80 void add_merge_hook(int client_id, merge_func_t *func);
81 void add_unmatched_state_hook(int client_id, unmatched_func_t *func);
82 typedef void (func_hook)(const char *fn, struct expression *expr, void *data);
83 void add_function_hook(const char *lock_for, func_hook *call_back, void *data);
85 void add_conditional_hook(const char *look_for, func_hook *call_back, void *data);
86 void set_cond_states(const char *name, int owner, struct symbol *sym,
87 struct smatch_state *true_state,
88 struct smatch_state *false_state);
89 void add_function_assign_hook(const char *look_for, func_hook *call_back,
90 void *info);
92 #define smatch_msg(msg...) \
93 do { \
94 printf("%s +%d %s(%d) ", get_filename(), get_lineno(), \
95 get_function(), get_func_pos()); \
96 printf(msg); \
97 printf("\n"); \
98 } while (0)
100 #define SM_DEBUG(msg...) do { if (debug_states) printf(msg); } while (0)
101 #define DIMPLIED(msg...) do { if (debug_implied_states) printf(msg); } while (0)
103 #define UNDEFINED INT_MIN
105 struct smatch_state *get_state(const char *name, int owner, struct symbol *sym);
106 struct state_list *get_possible_states(const char *name, int owner,
107 struct symbol *sym);
108 void set_state(const char *name, int owner, struct symbol *sym,
109 struct smatch_state *state);
110 void delete_state(const char *name, int owner, struct symbol *sym);
111 void set_true_false_states(const char *name, int owner, struct symbol *sym,
112 struct smatch_state *true_state,
113 struct smatch_state *false_state);
115 struct state_list *get_all_states(int id);
116 int is_reachable();
117 char *get_filename();
118 char *get_function();
119 int get_lineno();
120 int get_func_pos();
122 /* smatch_helper.c */
123 char *alloc_string(const char *str);
124 void free_string(char *str);
125 struct expression *get_argument_from_call_expr(struct expression_list *args,
126 int num);
127 char *get_variable_from_expr_complex(struct expression *expr,
128 struct symbol **sym_ptr);
129 char *get_variable_from_expr(struct expression *expr,
130 struct symbol **sym_ptr);
131 struct symbol *get_ptr_type(struct expression *expr);
132 int sym_name_is(const char *name, struct expression *expr);
133 int get_value(struct expression *expr);
134 int is_zero(struct expression *expr);
135 const char *show_state(struct smatch_state *state);
136 struct statement *get_block_thing(struct expression *expr);
137 struct expression *strip_expr(struct expression *expr);
139 /* smatch_ignore.c */
140 struct tracker {
141 char *name;
142 int owner;
143 struct symbol *sym;
145 DECLARE_PTR_LIST(tracker_list, struct tracker);
147 void add_ignore(const char *name, int owner, struct symbol *sym);
148 int is_ignored(const char *name, int owner, struct symbol *sym);
150 /* smatch_tracker */
151 void add_tracker(struct tracker_list **list, const char *name, int owner,
152 struct symbol *sym);
153 void del_tracker(struct tracker_list **list, const char *name, int owner,
154 struct symbol *sym);
155 int in_tracker_list(struct tracker_list *list, const char *name, int owner,
156 struct symbol *sym);
157 void free_tracker_list(struct tracker_list **list);
158 void free_trackers_and_list(struct tracker_list **list);
160 /* smatch_conditions */
161 int in_condition();
163 /* ----------------------------------------------------------------
164 The stuff below is all used internally and shouldn't
165 be called from other programs
166 -----------------------------------------------------------------*/
168 /* smatch_flow.c */
170 void smatch (int argc, char **argv);
171 void __split_expr(struct expression *expr);
172 void __split_statements(struct statement *stmt);
173 extern int option_assume_loops;
174 extern int option_known_conditions;
176 /* smatch_conditions */
177 void __split_whole_condition(struct expression *expr);
179 /* smatch_implied.c */
180 extern int debug_implied_states;
181 extern int option_no_implied;
182 void get_implications(char *name, struct symbol *sym, int comparison, int num,
183 struct state_list **true_states,
184 struct state_list **false_states);
186 /* smatch_extras.c */
187 #define SMATCH_EXTRA 1 /* this is my_id from smatch extra set in smatch.c */
188 int get_implied_value(struct expression *expr);
189 int true_comparison(int left, int comparison, int right);
190 int known_condition_true(struct expression *expr);
191 int known_condition_false(struct expression *expr);
192 int implied_condition_true(struct expression *expr);
193 int implied_condition_false(struct expression *expr);
195 /* smatch_states.c */
196 extern int debug_states;
198 void __set_state(struct sm_state *sm);
199 struct state_list *__get_cur_slist();
200 void __set_true_false_sm(struct sm_state *true_state,
201 struct sm_state *false_state);
202 void nullify_path();
203 void __match_nullify_path_hook(const char *fn, struct expression *expr,
204 void *unused);
205 void __unnullify_path();
206 int __path_is_null();
207 void clear_all_states();
209 struct sm_state *get_sm_state(const char *name, int owner,
210 struct symbol *sym);
211 void __use_false_only_stack();
212 void __pop_false_only_stack();
213 void __push_true_states();
214 void __use_false_states();
215 void __pop_false_states();
216 void __merge_false_states();
217 void __merge_true_states();
219 void __negate_cond_stacks();
220 void __save_false_states_for_later();
221 void __use_previously_stored_false_states();
222 void __use_cond_true_states();
223 void __use_cond_false_states();
224 void __push_cond_stacks();
225 void __and_cond_states();
226 void __or_cond_states();
227 void __save_pre_cond_states();
228 void __pop_pre_cond_states();
229 void __use_cond_states();
231 void __warn_on_silly_pre_loops();
233 void __push_continues();
234 void __pop_continues();
235 void __process_continues();
236 void __merge_continues();
238 void __push_breaks();
239 void __process_breaks();
240 void __merge_breaks();
241 void __use_breaks();
243 void __save_switch_states();
244 void __pop_switches();
245 void __merge_switches();
246 void __push_default();
247 void __set_default();
248 int __pop_default();
250 void __push_conditions();
251 void __pop_conditions();
253 void __save_gotos(const char *name);
254 void __merge_gotos(const char *name);
256 void __print_cur_slist();
258 /* smatch_hooks.c */
259 void __pass_to_client(void *data, enum hook_type type);
260 void __pass_to_client_no_data(enum hook_type type);
261 void __pass_case_to_client(struct expression *switch_expr,
262 struct expression *case_expr);
263 int __has_merge_function(int client_id);
264 struct smatch_state *__client_merge_function(int owner, const char *name,
265 struct symbol *sym,
266 struct smatch_state *s1,
267 struct smatch_state *s2);
268 struct smatch_state *__client_unmatched_state_function(struct sm_state *sm);
270 /* smatch_function_hooks.c */
271 struct fcall_back {
272 int type;
273 func_hook *call_back;
274 void *info;
276 DECLARE_ALLOCATOR(fcall_back);
277 DECLARE_PTR_LIST(call_back_list, struct fcall_back);
278 void create_function_hash(void);
279 void __match_initializer_call(struct symbol *sym);
281 /* smatch_files.c */
282 struct token *get_tokens_file(const char *filename);
284 /* smatch.c */
285 extern char *data_dir;
286 extern int option_no_data;
288 #endif /* !SMATCH_H_ */