locking: add __raw_write_unlock_irq function
[smatch.git] / smatch_helper.c
blob09da2dc5b8a5cc735a973111044682c4a650d8d2
1 /*
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.
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include "allocate.h"
25 #include "smatch.h"
26 #include "smatch_extra.h"
27 #include "smatch_slist.h"
29 #define VAR_LEN 512
31 char *alloc_string(const char *str)
33 char *tmp;
35 if (!str)
36 return NULL;
37 tmp = malloc(strlen(str) + 1);
38 strcpy(tmp, str);
39 return tmp;
42 char *alloc_string_newline(const char *str)
44 char *tmp;
45 int len;
47 if (!str)
48 return NULL;
49 len = strlen(str);
50 tmp = malloc(len + 2);
51 snprintf(tmp, len + 2, "%s\n", str);
52 return tmp;
55 void free_string(char *str)
57 free(str);
60 void remove_parens(char *str)
62 char *src, *dst;
64 dst = src = str;
65 while (*src != '\0') {
66 if (*src == '(' || *src == ')') {
67 src++;
68 continue;
70 *dst++ = *src++;
72 *dst = *src;
75 struct smatch_state *alloc_state_num(int num)
77 struct smatch_state *state;
78 static char buff[256];
80 state = __alloc_smatch_state(0);
81 snprintf(buff, 255, "%d", num);
82 buff[255] = '\0';
83 state->name = alloc_string(buff);
84 state->data = INT_PTR(num);
85 return state;
88 struct smatch_state *alloc_state_str(const char *name)
90 struct smatch_state *state;
92 state = __alloc_smatch_state(0);
93 state->name = alloc_string(name);
94 return state;
97 struct smatch_state *merge_str_state(struct smatch_state *s1, struct smatch_state *s2)
99 if (!s1->name || !s2->name)
100 return &merged;
101 if (strcmp(s1->name, s2->name) == 0)
102 return s1;
103 return &merged;
106 struct smatch_state *alloc_state_expr(struct expression *expr)
108 struct smatch_state *state;
109 char *name;
111 expr = strip_expr(expr);
112 name = expr_to_str(expr);
113 if (!name)
114 return NULL;
116 state = __alloc_smatch_state(0);
117 state->name = alloc_sname(name);
118 free_string(name);
119 state->data = expr;
120 return state;
123 void append(char *dest, const char *data, int buff_len)
125 strncat(dest, data, buff_len - strlen(dest) - 1);
129 * If you have "foo(a, b, 1);" then use
130 * get_argument_from_call_expr(expr, 0) to return the expression for
131 * a. Yes, it does start counting from 0.
133 struct expression *get_argument_from_call_expr(struct expression_list *args,
134 int num)
136 struct expression *expr;
137 int i = 0;
139 if (!args)
140 return NULL;
142 FOR_EACH_PTR(args, expr) {
143 if (i == num)
144 return expr;
145 i++;
146 } END_FOR_EACH_PTR(expr);
147 return NULL;
150 struct expression *get_array_expr(struct expression *expr)
152 struct expression *parent;
153 struct symbol *type;
155 if (expr->type != EXPR_BINOP || expr->op != '+')
156 return NULL;
158 type = get_type(expr->left);
159 if (!type)
160 return NULL;
161 if (type->type == SYM_ARRAY)
162 return expr->left;
163 if (type->type != SYM_PTR)
164 return NULL;
166 parent = expr_get_parent_expr(expr);
167 if (!parent) /* Sometimes we haven't set up the ->parent yet. FIXME!! */
168 return expr->left;
169 if (parent->type == EXPR_PREOP && parent->op == '*')
170 return expr->left;
172 return NULL;
175 static void __get_variable_from_expr(struct symbol **sym_ptr, char *buf,
176 struct expression *expr, int len,
177 int *complicated)
179 if (!expr) {
180 /* can't happen on valid code */
181 *complicated = 1;
182 return;
185 switch (expr->type) {
186 case EXPR_DEREF: {
187 struct expression *deref;
188 int op;
190 deref = expr->deref;
191 op = deref->op;
192 if (deref->type == EXPR_PREOP && op == '*') {
193 struct expression *unop = strip_expr(deref->unop);
195 if (unop->type == EXPR_PREOP && unop->op == '&') {
196 deref = unop->unop;
197 op = '.';
198 } else {
199 if (!is_pointer(deref) && !is_pointer(deref->unop))
200 op = '.';
201 deref = deref->unop;
205 __get_variable_from_expr(sym_ptr, buf, deref, len, complicated);
207 if (op == '*')
208 append(buf, "->", len);
209 else
210 append(buf, ".", len);
212 if (expr->member)
213 append(buf, expr->member->name, len);
214 else
215 append(buf, "unknown_member", len);
217 return;
219 case EXPR_SYMBOL:
220 if (expr->symbol_name)
221 append(buf, expr->symbol_name->name, len);
222 if (sym_ptr) {
223 if (*sym_ptr)
224 *complicated = 1;
225 *sym_ptr = expr->symbol;
227 return;
228 case EXPR_PREOP: {
229 const char *tmp;
231 if (get_expression_statement(expr)) {
232 *complicated = 2;
233 return;
236 if (expr->op == '(') {
237 if (expr->unop->type != EXPR_SYMBOL)
238 append(buf, "(", len);
239 } else if (expr->op != '*' || !get_array_expr(expr->unop)) {
240 tmp = show_special(expr->op);
241 append(buf, tmp, len);
243 __get_variable_from_expr(sym_ptr, buf, expr->unop,
244 len, complicated);
246 if (expr->op == '(' && expr->unop->type != EXPR_SYMBOL)
247 append(buf, ")", len);
249 if (expr->op == SPECIAL_DECREMENT ||
250 expr->op == SPECIAL_INCREMENT)
251 *complicated = 1;
253 return;
255 case EXPR_POSTOP: {
256 const char *tmp;
258 __get_variable_from_expr(sym_ptr, buf, expr->unop,
259 len, complicated);
260 tmp = show_special(expr->op);
261 append(buf, tmp, len);
263 if (expr->op == SPECIAL_DECREMENT || expr->op == SPECIAL_INCREMENT)
264 *complicated = 1;
265 return;
267 case EXPR_ASSIGNMENT:
268 case EXPR_COMPARE:
269 case EXPR_LOGICAL:
270 case EXPR_BINOP: {
271 char tmp[10];
272 struct expression *array_expr;
274 *complicated = 1;
275 array_expr = get_array_expr(expr);
276 if (array_expr) {
277 __get_variable_from_expr(sym_ptr, buf, array_expr, len, complicated);
278 append(buf, "[", len);
279 } else {
280 __get_variable_from_expr(sym_ptr, buf, expr->left, len, complicated);
281 snprintf(tmp, sizeof(tmp), " %s ", show_special(expr->op));
282 append(buf, tmp, len);
284 __get_variable_from_expr(NULL, buf, expr->right, len, complicated);
285 if (array_expr)
286 append(buf, "]", len);
287 return;
289 case EXPR_VALUE: {
290 sval_t sval = {};
291 char tmp[25];
293 *complicated = 1;
294 if (!get_value(expr, &sval))
295 return;
296 snprintf(tmp, 25, "%s", sval_to_numstr(sval));
297 append(buf, tmp, len);
298 return;
300 case EXPR_FVALUE: {
301 sval_t sval = {};
302 char tmp[25];
304 *complicated = 1;
305 if (!get_value(expr, &sval))
306 return;
307 snprintf(tmp, 25, "%s", sval_to_numstr(sval));
308 append(buf, tmp, len);
309 return;
311 case EXPR_STRING:
312 append(buf, "\"", len);
313 if (expr->string)
314 append(buf, expr->string->data, len);
315 append(buf, "\"", len);
316 return;
317 case EXPR_CALL: {
318 struct expression *tmp;
319 int i;
321 *complicated = 1;
322 __get_variable_from_expr(NULL, buf, expr->fn, len, complicated);
323 append(buf, "(", len);
324 i = 0;
325 FOR_EACH_PTR(expr->args, tmp) {
326 if (i++)
327 append(buf, ", ", len);
328 __get_variable_from_expr(NULL, buf, tmp, len, complicated);
329 } END_FOR_EACH_PTR(tmp);
330 append(buf, ")", len);
331 return;
333 case EXPR_CAST:
334 case EXPR_FORCE_CAST:
335 __get_variable_from_expr(sym_ptr, buf,
336 expr->cast_expression, len,
337 complicated);
338 return;
339 case EXPR_SIZEOF: {
340 sval_t sval;
341 int size;
342 char tmp[25];
344 if (expr->cast_type && get_base_type(expr->cast_type)) {
345 size = type_bytes(get_base_type(expr->cast_type));
346 snprintf(tmp, 25, "%d", size);
347 append(buf, tmp, len);
348 } else if (get_value(expr, &sval)) {
349 snprintf(tmp, 25, "%s", sval_to_str(sval));
350 append(buf, tmp, len);
352 return;
354 case EXPR_IDENTIFIER:
355 *complicated = 1;
356 if (expr->expr_ident)
357 append(buf, expr->expr_ident->name, len);
358 return;
359 case EXPR_SELECT:
360 case EXPR_CONDITIONAL:
361 *complicated = 1;
362 append(buf, "(", len);
363 __get_variable_from_expr(NULL, buf, expr->conditional, len, complicated);
364 append(buf, ") ?", len);
365 if (expr->cond_true)
366 __get_variable_from_expr(NULL, buf, expr->cond_true, len, complicated);
367 append(buf, ":", len);
368 __get_variable_from_expr(NULL, buf, expr->cond_false, len, complicated);
369 return;
370 default: {
371 char tmp[64];
373 snprintf(tmp, sizeof(tmp), "$expr_%p(%d)", expr, expr->type);
374 append(buf, tmp, len);
375 *complicated = 1;
377 return;
381 struct expr_str_cache_results {
382 struct expression *expr;
383 char str[VAR_LEN];
384 struct symbol *sym;
385 int complicated;
388 static void get_variable_from_expr(struct symbol **sym_ptr, char *buf,
389 struct expression *expr, int len,
390 int *complicated)
392 static struct expr_str_cache_results cached[8];
393 struct symbol *tmp_sym = NULL;
394 static int idx;
395 int i;
397 for (i = 0; i < ARRAY_SIZE(cached); i++) {
398 if (expr == cached[i].expr) {
399 strncpy(buf, cached[i].str, len);
400 if (sym_ptr)
401 *sym_ptr = cached[i].sym;
402 *complicated = cached[i].complicated;
403 return;
407 __get_variable_from_expr(&tmp_sym, buf, expr, len, complicated);
408 if (sym_ptr)
409 *sym_ptr = tmp_sym;
411 if (expr->smatch_flags & Tmp)
412 return;
414 cached[idx].expr = expr;
415 strncpy(cached[idx].str, buf, VAR_LEN);
416 cached[idx].sym = tmp_sym;
417 cached[idx].complicated = *complicated;
419 idx = (idx + 1) % ARRAY_SIZE(cached);
423 * This is returns a stylized "c looking" representation of the
424 * variable name.
426 * It uses the same buffer every time so you have to save the result
427 * yourself if you want to keep it.
431 char *expr_to_str_sym(struct expression *expr, struct symbol **sym_ptr)
433 static char var_name[VAR_LEN];
434 int complicated = 0;
436 if (sym_ptr)
437 *sym_ptr = NULL;
438 var_name[0] = '\0';
440 if (!expr)
441 return NULL;
442 get_variable_from_expr(sym_ptr, var_name, expr, sizeof(var_name),
443 &complicated);
444 if (complicated < 2)
445 return alloc_string(var_name);
446 else
447 return NULL;
450 char *expr_to_str(struct expression *expr)
452 return expr_to_str_sym(expr, NULL);
456 * get_variable_from_expr_simple() only returns simple variables.
457 * If it's a complicated variable like a->foo[x] instead of just 'a->foo'
458 * then it returns NULL.
460 char *expr_to_var_sym(struct expression *expr,
461 struct symbol **sym_ptr)
463 static char var_name[VAR_LEN];
464 int complicated = 0;
466 if (sym_ptr)
467 *sym_ptr = NULL;
468 var_name[0] = '\0';
470 if (!expr)
471 return NULL;
472 expr = strip_expr(expr);
473 get_variable_from_expr(sym_ptr, var_name, expr, sizeof(var_name),
474 &complicated);
476 if (complicated) {
477 if (sym_ptr)
478 *sym_ptr = NULL;
479 return NULL;
481 return alloc_string(var_name);
484 char *expr_to_var(struct expression *expr)
486 return expr_to_var_sym(expr, NULL);
489 struct symbol *expr_to_sym(struct expression *expr)
491 struct symbol *sym;
492 char *name;
494 name = expr_to_var_sym(expr, &sym);
495 free_string(name);
496 return sym;
499 int get_complication_score(struct expression *expr)
501 expr = strip_expr(expr);
504 * Don't forget to keep get_complication_score() and store_all_links()
505 * in sync.
509 if (!expr)
510 return 990;
512 switch (expr->type) {
513 case EXPR_CALL:
514 return 991;
515 case EXPR_COMPARE:
516 case EXPR_BINOP:
517 return get_complication_score(expr->left) +
518 get_complication_score(expr->right);
519 case EXPR_SYMBOL:
520 return 1;
521 case EXPR_PREOP:
522 if (expr->op == '*' || expr->op == '(')
523 return get_complication_score(expr->unop);
524 return 993;
525 case EXPR_DEREF:
526 return get_complication_score(expr->deref);
527 case EXPR_VALUE:
528 case EXPR_SIZEOF:
529 return 0;
530 default:
531 return 994;
535 struct expression *reorder_expr_alphabetically(struct expression *expr)
537 struct expression *ret;
538 char *left, *right;
540 if (expr->type != EXPR_BINOP)
541 return expr;
542 if (expr->op != '+' && expr->op != '*')
543 return expr;
545 left = expr_to_var(expr->left);
546 right = expr_to_var(expr->right);
547 ret = expr;
548 if (!left || !right)
549 goto free;
550 if (strcmp(left, right) <= 0)
551 goto free;
553 ret = binop_expression(expr->right, expr->op, expr->left);
554 free:
555 free_string(left);
556 free_string(right);
558 return ret;
561 char *expr_to_chunk_helper(struct expression *expr, struct symbol **sym, struct var_sym_list **vsl)
563 struct var_sym_list *tmp_vsl;
564 char *name;
565 struct symbol *tmp;
566 int score;
568 if (vsl)
569 *vsl = NULL;
570 if (sym)
571 *sym = NULL;
573 expr = strip_parens(expr);
574 if (!expr)
575 return NULL;
577 name = expr_to_var_sym(expr, &tmp);
578 if (name && tmp) {
579 if (sym)
580 *sym = tmp;
581 if (vsl)
582 add_var_sym(vsl, name, tmp);
583 return name;
585 free_string(name);
587 score = get_complication_score(expr);
588 if (score <= 0 || score > 2)
589 return NULL;
591 tmp_vsl = expr_to_vsl(expr);
592 if (vsl) {
593 *vsl = tmp_vsl;
594 if (!*vsl)
595 return NULL;
597 if (sym) {
598 if (ptr_list_size((struct ptr_list *)tmp_vsl) == 1) {
599 struct var_sym *vs;
601 vs = first_ptr_list((struct ptr_list *)tmp_vsl);
602 *sym = vs->sym;
606 expr = reorder_expr_alphabetically(expr);
608 return expr_to_str(expr);
611 char *expr_to_known_chunk_sym(struct expression *expr, struct symbol **sym)
613 return expr_to_chunk_helper(expr, sym, NULL);
616 char *expr_to_chunk_sym_vsl(struct expression *expr, struct symbol **sym, struct var_sym_list **vsl)
618 return expr_to_chunk_helper(expr, sym, vsl);
621 int sym_name_is(const char *name, struct expression *expr)
623 if (!expr)
624 return 0;
625 if (expr->type != EXPR_SYMBOL)
626 return 0;
627 if (!strcmp(expr->symbol_name->name, name))
628 return 1;
629 return 0;
632 int expr_is_zero(struct expression *expr)
634 sval_t sval;
636 if (get_value(expr, &sval) && sval.value == 0)
637 return 1;
638 return 0;
641 int is_array(struct expression *expr)
643 struct symbol *type;
645 expr = strip_expr(expr);
646 if (!expr)
647 return 0;
649 if (expr->type == EXPR_PREOP && expr->op == '*') {
650 expr = strip_expr(expr->unop);
651 if (!expr)
652 return 0;
653 if (expr->type == EXPR_BINOP && expr->op == '+')
654 return 1;
657 if (expr->type != EXPR_BINOP || expr->op != '+')
658 return 0;
660 type = get_type(expr->left);
661 if (!type || type->type != SYM_ARRAY)
662 return 0;
664 return 1;
667 struct expression *get_array_base(struct expression *expr)
669 if (!is_array(expr))
670 return NULL;
671 expr = strip_expr(expr);
672 if (expr->type == EXPR_PREOP && expr->op == '*')
673 expr = strip_expr(expr->unop);
674 if (expr->type != EXPR_BINOP || expr->op != '+')
675 return NULL;
676 return strip_parens(expr->left);
679 struct expression *get_array_offset(struct expression *expr)
681 if (!is_array(expr))
682 return NULL;
683 expr = strip_expr(expr);
684 if (expr->type == EXPR_PREOP && expr->op == '*')
685 expr = strip_expr(expr->unop);
686 if (expr->type != EXPR_BINOP || expr->op != '+')
687 return NULL;
688 return strip_parens(expr->right);
691 const char *show_state(struct smatch_state *state)
693 if (!state)
694 return NULL;
695 return state->name;
698 struct statement *get_expression_statement(struct expression *expr)
700 /* What are those things called? if (({....; ret;})) { ...*/
702 if (expr->type != EXPR_PREOP)
703 return NULL;
704 if (expr->op != '(')
705 return NULL;
706 if (!expr->unop)
707 return NULL;
708 if (expr->unop->type != EXPR_STATEMENT)
709 return NULL;
710 if (expr->unop->statement->type != STMT_COMPOUND)
711 return NULL;
712 return expr->unop->statement;
715 struct expression *strip_parens(struct expression *expr)
717 if (!expr)
718 return NULL;
720 if (expr->type == EXPR_PREOP) {
721 if (!expr->unop)
722 return expr; /* parsing invalid code */
724 if (expr->op == '(' && expr->unop->type == EXPR_STATEMENT &&
725 expr->unop->statement->type == STMT_COMPOUND)
726 return expr;
727 if (expr->op == '(')
728 return strip_parens(expr->unop);
730 return expr;
733 static struct expression *strip_expr_helper(struct expression *expr, bool set_parent)
735 if (!expr)
736 return NULL;
738 switch (expr->type) {
739 case EXPR_FORCE_CAST:
740 case EXPR_CAST:
741 if (set_parent)
742 expr_set_parent_expr(expr->cast_expression, expr);
744 if (!expr->cast_expression)
745 return expr;
746 return strip_expr_helper(expr->cast_expression, set_parent);
747 case EXPR_PREOP: {
748 struct expression *unop;
750 if (!expr->unop) /* parsing invalid code */
751 return expr;
752 if (set_parent)
753 expr_set_parent_expr(expr->unop, expr);
756 if (expr->op == '(' && expr->unop->type == EXPR_STATEMENT &&
757 expr->unop->statement->type == STMT_COMPOUND)
758 return expr;
760 unop = strip_expr_helper(expr->unop, set_parent);
762 if (expr->op == '*' && unop &&
763 unop->type == EXPR_PREOP && unop->op == '&') {
764 struct symbol *type = get_type(unop->unop);
766 if (type && type->type == SYM_ARRAY)
767 return expr;
768 return strip_expr_helper(unop->unop, set_parent);
771 if (expr->op == '(')
772 return unop;
774 return expr;
776 case EXPR_CONDITIONAL:
777 if (known_condition_true(expr->conditional)) {
778 if (expr->cond_true) {
779 if (set_parent)
780 expr_set_parent_expr(expr->cond_true, expr);
781 return strip_expr_helper(expr->cond_true, set_parent);
783 if (set_parent)
784 expr_set_parent_expr(expr->conditional, expr);
785 return strip_expr_helper(expr->conditional, set_parent);
787 if (known_condition_false(expr->conditional)) {
788 if (set_parent)
789 expr_set_parent_expr(expr->cond_false, expr);
790 return strip_expr_helper(expr->cond_false, set_parent);
792 return expr;
793 case EXPR_CALL:
794 if (sym_name_is("__builtin_expect", expr->fn) ||
795 sym_name_is("__builtin_bswap16", expr->fn) ||
796 sym_name_is("__builtin_bswap32", expr->fn) ||
797 sym_name_is("__builtin_bswap64", expr->fn)) {
798 expr = get_argument_from_call_expr(expr->args, 0);
799 return strip_expr_helper(expr, set_parent);
801 return expr;
803 return expr;
806 struct expression *strip_expr(struct expression *expr)
808 return strip_expr_helper(expr, false);
811 struct expression *strip_expr_set_parent(struct expression *expr)
813 return strip_expr_helper(expr, true);
816 static void delete_state_tracker(struct tracker *t)
818 __delete_state(t->owner, t->name, t->sym);
819 __free_tracker(t);
822 void scoped_state(int my_id, const char *name, struct symbol *sym)
824 struct tracker *t;
826 t = alloc_tracker(my_id, name, sym);
827 add_scope_hook((scope_hook *)&delete_state_tracker, t);
830 int is_error_return(struct expression *expr)
832 struct symbol *cur_func = cur_func_sym;
833 struct range_list *rl;
834 sval_t sval;
836 if (!expr)
837 return 0;
838 if (cur_func->type != SYM_NODE)
839 return 0;
840 cur_func = get_base_type(cur_func);
841 if (cur_func->type != SYM_FN)
842 return 0;
843 cur_func = get_base_type(cur_func);
844 if (cur_func == &void_ctype)
845 return 0;
846 if (option_project == PROJ_KERNEL &&
847 get_implied_rl(expr, &rl) &&
848 rl_type(rl) == &int_ctype &&
849 sval_is_negative(rl_min(rl)) &&
850 rl_max(rl).value == -1)
851 return 1;
852 if (!get_implied_value(expr, &sval))
853 return 0;
854 if (sval.value < 0)
855 return 1;
856 if (cur_func->type == SYM_PTR && sval.value == 0)
857 return 1;
858 return 0;
861 int getting_address(struct expression *expr)
863 int deref_count = 0;
865 while ((expr = expr_get_parent_expr(expr))) {
866 if (expr->type == EXPR_PREOP && expr->op == '*') {
867 /* &foo->bar->baz dereferences "foo->bar" */
868 if (deref_count == 0)
869 deref_count++;
870 return false;
872 if (expr->type == EXPR_PREOP && expr->op == '&')
873 return true;
875 return false;
878 int get_struct_and_member(struct expression *expr, const char **type, const char **member)
880 struct symbol *sym;
882 expr = strip_expr(expr);
883 if (expr->type != EXPR_DEREF)
884 return 0;
885 if (!expr->member)
886 return 0;
888 sym = get_type(expr->deref);
889 if (!sym)
890 return 0;
891 if (sym->type == SYM_UNION)
892 return 0;
893 if (!sym->ident)
894 return 0;
896 *type = sym->ident->name;
897 *member = expr->member->name;
898 return 1;
901 char *get_member_name(struct expression *expr)
903 char buf[256];
904 struct symbol *sym;
906 expr = strip_expr(expr);
907 if (!expr || expr->type != EXPR_DEREF)
908 return NULL;
909 if (!expr->member)
910 return NULL;
912 sym = get_type(expr->deref);
913 if (!sym)
914 return NULL;
915 if (sym->type == SYM_UNION) {
916 snprintf(buf, sizeof(buf), "(union %s)->%s",
917 sym->ident ? sym->ident->name : "anonymous",
918 expr->member->name);
919 return alloc_string(buf);
921 if (!sym->ident) {
922 struct expression *deref;
923 char *full, *outer;
924 int len;
927 * If we're in an anonymous struct then maybe we can find an
928 * outer struct name to use as a name. This code should be
929 * recursive and cleaner. I am not very proud of it.
933 deref = expr->deref;
934 if (deref->type != EXPR_DEREF || !deref->member)
935 return NULL;
936 sym = get_type(deref->deref);
937 if (!sym || sym->type != SYM_STRUCT || !sym->ident)
938 return NULL;
940 full = expr_to_str(expr);
941 if (!full)
942 return NULL;
943 deref = deref->deref;
944 if (deref->type == EXPR_PREOP && deref->op == '*')
945 deref = deref->unop;
946 outer = expr_to_str(deref);
947 if (!outer) {
948 free_string(full);
949 return NULL;
951 len = strlen(outer);
952 if (strncmp(outer, full, len) != 0) {
953 free_string(full);
954 free_string(outer);
955 return NULL;
957 if (full[len] == '-' && full[len + 1] == '>')
958 len += 2;
959 if (full[len] == '.')
960 len++;
961 snprintf(buf, sizeof(buf), "(struct %s)->%s", sym->ident->name, full + len);
962 free_string(outer);
963 free_string(full);
965 return alloc_string(buf);
967 snprintf(buf, sizeof(buf), "(struct %s)->%s", sym->ident->name, expr->member->name);
968 return alloc_string(buf);
971 int cmp_pos(struct position pos1, struct position pos2)
973 /* the stream position is ... */
974 if (pos1.stream > pos2.stream)
975 return -1;
976 if (pos1.stream < pos2.stream)
977 return 1;
979 if (pos1.line < pos2.line)
980 return -1;
981 if (pos1.line > pos2.line)
982 return 1;
984 if (pos1.pos < pos2.pos)
985 return -1;
986 if (pos1.pos > pos2.pos)
987 return 1;
989 return 0;
992 int positions_eq(struct position pos1, struct position pos2)
994 if (pos1.line != pos2.line)
995 return 0;
996 if (pos1.pos != pos2.pos)
997 return 0;
998 if (pos1.stream != pos2.stream)
999 return 0;
1000 return 1;
1003 struct statement *get_current_statement(void)
1005 struct statement *prev, *tmp;
1007 prev = last_ptr_list((struct ptr_list *)big_statement_stack);
1009 if (!prev || !get_macro_name(prev->pos))
1010 return prev;
1012 FOR_EACH_PTR_REVERSE(big_statement_stack, tmp) {
1013 if (positions_eq(tmp->pos, prev->pos))
1014 continue;
1015 if (prev->pos.line > tmp->pos.line)
1016 return prev;
1017 return tmp;
1018 } END_FOR_EACH_PTR_REVERSE(tmp);
1019 return prev;
1022 struct statement *get_prev_statement(void)
1024 struct statement *tmp;
1025 int i;
1027 i = 0;
1028 FOR_EACH_PTR_REVERSE(big_statement_stack, tmp) {
1029 if (i++ == 1)
1030 return tmp;
1031 } END_FOR_EACH_PTR_REVERSE(tmp);
1032 return NULL;
1035 struct expression *get_last_expr_from_expression_stmt(struct expression *expr)
1037 struct statement *stmt;
1038 struct statement *last_stmt;
1040 while (expr->type == EXPR_PREOP && expr->op == '(')
1041 expr = expr->unop;
1042 if (expr->type != EXPR_STATEMENT)
1043 return NULL;
1044 stmt = expr->statement;
1045 if (!stmt)
1046 return NULL;
1047 if (stmt->type == STMT_COMPOUND) {
1048 last_stmt = last_ptr_list((struct ptr_list *)stmt->stmts);
1049 if (!last_stmt)
1050 return NULL;
1051 if (last_stmt->type == STMT_LABEL)
1052 last_stmt = last_stmt->label_statement;
1053 if (last_stmt->type != STMT_EXPRESSION)
1054 return NULL;
1055 return last_stmt->expression;
1057 if (stmt->type == STMT_EXPRESSION)
1058 return stmt->expression;
1059 return NULL;
1062 int ms_since(struct timeval *start)
1064 struct timeval end;
1065 double diff;
1067 gettimeofday(&end, NULL);
1068 diff = (end.tv_sec - start->tv_sec) * 1000.0;
1069 diff += (end.tv_usec - start->tv_usec) / 1000.0;
1070 return (int)diff;
1073 int parent_is_gone_var_sym(const char *name, struct symbol *sym)
1075 if (!name || !sym)
1076 return 0;
1078 if (parent_is_err_or_null_var_sym(name, sym) ||
1079 parent_is_free_var_sym(name, sym))
1080 return 1;
1081 return 0;
1084 int parent_is_gone(struct expression *expr)
1086 struct symbol *sym;
1087 char *var;
1088 int ret = 0;
1090 expr = strip_expr(expr);
1091 var = expr_to_var_sym(expr, &sym);
1092 if (!var || !sym)
1093 goto free;
1094 ret = parent_is_gone_var_sym(var, sym);
1095 free:
1096 free_string(var);
1097 return ret;
1100 int invert_op(int op)
1102 switch (op) {
1103 case '*':
1104 return '/';
1105 case '/':
1106 return '*';
1107 case '+':
1108 return '-';
1109 case '-':
1110 return '+';
1111 case SPECIAL_LEFTSHIFT:
1112 return SPECIAL_RIGHTSHIFT;
1113 case SPECIAL_RIGHTSHIFT:
1114 return SPECIAL_LEFTSHIFT;
1116 return 0;
1119 int op_remove_assign(int op)
1121 switch (op) {
1122 case SPECIAL_ADD_ASSIGN:
1123 return '+';
1124 case SPECIAL_SUB_ASSIGN:
1125 return '-';
1126 case SPECIAL_MUL_ASSIGN:
1127 return '*';
1128 case SPECIAL_DIV_ASSIGN:
1129 return '/';
1130 case SPECIAL_MOD_ASSIGN:
1131 return '%';
1132 case SPECIAL_AND_ASSIGN:
1133 return '&';
1134 case SPECIAL_OR_ASSIGN:
1135 return '|';
1136 case SPECIAL_XOR_ASSIGN:
1137 return '^';
1138 case SPECIAL_SHL_ASSIGN:
1139 return SPECIAL_LEFTSHIFT;
1140 case SPECIAL_SHR_ASSIGN:
1141 return SPECIAL_RIGHTSHIFT;
1142 default:
1143 return op;
1147 int expr_equiv(struct expression *one, struct expression *two)
1149 struct symbol *one_sym = NULL;
1150 struct symbol *two_sym = NULL;
1151 char *one_name = NULL;
1152 char *two_name = NULL;
1153 int ret = 0;
1155 if (!one || !two)
1156 return 0;
1157 if (one->type != two->type)
1158 return 0;
1159 if (is_fake_call(one) || is_fake_call(two))
1160 return 0;
1162 one_name = expr_to_str_sym(one, &one_sym);
1163 if (!one_name)
1164 goto free;
1165 two_name = expr_to_str_sym(two, &two_sym);
1166 if (!two_name)
1167 goto free;
1168 if (one_sym != two_sym)
1169 goto free;
1171 * This is a terrible hack because expr_to_str() sometimes gives up in
1172 * the middle and just returns what it has. If you see a () you know
1173 * the string is bogus.
1175 if (strstr(one_name, "()"))
1176 goto free;
1177 if (strcmp(one_name, two_name) == 0)
1178 ret = 1;
1179 free:
1180 free_string(one_name);
1181 free_string(two_name);
1182 return ret;
1185 void push_int(struct int_stack **stack, int num)
1187 int *munged;
1190 * Just put the int on directly instead of a pointer to the int.
1191 * Shift it to the left because Sparse uses the last two bits.
1192 * This is sort of a dirty hack, yes.
1195 munged = INT_PTR(num << 2);
1197 add_ptr_list(stack, munged);
1200 int pop_int(struct int_stack **stack)
1202 int *num;
1204 num = last_ptr_list((struct ptr_list *)*stack);
1205 delete_ptr_list_last((struct ptr_list **)stack);
1207 return PTR_INT(num) >> 2;