2 * Copyright (C) 2010 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 * smatch_dinfo.c has helper functions for handling data_info structs
30 #include "smatch_slist.h"
31 #include "smatch_extra.h"
33 struct smatch_state
*merge_estates(struct smatch_state
*s1
, struct smatch_state
*s2
)
35 struct smatch_state
*tmp
;
36 struct range_list
*value_ranges
;
37 struct related_list
*rlist
;
39 if (estates_equiv(s1
, s2
))
42 value_ranges
= rl_union(estate_rl(s1
), estate_rl(s2
));
43 tmp
= alloc_estate_rl(value_ranges
);
44 rlist
= get_shared_relations(estate_related(s1
), estate_related(s2
));
45 set_related(tmp
, rlist
);
47 if ((estate_has_hard_max(s1
) && (!estate_rl(s2
) || estate_has_hard_max(s2
))) ||
48 (estate_has_hard_max(s2
) && (!estate_rl(s1
) || estate_has_hard_max(s1
))))
49 estate_set_hard_max(tmp
);
51 estate_set_fuzzy_max(tmp
, sval_max(estate_get_fuzzy_max(s1
), estate_get_fuzzy_max(s2
)));
53 if (estate_capped(s1
) && estate_capped(s2
))
54 estate_set_capped(tmp
);
56 if (estate_treat_untagged(s1
) && estate_treat_untagged(s2
))
57 estate_set_treat_untagged(tmp
);
59 if (estate_new(s1
) || estate_new(s2
))
65 struct data_info
*get_dinfo(struct smatch_state
*state
)
69 return (struct data_info
*)state
->data
;
72 struct range_list
*estate_rl(struct smatch_state
*state
)
76 return get_dinfo(state
)->value_ranges
;
79 struct related_list
*estate_related(struct smatch_state
*state
)
83 return get_dinfo(state
)->related
;
86 sval_t
estate_get_fuzzy_max(struct smatch_state
*state
)
90 if (!state
|| !get_dinfo(state
))
92 return get_dinfo(state
)->fuzzy_max
;
95 int estate_has_fuzzy_max(struct smatch_state
*state
)
97 if (estate_get_fuzzy_max(state
).type
)
102 void estate_set_fuzzy_max(struct smatch_state
*state
, sval_t fuzzy_max
)
104 if (!rl_has_sval(estate_rl(state
), fuzzy_max
))
106 get_dinfo(state
)->fuzzy_max
= fuzzy_max
;
109 void estate_copy_fuzzy_max(struct smatch_state
*new, struct smatch_state
*old
)
111 if (!estate_has_fuzzy_max(old
))
113 estate_set_fuzzy_max(new, estate_get_fuzzy_max(old
));
116 void estate_clear_fuzzy_max(struct smatch_state
*state
)
120 get_dinfo(state
)->fuzzy_max
= empty
;
123 int estate_has_hard_max(struct smatch_state
*state
)
125 if (!state
|| !estate_rl(state
))
127 return get_dinfo(state
)->hard_max
;
130 void estate_set_hard_max(struct smatch_state
*state
)
132 /* pointers don't have a hard max */
133 if (is_ptr_type(estate_type(state
)))
135 get_dinfo(state
)->hard_max
= 1;
138 void estate_clear_hard_max(struct smatch_state
*state
)
140 get_dinfo(state
)->hard_max
= 0;
143 int estate_get_hard_max(struct smatch_state
*state
, sval_t
*sval
)
145 if (!state
|| !get_dinfo(state
)->hard_max
|| !estate_rl(state
))
147 *sval
= rl_max(estate_rl(state
));
151 bool estate_capped(struct smatch_state
*state
)
155 /* impossible states are capped */
156 if (!estate_rl(state
))
158 return get_dinfo(state
)->capped
;
161 void estate_set_capped(struct smatch_state
*state
)
163 get_dinfo(state
)->capped
= true;
166 bool estate_treat_untagged(struct smatch_state
*state
)
171 /* impossible states are capped */
172 if (!estate_rl(state
))
175 return get_dinfo(state
)->treat_untagged
;
178 void estate_set_treat_untagged(struct smatch_state
*state
)
180 get_dinfo(state
)->treat_untagged
= true;
183 bool estate_new(struct smatch_state
*state
)
185 if (!estate_rl(state
))
187 return get_dinfo(state
)->set
;
190 void estate_set_new(struct smatch_state
*state
)
192 get_dinfo(state
)->set
= true;
195 sval_t
estate_min(struct smatch_state
*state
)
197 return rl_min(estate_rl(state
));
200 sval_t
estate_max(struct smatch_state
*state
)
202 return rl_max(estate_rl(state
));
205 struct symbol
*estate_type(struct smatch_state
*state
)
207 return rl_max(estate_rl(state
)).type
;
210 static int rlists_equiv(struct related_list
*one
, struct related_list
*two
)
212 struct relation
*one_rel
;
213 struct relation
*two_rel
;
215 PREPARE_PTR_LIST(one
, one_rel
);
216 PREPARE_PTR_LIST(two
, two_rel
);
218 if (!one_rel
&& !two_rel
)
220 if (!one_rel
|| !two_rel
)
222 if (one_rel
->sym
!= two_rel
->sym
)
224 if (strcmp(one_rel
->name
, two_rel
->name
))
226 NEXT_PTR_LIST(one_rel
);
227 NEXT_PTR_LIST(two_rel
);
229 FINISH_PTR_LIST(two_rel
);
230 FINISH_PTR_LIST(one_rel
);
235 int estates_equiv(struct smatch_state
*one
, struct smatch_state
*two
)
241 if (!rlists_equiv(estate_related(one
), estate_related(two
)))
243 if (estate_capped(one
) != estate_capped(two
))
245 if (estate_treat_untagged(one
) != estate_treat_untagged(two
))
247 if (estate_has_hard_max(one
) != estate_has_hard_max(two
))
249 if (estate_new(one
) != estate_new(two
))
251 if (strcmp(one
->name
, two
->name
) == 0)
256 int estate_is_whole(struct smatch_state
*state
)
258 return is_whole_rl(estate_rl(state
));
261 int estate_is_empty(struct smatch_state
*state
)
263 return state
&& !estate_rl(state
);
266 int estate_is_unknown(struct smatch_state
*state
)
268 if (!estate_is_whole(state
))
270 if (estate_related(state
))
272 if (estate_has_fuzzy_max(state
))
277 int estate_get_single_value(struct smatch_state
*state
, sval_t
*sval
)
281 if (!estate_rl(state
))
283 min
= rl_min(estate_rl(state
));
284 max
= rl_max(estate_rl(state
));
285 if (sval_cmp(min
, max
) != 0)
291 static struct data_info
*alloc_dinfo(void)
293 struct data_info
*ret
;
295 ret
= __alloc_data_info(0);
296 memset(ret
, 0, sizeof(*ret
));
300 static struct data_info
*alloc_dinfo_range(sval_t min
, sval_t max
)
302 struct data_info
*ret
;
305 add_range(&ret
->value_ranges
, min
, max
);
309 static struct data_info
*alloc_dinfo_range_list(struct range_list
*rl
)
311 struct data_info
*ret
;
314 ret
->value_ranges
= rl
;
318 static struct data_info
*clone_dinfo(struct data_info
*dinfo
)
320 struct data_info
*ret
;
323 ret
->related
= clone_related_list(dinfo
->related
);
324 ret
->value_ranges
= clone_rl(dinfo
->value_ranges
);
325 ret
->hard_max
= dinfo
->hard_max
;
326 ret
->fuzzy_max
= dinfo
->fuzzy_max
;
330 struct smatch_state
*clone_estate(struct smatch_state
*state
)
332 struct smatch_state
*ret
;
337 ret
= __alloc_smatch_state(0);
338 ret
->name
= state
->name
;
339 ret
->data
= clone_dinfo(get_dinfo(state
));
343 struct smatch_state
*clone_partial_estate(struct smatch_state
*state
, struct range_list
*rl
)
345 struct smatch_state
*ret
;
350 rl
= cast_rl(estate_type(state
), rl
);
352 ret
= alloc_estate_rl(rl
);
353 set_related(ret
, clone_related_list(estate_related(state
)));
354 if (estate_has_hard_max(state
))
355 estate_set_hard_max(ret
);
356 if (estate_has_fuzzy_max(state
))
357 estate_set_fuzzy_max(ret
, estate_get_fuzzy_max(state
));
362 struct smatch_state
*alloc_estate_empty(void)
364 struct smatch_state
*state
;
365 struct data_info
*dinfo
;
367 dinfo
= alloc_dinfo();
368 state
= __alloc_smatch_state(0);
374 struct smatch_state
*alloc_estate_whole(struct symbol
*type
)
376 return alloc_estate_rl(alloc_whole_rl(type
));
379 struct smatch_state
*extra_empty(void)
381 struct smatch_state
*ret
;
383 ret
= __alloc_smatch_state(0);
385 ret
->data
= alloc_dinfo();
389 struct smatch_state
*alloc_estate_sval(sval_t sval
)
391 struct smatch_state
*state
;
393 state
= __alloc_smatch_state(0);
394 state
->data
= alloc_dinfo_range(sval
, sval
);
395 state
->name
= show_rl(get_dinfo(state
)->value_ranges
);
396 estate_set_hard_max(state
);
397 estate_set_fuzzy_max(state
, sval
);
401 struct smatch_state
*alloc_estate_range(sval_t min
, sval_t max
)
403 struct smatch_state
*state
;
405 state
= __alloc_smatch_state(0);
406 state
->data
= alloc_dinfo_range(min
, max
);
407 state
->name
= show_rl(get_dinfo(state
)->value_ranges
);
411 struct smatch_state
*alloc_estate_rl(struct range_list
*rl
)
413 struct smatch_state
*state
;
416 return extra_empty();
418 state
= __alloc_smatch_state(0);
419 state
->data
= alloc_dinfo_range_list(rl
);
420 state
->name
= show_rl(rl
);
424 struct smatch_state
*clone_estate_cast(struct symbol
*type
, struct smatch_state
*state
)
426 struct smatch_state
*ret
;
427 struct data_info
*dinfo
;
432 dinfo
= alloc_dinfo();
433 dinfo
->value_ranges
= clone_rl(cast_rl(type
, estate_rl(state
)));
435 ret
= __alloc_smatch_state(0);
436 ret
->name
= show_rl(dinfo
->value_ranges
);
442 struct smatch_state
*get_implied_estate(struct expression
*expr
)
444 struct smatch_state
*state
;
445 struct range_list
*rl
;
447 state
= get_state_expr(SMATCH_EXTRA
, expr
);
450 if (!get_implied_rl(expr
, &rl
))
451 rl
= alloc_whole_rl(get_type(expr
));
452 return alloc_estate_rl(rl
);
456 * One of the complications is that smatch tries to free a bunch of data at the
457 * end of every function.
459 struct data_info
*clone_dinfo_perm(struct data_info
*dinfo
)
461 struct data_info
*ret
;
463 ret
= malloc(sizeof(*ret
));
464 memset(ret
, 0, sizeof(*ret
));
466 ret
->value_ranges
= clone_rl_permanent(dinfo
->value_ranges
);
468 ret
->fuzzy_max
= dinfo
->fuzzy_max
;
472 struct smatch_state
*clone_estate_perm(struct smatch_state
*state
)
474 struct smatch_state
*ret
;
476 ret
= malloc(sizeof(*ret
));
477 ret
->name
= alloc_string(state
->name
);
478 ret
->data
= clone_dinfo_perm(get_dinfo(state
));