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 (!strncmp(start
, "long_min", 8)) {
276 ret
= sval_type_val(type
, LONG_MIN
);
278 } else if (!strncmp(start
, "long_max", 8)) {
279 ret
= sval_type_val(type
, LONG_MAX
);
281 } else if (!strncmp(start
, "ulong_max", 9)) {
282 ret
= sval_type_val(type
, ULONG_MAX
);
284 } else if (start
[0] == '[') {
285 /* this parses [==p0] comparisons */
286 get_val_from_key(1, type
, start
, call
, &c
, &ret
);
288 ret
= sval_type_val(type
, strtoll(start
, &c
, 10));
294 static char *jump_to_call_math(char *value
)
298 while (*c
&& *c
!= '[')
304 if (*c
== '<' || *c
== '=' || *c
== '>' || *c
== '!')
310 static void str_to_rl_helper(struct expression
*call
, struct symbol
*type
, char *value
, struct range_list
**rl
)
320 if (strcmp(value
, "empty") == 0)
323 if (strncmp(value
, "[==$", 4) == 0) {
324 struct expression
*arg
;
327 if (!str_to_comparison_arg(value
, call
, &comparison
, &arg
))
329 if (!get_implied_rl(arg
, rl
))
334 call_math
= jump_to_call_math(value
);
335 if (call_math
&& parse_call_math_rl(call
, call_math
, rl
))
338 min
= sval_type_min(type
);
339 max
= sval_type_max(type
);
341 while (*c
!= '\0' && *c
!= '[') {
344 min
= parse_val(0, call
, type
, c
, &c
);
348 if (*c
== '\0' || *c
== '[') {
349 add_range(rl
, min
, min
);
353 add_range(rl
, min
, min
);
358 sm_msg("debug XXX: trouble parsing %s c = %s", value
, c
);
364 max
= parse_val(1, call
, type
, c
, &c
);
365 add_range(rl
, min
, max
);
376 * For now if we already tried to handle the call math and couldn't
377 * figure it out then bail.
379 if (jump_to_call_math(c
) == c
+ 1)
383 *rl
= filter_by_comparison_call(c
, call
, &c
, *rl
);
386 *rl
= cast_rl(type
, *rl
);
389 void str_to_rl(struct symbol
*type
, char *value
, struct range_list
**rl
)
391 return str_to_rl_helper(NULL
, type
, value
, rl
);
394 void call_results_to_rl(struct expression
*expr
, struct symbol
*type
, char *value
, struct range_list
**rl
)
396 return str_to_rl_helper(strip_expr(expr
), type
, value
, rl
);
399 int is_whole_rl(struct range_list
*rl
)
401 struct data_range
*drange
;
403 if (ptr_list_empty(rl
))
405 drange
= first_ptr_list((struct ptr_list
*)rl
);
406 if (sval_is_min(drange
->min
) && sval_is_max(drange
->max
))
411 sval_t
rl_min(struct range_list
*rl
)
413 struct data_range
*drange
;
416 ret
.type
= &llong_ctype
;
417 ret
.value
= LLONG_MIN
;
418 if (ptr_list_empty(rl
))
420 drange
= first_ptr_list((struct ptr_list
*)rl
);
424 sval_t
rl_max(struct range_list
*rl
)
426 struct data_range
*drange
;
429 ret
.type
= &llong_ctype
;
430 ret
.value
= LLONG_MAX
;
431 if (ptr_list_empty(rl
))
433 drange
= last_ptr_list((struct ptr_list
*)rl
);
437 int rl_to_sval(struct range_list
*rl
, sval_t
*sval
)
446 if (sval_cmp(min
, max
) != 0)
452 struct symbol
*rl_type(struct range_list
*rl
)
456 return rl_min(rl
).type
;
459 static struct data_range
*alloc_range_helper_sval(sval_t min
, sval_t max
, int perm
)
461 struct data_range
*ret
;
464 ret
= __alloc_perm_data_range(0);
466 ret
= __alloc_data_range(0);
472 struct data_range
*alloc_range(sval_t min
, sval_t max
)
474 return alloc_range_helper_sval(min
, max
, 0);
477 struct data_range
*alloc_range_perm(sval_t min
, sval_t max
)
479 return alloc_range_helper_sval(min
, max
, 1);
482 struct range_list
*alloc_rl(sval_t min
, sval_t max
)
484 struct range_list
*rl
= NULL
;
486 if (sval_cmp(min
, max
) > 0)
487 return alloc_whole_rl(min
.type
);
489 add_range(&rl
, min
, max
);
493 struct range_list
*alloc_whole_rl(struct symbol
*type
)
495 if (!type
|| type_positive_bits(type
) < 0)
497 if (type
->type
== SYM_ARRAY
)
500 return alloc_rl(sval_type_min(type
), sval_type_max(type
));
503 void add_range(struct range_list
**list
, sval_t min
, sval_t max
)
505 struct data_range
*tmp
= NULL
;
506 struct data_range
*new = NULL
;
510 * FIXME: This has a problem merging a range_list like: min-0,3-max
511 * with a range like 1-2. You end up with min-2,3-max instead of
514 FOR_EACH_PTR(*list
, tmp
) {
516 /* Sometimes we overlap with more than one range
517 so we have to delete or modify the next range. */
518 if (max
.value
+ 1 == tmp
->min
.value
) {
519 /* join 2 ranges here */
521 DELETE_CURRENT_PTR(tmp
);
525 /* Doesn't overlap with the next one. */
526 if (sval_cmp(max
, tmp
->min
) < 0)
528 /* Partially overlaps with the next one. */
529 if (sval_cmp(max
, tmp
->max
) < 0) {
530 tmp
->min
.value
= max
.value
+ 1;
533 /* Completely overlaps with the next one. */
534 if (sval_cmp(max
, tmp
->max
) >= 0) {
535 DELETE_CURRENT_PTR(tmp
);
536 /* there could be more ranges to delete */
540 if (!sval_is_max(max
) && max
.value
+ 1 == tmp
->min
.value
) {
541 /* join 2 ranges into a big range */
542 new = alloc_range(min
, tmp
->max
);
543 REPLACE_CURRENT_PTR(tmp
, new);
546 if (sval_cmp(max
, tmp
->min
) < 0) { /* new range entirely below */
547 new = alloc_range(min
, max
);
548 INSERT_CURRENT(new, tmp
);
551 if (sval_cmp(min
, tmp
->min
) < 0) { /* new range partially below */
552 if (sval_cmp(max
, tmp
->max
) < 0)
556 new = alloc_range(min
, max
);
557 REPLACE_CURRENT_PTR(tmp
, new);
562 if (sval_cmp(max
, tmp
->max
) <= 0) /* new range already included */
564 if (sval_cmp(min
, tmp
->max
) <= 0) { /* new range partially above */
566 new = alloc_range(min
, max
);
567 REPLACE_CURRENT_PTR(tmp
, new);
571 if (!sval_is_min(min
) && min
.value
- 1 == tmp
->max
.value
) {
572 /* join 2 ranges into a big range */
573 new = alloc_range(tmp
->min
, max
);
574 REPLACE_CURRENT_PTR(tmp
, new);
578 /* the new range is entirely above the existing ranges */
579 } END_FOR_EACH_PTR(tmp
);
582 new = alloc_range(min
, max
);
583 add_ptr_list(list
, new);
586 struct range_list
*clone_rl(struct range_list
*list
)
588 struct data_range
*tmp
;
589 struct range_list
*ret
= NULL
;
591 FOR_EACH_PTR(list
, tmp
) {
592 add_ptr_list(&ret
, tmp
);
593 } END_FOR_EACH_PTR(tmp
);
597 struct range_list
*clone_rl_permanent(struct range_list
*list
)
599 struct data_range
*tmp
;
600 struct data_range
*new;
601 struct range_list
*ret
= NULL
;
603 FOR_EACH_PTR(list
, tmp
) {
604 new = alloc_range_perm(tmp
->min
, tmp
->max
);
605 add_ptr_list(&ret
, new);
606 } END_FOR_EACH_PTR(tmp
);
610 struct range_list
*rl_union(struct range_list
*one
, struct range_list
*two
)
612 struct data_range
*tmp
;
613 struct range_list
*ret
= NULL
;
615 FOR_EACH_PTR(one
, tmp
) {
616 add_range(&ret
, tmp
->min
, tmp
->max
);
617 } END_FOR_EACH_PTR(tmp
);
618 FOR_EACH_PTR(two
, tmp
) {
619 add_range(&ret
, tmp
->min
, tmp
->max
);
620 } END_FOR_EACH_PTR(tmp
);
624 struct range_list
*remove_range(struct range_list
*list
, sval_t min
, sval_t max
)
626 struct data_range
*tmp
;
627 struct range_list
*ret
= NULL
;
629 FOR_EACH_PTR(list
, tmp
) {
630 if (sval_cmp(tmp
->max
, min
) < 0) {
631 add_range(&ret
, tmp
->min
, tmp
->max
);
634 if (sval_cmp(tmp
->min
, max
) > 0) {
635 add_range(&ret
, tmp
->min
, tmp
->max
);
638 if (sval_cmp(tmp
->min
, min
) >= 0 && sval_cmp(tmp
->max
, max
) <= 0)
640 if (sval_cmp(tmp
->min
, min
) >= 0) {
642 add_range(&ret
, max
, tmp
->max
);
643 } else if (sval_cmp(tmp
->max
, max
) <= 0) {
645 add_range(&ret
, tmp
->min
, min
);
649 add_range(&ret
, tmp
->min
, min
);
650 add_range(&ret
, max
, tmp
->max
);
652 } END_FOR_EACH_PTR(tmp
);
656 int ranges_equiv(struct data_range
*one
, struct data_range
*two
)
662 if (sval_cmp(one
->min
, two
->min
) != 0)
664 if (sval_cmp(one
->max
, two
->max
) != 0)
669 int rl_equiv(struct range_list
*one
, struct range_list
*two
)
671 struct data_range
*one_range
;
672 struct data_range
*two_range
;
677 PREPARE_PTR_LIST(one
, one_range
);
678 PREPARE_PTR_LIST(two
, two_range
);
680 if (!one_range
&& !two_range
)
682 if (!ranges_equiv(one_range
, two_range
))
684 NEXT_PTR_LIST(one_range
);
685 NEXT_PTR_LIST(two_range
);
687 FINISH_PTR_LIST(two_range
);
688 FINISH_PTR_LIST(one_range
);
693 int true_comparison_range(struct data_range
*left
, int comparison
, struct data_range
*right
)
695 switch (comparison
) {
697 case SPECIAL_UNSIGNED_LT
:
698 if (sval_cmp(left
->min
, right
->max
) < 0)
701 case SPECIAL_UNSIGNED_LTE
:
703 if (sval_cmp(left
->min
, right
->max
) <= 0)
707 if (sval_cmp(left
->max
, right
->min
) < 0)
709 if (sval_cmp(left
->min
, right
->max
) > 0)
712 case SPECIAL_UNSIGNED_GTE
:
714 if (sval_cmp(left
->max
, right
->min
) >= 0)
718 case SPECIAL_UNSIGNED_GT
:
719 if (sval_cmp(left
->max
, right
->min
) > 0)
722 case SPECIAL_NOTEQUAL
:
723 if (sval_cmp(left
->min
, left
->max
) != 0)
725 if (sval_cmp(right
->min
, right
->max
) != 0)
727 if (sval_cmp(left
->min
, right
->min
) != 0)
731 sm_msg("unhandled comparison %d\n", comparison
);
737 int true_comparison_range_LR(int comparison
, struct data_range
*var
, struct data_range
*val
, int left
)
740 return true_comparison_range(var
, comparison
, val
);
742 return true_comparison_range(val
, comparison
, var
);
745 static int false_comparison_range_sval(struct data_range
*left
, int comparison
, struct data_range
*right
)
747 switch (comparison
) {
749 case SPECIAL_UNSIGNED_LT
:
750 if (sval_cmp(left
->max
, right
->min
) >= 0)
753 case SPECIAL_UNSIGNED_LTE
:
755 if (sval_cmp(left
->max
, right
->min
) > 0)
759 if (sval_cmp(left
->min
, left
->max
) != 0)
761 if (sval_cmp(right
->min
, right
->max
) != 0)
763 if (sval_cmp(left
->min
, right
->min
) != 0)
766 case SPECIAL_UNSIGNED_GTE
:
768 if (sval_cmp(left
->min
, right
->max
) < 0)
772 case SPECIAL_UNSIGNED_GT
:
773 if (sval_cmp(left
->min
, right
->max
) <= 0)
776 case SPECIAL_NOTEQUAL
:
777 if (sval_cmp(left
->max
, right
->min
) < 0)
779 if (sval_cmp(left
->min
, right
->max
) > 0)
783 sm_msg("unhandled comparison %d\n", comparison
);
789 int false_comparison_range_LR(int comparison
, struct data_range
*var
, struct data_range
*val
, int left
)
792 return false_comparison_range_sval(var
, comparison
, val
);
794 return false_comparison_range_sval(val
, comparison
, var
);
797 int possibly_true(struct expression
*left
, int comparison
, struct expression
*right
)
799 struct range_list
*rl_left
, *rl_right
;
800 struct data_range
*tmp_left
, *tmp_right
;
802 if (!get_implied_rl(left
, &rl_left
))
804 if (!get_implied_rl(right
, &rl_right
))
807 FOR_EACH_PTR(rl_left
, tmp_left
) {
808 FOR_EACH_PTR(rl_right
, tmp_right
) {
809 if (true_comparison_range(tmp_left
, comparison
, tmp_right
))
811 } END_FOR_EACH_PTR(tmp_right
);
812 } END_FOR_EACH_PTR(tmp_left
);
816 int possibly_false(struct expression
*left
, int comparison
, struct expression
*right
)
818 struct range_list
*rl_left
, *rl_right
;
819 struct data_range
*tmp_left
, *tmp_right
;
821 if (!get_implied_rl(left
, &rl_left
))
823 if (!get_implied_rl(right
, &rl_right
))
826 FOR_EACH_PTR(rl_left
, tmp_left
) {
827 FOR_EACH_PTR(rl_right
, tmp_right
) {
828 if (false_comparison_range_sval(tmp_left
, comparison
, tmp_right
))
830 } END_FOR_EACH_PTR(tmp_right
);
831 } END_FOR_EACH_PTR(tmp_left
);
835 int possibly_true_rl(struct range_list
*left_ranges
, int comparison
, struct range_list
*right_ranges
)
837 struct data_range
*left_tmp
, *right_tmp
;
839 if (!left_ranges
|| !right_ranges
)
842 FOR_EACH_PTR(left_ranges
, left_tmp
) {
843 FOR_EACH_PTR(right_ranges
, right_tmp
) {
844 if (true_comparison_range(left_tmp
, comparison
, right_tmp
))
846 } END_FOR_EACH_PTR(right_tmp
);
847 } END_FOR_EACH_PTR(left_tmp
);
851 int possibly_false_rl(struct range_list
*left_ranges
, int comparison
, struct range_list
*right_ranges
)
853 struct data_range
*left_tmp
, *right_tmp
;
855 if (!left_ranges
|| !right_ranges
)
858 FOR_EACH_PTR(left_ranges
, left_tmp
) {
859 FOR_EACH_PTR(right_ranges
, right_tmp
) {
860 if (false_comparison_range_sval(left_tmp
, comparison
, right_tmp
))
862 } END_FOR_EACH_PTR(right_tmp
);
863 } END_FOR_EACH_PTR(left_tmp
);
867 /* FIXME: the _rl here stands for right left so really it should be _lr */
868 int possibly_true_rl_LR(int comparison
, struct range_list
*a
, struct range_list
*b
, int left
)
871 return possibly_true_rl(a
, comparison
, b
);
873 return possibly_true_rl(b
, comparison
, a
);
876 int possibly_false_rl_LR(int comparison
, struct range_list
*a
, struct range_list
*b
, int left
)
879 return possibly_false_rl(a
, comparison
, b
);
881 return possibly_false_rl(b
, comparison
, a
);
884 int rl_has_sval(struct range_list
*rl
, sval_t sval
)
886 struct data_range
*tmp
;
888 FOR_EACH_PTR(rl
, tmp
) {
889 if (sval_cmp(tmp
->min
, sval
) <= 0 &&
890 sval_cmp(tmp
->max
, sval
) >= 0)
892 } END_FOR_EACH_PTR(tmp
);
896 void tack_on(struct range_list
**list
, struct data_range
*drange
)
898 add_ptr_list(list
, drange
);
901 void push_rl(struct range_list_stack
**rl_stack
, struct range_list
*rl
)
903 add_ptr_list(rl_stack
, rl
);
906 struct range_list
*pop_rl(struct range_list_stack
**rl_stack
)
908 struct range_list
*rl
;
910 rl
= last_ptr_list((struct ptr_list
*)*rl_stack
);
911 delete_ptr_list_last((struct ptr_list
**)rl_stack
);
915 struct range_list
*top_rl(struct range_list_stack
*rl_stack
)
917 struct range_list
*rl
;
919 rl
= last_ptr_list((struct ptr_list
*)rl_stack
);
923 void filter_top_rl(struct range_list_stack
**rl_stack
, sval_t sval
)
925 struct range_list
*rl
;
927 rl
= pop_rl(rl_stack
);
928 rl
= remove_range(rl
, sval
, sval
);
929 push_rl(rl_stack
, rl
);
932 static int sval_too_big(struct symbol
*type
, sval_t sval
)
934 if (type_bits(type
) == 64)
936 if (sval
.uvalue
> ((1ULL << type_bits(type
)) - 1))
941 static void add_range_t(struct symbol
*type
, struct range_list
**rl
, sval_t min
, sval_t max
)
943 /* If we're just adding a number, cast it and add it */
944 if (sval_cmp(min
, max
) == 0) {
945 add_range(rl
, sval_cast(type
, min
), sval_cast(type
, max
));
949 /* If the range is within the type range then add it */
950 if (sval_fits(type
, min
) && sval_fits(type
, max
)) {
951 add_range(rl
, sval_cast(type
, min
), sval_cast(type
, max
));
956 * If the range we are adding has more bits than the range type then
957 * add the whole range type. Eg:
958 * 0x8000000000000000 - 0xf000000000000000 -> cast to int
959 * This isn't totally the right thing to do. We could be more granular.
961 if (sval_too_big(type
, min
) || sval_too_big(type
, max
)) {
962 add_range(rl
, sval_type_min(type
), sval_type_max(type
));
966 /* Cast negative values to high positive values */
967 if (sval_is_negative(min
) && type_unsigned(type
)) {
968 if (sval_is_positive(max
)) {
969 if (sval_too_high(type
, max
)) {
970 add_range(rl
, sval_type_min(type
), sval_type_max(type
));
973 add_range(rl
, sval_type_val(type
, 0), sval_cast(type
, max
));
974 max
= sval_type_max(type
);
976 max
= sval_cast(type
, max
);
978 min
= sval_cast(type
, min
);
979 add_range(rl
, min
, max
);
982 /* Cast high positive numbers to negative */
983 if (sval_unsigned(max
) && sval_is_negative(sval_cast(type
, max
))) {
984 if (!sval_is_negative(sval_cast(type
, min
))) {
985 add_range(rl
, sval_cast(type
, min
), sval_type_max(type
));
986 min
= sval_type_min(type
);
988 min
= sval_cast(type
, min
);
990 max
= sval_cast(type
, max
);
991 add_range(rl
, min
, max
);
997 struct range_list
*rl_truncate_cast(struct symbol
*type
, struct range_list
*rl
)
999 struct data_range
*tmp
;
1000 struct range_list
*ret
= NULL
;
1006 if (!type
|| type
== rl_type(rl
))
1009 FOR_EACH_PTR(rl
, tmp
) {
1012 if (type_bits(type
) < type_bits(rl_type(rl
))) {
1013 min
.uvalue
= tmp
->min
.uvalue
& ((1ULL << type_bits(type
)) - 1);
1014 max
.uvalue
= tmp
->max
.uvalue
& ((1ULL << type_bits(type
)) - 1);
1016 if (sval_cmp(min
, max
) > 0) {
1017 min
= sval_cast(type
, min
);
1018 max
= sval_cast(type
, max
);
1020 add_range_t(type
, &ret
, min
, max
);
1021 } END_FOR_EACH_PTR(tmp
);
1026 static int rl_is_sane(struct range_list
*rl
)
1028 struct data_range
*tmp
;
1029 struct symbol
*type
;
1032 FOR_EACH_PTR(rl
, tmp
) {
1033 if (!sval_fits(type
, tmp
->min
))
1035 if (!sval_fits(type
, tmp
->max
))
1037 if (sval_cmp(tmp
->min
, tmp
->max
) > 0)
1039 } END_FOR_EACH_PTR(tmp
);
1044 static int rl_type_consistent(struct range_list
*rl
)
1046 struct data_range
*tmp
;
1047 struct symbol
*type
;
1050 FOR_EACH_PTR(rl
, tmp
) {
1051 if (type
!= tmp
->min
.type
|| type
!= tmp
->max
.type
)
1053 } END_FOR_EACH_PTR(tmp
);
1057 struct range_list
*cast_rl(struct symbol
*type
, struct range_list
*rl
)
1059 struct data_range
*tmp
;
1060 struct range_list
*ret
= NULL
;
1067 if (!rl_is_sane(rl
))
1068 return alloc_whole_rl(type
);
1069 if (type
== rl_type(rl
) && rl_type_consistent(rl
))
1072 FOR_EACH_PTR(rl
, tmp
) {
1073 add_range_t(type
, &ret
, tmp
->min
, tmp
->max
);
1074 } END_FOR_EACH_PTR(tmp
);
1077 return alloc_whole_rl(type
);
1082 struct range_list
*rl_invert(struct range_list
*orig
)
1084 struct range_list
*ret
= NULL
;
1085 struct data_range
*tmp
;
1086 sval_t gap_min
, abs_max
, sval
;
1091 gap_min
= sval_type_min(rl_min(orig
).type
);
1092 abs_max
= sval_type_max(rl_max(orig
).type
);
1094 FOR_EACH_PTR(orig
, tmp
) {
1095 if (sval_cmp(tmp
->min
, gap_min
) > 0) {
1096 sval
= sval_type_val(tmp
->min
.type
, tmp
->min
.value
- 1);
1097 add_range(&ret
, gap_min
, sval
);
1099 gap_min
= sval_type_val(tmp
->max
.type
, tmp
->max
.value
+ 1);
1100 if (sval_cmp(tmp
->max
, abs_max
) == 0)
1102 } END_FOR_EACH_PTR(tmp
);
1104 if (sval_cmp(gap_min
, abs_max
) < 0)
1105 add_range(&ret
, gap_min
, abs_max
);
1110 struct range_list
*rl_filter(struct range_list
*rl
, struct range_list
*filter
)
1112 struct data_range
*tmp
;
1114 FOR_EACH_PTR(filter
, tmp
) {
1115 rl
= remove_range(rl
, tmp
->min
, tmp
->max
);
1116 } END_FOR_EACH_PTR(tmp
);
1121 struct range_list
*rl_intersection(struct range_list
*one
, struct range_list
*two
)
1123 struct range_list
*one_orig
;
1124 struct range_list
*two_orig
;
1125 struct range_list
*ret
;
1126 struct symbol
*ret_type
;
1127 struct symbol
*small_type
;
1128 struct symbol
*large_type
;
1138 ret_type
= rl_type(one
);
1139 small_type
= rl_type(one
);
1140 large_type
= rl_type(two
);
1142 if (type_bits(rl_type(two
)) < type_bits(small_type
)) {
1143 small_type
= rl_type(two
);
1144 large_type
= rl_type(one
);
1147 one
= cast_rl(large_type
, one
);
1148 two
= cast_rl(large_type
, two
);
1151 one
= rl_invert(one
);
1152 two
= rl_invert(two
);
1154 ret
= rl_filter(ret
, one
);
1155 ret
= rl_filter(ret
, two
);
1157 one
= cast_rl(small_type
, one_orig
);
1158 two
= cast_rl(small_type
, two_orig
);
1160 one
= rl_invert(one
);
1161 two
= rl_invert(two
);
1163 ret
= cast_rl(small_type
, ret
);
1164 ret
= rl_filter(ret
, one
);
1165 ret
= rl_filter(ret
, two
);
1167 return cast_rl(ret_type
, ret
);
1170 static struct range_list
*handle_mod_rl(struct range_list
*left
, struct range_list
*right
)
1175 max
= rl_max(right
);
1176 if (sval_is_max(max
))
1181 if (sval_is_negative(max
))
1183 if (sval_cmp(rl_max(left
), max
) < 0)
1187 return alloc_rl(zero
, max
);
1190 static struct range_list
*handle_divide_rl(struct range_list
*left
, struct range_list
*right
)
1194 if (sval_is_max(rl_max(left
)))
1196 if (sval_is_max(rl_max(right
)))
1199 if (sval_is_negative(rl_min(left
)))
1201 if (sval_cmp_val(rl_min(right
), 0) <= 0)
1204 max
= sval_binop(rl_max(left
), '/', rl_min(right
));
1205 min
= sval_binop(rl_min(left
), '/', rl_max(right
));
1207 return alloc_rl(min
, max
);
1210 static struct range_list
*handle_add_mult_rl(struct range_list
*left
, int op
, struct range_list
*right
)
1214 if (sval_binop_overflows(rl_min(left
), op
, rl_min(right
)))
1216 min
= sval_binop(rl_min(left
), op
, rl_min(right
));
1218 if (sval_binop_overflows(rl_max(left
), op
, rl_max(right
)))
1220 max
= sval_binop(rl_max(left
), op
, rl_max(right
));
1222 return alloc_rl(min
, max
);
1225 struct range_list
*rl_binop(struct range_list
*left
, int op
, struct range_list
*right
)
1227 struct symbol
*cast_type
;
1228 sval_t left_sval
, right_sval
;
1229 struct range_list
*ret
= NULL
;
1231 cast_type
= rl_type(left
);
1232 if (sval_type_max(rl_type(left
)).uvalue
< sval_type_max(rl_type(right
)).uvalue
)
1233 cast_type
= rl_type(right
);
1234 if (sval_type_max(cast_type
).uvalue
< INT_MAX
)
1235 cast_type
= &int_ctype
;
1237 left
= cast_rl(cast_type
, left
);
1238 right
= cast_rl(cast_type
, right
);
1240 if (!left
|| !right
)
1241 return alloc_whole_rl(cast_type
);
1243 if (rl_to_sval(left
, &left_sval
) && rl_to_sval(right
, &right_sval
)) {
1244 sval_t val
= sval_binop(left_sval
, op
, right_sval
);
1245 return alloc_rl(val
, val
);
1250 ret
= handle_mod_rl(left
, right
);
1253 ret
= handle_divide_rl(left
, right
);
1257 ret
= handle_add_mult_rl(left
, op
, right
);
1260 /* FIXME: Do the rest as well */
1264 case SPECIAL_RIGHTSHIFT
:
1265 case SPECIAL_LEFTSHIFT
:
1271 ret
= alloc_whole_rl(cast_type
);
1275 void free_rl(struct range_list
**rlist
)
1277 __free_ptr_list((struct ptr_list
**)rlist
);
1280 static void free_single_dinfo(struct data_info
*dinfo
)
1282 free_rl(&dinfo
->value_ranges
);
1285 static void free_dinfos(struct allocation_blob
*blob
)
1287 unsigned int size
= sizeof(struct data_info
);
1288 unsigned int offset
= 0;
1290 while (offset
< blob
->offset
) {
1291 free_single_dinfo((struct data_info
*)(blob
->data
+ offset
));
1296 void free_data_info_allocs(void)
1298 struct allocator_struct
*desc
= &data_info_allocator
;
1299 struct allocation_blob
*blob
= desc
->blobs
;
1302 desc
->allocations
= 0;
1303 desc
->total_bytes
= 0;
1304 desc
->useful_bytes
= 0;
1305 desc
->freelist
= NULL
;
1307 struct allocation_blob
*next
= blob
->next
;
1309 blob_free(blob
, desc
->chunking
);
1312 clear_data_range_alloc();