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 #include "smatch_slist.h"
23 static struct stree
*used_stree
;
24 static struct stree_stack
*saved_stack
;
28 static void get_state_hook(int owner
, const char *name
, struct symbol
*sym
)
35 if (__in_fake_assign
|| __in_fake_parameter_assign
|| __in_function_def
|| __in_unmatched_hook
)
38 arg
= get_param_num_from_sym(sym
);
41 if (param_was_set_var_sym(name
, sym
))
43 set_state_stree(&used_stree
, my_id
, name
, sym
, &used
);
46 static void set_param_used(struct expression
*call
, struct expression
*arg
, char *key
, char *unused
)
55 name
= get_variable_from_key(arg
, key
, &sym
);
59 arg_nr
= get_param_num_from_sym(sym
);
62 if (param_was_set_var_sym(name
, sym
))
64 set_state_stree(&used_stree
, my_id
, name
, sym
, &used
);
69 static void process_states(void)
75 FOR_EACH_SM(used_stree
, tmp
) {
76 arg
= get_param_num_from_sym(tmp
->sym
);
79 name
= get_param_name(tmp
);
82 if (is_recursive_member(name
))
85 if (is_ignored_kernel_data(name
))
88 sql_insert_return_implies(PARAM_USED
, arg
, name
, "");
89 } END_FOR_EACH_SM(tmp
);
91 free_stree(&used_stree
);
94 static void match_function_def(struct symbol
*sym
)
96 free_stree(&used_stree
);
99 static void match_save_states(struct expression
*expr
)
101 push_stree(&saved_stack
, used_stree
);
105 static void match_restore_states(struct expression
*expr
)
107 free_stree(&used_stree
);
108 used_stree
= pop_stree(&saved_stack
);
111 void register_param_used(int id
)
115 add_hook(&match_function_def
, FUNC_DEF_HOOK
);
117 add_get_state_hook(&get_state_hook
);
119 add_hook(&match_save_states
, INLINE_FN_START
);
120 add_hook(&match_restore_states
, INLINE_FN_END
);
122 select_return_implies_hook(PARAM_USED
, &set_param_used
);
123 all_return_states_hook(&process_states
);