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 GLOBAL_ASSIGNMENT_HOOK
:
66 container
->data_type
= EXPR_PTR
;
68 case CALL_ASSIGNMENT_HOOK
:
69 container
->data_type
= EXPR_PTR
;
71 case MACRO_ASSIGNMENT_HOOK
:
72 container
->data_type
= EXPR_PTR
;
75 container
->data_type
= EXPR_PTR
;
78 container
->data_type
= EXPR_PTR
;
81 container
->data_type
= EXPR_PTR
;
84 container
->data_type
= STMT_PTR
;
87 container
->data_type
= EXPR_PTR
;
90 container
->data_type
= EXPR_PTR
;
92 case WHOLE_CONDITION_HOOK
:
93 container
->data_type
= EXPR_PTR
;
95 case FUNCTION_CALL_HOOK
:
96 container
->data_type
= EXPR_PTR
;
99 container
->data_type
= EXPR_PTR
;
105 container
->data_type
= STMT_PTR
;
108 container
->data_type
= EXPR_PTR
;
111 container
->data_type
= EXPR_PTR
;
114 container
->data_type
= SYMBOL_PTR
;
117 container
->data_type
= SYMBOL_PTR
;
120 container
->data_type
= SYMBOL_PTR
;
123 container
->data_type
= SYMBOL_PTR
;
126 container
->data_type
= EXPR_PTR
;
129 /* nothing needed... */
132 add_ptr_list(&hook_funcs
, container
);
135 void add_merge_hook(int client_id
, merge_func_t
*func
)
137 struct hook_container
*container
= __alloc_hook_container(0);
138 container
->data_type
= client_id
;
139 container
->fn
= func
;
140 add_ptr_list(&merge_funcs
, container
);
143 void add_unmatched_state_hook(int client_id
, unmatched_func_t
*func
)
145 struct hook_container
*container
= __alloc_hook_container(0);
146 container
->data_type
= client_id
;
147 container
->fn
= func
;
148 add_ptr_list(&unmatched_state_funcs
, container
);
151 static void pass_to_client(void *fn
)
153 typedef void (expr_func
)();
154 ((expr_func
*) fn
)();
157 static void pass_expr_to_client(void *fn
, void *data
)
159 typedef void (expr_func
)(struct expression
*expr
);
160 ((expr_func
*) fn
)((struct expression
*) data
);
163 static void pass_stmt_to_client(void *fn
, void *data
)
165 typedef void (stmt_func
)(struct statement
*stmt
);
166 ((stmt_func
*) fn
)((struct statement
*) data
);
169 static void pass_sym_to_client(void *fn
, void *data
)
171 typedef void (sym_func
)(struct symbol
*sym
);
172 ((sym_func
*) fn
)((struct symbol
*) data
);
175 void __pass_to_client(void *data
, enum hook_type type
)
177 struct hook_container
*container
;
179 FOR_EACH_PTR(hook_funcs
, container
) {
180 if (container
->hook_type
== type
) {
181 switch (container
->data_type
) {
183 pass_expr_to_client(container
->fn
, data
);
186 pass_stmt_to_client(container
->fn
, data
);
189 pass_sym_to_client(container
->fn
, data
);
193 } END_FOR_EACH_PTR(container
);
196 void __pass_to_client_no_data(enum hook_type type
)
198 struct hook_container
*container
;
200 FOR_EACH_PTR(hook_funcs
, container
) {
201 if (container
->hook_type
== type
)
202 pass_to_client(container
->fn
);
203 } END_FOR_EACH_PTR(container
);
206 void __pass_case_to_client(struct expression
*switch_expr
,
207 struct expression
*case_expr
)
209 typedef void (case_func
)(struct expression
*switch_expr
,
210 struct expression
*case_expr
);
211 struct hook_container
*container
;
213 FOR_EACH_PTR(hook_funcs
, container
) {
214 if (container
->hook_type
== CASE_HOOK
)
215 ((case_func
*) container
->fn
)(switch_expr
, case_expr
);
216 } END_FOR_EACH_PTR(container
);
219 int __has_merge_function(int client_id
)
221 struct hook_container
*tmp
;
223 FOR_EACH_PTR(merge_funcs
, tmp
) {
224 if (tmp
->data_type
== client_id
)
226 } END_FOR_EACH_PTR(tmp
);
230 struct smatch_state
*__client_merge_function(int owner
,
231 struct smatch_state
*s1
,
232 struct smatch_state
*s2
)
234 struct smatch_state
*tmp_state
;
235 struct hook_container
*tmp
;
237 /* Pass NULL states first and the rest alphabetically by name */
238 if (!s2
|| (s1
&& strcmp(s2
->name
, s1
->name
) < 0)) {
244 FOR_EACH_PTR(merge_funcs
, tmp
) {
245 if (tmp
->data_type
== owner
)
246 return ((merge_func_t
*) tmp
->fn
)(s1
, s2
);
247 } END_FOR_EACH_PTR(tmp
);
251 struct smatch_state
*__client_unmatched_state_function(struct sm_state
*sm
)
253 struct hook_container
*tmp
;
255 FOR_EACH_PTR(unmatched_state_funcs
, tmp
) {
256 if (tmp
->data_type
== sm
->owner
)
257 return ((unmatched_func_t
*) tmp
->fn
)(sm
);
258 } END_FOR_EACH_PTR(tmp
);
262 static struct scope_hook_list
*pop_scope_hook_list(struct scope_hook_stack
**stack
)
264 struct scope_hook_list
*hook_list
;
266 hook_list
= last_ptr_list((struct ptr_list
*)*stack
);
267 delete_ptr_list_last((struct ptr_list
**)stack
);
271 static void push_scope_hook_list(struct scope_hook_stack
**stack
, struct scope_hook_list
*l
)
273 add_ptr_list(stack
, l
);
276 void add_scope_hook(scope_hook
*fn
, void *data
)
278 struct scope_hook_list
*hook_list
;
279 struct scope_container
*new;
283 hook_list
= pop_scope_hook_list(&scope_hooks
);
284 new = __alloc_scope_container(0);
287 add_ptr_list(&hook_list
, new);
288 push_scope_hook_list(&scope_hooks
, hook_list
);
291 void __push_scope_hooks(void)
293 push_scope_hook_list(&scope_hooks
, NULL
);
296 void __call_scope_hooks(void)
298 struct scope_hook_list
*hook_list
;
299 struct scope_container
*tmp
;
304 hook_list
= pop_scope_hook_list(&scope_hooks
);
305 FOR_EACH_PTR(hook_list
, tmp
) {
306 ((scope_hook
*) tmp
->fn
)(tmp
->data
);
307 __free_scope_container(tmp
);
308 } END_FOR_EACH_PTR(tmp
);