2 * sparse/smatch_helper.c
4 * Copyright (C) 2006 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
11 * Miscellaneous helper functions.
21 char *alloc_string(const char *str
)
27 tmp
= malloc(strlen(str
) + 1);
32 void free_string(char *str
)
37 struct smatch_state
*alloc_state_num(int num
)
39 struct smatch_state
*state
;
40 static char buff
[256];
42 state
= __alloc_smatch_state(0);
43 snprintf(buff
, 255, "%d", num
);
45 state
->name
= alloc_string(buff
);
46 state
->data
= INT_PTR(num
);
50 static void append(char *dest
, const char *data
, int buff_len
)
52 strncat(dest
, data
, buff_len
- strlen(dest
) - 1);
56 * If you have "foo(a, b, 1);" then use
57 * get_argument_from_call_expr(expr, 0) to return the expression for
58 * a. Yes, it does start counting from 0.
60 struct expression
*get_argument_from_call_expr(struct expression_list
*args
,
63 struct expression
*expr
;
69 FOR_EACH_PTR(args
, expr
) {
73 } END_FOR_EACH_PTR(expr
);
77 static struct expression
*get_array_expr(struct expression
*expr
)
81 if (expr
->type
!= EXPR_BINOP
|| expr
->op
!= '+')
84 type
= get_type(expr
->left
);
85 if (!type
|| type
->type
!= SYM_ARRAY
)
90 static void __get_variable_from_expr(struct symbol
**sym_ptr
, char *buf
,
91 struct expression
*expr
, int len
,
94 struct expression
*tmp
;
102 __get_variable_from_expr(sym_ptr
, buf
, tmp
, len
, complicated
);
106 append(buf
, "->", len
);
108 append(buf
, ".", len
);
110 append(buf
, expr
->member
->name
, len
);
114 if (expr
->symbol_name
)
115 append(buf
, expr
->symbol_name
->name
, len
);
119 *sym_ptr
= expr
->symbol
;
125 if (get_expression_statement(expr
)) {
130 if (expr
->op
!= '*' || !get_array_expr(expr
->unop
)) {
131 tmp
= show_special(expr
->op
);
132 append(buf
, tmp
, len
);
134 __get_variable_from_expr(sym_ptr
, buf
, expr
->unop
,
138 append(buf
, ")", len
);
140 if (expr
->op
== SPECIAL_DECREMENT
||
141 expr
->op
== SPECIAL_INCREMENT
||
150 __get_variable_from_expr(sym_ptr
, buf
, expr
->unop
,
152 tmp
= show_special(expr
->op
);
153 append(buf
, tmp
, len
);
155 if (expr
->op
== SPECIAL_DECREMENT
|| expr
->op
== SPECIAL_INCREMENT
)
161 struct expression
*array_expr
;
164 array_expr
= get_array_expr(expr
);
166 __get_variable_from_expr(sym_ptr
, buf
, array_expr
, len
, complicated
);
167 append(buf
, "[", len
);
169 __get_variable_from_expr(sym_ptr
, buf
, expr
->left
, len
,
171 snprintf(tmp
, sizeof(tmp
), " %s ", show_special(expr
->op
));
172 append(buf
, tmp
, len
);
174 __get_variable_from_expr(NULL
, buf
, expr
->right
,
177 append(buf
, "]", len
);
184 snprintf(tmp
, 25, "%lld", expr
->value
);
185 append(buf
, tmp
, len
);
189 append(buf
, "\"", len
);
190 append(buf
, expr
->string
->data
, len
);
191 append(buf
, "\"", len
);
194 struct expression
*tmp
;
198 __get_variable_from_expr(NULL
, buf
, expr
->fn
, len
,
200 append(buf
, "(", len
);
202 FOR_EACH_PTR_REVERSE(expr
->args
, tmp
) {
204 append(buf
, ", ", len
);
205 __get_variable_from_expr(NULL
, buf
, tmp
, len
,
207 } END_FOR_EACH_PTR_REVERSE(tmp
);
208 append(buf
, ")", len
);
212 __get_variable_from_expr(sym_ptr
, buf
,
213 expr
->cast_expression
, len
,
220 if (expr
->cast_type
&& get_base_type(expr
->cast_type
)) {
221 size
= (get_base_type(expr
->cast_type
))->bit_size
;
222 snprintf(tmp
, 25, "%d", bits_to_bytes(size
));
223 append(buf
, tmp
, len
);
229 //printf("unknown type = %d\n", expr->type);
235 * This is returns a stylized "c looking" representation of the
238 * It uses the same buffer every time so you have to save the result
239 * yourself if you want to keep it.
243 char *get_variable_from_expr_complex(struct expression
*expr
, struct symbol
**sym_ptr
)
245 static char var_name
[VAR_LEN
];
254 __get_variable_from_expr(sym_ptr
, var_name
, expr
, sizeof(var_name
),
257 return alloc_string(var_name
);
263 * get_variable_from_expr_simple() only returns simple variables.
264 * If it's a complicated variable like a->foo instead of just 'a'
265 * then it returns NULL.
268 char *get_variable_from_expr(struct expression
*expr
,
269 struct symbol
**sym_ptr
)
271 static char var_name
[VAR_LEN
];
280 expr
= strip_expr(expr
);
281 __get_variable_from_expr(sym_ptr
, var_name
, expr
, sizeof(var_name
),
289 return alloc_string(var_name
);
292 int sym_name_is(const char *name
, struct expression
*expr
)
296 if (expr
->type
!= EXPR_SYMBOL
)
298 if (!strcmp(expr
->symbol_name
->name
, name
))
303 int is_zero(struct expression
*expr
)
307 if (get_value(expr
, &val
) && val
== 0)
312 int is_array(struct expression
*expr
)
314 expr
= strip_expr(expr
);
315 if (expr
->type
!= EXPR_PREOP
|| expr
->op
!= '*')
323 struct expression
*get_array_name(struct expression
*expr
)
327 return strip_expr(expr
->unop
->left
);
330 struct expression
*get_array_offset(struct expression
*expr
)
334 return expr
->unop
->right
;
337 const char *show_state(struct smatch_state
*state
)
344 struct statement
*get_expression_statement(struct expression
*expr
)
346 /* What are those things called? if (({....; ret;})) { ...*/
348 if (expr
->type
!= EXPR_PREOP
)
352 if (expr
->unop
->type
!= EXPR_STATEMENT
)
354 if (expr
->unop
->statement
->type
!= STMT_COMPOUND
)
356 return expr
->unop
->statement
;
359 struct expression
*strip_parens(struct expression
*expr
)
364 if (expr
->type
== EXPR_PREOP
) {
365 if (expr
->op
== '(' && expr
->unop
->type
== EXPR_STATEMENT
&&
366 expr
->unop
->statement
->type
== STMT_COMPOUND
)
369 return strip_parens(expr
->unop
);
374 struct expression
*strip_expr(struct expression
*expr
)
379 switch (expr
->type
) {
380 case EXPR_FORCE_CAST
:
382 return strip_expr(expr
->cast_expression
);
384 if (expr
->op
== '(' && expr
->unop
->type
== EXPR_STATEMENT
&&
385 expr
->unop
->statement
->type
== STMT_COMPOUND
)
388 return strip_expr(expr
->unop
);
393 static void delete_state_tracker(struct tracker
*t
)
395 delete_state(t
->owner
, t
->name
, t
->sym
);
399 void scoped_state(int my_id
, const char *name
, struct symbol
*sym
)
403 t
= alloc_tracker(my_id
, name
, sym
);
404 add_scope_hook((scope_hook
*)&delete_state_tracker
, t
);
407 int is_error_return(struct expression
*expr
)
409 struct symbol
*cur_func
= cur_func_sym
;
414 if (cur_func
->type
!= SYM_NODE
)
416 cur_func
= get_base_type(cur_func
);
417 if (cur_func
->type
!= SYM_FN
)
419 cur_func
= get_base_type(cur_func
);
420 if (cur_func
== &void_ctype
)
422 if (!get_value(expr
, &val
))
426 if (cur_func
->type
== SYM_PTR
&& val
== 0)
431 int getting_address(void)
433 struct expression
*tmp
;
437 FOR_EACH_PTR_REVERSE(big_expression_stack
, tmp
) {
440 if (tmp
->type
== EXPR_PREOP
&& tmp
->op
== '(')
442 if (tmp
->op
== '.' && !dot_ops
++)
447 } END_FOR_EACH_PTR_REVERSE(tmp
);
451 char *get_member_name(struct expression
*expr
)
456 if (expr
->type
!= EXPR_DEREF
)
458 sym
= get_type(expr
->deref
);
459 if (!sym
|| !sym
->ident
)
461 snprintf(buf
, sizeof(buf
), "(struct %s)->%s", sym
->ident
->name
, expr
->member
->name
);
462 return alloc_string(buf
);
465 char *get_fnptr_name(struct expression
*expr
)
467 if (expr
->type
== EXPR_SYMBOL
)
468 return get_variable_from_expr(expr
, NULL
);
469 return get_member_name(expr
);
472 int positions_eq(struct position pos1
, struct position pos2
)
474 if (pos1
.line
!= pos2
.line
)
476 if (pos1
.pos
!= pos2
.pos
)
478 if (pos1
.stream
!= pos2
.stream
)