2 * Copyright (C) 2012 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 for functions like:
30 * If we return 1 that means the value of *x has been set to 0. If we return
31 * 0 then we have left *x alone.
37 #include "smatch_slist.h"
38 #include "smatch_extra.h"
42 static struct smatch_state
*unmatched_state(struct sm_state
*sm
)
44 return alloc_estate_empty();
47 static void extra_mod_hook(const char *name
, struct symbol
*sym
, struct smatch_state
*state
)
49 if (get_param_num_from_sym(sym
) < 0)
51 set_state(my_id
, name
, sym
, state
);
55 * This function is is a dirty hack because extra_mod_hook is giving us a NULL
56 * sym instead of a vsl.
58 static void match_array_assignment(struct expression
*expr
)
60 struct expression
*array
, *offset
;
63 struct range_list
*rl
;
70 if (!is_array(expr
->left
))
72 array
= get_array_base(expr
->left
);
73 offset
= get_array_offset(expr
->left
);
75 /* These are handled by extra_mod_hook() */
76 if (get_value(offset
, &sval
))
78 name
= expr_to_var_sym(array
, &sym
);
81 if (get_param_num_from_sym(sym
) < 0)
83 get_absolute_rl(expr
->right
, &rl
);
84 rl
= cast_rl(get_type(expr
->left
), rl
);
86 snprintf(buf
, sizeof(buf
), "*%s", name
);
87 set_state(my_id
, buf
, sym
, alloc_estate_rl(rl
));
93 * This relies on the fact that these states are stored so that
94 * foo->bar is before foo->bar->baz.
96 static int parent_set(struct string_list
*list
, const char *name
)
102 FOR_EACH_PTR(list
, tmp
) {
104 ret
= strncmp(tmp
, name
, len
);
109 if (name
[len
] == '-')
111 } END_FOR_EACH_PTR(tmp
);
116 static void print_return_value_param(int return_id
, char *return_ranges
, struct expression
*expr
)
119 struct smatch_state
*extra
;
121 struct range_list
*rl
;
122 const char *param_name
;
123 struct string_list
*set_list
= NULL
;
128 FOR_EACH_MY_SM(my_id
, __get_cur_stree(), sm
) {
129 if (!estate_rl(sm
->state
))
131 extra
= get_state(SMATCH_EXTRA
, sm
->name
, sm
->sym
);
133 rl
= rl_intersection(estate_rl(sm
->state
), estate_rl(extra
));
137 rl
= estate_rl(sm
->state
);
140 param
= get_param_num_from_sym(sm
->sym
);
143 param_name
= get_param_name(sm
);
146 if (strcmp(param_name
, "$") == 0)
149 if (rl_to_sval(rl
, &sval
)) {
150 insert_string(&set_list
, (char *)sm
->name
);
151 sql_insert_return_states(return_id
, return_ranges
,
152 param_has_filter_data(sm
) ? PARAM_ADD
: PARAM_SET
,
153 param
, param_name
, show_rl(rl
));
157 math_str
= get_value_in_terms_of_parameter_math_var_sym(sm
->name
, sm
->sym
);
159 snprintf(buf
, sizeof(buf
), "%s[%s]", show_rl(rl
), math_str
);
160 insert_string(&set_list
, (char *)sm
->name
);
161 sql_insert_return_states(return_id
, return_ranges
,
162 param_has_filter_data(sm
) ? PARAM_ADD
: PARAM_SET
,
163 param
, param_name
, buf
);
167 /* no useful information here. */
168 if (is_whole_rl(rl
) && parent_set(set_list
, sm
->name
))
170 insert_string(&set_list
, (char *)sm
->name
);
172 sql_insert_return_states(return_id
, return_ranges
,
173 param_has_filter_data(sm
) ? PARAM_ADD
: PARAM_SET
,
174 param
, param_name
, show_rl(rl
));
176 } END_FOR_EACH_SM(sm
);
178 free_ptr_list((struct ptr_list
**)&set_list
);
181 int param_was_set_var_sym(const char *name
, struct symbol
*sym
)
186 FOR_EACH_MY_SM(my_id
, __get_cur_stree(), sm
) {
189 len
= strlen(sm
->name
);
190 if (strncmp(sm
->name
, name
, len
) != 0)
192 if (name
[len
] == '\0' ||
195 } END_FOR_EACH_SM(sm
);
200 int param_was_set(struct expression
*expr
)
206 name
= expr_to_var_sym(expr
, &sym
);
210 ret
= param_was_set_var_sym(name
, sym
);
216 void register_param_set(int id
)
220 add_extra_mod_hook(&extra_mod_hook
);
221 add_hook(match_array_assignment
, ASSIGNMENT_HOOK
);
222 add_unmatched_state_hook(my_id
, &unmatched_state
);
223 add_merge_hook(my_id
, &merge_estates
);
224 add_split_return_callback(&print_return_value_param
);