2 * Copyright (C) 2009 Dan Carpenter.
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 * The idea behind this test is that if we have:
25 * Passing "bar" to foo() really means passing "bar" to baz();
27 * In this case it would print:
28 * info: param_mapper 0 => bar 1
38 static struct symbol
*func_sym
;
40 static void delete(struct sm_state
*sm
, struct expression
*mod_expr
)
42 set_state(my_id
, sm
->name
, sm
->sym
, &undefined
);
45 static void match_function_def(struct symbol
*sym
)
50 FOR_EACH_PTR(func_sym
->ctype
.base_type
->arguments
, arg
) {
54 set_state(my_id
, arg
->ident
->name
, arg
, &argument
);
55 } END_FOR_EACH_PTR(arg
);
58 static int get_arg_num(struct expression
*expr
)
60 struct smatch_state
*state
;
62 struct symbol
*this_arg
;
65 expr
= strip_expr(expr
);
66 if (expr
->type
!= EXPR_SYMBOL
)
68 this_arg
= expr
->symbol
;
70 state
= get_state_expr(my_id
, expr
);
71 if (!state
|| state
!= &argument
)
75 FOR_EACH_PTR(func_sym
->ctype
.base_type
->arguments
, arg
) {
79 } END_FOR_EACH_PTR(arg
);
84 static void match_call(struct expression
*expr
)
86 struct expression
*tmp
;
91 if (expr
->fn
->type
!= EXPR_SYMBOL
)
94 func
= expr
->fn
->symbol_name
->name
;
97 FOR_EACH_PTR(expr
->args
, tmp
) {
98 tmp
= strip_expr(tmp
);
99 arg_num
= get_arg_num(tmp
);
101 sm_msg("info: param_mapper %d => %s %d", arg_num
, func
, i
);
103 } END_FOR_EACH_PTR(tmp
);
106 void check_param_mapper(int id
)
108 if (!option_param_mapper
)
111 add_modification_hook(my_id
, &delete);
112 add_hook(&match_function_def
, FUNC_DEF_HOOK
);
113 add_hook(&match_call
, FUNCTION_CALL_HOOK
);