2 * Copyright (C) 2006 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
27 struct hook_container
{
29 enum data_type data_type
;
32 ALLOCATOR(hook_container
, "hook functions");
33 DECLARE_PTR_LIST(hook_func_list
, struct hook_container
);
34 static struct hook_func_list
*hook_funcs
;
35 static struct hook_func_list
*merge_funcs
;
36 static struct hook_func_list
*unmatched_state_funcs
;
37 void (**pre_merge_hooks
)(struct sm_state
*sm
);
39 struct scope_container
{
43 ALLOCATOR(scope_container
, "scope hook functions");
44 DECLARE_PTR_LIST(scope_hook_list
, struct scope_container
);
45 DECLARE_PTR_LIST(scope_hook_stack
, struct scope_hook_list
);
46 static struct scope_hook_stack
*scope_hooks
;
48 void add_hook(void *func
, enum hook_type type
)
50 struct hook_container
*container
= __alloc_hook_container(0);
51 container
->hook_type
= type
;
55 container
->data_type
= EXPR_PTR
;
58 container
->data_type
= STMT_PTR
;
61 container
->data_type
= STMT_PTR
;
64 container
->data_type
= EXPR_PTR
;
67 container
->data_type
= EXPR_PTR
;
69 case DECLARATION_HOOK
:
70 container
->data_type
= SYMBOL_PTR
;
73 container
->data_type
= EXPR_PTR
;
75 case RAW_ASSIGNMENT_HOOK
:
76 container
->data_type
= EXPR_PTR
;
78 case GLOBAL_ASSIGNMENT_HOOK
:
79 container
->data_type
= EXPR_PTR
;
81 case CALL_ASSIGNMENT_HOOK
:
82 container
->data_type
= EXPR_PTR
;
84 case MACRO_ASSIGNMENT_HOOK
:
85 container
->data_type
= EXPR_PTR
;
88 container
->data_type
= EXPR_PTR
;
91 container
->data_type
= EXPR_PTR
;
94 container
->data_type
= EXPR_PTR
;
97 container
->data_type
= STMT_PTR
;
100 container
->data_type
= EXPR_PTR
;
103 container
->data_type
= EXPR_PTR
;
105 case WHOLE_CONDITION_HOOK
:
106 container
->data_type
= EXPR_PTR
;
108 case FUNCTION_CALL_HOOK
:
109 container
->data_type
= EXPR_PTR
;
111 case CALL_HOOK_AFTER_INLINE
:
112 container
->data_type
= EXPR_PTR
;
114 case FUNCTION_CALL_HOOK_AFTER
:
115 container
->data_type
= EXPR_PTR
;
118 container
->data_type
= EXPR_PTR
;
124 container
->data_type
= STMT_PTR
;
127 container
->data_type
= EXPR_PTR
;
130 container
->data_type
= EXPR_PTR
;
133 container
->data_type
= SYMBOL_PTR
;
136 container
->data_type
= SYMBOL_PTR
;
139 container
->data_type
= SYMBOL_PTR
;
142 container
->data_type
= SYMBOL_PTR
;
144 case AFTER_FUNC_HOOK
:
145 container
->data_type
= SYMBOL_PTR
;
148 container
->data_type
= EXPR_PTR
;
150 case INLINE_FN_START
:
151 container
->data_type
= EXPR_PTR
;
154 container
->data_type
= EXPR_PTR
;
157 container
->data_type
= SYM_LIST_PTR
;
160 add_ptr_list(&hook_funcs
, container
);
163 void add_merge_hook(int client_id
, merge_func_t
*func
)
165 struct hook_container
*container
= __alloc_hook_container(0);
166 container
->data_type
= client_id
;
167 container
->fn
= func
;
168 add_ptr_list(&merge_funcs
, container
);
171 void add_unmatched_state_hook(int client_id
, unmatched_func_t
*func
)
173 struct hook_container
*container
= __alloc_hook_container(0);
174 container
->data_type
= client_id
;
175 container
->fn
= func
;
176 add_ptr_list(&unmatched_state_funcs
, container
);
179 void add_pre_merge_hook(int client_id
, void (*hook
)(struct sm_state
*sm
))
181 pre_merge_hooks
[client_id
] = hook
;
184 static void pass_to_client(void *fn
)
186 typedef void (expr_func
)();
187 ((expr_func
*) fn
)();
190 static void pass_expr_to_client(void *fn
, void *data
)
192 typedef void (expr_func
)(struct expression
*expr
);
193 ((expr_func
*) fn
)((struct expression
*) data
);
196 static void pass_stmt_to_client(void *fn
, void *data
)
198 typedef void (stmt_func
)(struct statement
*stmt
);
199 ((stmt_func
*) fn
)((struct statement
*) data
);
202 static void pass_sym_to_client(void *fn
, void *data
)
204 typedef void (sym_func
)(struct symbol
*sym
);
205 ((sym_func
*) fn
)((struct symbol
*) data
);
208 static void pass_sym_list_to_client(void *fn
, void *data
)
210 typedef void (sym_func
)(struct symbol_list
*sym_list
);
211 ((sym_func
*) fn
)((struct symbol_list
*) data
);
214 void __pass_to_client(void *data
, enum hook_type type
)
216 struct hook_container
*container
;
218 FOR_EACH_PTR(hook_funcs
, container
) {
219 if (container
->hook_type
== type
) {
220 switch (container
->data_type
) {
222 pass_expr_to_client(container
->fn
, data
);
225 pass_stmt_to_client(container
->fn
, data
);
228 pass_sym_to_client(container
->fn
, data
);
231 pass_sym_list_to_client(container
->fn
, data
);
235 } END_FOR_EACH_PTR(container
);
238 void __pass_to_client_no_data(enum hook_type type
)
240 struct hook_container
*container
;
242 FOR_EACH_PTR(hook_funcs
, container
) {
243 if (container
->hook_type
== type
)
244 pass_to_client(container
->fn
);
245 } END_FOR_EACH_PTR(container
);
248 void __pass_case_to_client(struct expression
*switch_expr
,
249 struct expression
*case_expr
)
251 typedef void (case_func
)(struct expression
*switch_expr
,
252 struct expression
*case_expr
);
253 struct hook_container
*container
;
255 FOR_EACH_PTR(hook_funcs
, container
) {
256 if (container
->hook_type
== CASE_HOOK
)
257 ((case_func
*) container
->fn
)(switch_expr
, case_expr
);
258 } END_FOR_EACH_PTR(container
);
261 int __has_merge_function(int client_id
)
263 struct hook_container
*tmp
;
265 FOR_EACH_PTR(merge_funcs
, tmp
) {
266 if (tmp
->data_type
== client_id
)
268 } END_FOR_EACH_PTR(tmp
);
272 struct smatch_state
*__client_merge_function(int owner
,
273 struct smatch_state
*s1
,
274 struct smatch_state
*s2
)
276 struct smatch_state
*tmp_state
;
277 struct hook_container
*tmp
;
279 /* Pass NULL states first and the rest alphabetically by name */
280 if (!s2
|| (s1
&& strcmp(s2
->name
, s1
->name
) < 0)) {
286 FOR_EACH_PTR(merge_funcs
, tmp
) {
287 if (tmp
->data_type
== owner
)
288 return ((merge_func_t
*) tmp
->fn
)(s1
, s2
);
289 } END_FOR_EACH_PTR(tmp
);
293 struct smatch_state
*__client_unmatched_state_function(struct sm_state
*sm
)
295 struct hook_container
*tmp
;
297 FOR_EACH_PTR(unmatched_state_funcs
, tmp
) {
298 if (tmp
->data_type
== sm
->owner
)
299 return ((unmatched_func_t
*) tmp
->fn
)(sm
);
300 } END_FOR_EACH_PTR(tmp
);
304 void call_pre_merge_hook(struct sm_state
*sm
)
306 if (sm
->owner
>= num_checks
)
309 if (pre_merge_hooks
[sm
->owner
])
310 pre_merge_hooks
[sm
->owner
](sm
);
313 static struct scope_hook_list
*pop_scope_hook_list(struct scope_hook_stack
**stack
)
315 struct scope_hook_list
*hook_list
;
317 hook_list
= last_ptr_list((struct ptr_list
*)*stack
);
318 delete_ptr_list_last((struct ptr_list
**)stack
);
322 static void push_scope_hook_list(struct scope_hook_stack
**stack
, struct scope_hook_list
*l
)
324 add_ptr_list(stack
, l
);
327 void add_scope_hook(scope_hook
*fn
, void *data
)
329 struct scope_hook_list
*hook_list
;
330 struct scope_container
*new;
334 hook_list
= pop_scope_hook_list(&scope_hooks
);
335 new = __alloc_scope_container(0);
338 add_ptr_list(&hook_list
, new);
339 push_scope_hook_list(&scope_hooks
, hook_list
);
342 void __push_scope_hooks(void)
344 push_scope_hook_list(&scope_hooks
, NULL
);
347 void __call_scope_hooks(void)
349 struct scope_hook_list
*hook_list
;
350 struct scope_container
*tmp
;
355 hook_list
= pop_scope_hook_list(&scope_hooks
);
356 FOR_EACH_PTR(hook_list
, tmp
) {
357 ((scope_hook
*) tmp
->fn
)(tmp
->data
);
358 __free_scope_container(tmp
);
359 } END_FOR_EACH_PTR(tmp
);
362 void allocate_hook_memory(void)
364 pre_merge_hooks
= malloc(num_checks
* sizeof(*pre_merge_hooks
));
365 memset(pre_merge_hooks
, 0, num_checks
* sizeof(*pre_merge_hooks
));