4 * Copyright (C) 2003 Transmeta Corp.
5 * 2003-2004 Linus Torvalds
7 * Licensed under the Open Software License version 1.1
9 * Evaluate constant expressions.
27 #include "expression.h"
29 struct symbol
*current_fn
;
31 static struct symbol
*degenerate(struct expression
*expr
);
32 static struct symbol
*evaluate_symbol(struct symbol
*sym
);
34 static struct symbol
*evaluate_symbol_expression(struct expression
*expr
)
36 struct expression
*addr
;
37 struct symbol
*sym
= expr
->symbol
;
38 struct symbol
*base_type
;
41 expression_error(expr
, "undefined identifier '%s'", show_ident(expr
->symbol_name
));
45 examine_symbol_type(sym
);
47 base_type
= get_base_type(sym
);
49 expression_error(expr
, "identifier '%s' has no type", show_ident(expr
->symbol_name
));
53 addr
= alloc_expression(expr
->pos
, EXPR_SYMBOL
);
55 addr
->symbol_name
= expr
->symbol_name
;
56 addr
->ctype
= &lazy_ptr_ctype
; /* Lazy evaluation: we need to do a proper job if somebody does &sym */
57 expr
->type
= EXPR_PREOP
;
61 /* The type of a symbol is the symbol itself! */
66 static struct symbol
*evaluate_string(struct expression
*expr
)
68 struct symbol
*sym
= alloc_symbol(expr
->pos
, SYM_NODE
);
69 struct symbol
*array
= alloc_symbol(expr
->pos
, SYM_ARRAY
);
70 struct expression
*addr
= alloc_expression(expr
->pos
, EXPR_SYMBOL
);
71 struct expression
*initstr
= alloc_expression(expr
->pos
, EXPR_STRING
);
72 unsigned int length
= expr
->string
->length
;
74 sym
->array_size
= alloc_const_expression(expr
->pos
, length
);
75 sym
->bit_size
= bytes_to_bits(length
);
76 sym
->ctype
.alignment
= 1;
78 sym
->ctype
.modifiers
= MOD_STATIC
;
79 sym
->ctype
.base_type
= array
;
80 sym
->initializer
= initstr
;
83 initstr
->string
= expr
->string
;
85 array
->array_size
= sym
->array_size
;
86 array
->bit_size
= bytes_to_bits(length
);
87 array
->ctype
.alignment
= 1;
88 array
->ctype
.modifiers
= MOD_STATIC
;
89 array
->ctype
.base_type
= &char_ctype
;
92 addr
->ctype
= &lazy_ptr_ctype
;
94 expr
->type
= EXPR_PREOP
;
101 /* type has come from classify_type and is an integer type */
102 static inline struct symbol
*integer_promotion(struct symbol
*type
)
104 struct symbol
*orig_type
= type
;
105 unsigned long mod
= type
->ctype
.modifiers
;
106 int width
= type
->bit_size
;
109 * Bitfields always promote to the base type,
110 * even if the bitfield might be bigger than
113 if (type
->type
== SYM_BITFIELD
) {
114 type
= type
->ctype
.base_type
;
117 mod
= type
->ctype
.modifiers
;
118 if (width
< bits_in_int
)
121 /* If char/short has as many bits as int, it still gets "promoted" */
122 if (mod
& (MOD_CHAR
| MOD_SHORT
)) {
123 if (mod
& MOD_UNSIGNED
)
131 * integer part of usual arithmetic conversions:
132 * integer promotions are applied
133 * if left and right are identical, we are done
134 * if signedness is the same, convert one with lower rank
135 * unless unsigned argument has rank lower than signed one, convert the
137 * if signed argument is bigger than unsigned one, convert the unsigned.
138 * otherwise, convert signed.
140 * Leaving aside the integer promotions, that is equivalent to
141 * if identical, don't convert
142 * if left is bigger than right, convert right
143 * if right is bigger than left, convert right
144 * otherwise, if signedness is the same, convert one with lower rank
145 * otherwise convert the signed one.
147 static struct symbol
*bigger_int_type(struct symbol
*left
, struct symbol
*right
)
149 unsigned long lmod
, rmod
;
151 left
= integer_promotion(left
);
152 right
= integer_promotion(right
);
157 if (left
->bit_size
> right
->bit_size
)
160 if (right
->bit_size
> left
->bit_size
)
163 lmod
= left
->ctype
.modifiers
;
164 rmod
= right
->ctype
.modifiers
;
165 if ((lmod
^ rmod
) & MOD_UNSIGNED
) {
166 if (lmod
& MOD_UNSIGNED
)
168 } else if ((lmod
& ~rmod
) & (MOD_LONG_ALL
))
176 static int same_cast_type(struct symbol
*orig
, struct symbol
*new)
178 return orig
->bit_size
== new->bit_size
&& orig
->bit_offset
== new->bit_offset
;
181 static struct symbol
*base_type(struct symbol
*node
, unsigned long *modp
, unsigned long *asp
)
183 unsigned long mod
, as
;
187 mod
|= node
->ctype
.modifiers
;
188 as
|= node
->ctype
.as
;
189 if (node
->type
== SYM_NODE
) {
190 node
= node
->ctype
.base_type
;
195 *modp
= mod
& ~MOD_IGNORE
;
200 static int is_same_type(struct expression
*expr
, struct symbol
*new)
202 struct symbol
*old
= expr
->ctype
;
203 unsigned long oldmod
, newmod
, oldas
, newas
;
205 old
= base_type(old
, &oldmod
, &oldas
);
206 new = base_type(new, &newmod
, &newas
);
208 /* Same base type, same address space? */
209 if (old
== new && oldas
== newas
) {
210 unsigned long difmod
;
212 /* Check the modifier bits. */
213 difmod
= (oldmod
^ newmod
) & ~MOD_NOCAST
;
215 /* Exact same type? */
220 * Not the same type, but differs only in "const".
221 * Don't warn about MOD_NOCAST.
223 if (difmod
== MOD_CONST
)
226 if ((oldmod
| newmod
) & MOD_NOCAST
) {
227 const char *tofrom
= "to/from";
228 if (!(newmod
& MOD_NOCAST
))
230 if (!(oldmod
& MOD_NOCAST
))
232 warning(expr
->pos
, "implicit cast %s nocast type", tofrom
);
238 warn_for_different_enum_types (struct position pos
,
239 struct symbol
*typea
,
240 struct symbol
*typeb
)
244 if (typea
->type
== SYM_NODE
)
245 typea
= typea
->ctype
.base_type
;
246 if (typeb
->type
== SYM_NODE
)
247 typeb
= typeb
->ctype
.base_type
;
252 if (typea
->type
== SYM_ENUM
&& typeb
->type
== SYM_ENUM
) {
253 warning(pos
, "mixing different enum types");
254 info(pos
, " %s versus", show_typename(typea
));
255 info(pos
, " %s", show_typename(typeb
));
260 * This gets called for implicit casts in assignments and
261 * integer promotion. We often want to try to move the
262 * cast down, because the ops involved may have been
263 * implicitly cast up, and we can get rid of the casts
266 static struct expression
* cast_to(struct expression
*old
, struct symbol
*type
)
268 struct expression
*expr
;
270 warn_for_different_enum_types (old
->pos
, old
->ctype
, type
);
272 if (old
->ctype
!= &null_ctype
&& is_same_type(old
, type
))
276 * See if we can simplify the op. Move the cast down.
280 if (old
->ctype
->bit_size
< type
->bit_size
)
282 if (old
->op
== '~') {
284 old
->unop
= cast_to(old
->unop
, type
);
289 case EXPR_IMPLIED_CAST
:
290 warn_for_different_enum_types(old
->pos
, old
->ctype
, type
);
292 if (old
->ctype
->bit_size
>= type
->bit_size
) {
293 struct expression
*orig
= old
->cast_expression
;
294 if (same_cast_type(orig
->ctype
, type
))
296 if (old
->ctype
->bit_offset
== type
->bit_offset
) {
298 old
->cast_type
= type
;
308 expr
= alloc_expression(old
->pos
, EXPR_IMPLIED_CAST
);
309 expr
->flags
= old
->flags
;
311 expr
->cast_type
= type
;
312 expr
->cast_expression
= old
;
327 static inline int classify_type(struct symbol
*type
, struct symbol
**base
)
329 static int type_class
[SYM_BAD
+ 1] = {
330 [SYM_PTR
] = TYPE_PTR
,
331 [SYM_FN
] = TYPE_PTR
| TYPE_FN
,
332 [SYM_ARRAY
] = TYPE_PTR
| TYPE_COMPOUND
,
333 [SYM_STRUCT
] = TYPE_COMPOUND
,
334 [SYM_UNION
] = TYPE_COMPOUND
,
335 [SYM_BITFIELD
] = TYPE_NUM
| TYPE_BITFIELD
,
336 [SYM_RESTRICT
] = TYPE_NUM
| TYPE_RESTRICT
,
337 [SYM_FOULED
] = TYPE_NUM
| TYPE_RESTRICT
| TYPE_FOULED
,
339 if (type
->type
== SYM_NODE
)
340 type
= type
->ctype
.base_type
;
341 if (type
->type
== SYM_TYPEOF
) {
342 type
= evaluate_expression(type
->initializer
);
345 else if (type
->type
== SYM_NODE
)
346 type
= type
->ctype
.base_type
;
348 if (type
->type
== SYM_ENUM
)
349 type
= type
->ctype
.base_type
;
351 if (type
->type
== SYM_BASETYPE
) {
352 if (type
->ctype
.base_type
== &int_type
)
354 if (type
->ctype
.base_type
== &fp_type
)
355 return TYPE_NUM
| TYPE_FLOAT
;
357 return type_class
[type
->type
];
360 #define is_int(class) ((class & (TYPE_NUM | TYPE_FLOAT)) == TYPE_NUM)
362 static inline int is_string_type(struct symbol
*type
)
364 if (type
->type
== SYM_NODE
)
365 type
= type
->ctype
.base_type
;
366 return type
->type
== SYM_ARRAY
&& is_byte_type(type
->ctype
.base_type
);
369 static struct symbol
*bad_expr_type(struct expression
*expr
)
371 sparse_error(expr
->pos
, "incompatible types for operation (%s)", show_special(expr
->op
));
372 switch (expr
->type
) {
375 info(expr
->pos
, " left side has type %s", show_typename(expr
->left
->ctype
));
376 info(expr
->pos
, " right side has type %s", show_typename(expr
->right
->ctype
));
380 info(expr
->pos
, " argument has type %s", show_typename(expr
->unop
->ctype
));
387 return expr
->ctype
= &bad_ctype
;
390 static int restricted_value(struct expression
*v
, struct symbol
*type
)
392 if (v
->type
!= EXPR_VALUE
)
399 static int restricted_binop(int op
, struct symbol
*type
)
404 case SPECIAL_AND_ASSIGN
:
405 case SPECIAL_OR_ASSIGN
:
406 case SPECIAL_XOR_ASSIGN
:
407 return 1; /* unfoul */
411 return 2; /* keep fouled */
413 case SPECIAL_NOTEQUAL
:
414 return 3; /* warn if fouled */
420 static int restricted_unop(int op
, struct symbol
**type
)
423 if ((*type
)->bit_size
< bits_in_int
)
424 *type
= befoul(*type
);
431 /* type should be SYM_FOULED */
432 static inline struct symbol
*unfoul(struct symbol
*type
)
434 return type
->ctype
.base_type
;
437 static struct symbol
*restricted_binop_type(int op
,
438 struct expression
*left
,
439 struct expression
*right
,
440 int lclass
, int rclass
,
441 struct symbol
*ltype
,
442 struct symbol
*rtype
)
444 struct symbol
*ctype
= NULL
;
445 if (lclass
& TYPE_RESTRICT
) {
446 if (rclass
& TYPE_RESTRICT
) {
447 if (ltype
== rtype
) {
449 } else if (lclass
& TYPE_FOULED
) {
450 if (unfoul(ltype
) == rtype
)
452 } else if (rclass
& TYPE_FOULED
) {
453 if (unfoul(rtype
) == ltype
)
457 if (!restricted_value(right
, ltype
))
460 } else if (!restricted_value(left
, rtype
))
464 switch (restricted_binop(op
, ctype
)) {
466 if ((lclass
^ rclass
) & TYPE_FOULED
)
467 ctype
= unfoul(ctype
);
470 if (!(lclass
& rclass
& TYPE_FOULED
))
482 static inline void unrestrict(struct expression
*expr
,
483 int class, struct symbol
**ctype
)
485 if (class & TYPE_RESTRICT
) {
486 if (class & TYPE_FOULED
)
487 *ctype
= unfoul(*ctype
);
488 warning(expr
->pos
, "%s degrades to integer",
489 show_typename(*ctype
));
490 *ctype
= (*ctype
)->ctype
.base_type
; /* get to arithmetic type */
494 static struct symbol
*usual_conversions(int op
,
495 struct expression
*left
,
496 struct expression
*right
,
497 int lclass
, int rclass
,
498 struct symbol
*ltype
,
499 struct symbol
*rtype
)
501 struct symbol
*ctype
;
503 warn_for_different_enum_types(right
->pos
, left
->ctype
, right
->ctype
);
505 if ((lclass
| rclass
) & TYPE_RESTRICT
)
509 if (!(lclass
& TYPE_FLOAT
)) {
510 if (!(rclass
& TYPE_FLOAT
))
511 return bigger_int_type(ltype
, rtype
);
514 } else if (rclass
& TYPE_FLOAT
) {
515 unsigned long lmod
= ltype
->ctype
.modifiers
;
516 unsigned long rmod
= rtype
->ctype
.modifiers
;
517 if (rmod
& ~lmod
& (MOD_LONG_ALL
))
525 ctype
= restricted_binop_type(op
, left
, right
,
526 lclass
, rclass
, ltype
, rtype
);
530 unrestrict(left
, lclass
, <ype
);
531 unrestrict(right
, rclass
, &rtype
);
536 static inline int lvalue_expression(struct expression
*expr
)
538 return expr
->type
== EXPR_PREOP
&& expr
->op
== '*';
541 static struct symbol
*evaluate_ptr_add(struct expression
*expr
, struct symbol
*itype
)
543 struct expression
*index
= expr
->right
;
544 struct symbol
*ctype
, *base
;
547 classify_type(degenerate(expr
->left
), &ctype
);
548 base
= examine_pointer_target(ctype
);
551 expression_error(expr
, "missing type information");
554 if (is_function(base
)) {
555 expression_error(expr
, "arithmetics on pointers to functions");
559 /* Get the size of whatever the pointer points to */
560 multiply
= is_void_type(base
) ? 1 : bits_to_bytes(base
->bit_size
);
562 if (ctype
== &null_ctype
)
566 if (multiply
== 1 && itype
->bit_size
>= bits_in_pointer
)
569 if (index
->type
== EXPR_VALUE
) {
570 struct expression
*val
= alloc_expression(expr
->pos
, EXPR_VALUE
);
571 unsigned long long v
= index
->value
, mask
;
572 mask
= 1ULL << (itype
->bit_size
- 1);
578 mask
= 1ULL << (bits_in_pointer
- 1);
579 v
&= mask
| (mask
- 1);
581 val
->ctype
= ssize_t_ctype
;
586 if (itype
->bit_size
< bits_in_pointer
)
587 index
= cast_to(index
, ssize_t_ctype
);
590 struct expression
*val
= alloc_expression(expr
->pos
, EXPR_VALUE
);
591 struct expression
*mul
= alloc_expression(expr
->pos
, EXPR_BINOP
);
593 val
->ctype
= ssize_t_ctype
;
594 val
->value
= multiply
;
597 mul
->ctype
= ssize_t_ctype
;
607 static void examine_fn_arguments(struct symbol
*fn
);
609 #define MOD_IGN (MOD_VOLATILE | MOD_CONST)
611 const char *type_difference(struct ctype
*c1
, struct ctype
*c2
,
612 unsigned long mod1
, unsigned long mod2
)
614 unsigned long as1
= c1
->as
, as2
= c2
->as
;
615 struct symbol
*t1
= c1
->base_type
;
616 struct symbol
*t2
= c2
->base_type
;
617 int move1
= 1, move2
= 1;
618 mod1
|= c1
->modifiers
;
619 mod2
|= c2
->modifiers
;
623 struct symbol
*base1
= t1
->ctype
.base_type
;
624 struct symbol
*base2
= t2
->ctype
.base_type
;
627 * FIXME! Collect alignment and context too here!
630 if (t1
&& t1
->type
!= SYM_PTR
) {
631 mod1
|= t1
->ctype
.modifiers
;
638 if (t2
&& t2
->type
!= SYM_PTR
) {
639 mod2
|= t2
->ctype
.modifiers
;
648 return "different types";
650 if (t1
->type
== SYM_NODE
|| t1
->type
== SYM_ENUM
) {
658 if (t2
->type
== SYM_NODE
|| t2
->type
== SYM_ENUM
) {
668 if (type
!= t2
->type
)
669 return "different base types";
673 sparse_error(t1
->pos
,
674 "internal error: bad type in derived(%d)",
678 return "different base types";
681 /* allow definition of incomplete structs and unions */
682 if (t1
->ident
== t2
->ident
)
684 return "different base types";
686 /* XXX: we ought to compare sizes */
690 return "different address spaces";
691 /* MOD_SPECIFIER is due to idiocy in parse.c */
692 if ((mod1
^ mod2
) & ~MOD_IGNORE
& ~MOD_SPECIFIER
)
693 return "different modifiers";
694 /* we could be lazier here */
695 base1
= examine_pointer_target(t1
);
696 base2
= examine_pointer_target(t2
);
697 mod1
= t1
->ctype
.modifiers
;
699 mod2
= t2
->ctype
.modifiers
;
703 struct symbol
*arg1
, *arg2
;
707 return "different address spaces";
708 if ((mod1
^ mod2
) & ~MOD_IGNORE
& ~MOD_SIGNEDNESS
)
709 return "different modifiers";
710 mod1
= t1
->ctype
.modifiers
;
712 mod2
= t2
->ctype
.modifiers
;
715 if (base1
->variadic
!= base2
->variadic
)
716 return "incompatible variadic arguments";
717 examine_fn_arguments(t1
);
718 examine_fn_arguments(t2
);
719 PREPARE_PTR_LIST(t1
->arguments
, arg1
);
720 PREPARE_PTR_LIST(t2
->arguments
, arg2
);
727 return "different argument counts";
728 diffstr
= type_difference(&arg1
->ctype
,
732 static char argdiff
[80];
733 sprintf(argdiff
, "incompatible argument %d (%s)", i
, diffstr
);
740 FINISH_PTR_LIST(arg2
);
741 FINISH_PTR_LIST(arg1
);
746 return "different address spaces";
748 return "different base types";
749 diff
= (mod1
^ mod2
) & ~MOD_IGNORE
;
753 return "different type sizes";
754 else if (diff
& ~MOD_SIGNEDNESS
)
755 return "different modifiers";
757 return "different signedness";
763 return "different address spaces";
764 if ((mod1
^ mod2
) & ~MOD_IGNORE
& ~MOD_SIGNEDNESS
)
765 return "different modifiers";
769 static void bad_null(struct expression
*expr
)
771 if (Wnon_pointer_null
)
772 warning(expr
->pos
, "Using plain integer as NULL pointer");
775 static unsigned long target_qualifiers(struct symbol
*type
)
777 unsigned long mod
= type
->ctype
.modifiers
& MOD_IGN
;
778 if (type
->ctype
.base_type
&& type
->ctype
.base_type
->type
== SYM_ARRAY
)
783 static struct symbol
*evaluate_ptr_sub(struct expression
*expr
)
785 const char *typediff
;
786 struct symbol
*ltype
, *rtype
;
787 struct expression
*l
= expr
->left
;
788 struct expression
*r
= expr
->right
;
789 struct symbol
*lbase
;
791 classify_type(degenerate(l
), <ype
);
792 classify_type(degenerate(r
), &rtype
);
794 lbase
= examine_pointer_target(ltype
);
795 examine_pointer_target(rtype
);
796 typediff
= type_difference(<ype
->ctype
, &rtype
->ctype
,
797 target_qualifiers(rtype
),
798 target_qualifiers(ltype
));
800 expression_error(expr
, "subtraction of different types can't work (%s)", typediff
);
802 if (is_function(lbase
)) {
803 expression_error(expr
, "subtraction of functions? Share your drugs");
807 expr
->ctype
= ssize_t_ctype
;
808 if (lbase
->bit_size
> bits_in_char
) {
809 struct expression
*sub
= alloc_expression(expr
->pos
, EXPR_BINOP
);
810 struct expression
*div
= expr
;
811 struct expression
*val
= alloc_expression(expr
->pos
, EXPR_VALUE
);
812 unsigned long value
= bits_to_bytes(lbase
->bit_size
);
814 val
->ctype
= size_t_ctype
;
817 if (value
& (value
-1)) {
818 if (Wptr_subtraction_blows
)
819 warning(expr
->pos
, "potentially expensive pointer subtraction");
823 sub
->ctype
= ssize_t_ctype
;
832 return ssize_t_ctype
;
835 #define is_safe_type(type) ((type)->ctype.modifiers & MOD_SAFE)
837 static struct symbol
*evaluate_conditional(struct expression
*expr
, int iterator
)
839 struct symbol
*ctype
;
844 if (!iterator
&& expr
->type
== EXPR_ASSIGNMENT
&& expr
->op
== '=')
845 warning(expr
->pos
, "assignment expression in conditional");
847 ctype
= evaluate_expression(expr
);
849 if (is_safe_type(ctype
))
850 warning(expr
->pos
, "testing a 'safe expression'");
856 static struct symbol
*evaluate_logical(struct expression
*expr
)
858 if (!evaluate_conditional(expr
->left
, 0))
860 if (!evaluate_conditional(expr
->right
, 0))
863 expr
->ctype
= &bool_ctype
;
865 if (!(expr
->left
->flags
& expr
->right
->flags
& Int_const_expr
))
871 static struct symbol
*evaluate_binop(struct expression
*expr
)
873 struct symbol
*ltype
, *rtype
, *ctype
;
874 int lclass
= classify_type(expr
->left
->ctype
, <ype
);
875 int rclass
= classify_type(expr
->right
->ctype
, &rtype
);
879 if (!(expr
->left
->flags
& expr
->right
->flags
& Int_const_expr
))
883 /* number op number */
884 if (lclass
& rclass
& TYPE_NUM
) {
885 if ((lclass
| rclass
) & TYPE_FLOAT
) {
887 case '+': case '-': case '*': case '/':
890 return bad_expr_type(expr
);
894 if (op
== SPECIAL_LEFTSHIFT
|| op
== SPECIAL_RIGHTSHIFT
) {
895 // shifts do integer promotions, but that's it.
896 unrestrict(expr
->left
, lclass
, <ype
);
897 unrestrict(expr
->right
, rclass
, &rtype
);
898 ctype
= ltype
= integer_promotion(ltype
);
899 rtype
= integer_promotion(rtype
);
901 // The rest do usual conversions
902 const unsigned left_not
= expr
->left
->type
== EXPR_PREOP
903 && expr
->left
->op
== '!';
904 const unsigned right_not
= expr
->right
->type
== EXPR_PREOP
905 && expr
->right
->op
== '!';
906 if ((op
== '&' || op
== '|') && (left_not
|| right_not
))
907 warning(expr
->pos
, "dubious: %sx %c %sy",
910 right_not
? "!" : "");
912 ltype
= usual_conversions(op
, expr
->left
, expr
->right
,
913 lclass
, rclass
, ltype
, rtype
);
914 ctype
= rtype
= ltype
;
917 expr
->left
= cast_to(expr
->left
, ltype
);
918 expr
->right
= cast_to(expr
->right
, rtype
);
923 /* pointer (+|-) integer */
924 if (lclass
& TYPE_PTR
&& is_int(rclass
) && (op
== '+' || op
== '-')) {
925 unrestrict(expr
->right
, rclass
, &rtype
);
926 return evaluate_ptr_add(expr
, rtype
);
929 /* integer + pointer */
930 if (rclass
& TYPE_PTR
&& is_int(lclass
) && op
== '+') {
931 struct expression
*index
= expr
->left
;
932 unrestrict(index
, lclass
, <ype
);
933 expr
->left
= expr
->right
;
935 return evaluate_ptr_add(expr
, ltype
);
938 /* pointer - pointer */
939 if (lclass
& rclass
& TYPE_PTR
&& expr
->op
== '-')
940 return evaluate_ptr_sub(expr
);
942 return bad_expr_type(expr
);
945 static struct symbol
*evaluate_comma(struct expression
*expr
)
947 expr
->ctype
= degenerate(expr
->right
);
948 if (expr
->ctype
== &null_ctype
)
949 expr
->ctype
= &ptr_ctype
;
950 expr
->flags
&= expr
->left
->flags
& expr
->right
->flags
;
954 static int modify_for_unsigned(int op
)
957 op
= SPECIAL_UNSIGNED_LT
;
959 op
= SPECIAL_UNSIGNED_GT
;
960 else if (op
== SPECIAL_LTE
)
961 op
= SPECIAL_UNSIGNED_LTE
;
962 else if (op
== SPECIAL_GTE
)
963 op
= SPECIAL_UNSIGNED_GTE
;
967 static inline int is_null_pointer_constant(struct expression
*e
)
969 if (e
->ctype
== &null_ctype
)
971 if (!(e
->flags
& Int_const_expr
))
973 return is_zero_constant(e
) ? 2 : 0;
976 static struct symbol
*evaluate_compare(struct expression
*expr
)
978 struct expression
*left
= expr
->left
, *right
= expr
->right
;
979 struct symbol
*ltype
, *rtype
, *lbase
, *rbase
;
980 int lclass
= classify_type(degenerate(left
), <ype
);
981 int rclass
= classify_type(degenerate(right
), &rtype
);
982 struct symbol
*ctype
;
983 const char *typediff
;
986 if (!(expr
->left
->flags
& expr
->right
->flags
& Int_const_expr
))
991 if (is_type_type(ltype
) && is_type_type(rtype
))
994 if (is_safe_type(left
->ctype
) || is_safe_type(right
->ctype
))
995 warning(expr
->pos
, "testing a 'safe expression'");
997 /* number on number */
998 if (lclass
& rclass
& TYPE_NUM
) {
999 ctype
= usual_conversions(expr
->op
, expr
->left
, expr
->right
,
1000 lclass
, rclass
, ltype
, rtype
);
1001 expr
->left
= cast_to(expr
->left
, ctype
);
1002 expr
->right
= cast_to(expr
->right
, ctype
);
1003 if (ctype
->ctype
.modifiers
& MOD_UNSIGNED
)
1004 expr
->op
= modify_for_unsigned(expr
->op
);
1008 /* at least one must be a pointer */
1009 if (!((lclass
| rclass
) & TYPE_PTR
))
1010 return bad_expr_type(expr
);
1012 /* equality comparisons can be with null pointer constants */
1013 if (expr
->op
== SPECIAL_EQUAL
|| expr
->op
== SPECIAL_NOTEQUAL
) {
1014 int is_null1
= is_null_pointer_constant(left
);
1015 int is_null2
= is_null_pointer_constant(right
);
1020 if (is_null1
&& is_null2
) {
1021 int positive
= expr
->op
== SPECIAL_EQUAL
;
1022 expr
->type
= EXPR_VALUE
;
1023 expr
->value
= positive
;
1026 if (is_null1
&& (rclass
& TYPE_PTR
)) {
1027 left
= cast_to(left
, rtype
);
1030 if (is_null2
&& (lclass
& TYPE_PTR
)) {
1031 right
= cast_to(right
, ltype
);
1035 /* both should be pointers */
1036 if (!(lclass
& rclass
& TYPE_PTR
))
1037 return bad_expr_type(expr
);
1038 expr
->op
= modify_for_unsigned(expr
->op
);
1040 lbase
= examine_pointer_target(ltype
);
1041 rbase
= examine_pointer_target(rtype
);
1043 /* they also have special treatment for pointers to void */
1044 if (expr
->op
== SPECIAL_EQUAL
|| expr
->op
== SPECIAL_NOTEQUAL
) {
1045 if (ltype
->ctype
.as
== rtype
->ctype
.as
) {
1046 if (lbase
== &void_ctype
) {
1047 right
= cast_to(right
, ltype
);
1050 if (rbase
== &void_ctype
) {
1051 left
= cast_to(left
, rtype
);
1057 typediff
= type_difference(<ype
->ctype
, &rtype
->ctype
,
1058 target_qualifiers(rtype
),
1059 target_qualifiers(ltype
));
1063 expression_error(expr
, "incompatible types in comparison expression (%s)", typediff
);
1067 expr
->ctype
= &bool_ctype
;
1072 * NOTE! The degenerate case of "x ? : y", where we don't
1073 * have a true case, this will possibly promote "x" to the
1074 * same type as "y", and thus _change_ the conditional
1075 * test in the expression. But since promotion is "safe"
1076 * for testing, that's OK.
1078 static struct symbol
*evaluate_conditional_expression(struct expression
*expr
)
1080 struct expression
**true;
1081 struct symbol
*ctype
, *ltype
, *rtype
, *lbase
, *rbase
;
1083 const char * typediff
;
1086 if (!evaluate_conditional(expr
->conditional
, 0))
1088 if (!evaluate_expression(expr
->cond_false
))
1091 ctype
= degenerate(expr
->conditional
);
1092 rtype
= degenerate(expr
->cond_false
);
1094 true = &expr
->conditional
;
1096 if (expr
->cond_true
) {
1097 if (!evaluate_expression(expr
->cond_true
))
1099 ltype
= degenerate(expr
->cond_true
);
1100 true = &expr
->cond_true
;
1104 int flags
= expr
->conditional
->flags
& Int_const_expr
;
1105 flags
&= (*true)->flags
& expr
->cond_false
->flags
;
1110 lclass
= classify_type(ltype
, <ype
);
1111 rclass
= classify_type(rtype
, &rtype
);
1112 if (lclass
& rclass
& TYPE_NUM
) {
1113 ctype
= usual_conversions('?', *true, expr
->cond_false
,
1114 lclass
, rclass
, ltype
, rtype
);
1115 *true = cast_to(*true, ctype
);
1116 expr
->cond_false
= cast_to(expr
->cond_false
, ctype
);
1120 if ((lclass
| rclass
) & TYPE_PTR
) {
1121 int is_null1
= is_null_pointer_constant(*true);
1122 int is_null2
= is_null_pointer_constant(expr
->cond_false
);
1124 if (is_null1
&& is_null2
) {
1125 *true = cast_to(*true, &ptr_ctype
);
1126 expr
->cond_false
= cast_to(expr
->cond_false
, &ptr_ctype
);
1130 if (is_null1
&& (rclass
& TYPE_PTR
)) {
1133 *true = cast_to(*true, rtype
);
1137 if (is_null2
&& (lclass
& TYPE_PTR
)) {
1139 bad_null(expr
->cond_false
);
1140 expr
->cond_false
= cast_to(expr
->cond_false
, ltype
);
1144 if (!(lclass
& rclass
& TYPE_PTR
)) {
1145 typediff
= "different types";
1148 /* OK, it's pointer on pointer */
1149 if (ltype
->ctype
.as
!= rtype
->ctype
.as
) {
1150 typediff
= "different address spaces";
1154 /* need to be lazier here */
1155 lbase
= examine_pointer_target(ltype
);
1156 rbase
= examine_pointer_target(rtype
);
1157 qual
= target_qualifiers(ltype
) | target_qualifiers(rtype
);
1159 if (lbase
== &void_ctype
) {
1160 /* XXX: pointers to function should warn here */
1165 if (rbase
== &void_ctype
) {
1166 /* XXX: pointers to function should warn here */
1170 /* XXX: that should be pointer to composite */
1172 typediff
= type_difference(<ype
->ctype
, &rtype
->ctype
,
1179 /* void on void, struct on same struct, union on same union */
1180 if (ltype
== rtype
) {
1184 typediff
= "different base types";
1187 expression_error(expr
, "incompatible types in conditional expression (%s)", typediff
);
1191 expr
->ctype
= ctype
;
1195 if (qual
& ~ctype
->ctype
.modifiers
) {
1196 struct symbol
*sym
= alloc_symbol(ctype
->pos
, SYM_PTR
);
1198 sym
->ctype
.modifiers
|= qual
;
1201 *true = cast_to(*true, ctype
);
1202 expr
->cond_false
= cast_to(expr
->cond_false
, ctype
);
1206 /* FP assignments can not do modulo or bit operations */
1207 static int compatible_float_op(int op
)
1209 return op
== SPECIAL_ADD_ASSIGN
||
1210 op
== SPECIAL_SUB_ASSIGN
||
1211 op
== SPECIAL_MUL_ASSIGN
||
1212 op
== SPECIAL_DIV_ASSIGN
;
1215 static int evaluate_assign_op(struct expression
*expr
)
1217 struct symbol
*target
= expr
->left
->ctype
;
1218 struct symbol
*source
= expr
->right
->ctype
;
1219 struct symbol
*t
, *s
;
1220 int tclass
= classify_type(target
, &t
);
1221 int sclass
= classify_type(source
, &s
);
1224 if (tclass
& sclass
& TYPE_NUM
) {
1225 if (tclass
& TYPE_FLOAT
&& !compatible_float_op(op
)) {
1226 expression_error(expr
, "invalid assignment");
1229 if (tclass
& TYPE_RESTRICT
) {
1230 if (!restricted_binop(op
, t
)) {
1231 warning(expr
->pos
, "bad assignment (%s) to %s",
1232 show_special(op
), show_typename(t
));
1233 expr
->right
= cast_to(expr
->right
, target
);
1236 /* allowed assignments unfoul */
1237 if (sclass
& TYPE_FOULED
&& unfoul(s
) == t
)
1239 if (!restricted_value(expr
->right
, t
))
1241 } else if (!(sclass
& TYPE_RESTRICT
))
1243 /* source and target would better be identical restricted */
1246 warning(expr
->pos
, "invalid assignment: %s", show_special(op
));
1247 info(expr
->pos
, " left side has type %s", show_typename(t
));
1248 info(expr
->pos
, " right side has type %s", show_typename(s
));
1249 expr
->right
= cast_to(expr
->right
, target
);
1252 if (tclass
== TYPE_PTR
&& is_int(sclass
)) {
1253 if (op
== SPECIAL_ADD_ASSIGN
|| op
== SPECIAL_SUB_ASSIGN
) {
1254 unrestrict(expr
->right
, sclass
, &s
);
1255 evaluate_ptr_add(expr
, s
);
1258 expression_error(expr
, "invalid pointer assignment");
1262 expression_error(expr
, "invalid assignment");
1266 expr
->right
= cast_to(expr
->right
, target
);
1270 static int whitelist_pointers(struct symbol
*t1
, struct symbol
*t2
)
1273 return 0; /* yes, 0 - we don't want a cast_to here */
1274 if (t1
== &void_ctype
)
1276 if (t2
== &void_ctype
)
1278 if (classify_type(t1
, &t1
) != TYPE_NUM
)
1280 if (classify_type(t2
, &t2
) != TYPE_NUM
)
1284 if (t1
->ctype
.modifiers
& t2
->ctype
.modifiers
& MOD_CHAR
)
1286 if ((t1
->ctype
.modifiers
^ t2
->ctype
.modifiers
) & MOD_SIZE
)
1291 static int compatible_assignment_types(struct expression
*expr
, struct symbol
*target
,
1292 struct expression
**rp
, const char *where
)
1294 const char *typediff
;
1295 struct symbol
*source
= degenerate(*rp
);
1296 struct symbol
*t
, *s
;
1297 int tclass
= classify_type(target
, &t
);
1298 int sclass
= classify_type(source
, &s
);
1300 if (tclass
& sclass
& TYPE_NUM
) {
1301 if (tclass
& TYPE_RESTRICT
) {
1302 /* allowed assignments unfoul */
1303 if (sclass
& TYPE_FOULED
&& unfoul(s
) == t
)
1305 if (!restricted_value(*rp
, target
))
1309 } else if (!(sclass
& TYPE_RESTRICT
))
1311 typediff
= "different base types";
1315 if (tclass
== TYPE_PTR
) {
1316 unsigned long mod1
, mod2
;
1317 struct symbol
*b1
, *b2
;
1318 // NULL pointer is always OK
1319 int is_null
= is_null_pointer_constant(*rp
);
1325 if (!(sclass
& TYPE_PTR
)) {
1326 typediff
= "different base types";
1329 b1
= examine_pointer_target(t
);
1330 b2
= examine_pointer_target(s
);
1331 mod1
= target_qualifiers(t
);
1332 mod2
= target_qualifiers(s
);
1333 if (whitelist_pointers(b1
, b2
)) {
1335 * assignments to/from void * are OK, provided that
1336 * we do not remove qualifiers from pointed to [C]
1337 * or mix address spaces [sparse].
1339 if (t
->ctype
.as
!= s
->ctype
.as
) {
1340 typediff
= "different address spaces";
1344 typediff
= "different modifiers";
1349 /* It's OK if the target is more volatile or const than the source */
1350 typediff
= type_difference(&t
->ctype
, &s
->ctype
, 0, mod1
);
1356 if ((tclass
& TYPE_COMPOUND
) && s
== t
)
1359 if (tclass
& TYPE_NUM
) {
1360 /* XXX: need to turn into comparison with NULL */
1361 if (t
== &bool_ctype
&& (sclass
& TYPE_PTR
))
1363 typediff
= "different base types";
1366 typediff
= "invalid types";
1369 warning(expr
->pos
, "incorrect type in %s (%s)", where
, typediff
);
1370 info(expr
->pos
, " expected %s", show_typename(target
));
1371 info(expr
->pos
, " got %s", show_typename(source
));
1372 *rp
= cast_to(*rp
, target
);
1375 *rp
= cast_to(*rp
, target
);
1379 static void mark_assigned(struct expression
*expr
)
1385 switch (expr
->type
) {
1390 if (sym
->type
!= SYM_NODE
)
1392 sym
->ctype
.modifiers
|= MOD_ASSIGNED
;
1396 mark_assigned(expr
->left
);
1397 mark_assigned(expr
->right
);
1400 case EXPR_FORCE_CAST
:
1401 mark_assigned(expr
->cast_expression
);
1404 mark_assigned(expr
->base
);
1412 static void evaluate_assign_to(struct expression
*left
, struct symbol
*type
)
1414 if (type
->ctype
.modifiers
& MOD_CONST
)
1415 expression_error(left
, "assignment to const expression");
1417 /* We know left is an lvalue, so it's a "preop-*" */
1418 mark_assigned(left
->unop
);
1421 static struct symbol
*evaluate_assignment(struct expression
*expr
)
1423 struct expression
*left
= expr
->left
;
1424 struct expression
*where
= expr
;
1425 struct symbol
*ltype
;
1427 if (!lvalue_expression(left
)) {
1428 expression_error(expr
, "not an lvalue");
1432 ltype
= left
->ctype
;
1434 if (expr
->op
!= '=') {
1435 if (!evaluate_assign_op(expr
))
1438 if (!compatible_assignment_types(where
, ltype
, &expr
->right
, "assignment"))
1442 evaluate_assign_to(left
, ltype
);
1444 expr
->ctype
= ltype
;
1448 static void examine_fn_arguments(struct symbol
*fn
)
1452 FOR_EACH_PTR(fn
->arguments
, s
) {
1453 struct symbol
*arg
= evaluate_symbol(s
);
1454 /* Array/function arguments silently degenerate into pointers */
1460 ptr
= alloc_symbol(s
->pos
, SYM_PTR
);
1461 if (arg
->type
== SYM_ARRAY
)
1462 ptr
->ctype
= arg
->ctype
;
1464 ptr
->ctype
.base_type
= arg
;
1465 ptr
->ctype
.as
|= s
->ctype
.as
;
1466 ptr
->ctype
.modifiers
|= s
->ctype
.modifiers
& MOD_PTRINHERIT
;
1468 s
->ctype
.base_type
= ptr
;
1470 s
->ctype
.modifiers
&= ~MOD_PTRINHERIT
;
1473 examine_symbol_type(s
);
1480 } END_FOR_EACH_PTR(s
);
1483 static struct symbol
*convert_to_as_mod(struct symbol
*sym
, int as
, int mod
)
1485 /* Take the modifiers of the pointer, and apply them to the member */
1486 mod
|= sym
->ctype
.modifiers
;
1487 if (sym
->ctype
.as
!= as
|| sym
->ctype
.modifiers
!= mod
) {
1488 struct symbol
*newsym
= alloc_symbol(sym
->pos
, SYM_NODE
);
1490 newsym
->ctype
.as
= as
;
1491 newsym
->ctype
.modifiers
= mod
;
1497 static struct symbol
*create_pointer(struct expression
*expr
, struct symbol
*sym
, int degenerate
)
1499 struct symbol
*node
= alloc_symbol(expr
->pos
, SYM_NODE
);
1500 struct symbol
*ptr
= alloc_symbol(expr
->pos
, SYM_PTR
);
1502 node
->ctype
.base_type
= ptr
;
1503 ptr
->bit_size
= bits_in_pointer
;
1504 ptr
->ctype
.alignment
= pointer_alignment
;
1506 node
->bit_size
= bits_in_pointer
;
1507 node
->ctype
.alignment
= pointer_alignment
;
1510 if (sym
->ctype
.modifiers
& MOD_REGISTER
) {
1511 warning(expr
->pos
, "taking address of 'register' variable '%s'", show_ident(sym
->ident
));
1512 sym
->ctype
.modifiers
&= ~MOD_REGISTER
;
1514 if (sym
->type
== SYM_NODE
) {
1515 ptr
->ctype
.as
|= sym
->ctype
.as
;
1516 ptr
->ctype
.modifiers
|= sym
->ctype
.modifiers
& MOD_PTRINHERIT
;
1517 sym
= sym
->ctype
.base_type
;
1519 if (degenerate
&& sym
->type
== SYM_ARRAY
) {
1520 ptr
->ctype
.as
|= sym
->ctype
.as
;
1521 ptr
->ctype
.modifiers
|= sym
->ctype
.modifiers
& MOD_PTRINHERIT
;
1522 sym
= sym
->ctype
.base_type
;
1524 ptr
->ctype
.base_type
= sym
;
1529 /* Arrays degenerate into pointers on pointer arithmetic */
1530 static struct symbol
*degenerate(struct expression
*expr
)
1532 struct symbol
*ctype
, *base
;
1536 ctype
= expr
->ctype
;
1539 base
= examine_symbol_type(ctype
);
1540 if (ctype
->type
== SYM_NODE
)
1541 base
= ctype
->ctype
.base_type
;
1543 * Arrays degenerate into pointers to the entries, while
1544 * functions degenerate into pointers to themselves.
1545 * If array was part of non-lvalue compound, we create a copy
1546 * of that compound first and then act as if we were dealing with
1547 * the corresponding field in there.
1549 switch (base
->type
) {
1551 if (expr
->type
== EXPR_SLICE
) {
1552 struct symbol
*a
= alloc_symbol(expr
->pos
, SYM_NODE
);
1553 struct expression
*e0
, *e1
, *e2
, *e3
, *e4
;
1555 a
->ctype
.base_type
= expr
->base
->ctype
;
1556 a
->bit_size
= expr
->base
->ctype
->bit_size
;
1557 a
->array_size
= expr
->base
->ctype
->array_size
;
1559 e0
= alloc_expression(expr
->pos
, EXPR_SYMBOL
);
1561 e0
->ctype
= &lazy_ptr_ctype
;
1563 e1
= alloc_expression(expr
->pos
, EXPR_PREOP
);
1566 e1
->ctype
= expr
->base
->ctype
; /* XXX */
1568 e2
= alloc_expression(expr
->pos
, EXPR_ASSIGNMENT
);
1570 e2
->right
= expr
->base
;
1572 e2
->ctype
= expr
->base
->ctype
;
1574 if (expr
->r_bitpos
) {
1575 e3
= alloc_expression(expr
->pos
, EXPR_BINOP
);
1578 e3
->right
= alloc_const_expression(expr
->pos
,
1579 bits_to_bytes(expr
->r_bitpos
));
1580 e3
->ctype
= &lazy_ptr_ctype
;
1585 e4
= alloc_expression(expr
->pos
, EXPR_COMMA
);
1588 e4
->ctype
= &lazy_ptr_ctype
;
1591 expr
->type
= EXPR_PREOP
;
1595 if (expr
->op
!= '*' || expr
->type
!= EXPR_PREOP
) {
1596 expression_error(expr
, "strange non-value function or array");
1599 *expr
= *expr
->unop
;
1600 ctype
= create_pointer(expr
, ctype
, 1);
1601 expr
->ctype
= ctype
;
1608 static struct symbol
*evaluate_addressof(struct expression
*expr
)
1610 struct expression
*op
= expr
->unop
;
1611 struct symbol
*ctype
;
1613 if (op
->op
!= '*' || op
->type
!= EXPR_PREOP
) {
1614 expression_error(expr
, "not addressable");
1621 if (expr
->type
== EXPR_SYMBOL
) {
1622 struct symbol
*sym
= expr
->symbol
;
1623 sym
->ctype
.modifiers
|= MOD_ADDRESSABLE
;
1627 * symbol expression evaluation is lazy about the type
1628 * of the sub-expression, so we may have to generate
1629 * the type here if so..
1631 if (expr
->ctype
== &lazy_ptr_ctype
) {
1632 ctype
= create_pointer(expr
, ctype
, 0);
1633 expr
->ctype
= ctype
;
1639 static struct symbol
*evaluate_dereference(struct expression
*expr
)
1641 struct expression
*op
= expr
->unop
;
1642 struct symbol
*ctype
= op
->ctype
, *node
, *target
;
1644 /* Simplify: *&(expr) => (expr) */
1645 if (op
->type
== EXPR_PREOP
&& op
->op
== '&') {
1651 /* Dereferencing a node drops all the node information. */
1652 if (ctype
->type
== SYM_NODE
)
1653 ctype
= ctype
->ctype
.base_type
;
1655 node
= alloc_symbol(expr
->pos
, SYM_NODE
);
1656 target
= ctype
->ctype
.base_type
;
1658 switch (ctype
->type
) {
1660 expression_error(expr
, "cannot dereference this type");
1663 node
->ctype
.modifiers
= target
->ctype
.modifiers
& MOD_SPECIFIER
;
1664 merge_type(node
, ctype
);
1668 if (!lvalue_expression(op
)) {
1669 expression_error(op
, "non-lvalue array??");
1673 /* Do the implied "addressof" on the array */
1677 * When an array is dereferenced, we need to pick
1678 * up the attributes of the original node too..
1680 merge_type(node
, op
->ctype
);
1681 merge_type(node
, ctype
);
1685 node
->bit_size
= target
->bit_size
;
1686 node
->array_size
= target
->array_size
;
1693 * Unary post-ops: x++ and x--
1695 static struct symbol
*evaluate_postop(struct expression
*expr
)
1697 struct expression
*op
= expr
->unop
;
1698 struct symbol
*ctype
= op
->ctype
;
1699 int class = classify_type(op
->ctype
, &ctype
);
1702 if (!lvalue_expression(expr
->unop
)) {
1703 expression_error(expr
, "need lvalue expression for ++/--");
1707 if ((class & TYPE_RESTRICT
) && restricted_unop(expr
->op
, &ctype
))
1708 return bad_expr_type(expr
);
1710 if (class & TYPE_NUM
) {
1712 } else if (class == TYPE_PTR
) {
1713 struct symbol
*target
= examine_pointer_target(ctype
);
1714 if (!is_function(target
))
1715 multiply
= bits_to_bytes(target
->bit_size
);
1719 evaluate_assign_to(op
, op
->ctype
);
1720 expr
->op_value
= multiply
;
1721 expr
->ctype
= ctype
;
1725 expression_error(expr
, "bad argument type for ++/--");
1729 static struct symbol
*evaluate_sign(struct expression
*expr
)
1731 struct symbol
*ctype
= expr
->unop
->ctype
;
1732 int class = classify_type(ctype
, &ctype
);
1733 if (expr
->flags
&& !(expr
->unop
->flags
& Int_const_expr
))
1735 /* should be an arithmetic type */
1736 if (!(class & TYPE_NUM
))
1737 return bad_expr_type(expr
);
1738 if (!(class & (TYPE_FLOAT
|TYPE_RESTRICT
))) {
1739 struct symbol
*rtype
= integer_promotion(ctype
);
1740 expr
->unop
= cast_to(expr
->unop
, rtype
);
1742 } else if ((class & TYPE_FLOAT
) && expr
->op
!= '~') {
1743 /* no conversions needed */
1744 } else if ((class & TYPE_RESTRICT
) && !restricted_unop(expr
->op
, &ctype
)) {
1745 /* no conversions needed */
1747 return bad_expr_type(expr
);
1749 if (expr
->op
== '+')
1750 *expr
= *expr
->unop
;
1751 expr
->ctype
= ctype
;
1755 static struct symbol
*evaluate_preop(struct expression
*expr
)
1757 struct symbol
*ctype
= expr
->unop
->ctype
;
1761 *expr
= *expr
->unop
;
1767 return evaluate_sign(expr
);
1770 return evaluate_dereference(expr
);
1773 return evaluate_addressof(expr
);
1775 case SPECIAL_INCREMENT
:
1776 case SPECIAL_DECREMENT
:
1778 * From a type evaluation standpoint the preops are
1779 * the same as the postops
1781 return evaluate_postop(expr
);
1784 if (expr
->flags
&& !(expr
->unop
->flags
& Int_const_expr
))
1786 if (is_safe_type(ctype
))
1787 warning(expr
->pos
, "testing a 'safe expression'");
1788 if (is_float_type(ctype
)) {
1789 struct expression
*arg
= expr
->unop
;
1790 expr
->type
= EXPR_BINOP
;
1791 expr
->op
= SPECIAL_EQUAL
;
1793 expr
->right
= alloc_expression(expr
->pos
, EXPR_FVALUE
);
1794 expr
->right
->ctype
= ctype
;
1795 expr
->right
->fvalue
= 0;
1796 } else if (is_fouled_type(ctype
)) {
1797 warning(expr
->pos
, "%s degrades to integer",
1798 show_typename(ctype
->ctype
.base_type
));
1800 ctype
= &bool_ctype
;
1806 expr
->ctype
= ctype
;
1810 static struct symbol
*find_identifier(struct ident
*ident
, struct symbol_list
*_list
, int *offset
)
1812 struct ptr_list
*head
= (struct ptr_list
*)_list
;
1813 struct ptr_list
*list
= head
;
1819 for (i
= 0; i
< list
->nr
; i
++) {
1820 struct symbol
*sym
= (struct symbol
*) list
->list
[i
];
1822 if (sym
->ident
!= ident
)
1824 *offset
= sym
->offset
;
1827 struct symbol
*ctype
= sym
->ctype
.base_type
;
1831 if (ctype
->type
!= SYM_UNION
&& ctype
->type
!= SYM_STRUCT
)
1833 sub
= find_identifier(ident
, ctype
->symbol_list
, offset
);
1836 *offset
+= sym
->offset
;
1840 } while ((list
= list
->next
) != head
);
1844 static struct expression
*evaluate_offset(struct expression
*expr
, unsigned long offset
)
1846 struct expression
*add
;
1849 * Create a new add-expression
1851 * NOTE! Even if we just add zero, we need a new node
1852 * for the member pointer, since it has a different
1853 * type than the original pointer. We could make that
1854 * be just a cast, but the fact is, a node is a node,
1855 * so we might as well just do the "add zero" here.
1857 add
= alloc_expression(expr
->pos
, EXPR_BINOP
);
1860 add
->right
= alloc_expression(expr
->pos
, EXPR_VALUE
);
1861 add
->right
->ctype
= &int_ctype
;
1862 add
->right
->value
= offset
;
1865 * The ctype of the pointer will be lazily evaluated if
1866 * we ever take the address of this member dereference..
1868 add
->ctype
= &lazy_ptr_ctype
;
1872 /* structure/union dereference */
1873 static struct symbol
*evaluate_member_dereference(struct expression
*expr
)
1876 struct symbol
*ctype
, *member
;
1877 struct expression
*deref
= expr
->deref
, *add
;
1878 struct ident
*ident
= expr
->member
;
1882 if (!evaluate_expression(deref
))
1885 expression_error(expr
, "bad member name");
1889 ctype
= deref
->ctype
;
1890 examine_symbol_type(ctype
);
1891 address_space
= ctype
->ctype
.as
;
1892 mod
= ctype
->ctype
.modifiers
;
1893 if (ctype
->type
== SYM_NODE
) {
1894 ctype
= ctype
->ctype
.base_type
;
1895 address_space
|= ctype
->ctype
.as
;
1896 mod
|= ctype
->ctype
.modifiers
;
1898 if (!ctype
|| (ctype
->type
!= SYM_STRUCT
&& ctype
->type
!= SYM_UNION
)) {
1899 expression_error(expr
, "expected structure or union");
1903 member
= find_identifier(ident
, ctype
->symbol_list
, &offset
);
1905 const char *type
= ctype
->type
== SYM_STRUCT
? "struct" : "union";
1906 const char *name
= "<unnamed>";
1909 name
= ctype
->ident
->name
;
1910 namelen
= ctype
->ident
->len
;
1912 if (ctype
->symbol_list
)
1913 expression_error(expr
, "no member '%s' in %s %.*s",
1914 show_ident(ident
), type
, namelen
, name
);
1916 expression_error(expr
, "using member '%s' in "
1917 "incomplete %s %.*s", show_ident(ident
),
1918 type
, namelen
, name
);
1923 * The member needs to take on the address space and modifiers of
1924 * the "parent" type.
1926 member
= convert_to_as_mod(member
, address_space
, mod
);
1927 ctype
= get_base_type(member
);
1929 if (!lvalue_expression(deref
)) {
1930 if (deref
->type
!= EXPR_SLICE
) {
1934 expr
->base
= deref
->base
;
1935 expr
->r_bitpos
= deref
->r_bitpos
;
1937 expr
->r_bitpos
+= bytes_to_bits(offset
);
1938 expr
->type
= EXPR_SLICE
;
1939 expr
->r_nrbits
= member
->bit_size
;
1940 expr
->r_bitpos
+= member
->bit_offset
;
1941 expr
->ctype
= member
;
1945 deref
= deref
->unop
;
1946 expr
->deref
= deref
;
1948 add
= evaluate_offset(deref
, offset
);
1949 expr
->type
= EXPR_PREOP
;
1953 expr
->ctype
= member
;
1957 static int is_promoted(struct expression
*expr
)
1960 switch (expr
->type
) {
1963 case EXPR_CONDITIONAL
:
1987 static struct symbol
*evaluate_cast(struct expression
*);
1989 static struct symbol
*evaluate_type_information(struct expression
*expr
)
1991 struct symbol
*sym
= expr
->cast_type
;
1993 sym
= evaluate_expression(expr
->cast_expression
);
1997 * Expressions of restricted types will possibly get
1998 * promoted - check that here
2000 if (is_restricted_type(sym
)) {
2001 if (sym
->bit_size
< bits_in_int
&& is_promoted(expr
))
2003 } else if (is_fouled_type(sym
)) {
2007 examine_symbol_type(sym
);
2008 if (is_bitfield_type(sym
)) {
2009 expression_error(expr
, "trying to examine bitfield type");
2015 static struct symbol
*evaluate_sizeof(struct expression
*expr
)
2017 struct symbol
*type
;
2020 type
= evaluate_type_information(expr
);
2024 size
= type
->bit_size
;
2026 if (size
< 0 && is_void_type(type
)) {
2027 warning(expr
->pos
, "expression using sizeof(void)");
2028 size
= bits_in_char
;
2031 if (size
== 1 && is_bool_type(type
)) {
2032 warning(expr
->pos
, "expression using sizeof bool");
2033 size
= bits_in_char
;
2036 if (is_function(type
->ctype
.base_type
)) {
2037 warning(expr
->pos
, "expression using sizeof on a function");
2038 size
= bits_in_char
;
2041 if ((size
< 0) || (size
& (bits_in_char
- 1)))
2042 expression_error(expr
, "cannot size expression");
2044 expr
->type
= EXPR_VALUE
;
2045 expr
->value
= bits_to_bytes(size
);
2047 expr
->ctype
= size_t_ctype
;
2048 return size_t_ctype
;
2051 static struct symbol
*evaluate_ptrsizeof(struct expression
*expr
)
2053 struct symbol
*type
;
2056 type
= evaluate_type_information(expr
);
2060 if (type
->type
== SYM_NODE
)
2061 type
= type
->ctype
.base_type
;
2064 switch (type
->type
) {
2068 type
= get_base_type(type
);
2072 expression_error(expr
, "expected pointer expression");
2075 size
= type
->bit_size
;
2076 if (size
& (bits_in_char
-1))
2078 expr
->type
= EXPR_VALUE
;
2079 expr
->value
= bits_to_bytes(size
);
2081 expr
->ctype
= size_t_ctype
;
2082 return size_t_ctype
;
2085 static struct symbol
*evaluate_alignof(struct expression
*expr
)
2087 struct symbol
*type
;
2089 type
= evaluate_type_information(expr
);
2093 expr
->type
= EXPR_VALUE
;
2094 expr
->value
= type
->ctype
.alignment
;
2096 expr
->ctype
= size_t_ctype
;
2097 return size_t_ctype
;
2100 static int evaluate_arguments(struct symbol
*f
, struct symbol
*fn
, struct expression_list
*head
)
2102 struct expression
*expr
;
2103 struct symbol_list
*argument_types
= fn
->arguments
;
2104 struct symbol
*argtype
;
2107 PREPARE_PTR_LIST(argument_types
, argtype
);
2108 FOR_EACH_PTR (head
, expr
) {
2109 struct expression
**p
= THIS_ADDRESS(expr
);
2110 struct symbol
*ctype
, *target
;
2111 ctype
= evaluate_expression(expr
);
2118 struct symbol
*type
;
2119 int class = classify_type(ctype
, &type
);
2120 if (is_int(class)) {
2121 *p
= cast_to(expr
, integer_promotion(type
));
2122 } else if (class & TYPE_FLOAT
) {
2123 unsigned long mod
= type
->ctype
.modifiers
;
2124 if (!(mod
& (MOD_LONG_ALL
)))
2125 *p
= cast_to(expr
, &double_ctype
);
2126 } else if (class & TYPE_PTR
) {
2127 if (expr
->ctype
== &null_ctype
)
2128 *p
= cast_to(expr
, &ptr_ctype
);
2133 static char where
[30];
2134 examine_symbol_type(target
);
2135 sprintf(where
, "argument %d", i
);
2136 compatible_assignment_types(expr
, target
, p
, where
);
2140 NEXT_PTR_LIST(argtype
);
2141 } END_FOR_EACH_PTR(expr
);
2142 FINISH_PTR_LIST(argtype
);
2146 static struct symbol
*find_struct_ident(struct symbol
*ctype
, struct ident
*ident
)
2150 FOR_EACH_PTR(ctype
->symbol_list
, sym
) {
2151 if (sym
->ident
== ident
)
2153 } END_FOR_EACH_PTR(sym
);
2157 static void convert_index(struct expression
*e
)
2159 struct expression
*child
= e
->idx_expression
;
2160 unsigned from
= e
->idx_from
;
2161 unsigned to
= e
->idx_to
+ 1;
2163 e
->init_offset
= from
* bits_to_bytes(e
->ctype
->bit_size
);
2164 e
->init_nr
= to
- from
;
2165 e
->init_expr
= child
;
2168 static void convert_ident(struct expression
*e
)
2170 struct expression
*child
= e
->ident_expression
;
2171 struct symbol
*sym
= e
->field
;
2173 e
->init_offset
= sym
->offset
;
2175 e
->init_expr
= child
;
2178 static void convert_designators(struct expression
*e
)
2181 if (e
->type
== EXPR_INDEX
)
2183 else if (e
->type
== EXPR_IDENTIFIER
)
2191 static void excess(struct expression
*e
, const char *s
)
2193 warning(e
->pos
, "excessive elements in %s initializer", s
);
2197 * implicit designator for the first element
2199 static struct expression
*first_subobject(struct symbol
*ctype
, int class,
2200 struct expression
**v
)
2202 struct expression
*e
= *v
, *new;
2204 if (ctype
->type
== SYM_NODE
)
2205 ctype
= ctype
->ctype
.base_type
;
2207 if (class & TYPE_PTR
) { /* array */
2208 if (!ctype
->bit_size
)
2210 new = alloc_expression(e
->pos
, EXPR_INDEX
);
2211 new->idx_expression
= e
;
2212 new->ctype
= ctype
->ctype
.base_type
;
2214 struct symbol
*field
, *p
;
2215 PREPARE_PTR_LIST(ctype
->symbol_list
, p
);
2216 while (p
&& !p
->ident
&& is_bitfield_type(p
))
2222 new = alloc_expression(e
->pos
, EXPR_IDENTIFIER
);
2223 new->ident_expression
= e
;
2224 new->field
= new->ctype
= field
;
2231 * sanity-check explicit designators; return the innermost one or NULL
2232 * in case of error. Assign types.
2234 static struct expression
*check_designators(struct expression
*e
,
2235 struct symbol
*ctype
)
2237 struct expression
*last
= NULL
;
2240 if (ctype
->type
== SYM_NODE
)
2241 ctype
= ctype
->ctype
.base_type
;
2242 if (e
->type
== EXPR_INDEX
) {
2243 struct symbol
*type
;
2244 if (ctype
->type
!= SYM_ARRAY
) {
2245 err
= "array index in non-array";
2248 type
= ctype
->ctype
.base_type
;
2249 if (ctype
->bit_size
>= 0 && type
->bit_size
>= 0) {
2250 unsigned offset
= e
->idx_to
* type
->bit_size
;
2251 if (offset
>= ctype
->bit_size
) {
2252 err
= "index out of bounds in";
2256 e
->ctype
= ctype
= type
;
2259 if (!e
->idx_expression
) {
2263 e
= e
->idx_expression
;
2264 } else if (e
->type
== EXPR_IDENTIFIER
) {
2265 if (ctype
->type
!= SYM_STRUCT
&& ctype
->type
!= SYM_UNION
) {
2266 err
= "field name not in struct or union";
2269 ctype
= find_struct_ident(ctype
, e
->expr_ident
);
2271 err
= "unknown field name in";
2274 e
->field
= e
->ctype
= ctype
;
2276 if (!e
->ident_expression
) {
2280 e
= e
->ident_expression
;
2281 } else if (e
->type
== EXPR_POS
) {
2282 err
= "internal front-end error: EXPR_POS in";
2287 expression_error(e
, "%s initializer", err
);
2292 * choose the next subobject to initialize.
2294 * Get designators for next element, switch old ones to EXPR_POS.
2295 * Return the resulting expression or NULL if we'd run out of subobjects.
2296 * The innermost designator is returned in *v. Designators in old
2297 * are assumed to be already sanity-checked.
2299 static struct expression
*next_designators(struct expression
*old
,
2300 struct symbol
*ctype
,
2301 struct expression
*e
, struct expression
**v
)
2303 struct expression
*new = NULL
;
2307 if (old
->type
== EXPR_INDEX
) {
2308 struct expression
*copy
;
2311 copy
= next_designators(old
->idx_expression
,
2314 n
= old
->idx_to
+ 1;
2315 if (n
* old
->ctype
->bit_size
== ctype
->bit_size
) {
2320 *v
= new = alloc_expression(e
->pos
, EXPR_INDEX
);
2323 new = alloc_expression(e
->pos
, EXPR_INDEX
);
2326 new->idx_from
= new->idx_to
= n
;
2327 new->idx_expression
= copy
;
2328 new->ctype
= old
->ctype
;
2330 } else if (old
->type
== EXPR_IDENTIFIER
) {
2331 struct expression
*copy
;
2332 struct symbol
*field
;
2334 copy
= next_designators(old
->ident_expression
,
2337 field
= old
->field
->next_subobject
;
2343 *v
= new = alloc_expression(e
->pos
, EXPR_IDENTIFIER
);
2346 new = alloc_expression(e
->pos
, EXPR_IDENTIFIER
);
2350 new->expr_ident
= field
->ident
;
2351 new->ident_expression
= copy
;
2358 static int handle_simple_initializer(struct expression
**ep
, int nested
,
2359 int class, struct symbol
*ctype
);
2362 * deal with traversing subobjects [6.7.8(17,18,20)]
2364 static void handle_list_initializer(struct expression
*expr
,
2365 int class, struct symbol
*ctype
)
2367 struct expression
*e
, *last
= NULL
, *top
= NULL
, *next
;
2370 FOR_EACH_PTR(expr
->expr_list
, e
) {
2371 struct expression
**v
;
2372 struct symbol
*type
;
2375 if (e
->type
!= EXPR_INDEX
&& e
->type
!= EXPR_IDENTIFIER
) {
2376 struct symbol
*struct_sym
;
2379 last
= first_subobject(ctype
, class, &top
);
2381 last
= next_designators(last
, ctype
, e
, &top
);
2384 excess(e
, class & TYPE_PTR
? "array" :
2386 DELETE_CURRENT_PTR(e
);
2389 struct_sym
= ctype
->type
== SYM_NODE
? ctype
->ctype
.base_type
: ctype
;
2390 if (Wdesignated_init
&& struct_sym
->designated_init
)
2391 warning(e
->pos
, "%s%.*s%spositional init of field in %s %s, declared with attribute designated_init",
2392 ctype
->ident
? "in initializer for " : "",
2393 ctype
->ident
? ctype
->ident
->len
: 0,
2394 ctype
->ident
? ctype
->ident
->name
: "",
2395 ctype
->ident
? ": " : "",
2396 get_type_name(struct_sym
->type
),
2397 show_ident(struct_sym
->ident
));
2399 warning(e
->pos
, "advancing past deep designator");
2402 REPLACE_CURRENT_PTR(e
, last
);
2404 next
= check_designators(e
, ctype
);
2406 DELETE_CURRENT_PTR(e
);
2410 /* deeper than one designator? */
2412 convert_designators(last
);
2417 lclass
= classify_type(top
->ctype
, &type
);
2418 if (top
->type
== EXPR_INDEX
)
2419 v
= &top
->idx_expression
;
2421 v
= &top
->ident_expression
;
2423 if (handle_simple_initializer(v
, 1, lclass
, top
->ctype
))
2426 if (!(lclass
& TYPE_COMPOUND
)) {
2427 warning(e
->pos
, "bogus scalar initializer");
2428 DELETE_CURRENT_PTR(e
);
2432 next
= first_subobject(type
, lclass
, v
);
2434 warning(e
->pos
, "missing braces around initializer");
2439 DELETE_CURRENT_PTR(e
);
2440 excess(e
, lclass
& TYPE_PTR
? "array" : "struct or union");
2442 } END_FOR_EACH_PTR(e
);
2444 convert_designators(last
);
2445 expr
->ctype
= ctype
;
2448 static int is_string_literal(struct expression
**v
)
2450 struct expression
*e
= *v
;
2451 while (e
&& e
->type
== EXPR_PREOP
&& e
->op
== '(')
2453 if (!e
|| e
->type
!= EXPR_STRING
)
2455 if (e
!= *v
&& Wparen_string
)
2457 "array initialized from parenthesized string constant");
2463 * We want a normal expression, possibly in one layer of braces. Warn
2464 * if the latter happens inside a list (it's legal, but likely to be
2465 * an effect of screwup). In case of anything not legal, we are definitely
2466 * having an effect of screwup, so just fail and let the caller warn.
2468 static struct expression
*handle_scalar(struct expression
*e
, int nested
)
2470 struct expression
*v
= NULL
, *p
;
2474 if (e
->type
!= EXPR_INITIALIZER
)
2477 FOR_EACH_PTR(e
->expr_list
, p
) {
2481 } END_FOR_EACH_PTR(p
);
2485 case EXPR_INITIALIZER
:
2487 case EXPR_IDENTIFIER
:
2493 warning(e
->pos
, "braces around scalar initializer");
2498 * deal with the cases that don't care about subobjects:
2499 * scalar <- assignment expression, possibly in braces [6.7.8(11)]
2500 * character array <- string literal, possibly in braces [6.7.8(14)]
2501 * struct or union <- assignment expression of compatible type [6.7.8(13)]
2502 * compound type <- initializer list in braces [6.7.8(16)]
2503 * The last one punts to handle_list_initializer() which, in turn will call
2504 * us for individual elements of the list.
2506 * We do not handle 6.7.8(15) (wide char array <- wide string literal) for
2507 * the lack of support of wide char stuff in general.
2509 * One note: we need to take care not to evaluate a string literal until
2510 * we know that we *will* handle it right here. Otherwise we would screw
2511 * the cases like struct { struct {char s[10]; ...} ...} initialized with
2512 * { "string", ...} - we need to preserve that string literal recognizable
2513 * until we dig into the inner struct.
2515 static int handle_simple_initializer(struct expression
**ep
, int nested
,
2516 int class, struct symbol
*ctype
)
2518 int is_string
= is_string_type(ctype
);
2519 struct expression
*e
= *ep
, *p
;
2520 struct symbol
*type
;
2526 if (!(class & TYPE_COMPOUND
)) {
2527 e
= handle_scalar(e
, nested
);
2531 if (!evaluate_expression(e
))
2533 compatible_assignment_types(e
, ctype
, ep
, "initializer");
2538 * sublist; either a string, or we dig in; the latter will deal with
2539 * pathologies, so we don't need anything fancy here.
2541 if (e
->type
== EXPR_INITIALIZER
) {
2543 struct expression
*v
= NULL
;
2546 FOR_EACH_PTR(e
->expr_list
, p
) {
2550 } END_FOR_EACH_PTR(p
);
2551 if (count
== 1 && is_string_literal(&v
)) {
2556 handle_list_initializer(e
, class, ctype
);
2561 if (is_string_literal(&e
)) {
2562 /* either we are doing array of char, or we'll have to dig in */
2569 /* struct or union can be initialized by compatible */
2570 if (class != TYPE_COMPOUND
)
2572 type
= evaluate_expression(e
);
2575 if (ctype
->type
== SYM_NODE
)
2576 ctype
= ctype
->ctype
.base_type
;
2577 if (type
->type
== SYM_NODE
)
2578 type
= type
->ctype
.base_type
;
2584 p
= alloc_expression(e
->pos
, EXPR_STRING
);
2586 type
= evaluate_expression(p
);
2587 if (ctype
->bit_size
!= -1 &&
2588 ctype
->bit_size
+ bits_in_char
< type
->bit_size
) {
2590 "too long initializer-string for array of char");
2596 static void evaluate_initializer(struct symbol
*ctype
, struct expression
**ep
)
2598 struct symbol
*type
;
2599 int class = classify_type(ctype
, &type
);
2600 if (!handle_simple_initializer(ep
, 0, class, ctype
))
2601 expression_error(*ep
, "invalid initializer");
2604 static struct symbol
*evaluate_cast(struct expression
*expr
)
2606 struct expression
*target
= expr
->cast_expression
;
2607 struct symbol
*ctype
;
2608 struct symbol
*t1
, *t2
;
2610 int as1
= 0, as2
= 0;
2616 * Special case: a cast can be followed by an
2617 * initializer, in which case we need to pass
2618 * the type value down to that initializer rather
2619 * than trying to evaluate it as an expression
2621 * A more complex case is when the initializer is
2622 * dereferenced as part of a post-fix expression.
2623 * We need to produce an expression that can be dereferenced.
2625 if (target
->type
== EXPR_INITIALIZER
) {
2626 struct symbol
*sym
= expr
->cast_type
;
2627 struct expression
*addr
= alloc_expression(expr
->pos
, EXPR_SYMBOL
);
2629 sym
->initializer
= target
;
2630 evaluate_symbol(sym
);
2632 addr
->ctype
= &lazy_ptr_ctype
; /* Lazy eval */
2635 expr
->type
= EXPR_PREOP
;
2643 ctype
= examine_symbol_type(expr
->cast_type
);
2644 expr
->ctype
= ctype
;
2645 expr
->cast_type
= ctype
;
2647 evaluate_expression(target
);
2650 class1
= classify_type(ctype
, &t1
);
2652 /* cast to non-integer type -> not an integer constant expression */
2653 if (!is_int(class1
))
2655 /* if argument turns out to be not an integer constant expression *and*
2656 it was not a floating literal to start with -> too bad */
2657 else if (expr
->flags
== Int_const_expr
&&
2658 !(target
->flags
& Int_const_expr
))
2661 * You can always throw a value away by casting to
2662 * "void" - that's an implicit "force". Note that
2663 * the same is _not_ true of "void *".
2665 if (t1
== &void_ctype
)
2668 if (class1
& (TYPE_COMPOUND
| TYPE_FN
))
2669 warning(expr
->pos
, "cast to non-scalar");
2673 expression_error(expr
, "cast from unknown type");
2676 class2
= classify_type(t2
, &t2
);
2678 if (class2
& TYPE_COMPOUND
)
2679 warning(expr
->pos
, "cast from non-scalar");
2681 if (expr
->type
== EXPR_FORCE_CAST
)
2684 /* allowed cast unfouls */
2685 if (class2
& TYPE_FOULED
)
2689 if (class1
& TYPE_RESTRICT
)
2690 warning(expr
->pos
, "cast to %s",
2692 if (class2
& TYPE_RESTRICT
)
2693 warning(expr
->pos
, "cast from %s",
2697 if (t1
== &ulong_ctype
)
2699 else if (class1
== TYPE_PTR
) {
2700 examine_pointer_target(t1
);
2704 if (t2
== &ulong_ctype
)
2706 else if (class2
== TYPE_PTR
) {
2707 examine_pointer_target(t2
);
2711 if (!as1
&& as2
> 0)
2712 warning(expr
->pos
, "cast removes address space of expression");
2713 if (as1
> 0 && as2
> 0 && as1
!= as2
)
2714 warning(expr
->pos
, "cast between address spaces (<asn:%d>-><asn:%d>)", as2
, as1
);
2715 if (as1
> 0 && !as2
&&
2716 !is_null_pointer_constant(target
) && Wcast_to_as
)
2718 "cast adds address space to expression (<asn:%d>)", as1
);
2720 if (!(t1
->ctype
.modifiers
& MOD_PTRINHERIT
) && class1
== TYPE_PTR
&&
2721 !as1
&& (target
->flags
& Int_const_expr
)) {
2722 if (t1
->ctype
.base_type
== &void_ctype
) {
2723 if (is_zero_constant(target
)) {
2725 expr
->type
= EXPR_VALUE
;
2726 expr
->ctype
= &null_ctype
;
2737 * Evaluate a call expression with a symbol. This
2738 * should expand inline functions, and evaluate
2741 static int evaluate_symbol_call(struct expression
*expr
)
2743 struct expression
*fn
= expr
->fn
;
2744 struct symbol
*ctype
= fn
->ctype
;
2746 if (fn
->type
!= EXPR_PREOP
)
2749 if (ctype
->op
&& ctype
->op
->evaluate
)
2750 return ctype
->op
->evaluate(expr
);
2752 if (ctype
->ctype
.modifiers
& MOD_INLINE
) {
2754 struct symbol
*curr
= current_fn
;
2756 if (ctype
->definition
)
2757 ctype
= ctype
->definition
;
2759 current_fn
= ctype
->ctype
.base_type
;
2761 ret
= inline_function(expr
, ctype
);
2763 /* restore the old function */
2771 static struct symbol
*evaluate_call(struct expression
*expr
)
2774 struct symbol
*ctype
, *sym
;
2775 struct expression
*fn
= expr
->fn
;
2776 struct expression_list
*arglist
= expr
->args
;
2778 if (!evaluate_expression(fn
))
2780 sym
= ctype
= fn
->ctype
;
2781 if (ctype
->type
== SYM_NODE
)
2782 ctype
= ctype
->ctype
.base_type
;
2783 if (ctype
->type
== SYM_PTR
)
2784 ctype
= get_base_type(ctype
);
2786 if (ctype
->type
!= SYM_FN
) {
2787 struct expression
*arg
;
2788 expression_error(expr
, "not a function %s",
2789 show_ident(sym
->ident
));
2790 /* do typechecking in arguments */
2791 FOR_EACH_PTR (arglist
, arg
) {
2792 evaluate_expression(arg
);
2793 } END_FOR_EACH_PTR(arg
);
2797 examine_fn_arguments(ctype
);
2798 if (sym
->type
== SYM_NODE
&& fn
->type
== EXPR_PREOP
&&
2799 sym
->op
&& sym
->op
->args
) {
2800 if (!sym
->op
->args(expr
))
2803 if (!evaluate_arguments(sym
, ctype
, arglist
))
2805 args
= expression_list_size(expr
->args
);
2806 fnargs
= symbol_list_size(ctype
->arguments
);
2808 expression_error(expr
,
2809 "not enough arguments for function %s",
2810 show_ident(sym
->ident
));
2811 if (args
> fnargs
&& !ctype
->variadic
)
2812 expression_error(expr
,
2813 "too many arguments for function %s",
2814 show_ident(sym
->ident
));
2816 if (sym
->type
== SYM_NODE
) {
2817 if (evaluate_symbol_call(expr
))
2820 expr
->ctype
= ctype
->ctype
.base_type
;
2824 static struct symbol
*evaluate_offsetof(struct expression
*expr
)
2826 struct expression
*e
= expr
->down
;
2827 struct symbol
*ctype
= expr
->in
;
2830 if (expr
->op
== '.') {
2831 struct symbol
*field
;
2834 expression_error(expr
, "expected structure or union");
2837 examine_symbol_type(ctype
);
2838 class = classify_type(ctype
, &ctype
);
2839 if (class != TYPE_COMPOUND
) {
2840 expression_error(expr
, "expected structure or union");
2844 field
= find_identifier(expr
->ident
, ctype
->symbol_list
, &offset
);
2846 expression_error(expr
, "unknown member");
2850 expr
->type
= EXPR_VALUE
;
2851 expr
->flags
= Int_const_expr
;
2852 expr
->value
= offset
;
2854 expr
->ctype
= size_t_ctype
;
2857 expression_error(expr
, "expected structure or union");
2860 examine_symbol_type(ctype
);
2861 class = classify_type(ctype
, &ctype
);
2862 if (class != (TYPE_COMPOUND
| TYPE_PTR
)) {
2863 expression_error(expr
, "expected array");
2866 ctype
= ctype
->ctype
.base_type
;
2868 expr
->type
= EXPR_VALUE
;
2869 expr
->flags
= Int_const_expr
;
2872 expr
->ctype
= size_t_ctype
;
2874 struct expression
*idx
= expr
->index
, *m
;
2875 struct symbol
*i_type
= evaluate_expression(idx
);
2876 int i_class
= classify_type(i_type
, &i_type
);
2877 if (!is_int(i_class
)) {
2878 expression_error(expr
, "non-integer index");
2881 unrestrict(idx
, i_class
, &i_type
);
2882 idx
= cast_to(idx
, size_t_ctype
);
2883 m
= alloc_const_expression(expr
->pos
,
2884 bits_to_bytes(ctype
->bit_size
));
2885 m
->ctype
= size_t_ctype
;
2886 m
->flags
= Int_const_expr
;
2887 expr
->type
= EXPR_BINOP
;
2891 expr
->ctype
= size_t_ctype
;
2892 expr
->flags
= m
->flags
& idx
->flags
& Int_const_expr
;
2896 struct expression
*copy
= __alloc_expression(0);
2898 if (e
->type
== EXPR_OFFSETOF
)
2900 if (!evaluate_expression(e
))
2902 expr
->type
= EXPR_BINOP
;
2903 expr
->flags
= e
->flags
& copy
->flags
& Int_const_expr
;
2905 expr
->ctype
= size_t_ctype
;
2909 return size_t_ctype
;
2912 struct symbol
*evaluate_expression(struct expression
*expr
)
2919 switch (expr
->type
) {
2922 expression_error(expr
, "value expression without a type");
2925 return evaluate_string(expr
);
2927 return evaluate_symbol_expression(expr
);
2929 if (!evaluate_expression(expr
->left
))
2931 if (!evaluate_expression(expr
->right
))
2933 return evaluate_binop(expr
);
2935 return evaluate_logical(expr
);
2937 evaluate_expression(expr
->left
);
2938 if (!evaluate_expression(expr
->right
))
2940 return evaluate_comma(expr
);
2942 if (!evaluate_expression(expr
->left
))
2944 if (!evaluate_expression(expr
->right
))
2946 return evaluate_compare(expr
);
2947 case EXPR_ASSIGNMENT
:
2948 if (!evaluate_expression(expr
->left
))
2950 if (!evaluate_expression(expr
->right
))
2952 return evaluate_assignment(expr
);
2954 if (!evaluate_expression(expr
->unop
))
2956 return evaluate_preop(expr
);
2958 if (!evaluate_expression(expr
->unop
))
2960 return evaluate_postop(expr
);
2962 case EXPR_FORCE_CAST
:
2963 case EXPR_IMPLIED_CAST
:
2964 return evaluate_cast(expr
);
2966 return evaluate_sizeof(expr
);
2967 case EXPR_PTRSIZEOF
:
2968 return evaluate_ptrsizeof(expr
);
2970 return evaluate_alignof(expr
);
2972 return evaluate_member_dereference(expr
);
2974 return evaluate_call(expr
);
2976 case EXPR_CONDITIONAL
:
2977 return evaluate_conditional_expression(expr
);
2978 case EXPR_STATEMENT
:
2979 expr
->ctype
= evaluate_statement(expr
->statement
);
2983 expr
->ctype
= &ptr_ctype
;
2987 /* Evaluate the type of the symbol .. */
2988 evaluate_symbol(expr
->symbol
);
2989 /* .. but the type of the _expression_ is a "type" */
2990 expr
->ctype
= &type_ctype
;
2994 return evaluate_offsetof(expr
);
2996 /* These can not exist as stand-alone expressions */
2997 case EXPR_INITIALIZER
:
2998 case EXPR_IDENTIFIER
:
3001 expression_error(expr
, "internal front-end error: initializer in expression");
3004 expression_error(expr
, "internal front-end error: SLICE re-evaluated");
3010 static void check_duplicates(struct symbol
*sym
)
3013 struct symbol
*next
= sym
;
3015 while ((next
= next
->same_symbol
) != NULL
) {
3016 const char *typediff
;
3017 evaluate_symbol(next
);
3019 typediff
= type_difference(&sym
->ctype
, &next
->ctype
, 0, 0);
3021 sparse_error(sym
->pos
, "symbol '%s' redeclared with different type (originally declared at %s:%d) - %s",
3022 show_ident(sym
->ident
),
3023 stream_name(next
->pos
.stream
), next
->pos
.line
, typediff
);
3028 unsigned long mod
= sym
->ctype
.modifiers
;
3029 if (mod
& (MOD_STATIC
| MOD_REGISTER
))
3031 if (!(mod
& MOD_TOPLEVEL
))
3035 if (sym
->ident
== &main_ident
)
3037 warning(sym
->pos
, "symbol '%s' was not declared. Should it be static?", show_ident(sym
->ident
));
3041 static struct symbol
*evaluate_symbol(struct symbol
*sym
)
3043 struct symbol
*base_type
;
3051 sym
= examine_symbol_type(sym
);
3052 base_type
= get_base_type(sym
);
3056 /* Evaluate the initializers */
3057 if (sym
->initializer
)
3058 evaluate_initializer(sym
, &sym
->initializer
);
3060 /* And finally, evaluate the body of the symbol too */
3061 if (base_type
->type
== SYM_FN
) {
3062 struct symbol
*curr
= current_fn
;
3064 if (sym
->definition
&& sym
->definition
!= sym
)
3065 return evaluate_symbol(sym
->definition
);
3067 current_fn
= base_type
;
3069 examine_fn_arguments(base_type
);
3070 if (!base_type
->stmt
&& base_type
->inline_stmt
)
3072 if (base_type
->stmt
)
3073 evaluate_statement(base_type
->stmt
);
3081 void evaluate_symbol_list(struct symbol_list
*list
)
3085 FOR_EACH_PTR(list
, sym
) {
3086 evaluate_symbol(sym
);
3087 check_duplicates(sym
);
3088 } END_FOR_EACH_PTR(sym
);
3091 static struct symbol
*evaluate_return_expression(struct statement
*stmt
)
3093 struct expression
*expr
= stmt
->expression
;
3094 struct symbol
*fntype
;
3096 evaluate_expression(expr
);
3097 fntype
= current_fn
->ctype
.base_type
;
3098 if (!fntype
|| fntype
== &void_ctype
) {
3099 if (expr
&& expr
->ctype
!= &void_ctype
)
3100 expression_error(expr
, "return expression in %s function", fntype
?"void":"typeless");
3101 if (expr
&& Wreturn_void
)
3102 warning(stmt
->pos
, "returning void-valued expression");
3107 sparse_error(stmt
->pos
, "return with no return value");
3112 compatible_assignment_types(expr
, fntype
, &stmt
->expression
, "return expression");
3116 static void evaluate_if_statement(struct statement
*stmt
)
3118 if (!stmt
->if_conditional
)
3121 evaluate_conditional(stmt
->if_conditional
, 0);
3122 evaluate_statement(stmt
->if_true
);
3123 evaluate_statement(stmt
->if_false
);
3126 static void evaluate_iterator(struct statement
*stmt
)
3128 evaluate_symbol_list(stmt
->iterator_syms
);
3129 evaluate_conditional(stmt
->iterator_pre_condition
, 1);
3130 evaluate_conditional(stmt
->iterator_post_condition
,1);
3131 evaluate_statement(stmt
->iterator_pre_statement
);
3132 evaluate_statement(stmt
->iterator_statement
);
3133 evaluate_statement(stmt
->iterator_post_statement
);
3136 static void verify_output_constraint(struct expression
*expr
, const char *constraint
)
3138 switch (*constraint
) {
3139 case '=': /* Assignment */
3140 case '+': /* Update */
3143 expression_error(expr
, "output constraint is not an assignment constraint (\"%s\")", constraint
);
3147 static void verify_input_constraint(struct expression
*expr
, const char *constraint
)
3149 switch (*constraint
) {
3150 case '=': /* Assignment */
3151 case '+': /* Update */
3152 expression_error(expr
, "input constraint with assignment (\"%s\")", constraint
);
3156 static void evaluate_asm_statement(struct statement
*stmt
)
3158 struct expression
*expr
;
3162 expr
= stmt
->asm_string
;
3163 if (!expr
|| expr
->type
!= EXPR_STRING
) {
3164 sparse_error(stmt
->pos
, "need constant string for inline asm");
3169 FOR_EACH_PTR(stmt
->asm_outputs
, expr
) {
3171 case 0: /* Identifier */
3175 case 1: /* Constraint */
3177 if (!expr
|| expr
->type
!= EXPR_STRING
) {
3178 sparse_error(expr
? expr
->pos
: stmt
->pos
, "asm output constraint is not a string");
3179 *THIS_ADDRESS(expr
) = NULL
;
3182 verify_output_constraint(expr
, expr
->string
->data
);
3185 case 2: /* Expression */
3187 if (!evaluate_expression(expr
))
3189 if (!lvalue_expression(expr
))
3190 warning(expr
->pos
, "asm output is not an lvalue");
3191 evaluate_assign_to(expr
, expr
->ctype
);
3194 } END_FOR_EACH_PTR(expr
);
3197 FOR_EACH_PTR(stmt
->asm_inputs
, expr
) {
3199 case 0: /* Identifier */
3203 case 1: /* Constraint */
3205 if (!expr
|| expr
->type
!= EXPR_STRING
) {
3206 sparse_error(expr
? expr
->pos
: stmt
->pos
, "asm input constraint is not a string");
3207 *THIS_ADDRESS(expr
) = NULL
;
3210 verify_input_constraint(expr
, expr
->string
->data
);
3213 case 2: /* Expression */
3215 if (!evaluate_expression(expr
))
3219 } END_FOR_EACH_PTR(expr
);
3221 FOR_EACH_PTR(stmt
->asm_clobbers
, expr
) {
3223 sparse_error(stmt
->pos
, "bad asm clobbers");
3226 if (expr
->type
== EXPR_STRING
)
3228 expression_error(expr
, "asm clobber is not a string");
3229 } END_FOR_EACH_PTR(expr
);
3231 FOR_EACH_PTR(stmt
->asm_labels
, sym
) {
3232 if (!sym
|| sym
->type
!= SYM_LABEL
) {
3233 sparse_error(stmt
->pos
, "bad asm label");
3236 } END_FOR_EACH_PTR(sym
);
3239 static void evaluate_case_statement(struct statement
*stmt
)
3241 evaluate_expression(stmt
->case_expression
);
3242 evaluate_expression(stmt
->case_to
);
3243 evaluate_statement(stmt
->case_statement
);
3246 static void check_case_type(struct expression
*switch_expr
,
3247 struct expression
*case_expr
,
3248 struct expression
**enumcase
)
3250 struct symbol
*switch_type
, *case_type
;
3256 switch_type
= switch_expr
->ctype
;
3257 case_type
= evaluate_expression(case_expr
);
3259 if (!switch_type
|| !case_type
)
3263 warn_for_different_enum_types(case_expr
->pos
, case_type
, (*enumcase
)->ctype
);
3264 else if (is_enum_type(case_type
))
3265 *enumcase
= case_expr
;
3268 sclass
= classify_type(switch_type
, &switch_type
);
3269 cclass
= classify_type(case_type
, &case_type
);
3271 /* both should be arithmetic */
3272 if (!(sclass
& cclass
& TYPE_NUM
))
3275 /* neither should be floating */
3276 if ((sclass
| cclass
) & TYPE_FLOAT
)
3279 /* if neither is restricted, we are OK */
3280 if (!((sclass
| cclass
) & TYPE_RESTRICT
))
3283 if (!restricted_binop_type(SPECIAL_EQUAL
, case_expr
, switch_expr
,
3284 cclass
, sclass
, case_type
, switch_type
)) {
3285 unrestrict(case_expr
, cclass
, &case_type
);
3286 unrestrict(switch_expr
, sclass
, &switch_type
);
3291 expression_error(case_expr
, "incompatible types for 'case' statement");
3294 static void evaluate_switch_statement(struct statement
*stmt
)
3297 struct expression
*enumcase
= NULL
;
3298 struct expression
**enumcase_holder
= &enumcase
;
3299 struct expression
*sel
= stmt
->switch_expression
;
3301 evaluate_expression(sel
);
3302 evaluate_statement(stmt
->switch_statement
);
3305 if (sel
->ctype
&& is_enum_type(sel
->ctype
))
3306 enumcase_holder
= NULL
; /* Only check cases against switch */
3308 FOR_EACH_PTR(stmt
->switch_case
->symbol_list
, sym
) {
3309 struct statement
*case_stmt
= sym
->stmt
;
3310 check_case_type(sel
, case_stmt
->case_expression
, enumcase_holder
);
3311 check_case_type(sel
, case_stmt
->case_to
, enumcase_holder
);
3312 } END_FOR_EACH_PTR(sym
);
3315 struct symbol
*evaluate_statement(struct statement
*stmt
)
3320 switch (stmt
->type
) {
3321 case STMT_DECLARATION
: {
3323 FOR_EACH_PTR(stmt
->declaration
, s
) {
3325 } END_FOR_EACH_PTR(s
);
3330 return evaluate_return_expression(stmt
);
3332 case STMT_EXPRESSION
:
3333 if (!evaluate_expression(stmt
->expression
))
3335 if (stmt
->expression
->ctype
== &null_ctype
)
3336 stmt
->expression
= cast_to(stmt
->expression
, &ptr_ctype
);
3337 return degenerate(stmt
->expression
);
3339 case STMT_COMPOUND
: {
3340 struct statement
*s
;
3341 struct symbol
*type
= NULL
;
3343 /* Evaluate the return symbol in the compound statement */
3344 evaluate_symbol(stmt
->ret
);
3347 * Then, evaluate each statement, making the type of the
3348 * compound statement be the type of the last statement
3350 type
= evaluate_statement(stmt
->args
);
3351 FOR_EACH_PTR(stmt
->stmts
, s
) {
3352 type
= evaluate_statement(s
);
3353 } END_FOR_EACH_PTR(s
);
3359 evaluate_if_statement(stmt
);
3362 evaluate_iterator(stmt
);
3365 evaluate_switch_statement(stmt
);
3368 evaluate_case_statement(stmt
);
3371 return evaluate_statement(stmt
->label_statement
);
3373 evaluate_expression(stmt
->goto_expression
);
3378 evaluate_asm_statement(stmt
);
3381 evaluate_expression(stmt
->expression
);
3384 evaluate_expression(stmt
->range_expression
);
3385 evaluate_expression(stmt
->range_low
);
3386 evaluate_expression(stmt
->range_high
);