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 (!strncmp(start
, "ptr_max", 7)) {
285 ret
= sval_type_val(type
, valid_ptr_max
);
287 } else if (start
[0] == '[') {
288 /* this parses [==p0] comparisons */
289 get_val_from_key(1, type
, start
, call
, &c
, &ret
);
291 ret
= sval_type_val(type
, strtoll(start
, &c
, 10));
297 static char *jump_to_call_math(char *value
)
301 while (*c
&& *c
!= '[')
307 if (*c
== '<' || *c
== '=' || *c
== '>' || *c
== '!')
313 static void str_to_rl_helper(struct expression
*call
, struct symbol
*type
, char *value
, struct range_list
**rl
)
323 if (strcmp(value
, "empty") == 0)
326 if (strncmp(value
, "[==$", 4) == 0) {
327 struct expression
*arg
;
330 if (!str_to_comparison_arg(value
, call
, &comparison
, &arg
))
332 if (!get_implied_rl(arg
, rl
))
337 call_math
= jump_to_call_math(value
);
338 if (call_math
&& parse_call_math_rl(call
, call_math
, rl
))
341 min
= sval_type_min(type
);
342 max
= sval_type_max(type
);
344 while (*c
!= '\0' && *c
!= '[') {
347 min
= parse_val(0, call
, type
, c
, &c
);
351 if (*c
== '\0' || *c
== '[') {
352 add_range(rl
, min
, min
);
356 add_range(rl
, min
, min
);
361 sm_msg("debug XXX: trouble parsing %s c = %s", value
, c
);
367 max
= parse_val(1, call
, type
, c
, &c
);
368 add_range(rl
, min
, max
);
379 * For now if we already tried to handle the call math and couldn't
380 * figure it out then bail.
382 if (jump_to_call_math(c
) == c
+ 1)
386 *rl
= filter_by_comparison_call(c
, call
, &c
, *rl
);
389 *rl
= cast_rl(type
, *rl
);
392 void str_to_rl(struct symbol
*type
, char *value
, struct range_list
**rl
)
394 return str_to_rl_helper(NULL
, type
, value
, rl
);
397 void call_results_to_rl(struct expression
*expr
, struct symbol
*type
, char *value
, struct range_list
**rl
)
399 return str_to_rl_helper(strip_expr(expr
), type
, value
, rl
);
402 int is_whole_rl(struct range_list
*rl
)
404 struct data_range
*drange
;
406 if (ptr_list_empty(rl
))
408 drange
= first_ptr_list((struct ptr_list
*)rl
);
409 if (sval_is_min(drange
->min
) && sval_is_max(drange
->max
))
414 sval_t
rl_min(struct range_list
*rl
)
416 struct data_range
*drange
;
419 ret
.type
= &llong_ctype
;
420 ret
.value
= LLONG_MIN
;
421 if (ptr_list_empty(rl
))
423 drange
= first_ptr_list((struct ptr_list
*)rl
);
427 sval_t
rl_max(struct range_list
*rl
)
429 struct data_range
*drange
;
432 ret
.type
= &llong_ctype
;
433 ret
.value
= LLONG_MAX
;
434 if (ptr_list_empty(rl
))
436 drange
= last_ptr_list((struct ptr_list
*)rl
);
440 int rl_to_sval(struct range_list
*rl
, sval_t
*sval
)
449 if (sval_cmp(min
, max
) != 0)
455 struct symbol
*rl_type(struct range_list
*rl
)
459 return rl_min(rl
).type
;
462 static struct data_range
*alloc_range_helper_sval(sval_t min
, sval_t max
, int perm
)
464 struct data_range
*ret
;
467 ret
= __alloc_perm_data_range(0);
469 ret
= __alloc_data_range(0);
475 struct data_range
*alloc_range(sval_t min
, sval_t max
)
477 return alloc_range_helper_sval(min
, max
, 0);
480 struct data_range
*alloc_range_perm(sval_t min
, sval_t max
)
482 return alloc_range_helper_sval(min
, max
, 1);
485 struct range_list
*alloc_rl(sval_t min
, sval_t max
)
487 struct range_list
*rl
= NULL
;
489 if (sval_cmp(min
, max
) > 0)
490 return alloc_whole_rl(min
.type
);
492 add_range(&rl
, min
, max
);
496 struct range_list
*alloc_whole_rl(struct symbol
*type
)
498 if (!type
|| type_positive_bits(type
) < 0)
500 if (type
->type
== SYM_ARRAY
)
503 return alloc_rl(sval_type_min(type
), sval_type_max(type
));
506 void add_range(struct range_list
**list
, sval_t min
, sval_t max
)
508 struct data_range
*tmp
= NULL
;
509 struct data_range
*new = NULL
;
513 * FIXME: This has a problem merging a range_list like: min-0,3-max
514 * with a range like 1-2. You end up with min-2,3-max instead of
517 FOR_EACH_PTR(*list
, tmp
) {
519 /* Sometimes we overlap with more than one range
520 so we have to delete or modify the next range. */
521 if (max
.value
+ 1 == tmp
->min
.value
) {
522 /* join 2 ranges here */
524 DELETE_CURRENT_PTR(tmp
);
528 /* Doesn't overlap with the next one. */
529 if (sval_cmp(max
, tmp
->min
) < 0)
531 /* Partially overlaps with the next one. */
532 if (sval_cmp(max
, tmp
->max
) < 0) {
533 tmp
->min
.value
= max
.value
+ 1;
536 /* Completely overlaps with the next one. */
537 if (sval_cmp(max
, tmp
->max
) >= 0) {
538 DELETE_CURRENT_PTR(tmp
);
539 /* there could be more ranges to delete */
543 if (!sval_is_max(max
) && max
.value
+ 1 == tmp
->min
.value
) {
544 /* join 2 ranges into a big range */
545 new = alloc_range(min
, tmp
->max
);
546 REPLACE_CURRENT_PTR(tmp
, new);
549 if (sval_cmp(max
, tmp
->min
) < 0) { /* new range entirely below */
550 new = alloc_range(min
, max
);
551 INSERT_CURRENT(new, tmp
);
554 if (sval_cmp(min
, tmp
->min
) < 0) { /* new range partially below */
555 if (sval_cmp(max
, tmp
->max
) < 0)
559 new = alloc_range(min
, max
);
560 REPLACE_CURRENT_PTR(tmp
, new);
565 if (sval_cmp(max
, tmp
->max
) <= 0) /* new range already included */
567 if (sval_cmp(min
, tmp
->max
) <= 0) { /* new range partially above */
569 new = alloc_range(min
, max
);
570 REPLACE_CURRENT_PTR(tmp
, new);
574 if (!sval_is_min(min
) && min
.value
- 1 == tmp
->max
.value
) {
575 /* join 2 ranges into a big range */
576 new = alloc_range(tmp
->min
, max
);
577 REPLACE_CURRENT_PTR(tmp
, new);
581 /* the new range is entirely above the existing ranges */
582 } END_FOR_EACH_PTR(tmp
);
585 new = alloc_range(min
, max
);
586 add_ptr_list(list
, new);
589 struct range_list
*clone_rl(struct range_list
*list
)
591 struct data_range
*tmp
;
592 struct range_list
*ret
= NULL
;
594 FOR_EACH_PTR(list
, tmp
) {
595 add_ptr_list(&ret
, tmp
);
596 } END_FOR_EACH_PTR(tmp
);
600 struct range_list
*clone_rl_permanent(struct range_list
*list
)
602 struct data_range
*tmp
;
603 struct data_range
*new;
604 struct range_list
*ret
= NULL
;
606 FOR_EACH_PTR(list
, tmp
) {
607 new = alloc_range_perm(tmp
->min
, tmp
->max
);
608 add_ptr_list(&ret
, new);
609 } END_FOR_EACH_PTR(tmp
);
613 struct range_list
*rl_union(struct range_list
*one
, struct range_list
*two
)
615 struct data_range
*tmp
;
616 struct range_list
*ret
= NULL
;
618 FOR_EACH_PTR(one
, tmp
) {
619 add_range(&ret
, tmp
->min
, tmp
->max
);
620 } END_FOR_EACH_PTR(tmp
);
621 FOR_EACH_PTR(two
, tmp
) {
622 add_range(&ret
, tmp
->min
, tmp
->max
);
623 } END_FOR_EACH_PTR(tmp
);
627 struct range_list
*remove_range(struct range_list
*list
, sval_t min
, sval_t max
)
629 struct data_range
*tmp
;
630 struct range_list
*ret
= NULL
;
632 FOR_EACH_PTR(list
, tmp
) {
633 if (sval_cmp(tmp
->max
, min
) < 0) {
634 add_range(&ret
, tmp
->min
, tmp
->max
);
637 if (sval_cmp(tmp
->min
, max
) > 0) {
638 add_range(&ret
, tmp
->min
, tmp
->max
);
641 if (sval_cmp(tmp
->min
, min
) >= 0 && sval_cmp(tmp
->max
, max
) <= 0)
643 if (sval_cmp(tmp
->min
, min
) >= 0) {
645 add_range(&ret
, max
, tmp
->max
);
646 } else if (sval_cmp(tmp
->max
, max
) <= 0) {
648 add_range(&ret
, tmp
->min
, min
);
652 add_range(&ret
, tmp
->min
, min
);
653 add_range(&ret
, max
, tmp
->max
);
655 } END_FOR_EACH_PTR(tmp
);
659 int ranges_equiv(struct data_range
*one
, struct data_range
*two
)
665 if (sval_cmp(one
->min
, two
->min
) != 0)
667 if (sval_cmp(one
->max
, two
->max
) != 0)
672 int rl_equiv(struct range_list
*one
, struct range_list
*two
)
674 struct data_range
*one_range
;
675 struct data_range
*two_range
;
680 PREPARE_PTR_LIST(one
, one_range
);
681 PREPARE_PTR_LIST(two
, two_range
);
683 if (!one_range
&& !two_range
)
685 if (!ranges_equiv(one_range
, two_range
))
687 NEXT_PTR_LIST(one_range
);
688 NEXT_PTR_LIST(two_range
);
690 FINISH_PTR_LIST(two_range
);
691 FINISH_PTR_LIST(one_range
);
696 int true_comparison_range(struct data_range
*left
, int comparison
, struct data_range
*right
)
698 switch (comparison
) {
700 case SPECIAL_UNSIGNED_LT
:
701 if (sval_cmp(left
->min
, right
->max
) < 0)
704 case SPECIAL_UNSIGNED_LTE
:
706 if (sval_cmp(left
->min
, right
->max
) <= 0)
710 if (sval_cmp(left
->max
, right
->min
) < 0)
712 if (sval_cmp(left
->min
, right
->max
) > 0)
715 case SPECIAL_UNSIGNED_GTE
:
717 if (sval_cmp(left
->max
, right
->min
) >= 0)
721 case SPECIAL_UNSIGNED_GT
:
722 if (sval_cmp(left
->max
, right
->min
) > 0)
725 case SPECIAL_NOTEQUAL
:
726 if (sval_cmp(left
->min
, left
->max
) != 0)
728 if (sval_cmp(right
->min
, right
->max
) != 0)
730 if (sval_cmp(left
->min
, right
->min
) != 0)
734 sm_msg("unhandled comparison %d\n", comparison
);
740 int true_comparison_range_LR(int comparison
, struct data_range
*var
, struct data_range
*val
, int left
)
743 return true_comparison_range(var
, comparison
, val
);
745 return true_comparison_range(val
, comparison
, var
);
748 static int false_comparison_range_sval(struct data_range
*left
, int comparison
, struct data_range
*right
)
750 switch (comparison
) {
752 case SPECIAL_UNSIGNED_LT
:
753 if (sval_cmp(left
->max
, right
->min
) >= 0)
756 case SPECIAL_UNSIGNED_LTE
:
758 if (sval_cmp(left
->max
, right
->min
) > 0)
762 if (sval_cmp(left
->min
, left
->max
) != 0)
764 if (sval_cmp(right
->min
, right
->max
) != 0)
766 if (sval_cmp(left
->min
, right
->min
) != 0)
769 case SPECIAL_UNSIGNED_GTE
:
771 if (sval_cmp(left
->min
, right
->max
) < 0)
775 case SPECIAL_UNSIGNED_GT
:
776 if (sval_cmp(left
->min
, right
->max
) <= 0)
779 case SPECIAL_NOTEQUAL
:
780 if (sval_cmp(left
->max
, right
->min
) < 0)
782 if (sval_cmp(left
->min
, right
->max
) > 0)
786 sm_msg("unhandled comparison %d\n", comparison
);
792 int false_comparison_range_LR(int comparison
, struct data_range
*var
, struct data_range
*val
, int left
)
795 return false_comparison_range_sval(var
, comparison
, val
);
797 return false_comparison_range_sval(val
, comparison
, var
);
800 int possibly_true(struct expression
*left
, int comparison
, struct expression
*right
)
802 struct range_list
*rl_left
, *rl_right
;
803 struct data_range
*tmp_left
, *tmp_right
;
805 if (!get_implied_rl(left
, &rl_left
))
807 if (!get_implied_rl(right
, &rl_right
))
810 FOR_EACH_PTR(rl_left
, tmp_left
) {
811 FOR_EACH_PTR(rl_right
, tmp_right
) {
812 if (true_comparison_range(tmp_left
, comparison
, tmp_right
))
814 } END_FOR_EACH_PTR(tmp_right
);
815 } END_FOR_EACH_PTR(tmp_left
);
819 int possibly_false(struct expression
*left
, int comparison
, struct expression
*right
)
821 struct range_list
*rl_left
, *rl_right
;
822 struct data_range
*tmp_left
, *tmp_right
;
824 if (!get_implied_rl(left
, &rl_left
))
826 if (!get_implied_rl(right
, &rl_right
))
829 FOR_EACH_PTR(rl_left
, tmp_left
) {
830 FOR_EACH_PTR(rl_right
, tmp_right
) {
831 if (false_comparison_range_sval(tmp_left
, comparison
, tmp_right
))
833 } END_FOR_EACH_PTR(tmp_right
);
834 } END_FOR_EACH_PTR(tmp_left
);
838 int possibly_true_rl(struct range_list
*left_ranges
, int comparison
, struct range_list
*right_ranges
)
840 struct data_range
*left_tmp
, *right_tmp
;
842 if (!left_ranges
|| !right_ranges
)
845 FOR_EACH_PTR(left_ranges
, left_tmp
) {
846 FOR_EACH_PTR(right_ranges
, right_tmp
) {
847 if (true_comparison_range(left_tmp
, comparison
, right_tmp
))
849 } END_FOR_EACH_PTR(right_tmp
);
850 } END_FOR_EACH_PTR(left_tmp
);
854 int possibly_false_rl(struct range_list
*left_ranges
, int comparison
, struct range_list
*right_ranges
)
856 struct data_range
*left_tmp
, *right_tmp
;
858 if (!left_ranges
|| !right_ranges
)
861 FOR_EACH_PTR(left_ranges
, left_tmp
) {
862 FOR_EACH_PTR(right_ranges
, right_tmp
) {
863 if (false_comparison_range_sval(left_tmp
, comparison
, right_tmp
))
865 } END_FOR_EACH_PTR(right_tmp
);
866 } END_FOR_EACH_PTR(left_tmp
);
870 /* FIXME: the _rl here stands for right left so really it should be _lr */
871 int possibly_true_rl_LR(int comparison
, struct range_list
*a
, struct range_list
*b
, int left
)
874 return possibly_true_rl(a
, comparison
, b
);
876 return possibly_true_rl(b
, comparison
, a
);
879 int possibly_false_rl_LR(int comparison
, struct range_list
*a
, struct range_list
*b
, int left
)
882 return possibly_false_rl(a
, comparison
, b
);
884 return possibly_false_rl(b
, comparison
, a
);
887 int rl_has_sval(struct range_list
*rl
, sval_t sval
)
889 struct data_range
*tmp
;
891 FOR_EACH_PTR(rl
, tmp
) {
892 if (sval_cmp(tmp
->min
, sval
) <= 0 &&
893 sval_cmp(tmp
->max
, sval
) >= 0)
895 } END_FOR_EACH_PTR(tmp
);
899 void tack_on(struct range_list
**list
, struct data_range
*drange
)
901 add_ptr_list(list
, drange
);
904 void push_rl(struct range_list_stack
**rl_stack
, struct range_list
*rl
)
906 add_ptr_list(rl_stack
, rl
);
909 struct range_list
*pop_rl(struct range_list_stack
**rl_stack
)
911 struct range_list
*rl
;
913 rl
= last_ptr_list((struct ptr_list
*)*rl_stack
);
914 delete_ptr_list_last((struct ptr_list
**)rl_stack
);
918 struct range_list
*top_rl(struct range_list_stack
*rl_stack
)
920 struct range_list
*rl
;
922 rl
= last_ptr_list((struct ptr_list
*)rl_stack
);
926 void filter_top_rl(struct range_list_stack
**rl_stack
, sval_t sval
)
928 struct range_list
*rl
;
930 rl
= pop_rl(rl_stack
);
931 rl
= remove_range(rl
, sval
, sval
);
932 push_rl(rl_stack
, rl
);
935 static int sval_too_big(struct symbol
*type
, sval_t sval
)
937 if (type_bits(type
) == 64)
939 if (sval
.uvalue
> ((1ULL << type_bits(type
)) - 1))
944 static void add_range_t(struct symbol
*type
, struct range_list
**rl
, sval_t min
, sval_t max
)
946 /* If we're just adding a number, cast it and add it */
947 if (sval_cmp(min
, max
) == 0) {
948 add_range(rl
, sval_cast(type
, min
), sval_cast(type
, max
));
952 /* If the range is within the type range then add it */
953 if (sval_fits(type
, min
) && sval_fits(type
, max
)) {
954 add_range(rl
, sval_cast(type
, min
), sval_cast(type
, max
));
959 * If the range we are adding has more bits than the range type then
960 * add the whole range type. Eg:
961 * 0x8000000000000000 - 0xf000000000000000 -> cast to int
962 * This isn't totally the right thing to do. We could be more granular.
964 if (sval_too_big(type
, min
) || sval_too_big(type
, max
)) {
965 add_range(rl
, sval_type_min(type
), sval_type_max(type
));
969 /* Cast negative values to high positive values */
970 if (sval_is_negative(min
) && type_unsigned(type
)) {
971 if (sval_is_positive(max
)) {
972 if (sval_too_high(type
, max
)) {
973 add_range(rl
, sval_type_min(type
), sval_type_max(type
));
976 add_range(rl
, sval_type_val(type
, 0), sval_cast(type
, max
));
977 max
= sval_type_max(type
);
979 max
= sval_cast(type
, max
);
981 min
= sval_cast(type
, min
);
982 add_range(rl
, min
, max
);
985 /* Cast high positive numbers to negative */
986 if (sval_unsigned(max
) && sval_is_negative(sval_cast(type
, max
))) {
987 if (!sval_is_negative(sval_cast(type
, min
))) {
988 add_range(rl
, sval_cast(type
, min
), sval_type_max(type
));
989 min
= sval_type_min(type
);
991 min
= sval_cast(type
, min
);
993 max
= sval_cast(type
, max
);
994 add_range(rl
, min
, max
);
1000 struct range_list
*rl_truncate_cast(struct symbol
*type
, struct range_list
*rl
)
1002 struct data_range
*tmp
;
1003 struct range_list
*ret
= NULL
;
1009 if (!type
|| type
== rl_type(rl
))
1012 FOR_EACH_PTR(rl
, tmp
) {
1015 if (type_bits(type
) < type_bits(rl_type(rl
))) {
1016 min
.uvalue
= tmp
->min
.uvalue
& ((1ULL << type_bits(type
)) - 1);
1017 max
.uvalue
= tmp
->max
.uvalue
& ((1ULL << type_bits(type
)) - 1);
1019 if (sval_cmp(min
, max
) > 0) {
1020 min
= sval_cast(type
, min
);
1021 max
= sval_cast(type
, max
);
1023 add_range_t(type
, &ret
, min
, max
);
1024 } END_FOR_EACH_PTR(tmp
);
1029 static int rl_is_sane(struct range_list
*rl
)
1031 struct data_range
*tmp
;
1032 struct symbol
*type
;
1035 FOR_EACH_PTR(rl
, tmp
) {
1036 if (!sval_fits(type
, tmp
->min
))
1038 if (!sval_fits(type
, tmp
->max
))
1040 if (sval_cmp(tmp
->min
, tmp
->max
) > 0)
1042 } END_FOR_EACH_PTR(tmp
);
1047 static int rl_type_consistent(struct range_list
*rl
)
1049 struct data_range
*tmp
;
1050 struct symbol
*type
;
1053 FOR_EACH_PTR(rl
, tmp
) {
1054 if (type
!= tmp
->min
.type
|| type
!= tmp
->max
.type
)
1056 } END_FOR_EACH_PTR(tmp
);
1060 struct range_list
*cast_rl(struct symbol
*type
, struct range_list
*rl
)
1062 struct data_range
*tmp
;
1063 struct range_list
*ret
= NULL
;
1070 if (!rl_is_sane(rl
))
1071 return alloc_whole_rl(type
);
1072 if (type
== rl_type(rl
) && rl_type_consistent(rl
))
1075 FOR_EACH_PTR(rl
, tmp
) {
1076 add_range_t(type
, &ret
, tmp
->min
, tmp
->max
);
1077 } END_FOR_EACH_PTR(tmp
);
1080 return alloc_whole_rl(type
);
1085 struct range_list
*rl_invert(struct range_list
*orig
)
1087 struct range_list
*ret
= NULL
;
1088 struct data_range
*tmp
;
1089 sval_t gap_min
, abs_max
, sval
;
1094 gap_min
= sval_type_min(rl_min(orig
).type
);
1095 abs_max
= sval_type_max(rl_max(orig
).type
);
1097 FOR_EACH_PTR(orig
, tmp
) {
1098 if (sval_cmp(tmp
->min
, gap_min
) > 0) {
1099 sval
= sval_type_val(tmp
->min
.type
, tmp
->min
.value
- 1);
1100 add_range(&ret
, gap_min
, sval
);
1102 gap_min
= sval_type_val(tmp
->max
.type
, tmp
->max
.value
+ 1);
1103 if (sval_cmp(tmp
->max
, abs_max
) == 0)
1105 } END_FOR_EACH_PTR(tmp
);
1107 if (sval_cmp(gap_min
, abs_max
) < 0)
1108 add_range(&ret
, gap_min
, abs_max
);
1113 struct range_list
*rl_filter(struct range_list
*rl
, struct range_list
*filter
)
1115 struct data_range
*tmp
;
1117 FOR_EACH_PTR(filter
, tmp
) {
1118 rl
= remove_range(rl
, tmp
->min
, tmp
->max
);
1119 } END_FOR_EACH_PTR(tmp
);
1124 struct range_list
*rl_intersection(struct range_list
*one
, struct range_list
*two
)
1126 struct range_list
*one_orig
;
1127 struct range_list
*two_orig
;
1128 struct range_list
*ret
;
1129 struct symbol
*ret_type
;
1130 struct symbol
*small_type
;
1131 struct symbol
*large_type
;
1141 ret_type
= rl_type(one
);
1142 small_type
= rl_type(one
);
1143 large_type
= rl_type(two
);
1145 if (type_bits(rl_type(two
)) < type_bits(small_type
)) {
1146 small_type
= rl_type(two
);
1147 large_type
= rl_type(one
);
1150 one
= cast_rl(large_type
, one
);
1151 two
= cast_rl(large_type
, two
);
1154 one
= rl_invert(one
);
1155 two
= rl_invert(two
);
1157 ret
= rl_filter(ret
, one
);
1158 ret
= rl_filter(ret
, two
);
1160 one
= cast_rl(small_type
, one_orig
);
1161 two
= cast_rl(small_type
, two_orig
);
1163 one
= rl_invert(one
);
1164 two
= rl_invert(two
);
1166 ret
= cast_rl(small_type
, ret
);
1167 ret
= rl_filter(ret
, one
);
1168 ret
= rl_filter(ret
, two
);
1170 return cast_rl(ret_type
, ret
);
1173 static struct range_list
*handle_mod_rl(struct range_list
*left
, struct range_list
*right
)
1178 max
= rl_max(right
);
1179 if (sval_is_max(max
))
1184 if (sval_is_negative(max
))
1186 if (sval_cmp(rl_max(left
), max
) < 0)
1190 return alloc_rl(zero
, max
);
1193 static struct range_list
*handle_divide_rl(struct range_list
*left
, struct range_list
*right
)
1197 if (sval_is_max(rl_max(left
)))
1199 if (sval_is_max(rl_max(right
)))
1202 if (sval_is_negative(rl_min(left
)))
1204 if (sval_cmp_val(rl_min(right
), 0) <= 0)
1207 max
= sval_binop(rl_max(left
), '/', rl_min(right
));
1208 min
= sval_binop(rl_min(left
), '/', rl_max(right
));
1210 return alloc_rl(min
, max
);
1213 static struct range_list
*handle_add_mult_rl(struct range_list
*left
, int op
, struct range_list
*right
)
1217 if (sval_binop_overflows(rl_min(left
), op
, rl_min(right
)))
1219 min
= sval_binop(rl_min(left
), op
, rl_min(right
));
1221 if (sval_binop_overflows(rl_max(left
), op
, rl_max(right
)))
1223 max
= sval_binop(rl_max(left
), op
, rl_max(right
));
1225 return alloc_rl(min
, max
);
1228 struct range_list
*rl_binop(struct range_list
*left
, int op
, struct range_list
*right
)
1230 struct symbol
*cast_type
;
1231 sval_t left_sval
, right_sval
;
1232 struct range_list
*ret
= NULL
;
1234 cast_type
= rl_type(left
);
1235 if (sval_type_max(rl_type(left
)).uvalue
< sval_type_max(rl_type(right
)).uvalue
)
1236 cast_type
= rl_type(right
);
1237 if (sval_type_max(cast_type
).uvalue
< INT_MAX
)
1238 cast_type
= &int_ctype
;
1240 left
= cast_rl(cast_type
, left
);
1241 right
= cast_rl(cast_type
, right
);
1243 if (!left
|| !right
)
1244 return alloc_whole_rl(cast_type
);
1246 if (rl_to_sval(left
, &left_sval
) && rl_to_sval(right
, &right_sval
)) {
1247 sval_t val
= sval_binop(left_sval
, op
, right_sval
);
1248 return alloc_rl(val
, val
);
1253 ret
= handle_mod_rl(left
, right
);
1256 ret
= handle_divide_rl(left
, right
);
1260 ret
= handle_add_mult_rl(left
, op
, right
);
1263 /* FIXME: Do the rest as well */
1267 case SPECIAL_RIGHTSHIFT
:
1268 case SPECIAL_LEFTSHIFT
:
1274 ret
= alloc_whole_rl(cast_type
);
1278 void free_rl(struct range_list
**rlist
)
1280 __free_ptr_list((struct ptr_list
**)rlist
);
1283 static void free_single_dinfo(struct data_info
*dinfo
)
1285 free_rl(&dinfo
->value_ranges
);
1288 static void free_dinfos(struct allocation_blob
*blob
)
1290 unsigned int size
= sizeof(struct data_info
);
1291 unsigned int offset
= 0;
1293 while (offset
< blob
->offset
) {
1294 free_single_dinfo((struct data_info
*)(blob
->data
+ offset
));
1299 void free_data_info_allocs(void)
1301 struct allocator_struct
*desc
= &data_info_allocator
;
1302 struct allocation_blob
*blob
= desc
->blobs
;
1305 desc
->allocations
= 0;
1306 desc
->total_bytes
= 0;
1307 desc
->useful_bytes
= 0;
1308 desc
->freelist
= NULL
;
1310 struct allocation_blob
*next
= blob
->next
;
1312 blob_free(blob
, desc
->chunking
);
1315 clear_data_range_alloc();