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
)
51 if (get_param_num_from_sym(sym
) < 0)
53 set_state(my_id
, name
, sym
, state
);
57 * This function is is a dirty hack because extra_mod_hook is giving us a NULL
58 * sym instead of a vsl.
60 static void match_array_assignment(struct expression
*expr
)
62 struct expression
*array
, *offset
;
65 struct range_list
*rl
;
72 if (!is_array(expr
->left
))
74 array
= get_array_base(expr
->left
);
75 offset
= get_array_offset(expr
->left
);
77 /* These are handled by extra_mod_hook() */
78 if (get_value(offset
, &sval
))
80 name
= expr_to_var_sym(array
, &sym
);
83 if (get_param_num_from_sym(sym
) < 0)
85 get_absolute_rl(expr
->right
, &rl
);
86 rl
= cast_rl(get_type(expr
->left
), rl
);
88 snprintf(buf
, sizeof(buf
), "*%s", name
);
89 set_state(my_id
, buf
, sym
, alloc_estate_rl(rl
));
95 * This relies on the fact that these states are stored so that
96 * foo->bar is before foo->bar->baz.
98 static int parent_set(struct string_list
*list
, const char *name
)
104 FOR_EACH_PTR(list
, tmp
) {
106 ret
= strncmp(tmp
, name
, len
);
111 if (name
[len
] == '-')
113 } END_FOR_EACH_PTR(tmp
);
118 static void print_return_value_param(int return_id
, char *return_ranges
, struct expression
*expr
)
121 struct smatch_state
*extra
;
123 struct range_list
*rl
;
124 const char *param_name
;
125 struct string_list
*set_list
= NULL
;
130 FOR_EACH_MY_SM(my_id
, __get_cur_stree(), sm
) {
131 if (!estate_rl(sm
->state
))
133 extra
= get_state(SMATCH_EXTRA
, sm
->name
, sm
->sym
);
135 rl
= rl_intersection(estate_rl(sm
->state
), estate_rl(extra
));
139 rl
= estate_rl(sm
->state
);
142 param
= get_param_num_from_sym(sm
->sym
);
145 param_name
= get_param_name(sm
);
148 if (strcmp(param_name
, "$") == 0)
151 if (rl_to_sval(rl
, &sval
)) {
152 insert_string(&set_list
, (char *)sm
->name
);
153 sql_insert_return_states(return_id
, return_ranges
,
154 param_has_filter_data(sm
) ? PARAM_ADD
: PARAM_SET
,
155 param
, param_name
, show_rl(rl
));
159 math_str
= get_value_in_terms_of_parameter_math_var_sym(sm
->name
, sm
->sym
);
161 snprintf(buf
, sizeof(buf
), "%s[%s]", show_rl(rl
), math_str
);
162 insert_string(&set_list
, (char *)sm
->name
);
163 sql_insert_return_states(return_id
, return_ranges
,
164 param_has_filter_data(sm
) ? PARAM_ADD
: PARAM_SET
,
165 param
, param_name
, buf
);
169 /* no useful information here. */
170 if (is_whole_rl(rl
) && parent_set(set_list
, sm
->name
))
172 insert_string(&set_list
, (char *)sm
->name
);
174 sql_insert_return_states(return_id
, return_ranges
,
175 param_has_filter_data(sm
) ? PARAM_ADD
: PARAM_SET
,
176 param
, param_name
, show_rl(rl
));
178 } END_FOR_EACH_SM(sm
);
180 free_ptr_list((struct ptr_list
**)&set_list
);
183 int param_was_set(struct expression
*expr
)
185 if (get_state_expr(my_id
, expr
))
190 int param_was_set_var_sym(const char *name
, struct symbol
*sym
)
192 if (get_state(my_id
, name
, sym
))
197 void register_param_set(int id
)
201 add_extra_mod_hook(&extra_mod_hook
);
202 add_hook(match_array_assignment
, ASSIGNMENT_HOOK
);
203 add_unmatched_state_hook(my_id
, &unmatched_state
);
204 add_merge_hook(my_id
, &merge_estates
);
205 add_split_return_callback(&print_return_value_param
);