4 * Copyright (C) 2003 Transmeta Corp.
5 * 2003-2004 Linus Torvalds
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 * Evaluate constant expressions.
43 #include "expression.h"
45 struct symbol
*current_fn
;
47 static struct symbol
*degenerate(struct expression
*expr
);
48 static struct symbol
*evaluate_symbol(struct symbol
*sym
);
50 static struct symbol
*evaluate_symbol_expression(struct expression
*expr
)
52 struct expression
*addr
;
53 struct symbol
*sym
= expr
->symbol
;
54 struct symbol
*base_type
;
57 expression_error(expr
, "undefined identifier '%s'", show_ident(expr
->symbol_name
));
61 examine_symbol_type(sym
);
63 base_type
= get_base_type(sym
);
65 expression_error(expr
, "identifier '%s' has no type", show_ident(expr
->symbol_name
));
69 addr
= alloc_expression(expr
->pos
, EXPR_SYMBOL
);
71 addr
->symbol_name
= expr
->symbol_name
;
72 addr
->ctype
= &lazy_ptr_ctype
; /* Lazy evaluation: we need to do a proper job if somebody does &sym */
73 expr
->type
= EXPR_PREOP
;
77 /* The type of a symbol is the symbol itself! */
82 static struct symbol
*evaluate_string(struct expression
*expr
)
84 struct symbol
*sym
= alloc_symbol(expr
->pos
, SYM_NODE
);
85 struct symbol
*array
= alloc_symbol(expr
->pos
, SYM_ARRAY
);
86 struct expression
*addr
= alloc_expression(expr
->pos
, EXPR_SYMBOL
);
87 struct expression
*initstr
= alloc_expression(expr
->pos
, EXPR_STRING
);
88 unsigned int length
= expr
->string
->length
;
90 sym
->array_size
= alloc_const_expression(expr
->pos
, length
);
91 sym
->bit_size
= bytes_to_bits(length
);
92 sym
->ctype
.alignment
= 1;
94 sym
->ctype
.modifiers
= MOD_STATIC
;
95 sym
->ctype
.base_type
= array
;
96 sym
->initializer
= initstr
;
99 initstr
->string
= expr
->string
;
101 array
->array_size
= sym
->array_size
;
102 array
->bit_size
= bytes_to_bits(length
);
103 array
->ctype
.alignment
= 1;
104 array
->ctype
.modifiers
= MOD_STATIC
;
105 array
->ctype
.base_type
= &char_ctype
;
108 addr
->ctype
= &lazy_ptr_ctype
;
110 expr
->type
= EXPR_PREOP
;
117 /* type has come from classify_type and is an integer type */
118 static inline struct symbol
*integer_promotion(struct symbol
*type
)
120 struct symbol
*orig_type
= type
;
121 unsigned long mod
= type
->ctype
.modifiers
;
122 int width
= type
->bit_size
;
125 * Bitfields always promote to the base type,
126 * even if the bitfield might be bigger than
129 if (type
->type
== SYM_BITFIELD
) {
130 type
= type
->ctype
.base_type
;
133 mod
= type
->ctype
.modifiers
;
134 if (width
< bits_in_int
)
137 /* If char/short has as many bits as int, it still gets "promoted" */
138 if (mod
& (MOD_CHAR
| MOD_SHORT
)) {
139 if (mod
& MOD_UNSIGNED
)
147 * integer part of usual arithmetic conversions:
148 * integer promotions are applied
149 * if left and right are identical, we are done
150 * if signedness is the same, convert one with lower rank
151 * unless unsigned argument has rank lower than signed one, convert the
153 * if signed argument is bigger than unsigned one, convert the unsigned.
154 * otherwise, convert signed.
156 * Leaving aside the integer promotions, that is equivalent to
157 * if identical, don't convert
158 * if left is bigger than right, convert right
159 * if right is bigger than left, convert right
160 * otherwise, if signedness is the same, convert one with lower rank
161 * otherwise convert the signed one.
163 static struct symbol
*bigger_int_type(struct symbol
*left
, struct symbol
*right
)
165 unsigned long lmod
, rmod
;
167 left
= integer_promotion(left
);
168 right
= integer_promotion(right
);
173 if (left
->bit_size
> right
->bit_size
)
176 if (right
->bit_size
> left
->bit_size
)
179 lmod
= left
->ctype
.modifiers
;
180 rmod
= right
->ctype
.modifiers
;
181 if ((lmod
^ rmod
) & MOD_UNSIGNED
) {
182 if (lmod
& MOD_UNSIGNED
)
184 } else if ((lmod
& ~rmod
) & (MOD_LONG_ALL
))
192 static int same_cast_type(struct symbol
*orig
, struct symbol
*new)
194 return orig
->bit_size
== new->bit_size
&&
195 orig
->bit_offset
== new->bit_offset
;
198 static struct symbol
*base_type(struct symbol
*node
, unsigned long *modp
, unsigned long *asp
)
200 unsigned long mod
, as
;
204 mod
|= node
->ctype
.modifiers
;
205 as
|= node
->ctype
.attribute
->as
;
206 if (node
->type
== SYM_NODE
) {
207 node
= node
->ctype
.base_type
;
212 *modp
= mod
& ~MOD_IGNORE
;
217 static int is_same_type(struct expression
*expr
, struct symbol
*new)
219 struct symbol
*old
= expr
->ctype
;
220 unsigned long oldmod
, newmod
, oldas
, newas
;
222 old
= base_type(old
, &oldmod
, &oldas
);
223 new = base_type(new, &newmod
, &newas
);
225 /* Same base type, same address space? */
226 if (old
== new && oldas
== newas
) {
227 unsigned long difmod
;
229 /* Check the modifier bits. */
230 difmod
= (oldmod
^ newmod
) & ~MOD_NOCAST
;
232 /* Exact same type? */
237 * Not the same type, but differs only in "const".
238 * Don't warn about MOD_NOCAST.
240 if (difmod
== MOD_CONST
)
243 if ((oldmod
| newmod
) & MOD_NOCAST
) {
244 const char *tofrom
= "to/from";
245 if (!(newmod
& MOD_NOCAST
))
247 if (!(oldmod
& MOD_NOCAST
))
249 warning(expr
->pos
, "implicit cast %s nocast type", tofrom
);
255 warn_for_different_enum_types (struct position pos
,
256 struct symbol
*typea
,
257 struct symbol
*typeb
)
261 if (typea
->type
== SYM_NODE
)
262 typea
= typea
->ctype
.base_type
;
263 if (typeb
->type
== SYM_NODE
)
264 typeb
= typeb
->ctype
.base_type
;
269 if (typea
->type
== SYM_ENUM
&& typeb
->type
== SYM_ENUM
) {
270 warning(pos
, "mixing different enum types");
271 info(pos
, " %s versus", show_typename(typea
));
272 info(pos
, " %s", show_typename(typeb
));
277 * This gets called for implicit casts in assignments and
278 * integer promotion. We often want to try to move the
279 * cast down, because the ops involved may have been
280 * implicitly cast up, and we can get rid of the casts
283 static struct expression
* cast_to(struct expression
*old
, struct symbol
*type
)
285 struct expression
*expr
;
287 warn_for_different_enum_types (old
->pos
, old
->ctype
, type
);
289 if (old
->ctype
!= &null_ctype
&& is_same_type(old
, type
))
293 * See if we can simplify the op. Move the cast down.
297 if (old
->ctype
->bit_size
< type
->bit_size
)
299 if (old
->op
== '~') {
301 old
->unop
= cast_to(old
->unop
, type
);
306 case EXPR_IMPLIED_CAST
:
307 warn_for_different_enum_types(old
->pos
, old
->ctype
, type
);
309 if (old
->ctype
->bit_size
>= type
->bit_size
) {
310 struct expression
*orig
= old
->cast_expression
;
311 if (same_cast_type(orig
->ctype
, type
))
313 if (old
->ctype
->bit_offset
== type
->bit_offset
) {
315 old
->cast_type
= type
;
325 expr
= alloc_expression(old
->pos
, EXPR_IMPLIED_CAST
);
326 expr
->flags
= old
->flags
;
328 expr
->cast_type
= type
;
329 expr
->cast_expression
= old
;
344 static inline int classify_type(struct symbol
*type
, struct symbol
**base
)
346 static int type_class
[SYM_BAD
+ 1] = {
347 [SYM_PTR
] = TYPE_PTR
,
348 [SYM_FN
] = TYPE_PTR
| TYPE_FN
,
349 [SYM_ARRAY
] = TYPE_PTR
| TYPE_COMPOUND
,
350 [SYM_STRUCT
] = TYPE_COMPOUND
,
351 [SYM_UNION
] = TYPE_COMPOUND
,
352 [SYM_BITFIELD
] = TYPE_NUM
| TYPE_BITFIELD
,
353 [SYM_RESTRICT
] = TYPE_NUM
| TYPE_RESTRICT
,
354 [SYM_FOULED
] = TYPE_NUM
| TYPE_RESTRICT
| TYPE_FOULED
,
356 if (type
->type
== SYM_NODE
)
357 type
= type
->ctype
.base_type
;
358 if (type
->type
== SYM_TYPEOF
) {
359 type
= evaluate_expression(type
->initializer
);
362 else if (type
->type
== SYM_NODE
)
363 type
= type
->ctype
.base_type
;
365 if (type
->type
== SYM_ENUM
)
366 type
= type
->ctype
.base_type
;
368 if (type
->type
== SYM_BASETYPE
) {
369 if (type
->ctype
.base_type
== &int_type
)
371 if (type
->ctype
.base_type
== &fp_type
)
372 return TYPE_NUM
| TYPE_FLOAT
;
374 return type_class
[type
->type
];
377 #define is_int(class) ((class & (TYPE_NUM | TYPE_FLOAT)) == TYPE_NUM)
379 static inline int is_string_type(struct symbol
*type
)
381 if (type
->type
== SYM_NODE
)
382 type
= type
->ctype
.base_type
;
383 return type
->type
== SYM_ARRAY
&& is_byte_type(type
->ctype
.base_type
);
386 static struct symbol
*bad_expr_type(struct expression
*expr
)
388 sparse_error(expr
->pos
, "incompatible types for operation (%s)", show_special(expr
->op
));
389 switch (expr
->type
) {
392 info(expr
->pos
, " left side has type %s", show_typename(expr
->left
->ctype
));
393 info(expr
->pos
, " right side has type %s", show_typename(expr
->right
->ctype
));
397 info(expr
->pos
, " argument has type %s", show_typename(expr
->unop
->ctype
));
404 return expr
->ctype
= &bad_ctype
;
407 static int restricted_value(struct expression
*v
, struct symbol
*type
)
409 if (v
->type
!= EXPR_VALUE
)
416 static int restricted_binop(int op
, struct symbol
*type
)
421 case SPECIAL_AND_ASSIGN
:
422 case SPECIAL_OR_ASSIGN
:
423 case SPECIAL_XOR_ASSIGN
:
424 return 1; /* unfoul */
428 return 2; /* keep fouled */
430 case SPECIAL_NOTEQUAL
:
431 return 3; /* warn if fouled */
437 static int restricted_unop(int op
, struct symbol
**type
)
440 if ((*type
)->bit_size
< bits_in_int
)
441 *type
= befoul(*type
);
448 /* type should be SYM_FOULED */
449 static inline struct symbol
*unfoul(struct symbol
*type
)
451 return type
->ctype
.base_type
;
454 static struct symbol
*restricted_binop_type(int op
,
455 struct expression
*left
,
456 struct expression
*right
,
457 int lclass
, int rclass
,
458 struct symbol
*ltype
,
459 struct symbol
*rtype
)
461 struct symbol
*ctype
= NULL
;
462 if (lclass
& TYPE_RESTRICT
) {
463 if (rclass
& TYPE_RESTRICT
) {
464 if (ltype
== rtype
) {
466 } else if (lclass
& TYPE_FOULED
) {
467 if (unfoul(ltype
) == rtype
)
469 } else if (rclass
& TYPE_FOULED
) {
470 if (unfoul(rtype
) == ltype
)
474 if (!restricted_value(right
, ltype
))
477 } else if (!restricted_value(left
, rtype
))
481 switch (restricted_binop(op
, ctype
)) {
483 if ((lclass
^ rclass
) & TYPE_FOULED
)
484 ctype
= unfoul(ctype
);
487 if (!(lclass
& rclass
& TYPE_FOULED
))
499 static inline void unrestrict(struct expression
*expr
,
500 int class, struct symbol
**ctype
)
502 if (class & TYPE_RESTRICT
) {
503 if (class & TYPE_FOULED
)
504 *ctype
= unfoul(*ctype
);
505 warning(expr
->pos
, "%s degrades to integer",
506 show_typename(*ctype
));
507 *ctype
= (*ctype
)->ctype
.base_type
; /* get to arithmetic type */
511 static struct symbol
*usual_conversions(int op
,
512 struct expression
*left
,
513 struct expression
*right
,
514 int lclass
, int rclass
,
515 struct symbol
*ltype
,
516 struct symbol
*rtype
)
518 struct symbol
*ctype
;
520 warn_for_different_enum_types(right
->pos
, left
->ctype
, right
->ctype
);
522 if ((lclass
| rclass
) & TYPE_RESTRICT
)
526 if (!(lclass
& TYPE_FLOAT
)) {
527 if (!(rclass
& TYPE_FLOAT
))
528 return bigger_int_type(ltype
, rtype
);
531 } else if (rclass
& TYPE_FLOAT
) {
532 unsigned long lmod
= ltype
->ctype
.modifiers
;
533 unsigned long rmod
= rtype
->ctype
.modifiers
;
534 if (rmod
& ~lmod
& (MOD_LONG_ALL
))
542 ctype
= restricted_binop_type(op
, left
, right
,
543 lclass
, rclass
, ltype
, rtype
);
547 unrestrict(left
, lclass
, <ype
);
548 unrestrict(right
, rclass
, &rtype
);
553 static inline int lvalue_expression(struct expression
*expr
)
555 return expr
->type
== EXPR_PREOP
&& expr
->op
== '*';
558 static struct symbol
*evaluate_ptr_add(struct expression
*expr
, struct symbol
*itype
)
560 struct expression
*index
= expr
->right
;
561 struct symbol
*ctype
, *base
;
564 classify_type(degenerate(expr
->left
), &ctype
);
565 base
= examine_pointer_target(ctype
);
568 expression_error(expr
, "missing type information");
571 if (is_function(base
)) {
572 expression_error(expr
, "arithmetics on pointers to functions");
576 /* Get the size of whatever the pointer points to */
577 multiply
= is_void_type(base
) ? 1 : bits_to_bytes(base
->bit_size
);
579 if (ctype
== &null_ctype
)
583 if (multiply
== 1 && itype
->bit_size
>= bits_in_pointer
)
586 if (index
->type
== EXPR_VALUE
) {
587 struct expression
*val
= alloc_expression(expr
->pos
, EXPR_VALUE
);
588 unsigned long long v
= index
->value
, mask
;
589 mask
= 1ULL << (itype
->bit_size
- 1);
595 mask
= 1ULL << (bits_in_pointer
- 1);
596 v
&= mask
| (mask
- 1);
598 val
->ctype
= ssize_t_ctype
;
603 if (itype
->bit_size
< bits_in_pointer
)
604 index
= cast_to(index
, ssize_t_ctype
);
607 struct expression
*val
= alloc_expression(expr
->pos
, EXPR_VALUE
);
608 struct expression
*mul
= alloc_expression(expr
->pos
, EXPR_BINOP
);
610 val
->ctype
= ssize_t_ctype
;
611 val
->value
= multiply
;
614 mul
->ctype
= ssize_t_ctype
;
624 static void examine_fn_arguments(struct symbol
*fn
);
626 #define MOD_IGN (MOD_VOLATILE | MOD_CONST)
628 const char *type_difference(struct ctype
*c1
, struct ctype
*c2
,
629 unsigned long mod1
, unsigned long mod2
)
631 unsigned long as1
= c1
->attribute
->as
, as2
= c2
->attribute
->as
;
632 struct symbol
*t1
= c1
->base_type
;
633 struct symbol
*t2
= c2
->base_type
;
634 int move1
= 1, move2
= 1;
635 mod1
|= c1
->modifiers
;
636 mod2
|= c2
->modifiers
;
641 struct symbol
*base1
= t1
->ctype
.base_type
;
642 struct symbol
*base2
= t2
->ctype
.base_type
;
645 * FIXME! Collect alignment and context too here!
648 if (t1
&& t1
->type
!= SYM_PTR
) {
649 mod1
|= t1
->ctype
.modifiers
;
650 as1
|= t1
->ctype
.attribute
->as
;
656 if (t2
&& t2
->type
!= SYM_PTR
) {
657 mod2
|= t2
->ctype
.modifiers
;
658 as2
|= t2
->ctype
.attribute
->as
;
666 return "different types";
668 if (t1
->type
== SYM_NODE
|| t1
->type
== SYM_ENUM
) {
676 if (t2
->type
== SYM_NODE
|| t2
->type
== SYM_ENUM
) {
686 if (type
!= t2
->type
)
687 return "different base types";
691 sparse_error(t1
->pos
,
692 "internal error: bad type in derived(%d)",
696 return "different base types";
699 /* allow definition of incomplete structs and unions */
700 if (t1
->ident
== t2
->ident
)
702 return "different base types";
704 /* XXX: we ought to compare sizes */
708 return "different address spaces";
709 /* MOD_SPECIFIER is due to idiocy in parse.c */
710 if ((mod1
^ mod2
) & ~MOD_IGNORE
& ~MOD_SPECIFIER
)
711 return "different modifiers";
712 /* we could be lazier here */
713 base1
= examine_pointer_target(t1
);
714 base2
= examine_pointer_target(t2
);
715 mod1
= t1
->ctype
.modifiers
;
716 as1
= t1
->ctype
.attribute
->as
;
717 mod2
= t2
->ctype
.modifiers
;
718 as2
= t2
->ctype
.attribute
->as
;
721 struct symbol
*arg1
, *arg2
;
725 return "different address spaces";
726 if ((mod1
^ mod2
) & ~MOD_IGNORE
& ~MOD_SIGNEDNESS
)
727 return "different modifiers";
728 mod1
= t1
->ctype
.modifiers
;
729 as1
= t1
->ctype
.attribute
->as
;
730 mod2
= t2
->ctype
.modifiers
;
731 as2
= t2
->ctype
.attribute
->as
;
733 if (base1
->variadic
!= base2
->variadic
)
734 return "incompatible variadic arguments";
735 examine_fn_arguments(t1
);
736 examine_fn_arguments(t2
);
737 PREPARE_PTR_LIST(t1
->arguments
, arg1
);
738 PREPARE_PTR_LIST(t2
->arguments
, arg2
);
745 return "different argument counts";
746 diffstr
= type_difference(&arg1
->ctype
,
750 static char argdiff
[80];
751 sprintf(argdiff
, "incompatible argument %d (%s)", i
, diffstr
);
758 FINISH_PTR_LIST(arg2
);
759 FINISH_PTR_LIST(arg1
);
764 return "different address spaces";
766 return "different base types";
767 diff
= (mod1
^ mod2
) & ~MOD_IGNORE
;
771 return "different type sizes";
772 else if (diff
& ~MOD_SIGNEDNESS
)
773 return "different modifiers";
775 return "different signedness";
781 return "different address spaces";
782 if ((mod1
^ mod2
) & ~MOD_IGNORE
& ~MOD_SIGNEDNESS
)
783 return "different modifiers";
787 static void bad_null(struct expression
*expr
)
789 if (Wnon_pointer_null
)
790 warning(expr
->pos
, "Using plain integer as NULL pointer");
793 static unsigned long target_qualifiers(struct symbol
*type
)
795 unsigned long mod
= type
->ctype
.modifiers
& MOD_IGN
;
796 if (type
->ctype
.base_type
&& type
->ctype
.base_type
->type
== SYM_ARRAY
)
801 static struct symbol
*evaluate_ptr_sub(struct expression
*expr
)
803 const char *typediff
;
804 struct symbol
*ltype
, *rtype
;
805 struct expression
*l
= expr
->left
;
806 struct expression
*r
= expr
->right
;
807 struct symbol
*lbase
;
809 classify_type(degenerate(l
), <ype
);
810 classify_type(degenerate(r
), &rtype
);
812 lbase
= examine_pointer_target(ltype
);
813 examine_pointer_target(rtype
);
814 typediff
= type_difference(<ype
->ctype
, &rtype
->ctype
,
815 target_qualifiers(rtype
),
816 target_qualifiers(ltype
));
818 expression_error(expr
, "subtraction of different types can't work (%s)", typediff
);
820 if (is_function(lbase
)) {
821 expression_error(expr
, "subtraction of functions? Share your drugs");
825 expr
->ctype
= ssize_t_ctype
;
826 if (lbase
->bit_size
> bits_in_char
) {
827 struct expression
*sub
= alloc_expression(expr
->pos
, EXPR_BINOP
);
828 struct expression
*div
= expr
;
829 struct expression
*val
= alloc_expression(expr
->pos
, EXPR_VALUE
);
830 unsigned long value
= bits_to_bytes(lbase
->bit_size
);
832 val
->ctype
= size_t_ctype
;
835 if (value
& (value
-1)) {
836 if (Wptr_subtraction_blows
)
837 warning(expr
->pos
, "potentially expensive pointer subtraction");
841 sub
->ctype
= ssize_t_ctype
;
850 return ssize_t_ctype
;
853 #define is_safe_type(type) ((type)->ctype.modifiers & MOD_SAFE)
855 static struct symbol
*evaluate_conditional(struct expression
*expr
, int iterator
)
857 struct symbol
*ctype
;
862 if (!iterator
&& expr
->type
== EXPR_ASSIGNMENT
&& expr
->op
== '=')
863 warning(expr
->pos
, "assignment expression in conditional");
865 ctype
= evaluate_expression(expr
);
867 if (is_safe_type(ctype
))
868 warning(expr
->pos
, "testing a 'safe expression'");
874 static struct symbol
*evaluate_logical(struct expression
*expr
)
876 if (!evaluate_conditional(expr
->left
, 0))
878 if (!evaluate_conditional(expr
->right
, 0))
881 /* the result is int [6.5.13(3), 6.5.14(3)] */
882 expr
->ctype
= &int_ctype
;
884 if (!(expr
->left
->flags
& expr
->right
->flags
& Int_const_expr
))
890 static struct symbol
*evaluate_binop(struct expression
*expr
)
892 struct symbol
*ltype
, *rtype
, *ctype
;
893 int lclass
= classify_type(expr
->left
->ctype
, <ype
);
894 int rclass
= classify_type(expr
->right
->ctype
, &rtype
);
898 if (!(expr
->left
->flags
& expr
->right
->flags
& Int_const_expr
))
902 /* number op number */
903 if (lclass
& rclass
& TYPE_NUM
) {
904 if ((lclass
| rclass
) & TYPE_FLOAT
) {
906 case '+': case '-': case '*': case '/':
909 return bad_expr_type(expr
);
913 if (op
== SPECIAL_LEFTSHIFT
|| op
== SPECIAL_RIGHTSHIFT
) {
914 // shifts do integer promotions, but that's it.
915 unrestrict(expr
->left
, lclass
, <ype
);
916 unrestrict(expr
->right
, rclass
, &rtype
);
917 ctype
= ltype
= integer_promotion(ltype
);
918 rtype
= integer_promotion(rtype
);
920 // The rest do usual conversions
921 const unsigned left_not
= expr
->left
->type
== EXPR_PREOP
922 && expr
->left
->op
== '!';
923 const unsigned right_not
= expr
->right
->type
== EXPR_PREOP
924 && expr
->right
->op
== '!';
925 if ((op
== '&' || op
== '|') && (left_not
|| right_not
))
926 warning(expr
->pos
, "dubious: %sx %c %sy",
929 right_not
? "!" : "");
931 ltype
= usual_conversions(op
, expr
->left
, expr
->right
,
932 lclass
, rclass
, ltype
, rtype
);
933 ctype
= rtype
= ltype
;
936 expr
->left
= cast_to(expr
->left
, ltype
);
937 expr
->right
= cast_to(expr
->right
, rtype
);
942 /* pointer (+|-) integer */
943 if (lclass
& TYPE_PTR
&& is_int(rclass
) && (op
== '+' || op
== '-')) {
944 unrestrict(expr
->right
, rclass
, &rtype
);
945 return evaluate_ptr_add(expr
, rtype
);
948 /* integer + pointer */
949 if (rclass
& TYPE_PTR
&& is_int(lclass
) && op
== '+') {
950 struct expression
*index
= expr
->left
;
951 unrestrict(index
, lclass
, <ype
);
952 expr
->left
= expr
->right
;
954 return evaluate_ptr_add(expr
, ltype
);
957 /* pointer - pointer */
958 if (lclass
& rclass
& TYPE_PTR
&& expr
->op
== '-')
959 return evaluate_ptr_sub(expr
);
961 return bad_expr_type(expr
);
964 static struct symbol
*evaluate_comma(struct expression
*expr
)
966 expr
->ctype
= degenerate(expr
->right
);
967 if (expr
->ctype
== &null_ctype
)
968 expr
->ctype
= &ptr_ctype
;
969 expr
->flags
&= expr
->left
->flags
& expr
->right
->flags
;
973 static int modify_for_unsigned(int op
)
976 op
= SPECIAL_UNSIGNED_LT
;
978 op
= SPECIAL_UNSIGNED_GT
;
979 else if (op
== SPECIAL_LTE
)
980 op
= SPECIAL_UNSIGNED_LTE
;
981 else if (op
== SPECIAL_GTE
)
982 op
= SPECIAL_UNSIGNED_GTE
;
986 static inline int is_null_pointer_constant(struct expression
*e
)
988 if (e
->ctype
== &null_ctype
)
990 if (!(e
->flags
& Int_const_expr
))
992 return is_zero_constant(e
) ? 2 : 0;
995 static struct symbol
*evaluate_compare(struct expression
*expr
)
997 struct expression
*left
= expr
->left
, *right
= expr
->right
;
998 struct symbol
*ltype
, *rtype
, *lbase
, *rbase
;
999 int lclass
= classify_type(degenerate(left
), <ype
);
1000 int rclass
= classify_type(degenerate(right
), &rtype
);
1001 struct symbol
*ctype
;
1002 const char *typediff
;
1005 if (!(expr
->left
->flags
& expr
->right
->flags
& Int_const_expr
))
1010 if (is_type_type(ltype
) && is_type_type(rtype
))
1013 if (is_safe_type(left
->ctype
) || is_safe_type(right
->ctype
))
1014 warning(expr
->pos
, "testing a 'safe expression'");
1016 /* number on number */
1017 if (lclass
& rclass
& TYPE_NUM
) {
1018 ctype
= usual_conversions(expr
->op
, expr
->left
, expr
->right
,
1019 lclass
, rclass
, ltype
, rtype
);
1020 expr
->left
= cast_to(expr
->left
, ctype
);
1021 expr
->right
= cast_to(expr
->right
, ctype
);
1022 if (ctype
->ctype
.modifiers
& MOD_UNSIGNED
)
1023 expr
->op
= modify_for_unsigned(expr
->op
);
1027 /* at least one must be a pointer */
1028 if (!((lclass
| rclass
) & TYPE_PTR
))
1029 return bad_expr_type(expr
);
1031 /* equality comparisons can be with null pointer constants */
1032 if (expr
->op
== SPECIAL_EQUAL
|| expr
->op
== SPECIAL_NOTEQUAL
) {
1033 int is_null1
= is_null_pointer_constant(left
);
1034 int is_null2
= is_null_pointer_constant(right
);
1039 if (is_null1
&& is_null2
) {
1040 int positive
= expr
->op
== SPECIAL_EQUAL
;
1041 expr
->type
= EXPR_VALUE
;
1042 expr
->value
= positive
;
1045 if (is_null1
&& (rclass
& TYPE_PTR
)) {
1046 left
= cast_to(left
, rtype
);
1049 if (is_null2
&& (lclass
& TYPE_PTR
)) {
1050 right
= cast_to(right
, ltype
);
1054 /* both should be pointers */
1055 if (!(lclass
& rclass
& TYPE_PTR
))
1056 return bad_expr_type(expr
);
1057 expr
->op
= modify_for_unsigned(expr
->op
);
1059 lbase
= examine_pointer_target(ltype
);
1060 rbase
= examine_pointer_target(rtype
);
1062 /* they also have special treatment for pointers to void */
1063 if (expr
->op
== SPECIAL_EQUAL
|| expr
->op
== SPECIAL_NOTEQUAL
) {
1064 if (ltype
->ctype
.attribute
->as
== rtype
->ctype
.attribute
->as
) {
1065 if (lbase
== &void_ctype
) {
1066 right
= cast_to(right
, ltype
);
1069 if (rbase
== &void_ctype
) {
1070 left
= cast_to(left
, rtype
);
1076 typediff
= type_difference(<ype
->ctype
, &rtype
->ctype
,
1077 target_qualifiers(rtype
),
1078 target_qualifiers(ltype
));
1082 expression_error(expr
, "incompatible types in comparison expression (%s)", typediff
);
1086 /* the result is int [6.5.8(6), 6.5.9(3)]*/
1087 expr
->ctype
= &int_ctype
;
1092 * NOTE! The degenerate case of "x ? : y", where we don't
1093 * have a true case, this will possibly promote "x" to the
1094 * same type as "y", and thus _change_ the conditional
1095 * test in the expression. But since promotion is "safe"
1096 * for testing, that's OK.
1098 static struct symbol
*evaluate_conditional_expression(struct expression
*expr
)
1100 struct expression
**true;
1101 struct symbol
*ctype
, *ltype
, *rtype
, *lbase
, *rbase
;
1103 const char * typediff
;
1106 if (!evaluate_conditional(expr
->conditional
, 0))
1108 if (!evaluate_expression(expr
->cond_false
))
1111 ctype
= degenerate(expr
->conditional
);
1112 rtype
= degenerate(expr
->cond_false
);
1114 true = &expr
->conditional
;
1116 if (expr
->cond_true
) {
1117 if (!evaluate_expression(expr
->cond_true
))
1119 ltype
= degenerate(expr
->cond_true
);
1120 true = &expr
->cond_true
;
1124 int flags
= expr
->conditional
->flags
& Int_const_expr
;
1125 flags
&= (*true)->flags
& expr
->cond_false
->flags
;
1130 lclass
= classify_type(ltype
, <ype
);
1131 rclass
= classify_type(rtype
, &rtype
);
1132 if (lclass
& rclass
& TYPE_NUM
) {
1133 ctype
= usual_conversions('?', *true, expr
->cond_false
,
1134 lclass
, rclass
, ltype
, rtype
);
1135 *true = cast_to(*true, ctype
);
1136 expr
->cond_false
= cast_to(expr
->cond_false
, ctype
);
1140 if ((lclass
| rclass
) & TYPE_PTR
) {
1141 int is_null1
= is_null_pointer_constant(*true);
1142 int is_null2
= is_null_pointer_constant(expr
->cond_false
);
1144 if (is_null1
&& is_null2
) {
1145 *true = cast_to(*true, &ptr_ctype
);
1146 expr
->cond_false
= cast_to(expr
->cond_false
, &ptr_ctype
);
1150 if (is_null1
&& (rclass
& TYPE_PTR
)) {
1153 *true = cast_to(*true, rtype
);
1157 if (is_null2
&& (lclass
& TYPE_PTR
)) {
1159 bad_null(expr
->cond_false
);
1160 expr
->cond_false
= cast_to(expr
->cond_false
, ltype
);
1164 if (!(lclass
& rclass
& TYPE_PTR
)) {
1165 typediff
= "different types";
1168 /* OK, it's pointer on pointer */
1169 if (ltype
->ctype
.attribute
->as
!= rtype
->ctype
.attribute
->as
) {
1170 typediff
= "different address spaces";
1174 /* need to be lazier here */
1175 lbase
= examine_pointer_target(ltype
);
1176 rbase
= examine_pointer_target(rtype
);
1177 qual
= target_qualifiers(ltype
) | target_qualifiers(rtype
);
1179 if (lbase
== &void_ctype
) {
1180 /* XXX: pointers to function should warn here */
1185 if (rbase
== &void_ctype
) {
1186 /* XXX: pointers to function should warn here */
1190 /* XXX: that should be pointer to composite */
1192 typediff
= type_difference(<ype
->ctype
, &rtype
->ctype
,
1199 /* void on void, struct on same struct, union on same union */
1200 if (ltype
== rtype
) {
1204 typediff
= "different base types";
1207 expression_error(expr
, "incompatible types in conditional expression (%s)", typediff
);
1211 expr
->ctype
= ctype
;
1215 if (qual
& ~ctype
->ctype
.modifiers
) {
1216 struct symbol
*sym
= alloc_symbol(ctype
->pos
, SYM_PTR
);
1218 sym
->ctype
.modifiers
|= qual
;
1221 *true = cast_to(*true, ctype
);
1222 expr
->cond_false
= cast_to(expr
->cond_false
, ctype
);
1226 /* FP assignments can not do modulo or bit operations */
1227 static int compatible_float_op(int op
)
1229 return op
== SPECIAL_ADD_ASSIGN
||
1230 op
== SPECIAL_SUB_ASSIGN
||
1231 op
== SPECIAL_MUL_ASSIGN
||
1232 op
== SPECIAL_DIV_ASSIGN
;
1235 static int evaluate_assign_op(struct expression
*expr
)
1237 struct symbol
*target
= expr
->left
->ctype
;
1238 struct symbol
*source
= expr
->right
->ctype
;
1239 struct symbol
*t
, *s
;
1240 int tclass
= classify_type(target
, &t
);
1241 int sclass
= classify_type(source
, &s
);
1244 if (tclass
& sclass
& TYPE_NUM
) {
1245 if (tclass
& TYPE_FLOAT
&& !compatible_float_op(op
)) {
1246 expression_error(expr
, "invalid assignment");
1249 if (tclass
& TYPE_RESTRICT
) {
1250 if (!restricted_binop(op
, t
)) {
1251 warning(expr
->pos
, "bad assignment (%s) to %s",
1252 show_special(op
), show_typename(t
));
1253 expr
->right
= cast_to(expr
->right
, target
);
1256 /* allowed assignments unfoul */
1257 if (sclass
& TYPE_FOULED
&& unfoul(s
) == t
)
1259 if (!restricted_value(expr
->right
, t
))
1261 } else if (!(sclass
& TYPE_RESTRICT
))
1263 /* source and target would better be identical restricted */
1266 warning(expr
->pos
, "invalid assignment: %s", show_special(op
));
1267 info(expr
->pos
, " left side has type %s", show_typename(t
));
1268 info(expr
->pos
, " right side has type %s", show_typename(s
));
1269 expr
->right
= cast_to(expr
->right
, target
);
1272 if (tclass
== TYPE_PTR
&& is_int(sclass
)) {
1273 if (op
== SPECIAL_ADD_ASSIGN
|| op
== SPECIAL_SUB_ASSIGN
) {
1274 unrestrict(expr
->right
, sclass
, &s
);
1275 evaluate_ptr_add(expr
, s
);
1278 expression_error(expr
, "invalid pointer assignment");
1282 expression_error(expr
, "invalid assignment");
1286 expr
->right
= cast_to(expr
->right
, target
);
1290 static int whitelist_pointers(struct symbol
*t1
, struct symbol
*t2
)
1293 return 0; /* yes, 0 - we don't want a cast_to here */
1294 if (t1
== &void_ctype
)
1296 if (t2
== &void_ctype
)
1298 if (classify_type(t1
, &t1
) != TYPE_NUM
)
1300 if (classify_type(t2
, &t2
) != TYPE_NUM
)
1304 if (t1
->ctype
.modifiers
& t2
->ctype
.modifiers
& MOD_CHAR
)
1306 if ((t1
->ctype
.modifiers
^ t2
->ctype
.modifiers
) & MOD_SIZE
)
1311 static int check_assignment_types(struct symbol
*target
, struct expression
**rp
,
1312 const char **typediff
)
1314 struct symbol
*source
= degenerate(*rp
);
1315 struct symbol
*t
, *s
;
1316 int tclass
= classify_type(target
, &t
);
1317 int sclass
= classify_type(source
, &s
);
1319 if (tclass
& sclass
& TYPE_NUM
) {
1320 if (tclass
& TYPE_RESTRICT
) {
1321 /* allowed assignments unfoul */
1322 if (sclass
& TYPE_FOULED
&& unfoul(s
) == t
)
1324 if (!restricted_value(*rp
, target
))
1328 } else if (!(sclass
& TYPE_RESTRICT
))
1330 *typediff
= "different base types";
1334 if (tclass
== TYPE_PTR
) {
1335 unsigned long mod1
, mod2
;
1336 struct symbol
*b1
, *b2
;
1337 // NULL pointer is always OK
1338 int is_null
= is_null_pointer_constant(*rp
);
1344 if (!(sclass
& TYPE_PTR
)) {
1345 *typediff
= "different base types";
1348 b1
= examine_pointer_target(t
);
1349 b2
= examine_pointer_target(s
);
1350 mod1
= target_qualifiers(t
);
1351 mod2
= target_qualifiers(s
);
1352 if (whitelist_pointers(b1
, b2
)) {
1354 * assignments to/from void * are OK, provided that
1355 * we do not remove qualifiers from pointed to [C]
1356 * or mix address spaces [sparse].
1358 if (t
->ctype
.attribute
->as
!= s
->ctype
.attribute
->as
) {
1359 *typediff
= "different address spaces";
1363 *typediff
= "different modifiers";
1368 /* It's OK if the target is more volatile or const than the source */
1369 *typediff
= type_difference(&t
->ctype
, &s
->ctype
, 0, mod1
);
1375 if ((tclass
& TYPE_COMPOUND
) && s
== t
)
1378 if (tclass
& TYPE_NUM
) {
1379 /* XXX: need to turn into comparison with NULL */
1380 if (t
== &bool_ctype
&& (sclass
& TYPE_PTR
))
1382 *typediff
= "different base types";
1385 *typediff
= "invalid types";
1389 *rp
= cast_to(*rp
, target
);
1393 static int compatible_assignment_types(struct expression
*expr
, struct symbol
*target
,
1394 struct expression
**rp
, const char *where
)
1396 const char *typediff
;
1397 struct symbol
*source
= degenerate(*rp
);
1399 if (!check_assignment_types(target
, rp
, &typediff
)) {
1400 warning(expr
->pos
, "incorrect type in %s (%s)", where
, typediff
);
1401 info(expr
->pos
, " expected %s", show_typename(target
));
1402 info(expr
->pos
, " got %s", show_typename(source
));
1403 *rp
= cast_to(*rp
, target
);
1410 static int compatible_transparent_union(struct symbol
*target
,
1411 struct expression
**rp
)
1413 struct symbol
*t
, *member
;
1414 classify_type(target
, &t
);
1415 if (t
->type
!= SYM_UNION
|| !t
->transparent_union
)
1418 FOR_EACH_PTR(t
->symbol_list
, member
) {
1419 const char *typediff
;
1420 if (check_assignment_types(member
, rp
, &typediff
))
1422 } END_FOR_EACH_PTR(member
);
1427 static int compatible_argument_type(struct expression
*expr
, struct symbol
*target
,
1428 struct expression
**rp
, const char *where
)
1430 if (compatible_transparent_union(target
, rp
))
1433 return compatible_assignment_types(expr
, target
, rp
, where
);
1436 static void mark_assigned(struct expression
*expr
)
1442 switch (expr
->type
) {
1447 if (sym
->type
!= SYM_NODE
)
1449 sym
->ctype
.modifiers
|= MOD_ASSIGNED
;
1453 mark_assigned(expr
->left
);
1454 mark_assigned(expr
->right
);
1457 case EXPR_FORCE_CAST
:
1458 mark_assigned(expr
->cast_expression
);
1461 mark_assigned(expr
->base
);
1469 static void evaluate_assign_to(struct expression
*left
, struct symbol
*type
)
1471 if (type
->ctype
.modifiers
& MOD_CONST
)
1472 expression_error(left
, "assignment to const expression");
1474 /* We know left is an lvalue, so it's a "preop-*" */
1475 mark_assigned(left
->unop
);
1478 static struct symbol
*evaluate_assignment(struct expression
*expr
)
1480 struct expression
*left
= expr
->left
;
1481 struct expression
*where
= expr
;
1482 struct symbol
*ltype
;
1484 if (!lvalue_expression(left
)) {
1485 expression_error(expr
, "not an lvalue");
1489 ltype
= left
->ctype
;
1491 if (expr
->op
!= '=') {
1492 if (!evaluate_assign_op(expr
))
1495 if (!compatible_assignment_types(where
, ltype
, &expr
->right
, "assignment"))
1499 evaluate_assign_to(left
, ltype
);
1501 expr
->ctype
= ltype
;
1505 static void examine_fn_arguments(struct symbol
*fn
)
1509 FOR_EACH_PTR(fn
->arguments
, s
) {
1510 struct symbol
*arg
= evaluate_symbol(s
);
1511 /* Array/function arguments silently degenerate into pointers */
1517 ptr
= alloc_symbol(s
->pos
, SYM_PTR
);
1518 if (arg
->type
== SYM_ARRAY
)
1519 ptr
->ctype
= arg
->ctype
;
1521 ptr
->ctype
.base_type
= arg
;
1522 merge_attr(&ptr
->ctype
, &s
->ctype
);
1523 ptr
->ctype
.modifiers
|= s
->ctype
.modifiers
& MOD_PTRINHERIT
;
1525 s
->ctype
.base_type
= ptr
;
1526 s
->ctype
.attribute
= &null_attr
;
1527 s
->ctype
.modifiers
&= ~MOD_PTRINHERIT
;
1530 examine_symbol_type(s
);
1537 } END_FOR_EACH_PTR(s
);
1540 static struct symbol
*convert_to_as_mod(struct symbol
*sym
, int as
, int mod
)
1542 /* Take the modifiers of the pointer, and apply them to the member */
1543 mod
|= sym
->ctype
.modifiers
;
1544 if (sym
->ctype
.attribute
->as
!= as
|| sym
->ctype
.modifiers
!= mod
) {
1545 struct symbol
*newsym
= alloc_symbol(sym
->pos
, SYM_NODE
);
1547 attr_set_as(&newsym
->ctype
, as
);
1548 newsym
->ctype
.modifiers
= mod
;
1554 static struct symbol
*create_pointer(struct expression
*expr
, struct symbol
*sym
, int degenerate
)
1556 struct symbol
*node
= alloc_symbol(expr
->pos
, SYM_NODE
);
1557 struct symbol
*ptr
= alloc_symbol(expr
->pos
, SYM_PTR
);
1559 node
->ctype
.base_type
= ptr
;
1560 ptr
->bit_size
= bits_in_pointer
;
1561 ptr
->ctype
.alignment
= pointer_alignment
;
1563 node
->bit_size
= bits_in_pointer
;
1564 node
->ctype
.alignment
= pointer_alignment
;
1567 if (sym
->ctype
.modifiers
& MOD_REGISTER
) {
1568 warning(expr
->pos
, "taking address of 'register' variable '%s'", show_ident(sym
->ident
));
1569 sym
->ctype
.modifiers
&= ~MOD_REGISTER
;
1571 if (sym
->type
== SYM_NODE
) {
1572 merge_attr(&ptr
->ctype
, &sym
->ctype
);
1573 ptr
->ctype
.modifiers
|= sym
->ctype
.modifiers
& MOD_PTRINHERIT
;
1574 sym
= sym
->ctype
.base_type
;
1576 if (degenerate
&& sym
->type
== SYM_ARRAY
) {
1577 merge_attr(&ptr
->ctype
, &sym
->ctype
);
1578 ptr
->ctype
.modifiers
|= sym
->ctype
.modifiers
& MOD_PTRINHERIT
;
1579 sym
= sym
->ctype
.base_type
;
1581 ptr
->ctype
.base_type
= sym
;
1586 /* Arrays degenerate into pointers on pointer arithmetic */
1587 static struct symbol
*degenerate(struct expression
*expr
)
1589 struct symbol
*ctype
, *base
;
1593 ctype
= expr
->ctype
;
1596 base
= examine_symbol_type(ctype
);
1597 if (ctype
->type
== SYM_NODE
)
1598 base
= ctype
->ctype
.base_type
;
1600 * Arrays degenerate into pointers to the entries, while
1601 * functions degenerate into pointers to themselves.
1602 * If array was part of non-lvalue compound, we create a copy
1603 * of that compound first and then act as if we were dealing with
1604 * the corresponding field in there.
1606 switch (base
->type
) {
1608 if (expr
->type
== EXPR_SLICE
) {
1609 struct symbol
*a
= alloc_symbol(expr
->pos
, SYM_NODE
);
1610 struct expression
*e0
, *e1
, *e2
, *e3
, *e4
;
1612 a
->ctype
.base_type
= expr
->base
->ctype
;
1613 a
->bit_size
= expr
->base
->ctype
->bit_size
;
1614 a
->array_size
= expr
->base
->ctype
->array_size
;
1616 e0
= alloc_expression(expr
->pos
, EXPR_SYMBOL
);
1618 e0
->ctype
= &lazy_ptr_ctype
;
1620 e1
= alloc_expression(expr
->pos
, EXPR_PREOP
);
1623 e1
->ctype
= expr
->base
->ctype
; /* XXX */
1625 e2
= alloc_expression(expr
->pos
, EXPR_ASSIGNMENT
);
1627 e2
->right
= expr
->base
;
1629 e2
->ctype
= expr
->base
->ctype
;
1631 if (expr
->r_bitpos
) {
1632 e3
= alloc_expression(expr
->pos
, EXPR_BINOP
);
1635 e3
->right
= alloc_const_expression(expr
->pos
,
1636 bits_to_bytes(expr
->r_bitpos
));
1637 e3
->ctype
= &lazy_ptr_ctype
;
1642 e4
= alloc_expression(expr
->pos
, EXPR_COMMA
);
1645 e4
->ctype
= &lazy_ptr_ctype
;
1648 expr
->type
= EXPR_PREOP
;
1652 if (expr
->op
!= '*' || expr
->type
!= EXPR_PREOP
) {
1653 expression_error(expr
, "strange non-value function or array");
1656 *expr
= *expr
->unop
;
1657 ctype
= create_pointer(expr
, ctype
, 1);
1658 expr
->ctype
= ctype
;
1665 static struct symbol
*evaluate_addressof(struct expression
*expr
)
1667 struct expression
*op
= expr
->unop
;
1668 struct symbol
*ctype
;
1670 if (op
->op
!= '*' || op
->type
!= EXPR_PREOP
) {
1671 expression_error(expr
, "not addressable");
1678 if (expr
->type
== EXPR_SYMBOL
) {
1679 struct symbol
*sym
= expr
->symbol
;
1680 sym
->ctype
.modifiers
|= MOD_ADDRESSABLE
;
1684 * symbol expression evaluation is lazy about the type
1685 * of the sub-expression, so we may have to generate
1686 * the type here if so..
1688 if (expr
->ctype
== &lazy_ptr_ctype
) {
1689 ctype
= create_pointer(expr
, ctype
, 0);
1690 expr
->ctype
= ctype
;
1696 static struct symbol
*evaluate_dereference(struct expression
*expr
)
1698 struct expression
*op
= expr
->unop
;
1699 struct symbol
*ctype
= op
->ctype
, *node
, *target
;
1701 /* Simplify: *&(expr) => (expr) */
1702 if (op
->type
== EXPR_PREOP
&& op
->op
== '&') {
1708 /* Dereferencing a node drops all the node information. */
1709 if (ctype
->type
== SYM_NODE
)
1710 ctype
= ctype
->ctype
.base_type
;
1712 node
= alloc_symbol(expr
->pos
, SYM_NODE
);
1713 target
= ctype
->ctype
.base_type
;
1715 switch (ctype
->type
) {
1717 expression_error(expr
, "cannot dereference this type");
1720 node
->ctype
.modifiers
= target
->ctype
.modifiers
& MOD_SPECIFIER
;
1721 merge_type(node
, ctype
);
1725 if (!lvalue_expression(op
)) {
1726 expression_error(op
, "non-lvalue array??");
1730 /* Do the implied "addressof" on the array */
1734 * When an array is dereferenced, we need to pick
1735 * up the attributes of the original node too..
1737 merge_type(node
, op
->ctype
);
1738 merge_type(node
, ctype
);
1742 node
->bit_size
= target
->bit_size
;
1743 node
->array_size
= target
->array_size
;
1750 * Unary post-ops: x++ and x--
1752 static struct symbol
*evaluate_postop(struct expression
*expr
)
1754 struct expression
*op
= expr
->unop
;
1755 struct symbol
*ctype
= op
->ctype
;
1756 int class = classify_type(ctype
, &ctype
);
1759 if (!class || class & TYPE_COMPOUND
) {
1760 expression_error(expr
, "need scalar for ++/--");
1763 if (!lvalue_expression(expr
->unop
)) {
1764 expression_error(expr
, "need lvalue expression for ++/--");
1768 if ((class & TYPE_RESTRICT
) && restricted_unop(expr
->op
, &ctype
))
1769 unrestrict(expr
, class, &ctype
);
1771 if (class & TYPE_NUM
) {
1773 } else if (class == TYPE_PTR
) {
1774 struct symbol
*target
= examine_pointer_target(ctype
);
1775 if (!is_function(target
))
1776 multiply
= bits_to_bytes(target
->bit_size
);
1780 evaluate_assign_to(op
, op
->ctype
);
1781 expr
->op_value
= multiply
;
1782 expr
->ctype
= ctype
;
1786 expression_error(expr
, "bad argument type for ++/--");
1790 static struct symbol
*evaluate_sign(struct expression
*expr
)
1792 struct symbol
*ctype
= expr
->unop
->ctype
;
1793 int class = classify_type(ctype
, &ctype
);
1794 if (expr
->flags
&& !(expr
->unop
->flags
& Int_const_expr
))
1796 /* should be an arithmetic type */
1797 if (!(class & TYPE_NUM
))
1798 return bad_expr_type(expr
);
1799 if (class & TYPE_RESTRICT
)
1802 if (!(class & TYPE_FLOAT
)) {
1803 ctype
= integer_promotion(ctype
);
1804 expr
->unop
= cast_to(expr
->unop
, ctype
);
1805 } else if (expr
->op
!= '~') {
1806 /* no conversions needed */
1808 return bad_expr_type(expr
);
1810 if (expr
->op
== '+')
1811 *expr
= *expr
->unop
;
1812 expr
->ctype
= ctype
;
1815 if (restricted_unop(expr
->op
, &ctype
))
1816 unrestrict(expr
, class, &ctype
);
1820 static struct symbol
*evaluate_preop(struct expression
*expr
)
1822 struct symbol
*ctype
= expr
->unop
->ctype
;
1826 *expr
= *expr
->unop
;
1832 return evaluate_sign(expr
);
1835 return evaluate_dereference(expr
);
1838 return evaluate_addressof(expr
);
1840 case SPECIAL_INCREMENT
:
1841 case SPECIAL_DECREMENT
:
1843 * From a type evaluation standpoint the preops are
1844 * the same as the postops
1846 return evaluate_postop(expr
);
1849 if (expr
->flags
&& !(expr
->unop
->flags
& Int_const_expr
))
1851 if (is_safe_type(ctype
))
1852 warning(expr
->pos
, "testing a 'safe expression'");
1853 if (is_float_type(ctype
)) {
1854 struct expression
*arg
= expr
->unop
;
1855 expr
->type
= EXPR_COMPARE
;
1856 expr
->op
= SPECIAL_EQUAL
;
1858 expr
->right
= alloc_expression(expr
->pos
, EXPR_FVALUE
);
1859 expr
->right
->ctype
= ctype
;
1860 expr
->right
->fvalue
= 0;
1861 } else if (is_fouled_type(ctype
)) {
1862 warning(expr
->pos
, "%s degrades to integer",
1863 show_typename(ctype
->ctype
.base_type
));
1865 /* the result is int [6.5.3.3(5)]*/
1872 expr
->ctype
= ctype
;
1876 static struct symbol
*find_identifier(struct ident
*ident
, struct symbol_list
*_list
, int *offset
)
1878 struct ptr_list
*head
= (struct ptr_list
*)_list
;
1879 struct ptr_list
*list
= head
;
1885 for (i
= 0; i
< list
->nr
; i
++) {
1886 struct symbol
*sym
= (struct symbol
*) list
->list
[i
];
1888 if (sym
->ident
!= ident
)
1890 *offset
= sym
->offset
;
1893 struct symbol
*ctype
= sym
->ctype
.base_type
;
1897 if (ctype
->type
!= SYM_UNION
&& ctype
->type
!= SYM_STRUCT
)
1899 sub
= find_identifier(ident
, ctype
->symbol_list
, offset
);
1902 *offset
+= sym
->offset
;
1906 } while ((list
= list
->next
) != head
);
1910 static struct expression
*evaluate_offset(struct expression
*expr
, unsigned long offset
)
1912 struct expression
*add
;
1915 * Create a new add-expression
1917 * NOTE! Even if we just add zero, we need a new node
1918 * for the member pointer, since it has a different
1919 * type than the original pointer. We could make that
1920 * be just a cast, but the fact is, a node is a node,
1921 * so we might as well just do the "add zero" here.
1923 add
= alloc_expression(expr
->pos
, EXPR_BINOP
);
1926 add
->right
= alloc_expression(expr
->pos
, EXPR_VALUE
);
1927 add
->right
->ctype
= &int_ctype
;
1928 add
->right
->value
= offset
;
1931 * The ctype of the pointer will be lazily evaluated if
1932 * we ever take the address of this member dereference..
1934 add
->ctype
= &lazy_ptr_ctype
;
1938 /* structure/union dereference */
1939 static struct symbol
*evaluate_member_dereference(struct expression
*expr
)
1942 struct symbol
*ctype
, *member
;
1943 struct expression
*deref
= expr
->deref
, *add
;
1944 struct ident
*ident
= expr
->member
;
1948 if (!evaluate_expression(deref
))
1951 expression_error(expr
, "bad member name");
1955 ctype
= deref
->ctype
;
1956 examine_symbol_type(ctype
);
1957 address_space
= ctype
->ctype
.attribute
->as
;
1958 mod
= ctype
->ctype
.modifiers
;
1959 if (ctype
->type
== SYM_NODE
) {
1960 ctype
= ctype
->ctype
.base_type
;
1961 address_space
|= ctype
->ctype
.attribute
->as
;
1962 mod
|= ctype
->ctype
.modifiers
;
1964 if (!ctype
|| (ctype
->type
!= SYM_STRUCT
&& ctype
->type
!= SYM_UNION
)) {
1965 expression_error(expr
, "expected structure or union");
1969 member
= find_identifier(ident
, ctype
->symbol_list
, &offset
);
1971 const char *type
= ctype
->type
== SYM_STRUCT
? "struct" : "union";
1972 const char *name
= "<unnamed>";
1975 name
= ctype
->ident
->name
;
1976 namelen
= ctype
->ident
->len
;
1978 if (ctype
->symbol_list
)
1979 expression_error(expr
, "no member '%s' in %s %.*s",
1980 show_ident(ident
), type
, namelen
, name
);
1982 expression_error(expr
, "using member '%s' in "
1983 "incomplete %s %.*s", show_ident(ident
),
1984 type
, namelen
, name
);
1989 * The member needs to take on the address space and modifiers of
1990 * the "parent" type.
1992 member
= convert_to_as_mod(member
, address_space
, mod
);
1993 ctype
= get_base_type(member
);
1995 if (!lvalue_expression(deref
)) {
1996 if (deref
->type
!= EXPR_SLICE
) {
2000 expr
->base
= deref
->base
;
2001 expr
->r_bitpos
= deref
->r_bitpos
;
2003 expr
->r_bitpos
+= bytes_to_bits(offset
);
2004 expr
->type
= EXPR_SLICE
;
2005 expr
->r_nrbits
= member
->bit_size
;
2006 expr
->r_bitpos
+= member
->bit_offset
;
2007 expr
->ctype
= member
;
2011 deref
= deref
->unop
;
2012 expr
->deref
= deref
;
2014 add
= evaluate_offset(deref
, offset
);
2015 expr
->type
= EXPR_PREOP
;
2019 expr
->ctype
= member
;
2023 static int is_promoted(struct expression
*expr
)
2026 switch (expr
->type
) {
2029 case EXPR_CONDITIONAL
:
2053 static struct symbol
*evaluate_cast(struct expression
*);
2055 static struct symbol
*evaluate_type_information(struct expression
*expr
)
2057 struct symbol
*sym
= expr
->cast_type
;
2059 sym
= evaluate_expression(expr
->cast_expression
);
2063 * Expressions of restricted types will possibly get
2064 * promoted - check that here
2066 if (is_restricted_type(sym
)) {
2067 if (sym
->bit_size
< bits_in_int
&& is_promoted(expr
))
2069 } else if (is_fouled_type(sym
)) {
2073 examine_symbol_type(sym
);
2074 if (is_bitfield_type(sym
)) {
2075 expression_error(expr
, "trying to examine bitfield type");
2081 static struct symbol
*evaluate_sizeof(struct expression
*expr
)
2083 struct symbol
*type
;
2086 type
= evaluate_type_information(expr
);
2090 size
= type
->bit_size
;
2092 if (size
< 0 && is_void_type(type
)) {
2093 warning(expr
->pos
, "expression using sizeof(void)");
2094 size
= bits_in_char
;
2097 if (size
== 1 && is_bool_type(type
)) {
2099 warning(expr
->pos
, "expression using sizeof bool");
2100 size
= bits_in_char
;
2103 if (is_function(type
->ctype
.base_type
)) {
2104 warning(expr
->pos
, "expression using sizeof on a function");
2105 size
= bits_in_char
;
2108 if ((size
< 0) || (size
& (bits_in_char
- 1)))
2109 expression_error(expr
, "cannot size expression");
2111 expr
->type
= EXPR_VALUE
;
2112 expr
->value
= bits_to_bytes(size
);
2114 expr
->ctype
= size_t_ctype
;
2115 return size_t_ctype
;
2118 static struct symbol
*evaluate_ptrsizeof(struct expression
*expr
)
2120 struct symbol
*type
;
2123 type
= evaluate_type_information(expr
);
2127 if (type
->type
== SYM_NODE
)
2128 type
= type
->ctype
.base_type
;
2131 switch (type
->type
) {
2135 type
= get_base_type(type
);
2139 expression_error(expr
, "expected pointer expression");
2142 size
= type
->bit_size
;
2143 if (size
& (bits_in_char
-1))
2145 expr
->type
= EXPR_VALUE
;
2146 expr
->value
= bits_to_bytes(size
);
2148 expr
->ctype
= size_t_ctype
;
2149 return size_t_ctype
;
2152 static struct symbol
*evaluate_alignof(struct expression
*expr
)
2154 struct symbol
*type
;
2156 type
= evaluate_type_information(expr
);
2160 expr
->type
= EXPR_VALUE
;
2161 expr
->value
= type
->ctype
.alignment
;
2163 expr
->ctype
= size_t_ctype
;
2164 return size_t_ctype
;
2167 static int evaluate_arguments(struct symbol
*f
, struct symbol
*fn
, struct expression_list
*head
)
2169 struct expression
*expr
;
2170 struct symbol_list
*argument_types
= fn
->arguments
;
2171 struct symbol
*argtype
;
2174 PREPARE_PTR_LIST(argument_types
, argtype
);
2175 FOR_EACH_PTR (head
, expr
) {
2176 struct expression
**p
= THIS_ADDRESS(expr
);
2177 struct symbol
*ctype
, *target
;
2178 ctype
= evaluate_expression(expr
);
2185 struct symbol
*type
;
2186 int class = classify_type(ctype
, &type
);
2187 if (is_int(class)) {
2188 *p
= cast_to(expr
, integer_promotion(type
));
2189 } else if (class & TYPE_FLOAT
) {
2190 unsigned long mod
= type
->ctype
.modifiers
;
2191 if (!(mod
& (MOD_LONG_ALL
)))
2192 *p
= cast_to(expr
, &double_ctype
);
2193 } else if (class & TYPE_PTR
) {
2194 if (expr
->ctype
== &null_ctype
)
2195 *p
= cast_to(expr
, &ptr_ctype
);
2199 } else if (!target
->forced_arg
){
2200 static char where
[30];
2201 examine_symbol_type(target
);
2202 sprintf(where
, "argument %d", i
);
2203 compatible_argument_type(expr
, target
, p
, where
);
2207 NEXT_PTR_LIST(argtype
);
2208 } END_FOR_EACH_PTR(expr
);
2209 FINISH_PTR_LIST(argtype
);
2213 static void convert_index(struct expression
*e
)
2215 struct expression
*child
= e
->idx_expression
;
2216 unsigned from
= e
->idx_from
;
2217 unsigned to
= e
->idx_to
+ 1;
2219 e
->init_offset
= from
* bits_to_bytes(e
->ctype
->bit_size
);
2220 e
->init_nr
= to
- from
;
2221 e
->init_expr
= child
;
2224 static void convert_ident(struct expression
*e
)
2226 struct expression
*child
= e
->ident_expression
;
2227 int offset
= e
->offset
;
2230 e
->init_offset
= offset
;
2232 e
->init_expr
= child
;
2235 static void convert_designators(struct expression
*e
)
2238 if (e
->type
== EXPR_INDEX
)
2240 else if (e
->type
== EXPR_IDENTIFIER
)
2248 static void excess(struct expression
*e
, const char *s
)
2250 warning(e
->pos
, "excessive elements in %s initializer", s
);
2254 * implicit designator for the first element
2256 static struct expression
*first_subobject(struct symbol
*ctype
, int class,
2257 struct expression
**v
)
2259 struct expression
*e
= *v
, *new;
2261 if (ctype
->type
== SYM_NODE
)
2262 ctype
= ctype
->ctype
.base_type
;
2264 if (class & TYPE_PTR
) { /* array */
2265 if (!ctype
->bit_size
)
2267 new = alloc_expression(e
->pos
, EXPR_INDEX
);
2268 new->idx_expression
= e
;
2269 new->ctype
= ctype
->ctype
.base_type
;
2271 struct symbol
*field
, *p
;
2272 PREPARE_PTR_LIST(ctype
->symbol_list
, p
);
2273 while (p
&& !p
->ident
&& is_bitfield_type(p
))
2279 new = alloc_expression(e
->pos
, EXPR_IDENTIFIER
);
2280 new->ident_expression
= e
;
2281 new->field
= new->ctype
= field
;
2282 new->offset
= field
->offset
;
2289 * sanity-check explicit designators; return the innermost one or NULL
2290 * in case of error. Assign types.
2292 static struct expression
*check_designators(struct expression
*e
,
2293 struct symbol
*ctype
)
2295 struct expression
*last
= NULL
;
2298 if (ctype
->type
== SYM_NODE
)
2299 ctype
= ctype
->ctype
.base_type
;
2300 if (e
->type
== EXPR_INDEX
) {
2301 struct symbol
*type
;
2302 if (ctype
->type
!= SYM_ARRAY
) {
2303 err
= "array index in non-array";
2306 type
= ctype
->ctype
.base_type
;
2307 if (ctype
->bit_size
>= 0 && type
->bit_size
>= 0) {
2308 unsigned offset
= array_element_offset(type
->bit_size
, e
->idx_to
);
2309 if (offset
>= ctype
->bit_size
) {
2310 err
= "index out of bounds in";
2314 e
->ctype
= ctype
= type
;
2317 if (!e
->idx_expression
) {
2321 e
= e
->idx_expression
;
2322 } else if (e
->type
== EXPR_IDENTIFIER
) {
2324 if (ctype
->type
!= SYM_STRUCT
&& ctype
->type
!= SYM_UNION
) {
2325 err
= "field name not in struct or union";
2328 ctype
= find_identifier(e
->expr_ident
, ctype
->symbol_list
, &offset
);
2330 err
= "unknown field name in";
2334 e
->field
= e
->ctype
= ctype
;
2336 if (!e
->ident_expression
) {
2340 e
= e
->ident_expression
;
2341 } else if (e
->type
== EXPR_POS
) {
2342 err
= "internal front-end error: EXPR_POS in";
2347 expression_error(e
, "%s initializer", err
);
2352 * choose the next subobject to initialize.
2354 * Get designators for next element, switch old ones to EXPR_POS.
2355 * Return the resulting expression or NULL if we'd run out of subobjects.
2356 * The innermost designator is returned in *v. Designators in old
2357 * are assumed to be already sanity-checked.
2359 static struct expression
*next_designators(struct expression
*old
,
2360 struct symbol
*ctype
,
2361 struct expression
*e
, struct expression
**v
)
2363 struct expression
*new = NULL
;
2367 if (old
->type
== EXPR_INDEX
) {
2368 struct expression
*copy
;
2371 copy
= next_designators(old
->idx_expression
,
2374 n
= old
->idx_to
+ 1;
2375 if (n
* old
->ctype
->bit_size
== ctype
->bit_size
) {
2380 *v
= new = alloc_expression(e
->pos
, EXPR_INDEX
);
2383 new = alloc_expression(e
->pos
, EXPR_INDEX
);
2386 new->idx_from
= new->idx_to
= n
;
2387 new->idx_expression
= copy
;
2388 new->ctype
= old
->ctype
;
2390 } else if (old
->type
== EXPR_IDENTIFIER
) {
2391 struct expression
*copy
;
2392 struct symbol
*field
;
2395 copy
= next_designators(old
->ident_expression
,
2398 field
= old
->field
->next_subobject
;
2404 *v
= new = alloc_expression(e
->pos
, EXPR_IDENTIFIER
);
2406 * We can't necessarily trust "field->offset",
2407 * because the field might be in an anonymous
2408 * union, and the field offset is then the offset
2409 * within that union.
2411 * The "old->offset - old->field->offset"
2412 * would be the offset of such an anonymous
2415 offset
= old
->offset
- old
->field
->offset
;
2418 new = alloc_expression(e
->pos
, EXPR_IDENTIFIER
);
2422 new->expr_ident
= field
->ident
;
2423 new->ident_expression
= copy
;
2425 new->offset
= field
->offset
+ offset
;
2431 static int handle_simple_initializer(struct expression
**ep
, int nested
,
2432 int class, struct symbol
*ctype
);
2435 * deal with traversing subobjects [6.7.8(17,18,20)]
2437 static void handle_list_initializer(struct expression
*expr
,
2438 int class, struct symbol
*ctype
)
2440 struct expression
*e
, *last
= NULL
, *top
= NULL
, *next
;
2443 FOR_EACH_PTR(expr
->expr_list
, e
) {
2444 struct expression
**v
;
2445 struct symbol
*type
;
2448 if (e
->type
!= EXPR_INDEX
&& e
->type
!= EXPR_IDENTIFIER
) {
2449 struct symbol
*struct_sym
;
2452 last
= first_subobject(ctype
, class, &top
);
2454 last
= next_designators(last
, ctype
, e
, &top
);
2457 excess(e
, class & TYPE_PTR
? "array" :
2459 DELETE_CURRENT_PTR(e
);
2462 struct_sym
= ctype
->type
== SYM_NODE
? ctype
->ctype
.base_type
: ctype
;
2463 if (Wdesignated_init
&& struct_sym
->designated_init
)
2464 warning(e
->pos
, "%s%.*s%spositional init of field in %s %s, declared with attribute designated_init",
2465 ctype
->ident
? "in initializer for " : "",
2466 ctype
->ident
? ctype
->ident
->len
: 0,
2467 ctype
->ident
? ctype
->ident
->name
: "",
2468 ctype
->ident
? ": " : "",
2469 get_type_name(struct_sym
->type
),
2470 show_ident(struct_sym
->ident
));
2472 warning(e
->pos
, "advancing past deep designator");
2475 REPLACE_CURRENT_PTR(e
, last
);
2477 next
= check_designators(e
, ctype
);
2479 DELETE_CURRENT_PTR(e
);
2483 /* deeper than one designator? */
2485 convert_designators(last
);
2490 lclass
= classify_type(top
->ctype
, &type
);
2491 if (top
->type
== EXPR_INDEX
)
2492 v
= &top
->idx_expression
;
2494 v
= &top
->ident_expression
;
2496 if (handle_simple_initializer(v
, 1, lclass
, top
->ctype
))
2499 if (!(lclass
& TYPE_COMPOUND
)) {
2500 warning(e
->pos
, "bogus scalar initializer");
2501 DELETE_CURRENT_PTR(e
);
2505 next
= first_subobject(type
, lclass
, v
);
2507 warning(e
->pos
, "missing braces around initializer");
2512 DELETE_CURRENT_PTR(e
);
2513 excess(e
, lclass
& TYPE_PTR
? "array" : "struct or union");
2515 } END_FOR_EACH_PTR(e
);
2517 convert_designators(last
);
2518 expr
->ctype
= ctype
;
2521 static int is_string_literal(struct expression
**v
)
2523 struct expression
*e
= *v
;
2524 while (e
&& e
->type
== EXPR_PREOP
&& e
->op
== '(')
2526 if (!e
|| e
->type
!= EXPR_STRING
)
2528 if (e
!= *v
&& Wparen_string
)
2530 "array initialized from parenthesized string constant");
2536 * We want a normal expression, possibly in one layer of braces. Warn
2537 * if the latter happens inside a list (it's legal, but likely to be
2538 * an effect of screwup). In case of anything not legal, we are definitely
2539 * having an effect of screwup, so just fail and let the caller warn.
2541 static struct expression
*handle_scalar(struct expression
*e
, int nested
)
2543 struct expression
*v
= NULL
, *p
;
2547 if (e
->type
!= EXPR_INITIALIZER
)
2550 FOR_EACH_PTR(e
->expr_list
, p
) {
2554 } END_FOR_EACH_PTR(p
);
2558 case EXPR_INITIALIZER
:
2560 case EXPR_IDENTIFIER
:
2566 warning(e
->pos
, "braces around scalar initializer");
2571 * deal with the cases that don't care about subobjects:
2572 * scalar <- assignment expression, possibly in braces [6.7.8(11)]
2573 * character array <- string literal, possibly in braces [6.7.8(14)]
2574 * struct or union <- assignment expression of compatible type [6.7.8(13)]
2575 * compound type <- initializer list in braces [6.7.8(16)]
2576 * The last one punts to handle_list_initializer() which, in turn will call
2577 * us for individual elements of the list.
2579 * We do not handle 6.7.8(15) (wide char array <- wide string literal) for
2580 * the lack of support of wide char stuff in general.
2582 * One note: we need to take care not to evaluate a string literal until
2583 * we know that we *will* handle it right here. Otherwise we would screw
2584 * the cases like struct { struct {char s[10]; ...} ...} initialized with
2585 * { "string", ...} - we need to preserve that string literal recognizable
2586 * until we dig into the inner struct.
2588 static int handle_simple_initializer(struct expression
**ep
, int nested
,
2589 int class, struct symbol
*ctype
)
2591 int is_string
= is_string_type(ctype
);
2592 struct expression
*e
= *ep
, *p
;
2593 struct symbol
*type
;
2599 if (!(class & TYPE_COMPOUND
)) {
2600 e
= handle_scalar(e
, nested
);
2604 if (!evaluate_expression(e
))
2606 compatible_assignment_types(e
, ctype
, ep
, "initializer");
2611 * sublist; either a string, or we dig in; the latter will deal with
2612 * pathologies, so we don't need anything fancy here.
2614 if (e
->type
== EXPR_INITIALIZER
) {
2616 struct expression
*v
= NULL
;
2619 FOR_EACH_PTR(e
->expr_list
, p
) {
2623 } END_FOR_EACH_PTR(p
);
2624 if (count
== 1 && is_string_literal(&v
)) {
2629 handle_list_initializer(e
, class, ctype
);
2634 if (is_string_literal(&e
)) {
2635 /* either we are doing array of char, or we'll have to dig in */
2642 /* struct or union can be initialized by compatible */
2643 if (class != TYPE_COMPOUND
)
2645 type
= evaluate_expression(e
);
2648 if (ctype
->type
== SYM_NODE
)
2649 ctype
= ctype
->ctype
.base_type
;
2650 if (type
->type
== SYM_NODE
)
2651 type
= type
->ctype
.base_type
;
2657 p
= alloc_expression(e
->pos
, EXPR_STRING
);
2659 type
= evaluate_expression(p
);
2660 if (ctype
->bit_size
!= -1) {
2661 if (ctype
->bit_size
+ bits_in_char
< type
->bit_size
)
2663 "too long initializer-string for array of char");
2664 else if (Winit_cstring
&& ctype
->bit_size
+ bits_in_char
== type
->bit_size
) {
2666 "too long initializer-string for array of char(no space for nul char)");
2673 static void evaluate_initializer(struct symbol
*ctype
, struct expression
**ep
)
2675 struct symbol
*type
;
2676 int class = classify_type(ctype
, &type
);
2677 if (!handle_simple_initializer(ep
, 0, class, ctype
))
2678 expression_error(*ep
, "invalid initializer");
2681 static struct symbol
*evaluate_cast(struct expression
*expr
)
2683 struct expression
*target
= expr
->cast_expression
;
2684 struct symbol
*ctype
;
2685 struct symbol
*t1
, *t2
;
2687 int as1
= 0, as2
= 0;
2693 * Special case: a cast can be followed by an
2694 * initializer, in which case we need to pass
2695 * the type value down to that initializer rather
2696 * than trying to evaluate it as an expression
2698 * A more complex case is when the initializer is
2699 * dereferenced as part of a post-fix expression.
2700 * We need to produce an expression that can be dereferenced.
2702 if (target
->type
== EXPR_INITIALIZER
) {
2703 struct symbol
*sym
= expr
->cast_type
;
2704 struct expression
*addr
= alloc_expression(expr
->pos
, EXPR_SYMBOL
);
2706 sym
->initializer
= target
;
2707 evaluate_symbol(sym
);
2709 addr
->ctype
= &lazy_ptr_ctype
; /* Lazy eval */
2712 expr
->type
= EXPR_PREOP
;
2720 ctype
= examine_symbol_type(expr
->cast_type
);
2721 expr
->ctype
= ctype
;
2722 expr
->cast_type
= ctype
;
2724 evaluate_expression(target
);
2727 class1
= classify_type(ctype
, &t1
);
2729 /* cast to non-integer type -> not an integer constant expression */
2730 if (!is_int(class1
))
2732 /* if argument turns out to be not an integer constant expression *and*
2733 it was not a floating literal to start with -> too bad */
2734 else if (expr
->flags
== Int_const_expr
&&
2735 !(target
->flags
& Int_const_expr
))
2738 * You can always throw a value away by casting to
2739 * "void" - that's an implicit "force". Note that
2740 * the same is _not_ true of "void *".
2742 if (t1
== &void_ctype
)
2745 if (class1
& (TYPE_COMPOUND
| TYPE_FN
))
2746 warning(expr
->pos
, "cast to non-scalar");
2750 expression_error(expr
, "cast from unknown type");
2753 class2
= classify_type(t2
, &t2
);
2755 if (class2
& TYPE_COMPOUND
)
2756 warning(expr
->pos
, "cast from non-scalar");
2758 if (expr
->type
== EXPR_FORCE_CAST
)
2761 /* allowed cast unfouls */
2762 if (class2
& TYPE_FOULED
)
2766 if (class1
& TYPE_RESTRICT
)
2767 warning(expr
->pos
, "cast to %s",
2769 if (class2
& TYPE_RESTRICT
)
2770 warning(expr
->pos
, "cast from %s",
2774 if (t1
== &ulong_ctype
)
2776 else if (class1
== TYPE_PTR
) {
2777 examine_pointer_target(t1
);
2778 as1
= t1
->ctype
.attribute
->as
;
2781 if (t2
== &ulong_ctype
)
2783 else if (class2
== TYPE_PTR
) {
2784 examine_pointer_target(t2
);
2785 as2
= t2
->ctype
.attribute
->as
;
2788 if (!as1
&& as2
> 0)
2789 warning(expr
->pos
, "cast removes address space of expression");
2790 if (as1
> 0 && as2
> 0 && as1
!= as2
)
2791 warning(expr
->pos
, "cast between address spaces (<asn:%d>-><asn:%d>)", as2
, as1
);
2792 if (as1
> 0 && !as2
&&
2793 !is_null_pointer_constant(target
) && Wcast_to_as
)
2795 "cast adds address space to expression (<asn:%d>)", as1
);
2797 if (!(t1
->ctype
.modifiers
& MOD_PTRINHERIT
) && class1
== TYPE_PTR
&&
2798 !as1
&& (target
->flags
& Int_const_expr
)) {
2799 if (t1
->ctype
.base_type
== &void_ctype
) {
2800 if (is_zero_constant(target
)) {
2802 expr
->type
= EXPR_VALUE
;
2803 expr
->ctype
= &null_ctype
;
2814 * Evaluate a call expression with a symbol. This
2815 * should expand inline functions, and evaluate
2818 static int evaluate_symbol_call(struct expression
*expr
)
2820 struct expression
*fn
= expr
->fn
;
2821 struct symbol
*ctype
= fn
->ctype
;
2823 if (fn
->type
!= EXPR_PREOP
)
2826 if (ctype
->op
&& ctype
->op
->evaluate
)
2827 return ctype
->op
->evaluate(expr
);
2829 if (ctype
->ctype
.modifiers
& MOD_INLINE
) {
2831 struct symbol
*curr
= current_fn
;
2833 if (ctype
->definition
)
2834 ctype
= ctype
->definition
;
2836 current_fn
= ctype
->ctype
.base_type
;
2838 ret
= inline_function(expr
, ctype
);
2840 /* restore the old function */
2848 static struct symbol
*evaluate_call(struct expression
*expr
)
2851 struct symbol
*ctype
, *sym
;
2852 struct expression
*fn
= expr
->fn
;
2853 struct expression_list
*arglist
= expr
->args
;
2855 if (!evaluate_expression(fn
))
2857 sym
= ctype
= fn
->ctype
;
2858 if (ctype
->type
== SYM_NODE
)
2859 ctype
= ctype
->ctype
.base_type
;
2860 if (ctype
->type
== SYM_PTR
)
2861 ctype
= get_base_type(ctype
);
2863 if (ctype
->type
!= SYM_FN
) {
2864 struct expression
*arg
;
2865 expression_error(expr
, "not a function %s",
2866 show_ident(sym
->ident
));
2867 /* do typechecking in arguments */
2868 FOR_EACH_PTR (arglist
, arg
) {
2869 evaluate_expression(arg
);
2870 } END_FOR_EACH_PTR(arg
);
2874 examine_fn_arguments(ctype
);
2875 if (sym
->type
== SYM_NODE
&& fn
->type
== EXPR_PREOP
&&
2876 sym
->op
&& sym
->op
->args
) {
2877 if (!sym
->op
->args(expr
))
2880 if (!evaluate_arguments(sym
, ctype
, arglist
))
2882 args
= expression_list_size(expr
->args
);
2883 fnargs
= symbol_list_size(ctype
->arguments
);
2885 expression_error(expr
,
2886 "not enough arguments for function %s",
2887 show_ident(sym
->ident
));
2888 if (args
> fnargs
&& !ctype
->variadic
)
2889 expression_error(expr
,
2890 "too many arguments for function %s",
2891 show_ident(sym
->ident
));
2893 if (sym
->type
== SYM_NODE
) {
2894 if (evaluate_symbol_call(expr
))
2897 expr
->ctype
= ctype
->ctype
.base_type
;
2901 static struct symbol
*evaluate_offsetof(struct expression
*expr
)
2903 struct expression
*e
= expr
->down
;
2904 struct symbol
*ctype
= expr
->in
;
2907 if (expr
->op
== '.') {
2908 struct symbol
*field
;
2911 expression_error(expr
, "expected structure or union");
2914 examine_symbol_type(ctype
);
2915 class = classify_type(ctype
, &ctype
);
2916 if (class != TYPE_COMPOUND
) {
2917 expression_error(expr
, "expected structure or union");
2921 field
= find_identifier(expr
->ident
, ctype
->symbol_list
, &offset
);
2923 expression_error(expr
, "unknown member");
2927 expr
->type
= EXPR_VALUE
;
2928 expr
->flags
= Int_const_expr
;
2929 expr
->value
= offset
;
2931 expr
->ctype
= size_t_ctype
;
2934 expression_error(expr
, "expected structure or union");
2937 examine_symbol_type(ctype
);
2938 class = classify_type(ctype
, &ctype
);
2939 if (class != (TYPE_COMPOUND
| TYPE_PTR
)) {
2940 expression_error(expr
, "expected array");
2943 ctype
= ctype
->ctype
.base_type
;
2945 expr
->type
= EXPR_VALUE
;
2946 expr
->flags
= Int_const_expr
;
2949 expr
->ctype
= size_t_ctype
;
2951 struct expression
*idx
= expr
->index
, *m
;
2952 struct symbol
*i_type
= evaluate_expression(idx
);
2953 int i_class
= classify_type(i_type
, &i_type
);
2954 if (!is_int(i_class
)) {
2955 expression_error(expr
, "non-integer index");
2958 unrestrict(idx
, i_class
, &i_type
);
2959 idx
= cast_to(idx
, size_t_ctype
);
2960 m
= alloc_const_expression(expr
->pos
,
2961 bits_to_bytes(ctype
->bit_size
));
2962 m
->ctype
= size_t_ctype
;
2963 m
->flags
= Int_const_expr
;
2964 expr
->type
= EXPR_BINOP
;
2968 expr
->ctype
= size_t_ctype
;
2969 expr
->flags
= m
->flags
& idx
->flags
& Int_const_expr
;
2973 struct expression
*copy
= __alloc_expression(0);
2975 if (e
->type
== EXPR_OFFSETOF
)
2977 if (!evaluate_expression(e
))
2979 expr
->type
= EXPR_BINOP
;
2980 expr
->flags
= e
->flags
& copy
->flags
& Int_const_expr
;
2982 expr
->ctype
= size_t_ctype
;
2986 return size_t_ctype
;
2989 struct symbol
*evaluate_expression(struct expression
*expr
)
2996 switch (expr
->type
) {
2999 expression_error(expr
, "value expression without a type");
3002 return evaluate_string(expr
);
3004 return evaluate_symbol_expression(expr
);
3006 if (!evaluate_expression(expr
->left
))
3008 if (!evaluate_expression(expr
->right
))
3010 return evaluate_binop(expr
);
3012 return evaluate_logical(expr
);
3014 evaluate_expression(expr
->left
);
3015 if (!evaluate_expression(expr
->right
))
3017 return evaluate_comma(expr
);
3019 if (!evaluate_expression(expr
->left
))
3021 if (!evaluate_expression(expr
->right
))
3023 return evaluate_compare(expr
);
3024 case EXPR_ASSIGNMENT
:
3025 if (!evaluate_expression(expr
->left
))
3027 if (!evaluate_expression(expr
->right
))
3029 return evaluate_assignment(expr
);
3031 if (!evaluate_expression(expr
->unop
))
3033 return evaluate_preop(expr
);
3035 if (!evaluate_expression(expr
->unop
))
3037 return evaluate_postop(expr
);
3039 case EXPR_FORCE_CAST
:
3040 case EXPR_IMPLIED_CAST
:
3041 return evaluate_cast(expr
);
3043 return evaluate_sizeof(expr
);
3044 case EXPR_PTRSIZEOF
:
3045 return evaluate_ptrsizeof(expr
);
3047 return evaluate_alignof(expr
);
3049 return evaluate_member_dereference(expr
);
3051 return evaluate_call(expr
);
3053 case EXPR_CONDITIONAL
:
3054 return evaluate_conditional_expression(expr
);
3055 case EXPR_STATEMENT
:
3056 expr
->ctype
= evaluate_statement(expr
->statement
);
3060 expr
->ctype
= &ptr_ctype
;
3064 /* Evaluate the type of the symbol .. */
3065 evaluate_symbol(expr
->symbol
);
3066 /* .. but the type of the _expression_ is a "type" */
3067 expr
->ctype
= &type_ctype
;
3071 return evaluate_offsetof(expr
);
3073 /* These can not exist as stand-alone expressions */
3074 case EXPR_INITIALIZER
:
3075 case EXPR_IDENTIFIER
:
3078 expression_error(expr
, "internal front-end error: initializer in expression");
3081 expression_error(expr
, "internal front-end error: SLICE re-evaluated");
3087 static void check_duplicates(struct symbol
*sym
)
3090 struct symbol
*next
= sym
;
3091 int initialized
= sym
->initializer
!= NULL
;
3093 while ((next
= next
->same_symbol
) != NULL
) {
3094 const char *typediff
;
3095 evaluate_symbol(next
);
3096 if (initialized
&& next
->initializer
) {
3097 sparse_error(sym
->pos
, "symbol '%s' has multiple initializers (originally initialized at %s:%d)",
3098 show_ident(sym
->ident
),
3099 stream_name(next
->pos
.stream
), next
->pos
.line
);
3100 /* Only warn once */
3104 typediff
= type_difference(&sym
->ctype
, &next
->ctype
, 0, 0);
3106 sparse_error(sym
->pos
, "symbol '%s' redeclared with different type (originally declared at %s:%d) - %s",
3107 show_ident(sym
->ident
),
3108 stream_name(next
->pos
.stream
), next
->pos
.line
, typediff
);
3113 unsigned long mod
= sym
->ctype
.modifiers
;
3114 if (mod
& (MOD_STATIC
| MOD_REGISTER
))
3116 if (!(mod
& MOD_TOPLEVEL
))
3120 if (sym
->ident
== &main_ident
)
3122 warning(sym
->pos
, "symbol '%s' was not declared. Should it be static?", show_ident(sym
->ident
));
3126 static struct symbol
*evaluate_symbol(struct symbol
*sym
)
3128 struct symbol
*base_type
;
3136 sym
= examine_symbol_type(sym
);
3137 base_type
= get_base_type(sym
);
3141 /* Evaluate the initializers */
3142 if (sym
->initializer
)
3143 evaluate_initializer(sym
, &sym
->initializer
);
3145 /* And finally, evaluate the body of the symbol too */
3146 if (base_type
->type
== SYM_FN
) {
3147 struct symbol
*curr
= current_fn
;
3149 if (sym
->definition
&& sym
->definition
!= sym
)
3150 return evaluate_symbol(sym
->definition
);
3152 current_fn
= base_type
;
3154 examine_fn_arguments(base_type
);
3155 if (!base_type
->stmt
&& base_type
->inline_stmt
)
3157 if (base_type
->stmt
)
3158 evaluate_statement(base_type
->stmt
);
3166 void evaluate_symbol_list(struct symbol_list
*list
)
3170 FOR_EACH_PTR(list
, sym
) {
3171 evaluate_symbol(sym
);
3172 check_duplicates(sym
);
3173 } END_FOR_EACH_PTR(sym
);
3176 static struct symbol
*evaluate_return_expression(struct statement
*stmt
)
3178 struct expression
*expr
= stmt
->expression
;
3179 struct symbol
*fntype
;
3181 evaluate_expression(expr
);
3182 fntype
= current_fn
->ctype
.base_type
;
3183 if (!fntype
|| fntype
== &void_ctype
) {
3184 if (expr
&& expr
->ctype
!= &void_ctype
)
3185 expression_error(expr
, "return expression in %s function", fntype
?"void":"typeless");
3186 if (expr
&& Wreturn_void
)
3187 warning(stmt
->pos
, "returning void-valued expression");
3192 sparse_error(stmt
->pos
, "return with no return value");
3197 compatible_assignment_types(expr
, fntype
, &stmt
->expression
, "return expression");
3201 static void evaluate_if_statement(struct statement
*stmt
)
3203 if (!stmt
->if_conditional
)
3206 evaluate_conditional(stmt
->if_conditional
, 0);
3207 evaluate_statement(stmt
->if_true
);
3208 evaluate_statement(stmt
->if_false
);
3211 static void evaluate_iterator(struct statement
*stmt
)
3213 evaluate_symbol_list(stmt
->iterator_syms
);
3214 evaluate_conditional(stmt
->iterator_pre_condition
, 1);
3215 evaluate_conditional(stmt
->iterator_post_condition
,1);
3216 evaluate_statement(stmt
->iterator_pre_statement
);
3217 evaluate_statement(stmt
->iterator_statement
);
3218 evaluate_statement(stmt
->iterator_post_statement
);
3221 static void verify_output_constraint(struct expression
*expr
, const char *constraint
)
3223 switch (*constraint
) {
3224 case '=': /* Assignment */
3225 case '+': /* Update */
3228 expression_error(expr
, "output constraint is not an assignment constraint (\"%s\")", constraint
);
3232 static void verify_input_constraint(struct expression
*expr
, const char *constraint
)
3234 switch (*constraint
) {
3235 case '=': /* Assignment */
3236 case '+': /* Update */
3237 expression_error(expr
, "input constraint with assignment (\"%s\")", constraint
);
3241 static void evaluate_asm_statement(struct statement
*stmt
)
3243 struct expression
*expr
;
3247 expr
= stmt
->asm_string
;
3248 if (!expr
|| expr
->type
!= EXPR_STRING
) {
3249 sparse_error(stmt
->pos
, "need constant string for inline asm");
3254 FOR_EACH_PTR(stmt
->asm_outputs
, expr
) {
3256 case 0: /* Identifier */
3260 case 1: /* Constraint */
3262 if (!expr
|| expr
->type
!= EXPR_STRING
) {
3263 sparse_error(expr
? expr
->pos
: stmt
->pos
, "asm output constraint is not a string");
3264 *THIS_ADDRESS(expr
) = NULL
;
3267 verify_output_constraint(expr
, expr
->string
->data
);
3270 case 2: /* Expression */
3272 if (!evaluate_expression(expr
))
3274 if (!lvalue_expression(expr
))
3275 warning(expr
->pos
, "asm output is not an lvalue");
3276 evaluate_assign_to(expr
, expr
->ctype
);
3279 } END_FOR_EACH_PTR(expr
);
3282 FOR_EACH_PTR(stmt
->asm_inputs
, expr
) {
3284 case 0: /* Identifier */
3288 case 1: /* Constraint */
3290 if (!expr
|| expr
->type
!= EXPR_STRING
) {
3291 sparse_error(expr
? expr
->pos
: stmt
->pos
, "asm input constraint is not a string");
3292 *THIS_ADDRESS(expr
) = NULL
;
3295 verify_input_constraint(expr
, expr
->string
->data
);
3298 case 2: /* Expression */
3300 if (!evaluate_expression(expr
))
3304 } END_FOR_EACH_PTR(expr
);
3306 FOR_EACH_PTR(stmt
->asm_clobbers
, expr
) {
3308 sparse_error(stmt
->pos
, "bad asm clobbers");
3311 if (expr
->type
== EXPR_STRING
)
3313 expression_error(expr
, "asm clobber is not a string");
3314 } END_FOR_EACH_PTR(expr
);
3316 FOR_EACH_PTR(stmt
->asm_labels
, sym
) {
3317 if (!sym
|| sym
->type
!= SYM_LABEL
) {
3318 sparse_error(stmt
->pos
, "bad asm label");
3321 } END_FOR_EACH_PTR(sym
);
3324 static void evaluate_case_statement(struct statement
*stmt
)
3326 evaluate_expression(stmt
->case_expression
);
3327 evaluate_expression(stmt
->case_to
);
3328 evaluate_statement(stmt
->case_statement
);
3331 static void check_case_type(struct expression
*switch_expr
,
3332 struct expression
*case_expr
,
3333 struct expression
**enumcase
)
3335 struct symbol
*switch_type
, *case_type
;
3341 switch_type
= switch_expr
->ctype
;
3342 case_type
= evaluate_expression(case_expr
);
3344 if (!switch_type
|| !case_type
)
3348 warn_for_different_enum_types(case_expr
->pos
, case_type
, (*enumcase
)->ctype
);
3349 else if (is_enum_type(case_type
))
3350 *enumcase
= case_expr
;
3353 sclass
= classify_type(switch_type
, &switch_type
);
3354 cclass
= classify_type(case_type
, &case_type
);
3356 /* both should be arithmetic */
3357 if (!(sclass
& cclass
& TYPE_NUM
))
3360 /* neither should be floating */
3361 if ((sclass
| cclass
) & TYPE_FLOAT
)
3364 /* if neither is restricted, we are OK */
3365 if (!((sclass
| cclass
) & TYPE_RESTRICT
))
3368 if (!restricted_binop_type(SPECIAL_EQUAL
, case_expr
, switch_expr
,
3369 cclass
, sclass
, case_type
, switch_type
)) {
3370 unrestrict(case_expr
, cclass
, &case_type
);
3371 unrestrict(switch_expr
, sclass
, &switch_type
);
3376 expression_error(case_expr
, "incompatible types for 'case' statement");
3379 static void evaluate_switch_statement(struct statement
*stmt
)
3382 struct expression
*enumcase
= NULL
;
3383 struct expression
**enumcase_holder
= &enumcase
;
3384 struct expression
*sel
= stmt
->switch_expression
;
3386 evaluate_expression(sel
);
3387 evaluate_statement(stmt
->switch_statement
);
3390 if (sel
->ctype
&& is_enum_type(sel
->ctype
))
3391 enumcase_holder
= NULL
; /* Only check cases against switch */
3393 FOR_EACH_PTR(stmt
->switch_case
->symbol_list
, sym
) {
3394 struct statement
*case_stmt
= sym
->stmt
;
3395 check_case_type(sel
, case_stmt
->case_expression
, enumcase_holder
);
3396 check_case_type(sel
, case_stmt
->case_to
, enumcase_holder
);
3397 } END_FOR_EACH_PTR(sym
);
3400 static void evaluate_goto_statement(struct statement
*stmt
)
3402 struct symbol
*label
= stmt
->goto_label
;
3404 if (label
&& !label
->stmt
)
3405 sparse_error(stmt
->pos
, "label '%s' was not declared", show_ident(label
->ident
));
3407 evaluate_expression(stmt
->goto_expression
);
3410 struct symbol
*evaluate_statement(struct statement
*stmt
)
3415 switch (stmt
->type
) {
3416 case STMT_DECLARATION
: {
3418 FOR_EACH_PTR(stmt
->declaration
, s
) {
3420 } END_FOR_EACH_PTR(s
);
3425 return evaluate_return_expression(stmt
);
3427 case STMT_EXPRESSION
:
3428 if (!evaluate_expression(stmt
->expression
))
3430 if (stmt
->expression
->ctype
== &null_ctype
)
3431 stmt
->expression
= cast_to(stmt
->expression
, &ptr_ctype
);
3432 return degenerate(stmt
->expression
);
3434 case STMT_COMPOUND
: {
3435 struct statement
*s
;
3436 struct symbol
*type
= NULL
;
3438 /* Evaluate the return symbol in the compound statement */
3439 evaluate_symbol(stmt
->ret
);
3442 * Then, evaluate each statement, making the type of the
3443 * compound statement be the type of the last statement
3445 type
= evaluate_statement(stmt
->args
);
3446 FOR_EACH_PTR(stmt
->stmts
, s
) {
3447 type
= evaluate_statement(s
);
3448 } END_FOR_EACH_PTR(s
);
3454 evaluate_if_statement(stmt
);
3457 evaluate_iterator(stmt
);
3460 evaluate_switch_statement(stmt
);
3463 evaluate_case_statement(stmt
);
3466 return evaluate_statement(stmt
->label_statement
);
3468 evaluate_goto_statement(stmt
);
3473 evaluate_asm_statement(stmt
);
3476 evaluate_expression(stmt
->expression
);
3479 evaluate_expression(stmt
->range_expression
);
3480 evaluate_expression(stmt
->range_low
);
3481 evaluate_expression(stmt
->range_high
);