2 * Copyright (C) 2015 Oracle.
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 * This is to track when variables are masked away.
24 #include "smatch_extra.h"
25 #include "smatch_slist.h"
29 static const struct bit_info unknown_bit_info
= {
33 ALLOCATOR(bit_info
, "bit data");
34 static struct bit_info
*alloc_bit_info(unsigned long long set
, unsigned long long possible
)
36 struct bit_info
*bit_info
= __alloc_bit_info(0);
39 bit_info
->possible
= possible
;
44 static struct smatch_state
*alloc_bstate(unsigned long long set
, unsigned long long possible
)
46 struct smatch_state
*state
;
49 state
= __alloc_smatch_state(0);
50 snprintf(buf
, sizeof(buf
), "0x%llx + 0x%llx", set
, possible
);
51 state
->name
= alloc_sname(buf
);
52 state
->data
= alloc_bit_info(set
, possible
);
57 struct bit_info
*rl_to_binfo(struct range_list
*rl
)
59 struct bit_info
*ret
= __alloc_bit_info(0);
62 if (rl_to_sval(rl
, &sval
)) {
63 ret
->set
= sval
.uvalue
;
64 ret
->possible
= sval
.uvalue
;
70 ret
->possible
= sval_fls_mask(rl_max(rl
));
71 // FIXME: what about negatives?
76 static int is_unknown_binfo(struct symbol
*type
, struct bit_info
*binfo
)
83 if (binfo
->possible
< (-1ULL >> (64 - type_bits(type
))))
89 static struct smatch_state
*unmatched_state(struct sm_state
*sm
)
91 struct smatch_state
*estate
;
93 unsigned long long possible
;
96 estate
= get_state(SMATCH_EXTRA
, sm
->name
, sm
->sym
);
97 if (estate_rl(estate
)) {
98 p
= rl_to_binfo(estate_rl(estate
));
99 return alloc_bstate(p
->set
, p
->possible
);
102 type
= estate_type(estate
);
104 return alloc_bstate(0, -1ULL);
106 if (type_bits(type
) == 64)
109 possible
= (1ULL << type_bits(type
)) - 1;
111 return alloc_bstate(0, possible
);
114 static void match_modify(struct sm_state
*sm
, struct expression
*mod_expr
)
116 // FIXME: we really need to store the type
118 set_state(my_id
, sm
->name
, sm
->sym
, alloc_bstate(0, -1ULL));
121 static int binfo_equiv(struct bit_info
*one
, struct bit_info
*two
)
123 if (one
->set
== two
->set
&&
124 one
->possible
== two
->possible
)
129 static struct smatch_state
*merge_bstates(struct smatch_state
*one_state
, struct smatch_state
*two_state
)
131 struct bit_info
*one
, *two
;
133 one
= one_state
->data
;
134 two
= two_state
->data
;
136 if (binfo_equiv(one
, two
))
139 return alloc_bstate(one
->set
& two
->set
, one
->possible
| two
->possible
);
143 * The combine_bit_info() takes two bit_infos and takes creates the most
144 * accurate picture we can assuming both are true. Or it returns unknown if
145 * the information is logically impossible.
147 * Which means that it takes the | of the ->set bits and the & of the possibly
148 * set bits, which is the opposite of what merge_bstates() does.
151 static struct bit_info
*combine_bit_info(struct bit_info
*one
, struct bit_info
*two
)
153 struct bit_info
*ret
= __alloc_bit_info(0);
155 if ((one
->set
& two
->possible
) != one
->set
)
156 return alloc_bit_info(0, -1ULL);
157 if ((two
->set
& one
->possible
) != two
->set
)
158 return alloc_bit_info(0, -1ULL);
160 ret
->set
= one
->set
| two
->set
;
161 ret
->possible
= one
->possible
& two
->possible
;
166 static struct bit_info
*binfo_AND(struct bit_info
*left
, struct bit_info
*right
)
168 unsigned long long set
= 0;
169 unsigned long long possible
= -1ULL;
171 if (!left
&& !right
) {
174 possible
= right
->possible
;
176 possible
= left
->possible
;
178 set
= left
->set
& right
->set
;
179 possible
= left
->possible
& right
->possible
;
182 return alloc_bit_info(set
, possible
);
185 static struct bit_info
*binfo_OR(struct bit_info
*left
, struct bit_info
*right
)
187 unsigned long long set
= 0;
188 unsigned long long possible
= -1ULL;
190 if (!left
&& !right
) {
197 set
= left
->set
| right
->set
;
198 possible
= left
->possible
| right
->possible
;
201 return alloc_bit_info(set
, possible
);
204 struct bit_info
*get_bit_info(struct expression
*expr
)
206 struct range_list
*rl
;
207 struct smatch_state
*bstate
;
209 struct bit_info
*extra_info
;
210 struct bit_info
*bit_info
;
213 expr
= strip_parens(expr
);
215 if (get_implied_value(expr
, &known
))
216 return alloc_bit_info(known
.value
, known
.value
);
218 if (expr
->type
== EXPR_BINOP
) {
220 return binfo_AND(get_bit_info(expr
->left
),
221 get_bit_info(expr
->right
));
223 return binfo_OR(get_bit_info(expr
->left
),
224 get_bit_info(expr
->right
));
227 if (get_implied_rl(expr
, &rl
))
228 extra_info
= rl_to_binfo(rl
);
232 tmp
= unknown_bit_info
;
235 type
= get_type(expr
);
237 type
= &ullong_ctype
;
238 if (type_bits(type
) == 64)
239 extra_info
->possible
= -1ULL;
241 extra_info
->possible
= (1ULL << type_bits(type
)) - 1;
244 bstate
= get_state_expr(my_id
, expr
);
246 bit_info
= bstate
->data
;
248 bit_info
= (struct bit_info
*)&unknown_bit_info
;
250 return combine_bit_info(extra_info
, bit_info
);
253 static int is_single_bit(sval_t sval
)
258 for (i
= 0; i
< 64; i
++) {
259 if (sval
.uvalue
& 1ULL << i
&&
268 static void match_compare(struct expression
*expr
)
272 if (expr
->type
!= EXPR_COMPARE
)
274 if (expr
->op
!= SPECIAL_EQUAL
&&
275 expr
->op
!= SPECIAL_NOTEQUAL
)
278 if (!get_implied_value(expr
->right
, &val
))
281 set_true_false_states_expr(my_id
, expr
->left
,
282 (expr
->op
== SPECIAL_EQUAL
) ? alloc_bstate(val
.uvalue
, val
.uvalue
) : NULL
,
283 (expr
->op
== SPECIAL_EQUAL
) ? NULL
: alloc_bstate(val
.uvalue
, val
.uvalue
));
286 static bool is_loop_iterator(struct expression
*expr
)
288 struct statement
*pre_stmt
, *loop_stmt
;
290 pre_stmt
= expr_get_parent_stmt(expr
);
291 if (!pre_stmt
|| pre_stmt
->type
!= STMT_EXPRESSION
)
294 loop_stmt
= stmt_get_parent_stmt(pre_stmt
);
295 if (!loop_stmt
|| loop_stmt
->type
!= STMT_ITERATOR
)
297 if (loop_stmt
->iterator_pre_statement
!= pre_stmt
)
303 static void match_assign(struct expression
*expr
)
305 struct bit_info
*binfo
;
309 if (__in_fake_assign
)
311 if (is_loop_iterator(expr
))
314 binfo
= get_bit_info(expr
->right
);
317 if (is_unknown_binfo(get_type(expr
->left
), binfo
))
319 set_state_expr(my_id
, expr
->left
, alloc_bstate(binfo
->set
, binfo
->possible
));
322 static void match_condition(struct expression
*expr
)
324 struct bit_info
*orig
;
325 struct bit_info true_info
;
326 struct bit_info false_info
;
329 if (expr
->type
!= EXPR_BINOP
||
333 if (!get_value(expr
->right
, &right
))
336 orig
= get_bit_info(expr
->left
);
340 if (right
.uvalue
== 0 || is_single_bit(right
))
341 true_info
.set
&= right
.uvalue
;
343 true_info
.possible
&= right
.uvalue
;
344 false_info
.possible
&= ~right
.uvalue
;
346 set_true_false_states_expr(my_id
, expr
->left
,
347 alloc_bstate(true_info
.set
, true_info
.possible
),
348 alloc_bstate(false_info
.set
, false_info
.possible
));
351 static void match_call_info(struct expression
*expr
)
353 struct bit_info
*binfo
, *rl_binfo
;
354 struct expression
*arg
;
355 struct range_list
*rl
;
360 FOR_EACH_PTR(expr
->args
, arg
) {
362 binfo
= get_bit_info(arg
);
365 if (is_unknown_binfo(get_type(arg
), binfo
))
367 if (get_implied_rl(arg
, &rl
)) {
368 rl_binfo
= rl_to_binfo(rl
);
369 if (binfo_equiv(rl_binfo
, binfo
))
372 // If is just non-negative continue
373 // If ->set == ->possible continue
374 snprintf(buf
, sizeof(buf
), "0x%llx,0x%llx", binfo
->set
, binfo
->possible
);
375 sql_insert_caller_info(expr
, BIT_INFO
, i
, "$", buf
);
376 } END_FOR_EACH_PTR(arg
);
379 static void struct_member_callback(struct expression
*call
, int param
, char *printed_name
, struct sm_state
*sm
)
381 struct bit_info
*binfo
= sm
->state
->data
;
382 struct smatch_state
*estate
;
383 struct bit_info
*implied_binfo
;
389 /* This means it can only be one value, so it's handled by smatch_extra. */
390 if (binfo
->set
== binfo
->possible
)
393 estate
= get_state(SMATCH_EXTRA
, sm
->name
, sm
->sym
);
394 if (is_unknown_binfo(estate_type(estate
), binfo
))
397 if (estate_rl(estate
)) {
400 if (estate_get_single_value(estate
, &sval
))
403 implied_binfo
= rl_to_binfo(estate_rl(estate
));
404 if (binfo_equiv(implied_binfo
, binfo
))
408 snprintf(buf
, sizeof(buf
), "0x%llx,0x%llx", binfo
->set
, binfo
->possible
);
409 sql_insert_caller_info(call
, BIT_INFO
, param
, printed_name
, buf
);
412 static void set_param_bits(const char *name
, struct symbol
*sym
, char *key
, char *value
)
415 unsigned long long set
, possible
;
417 if (strcmp(key
, "*$") == 0)
418 snprintf(fullname
, sizeof(fullname
), "*%s", name
);
419 else if (strncmp(key
, "$", 1) == 0)
420 snprintf(fullname
, 256, "%s%s", name
, key
+ 1);
424 set
= strtoull(value
, &value
, 16);
428 possible
= strtoull(value
, &value
, 16);
430 set_state(my_id
, fullname
, sym
, alloc_bstate(set
, possible
));
433 void register_bits(int id
)
437 set_dynamic_states(my_id
);
439 add_unmatched_state_hook(my_id
, &unmatched_state
);
440 add_merge_hook(my_id
, &merge_bstates
);
442 add_hook(&match_condition
, CONDITION_HOOK
);
443 add_hook(&match_compare
, CONDITION_HOOK
);
444 add_hook(&match_assign
, ASSIGNMENT_HOOK
);
445 add_modification_hook(my_id
, &match_modify
);
447 add_hook(&match_call_info
, FUNCTION_CALL_HOOK
);
448 add_member_info_callback(my_id
, struct_member_callback
);
449 select_caller_info_hook(set_param_bits
, BIT_INFO
);