2 * sparse/smatch_conditions.c
4 * Copyright (C) 2006,2008 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
11 * The simplest type of condition is
14 * The next simplest kind of conditions is
16 * In that case 'a' is true when we get to 'b' and both are true
19 * Or's are a little more complicated.
21 * We know 'a' is not true when we get to 'b' but it may be true
24 * If we mix and's and or's that's even more complicated.
25 * if (a && b && c || a && d) { d ;
26 * 'a' is true when we get to 'b', 'c' and 'd'.
27 * 'b' is true when we reach 'c' but otherwise we don't know.
29 * The other thing that complicates matters is if we negate
32 * We pass the un-negated version to the client and flip the true
33 * and false values internally.
35 * And negations can be part of a compound.
36 * if (a && !(b || c)) { d;
37 * In that situation we multiply the negative through to simplify
38 * stuff so that we can remove the parens like this:
39 * if (a && !b && !c) { d;
41 * One other thing is that:
43 * that's basically the same as testing for just 'a' so we simplify
44 * it before passing it to the script.
51 static void split_conditions(struct expression
*expr
);
53 static int is_logical_and(struct expression
*expr
)
55 if (expr
->op
== SPECIAL_LOGICAL_AND
)
60 static int handle_zero_comparisons(struct expression
*expr
)
62 struct expression
*tmp
= NULL
;
64 // if left is zero or right is zero
65 if (is_zero(expr
->left
))
67 else if (is_zero(expr
->right
))
72 // "if (foo != 0)" is the same as "if (foo)"
73 if (expr
->op
== SPECIAL_NOTEQUAL
) {
74 split_conditions(tmp
);
78 // "if (foo == 0)" is the same as "if (!foo)"
79 if (expr
->op
== SPECIAL_EQUAL
) {
80 split_conditions(tmp
);
81 __negate_cond_stacks();
89 * This function is for handling calls to likely/unlikely
92 static int ignore_builtin_expect(struct expression
*expr
)
94 if (sym_name_is("__builtin_expect", expr
->fn
)) {
95 split_conditions(first_ptr_list((struct ptr_list
*) expr
->args
));
98 if (sym_name_is("__builtin_constant_p", expr
->fn
)) {
99 split_conditions(first_ptr_list((struct ptr_list
*) expr
->args
));
105 static void handle_compound_stmt(struct statement
*stmt
)
107 struct expression
*expr
= NULL
;
108 struct statement
*last
;
111 last
= last_ptr_list((struct ptr_list
*)stmt
->stmts
);
112 if (last
->type
!= STMT_EXPRESSION
) {
115 expr
= last
->expression
;
117 FOR_EACH_PTR(stmt
->stmts
, s
) {
119 __split_statements(s
);
120 } END_FOR_EACH_PTR(s
);
121 split_conditions(expr
);
125 static int handle_preop(struct expression
*expr
)
127 struct statement
*stmt
;
129 if (expr
->op
== '!') {
130 split_conditions(expr
->unop
);
131 __negate_cond_stacks();
134 stmt
= get_block_thing(expr
);
136 handle_compound_stmt(stmt
);
142 static void handle_logical(struct expression
*expr
)
145 * If we come to an "and" expr then:
146 * We split the left side.
147 * We keep all the current states.
148 * We split the right side.
149 * We keep all the states from both true sides.
151 * If it's an "or" expr then:
152 * We save the current slist.
153 * We split the left side.
154 * We use the false states for the right side.
155 * We split the right side.
156 * We save all the states that are the same on both sides.
159 split_conditions(expr
->left
);
161 if (!is_logical_and(expr
))
162 __use_cond_false_states();
164 __save_pre_cond_states();
165 __push_cond_stacks();
167 split_conditions(expr
->right
);
169 if (is_logical_and(expr
)) {
175 __pop_pre_cond_states();
176 __use_cond_true_states();
179 static int handle_rostedt_if(struct expression
*expr
)
181 if (expr
->type
!= EXPR_CALL
)
183 if (!sym_name_is("__builtin_constant_p", expr
->fn
))
185 split_conditions(expr
);
189 static void handle_select(struct expression
*expr
)
192 * if ((aaa()?bbb():ccc())) { ...
194 * This is almost the same as:
195 * if ((aaa() && bbb()) || (!aaa() && ccc())) { ...
197 * It's a bit complicated because we shouldn't pass aaa()
198 * to the clients more than once.
201 if (handle_rostedt_if(expr
->conditional
))
204 split_conditions(expr
->conditional
);
206 __save_false_states_for_later();
208 if (known_condition_true(expr
->cond_true
)) {
209 __split_expr(expr
->cond_true
);
211 __push_cond_stacks();
212 split_conditions(expr
->cond_true
);
216 if (known_condition_false(expr
->cond_false
)) {
217 __split_expr(expr
->cond_false
);
218 __pop_pre_cond_states();
222 __use_previously_stored_false_states();
224 __save_pre_cond_states();
225 __push_cond_stacks();
226 split_conditions(expr
->cond_false
);
228 __pop_pre_cond_states();
230 __use_cond_true_states();
233 static void split_conditions(struct expression
*expr
)
236 SM_DEBUG("%d in split_conditions type=%d\n", get_lineno(), expr
->type
);
238 expr
= strip_expr(expr
);
244 handle_logical(expr
);
247 if (handle_zero_comparisons(expr
))
251 if (ignore_builtin_expect(expr
))
255 if (handle_preop(expr
))
258 case EXPR_CONDITIONAL
:
265 __pass_to_client(expr
, CONDITION_HOOK
);
268 static int inside_condition
;
269 void __split_whole_condition(struct expression
*expr
)
271 SM_DEBUG("%d in __split_whole_condition\n", get_lineno());
273 __save_pre_cond_states();
274 __push_cond_stacks();
276 split_conditions(expr
);
278 __pass_to_client(expr
, WHOLE_CONDITION_HOOK
);
284 return inside_condition
;