clear_buffer: delete an unused function
[smatch.git] / smatch_implied.c
blobb010d0a3397955c4af45fe187853b8480422c9bc
1 /*
2 * Copyright (C) 2008 Dan Carpenter.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
19 * Imagine we have this code:
20 * foo = 1;
21 * if (bar)
22 * foo = 99;
23 * else
24 * frob();
25 * // <-- point #1
26 * if (foo == 99) // <-- point #2
27 * bar->baz; // <-- point #3
30 * At point #3 bar is non null and can be dereferenced.
32 * It's smatch_implied.c which sets bar to non null at point #2.
34 * At point #1 merge_slist() stores the list of states from both
35 * the true and false paths. On the true path foo == 99 and on
36 * the false path foo == 1. merge_slist() sets their pool
37 * list to show the other states which were there when foo == 99.
39 * When it comes to the if (foo == 99) the smatch implied hook
40 * looks for all the pools where foo was not 99. It makes a list
41 * of those.
43 * Then for bar (and all the other states) it says, ok bar is a
44 * merged state that came from these previous states. We'll
45 * chop out all the states where it came from a pool where
46 * foo != 99 and merge it all back together.
48 * That is the implied state of bar.
50 * merge_slist() sets up ->pool. An sm_state only has one ->pool and
51 * that is the pool where it was first set. The my pool gets set when
52 * code paths merge. States that have been set since the last merge do
53 * not have a ->pool.
54 * merge_sm_state() sets ->left and ->right. (These are the states which were
55 * merged to form the current state.)
56 * a pool: a pool is an slist that has been merged with another slist.
59 #include <sys/time.h>
60 #include <time.h>
61 #include "smatch.h"
62 #include "smatch_slist.h"
63 #include "smatch_extra.h"
65 char *implied_debug_msg;
66 #define DIMPLIED(msg...) do { if (option_debug_implied) printf(msg); } while (0)
68 int option_debug_implied = 0;
69 int option_no_implied = 0;
71 #define RIGHT 0
72 #define LEFT 1
75 * tmp_range_list():
76 * It messes things up to free range list allocations. This helper fuction
77 * lets us reuse memory instead of doing new allocations.
79 static struct range_list *tmp_range_list(long long num)
81 static struct range_list *my_list = NULL;
82 static struct data_range *my_range;
84 __free_ptr_list((struct ptr_list **)&my_list);
85 my_range = alloc_range(ll_to_sval(num), ll_to_sval(num));
86 add_ptr_list(&my_list, my_range);
87 return my_list;
90 static void print_debug_tf(struct sm_state *s, int istrue, int isfalse)
92 if (!option_debug_implied && !option_debug)
93 return;
95 if (istrue && isfalse) {
96 printf("'%s = %s' from %d does not exist.\n", s->name,
97 show_state(s->state), s->line);
98 } else if (istrue) {
99 printf("'%s = %s' from %d is true.\n", s->name, show_state(s->state),
100 s->line);
101 } else if (isfalse) {
102 printf("'%s = %s' from %d is false.\n", s->name, show_state(s->state),
103 s->line);
104 } else {
105 printf("'%s = %s' from %d could be true or false.\n", s->name,
106 show_state(s->state), s->line);
111 * add_pool() adds a slist to *pools. If the slist has already been
112 * added earlier then it doesn't get added a second time.
114 static void add_pool(struct stree_stack **pools, struct stree *new)
116 struct stree *tmp;
118 FOR_EACH_PTR(*pools, tmp) {
119 if (tmp < new)
120 continue;
121 else if (tmp == new) {
122 return;
123 } else {
124 INSERT_CURRENT(new, tmp);
125 return;
127 } END_FOR_EACH_PTR(tmp);
128 add_ptr_list(pools, new);
132 * If 'foo' == 99 add it that pool to the true pools. If it's false, add it to
133 * the false pools. If we're not sure, then we don't add it to either.
135 static void do_compare(struct sm_state *sm_state, int comparison, struct range_list *vals,
136 int lr,
137 struct stree_stack **true_stack,
138 struct stree_stack **false_stack)
140 struct sm_state *s;
141 int istrue;
142 int isfalse;
144 if (!sm_state->pool)
145 return;
147 if (is_implied(sm_state)) {
148 s = get_sm_state_stree(sm_state->pool,
149 sm_state->owner, sm_state->name,
150 sm_state->sym);
151 } else {
152 s = sm_state;
155 if (!s) {
156 if (option_debug_implied || option_debug)
157 sm_msg("%s from %d, has borrowed implications.",
158 sm_state->name, sm_state->line);
159 return;
162 if (lr == LEFT) {
163 istrue = !possibly_false_rl(estate_rl(s->state), comparison, vals);
164 isfalse = !possibly_true_rl(estate_rl(s->state), comparison, vals);
165 } else {
166 istrue = !possibly_false_rl(vals, comparison, estate_rl(s->state));
167 isfalse = !possibly_true_rl(vals, comparison, estate_rl(s->state));
170 print_debug_tf(s, istrue, isfalse);
172 if (istrue)
173 add_pool(true_stack, s->pool);
175 if (isfalse)
176 add_pool(false_stack, s->pool);
179 static int pool_in_pools(struct stree *pool,
180 struct stree_stack *pools)
182 struct stree *tmp;
184 FOR_EACH_PTR(pools, tmp) {
185 if (tmp == pool)
186 return 1;
187 if (tmp > pool)
188 return 0;
189 } END_FOR_EACH_PTR(tmp);
190 return 0;
193 static int is_checked(struct state_list *checked, struct sm_state *sm)
195 struct sm_state *tmp;
197 FOR_EACH_PTR(checked, tmp) {
198 if (tmp == sm)
199 return 1;
200 } END_FOR_EACH_PTR(tmp);
201 return 0;
205 * separate_pools():
206 * Example code: if (foo == 99) {
208 * Say 'foo' is a merged state that has many possible values. It is the combination
209 * of merges. separate_pools() iterates through the pools recursively and calls
210 * do_compare() for each time 'foo' was set.
212 static void separate_pools(struct sm_state *sm_state, int comparison, struct range_list *vals,
213 int lr,
214 struct stree_stack **true_stack,
215 struct stree_stack **false_stack,
216 struct state_list **checked)
218 int free_checked = 0;
219 struct state_list *checked_states = NULL;
221 if (!sm_state)
222 return;
225 Sometimes the implications are just too big to deal with
226 so we bail. Theoretically, bailing out here can cause more false
227 positives but won't hide actual bugs.
229 if (sm_state->nr_children > 4000) {
230 static char buf[1028];
231 snprintf(buf, sizeof(buf), "debug: separate_pools: nr_children over 4000 (%d). (%s %s)",
232 sm_state->nr_children, sm_state->name, show_state(sm_state->state));
233 implied_debug_msg = buf;
234 return;
237 if (checked == NULL) {
238 checked = &checked_states;
239 free_checked = 1;
241 if (is_checked(*checked, sm_state))
242 return;
243 add_ptr_list(checked, sm_state);
245 do_compare(sm_state, comparison, vals, lr, true_stack, false_stack);
247 separate_pools(sm_state->left, comparison, vals, lr, true_stack, false_stack, checked);
248 separate_pools(sm_state->right, comparison, vals, lr, true_stack, false_stack, checked);
249 if (free_checked)
250 free_slist(checked);
253 struct sm_state *filter_pools(struct sm_state *sm,
254 struct stree_stack *remove_stack,
255 struct stree_stack *keep_stack,
256 int *modified)
258 struct sm_state *ret = NULL;
259 struct sm_state *left;
260 struct sm_state *right;
261 int removed = 0;
263 if (!sm)
264 return NULL;
266 if (sm->nr_children > 4000) {
267 static char buf[1028];
268 snprintf(buf, sizeof(buf), "debug: remove_pools: nr_children over 4000 (%d). (%s %s)",
269 sm->nr_children, sm->name, show_state(sm->state));
270 implied_debug_msg = buf;
271 return NULL;
274 if (pool_in_pools(sm->pool, remove_stack)) {
275 DIMPLIED("removed %s from %d\n", show_sm(sm), sm->line);
276 *modified = 1;
277 return NULL;
280 if (!is_merged(sm) || pool_in_pools(sm->pool, keep_stack)) {
281 DIMPLIED("kept %s from %d\n", show_sm(sm), sm->line);
282 return sm;
285 DIMPLIED("checking %s from %d (%d)\n", show_sm(sm), sm->line, sm->nr_children);
286 left = filter_pools(sm->left, remove_stack, keep_stack, &removed);
287 right = filter_pools(sm->right, remove_stack, keep_stack, &removed);
288 if (!removed) {
289 DIMPLIED("kept %s from %d\n", show_sm(sm), sm->line);
290 return sm;
292 *modified = 1;
293 if (!left && !right) {
294 DIMPLIED("removed %s from %d <none>\n", show_sm(sm), sm->line);
295 return NULL;
298 if (!left) {
299 ret = clone_sm(right);
300 ret->merged = 1;
301 ret->right = right;
302 ret->left = NULL;
303 ret->pool = sm->pool;
304 } else if (!right) {
305 ret = clone_sm(left);
306 ret->merged = 1;
307 ret->left = left;
308 ret->right = NULL;
309 ret->pool = sm->pool;
310 } else {
311 ret = merge_sm_states(left, right);
312 ret->pool = sm->pool;
314 ret->implied = 1;
315 DIMPLIED("partial %s => ", show_sm(sm));
316 DIMPLIED("%s from %d\n", show_sm(ret), sm->line);
317 return ret;
320 static int highest_stree_id(struct sm_state *sm)
322 int left = 0;
323 int right = 0;
325 if (!sm->left && !sm->right)
326 return 0;
328 if (sm->left)
329 left = get_stree_id(sm->left->pool);
330 if (sm->right)
331 right = get_stree_id(sm->right->pool);
333 if (right > left)
334 return right;
335 return left;
338 static struct stree *filter_stack(struct sm_state *gate_sm,
339 struct stree *pre_stree,
340 struct stree_stack *remove_stack,
341 struct stree_stack *keep_stack)
343 struct stree *ret = NULL;
344 struct sm_state *tmp;
345 struct sm_state *filtered_sm;
346 int modified;
348 if (!remove_stack)
349 return NULL;
351 FOR_EACH_SM(pre_stree, tmp) {
352 if (highest_stree_id(tmp) < highest_stree_id(gate_sm)) {
353 DIMPLIED("skipping %s. set before. %d vs %d\n",
354 tmp->name, highest_stree_id(tmp),
355 highest_stree_id(gate_sm));
356 continue;
358 modified = 0;
359 filtered_sm = filter_pools(tmp, remove_stack, keep_stack, &modified);
360 if (filtered_sm && modified) {
361 /* the assignments here are for borrowed implications */
362 filtered_sm->name = tmp->name;
363 filtered_sm->sym = tmp->sym;
364 avl_insert(&ret, filtered_sm);
365 if (out_of_memory())
366 return NULL;
369 } END_FOR_EACH_SM(tmp);
370 return ret;
373 static void separate_and_filter(struct sm_state *sm_state, int comparison, struct range_list *vals,
374 int lr,
375 struct stree *pre_stree,
376 struct stree **true_states,
377 struct stree **false_states)
379 struct stree_stack *true_stack = NULL;
380 struct stree_stack *false_stack = NULL;
381 struct timeval time_before;
382 struct timeval time_after;
384 gettimeofday(&time_before, NULL);
386 if (!is_merged(sm_state)) {
387 DIMPLIED("%d '%s' is not merged.\n", get_lineno(), sm_state->name);
388 return;
391 if (option_debug_implied || option_debug) {
392 if (lr == LEFT)
393 sm_msg("checking implications: (%s %s %s)",
394 sm_state->name, show_special(comparison), show_rl(vals));
395 else
396 sm_msg("checking implications: (%s %s %s)",
397 show_rl(vals), show_special(comparison), sm_state->name);
400 separate_pools(sm_state, comparison, vals, lr, &true_stack, &false_stack, NULL);
402 DIMPLIED("filtering true stack.\n");
403 *true_states = filter_stack(sm_state, pre_stree, false_stack, true_stack);
404 DIMPLIED("filtering false stack.\n");
405 *false_states = filter_stack(sm_state, pre_stree, true_stack, false_stack);
406 free_stree_stack(&true_stack);
407 free_stree_stack(&false_stack);
408 if (option_debug_implied || option_debug) {
409 printf("These are the implied states for the true path:\n");
410 __print_stree(*true_states);
411 printf("These are the implied states for the false path:\n");
412 __print_stree(*false_states);
415 gettimeofday(&time_after, NULL);
416 if (time_after.tv_sec - time_before.tv_sec > 7)
417 __bail_on_rest_of_function = 1;
420 static struct expression *get_left_most_expr(struct expression *expr)
422 expr = strip_expr(expr);
423 if (expr->type == EXPR_ASSIGNMENT)
424 return get_left_most_expr(expr->left);
425 return expr;
428 static int is_merged_expr(struct expression *expr)
430 struct sm_state *sm;
431 sval_t dummy;
433 if (get_value(expr, &dummy))
434 return 0;
435 sm = get_sm_state_expr(SMATCH_EXTRA, expr);
436 if (!sm)
437 return 0;
438 if (is_merged(sm))
439 return 1;
440 return 0;
443 static void delete_equiv_stree(struct stree **stree, const char *name, struct symbol *sym)
445 struct smatch_state *state;
446 struct relation *rel;
448 state = get_state(SMATCH_EXTRA, name, sym);
449 if (!estate_related(state)) {
450 delete_state_stree(stree, SMATCH_EXTRA, name, sym);
451 return;
454 FOR_EACH_PTR(estate_related(state), rel) {
455 delete_state_stree(stree, SMATCH_EXTRA, rel->name, rel->sym);
456 } END_FOR_EACH_PTR(rel);
459 static void handle_comparison(struct expression *expr,
460 struct stree **implied_true,
461 struct stree **implied_false)
463 struct sm_state *sm = NULL;
464 struct range_list *ranges = NULL;
465 struct expression *left;
466 struct expression *right;
467 int lr;
469 left = get_left_most_expr(expr->left);
470 right = get_left_most_expr(expr->right);
472 if (is_merged_expr(left)) {
473 lr = LEFT;
474 sm = get_sm_state_expr(SMATCH_EXTRA, left);
475 get_implied_rl(right, &ranges);
476 } else if (is_merged_expr(right)) {
477 lr = RIGHT;
478 sm = get_sm_state_expr(SMATCH_EXTRA, right);
479 get_implied_rl(left, &ranges);
482 if (!ranges || !sm) {
483 free_rl(&ranges);
484 return;
487 separate_and_filter(sm, expr->op, ranges, lr, __get_cur_stree(), implied_true, implied_false);
488 free_rl(&ranges);
489 delete_equiv_stree(implied_true, sm->name, sm->sym);
490 delete_equiv_stree(implied_false, sm->name, sm->sym);
493 static void handle_zero_comparison(struct expression *expr,
494 struct stree **implied_true,
495 struct stree **implied_false)
497 struct symbol *sym;
498 char *name;
499 struct sm_state *sm;
501 if (expr->type == EXPR_POSTOP)
502 expr = strip_expr(expr->unop);
504 if (expr->type == EXPR_ASSIGNMENT) {
505 /* most of the time ->pools will be empty here because we
506 just set the state, but if have assigned a conditional
507 function there are implications. */
508 expr = expr->left;
511 name = expr_to_var_sym(expr, &sym);
512 if (!name || !sym)
513 goto free;
514 sm = get_sm_state(SMATCH_EXTRA, name, sym);
515 if (!sm)
516 goto free;
518 separate_and_filter(sm, SPECIAL_NOTEQUAL, tmp_range_list(0), LEFT, __get_cur_stree(), implied_true, implied_false);
519 delete_equiv_stree(implied_true, name, sym);
520 delete_equiv_stree(implied_false, name, sym);
521 free:
522 free_string(name);
525 static void get_tf_states(struct expression *expr,
526 struct stree **implied_true,
527 struct stree **implied_false)
529 if (expr->type == EXPR_COMPARE)
530 handle_comparison(expr, implied_true, implied_false);
531 else
532 handle_zero_comparison(expr, implied_true, implied_false);
535 static void implied_states_hook(struct expression *expr)
537 struct sm_state *sm;
538 struct stree *implied_true = NULL;
539 struct stree *implied_false = NULL;
541 if (option_no_implied)
542 return;
544 get_tf_states(expr, &implied_true, &implied_false);
546 FOR_EACH_SM(implied_true, sm) {
547 __set_true_false_sm(sm, NULL);
548 } END_FOR_EACH_SM(sm);
549 free_stree(&implied_true);
551 FOR_EACH_SM(implied_false, sm) {
552 __set_true_false_sm(NULL, sm);
553 } END_FOR_EACH_SM(sm);
554 free_stree(&implied_false);
557 struct range_list *__get_implied_values(struct expression *switch_expr)
559 char *name;
560 struct symbol *sym;
561 struct smatch_state *state;
562 struct range_list *ret = NULL;
564 name = expr_to_var_sym(switch_expr, &sym);
565 if (!name || !sym)
566 goto free;
567 state = get_state(SMATCH_EXTRA, name, sym);
568 if (!state)
569 goto free;
570 ret = clone_rl(estate_rl(state));
571 free:
572 free_string(name);
573 if (!ret) {
574 struct symbol *type;
576 type = get_type(switch_expr);
577 ret = alloc_rl(sval_type_min(type), sval_type_max(type));
579 return ret;
582 struct stree *__implied_case_stree(struct expression *switch_expr,
583 struct expression *case_expr,
584 struct range_list_stack **remaining_cases,
585 struct stree **raw_stree)
587 char *name = NULL;
588 struct symbol *sym;
589 struct sm_state *sm;
590 struct stree *true_states = NULL;
591 struct stree *false_states = NULL;
592 struct stree *extra_states = NULL;
593 struct stree *ret = clone_stree(*raw_stree);
594 sval_t sval;
595 struct range_list *vals = NULL;
597 name = expr_to_var_sym(switch_expr, &sym);
598 if (!name || !sym)
599 goto free;
600 sm = get_sm_state_stree(*raw_stree, SMATCH_EXTRA, name, sym);
602 if (case_expr) {
603 if (get_value(case_expr, &sval)) {
604 filter_top_rl(remaining_cases, sval);
605 add_range(&vals, sval, sval);
606 } else {
607 vals = clone_rl(top_rl(*remaining_cases));
609 } else {
610 vals = top_rl(*remaining_cases);
613 if (sm)
614 separate_and_filter(sm, SPECIAL_EQUAL, vals, LEFT, *raw_stree, &true_states, &false_states);
616 __push_fake_cur_stree();
617 __unnullify_path();
618 set_extra_nomod(name, sym, alloc_estate_rl(vals));
619 extra_states = __pop_fake_cur_stree();
620 overwrite_stree(extra_states, &true_states);
621 overwrite_stree(true_states, &ret);
622 free_stree(&extra_states);
623 free_stree(&true_states);
624 free_stree(&false_states);
625 free:
626 free_string(name);
627 return ret;
630 static void match_end_func(struct symbol *sym)
632 if (__inline_fn)
633 return;
634 implied_debug_msg = NULL;
637 static int sm_state_in_slist(struct sm_state *sm, struct state_list *slist)
639 struct sm_state *tmp;
641 FOR_EACH_PTR(slist, tmp) {
642 if (tmp == sm)
643 return 1;
644 } END_FOR_EACH_PTR(tmp);
645 return 0;
649 * The situation is we have a SMATCH_EXTRA state and we want to break it into
650 * each of the ->possible states and find the implications of each. The caller
651 * has to use __push_fake_cur_stree() to preserve the correct states so they
652 * can be restored later.
654 void overwrite_states_using_pool(struct sm_state *sm)
656 struct sm_state *old;
657 struct sm_state *new;
659 if (!sm->pool)
660 return;
662 FOR_EACH_SM(sm->pool, old) {
663 new = get_sm_state(old->owner, old->name, old->sym);
664 if (!new) /* the variable went out of scope */
665 continue;
666 if (sm_state_in_slist(old, new->possible))
667 set_state(old->owner, old->name, old->sym, old->state);
668 } END_FOR_EACH_SM(old);
671 void __extra_match_condition(struct expression *expr);
672 void register_implications(int id)
674 add_hook(&implied_states_hook, CONDITION_HOOK);
675 add_hook(&__extra_match_condition, CONDITION_HOOK);
676 add_hook(&match_end_func, END_FUNC_HOOK);