2 * Copyright (C) 2009 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
20 #include "smatch_extra.h"
21 #include "smatch_slist.h"
23 ALLOCATOR(data_info
, "smatch extra data");
24 ALLOCATOR(data_range
, "data range");
25 __DO_ALLOCATOR(struct data_range
, sizeof(struct data_range
), __alignof__(struct data_range
),
26 "permanent ranges", perm_data_range
);
28 char *show_rl(struct range_list
*list
)
30 struct data_range
*tmp
;
36 FOR_EACH_PTR(list
, tmp
) {
38 strncat(full
, ",", 254 - strlen(full
));
39 if (sval_cmp(tmp
->min
, tmp
->max
) == 0) {
40 strncat(full
, sval_to_str(tmp
->min
), 254 - strlen(full
));
43 strncat(full
, sval_to_str(tmp
->min
), 254 - strlen(full
));
44 strncat(full
, "-", 254 - strlen(full
));
45 strncat(full
, sval_to_str(tmp
->max
), 254 - strlen(full
));
46 } END_FOR_EACH_PTR(tmp
);
47 return alloc_sname(full
);
50 static int str_to_comparison_arg_helper(const char *str
,
51 struct expression
*call
, int *comparison
,
52 struct expression
**arg
, char **endp
)
55 char *c
= (char *)str
;
64 *comparison
= SPECIAL_LTE
;
69 } else if (*c
== '=') {
72 *comparison
= SPECIAL_EQUAL
;
73 } else if (*c
== '>') {
76 *comparison
= SPECIAL_GTE
;
81 } else if (*c
== '!') {
84 *comparison
= SPECIAL_NOTEQUAL
;
93 param
= strtoll(c
, &c
, 10);
94 c
++; /* skip the ']' character */
100 *arg
= get_argument_from_call_expr(call
->args
, param
);
106 int str_to_comparison_arg(const char *str
, struct expression
*call
, int *comparison
, struct expression
**arg
)
115 return str_to_comparison_arg_helper(str
, call
, comparison
, arg
, NULL
);
118 static int get_val_from_key(int use_max
, struct symbol
*type
, char *c
, struct expression
*call
, char **endp
, sval_t
*sval
)
120 struct expression
*arg
;
125 ret
= sval_type_max(type
);
127 ret
= sval_type_min(type
);
129 if (!str_to_comparison_arg_helper(c
, call
, &comparison
, &arg
, endp
)) {
134 if (use_max
&& get_implied_max(arg
, &tmp
)) {
136 if (comparison
== '<') {
138 ret
= sval_binop(ret
, '-', tmp
);
141 if (!use_max
&& get_implied_min(arg
, &tmp
)) {
143 if (comparison
== '>') {
145 ret
= sval_binop(ret
, '+', tmp
);
153 static sval_t
add_one(sval_t sval
)
159 static sval_t
sub_one(sval_t sval
)
165 void filter_by_comparison(struct range_list
**rl
, int comparison
, struct range_list
*right
)
167 struct range_list
*left_orig
= *rl
;
168 struct range_list
*right_orig
= right
;
169 struct range_list
*ret_rl
= *rl
;
170 struct symbol
*cast_type
;
173 cast_type
= rl_type(left_orig
);
174 if (sval_type_max(rl_type(left_orig
)).uvalue
< sval_type_max(rl_type(right_orig
)).uvalue
)
175 cast_type
= rl_type(right_orig
);
176 if (sval_type_max(cast_type
).uvalue
< INT_MAX
)
177 cast_type
= &int_ctype
;
179 min
= sval_type_min(cast_type
);
180 max
= sval_type_max(cast_type
);
181 left_orig
= cast_rl(cast_type
, left_orig
);
182 right_orig
= cast_rl(cast_type
, right_orig
);
184 switch (comparison
) {
186 case SPECIAL_UNSIGNED_LT
:
187 ret_rl
= remove_range(left_orig
, rl_max(right_orig
), max
);
190 case SPECIAL_UNSIGNED_LTE
:
191 if (!sval_is_max(rl_max(right_orig
)))
192 ret_rl
= remove_range(left_orig
, add_one(rl_max(right_orig
)), max
);
195 if (!sval_is_max(rl_max(right_orig
)))
196 ret_rl
= remove_range(ret_rl
, add_one(rl_max(right_orig
)), max
);
197 if (!sval_is_min(rl_min(right_orig
)))
198 ret_rl
= remove_range(ret_rl
, min
, sub_one(rl_min(right_orig
)));
201 case SPECIAL_UNSIGNED_GTE
:
202 if (!sval_is_min(rl_min(right_orig
)))
203 ret_rl
= remove_range(left_orig
, min
, sub_one(rl_min(right_orig
)));
206 case SPECIAL_UNSIGNED_GT
:
207 ret_rl
= remove_range(left_orig
, min
, rl_min(right_orig
));
209 case SPECIAL_NOTEQUAL
:
210 if (sval_cmp(rl_min(right_orig
), rl_max(right_orig
)) == 0)
211 ret_rl
= remove_range(left_orig
, rl_min(right_orig
), rl_min(right_orig
));
214 sm_msg("internal error: unhandled comparison %s", show_special(comparison
));
218 *rl
= cast_rl(rl_type(*rl
), ret_rl
);
221 static struct range_list
*filter_by_comparison_call(char *c
, struct expression
*call
, char **endp
, struct range_list
*start_rl
)
223 struct expression
*arg
;
224 struct range_list
*right_orig
;
227 if (!str_to_comparison_arg_helper(c
, call
, &comparison
, &arg
, endp
))
230 if (!get_implied_rl(arg
, &right_orig
))
233 filter_by_comparison(&start_rl
, comparison
, right_orig
);
237 static sval_t
parse_val(int use_max
, struct expression
*call
, struct symbol
*type
, char *c
, char **endp
)
242 if (!strncmp(start
, "max", 3)) {
243 ret
= sval_type_max(type
);
245 } else if (!strncmp(start
, "u64max", 6)) {
246 ret
= sval_type_val(type
, ULLONG_MAX
);
248 } else if (!strncmp(start
, "s64max", 6)) {
249 ret
= sval_type_val(type
, LLONG_MAX
);
251 } else if (!strncmp(start
, "u32max", 6)) {
252 ret
= sval_type_val(type
, UINT_MAX
);
254 } else if (!strncmp(start
, "s32max", 6)) {
255 ret
= sval_type_val(type
, INT_MAX
);
257 } else if (!strncmp(start
, "u16max", 6)) {
258 ret
= sval_type_val(type
, USHRT_MAX
);
260 } else if (!strncmp(start
, "s16max", 6)) {
261 ret
= sval_type_val(type
, SHRT_MAX
);
263 } else if (!strncmp(start
, "min", 3)) {
264 ret
= sval_type_min(type
);
266 } else if (!strncmp(start
, "s64min", 6)) {
267 ret
= sval_type_val(type
, LLONG_MIN
);
269 } else if (!strncmp(start
, "s32min", 6)) {
270 ret
= sval_type_val(type
, INT_MIN
);
272 } else if (!strncmp(start
, "s16min", 6)) {
273 ret
= sval_type_val(type
, SHRT_MIN
);
275 } else if (start
[0] == '[') {
276 /* this parses [==p0] comparisons */
277 get_val_from_key(1, type
, start
, call
, &c
, &ret
);
279 ret
= sval_type_val(type
, strtoll(start
, &c
, 10));
285 static char *jump_to_call_math(char *value
)
289 while (*c
&& *c
!= '[')
295 if (*c
== '<' || *c
== '=' || *c
== '>' || *c
== '!')
301 static void str_to_rl_helper(struct expression
*call
, struct symbol
*type
, char *value
, struct range_list
**rl
)
311 if (strcmp(value
, "empty") == 0)
314 if (strncmp(value
, "[==$", 4) == 0) {
315 struct expression
*arg
;
318 if (!str_to_comparison_arg(value
, call
, &comparison
, &arg
))
320 if (!get_implied_rl(arg
, rl
))
325 call_math
= jump_to_call_math(value
);
326 if (call_math
&& parse_call_math_rl(call
, call_math
, rl
))
329 min
= sval_type_min(type
);
330 max
= sval_type_max(type
);
332 while (*c
!= '\0' && *c
!= '[') {
335 min
= parse_val(0, call
, type
, c
, &c
);
339 if (*c
== '\0' || *c
== '[') {
340 add_range(rl
, min
, min
);
344 add_range(rl
, min
, min
);
349 sm_msg("debug XXX: trouble parsing %s c = %s", value
, c
);
355 max
= parse_val(1, call
, type
, c
, &c
);
356 add_range(rl
, min
, max
);
367 * For now if we already tried to handle the call math and couldn't
368 * figure it out then bail.
370 if (jump_to_call_math(c
) == c
+ 1)
374 *rl
= filter_by_comparison_call(c
, call
, &c
, *rl
);
377 *rl
= cast_rl(type
, *rl
);
380 void str_to_rl(struct symbol
*type
, char *value
, struct range_list
**rl
)
382 return str_to_rl_helper(NULL
, type
, value
, rl
);
385 void call_results_to_rl(struct expression
*expr
, struct symbol
*type
, char *value
, struct range_list
**rl
)
387 return str_to_rl_helper(strip_expr(expr
), type
, value
, rl
);
390 int is_whole_rl(struct range_list
*rl
)
392 struct data_range
*drange
;
394 if (ptr_list_empty(rl
))
396 drange
= first_ptr_list((struct ptr_list
*)rl
);
397 if (sval_is_min(drange
->min
) && sval_is_max(drange
->max
))
402 sval_t
rl_min(struct range_list
*rl
)
404 struct data_range
*drange
;
407 ret
.type
= &llong_ctype
;
408 ret
.value
= LLONG_MIN
;
409 if (ptr_list_empty(rl
))
411 drange
= first_ptr_list((struct ptr_list
*)rl
);
415 sval_t
rl_max(struct range_list
*rl
)
417 struct data_range
*drange
;
420 ret
.type
= &llong_ctype
;
421 ret
.value
= LLONG_MAX
;
422 if (ptr_list_empty(rl
))
424 drange
= last_ptr_list((struct ptr_list
*)rl
);
428 int rl_to_sval(struct range_list
*rl
, sval_t
*sval
)
437 if (sval_cmp(min
, max
) != 0)
443 struct symbol
*rl_type(struct range_list
*rl
)
447 return rl_min(rl
).type
;
450 static struct data_range
*alloc_range_helper_sval(sval_t min
, sval_t max
, int perm
)
452 struct data_range
*ret
;
455 ret
= __alloc_perm_data_range(0);
457 ret
= __alloc_data_range(0);
463 struct data_range
*alloc_range(sval_t min
, sval_t max
)
465 return alloc_range_helper_sval(min
, max
, 0);
468 struct data_range
*alloc_range_perm(sval_t min
, sval_t max
)
470 return alloc_range_helper_sval(min
, max
, 1);
473 struct range_list
*alloc_rl(sval_t min
, sval_t max
)
475 struct range_list
*rl
= NULL
;
477 if (sval_cmp(min
, max
) > 0)
478 return alloc_whole_rl(min
.type
);
480 add_range(&rl
, min
, max
);
484 struct range_list
*alloc_whole_rl(struct symbol
*type
)
486 if (!type
|| type_positive_bits(type
) < 0)
488 if (type
->type
== SYM_ARRAY
)
491 return alloc_rl(sval_type_min(type
), sval_type_max(type
));
494 void add_range(struct range_list
**list
, sval_t min
, sval_t max
)
496 struct data_range
*tmp
= NULL
;
497 struct data_range
*new = NULL
;
501 * FIXME: This has a problem merging a range_list like: min-0,3-max
502 * with a range like 1-2. You end up with min-2,3-max instead of
505 FOR_EACH_PTR(*list
, tmp
) {
507 /* Sometimes we overlap with more than one range
508 so we have to delete or modify the next range. */
509 if (max
.value
+ 1 == tmp
->min
.value
) {
510 /* join 2 ranges here */
512 DELETE_CURRENT_PTR(tmp
);
516 /* Doesn't overlap with the next one. */
517 if (sval_cmp(max
, tmp
->min
) < 0)
519 /* Partially overlaps with the next one. */
520 if (sval_cmp(max
, tmp
->max
) < 0) {
521 tmp
->min
.value
= max
.value
+ 1;
524 /* Completely overlaps with the next one. */
525 if (sval_cmp(max
, tmp
->max
) >= 0) {
526 DELETE_CURRENT_PTR(tmp
);
527 /* there could be more ranges to delete */
531 if (!sval_is_max(max
) && max
.value
+ 1 == tmp
->min
.value
) {
532 /* join 2 ranges into a big range */
533 new = alloc_range(min
, tmp
->max
);
534 REPLACE_CURRENT_PTR(tmp
, new);
537 if (sval_cmp(max
, tmp
->min
) < 0) { /* new range entirely below */
538 new = alloc_range(min
, max
);
539 INSERT_CURRENT(new, tmp
);
542 if (sval_cmp(min
, tmp
->min
) < 0) { /* new range partially below */
543 if (sval_cmp(max
, tmp
->max
) < 0)
547 new = alloc_range(min
, max
);
548 REPLACE_CURRENT_PTR(tmp
, new);
553 if (sval_cmp(max
, tmp
->max
) <= 0) /* new range already included */
555 if (sval_cmp(min
, tmp
->max
) <= 0) { /* new range partially above */
557 new = alloc_range(min
, max
);
558 REPLACE_CURRENT_PTR(tmp
, new);
562 if (!sval_is_min(min
) && min
.value
- 1 == tmp
->max
.value
) {
563 /* join 2 ranges into a big range */
564 new = alloc_range(tmp
->min
, max
);
565 REPLACE_CURRENT_PTR(tmp
, new);
569 /* the new range is entirely above the existing ranges */
570 } END_FOR_EACH_PTR(tmp
);
573 new = alloc_range(min
, max
);
574 add_ptr_list(list
, new);
577 struct range_list
*clone_rl(struct range_list
*list
)
579 struct data_range
*tmp
;
580 struct range_list
*ret
= NULL
;
582 FOR_EACH_PTR(list
, tmp
) {
583 add_ptr_list(&ret
, tmp
);
584 } END_FOR_EACH_PTR(tmp
);
588 struct range_list
*clone_rl_permanent(struct range_list
*list
)
590 struct data_range
*tmp
;
591 struct data_range
*new;
592 struct range_list
*ret
= NULL
;
594 FOR_EACH_PTR(list
, tmp
) {
595 new = alloc_range_perm(tmp
->min
, tmp
->max
);
596 add_ptr_list(&ret
, new);
597 } END_FOR_EACH_PTR(tmp
);
601 struct range_list
*rl_union(struct range_list
*one
, struct range_list
*two
)
603 struct data_range
*tmp
;
604 struct range_list
*ret
= NULL
;
606 FOR_EACH_PTR(one
, tmp
) {
607 add_range(&ret
, tmp
->min
, tmp
->max
);
608 } END_FOR_EACH_PTR(tmp
);
609 FOR_EACH_PTR(two
, tmp
) {
610 add_range(&ret
, tmp
->min
, tmp
->max
);
611 } END_FOR_EACH_PTR(tmp
);
615 struct range_list
*remove_range(struct range_list
*list
, sval_t min
, sval_t max
)
617 struct data_range
*tmp
;
618 struct range_list
*ret
= NULL
;
620 FOR_EACH_PTR(list
, tmp
) {
621 if (sval_cmp(tmp
->max
, min
) < 0) {
622 add_range(&ret
, tmp
->min
, tmp
->max
);
625 if (sval_cmp(tmp
->min
, max
) > 0) {
626 add_range(&ret
, tmp
->min
, tmp
->max
);
629 if (sval_cmp(tmp
->min
, min
) >= 0 && sval_cmp(tmp
->max
, max
) <= 0)
631 if (sval_cmp(tmp
->min
, min
) >= 0) {
633 add_range(&ret
, max
, tmp
->max
);
634 } else if (sval_cmp(tmp
->max
, max
) <= 0) {
636 add_range(&ret
, tmp
->min
, min
);
640 add_range(&ret
, tmp
->min
, min
);
641 add_range(&ret
, max
, tmp
->max
);
643 } END_FOR_EACH_PTR(tmp
);
647 int ranges_equiv(struct data_range
*one
, struct data_range
*two
)
653 if (sval_cmp(one
->min
, two
->min
) != 0)
655 if (sval_cmp(one
->max
, two
->max
) != 0)
660 int rl_equiv(struct range_list
*one
, struct range_list
*two
)
662 struct data_range
*one_range
;
663 struct data_range
*two_range
;
668 PREPARE_PTR_LIST(one
, one_range
);
669 PREPARE_PTR_LIST(two
, two_range
);
671 if (!one_range
&& !two_range
)
673 if (!ranges_equiv(one_range
, two_range
))
675 NEXT_PTR_LIST(one_range
);
676 NEXT_PTR_LIST(two_range
);
678 FINISH_PTR_LIST(two_range
);
679 FINISH_PTR_LIST(one_range
);
684 int true_comparison_range(struct data_range
*left
, int comparison
, struct data_range
*right
)
686 switch (comparison
) {
688 case SPECIAL_UNSIGNED_LT
:
689 if (sval_cmp(left
->min
, right
->max
) < 0)
692 case SPECIAL_UNSIGNED_LTE
:
694 if (sval_cmp(left
->min
, right
->max
) <= 0)
698 if (sval_cmp(left
->max
, right
->min
) < 0)
700 if (sval_cmp(left
->min
, right
->max
) > 0)
703 case SPECIAL_UNSIGNED_GTE
:
705 if (sval_cmp(left
->max
, right
->min
) >= 0)
709 case SPECIAL_UNSIGNED_GT
:
710 if (sval_cmp(left
->max
, right
->min
) > 0)
713 case SPECIAL_NOTEQUAL
:
714 if (sval_cmp(left
->min
, left
->max
) != 0)
716 if (sval_cmp(right
->min
, right
->max
) != 0)
718 if (sval_cmp(left
->min
, right
->min
) != 0)
722 sm_msg("unhandled comparison %d\n", comparison
);
728 int true_comparison_range_LR(int comparison
, struct data_range
*var
, struct data_range
*val
, int left
)
731 return true_comparison_range(var
, comparison
, val
);
733 return true_comparison_range(val
, comparison
, var
);
736 static int false_comparison_range_sval(struct data_range
*left
, int comparison
, struct data_range
*right
)
738 switch (comparison
) {
740 case SPECIAL_UNSIGNED_LT
:
741 if (sval_cmp(left
->max
, right
->min
) >= 0)
744 case SPECIAL_UNSIGNED_LTE
:
746 if (sval_cmp(left
->max
, right
->min
) > 0)
750 if (sval_cmp(left
->min
, left
->max
) != 0)
752 if (sval_cmp(right
->min
, right
->max
) != 0)
754 if (sval_cmp(left
->min
, right
->min
) != 0)
757 case SPECIAL_UNSIGNED_GTE
:
759 if (sval_cmp(left
->min
, right
->max
) < 0)
763 case SPECIAL_UNSIGNED_GT
:
764 if (sval_cmp(left
->min
, right
->max
) <= 0)
767 case SPECIAL_NOTEQUAL
:
768 if (sval_cmp(left
->max
, right
->min
) < 0)
770 if (sval_cmp(left
->min
, right
->max
) > 0)
774 sm_msg("unhandled comparison %d\n", comparison
);
780 int false_comparison_range_LR(int comparison
, struct data_range
*var
, struct data_range
*val
, int left
)
783 return false_comparison_range_sval(var
, comparison
, val
);
785 return false_comparison_range_sval(val
, comparison
, var
);
788 int possibly_true(struct expression
*left
, int comparison
, struct expression
*right
)
790 struct range_list
*rl_left
, *rl_right
;
791 struct data_range
*tmp_left
, *tmp_right
;
793 if (!get_implied_rl(left
, &rl_left
))
795 if (!get_implied_rl(right
, &rl_right
))
798 FOR_EACH_PTR(rl_left
, tmp_left
) {
799 FOR_EACH_PTR(rl_right
, tmp_right
) {
800 if (true_comparison_range(tmp_left
, comparison
, tmp_right
))
802 } END_FOR_EACH_PTR(tmp_right
);
803 } END_FOR_EACH_PTR(tmp_left
);
807 int possibly_false(struct expression
*left
, int comparison
, struct expression
*right
)
809 struct range_list
*rl_left
, *rl_right
;
810 struct data_range
*tmp_left
, *tmp_right
;
812 if (!get_implied_rl(left
, &rl_left
))
814 if (!get_implied_rl(right
, &rl_right
))
817 FOR_EACH_PTR(rl_left
, tmp_left
) {
818 FOR_EACH_PTR(rl_right
, tmp_right
) {
819 if (false_comparison_range_sval(tmp_left
, comparison
, tmp_right
))
821 } END_FOR_EACH_PTR(tmp_right
);
822 } END_FOR_EACH_PTR(tmp_left
);
826 int possibly_true_rl(struct range_list
*left_ranges
, int comparison
, struct range_list
*right_ranges
)
828 struct data_range
*left_tmp
, *right_tmp
;
830 if (!left_ranges
|| !right_ranges
)
833 FOR_EACH_PTR(left_ranges
, left_tmp
) {
834 FOR_EACH_PTR(right_ranges
, right_tmp
) {
835 if (true_comparison_range(left_tmp
, comparison
, right_tmp
))
837 } END_FOR_EACH_PTR(right_tmp
);
838 } END_FOR_EACH_PTR(left_tmp
);
842 int possibly_false_rl(struct range_list
*left_ranges
, int comparison
, struct range_list
*right_ranges
)
844 struct data_range
*left_tmp
, *right_tmp
;
846 if (!left_ranges
|| !right_ranges
)
849 FOR_EACH_PTR(left_ranges
, left_tmp
) {
850 FOR_EACH_PTR(right_ranges
, right_tmp
) {
851 if (false_comparison_range_sval(left_tmp
, comparison
, right_tmp
))
853 } END_FOR_EACH_PTR(right_tmp
);
854 } END_FOR_EACH_PTR(left_tmp
);
858 /* FIXME: the _rl here stands for right left so really it should be _lr */
859 int possibly_true_rl_LR(int comparison
, struct range_list
*a
, struct range_list
*b
, int left
)
862 return possibly_true_rl(a
, comparison
, b
);
864 return possibly_true_rl(b
, comparison
, a
);
867 int possibly_false_rl_LR(int comparison
, struct range_list
*a
, struct range_list
*b
, int left
)
870 return possibly_false_rl(a
, comparison
, b
);
872 return possibly_false_rl(b
, comparison
, a
);
875 int rl_has_sval(struct range_list
*rl
, sval_t sval
)
877 struct data_range
*tmp
;
879 FOR_EACH_PTR(rl
, tmp
) {
880 if (sval_cmp(tmp
->min
, sval
) <= 0 &&
881 sval_cmp(tmp
->max
, sval
) >= 0)
883 } END_FOR_EACH_PTR(tmp
);
887 void tack_on(struct range_list
**list
, struct data_range
*drange
)
889 add_ptr_list(list
, drange
);
892 void push_rl(struct range_list_stack
**rl_stack
, struct range_list
*rl
)
894 add_ptr_list(rl_stack
, rl
);
897 struct range_list
*pop_rl(struct range_list_stack
**rl_stack
)
899 struct range_list
*rl
;
901 rl
= last_ptr_list((struct ptr_list
*)*rl_stack
);
902 delete_ptr_list_last((struct ptr_list
**)rl_stack
);
906 struct range_list
*top_rl(struct range_list_stack
*rl_stack
)
908 struct range_list
*rl
;
910 rl
= last_ptr_list((struct ptr_list
*)rl_stack
);
914 void filter_top_rl(struct range_list_stack
**rl_stack
, sval_t sval
)
916 struct range_list
*rl
;
918 rl
= pop_rl(rl_stack
);
919 rl
= remove_range(rl
, sval
, sval
);
920 push_rl(rl_stack
, rl
);
923 static int sval_too_big(struct symbol
*type
, sval_t sval
)
925 if (type_bits(type
) == 64)
927 if (sval
.uvalue
> ((1ULL << type_bits(type
)) - 1))
932 static void add_range_t(struct symbol
*type
, struct range_list
**rl
, sval_t min
, sval_t max
)
934 /* If we're just adding a number, cast it and add it */
935 if (sval_cmp(min
, max
) == 0) {
936 add_range(rl
, sval_cast(type
, min
), sval_cast(type
, max
));
940 /* If the range is within the type range then add it */
941 if (sval_fits(type
, min
) && sval_fits(type
, max
)) {
942 add_range(rl
, sval_cast(type
, min
), sval_cast(type
, max
));
947 * If the range we are adding has more bits than the range type then
948 * add the whole range type. Eg:
949 * 0x8000000000000000 - 0xf000000000000000 -> cast to int
950 * This isn't totally the right thing to do. We could be more granular.
952 if (sval_too_big(type
, min
) || sval_too_big(type
, max
)) {
953 add_range(rl
, sval_type_min(type
), sval_type_max(type
));
957 /* Cast negative values to high positive values */
958 if (sval_is_negative(min
) && type_unsigned(type
)) {
959 if (sval_is_positive(max
)) {
960 if (sval_too_high(type
, max
)) {
961 add_range(rl
, sval_type_min(type
), sval_type_max(type
));
964 add_range(rl
, sval_type_val(type
, 0), sval_cast(type
, max
));
965 max
= sval_type_max(type
);
967 max
= sval_cast(type
, max
);
969 min
= sval_cast(type
, min
);
970 add_range(rl
, min
, max
);
973 /* Cast high positive numbers to negative */
974 if (sval_unsigned(max
) && sval_is_negative(sval_cast(type
, max
))) {
975 if (!sval_is_negative(sval_cast(type
, min
))) {
976 add_range(rl
, sval_cast(type
, min
), sval_type_max(type
));
977 min
= sval_type_min(type
);
979 min
= sval_cast(type
, min
);
981 max
= sval_cast(type
, max
);
982 add_range(rl
, min
, max
);
988 struct range_list
*rl_truncate_cast(struct symbol
*type
, struct range_list
*rl
)
990 struct data_range
*tmp
;
991 struct range_list
*ret
= NULL
;
997 if (!type
|| type
== rl_type(rl
))
1000 FOR_EACH_PTR(rl
, tmp
) {
1003 if (type_bits(type
) < type_bits(rl_type(rl
))) {
1004 min
.uvalue
= tmp
->min
.uvalue
& ((1ULL << type_bits(type
)) - 1);
1005 max
.uvalue
= tmp
->max
.uvalue
& ((1ULL << type_bits(type
)) - 1);
1007 if (sval_cmp(min
, max
) > 0) {
1008 min
= sval_cast(type
, min
);
1009 max
= sval_cast(type
, max
);
1011 add_range_t(type
, &ret
, min
, max
);
1012 } END_FOR_EACH_PTR(tmp
);
1017 static int rl_is_sane(struct range_list
*rl
)
1019 struct data_range
*tmp
;
1020 struct symbol
*type
;
1023 FOR_EACH_PTR(rl
, tmp
) {
1024 if (!sval_fits(type
, tmp
->min
))
1026 if (!sval_fits(type
, tmp
->max
))
1028 if (sval_cmp(tmp
->min
, tmp
->max
) > 0)
1030 } END_FOR_EACH_PTR(tmp
);
1035 static int rl_type_consistent(struct range_list
*rl
)
1037 struct data_range
*tmp
;
1038 struct symbol
*type
;
1041 FOR_EACH_PTR(rl
, tmp
) {
1042 if (type
!= tmp
->min
.type
|| type
!= tmp
->max
.type
)
1044 } END_FOR_EACH_PTR(tmp
);
1048 struct range_list
*cast_rl(struct symbol
*type
, struct range_list
*rl
)
1050 struct data_range
*tmp
;
1051 struct range_list
*ret
= NULL
;
1058 if (!rl_is_sane(rl
))
1059 return alloc_whole_rl(type
);
1060 if (type
== rl_type(rl
) && rl_type_consistent(rl
))
1063 FOR_EACH_PTR(rl
, tmp
) {
1064 add_range_t(type
, &ret
, tmp
->min
, tmp
->max
);
1065 } END_FOR_EACH_PTR(tmp
);
1068 return alloc_whole_rl(type
);
1073 struct range_list
*rl_invert(struct range_list
*orig
)
1075 struct range_list
*ret
= NULL
;
1076 struct data_range
*tmp
;
1077 sval_t gap_min
, abs_max
, sval
;
1082 gap_min
= sval_type_min(rl_min(orig
).type
);
1083 abs_max
= sval_type_max(rl_max(orig
).type
);
1085 FOR_EACH_PTR(orig
, tmp
) {
1086 if (sval_cmp(tmp
->min
, gap_min
) > 0) {
1087 sval
= sval_type_val(tmp
->min
.type
, tmp
->min
.value
- 1);
1088 add_range(&ret
, gap_min
, sval
);
1090 gap_min
= sval_type_val(tmp
->max
.type
, tmp
->max
.value
+ 1);
1091 if (sval_cmp(tmp
->max
, abs_max
) == 0)
1093 } END_FOR_EACH_PTR(tmp
);
1095 if (sval_cmp(gap_min
, abs_max
) < 0)
1096 add_range(&ret
, gap_min
, abs_max
);
1101 struct range_list
*rl_filter(struct range_list
*rl
, struct range_list
*filter
)
1103 struct data_range
*tmp
;
1105 FOR_EACH_PTR(filter
, tmp
) {
1106 rl
= remove_range(rl
, tmp
->min
, tmp
->max
);
1107 } END_FOR_EACH_PTR(tmp
);
1112 struct range_list
*rl_intersection(struct range_list
*one
, struct range_list
*two
)
1116 two
= rl_invert(two
);
1117 return rl_filter(one
, two
);
1120 static struct range_list
*handle_mod_rl(struct range_list
*left
, struct range_list
*right
)
1125 max
= rl_max(right
);
1126 if (sval_is_max(max
))
1131 if (sval_is_negative(max
))
1133 if (sval_cmp(rl_max(left
), max
) < 0)
1137 return alloc_rl(zero
, max
);
1140 static struct range_list
*handle_divide_rl(struct range_list
*left
, struct range_list
*right
)
1144 if (sval_is_max(rl_max(left
)))
1146 if (sval_is_max(rl_max(right
)))
1149 if (sval_is_negative(rl_min(left
)))
1151 if (sval_cmp_val(rl_min(right
), 0) <= 0)
1154 max
= sval_binop(rl_max(left
), '/', rl_min(right
));
1155 min
= sval_binop(rl_min(left
), '/', rl_max(right
));
1157 return alloc_rl(min
, max
);
1160 static struct range_list
*handle_add_mult_rl(struct range_list
*left
, int op
, struct range_list
*right
)
1164 if (sval_binop_overflows(rl_min(left
), op
, rl_min(right
)))
1166 min
= sval_binop(rl_min(left
), op
, rl_min(right
));
1168 if (sval_binop_overflows(rl_max(left
), op
, rl_max(right
)))
1170 max
= sval_binop(rl_max(left
), op
, rl_max(right
));
1172 return alloc_rl(min
, max
);
1175 struct range_list
*rl_binop(struct range_list
*left
, int op
, struct range_list
*right
)
1177 struct symbol
*cast_type
;
1178 sval_t left_sval
, right_sval
;
1179 struct range_list
*ret
= NULL
;
1181 cast_type
= rl_type(left
);
1182 if (sval_type_max(rl_type(left
)).uvalue
< sval_type_max(rl_type(right
)).uvalue
)
1183 cast_type
= rl_type(right
);
1184 if (sval_type_max(cast_type
).uvalue
< INT_MAX
)
1185 cast_type
= &int_ctype
;
1187 left
= cast_rl(cast_type
, left
);
1188 right
= cast_rl(cast_type
, right
);
1190 if (!left
|| !right
)
1191 return alloc_whole_rl(cast_type
);
1193 if (rl_to_sval(left
, &left_sval
) && rl_to_sval(right
, &right_sval
)) {
1194 sval_t val
= sval_binop(left_sval
, op
, right_sval
);
1195 return alloc_rl(val
, val
);
1200 ret
= handle_mod_rl(left
, right
);
1203 ret
= handle_divide_rl(left
, right
);
1207 ret
= handle_add_mult_rl(left
, op
, right
);
1210 /* FIXME: Do the rest as well */
1214 case SPECIAL_RIGHTSHIFT
:
1215 case SPECIAL_LEFTSHIFT
:
1221 ret
= alloc_whole_rl(cast_type
);
1225 void free_rl(struct range_list
**rlist
)
1227 __free_ptr_list((struct ptr_list
**)rlist
);
1230 static void free_single_dinfo(struct data_info
*dinfo
)
1232 free_rl(&dinfo
->value_ranges
);
1235 static void free_dinfos(struct allocation_blob
*blob
)
1237 unsigned int size
= sizeof(struct data_info
);
1238 unsigned int offset
= 0;
1240 while (offset
< blob
->offset
) {
1241 free_single_dinfo((struct data_info
*)(blob
->data
+ offset
));
1246 void free_data_info_allocs(void)
1248 struct allocator_struct
*desc
= &data_info_allocator
;
1249 struct allocation_blob
*blob
= desc
->blobs
;
1252 desc
->allocations
= 0;
1253 desc
->total_bytes
= 0;
1254 desc
->useful_bytes
= 0;
1255 desc
->freelist
= NULL
;
1257 struct allocation_blob
*next
= blob
->next
;
1259 blob_free(blob
, desc
->chunking
);
1262 clear_data_range_alloc();