2 * Copyright (C) 2009 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 * The idea here is that you have an expression and you
20 * want to know what the type is for that.
24 #include "smatch_slist.h"
26 struct symbol
*get_real_base_type(struct symbol
*sym
)
32 if (sym
->type
== SYM_BASETYPE
)
34 ret
= get_base_type(sym
);
37 if (ret
->type
== SYM_RESTRICT
|| ret
->type
== SYM_NODE
)
38 return get_real_base_type(ret
);
42 int type_bytes(struct symbol
*type
)
46 if (type
&& type
->type
== SYM_ARRAY
)
47 return array_bytes(type
);
49 bits
= type_bits(type
);
52 return bits_to_bytes(bits
);
55 int array_bytes(struct symbol
*type
)
57 if (!type
|| type
->type
!= SYM_ARRAY
)
59 if (!type
->array_size
)
61 return bits_to_bytes(type
->bit_size
);
64 static struct symbol
*get_binop_type(struct expression
*expr
)
66 struct symbol
*left
, *right
;
68 left
= get_type(expr
->left
);
72 if (expr
->op
== SPECIAL_LEFTSHIFT
||
73 expr
->op
== SPECIAL_RIGHTSHIFT
) {
74 if (type_positive_bits(left
) < 31)
78 right
= get_type(expr
->right
);
82 if (type_is_fp(left
)) {
83 if (type_is_fp(right
)) {
84 if (type_bits(left
) > type_bits(right
))
91 if (type_is_fp(right
)) {
92 if (type_is_fp(left
)) {
93 if (type_bits(right
) > type_bits(left
))
100 if (expr
->op
== '-' &&
101 (is_ptr_type(left
) && is_ptr_type(right
)))
102 return ssize_t_ctype
;
104 if (left
->type
== SYM_PTR
|| left
->type
== SYM_ARRAY
)
106 if (right
->type
== SYM_PTR
|| right
->type
== SYM_ARRAY
)
109 if (type_positive_bits(left
) < 31 && type_positive_bits(right
) < 31)
112 if (type_positive_bits(left
) > type_positive_bits(right
))
117 static struct symbol
*get_type_symbol(struct expression
*expr
)
119 if (!expr
|| expr
->type
!= EXPR_SYMBOL
|| !expr
->symbol
)
122 return get_real_base_type(expr
->symbol
);
125 static struct symbol
*get_member_symbol(struct symbol_list
*symbol_list
, struct ident
*member
)
127 struct symbol
*tmp
, *sub
;
129 FOR_EACH_PTR(symbol_list
, tmp
) {
131 sub
= get_real_base_type(tmp
);
132 sub
= get_member_symbol(sub
->symbol_list
, member
);
137 if (tmp
->ident
== member
)
139 } END_FOR_EACH_PTR(tmp
);
144 static struct symbol
*get_symbol_from_deref(struct expression
*expr
)
146 struct ident
*member
;
149 if (!expr
|| expr
->type
!= EXPR_DEREF
)
152 member
= expr
->member
;
153 sym
= get_type(expr
->deref
);
155 // sm_msg("could not find struct type");
158 if (sym
->type
== SYM_PTR
)
159 sym
= get_real_base_type(sym
);
160 sym
= get_member_symbol(sym
->symbol_list
, member
);
163 return get_real_base_type(sym
);
166 static struct symbol
*handle__builtin_choose_expr(struct expression
*expr
)
168 struct expression
*const_expr
, *expr1
, *expr2
;
171 const_expr
= get_argument_from_call_expr(expr
->args
, 0);
172 expr1
= get_argument_from_call_expr(expr
->args
, 1);
173 expr2
= get_argument_from_call_expr(expr
->args
, 2);
175 if (!get_value(const_expr
, &sval
) || !expr1
|| !expr2
)
178 return get_type(expr1
);
180 return get_type(expr2
);
183 static struct symbol
*get_return_type(struct expression
*expr
)
187 if (sym_name_is("__builtin_choose_expr", expr
->fn
))
188 return handle__builtin_choose_expr(expr
);
190 tmp
= get_type(expr
->fn
);
193 /* this is to handle __builtin_constant_p() */
194 if (tmp
->type
!= SYM_FN
)
195 tmp
= get_base_type(tmp
);
196 return get_real_base_type(tmp
);
199 static struct symbol
*get_expr_stmt_type(struct statement
*stmt
)
201 if (stmt
->type
!= STMT_COMPOUND
)
203 stmt
= last_ptr_list((struct ptr_list
*)stmt
->stmts
);
204 if (stmt
->type
== STMT_LABEL
)
205 stmt
= stmt
->label_statement
;
206 if (stmt
->type
!= STMT_EXPRESSION
)
208 return get_type(stmt
->expression
);
211 static struct symbol
*get_select_type(struct expression
*expr
)
213 struct symbol
*one
, *two
;
215 one
= get_type(expr
->cond_true
);
216 two
= get_type(expr
->cond_false
);
220 * This is a hack. If the types are not equiv then we
221 * really don't know the type. But I think guessing is
224 if (type_positive_bits(one
) > type_positive_bits(two
))
229 struct symbol
*get_pointer_type(struct expression
*expr
)
233 sym
= get_type(expr
);
236 if (sym
->type
== SYM_NODE
) {
237 sym
= get_real_base_type(sym
);
241 if (sym
->type
!= SYM_PTR
&& sym
->type
!= SYM_ARRAY
)
243 return get_real_base_type(sym
);
246 static struct symbol
*fake_pointer_sym(struct expression
*expr
)
251 sym
= alloc_symbol(expr
->pos
, SYM_PTR
);
253 base
= get_type(expr
);
256 sym
->ctype
.base_type
= base
;
260 static struct symbol
*get_type_helper(struct expression
*expr
)
264 expr
= strip_parens(expr
);
271 switch (expr
->type
) {
276 ret
= get_type_symbol(expr
);
279 ret
= get_symbol_from_deref(expr
);
284 ret
= fake_pointer_sym(expr
);
285 else if (expr
->op
== '*')
286 ret
= get_pointer_type(expr
->unop
);
288 ret
= get_type(expr
->unop
);
290 case EXPR_ASSIGNMENT
:
291 ret
= get_type(expr
->left
);
294 case EXPR_FORCE_CAST
:
295 case EXPR_IMPLIED_CAST
:
296 ret
= get_real_base_type(expr
->cast_type
);
300 ret
= get_binop_type(expr
);
303 ret
= get_return_type(expr
);
306 ret
= get_expr_stmt_type(expr
->statement
);
308 case EXPR_CONDITIONAL
:
310 ret
= get_select_type(expr
);
325 if (ret
&& ret
->type
== SYM_TYPEOF
)
326 ret
= get_type(ret
->initializer
);
332 static struct symbol
*get_final_type_helper(struct expression
*expr
)
335 * The problem is that I wrote a bunch of Smatch to think that
336 * you could do get_type() on an expression and it would give
337 * you what the comparison was type promoted to. This is wrong
338 * but fixing it is a big of work... Hence this horrible hack.
342 expr
= strip_parens(expr
);
346 if (expr
->type
== EXPR_COMPARE
)
352 struct symbol
*get_type(struct expression
*expr
)
354 return get_type_helper(expr
);
357 struct symbol
*get_final_type(struct expression
*expr
)
361 ret
= get_final_type_helper(expr
);
364 return get_type_helper(expr
);
367 struct symbol
*get_promoted_type(struct symbol
*left
, struct symbol
*right
)
369 struct symbol
*ret
= &int_ctype
;
371 if (type_positive_bits(left
) > type_positive_bits(ret
))
373 if (type_positive_bits(right
) > type_positive_bits(ret
))
376 if (type_is_ptr(left
))
378 if (type_is_ptr(right
))
384 int type_signed(struct symbol
*base_type
)
388 if (base_type
->ctype
.modifiers
& MOD_SIGNED
)
393 int expr_unsigned(struct expression
*expr
)
397 sym
= get_type(expr
);
400 if (type_unsigned(sym
))
405 int expr_signed(struct expression
*expr
)
409 sym
= get_type(expr
);
412 if (type_signed(sym
))
417 int returns_unsigned(struct symbol
*sym
)
421 sym
= get_base_type(sym
);
422 if (!sym
|| sym
->type
!= SYM_FN
)
424 sym
= get_base_type(sym
);
425 return type_unsigned(sym
);
428 int is_pointer(struct expression
*expr
)
430 return type_is_ptr(get_type(expr
));
433 int returns_pointer(struct symbol
*sym
)
437 sym
= get_base_type(sym
);
438 if (!sym
|| sym
->type
!= SYM_FN
)
440 sym
= get_base_type(sym
);
441 if (sym
&& sym
->type
== SYM_PTR
)
446 static sval_t
fp_max(struct symbol
*type
)
448 sval_t ret
= { .type
= type
};
450 if (type
== &float_ctype
)
451 ret
.fvalue
= FLT_MAX
;
452 else if (type
== &double_ctype
)
453 ret
.dvalue
= DBL_MAX
;
455 ret
.ldvalue
= LDBL_MAX
;
460 sval_t
sval_type_max(struct symbol
*base_type
)
464 if (type_is_fp(base_type
))
465 return fp_max(base_type
);
467 if (!base_type
|| !type_bits(base_type
))
468 base_type
= &llong_ctype
;
469 ret
.type
= base_type
;
471 ret
.value
= (~0ULL) >> (64 - type_positive_bits(base_type
));
475 static sval_t
fp_min(struct symbol
*type
)
477 sval_t ret
= { .type
= type
};
479 if (type
== &float_ctype
)
480 ret
.fvalue
= -FLT_MAX
;
481 else if (type
== &double_ctype
)
482 ret
.dvalue
= -DBL_MAX
;
484 ret
.ldvalue
= -LDBL_MAX
;
489 sval_t
sval_type_min(struct symbol
*base_type
)
493 if (type_is_fp(base_type
))
494 return fp_min(base_type
);
496 if (!base_type
|| !type_bits(base_type
))
497 base_type
= &llong_ctype
;
498 ret
.type
= base_type
;
500 if (type_unsigned(base_type
) || is_ptr_type(base_type
)) {
505 ret
.value
= (~0ULL) << type_positive_bits(base_type
);
510 int nr_bits(struct expression
*expr
)
514 type
= get_type(expr
);
517 return type_bits(type
);
520 int is_void_pointer(struct expression
*expr
)
524 type
= get_type(expr
);
525 if (!type
|| type
->type
!= SYM_PTR
)
527 type
= get_real_base_type(type
);
528 if (type
== &void_ctype
)
533 int is_char_pointer(struct expression
*expr
)
537 type
= get_type(expr
);
538 if (!type
|| type
->type
!= SYM_PTR
)
540 type
= get_real_base_type(type
);
541 if (type
== &char_ctype
)
546 int is_string(struct expression
*expr
)
548 expr
= strip_expr(expr
);
549 if (!expr
|| expr
->type
!= EXPR_STRING
)
556 bool is_struct_ptr(struct symbol
*type
)
558 if (!type
|| type
->type
!= SYM_PTR
)
560 type
= get_real_base_type(type
);
561 if (!type
|| type
->type
!= SYM_STRUCT
)
566 int is_static(struct expression
*expr
)
572 name
= expr_to_str_sym(expr
, &sym
);
576 if (sym
->ctype
.modifiers
& MOD_STATIC
)
583 static struct expression
*get_symbol_expr(struct expression
*expr
)
587 while (expr
&& expr
->type
== EXPR_DEREF
&& expr
->op
== '.')
588 expr
= strip_expr(expr
->deref
);
592 bool is_local_variable(struct expression
*expr
)
596 expr
= get_symbol_expr(expr
);
597 if (!expr
|| expr
->type
!= EXPR_SYMBOL
|| !expr
->symbol
)
600 if (!(sym
->ctype
.modifiers
& MOD_TOPLEVEL
))
605 int types_equiv(struct symbol
*one
, struct symbol
*two
)
611 if (one
->type
!= two
->type
)
613 if (one
->type
== SYM_PTR
)
614 return types_equiv(get_real_base_type(one
), get_real_base_type(two
));
615 if (type_positive_bits(one
) != type_positive_bits(two
))
620 bool type_fits(struct symbol
*type
, struct symbol
*test
)
628 if (type_bits(test
) > type_bits(type
))
630 if (type_signed(test
) && !type_signed(type
))
632 if (type_positive_bits(test
) > type_positive_bits(type
))
639 return !!(cur_func_sym
->ctype
.modifiers
& MOD_STATIC
);
642 const char *global_static(void)
644 if (cur_func_sym
->ctype
.modifiers
& MOD_STATIC
)
650 struct symbol
*cur_func_return_type(void)
654 sym
= get_real_base_type(cur_func_sym
);
655 if (!sym
|| sym
->type
!= SYM_FN
)
657 sym
= get_real_base_type(sym
);
661 struct symbol
*get_arg_type(struct expression
*fn
, int arg
)
663 struct symbol
*fn_type
;
665 struct symbol
*arg_type
;
668 fn_type
= get_type(fn
);
671 if (fn_type
->type
== SYM_PTR
)
672 fn_type
= get_real_base_type(fn_type
);
673 if (fn_type
->type
!= SYM_FN
)
677 FOR_EACH_PTR(fn_type
->arguments
, tmp
) {
678 arg_type
= get_real_base_type(tmp
);
683 } END_FOR_EACH_PTR(tmp
);
688 static struct symbol
*get_member_from_string(struct symbol_list
*symbol_list
, const char *name
)
690 struct symbol
*tmp
, *sub
;
693 if (strncmp(name
, ".", 1) == 0)
695 else if (strncmp(name
, "->", 2) == 0)
698 FOR_EACH_PTR(symbol_list
, tmp
) {
700 sub
= get_real_base_type(tmp
);
701 sub
= get_member_from_string(sub
->symbol_list
, name
);
707 if (strcmp(tmp
->ident
->name
, name
) == 0)
710 chunk_len
= tmp
->ident
->len
;
711 if (strncmp(tmp
->ident
->name
, name
, chunk_len
) == 0 &&
712 (name
[chunk_len
] == '.' || name
[chunk_len
] == '-')) {
713 sub
= get_real_base_type(tmp
);
714 if (sub
->type
== SYM_PTR
)
715 sub
= get_real_base_type(sub
);
716 return get_member_from_string(sub
->symbol_list
, name
+ chunk_len
);
719 } END_FOR_EACH_PTR(tmp
);
724 struct symbol
*get_member_type_from_key(struct expression
*expr
, const char *key
)
730 if (strcmp(key
, "$") == 0)
731 return get_type(expr
);
733 if (strcmp(key
, "*$") == 0) {
734 sym
= get_type(expr
);
735 if (!sym
|| sym
->type
!= SYM_PTR
)
737 return get_real_base_type(sym
);
740 sym
= get_type(expr
);
743 if (sym
->type
== SYM_PTR
)
744 sym
= get_real_base_type(sym
);
746 while (*key
== '*') {
755 sym
= get_member_from_string(sym
->symbol_list
, key
);
758 if (sym
->type
== SYM_RESTRICT
|| sym
->type
== SYM_NODE
)
759 sym
= get_real_base_type(sym
);
760 for (i
= 0; i
< star
; i
++) {
761 if (!sym
|| sym
->type
!= SYM_PTR
)
763 sym
= get_real_base_type(sym
);
768 struct symbol
*get_arg_type_from_key(struct expression
*fn
, int param
, struct expression
*arg
, const char *key
)
774 if (strcmp(key
, "$") == 0)
775 return get_arg_type(fn
, param
);
776 if (strcmp(key
, "*$") == 0) {
777 type
= get_arg_type(fn
, param
);
778 if (!type
|| type
->type
!= SYM_PTR
)
780 return get_real_base_type(type
);
782 return get_member_type_from_key(arg
, key
);
785 int is_struct(struct expression
*expr
)
789 type
= get_type(expr
);
790 if (type
&& type
->type
== SYM_STRUCT
)
799 {&bool_ctype
, "bool"},
800 {&void_ctype
, "void"},
801 {&type_ctype
, "type"},
802 {&char_ctype
, "char"},
803 {&schar_ctype
, "schar"},
804 {&uchar_ctype
, "uchar"},
805 {&short_ctype
, "short"},
806 {&sshort_ctype
, "sshort"},
807 {&ushort_ctype
, "ushort"},
809 {&sint_ctype
, "sint"},
810 {&uint_ctype
, "uint"},
811 {&long_ctype
, "long"},
812 {&slong_ctype
, "slong"},
813 {&ulong_ctype
, "ulong"},
814 {&llong_ctype
, "llong"},
815 {&sllong_ctype
, "sllong"},
816 {&ullong_ctype
, "ullong"},
817 {&int128_ctype
, "lllong"},
818 {&sint128_ctype
, "slllong"},
819 {&uint128_ctype
, "ulllong"},
820 {&float_ctype
, "float"},
821 {&double_ctype
, "double"},
822 {&ldouble_ctype
, "ldouble"},
823 {&string_ctype
, "string"},
825 {&lazy_ptr_ctype
, "lazy_ptr"},
826 {&incomplete_ctype
, "incomplete"},
827 {&label_ctype
, "label"},
829 {&null_ctype
, "null"},
832 static const char *base_type_str(struct symbol
*sym
)
836 for (i
= 0; i
< ARRAY_SIZE(base_types
); i
++) {
837 if (sym
== base_types
[i
].sym
)
838 return base_types
[i
].name
;
843 static int type_str_helper(char *buf
, int size
, struct symbol
*type
)
848 return snprintf(buf
, size
, "<null type>");
850 if (type
->type
== SYM_BASETYPE
) {
851 return snprintf(buf
, size
, "%s", base_type_str(type
));
852 } else if (type
->type
== SYM_PTR
) {
853 type
= get_real_base_type(type
);
854 n
= type_str_helper(buf
, size
, type
);
857 return n
+ snprintf(buf
+ n
, size
- n
, "*");
858 } else if (type
->type
== SYM_ARRAY
) {
859 type
= get_real_base_type(type
);
860 n
= type_str_helper(buf
, size
, type
);
863 return n
+ snprintf(buf
+ n
, size
- n
, "[]");
864 } else if (type
->type
== SYM_STRUCT
) {
865 return snprintf(buf
, size
, "struct %s", type
->ident
? type
->ident
->name
: "");
866 } else if (type
->type
== SYM_UNION
) {
868 return snprintf(buf
, size
, "union %s", type
->ident
->name
);
870 return snprintf(buf
, size
, "anonymous union");
871 } else if (type
->type
== SYM_FN
) {
872 struct symbol
*arg
, *return_type
, *arg_type
;
875 return_type
= get_real_base_type(type
);
876 n
= type_str_helper(buf
, size
, return_type
);
879 n
+= snprintf(buf
+ n
, size
- n
, "(*)(");
884 FOR_EACH_PTR(type
->arguments
, arg
) {
886 n
+= snprintf(buf
+ n
, size
- n
, ", ");
889 arg_type
= get_real_base_type(arg
);
890 n
+= type_str_helper(buf
+ n
, size
- n
, arg_type
);
893 } END_FOR_EACH_PTR(arg
);
895 return n
+ snprintf(buf
+ n
, size
- n
, ")");
896 } else if (type
->type
== SYM_NODE
) {
897 n
= snprintf(buf
, size
, "node {");
900 type
= get_real_base_type(type
);
901 n
+= type_str_helper(buf
+ n
, size
- n
, type
);
904 return n
+ snprintf(buf
+ n
, size
- n
, "}");
905 } else if (type
->type
== SYM_ENUM
) {
906 return snprintf(buf
, size
, "enum %s", type
->ident
? type
->ident
->name
: "<unknown>");
908 return snprintf(buf
, size
, "<type %d>", type
->type
);
912 char *type_to_str(struct symbol
*type
)
914 static char buf
[256];
917 type_str_helper(buf
, sizeof(buf
), type
);