4 * Copyright (C) 2006 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
19 #include "expression.h"
26 #define STATE(_x) static struct smatch_state _x = { .name = #_x }
27 extern struct smatch_state undefined
;
28 extern struct smatch_state true_state
;
29 extern struct smatch_state false_state
;
37 ASSIGNMENT_AFTER_HOOK
,
41 FUNCTION_CALL_AFTER_HOOK
,
50 void add_hook(void *func
, enum hook_type type
);
51 typedef struct smatch_state
*(merge_func_t
)(const char *name
,
53 struct smatch_state
*s1
,
54 struct smatch_state
*s2
);
55 void add_merge_hook(int client_id
, merge_func_t
*func
);
57 #define smatch_msg(msg...) \
59 printf("%s +%d %s(%d) ", get_filename(), get_lineno(), \
60 get_function(), get_func_pos()); \
65 #define SM_DEBUG(msg...) do { if (debug_states) printf(msg); } while (0)
67 #define UNDEFINED INT_MIN
69 struct smatch_state
*get_state(const char *name
, int owner
, struct symbol
*sym
);
70 void set_state(const char *name
, int owner
, struct symbol
*sym
,
71 struct smatch_state
*state
);
72 void delete_state(const char *name
, int owner
, struct symbol
*sym
);
73 void set_true_false_states(const char *name
, int owner
, struct symbol
*sym
,
74 struct smatch_state
*true_state
,
75 struct smatch_state
*false_state
);
77 struct state_list
*get_all_states(int id
);
84 char *alloc_string(char *str
);
85 void free_string(char *str
);
86 struct expression
*get_argument_from_call_expr(struct expression_list
*args
,
88 char * get_variable_from_expr(struct expression
* expr
,
89 struct symbol
**sym_ptr
);
90 char * get_variable_from_expr_simple(struct expression
* expr
,
91 struct symbol
**sym_ptr
);
92 int sym_name_is(const char *name
, struct expression
*expr
);
93 int get_value(struct expression
*expr
, int *discard
);
94 int is_zero(struct expression
*expr
);
95 const char *show_state(struct smatch_state
*state
);
96 struct expression
*strip_expr(struct expression
*expr
);
99 void add_ignore(const char *name
, int owner
, struct symbol
*sym
);
100 int is_ignored(const char *name
, int owner
, struct symbol
*sym
);
102 /* smatch_conditions */
105 /* ----------------------------------------------------------------
106 The stuff below is all used internally and shouldn't
107 be called from other programs
108 -----------------------------------------------------------------*/
112 void smatch (int argc
, char **argv
);
113 void __split_expr(struct expression
*expr
);
115 /* smatch_conditions */
116 void __split_whole_condition(struct expression
*expr
);
118 /* smatch_implied.c */
119 void __implied_states_hook(struct expression
*expr
);
121 /* smatch_extras.c */
122 #define SMATCH_EXTRA 1 /* this is my_id from smatch extra set in smatch.c */
123 int known_condition_true(struct expression
*expr
);
125 /* smatch_states.c */
126 extern int debug_states
;
129 void __unnullify_path();
130 void clear_all_states();
132 struct sm_state
*__get_sm_state(const char *name
, int owner
,
134 void __use_false_only_stack();
135 void __pop_false_only_stack();
136 void __push_true_states();
137 void __use_false_states();
138 void __pop_false_states();
139 void __merge_false_states();
140 void __merge_true_states();
142 void __negate_cond_stacks();
143 void __use_cond_true_states();
144 void __use_cond_false_states();
145 void __push_cond_stacks();
146 void __and_cond_states();
147 void __or_cond_states();
148 void __save_pre_cond_states();
149 void __pop_pre_cond_states();
150 void __use_cond_states();
152 void __push_continues();
153 void __pop_continues();
154 void __process_continues();
155 void __merge_continues();
157 void __push_breaks();
158 void __process_breaks();
159 void __merge_breaks();
162 void __save_switch_states();
163 void __pop_switches();
164 void __merge_switches();
165 void __push_default();
166 void __set_default();
169 void __push_conditions();
170 void __pop_conditions();
171 void __overwrite_true_states();
173 void __save_gotos(const char *name
);
174 void __merge_gotos(const char *name
);
176 void __print_cur_slist();
179 void __pass_to_client(void *data
, enum hook_type type
);
180 void __pass_to_client_no_data(enum hook_type type
);
181 void __pass_declarations_to_client(struct symbol_list
*sym_list
);
182 int __has_merge_function(int client_id
);
183 struct smatch_state
*__client_merge_function(int owner
, const char *name
, struct symbol
*sym
,
184 struct smatch_state
*s1
, struct smatch_state
*s2
);
186 #endif /* !SMATCH_H_ */