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
19 * Miscellaneous helper functions.
26 #include "smatch_extra.h"
27 #include "smatch_slist.h"
31 char *alloc_string(const char *str
)
37 tmp
= malloc(strlen(str
) + 1);
42 void free_string(char *str
)
47 void remove_parens(char *str
)
52 while (*src
!= '\0') {
53 if (*src
== '(' || *src
== ')') {
62 struct smatch_state
*alloc_state_num(int num
)
64 struct smatch_state
*state
;
65 static char buff
[256];
67 state
= __alloc_smatch_state(0);
68 snprintf(buff
, 255, "%d", num
);
70 state
->name
= alloc_string(buff
);
71 state
->data
= INT_PTR(num
);
75 struct smatch_state
*alloc_state_str(const char *name
)
77 struct smatch_state
*state
;
79 state
= __alloc_smatch_state(0);
80 state
->name
= alloc_string(name
);
84 struct smatch_state
*alloc_state_expr(struct expression
*expr
)
86 struct smatch_state
*state
;
89 state
= __alloc_smatch_state(0);
90 expr
= strip_expr(expr
);
91 name
= expr_to_str(expr
);
92 state
->name
= alloc_sname(name
);
98 void append(char *dest
, const char *data
, int buff_len
)
100 strncat(dest
, data
, buff_len
- strlen(dest
) - 1);
104 * If you have "foo(a, b, 1);" then use
105 * get_argument_from_call_expr(expr, 0) to return the expression for
106 * a. Yes, it does start counting from 0.
108 struct expression
*get_argument_from_call_expr(struct expression_list
*args
,
111 struct expression
*expr
;
117 FOR_EACH_PTR(args
, expr
) {
121 } END_FOR_EACH_PTR(expr
);
125 static struct expression
*get_array_expr(struct expression
*expr
)
127 struct expression
*parent
;
130 if (expr
->type
!= EXPR_BINOP
|| expr
->op
!= '+')
133 type
= get_type(expr
->left
);
136 if (type
->type
== SYM_ARRAY
)
138 if (type
->type
!= SYM_PTR
)
141 parent
= expr_get_parent_expr(expr
);
144 if (parent
->type
== EXPR_PREOP
&& parent
->op
== '*')
150 static void __get_variable_from_expr(struct symbol
**sym_ptr
, char *buf
,
151 struct expression
*expr
, int len
,
152 int *complicated
, int no_parens
)
157 /* can't happen on valid code */
162 switch (expr
->type
) {
164 struct expression
*deref
;
170 struct expression
*unop
= strip_expr(deref
->unop
);
172 if (unop
->type
== EXPR_PREOP
&& unop
->op
== '&') {
177 if (!is_pointer(deref
))
182 __get_variable_from_expr(sym_ptr
, buf
, deref
, len
, complicated
, no_parens
);
185 append(buf
, "->", len
);
187 append(buf
, ".", len
);
190 append(buf
, expr
->member
->name
, len
);
192 append(buf
, "unknown_member", len
);
197 if (expr
->symbol_name
)
198 append(buf
, expr
->symbol_name
->name
, len
);
202 *sym_ptr
= expr
->symbol
;
208 if (get_expression_statement(expr
)) {
213 if (expr
->op
== '(') {
214 if (!no_parens
&& expr
->unop
->type
!= EXPR_SYMBOL
)
215 append(buf
, "(", len
);
216 } else if (expr
->op
!= '*' || !get_array_expr(expr
->unop
)) {
217 tmp
= show_special(expr
->op
);
218 append(buf
, tmp
, len
);
220 __get_variable_from_expr(sym_ptr
, buf
, expr
->unop
,
221 len
, complicated
, no_parens
);
223 if (expr
->op
== '(' && !no_parens
&& expr
->unop
->type
!= EXPR_SYMBOL
)
224 append(buf
, ")", len
);
226 if (expr
->op
== SPECIAL_DECREMENT
||
227 expr
->op
== SPECIAL_INCREMENT
)
235 __get_variable_from_expr(sym_ptr
, buf
, expr
->unop
,
236 len
, complicated
, no_parens
);
237 tmp
= show_special(expr
->op
);
238 append(buf
, tmp
, len
);
240 if (expr
->op
== SPECIAL_DECREMENT
|| expr
->op
== SPECIAL_INCREMENT
)
244 case EXPR_ASSIGNMENT
:
249 struct expression
*array_expr
;
252 array_expr
= get_array_expr(expr
);
254 __get_variable_from_expr(sym_ptr
, buf
, array_expr
, len
, complicated
, no_parens
);
255 append(buf
, "[", len
);
257 __get_variable_from_expr(sym_ptr
, buf
, expr
->left
, len
, complicated
, no_parens
);
258 snprintf(tmp
, sizeof(tmp
), " %s ", show_special(expr
->op
));
259 append(buf
, tmp
, len
);
261 __get_variable_from_expr(NULL
, buf
, expr
->right
, len
, complicated
, no_parens
);
263 append(buf
, "]", len
);
270 snprintf(tmp
, 25, "%lld", expr
->value
);
271 append(buf
, tmp
, len
);
275 append(buf
, "\"", len
);
277 append(buf
, expr
->string
->data
, len
);
278 append(buf
, "\"", len
);
281 struct expression
*tmp
;
285 __get_variable_from_expr(NULL
, buf
, expr
->fn
, len
, complicated
, no_parens
);
286 append(buf
, "(", len
);
288 FOR_EACH_PTR(expr
->args
, tmp
) {
290 append(buf
, ", ", len
);
291 __get_variable_from_expr(NULL
, buf
, tmp
, len
, complicated
, no_parens
);
292 } END_FOR_EACH_PTR(tmp
);
293 append(buf
, ")", len
);
297 case EXPR_FORCE_CAST
:
298 __get_variable_from_expr(sym_ptr
, buf
,
299 expr
->cast_expression
, len
,
300 complicated
, no_parens
);
307 if (expr
->cast_type
&& get_base_type(expr
->cast_type
)) {
308 size
= type_bytes(get_base_type(expr
->cast_type
));
309 snprintf(tmp
, 25, "%d", size
);
310 append(buf
, tmp
, len
);
311 } else if (get_value(expr
, &sval
)) {
312 snprintf(tmp
, 25, "%s", sval_to_str(sval
));
313 append(buf
, tmp
, len
);
317 case EXPR_IDENTIFIER
:
319 if (expr
->expr_ident
)
320 append(buf
, expr
->expr_ident
->name
, len
);
324 //printf("unknown type = %d\n", expr->type);
330 * This is returns a stylized "c looking" representation of the
333 * It uses the same buffer every time so you have to save the result
334 * yourself if you want to keep it.
338 char *expr_to_str_sym(struct expression
*expr
, struct symbol
**sym_ptr
)
340 static char var_name
[VAR_LEN
];
349 __get_variable_from_expr(sym_ptr
, var_name
, expr
, sizeof(var_name
),
352 return alloc_string(var_name
);
357 char *expr_to_str(struct expression
*expr
)
359 return expr_to_str_sym(expr
, NULL
);
363 * get_variable_from_expr_simple() only returns simple variables.
364 * If it's a complicated variable like a->foo[x] instead of just 'a->foo'
365 * then it returns NULL.
367 char *expr_to_var_sym(struct expression
*expr
,
368 struct symbol
**sym_ptr
)
370 static char var_name
[VAR_LEN
];
379 expr
= strip_expr(expr
);
380 __get_variable_from_expr(sym_ptr
, var_name
, expr
, sizeof(var_name
),
388 return alloc_string(var_name
);
391 char *expr_to_var(struct expression
*expr
)
393 return expr_to_var_sym(expr
, NULL
);
396 struct symbol
*expr_to_sym(struct expression
*expr
)
401 name
= expr_to_var_sym(expr
, &sym
);
406 int get_complication_score(struct expression
*expr
)
410 expr
= strip_expr(expr
);
413 * Don't forget to keep get_complication_score() and store_all_links()
421 switch (expr
->type
) {
426 score
+= get_complication_score(expr
->left
);
427 score
+= get_complication_score(expr
->right
);
430 if (is_local_variable(expr
))
435 return score
+ get_complication_score(expr
->unop
);
438 return score
+ get_complication_score(expr
->deref
);
446 struct expression
*reorder_expr_alphabetically(struct expression
*expr
)
448 struct expression
*ret
;
451 if (expr
->type
!= EXPR_BINOP
)
453 if (expr
->op
!= '+' && expr
->op
!= '*')
456 left
= expr_to_var(expr
->left
);
457 right
= expr_to_var(expr
->right
);
461 if (strcmp(left
, right
) <= 0)
464 ret
= binop_expression(expr
->right
, expr
->op
, expr
->left
);
472 char *expr_to_chunk_helper(struct expression
*expr
, struct symbol
**sym
, struct var_sym_list
**vsl
)
483 expr
= strip_parens(expr
);
487 name
= expr_to_var_sym(expr
, &tmp
);
492 *vsl
= expr_to_vsl(expr
);
497 score
= get_complication_score(expr
);
498 if (score
<= 0 || score
> 2)
502 *vsl
= expr_to_vsl(expr
);
507 expr
= reorder_expr_alphabetically(expr
);
509 return expr_to_str(expr
);
512 char *expr_to_known_chunk_sym(struct expression
*expr
, struct symbol
**sym
)
514 return expr_to_chunk_helper(expr
, sym
, NULL
);
517 char *expr_to_chunk_sym_vsl(struct expression
*expr
, struct symbol
**sym
, struct var_sym_list
**vsl
)
519 return expr_to_chunk_helper(expr
, sym
, vsl
);
522 int sym_name_is(const char *name
, struct expression
*expr
)
526 if (expr
->type
!= EXPR_SYMBOL
)
528 if (!strcmp(expr
->symbol_name
->name
, name
))
533 int is_zero(struct expression
*expr
)
537 if (get_value(expr
, &sval
) && sval
.value
== 0)
542 int is_array(struct expression
*expr
)
546 expr
= strip_expr(expr
);
550 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '*') {
551 expr
= strip_expr(expr
->unop
);
554 if (expr
->type
== EXPR_BINOP
&& expr
->op
== '+')
558 if (expr
->type
!= EXPR_BINOP
|| expr
->op
!= '+')
561 type
= get_type(expr
->left
);
562 if (!type
|| type
->type
!= SYM_ARRAY
)
568 struct expression
*get_array_base(struct expression
*expr
)
572 expr
= strip_expr(expr
);
573 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '*')
574 expr
= strip_expr(expr
->unop
);
575 if (expr
->type
!= EXPR_BINOP
|| expr
->op
!= '+')
577 return strip_parens(expr
->left
);
580 struct expression
*get_array_offset(struct expression
*expr
)
584 expr
= strip_expr(expr
);
585 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '*')
586 expr
= strip_expr(expr
->unop
);
587 if (expr
->type
!= EXPR_BINOP
|| expr
->op
!= '+')
589 return strip_parens(expr
->right
);
592 const char *show_state(struct smatch_state
*state
)
599 struct statement
*get_expression_statement(struct expression
*expr
)
601 /* What are those things called? if (({....; ret;})) { ...*/
603 if (expr
->type
!= EXPR_PREOP
)
607 if (expr
->unop
->type
!= EXPR_STATEMENT
)
609 if (expr
->unop
->statement
->type
!= STMT_COMPOUND
)
611 return expr
->unop
->statement
;
614 struct expression
*strip_parens(struct expression
*expr
)
619 if (expr
->type
== EXPR_PREOP
) {
620 if (expr
->op
== '(' && expr
->unop
->type
== EXPR_STATEMENT
&&
621 expr
->unop
->statement
->type
== STMT_COMPOUND
)
624 return strip_parens(expr
->unop
);
629 struct expression
*strip_expr(struct expression
*expr
)
634 switch (expr
->type
) {
635 case EXPR_FORCE_CAST
:
637 return strip_expr(expr
->cast_expression
);
639 struct expression
*unop
;
641 if (expr
->op
== '(' && expr
->unop
->type
== EXPR_STATEMENT
&&
642 expr
->unop
->statement
->type
== STMT_COMPOUND
)
645 unop
= strip_expr(expr
->unop
);
647 if (expr
->op
== '*' && unop
&&
648 unop
->type
== EXPR_PREOP
&& unop
->op
== '&') {
649 struct symbol
*type
= get_type(unop
->unop
);
651 if (type
&& type
->type
== SYM_ARRAY
)
653 return strip_expr(unop
->unop
);
661 case EXPR_CONDITIONAL
:
662 if (known_condition_true(expr
->conditional
)) {
664 return strip_expr(expr
->cond_true
);
665 return strip_expr(expr
->conditional
);
667 if (known_condition_false(expr
->conditional
))
668 return strip_expr(expr
->cond_false
);
671 if (sym_name_is("__builtin_expect", expr
->fn
)) {
672 expr
= get_argument_from_call_expr(expr
->args
, 0);
673 return strip_expr(expr
);
680 static void delete_state_tracker(struct tracker
*t
)
682 delete_state(t
->owner
, t
->name
, t
->sym
);
686 void scoped_state(int my_id
, const char *name
, struct symbol
*sym
)
690 t
= alloc_tracker(my_id
, name
, sym
);
691 add_scope_hook((scope_hook
*)&delete_state_tracker
, t
);
694 int is_error_return(struct expression
*expr
)
696 struct symbol
*cur_func
= cur_func_sym
;
701 if (cur_func
->type
!= SYM_NODE
)
703 cur_func
= get_base_type(cur_func
);
704 if (cur_func
->type
!= SYM_FN
)
706 cur_func
= get_base_type(cur_func
);
707 if (cur_func
== &void_ctype
)
709 if (!get_implied_value(expr
, &sval
))
713 if (cur_func
->type
== SYM_PTR
&& sval
.value
== 0)
718 int getting_address(void)
720 struct expression
*tmp
;
724 FOR_EACH_PTR_REVERSE(big_expression_stack
, tmp
) {
727 if (tmp
->type
== EXPR_PREOP
&& tmp
->op
== '(')
729 if (tmp
->op
== '.' && !dot_ops
++)
734 } END_FOR_EACH_PTR_REVERSE(tmp
);
738 int get_struct_and_member(struct expression
*expr
, const char **type
, const char **member
)
742 expr
= strip_expr(expr
);
743 if (expr
->type
!= EXPR_DEREF
)
748 sym
= get_type(expr
->deref
);
751 if (sym
->type
== SYM_UNION
)
756 *type
= sym
->ident
->name
;
757 *member
= expr
->member
->name
;
761 char *get_member_name(struct expression
*expr
)
766 expr
= strip_expr(expr
);
767 if (expr
->type
!= EXPR_DEREF
)
772 sym
= get_type(expr
->deref
);
775 if (sym
->type
== SYM_UNION
) {
776 snprintf(buf
, sizeof(buf
), "(union %s)->%s",
777 sym
->ident
? sym
->ident
->name
: "anonymous",
779 return alloc_string(buf
);
783 snprintf(buf
, sizeof(buf
), "(struct %s)->%s", sym
->ident
->name
, expr
->member
->name
);
784 return alloc_string(buf
);
787 int cmp_pos(struct position pos1
, struct position pos2
)
789 /* the stream position is ... */
790 if (pos1
.stream
> pos2
.stream
)
792 if (pos1
.stream
< pos2
.stream
)
795 if (pos1
.line
< pos2
.line
)
797 if (pos1
.line
> pos2
.line
)
800 if (pos1
.pos
< pos2
.pos
)
802 if (pos1
.pos
> pos2
.pos
)
808 int positions_eq(struct position pos1
, struct position pos2
)
810 if (pos1
.line
!= pos2
.line
)
812 if (pos1
.pos
!= pos2
.pos
)
814 if (pos1
.stream
!= pos2
.stream
)
819 struct statement
*get_current_statement(void)
821 struct statement
*prev
, *tmp
;
823 prev
= last_ptr_list((struct ptr_list
*)big_statement_stack
);
825 if (!prev
|| !get_macro_name(prev
->pos
))
828 FOR_EACH_PTR_REVERSE(big_statement_stack
, tmp
) {
829 if (positions_eq(tmp
->pos
, prev
->pos
))
831 if (prev
->pos
.line
> tmp
->pos
.line
)
834 } END_FOR_EACH_PTR_REVERSE(tmp
);
838 struct statement
*get_prev_statement(void)
840 struct statement
*tmp
;
844 FOR_EACH_PTR_REVERSE(big_statement_stack
, tmp
) {
847 } END_FOR_EACH_PTR_REVERSE(tmp
);
851 int get_param_num_from_sym(struct symbol
*sym
)
860 FOR_EACH_PTR(cur_func_sym
->ctype
.base_type
->arguments
, tmp
) {
864 } END_FOR_EACH_PTR(tmp
);
868 int get_param_num(struct expression
*expr
)
875 name
= expr_to_var_sym(expr
, &sym
);
879 return get_param_num_from_sym(sym
);
882 int ms_since(struct timeval
*start
)
887 gettimeofday(&end
, NULL
);
888 diff
= (end
.tv_sec
- start
->tv_sec
) * 1000.0;
889 diff
+= (end
.tv_usec
- start
->tv_usec
) / 1000.0;
893 int parent_is_gone_var_sym(const char *name
, struct symbol
*sym
)
898 if (parent_is_null_var_sym(name
, sym
) ||
899 parent_is_free_var_sym(name
, sym
))
904 int parent_is_gone(struct expression
*expr
)
910 expr
= strip_expr(expr
);
911 var
= expr_to_var_sym(expr
, &sym
);
914 ret
= parent_is_gone_var_sym(var
, sym
);
920 int invert_op(int op
)
931 case SPECIAL_LEFTSHIFT
:
932 return SPECIAL_RIGHTSHIFT
;
933 case SPECIAL_RIGHTSHIFT
:
934 return SPECIAL_LEFTSHIFT
;
939 int expr_equiv(struct expression
*one
, struct expression
*two
)
941 struct symbol
*one_sym
= NULL
;
942 struct symbol
*two_sym
= NULL
;
943 char *one_name
= NULL
;
944 char *two_name
= NULL
;
949 if (one
->type
!= two
->type
)
952 one_name
= expr_to_str_sym(one
, &one_sym
);
955 two_name
= expr_to_str_sym(two
, &two_sym
);
958 if (one_sym
!= two_sym
)
961 * This is a terrible hack because expr_to_str() sometimes gives up in
962 * the middle and just returns what it has. If you see a () you know
963 * the string is bogus.
965 if (strstr(one_name
, "()"))
967 if (strcmp(one_name
, two_name
) == 0)
970 free_string(one_name
);
971 free_string(two_name
);
975 void push_int(struct int_stack
**stack
, int num
)
980 * Just put the int on directly instead of a pointer to the int.
981 * Shift it to the left because Sparse uses the last two bits.
982 * This is sort of a dirty hack, yes.
985 munged
= INT_PTR(num
<< 2);
987 add_ptr_list(stack
, munged
);
990 int pop_int(struct int_stack
**stack
)
994 num
= last_ptr_list((struct ptr_list
*)*stack
);
995 delete_ptr_list_last((struct ptr_list
**)stack
);
997 return PTR_INT(num
) >> 2;