2 * sparse/smatch_hooks.c
4 * Copyright (C) 2006 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
18 struct hook_container
{
20 enum data_type data_type
;
23 ALLOCATOR(hook_container
, "hook functions");
24 DECLARE_PTR_LIST(hook_func_list
, struct hook_container
);
25 static struct hook_func_list
*hook_funcs
;
26 static struct hook_func_list
*merge_funcs
;
27 static struct hook_func_list
*unmatched_state_funcs
;
29 struct scope_container
{
33 ALLOCATOR(scope_container
, "scope hook functions");
34 DECLARE_PTR_LIST(scope_hook_list
, struct scope_container
);
35 DECLARE_PTR_LIST(scope_hook_stack
, struct scope_hook_list
);
36 static struct scope_hook_stack
*scope_hooks
;
38 void add_hook(void *func
, enum hook_type type
)
40 struct hook_container
*container
= __alloc_hook_container(0);
41 container
->hook_type
= type
;
45 container
->data_type
= EXPR_PTR
;
48 container
->data_type
= STMT_PTR
;
51 container
->data_type
= EXPR_PTR
;
54 container
->data_type
= EXPR_PTR
;
56 case DECLARATION_HOOK
:
57 container
->data_type
= SYMBOL_PTR
;
60 container
->data_type
= EXPR_PTR
;
62 case RAW_ASSIGNMENT_HOOK
:
63 container
->data_type
= EXPR_PTR
;
65 case CALL_ASSIGNMENT_HOOK
:
66 container
->data_type
= EXPR_PTR
;
68 case MACRO_ASSIGNMENT_HOOK
:
69 container
->data_type
= EXPR_PTR
;
72 container
->data_type
= EXPR_PTR
;
75 container
->data_type
= EXPR_PTR
;
78 container
->data_type
= EXPR_PTR
;
81 container
->data_type
= STMT_PTR
;
84 container
->data_type
= EXPR_PTR
;
87 container
->data_type
= EXPR_PTR
;
89 case WHOLE_CONDITION_HOOK
:
90 container
->data_type
= EXPR_PTR
;
92 case FUNCTION_CALL_HOOK
:
93 container
->data_type
= EXPR_PTR
;
96 container
->data_type
= EXPR_PTR
;
102 container
->data_type
= STMT_PTR
;
105 container
->data_type
= EXPR_PTR
;
108 container
->data_type
= SYMBOL_PTR
;
111 container
->data_type
= SYMBOL_PTR
;
114 container
->data_type
= SYMBOL_PTR
;
117 container
->data_type
= EXPR_PTR
;
120 /* nothing needed... */
123 add_ptr_list(&hook_funcs
, container
);
126 void add_merge_hook(int client_id
, merge_func_t
*func
)
128 struct hook_container
*container
= __alloc_hook_container(0);
129 container
->data_type
= client_id
;
130 container
->fn
= func
;
131 add_ptr_list(&merge_funcs
, container
);
134 void add_unmatched_state_hook(int client_id
, unmatched_func_t
*func
)
136 struct hook_container
*container
= __alloc_hook_container(0);
137 container
->data_type
= client_id
;
138 container
->fn
= func
;
139 add_ptr_list(&unmatched_state_funcs
, container
);
142 static void pass_to_client(void *fn
)
144 typedef void (expr_func
)();
145 ((expr_func
*) fn
)();
148 static void pass_expr_to_client(void *fn
, void *data
)
150 typedef void (expr_func
)(struct expression
*expr
);
151 ((expr_func
*) fn
)((struct expression
*) data
);
154 static void pass_stmt_to_client(void *fn
, void *data
)
156 typedef void (stmt_func
)(struct statement
*stmt
);
157 ((stmt_func
*) fn
)((struct statement
*) data
);
160 static void pass_sym_to_client(void *fn
, void *data
)
162 typedef void (sym_func
)(struct symbol
*sym
);
163 ((sym_func
*) fn
)((struct symbol
*) data
);
166 void __pass_to_client(void *data
, enum hook_type type
)
168 struct hook_container
*container
;
170 FOR_EACH_PTR(hook_funcs
, container
) {
171 if (container
->hook_type
== type
) {
172 switch (container
->data_type
) {
174 pass_expr_to_client(container
->fn
, data
);
177 pass_stmt_to_client(container
->fn
, data
);
180 pass_sym_to_client(container
->fn
, data
);
184 } END_FOR_EACH_PTR(container
);
187 void __pass_to_client_no_data(enum hook_type type
)
189 struct hook_container
*container
;
191 FOR_EACH_PTR(hook_funcs
, container
) {
192 if (container
->hook_type
== type
)
193 pass_to_client(container
->fn
);
194 } END_FOR_EACH_PTR(container
);
197 void __pass_case_to_client(struct expression
*switch_expr
,
198 struct expression
*case_expr
)
200 typedef void (case_func
)(struct expression
*switch_expr
,
201 struct expression
*case_expr
);
202 struct hook_container
*container
;
204 FOR_EACH_PTR(hook_funcs
, container
) {
205 if (container
->hook_type
== CASE_HOOK
)
206 ((case_func
*) container
->fn
)(switch_expr
, case_expr
);
207 } END_FOR_EACH_PTR(container
);
210 int __has_merge_function(int client_id
)
212 struct hook_container
*tmp
;
214 FOR_EACH_PTR(merge_funcs
, tmp
) {
215 if (tmp
->data_type
== client_id
)
217 } END_FOR_EACH_PTR(tmp
);
221 struct smatch_state
*__client_merge_function(int owner
, const char *name
,
223 struct smatch_state
*s1
,
224 struct smatch_state
*s2
)
226 struct smatch_state
*tmp_state
;
227 struct hook_container
*tmp
;
229 /* Pass NULL states first and the rest alphabetically by name */
230 if (!s2
|| (s1
&& strcmp(s2
->name
, s1
->name
) < 0)) {
236 FOR_EACH_PTR(merge_funcs
, tmp
) {
237 if (tmp
->data_type
== owner
)
238 return ((merge_func_t
*) tmp
->fn
)(name
, sym
, s1
, s2
);
239 } END_FOR_EACH_PTR(tmp
);
243 struct smatch_state
*__client_unmatched_state_function(struct sm_state
*sm
)
245 struct hook_container
*tmp
;
247 FOR_EACH_PTR(unmatched_state_funcs
, tmp
) {
248 if (tmp
->data_type
== sm
->owner
)
249 return ((unmatched_func_t
*) tmp
->fn
)(sm
);
250 } END_FOR_EACH_PTR(tmp
);
254 static struct scope_hook_list
*pop_scope_hook_list(struct scope_hook_stack
**stack
)
256 struct scope_hook_list
*hook_list
;
258 hook_list
= last_ptr_list((struct ptr_list
*)*stack
);
259 delete_ptr_list_last((struct ptr_list
**)stack
);
263 static void push_scope_hook_list(struct scope_hook_stack
**stack
, struct scope_hook_list
*l
)
265 add_ptr_list(stack
, l
);
268 void add_scope_hook(scope_hook
*fn
, void *data
)
270 struct scope_hook_list
*hook_list
;
271 struct scope_container
*new;
275 hook_list
= pop_scope_hook_list(&scope_hooks
);
276 new = __alloc_scope_container(0);
279 add_ptr_list(&hook_list
, new);
280 push_scope_hook_list(&scope_hooks
, hook_list
);
283 void __push_scope_hooks(void)
285 push_scope_hook_list(&scope_hooks
, NULL
);
288 void __call_scope_hooks(void)
290 struct scope_hook_list
*hook_list
;
291 struct scope_container
*tmp
;
296 hook_list
= pop_scope_hook_list(&scope_hooks
);
297 FOR_EACH_PTR(hook_list
, tmp
) {
298 ((scope_hook
*) tmp
->fn
)(tmp
->data
);
299 __free_scope_container(tmp
);
300 } END_FOR_EACH_PTR(tmp
);