param_limit: don't insert empty states into the db
[smatch.git] / smatch_implied.c
blob223bd5fde8feb8fb22b03829356407f1e4376b98
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 || option_debug) printf(msg); } while (0)
68 int option_debug_implied = 0;
71 * tmp_range_list():
72 * It messes things up to free range list allocations. This helper fuction
73 * lets us reuse memory instead of doing new allocations.
75 static struct range_list *tmp_range_list(struct symbol *type, long long num)
77 static struct range_list *my_list = NULL;
78 static struct data_range *my_range;
80 __free_ptr_list((struct ptr_list **)&my_list);
81 my_range = alloc_range(ll_to_sval(num), ll_to_sval(num));
82 add_ptr_list(&my_list, my_range);
83 return my_list;
86 static void print_debug_tf(struct sm_state *sm, int istrue, int isfalse)
88 if (!option_debug_implied && !option_debug)
89 return;
91 if (istrue && isfalse) {
92 printf("%s: %d: does not exist.\n", show_sm(sm), sm->line);
93 } else if (istrue) {
94 printf("'%s = %s' from %d is true. %s[stree %d]\n", sm->name, show_state(sm->state),
95 sm->line, sm->merged ? "[merged]" : "[leaf]",
96 get_stree_id(sm->pool));
97 } else if (isfalse) {
98 printf("'%s = %s' from %d is false. %s[stree %d]\n", sm->name, show_state(sm->state),
99 sm->line,
100 sm->merged ? "[merged]" : "[leaf]",
101 get_stree_id(sm->pool));
102 } else {
103 printf("'%s = %s' from %d could be true or false. %s[stree %d]\n", sm->name,
104 show_state(sm->state), sm->line,
105 sm->merged ? "[merged]" : "[leaf]",
106 get_stree_id(sm->pool));
110 static int create_fake_history(struct sm_state *sm, int comparison, struct range_list *rl)
112 struct range_list *orig_rl;
113 struct range_list *true_rl, *false_rl;
114 struct stree *true_stree, *false_stree;
115 struct sm_state *true_sm, *false_sm;
116 sval_t sval;
118 if (is_merged(sm) || sm->left || sm->right)
119 return 0;
120 if (!rl_to_sval(rl, &sval))
121 return 0;
122 if (!estate_rl(sm->state))
123 return 0;
125 orig_rl = cast_rl(rl_type(rl), estate_rl(sm->state));
126 split_comparison_rl(orig_rl, comparison, rl, &true_rl, &false_rl, NULL, NULL);
128 true_rl = rl_truncate_cast(estate_type(sm->state), true_rl);
129 false_rl = rl_truncate_cast(estate_type(sm->state), false_rl);
130 if (is_whole_rl(true_rl) || is_whole_rl(false_rl) ||
131 !true_rl || !false_rl ||
132 rl_equiv(orig_rl, true_rl) || rl_equiv(orig_rl, false_rl) ||
133 rl_equiv(estate_rl(sm->state), true_rl) || rl_equiv(estate_rl(sm->state), false_rl))
134 return 0;
136 if (rl_intersection(true_rl, false_rl)) {
137 sm_msg("internal error parsing (%s (%s) %s %s)",
138 sm->name, sm->state->name, show_special(comparison), show_rl(rl));
139 sm_msg("true_rl = %s false_rl = %s intersection = %s",
140 show_rl(true_rl), show_rl(false_rl), show_rl(rl_intersection(true_rl, false_rl)));
141 return 0;
144 if (option_debug)
145 sm_msg("fake_history: %s vs %s. %s %s %s. --> T: %s F: %s",
146 sm->name, show_rl(rl), sm->state->name, show_special(comparison), show_rl(rl),
147 show_rl(true_rl), show_rl(false_rl));
149 true_sm = clone_sm(sm);
150 false_sm = clone_sm(sm);
152 true_sm->state = alloc_estate_rl(cast_rl(estate_type(sm->state), true_rl));
153 free_slist(&true_sm->possible);
154 add_possible_sm(true_sm, true_sm);
155 false_sm->state = alloc_estate_rl(cast_rl(estate_type(sm->state), false_rl));
156 free_slist(&false_sm->possible);
157 add_possible_sm(false_sm, false_sm);
159 true_stree = clone_stree(sm->pool);
160 false_stree = clone_stree(sm->pool);
162 overwrite_sm_state_stree(&true_stree, true_sm);
163 overwrite_sm_state_stree(&false_stree, false_sm);
165 true_sm->pool = true_stree;
166 false_sm->pool = false_stree;
168 sm->merged = 1;
169 sm->left = true_sm;
170 sm->right = false_sm;
172 return 1;
176 * add_pool() adds a slist to *pools. If the slist has already been
177 * added earlier then it doesn't get added a second time.
179 void add_pool(struct state_list **pools, struct sm_state *new)
181 struct sm_state *tmp;
183 FOR_EACH_PTR(*pools, tmp) {
184 if (tmp->pool < new->pool)
185 continue;
186 else if (tmp->pool == new->pool) {
187 return;
188 } else {
189 INSERT_CURRENT(new, tmp);
190 return;
192 } END_FOR_EACH_PTR(tmp);
193 add_ptr_list(pools, new);
196 static int pool_in_pools(struct stree *pool,
197 const struct state_list *slist)
199 struct sm_state *tmp;
201 FOR_EACH_PTR(slist, tmp) {
202 if (!tmp->pool)
203 continue;
204 if (tmp->pool == pool)
205 return 1;
206 } END_FOR_EACH_PTR(tmp);
207 return 0;
210 static int remove_pool(struct state_list **pools, struct stree *remove)
212 struct sm_state *tmp;
213 int ret = 0;
215 FOR_EACH_PTR(*pools, tmp) {
216 if (tmp->pool == remove) {
217 DELETE_CURRENT_PTR(tmp);
218 ret = 1;
220 } END_FOR_EACH_PTR(tmp);
222 return ret;
226 * If 'foo' == 99 add it that pool to the true pools. If it's false, add it to
227 * the false pools. If we're not sure, then we don't add it to either.
229 static void do_compare(struct sm_state *sm, int comparison, struct range_list *rl,
230 struct state_list **true_stack,
231 struct state_list **maybe_stack,
232 struct state_list **false_stack,
233 int *mixed, struct sm_state *gate_sm)
235 int istrue;
236 int isfalse;
237 struct range_list *var_rl;
239 if (!sm->pool)
240 return;
242 var_rl = cast_rl(rl_type(rl), estate_rl(sm->state));
244 istrue = !possibly_false_rl(var_rl, comparison, rl);
245 isfalse = !possibly_true_rl(var_rl, comparison, rl);
247 print_debug_tf(sm, istrue, isfalse);
249 /* give up if we have borrowed implications (smatch_equiv.c) */
250 if (sm->sym != gate_sm->sym ||
251 strcmp(sm->name, gate_sm->name) != 0) {
252 if (mixed)
253 *mixed = 1;
256 if (mixed && !*mixed && !is_merged(sm) && !istrue && !isfalse) {
257 if (!create_fake_history(sm, comparison, rl)) {
258 if (mixed)
259 *mixed = 1;
263 if (istrue)
264 add_pool(true_stack, sm);
265 else if (isfalse)
266 add_pool(false_stack, sm);
267 else
268 add_pool(maybe_stack, sm);
272 static int is_checked(struct state_list *checked, struct sm_state *sm)
274 struct sm_state *tmp;
276 FOR_EACH_PTR(checked, tmp) {
277 if (tmp == sm)
278 return 1;
279 } END_FOR_EACH_PTR(tmp);
280 return 0;
284 * separate_pools():
285 * Example code: if (foo == 99) {
287 * Say 'foo' is a merged state that has many possible values. It is the combination
288 * of merges. separate_pools() iterates through the pools recursively and calls
289 * do_compare() for each time 'foo' was set.
291 static void __separate_pools(struct sm_state *sm, int comparison, struct range_list *rl,
292 struct state_list **true_stack,
293 struct state_list **maybe_stack,
294 struct state_list **false_stack,
295 struct state_list **checked, int *mixed, struct sm_state *gate_sm)
297 int free_checked = 0;
298 struct state_list *checked_states = NULL;
300 if (!sm)
301 return;
304 * If it looks like this is going to take too long as-is, then don't
305 * create even more fake history.
307 if (mixed && sm->nr_children > 100)
308 *mixed = 1;
311 Sometimes the implications are just too big to deal with
312 so we bail. Theoretically, bailing out here can cause more false
313 positives but won't hide actual bugs.
315 if (sm->nr_children > 4000) {
316 if (option_debug || option_debug_implied) {
317 static char buf[1028];
318 snprintf(buf, sizeof(buf), "debug: %s: nr_children over 4000 (%d). (%s %s)",
319 __func__, sm->nr_children, sm->name, show_state(sm->state));
320 implied_debug_msg = buf;
322 return;
325 if (checked == NULL) {
326 checked = &checked_states;
327 free_checked = 1;
329 if (is_checked(*checked, sm))
330 return;
331 add_ptr_list(checked, sm);
333 do_compare(sm, comparison, rl, true_stack, maybe_stack, false_stack, mixed, gate_sm);
335 __separate_pools(sm->left, comparison, rl, true_stack, maybe_stack, false_stack, checked, mixed, gate_sm);
336 __separate_pools(sm->right, comparison, rl, true_stack, maybe_stack, false_stack, checked, mixed, gate_sm);
337 if (free_checked)
338 free_slist(checked);
341 static void separate_pools(struct sm_state *sm, int comparison, struct range_list *rl,
342 struct state_list **true_stack,
343 struct state_list **false_stack,
344 struct state_list **checked, int *mixed)
346 struct state_list *maybe_stack = NULL;
347 struct sm_state *tmp;
349 __separate_pools(sm, comparison, rl, true_stack, &maybe_stack, false_stack, checked, mixed, sm);
351 if (option_debug) {
352 struct sm_state *sm;
354 FOR_EACH_PTR(*true_stack, sm) {
355 sm_msg("TRUE %s [stree %d]", show_sm(sm), get_stree_id(sm->pool));
356 } END_FOR_EACH_PTR(sm);
358 FOR_EACH_PTR(maybe_stack, sm) {
359 sm_msg("MAYBE %s [stree %d]", show_sm(sm), get_stree_id(sm->pool));
360 } END_FOR_EACH_PTR(sm);
362 FOR_EACH_PTR(*false_stack, sm) {
363 sm_msg("FALSE %s [stree %d]", show_sm(sm), get_stree_id(sm->pool));
364 } END_FOR_EACH_PTR(sm);
366 /* if it's a maybe then remove it from the false stack */
367 FOR_EACH_PTR(maybe_stack, tmp) {
368 remove_pool(false_stack, tmp->pool);
369 } END_FOR_EACH_PTR(tmp);
371 /* and the true stack */
372 FOR_EACH_PTR(maybe_stack, tmp) {
373 remove_pool(true_stack, tmp->pool);
374 } END_FOR_EACH_PTR(tmp);
376 /* if it's both true and false remove it from both */
377 FOR_EACH_PTR(*true_stack, tmp) {
378 if (remove_pool(false_stack, tmp->pool))
379 DELETE_CURRENT_PTR(tmp);
380 } END_FOR_EACH_PTR(tmp);
383 static int sm_in_keep_leafs(struct sm_state *sm, const struct state_list *keep_gates)
385 struct sm_state *tmp, *old;
387 FOR_EACH_PTR(keep_gates, tmp) {
388 if (is_merged(tmp))
389 continue;
390 old = get_sm_state_stree(tmp->pool, sm->owner, sm->name, sm->sym);
391 if (!old)
392 continue;
393 if (old == sm)
394 return 1;
395 } END_FOR_EACH_PTR(tmp);
396 return 0;
400 * NOTE: If a state is in both the keep stack and the remove stack then it is
401 * removed. If that happens it means you have a bug. Only add states which are
402 * definitely true or definitely false. If you have a leaf state that could be
403 * both true and false, then create a fake split history where one side is true
404 * and one side is false. Otherwise, if you can't do that, then don't add it to
405 * either list, and it will be treated as true.
407 struct sm_state *filter_pools(struct sm_state *sm,
408 const struct state_list *remove_stack,
409 const struct state_list *keep_stack,
410 int *modified)
412 struct sm_state *ret = NULL;
413 struct sm_state *left;
414 struct sm_state *right;
415 int removed = 0;
417 if (!sm)
418 return NULL;
420 if (sm->nr_children > 4000) {
421 if (option_debug || option_debug_implied) {
422 static char buf[1028];
423 snprintf(buf, sizeof(buf), "debug: %s: nr_children over 4000 (%d). (%s %s)",
424 __func__, sm->nr_children, sm->name, show_state(sm->state));
425 implied_debug_msg = buf;
427 return NULL;
430 if (pool_in_pools(sm->pool, remove_stack)) {
431 DIMPLIED("removed [stree %d] %s from %d\n", get_stree_id(sm->pool), show_sm(sm), sm->line);
432 *modified = 1;
433 return NULL;
436 if (!is_merged(sm) || pool_in_pools(sm->pool, keep_stack) || sm_in_keep_leafs(sm, keep_stack)) {
437 DIMPLIED("kept [stree %d] %s from %d. %s. %s. %s.\n", get_stree_id(sm->pool), show_sm(sm), sm->line,
438 is_merged(sm) ? "merged" : "not merged",
439 pool_in_pools(sm->pool, keep_stack) ? "not in keep pools" : "in keep pools",
440 sm_in_keep_leafs(sm, keep_stack) ? "reachable keep leaf" : "no keep leaf");
441 return sm;
444 DIMPLIED("checking [stree %d] %s from %d (%d) left = %s [stree %d] right = %s [stree %d]\n",
445 get_stree_id(sm->pool),
446 show_sm(sm), sm->line, sm->nr_children,
447 sm->left ? sm->left->state->name : "<none>", sm->left ? get_stree_id(sm->left->pool) : -1,
448 sm->right ? sm->right->state->name : "<none>", sm->right ? get_stree_id(sm->right->pool) : -1);
449 left = filter_pools(sm->left, remove_stack, keep_stack, &removed);
450 right = filter_pools(sm->right, remove_stack, keep_stack, &removed);
451 if (!removed) {
452 DIMPLIED("kept [stree %d] %s from %d\n", get_stree_id(sm->pool), show_sm(sm), sm->line);
453 return sm;
455 *modified = 1;
456 if (!left && !right) {
457 DIMPLIED("removed [stree %d] %s from %d <none>\n", get_stree_id(sm->pool), show_sm(sm), sm->line);
458 return NULL;
461 if (!left) {
462 ret = clone_sm(right);
463 ret->merged = 1;
464 ret->right = right;
465 ret->left = NULL;
466 } else if (!right) {
467 ret = clone_sm(left);
468 ret->merged = 1;
469 ret->left = left;
470 ret->right = NULL;
471 } else {
472 if (left->sym != sm->sym || strcmp(left->name, sm->name) != 0) {
473 left = clone_sm(left);
474 left->sym = sm->sym;
475 left->name = sm->name;
477 if (right->sym != sm->sym || strcmp(right->name, sm->name) != 0) {
478 right = clone_sm(right);
479 right->sym = sm->sym;
480 right->name = sm->name;
482 ret = merge_sm_states(left, right);
485 ret->pool = sm->pool;
487 DIMPLIED("partial %s => ", show_sm(sm));
488 DIMPLIED("%s from %d [stree %d]\n", show_sm(ret), sm->line, get_stree_id(sm->pool));
489 return ret;
492 static struct stree *filter_stack(struct sm_state *gate_sm,
493 struct stree *pre_stree,
494 const struct state_list *remove_stack,
495 const struct state_list *keep_stack)
497 struct stree *ret = NULL;
498 struct sm_state *tmp;
499 struct sm_state *filtered_sm;
500 int modified;
502 if (!remove_stack)
503 return NULL;
505 FOR_EACH_SM(pre_stree, tmp) {
506 if (option_debug)
507 sm_msg("%s: %s", __func__, show_sm(tmp));
508 if (!tmp->merged)
509 continue;
510 if (sm_in_keep_leafs(tmp, keep_stack))
511 continue;
512 modified = 0;
513 filtered_sm = filter_pools(tmp, remove_stack, keep_stack, &modified);
514 if (!filtered_sm || !modified)
515 continue;
516 /* the assignments here are for borrowed implications */
517 filtered_sm->name = tmp->name;
518 filtered_sm->sym = tmp->sym;
519 avl_insert(&ret, filtered_sm);
520 if (out_of_memory())
521 return NULL;
523 } END_FOR_EACH_SM(tmp);
524 return ret;
527 static void separate_and_filter(struct sm_state *sm, int comparison, struct range_list *rl,
528 struct stree *pre_stree,
529 struct stree **true_states,
530 struct stree **false_states,
531 int *mixed)
533 struct state_list *true_stack = NULL;
534 struct state_list *false_stack = NULL;
535 struct timeval time_before;
536 struct timeval time_after;
538 gettimeofday(&time_before, NULL);
540 if (!is_merged(sm)) {
541 DIMPLIED("%d '%s' is not merged.\n", get_lineno(), sm->name);
542 return;
545 if (option_debug_implied || option_debug) {
546 sm_msg("checking implications: (%s %s %s)",
547 sm->name, show_special(comparison), show_rl(rl));
550 separate_pools(sm, comparison, rl, &true_stack, &false_stack, NULL, mixed);
552 DIMPLIED("filtering true stack.\n");
553 *true_states = filter_stack(sm, pre_stree, false_stack, true_stack);
554 DIMPLIED("filtering false stack.\n");
555 *false_states = filter_stack(sm, pre_stree, true_stack, false_stack);
556 free_slist(&true_stack);
557 free_slist(&false_stack);
558 if (option_debug_implied || option_debug) {
559 printf("These are the implied states for the true path: (%s %s %s)\n",
560 sm->name, show_special(comparison), show_rl(rl));
561 __print_stree(*true_states);
562 printf("These are the implied states for the false path: (%s %s %s)\n",
563 sm->name, show_special(comparison), show_rl(rl));
564 __print_stree(*false_states);
567 gettimeofday(&time_after, NULL);
568 if (time_after.tv_sec - time_before.tv_sec > 20) {
569 sm->nr_children = 4000;
570 sm_msg("Function too hairy. Giving up.");
574 static struct expression *get_last_expr(struct statement *stmt)
576 struct statement *last;
578 last = last_ptr_list((struct ptr_list *)stmt->stmts);
579 if (last->type == STMT_EXPRESSION)
580 return last->expression;
582 if (last->type == STMT_LABEL) {
583 if (last->label_statement &&
584 last->label_statement->type == STMT_EXPRESSION)
585 return last->label_statement->expression;
588 return NULL;
591 static struct expression *get_left_most_expr(struct expression *expr)
593 struct statement *compound;
595 compound = get_expression_statement(expr);
596 if (compound)
597 return get_last_expr(compound);
599 expr = strip_parens(expr);
600 if (expr->type == EXPR_ASSIGNMENT)
601 return get_left_most_expr(expr->left);
602 return expr;
605 static int is_merged_expr(struct expression *expr)
607 struct sm_state *sm;
608 sval_t dummy;
610 if (get_value(expr, &dummy))
611 return 0;
612 sm = get_sm_state_expr(SMATCH_EXTRA, expr);
613 if (!sm)
614 return 0;
615 if (is_merged(sm))
616 return 1;
617 return 0;
620 static void delete_gate_sm_equiv(struct stree **stree, const char *name, struct symbol *sym)
622 struct smatch_state *state;
623 struct relation *rel;
625 state = get_state(SMATCH_EXTRA, name, sym);
626 if (!state)
627 return;
628 FOR_EACH_PTR(estate_related(state), rel) {
629 delete_state_stree(stree, SMATCH_EXTRA, rel->name, rel->sym);
630 } END_FOR_EACH_PTR(rel);
633 static void delete_gate_sm(struct stree **stree, const char *name, struct symbol *sym)
635 delete_state_stree(stree, SMATCH_EXTRA, name, sym);
638 static int handle_comparison(struct expression *expr,
639 struct stree **implied_true,
640 struct stree **implied_false)
642 struct sm_state *sm = NULL;
643 struct range_list *rl = NULL;
644 struct expression *left;
645 struct expression *right;
646 struct symbol *type;
647 int comparison = expr->op;
648 int mixed = 0;
650 left = get_left_most_expr(expr->left);
651 right = get_left_most_expr(expr->right);
653 if (is_merged_expr(left)) {
654 sm = get_sm_state_expr(SMATCH_EXTRA, left);
655 get_implied_rl(right, &rl);
656 } else if (is_merged_expr(right)) {
657 sm = get_sm_state_expr(SMATCH_EXTRA, right);
658 get_implied_rl(left, &rl);
659 comparison = flip_comparison(comparison);
662 if (!rl || !sm) {
663 free_rl(&rl);
664 return 0;
667 type = get_type(expr);
668 if (!type)
669 return 0;
670 if (type_positive_bits(rl_type(rl)) > type_positive_bits(type))
671 type = rl_type(rl);
672 if (type_positive_bits(type) < 31)
673 type = &int_ctype;
674 rl = cast_rl(type, rl);
676 separate_and_filter(sm, comparison, rl, __get_cur_stree(), implied_true, implied_false, &mixed);
677 free_rl(&rl);
679 delete_gate_sm_equiv(implied_true, sm->name, sm->sym);
680 delete_gate_sm_equiv(implied_false, sm->name, sm->sym);
681 if (mixed) {
682 delete_gate_sm(implied_true, sm->name, sm->sym);
683 delete_gate_sm(implied_false, sm->name, sm->sym);
686 return 1;
689 static int handle_zero_comparison(struct expression *expr,
690 struct stree **implied_true,
691 struct stree **implied_false)
693 struct symbol *sym;
694 char *name;
695 struct sm_state *sm;
696 int mixed = 0;
697 int ret = 0;
699 if (expr->type == EXPR_POSTOP)
700 expr = strip_expr(expr->unop);
702 if (expr->type == EXPR_ASSIGNMENT) {
703 /* most of the time ->pools will be empty here because we
704 just set the state, but if have assigned a conditional
705 function there are implications. */
706 expr = expr->left;
709 name = expr_to_var_sym(expr, &sym);
710 if (!name || !sym)
711 goto free;
712 sm = get_sm_state(SMATCH_EXTRA, name, sym);
713 if (!sm)
714 goto free;
716 separate_and_filter(sm, SPECIAL_NOTEQUAL, tmp_range_list(estate_type(sm->state), 0), __get_cur_stree(), implied_true, implied_false, &mixed);
717 delete_gate_sm_equiv(implied_true, sm->name, sm->sym);
718 delete_gate_sm_equiv(implied_false, sm->name, sm->sym);
719 if (mixed) {
720 delete_gate_sm(implied_true, sm->name, sm->sym);
721 delete_gate_sm(implied_false, sm->name, sm->sym);
724 ret = 1;
725 free:
726 free_string(name);
727 return ret;
730 static int handled_by_implied_hook(struct expression *expr,
731 struct stree **implied_true,
732 struct stree **implied_false)
734 struct state_list *true_stack = NULL;
735 struct state_list *false_stack = NULL;
736 struct stree *pre_stree;
737 struct sm_state *sm;
739 sm = comparison_implication_hook(expr, &true_stack, &false_stack);
740 if (!sm)
741 return 0;
743 pre_stree = clone_stree(__get_cur_stree());
745 *implied_true = filter_stack(sm, pre_stree, false_stack, true_stack);
746 *implied_false = filter_stack(sm, pre_stree, true_stack, false_stack);
748 free_stree(&pre_stree);
749 free_slist(&true_stack);
750 free_slist(&false_stack);
752 return 1;
755 static int handled_by_extra_states(struct expression *expr,
756 struct stree **implied_true,
757 struct stree **implied_false)
759 if (expr->type == EXPR_COMPARE)
760 return handle_comparison(expr, implied_true, implied_false);
761 else
762 return handle_zero_comparison(expr, implied_true, implied_false);
765 static int handled_by_stored_conditions(struct expression *expr,
766 struct stree **implied_true,
767 struct stree **implied_false)
769 struct state_list *true_stack = NULL;
770 struct state_list *false_stack = NULL;
771 struct stree *pre_stree;
772 struct sm_state *sm;
774 sm = stored_condition_implication_hook(expr, &true_stack, &false_stack);
775 if (!sm)
776 return 0;
778 pre_stree = clone_stree(__get_cur_stree());
780 *implied_true = filter_stack(sm, pre_stree, false_stack, true_stack);
781 *implied_false = filter_stack(sm, pre_stree, true_stack, false_stack);
783 free_stree(&pre_stree);
784 free_slist(&true_stack);
785 free_slist(&false_stack);
787 return 1;
790 static int found_implications;
791 static struct stree *saved_implied_true;
792 static struct stree *saved_implied_false;
793 static struct stree *extra_saved_implied_true;
794 static struct stree *extra_saved_implied_false;
796 static void get_tf_states(struct expression *expr,
797 struct stree **implied_true,
798 struct stree **implied_false)
800 if (handled_by_implied_hook(expr, implied_true, implied_false))
801 goto found;
803 if (handled_by_extra_states(expr, implied_true, implied_false)) {
804 /* We process these later. */
805 extra_saved_implied_true = *implied_true;
806 extra_saved_implied_false = *implied_false;
807 *implied_true = NULL;
808 *implied_false = NULL;
809 goto found;
812 if (handled_by_stored_conditions(expr, implied_true, implied_false))
813 goto found;
815 return;
816 found:
817 found_implications = 1;
820 static void save_implications_hook(struct expression *expr)
822 get_tf_states(expr, &saved_implied_true, &saved_implied_false);
825 static void set_implied_states(struct expression *expr)
827 struct sm_state *sm;
829 FOR_EACH_SM(saved_implied_true, sm) {
830 __set_true_false_sm(sm, NULL);
831 } END_FOR_EACH_SM(sm);
832 free_stree(&saved_implied_true);
834 FOR_EACH_SM(saved_implied_false, sm) {
835 __set_true_false_sm(NULL, sm);
836 } END_FOR_EACH_SM(sm);
837 free_stree(&saved_implied_false);
840 static void set_extra_implied_states(struct expression *expr)
842 saved_implied_true = extra_saved_implied_true;
843 saved_implied_false = extra_saved_implied_false;
844 extra_saved_implied_true = NULL;
845 extra_saved_implied_false = NULL;
846 set_implied_states(NULL);
849 void param_limit_implications(struct expression *expr, int param, char *key, char *value)
851 struct expression *arg;
852 struct symbol *compare_type;
853 char *name;
854 struct symbol *sym;
855 struct sm_state *sm;
856 struct sm_state *tmp;
857 struct stree *implied_true = NULL;
858 struct stree *implied_false = NULL;
859 struct range_list *orig, *limit;
861 while (expr->type == EXPR_ASSIGNMENT)
862 expr = strip_expr(expr->right);
863 if (expr->type != EXPR_CALL)
864 return;
866 arg = get_argument_from_call_expr(expr->args, param);
867 if (!arg)
868 return;
870 name = get_variable_from_key(arg, key, &sym);
871 if (!name || !sym)
872 goto free;
874 sm = get_sm_state(SMATCH_EXTRA, name, sym);
875 if (!sm || !sm->merged)
876 goto free;
878 if (strcmp(key, "$") == 0)
879 compare_type = get_arg_type(expr->fn, param);
880 else
881 compare_type = get_member_type_from_key(arg, key);
883 orig = estate_rl(sm->state);
884 orig = cast_rl(compare_type, orig);
886 call_results_to_rl(expr, compare_type, value, &limit);
888 separate_and_filter(sm, SPECIAL_EQUAL, limit, __get_cur_stree(), &implied_true, &implied_false, NULL);
890 FOR_EACH_SM(implied_true, tmp) {
891 __set_sm_fake_stree(tmp);
892 } END_FOR_EACH_SM(tmp);
894 free_stree(&implied_true);
895 free_stree(&implied_false);
896 free:
897 free_string(name);
900 struct stree *__implied_case_stree(struct expression *switch_expr,
901 struct range_list *rl,
902 struct range_list_stack **remaining_cases,
903 struct stree **raw_stree)
905 char *name;
906 struct symbol *sym;
907 struct var_sym_list *vsl;
908 struct sm_state *sm;
909 struct stree *true_states = NULL;
910 struct stree *false_states = NULL;
911 struct stree *extra_states;
912 struct stree *ret = clone_stree(*raw_stree);
914 name = expr_to_chunk_sym_vsl(switch_expr, &sym, &vsl);
916 if (rl)
917 filter_top_rl(remaining_cases, rl);
918 else
919 rl = clone_rl(top_rl(*remaining_cases));
921 if (name) {
922 sm = get_sm_state_stree(*raw_stree, SMATCH_EXTRA, name, sym);
923 if (sm)
924 separate_and_filter(sm, SPECIAL_EQUAL, rl, *raw_stree, &true_states, &false_states, NULL);
927 __push_fake_cur_stree();
928 __unnullify_path();
929 if (name)
930 set_extra_nomod_vsl(name, sym, vsl, alloc_estate_rl(rl));
931 __pass_case_to_client(switch_expr, rl);
932 extra_states = __pop_fake_cur_stree();
933 overwrite_stree(extra_states, &true_states);
934 overwrite_stree(true_states, &ret);
935 free_stree(&extra_states);
936 free_stree(&true_states);
937 free_stree(&false_states);
939 free_string(name);
940 return ret;
943 static void match_end_func(struct symbol *sym)
945 if (__inline_fn)
946 return;
947 implied_debug_msg = NULL;
950 static void get_tf_stacks_from_pool(struct sm_state *gate_sm,
951 struct sm_state *pool_sm,
952 struct state_list **true_stack,
953 struct state_list **false_stack)
955 struct sm_state *tmp;
956 int possibly_true = 0;
958 if (!gate_sm)
959 return;
961 if (strcmp(gate_sm->state->name, pool_sm->state->name) == 0) {
962 add_ptr_list(true_stack, pool_sm);
963 return;
966 FOR_EACH_PTR(gate_sm->possible, tmp) {
967 if (strcmp(tmp->state->name, pool_sm->state->name) == 0) {
968 possibly_true = 1;
969 break;
971 } END_FOR_EACH_PTR(tmp);
973 if (!possibly_true) {
974 add_ptr_list(false_stack, gate_sm);
975 return;
978 get_tf_stacks_from_pool(gate_sm->left, pool_sm, true_stack, false_stack);
979 get_tf_stacks_from_pool(gate_sm->right, pool_sm, true_stack, false_stack);
983 * The situation is we have a SMATCH_EXTRA state and we want to break it into
984 * each of the ->possible states and find the implications of each. The caller
985 * has to use __push_fake_cur_stree() to preserve the correct states so they
986 * can be restored later.
988 void overwrite_states_using_pool(struct sm_state *gate_sm, struct sm_state *pool_sm)
990 struct state_list *true_stack = NULL;
991 struct state_list *false_stack = NULL;
992 struct stree *pre_stree;
993 struct stree *implied_true;
994 struct sm_state *tmp;
996 if (!pool_sm->pool)
997 return;
999 get_tf_stacks_from_pool(gate_sm, pool_sm, &true_stack, &false_stack);
1001 pre_stree = clone_stree(__get_cur_stree());
1003 implied_true = filter_stack(gate_sm, pre_stree, false_stack, true_stack);
1005 free_stree(&pre_stree);
1006 free_slist(&true_stack);
1007 free_slist(&false_stack);
1009 FOR_EACH_SM(implied_true, tmp) {
1010 set_state(tmp->owner, tmp->name, tmp->sym, tmp->state);
1011 } END_FOR_EACH_SM(tmp);
1013 free_stree(&implied_true);
1016 int assume(struct expression *expr)
1018 int orig_final_pass = final_pass;
1020 final_pass = 0;
1021 __push_fake_cur_stree();
1022 found_implications = 0;
1023 __split_whole_condition(expr);
1024 final_pass = orig_final_pass;
1026 if (!found_implications) {
1027 __discard_false_states();
1028 __free_fake_cur_stree();
1029 return 0;
1032 return 1;
1035 void end_assume(void)
1037 __discard_false_states();
1038 __free_fake_cur_stree();
1041 void __extra_match_condition(struct expression *expr);
1042 void __comparison_match_condition(struct expression *expr);
1043 void __stored_condition(struct expression *expr);
1044 void register_implications(int id)
1046 add_hook(&save_implications_hook, CONDITION_HOOK);
1047 add_hook(&set_implied_states, CONDITION_HOOK);
1048 add_hook(&__extra_match_condition, CONDITION_HOOK);
1049 add_hook(&set_extra_implied_states, CONDITION_HOOK);
1050 add_hook(&__comparison_match_condition, CONDITION_HOOK);
1051 add_hook(&__stored_condition, CONDITION_HOOK);
1052 add_hook(&match_end_func, END_FUNC_HOOK);