db: get return states from function pointers if possible
[smatch.git] / evaluate.c
blob906b12efcf29ad8016cb8e091f9e35ae47efc0a3
1 /*
2 * sparse/evaluate.c
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
23 * THE SOFTWARE.
25 * Evaluate constant expressions.
27 #include <stdlib.h>
28 #include <stdarg.h>
29 #include <stddef.h>
30 #include <stdio.h>
31 #include <string.h>
32 #include <ctype.h>
33 #include <unistd.h>
34 #include <fcntl.h>
35 #include <limits.h>
37 #include "lib.h"
38 #include "allocate.h"
39 #include "parse.h"
40 #include "token.h"
41 #include "symbol.h"
42 #include "target.h"
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;
56 if (!sym) {
57 expression_error(expr, "undefined identifier '%s'", show_ident(expr->symbol_name));
58 return NULL;
61 examine_symbol_type(sym);
63 base_type = get_base_type(sym);
64 if (!base_type) {
65 expression_error(expr, "identifier '%s' has no type", show_ident(expr->symbol_name));
66 return NULL;
69 addr = alloc_expression(expr->pos, EXPR_SYMBOL);
70 addr->symbol = sym;
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;
74 expr->op = '*';
75 expr->unop = addr;
77 /* The type of a symbol is the symbol itself! */
78 expr->ctype = sym;
79 return sym;
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;
93 sym->string = 1;
94 sym->ctype.modifiers = MOD_STATIC;
95 sym->ctype.base_type = array;
96 sym->initializer = initstr;
98 initstr->ctype = sym;
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;
107 addr->symbol = sym;
108 addr->ctype = &lazy_ptr_ctype;
110 expr->type = EXPR_PREOP;
111 expr->op = '*';
112 expr->unop = addr;
113 expr->ctype = sym;
114 return sym;
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
127 * an "int".
129 if (type->type == SYM_BITFIELD) {
130 type = type->ctype.base_type;
131 orig_type = type;
133 mod = type->ctype.modifiers;
134 if (width < bits_in_int)
135 return &int_ctype;
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)
140 return &uint_ctype;
141 return &int_ctype;
143 return orig_type;
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
152 * signed one.
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);
170 if (left == right)
171 goto left;
173 if (left->bit_size > right->bit_size)
174 goto left;
176 if (right->bit_size > left->bit_size)
177 goto right;
179 lmod = left->ctype.modifiers;
180 rmod = right->ctype.modifiers;
181 if ((lmod ^ rmod) & MOD_UNSIGNED) {
182 if (lmod & MOD_UNSIGNED)
183 goto left;
184 } else if ((lmod & ~rmod) & (MOD_LONG_ALL))
185 goto left;
186 right:
187 left = right;
188 left:
189 return left;
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;
202 mod = 0; as = 0;
203 while (node) {
204 mod |= node->ctype.modifiers;
205 as |= node->ctype.attribute->as;
206 if (node->type == SYM_NODE) {
207 node = node->ctype.base_type;
208 continue;
210 break;
212 *modp = mod & ~MOD_IGNORE;
213 *asp = as;
214 return node;
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? */
233 if (!difmod)
234 return 1;
237 * Not the same type, but differs only in "const".
238 * Don't warn about MOD_NOCAST.
240 if (difmod == MOD_CONST)
241 return 0;
243 if ((oldmod | newmod) & MOD_NOCAST) {
244 const char *tofrom = "to/from";
245 if (!(newmod & MOD_NOCAST))
246 tofrom = "from";
247 if (!(oldmod & MOD_NOCAST))
248 tofrom = "to";
249 warning(expr->pos, "implicit cast %s nocast type", tofrom);
251 return 0;
254 static void
255 warn_for_different_enum_types (struct position pos,
256 struct symbol *typea,
257 struct symbol *typeb)
259 if (!Wenum_mismatch)
260 return;
261 if (typea->type == SYM_NODE)
262 typea = typea->ctype.base_type;
263 if (typeb->type == SYM_NODE)
264 typeb = typeb->ctype.base_type;
266 if (typea == typeb)
267 return;
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
281 * early.
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))
290 return old;
293 * See if we can simplify the op. Move the cast down.
295 switch (old->type) {
296 case EXPR_PREOP:
297 if (old->ctype->bit_size < type->bit_size)
298 break;
299 if (old->op == '~') {
300 old->ctype = type;
301 old->unop = cast_to(old->unop, type);
302 return old;
304 break;
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))
312 return orig;
313 if (old->ctype->bit_offset == type->bit_offset) {
314 old->ctype = type;
315 old->cast_type = type;
316 return old;
319 break;
321 default:
322 /* nothing */;
325 expr = alloc_expression(old->pos, EXPR_IMPLIED_CAST);
326 expr->flags = old->flags;
327 expr->ctype = type;
328 expr->cast_type = type;
329 expr->cast_expression = old;
330 return expr;
333 enum {
334 TYPE_NUM = 1,
335 TYPE_BITFIELD = 2,
336 TYPE_RESTRICT = 4,
337 TYPE_FLOAT = 8,
338 TYPE_PTR = 16,
339 TYPE_COMPOUND = 32,
340 TYPE_FOULED = 64,
341 TYPE_FN = 128,
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);
360 if (!type)
361 type = &bad_ctype;
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;
367 *base = type;
368 if (type->type == SYM_BASETYPE) {
369 if (type->ctype.base_type == &int_type)
370 return TYPE_NUM;
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) {
390 case EXPR_BINOP:
391 case EXPR_COMPARE:
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));
394 break;
395 case EXPR_PREOP:
396 case EXPR_POSTOP:
397 info(expr->pos, " argument has type %s", show_typename(expr->unop->ctype));
398 break;
399 default:
400 break;
403 expr->flags = 0;
404 return expr->ctype = &bad_ctype;
407 static int restricted_value(struct expression *v, struct symbol *type)
409 if (v->type != EXPR_VALUE)
410 return 1;
411 if (v->value != 0)
412 return 1;
413 return 0;
416 static int restricted_binop(int op, struct symbol *type)
418 switch (op) {
419 case '&':
420 case '=':
421 case SPECIAL_AND_ASSIGN:
422 case SPECIAL_OR_ASSIGN:
423 case SPECIAL_XOR_ASSIGN:
424 return 1; /* unfoul */
425 case '|':
426 case '^':
427 case '?':
428 return 2; /* keep fouled */
429 case SPECIAL_EQUAL:
430 case SPECIAL_NOTEQUAL:
431 return 3; /* warn if fouled */
432 default:
433 return 0; /* warn */
437 static int restricted_unop(int op, struct symbol **type)
439 if (op == '~') {
440 if ((*type)->bit_size < bits_in_int)
441 *type = befoul(*type);
442 return 0;
443 } if (op == '+')
444 return 0;
445 return 1;
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) {
465 ctype = ltype;
466 } else if (lclass & TYPE_FOULED) {
467 if (unfoul(ltype) == rtype)
468 ctype = ltype;
469 } else if (rclass & TYPE_FOULED) {
470 if (unfoul(rtype) == ltype)
471 ctype = rtype;
473 } else {
474 if (!restricted_value(right, ltype))
475 ctype = ltype;
477 } else if (!restricted_value(left, rtype))
478 ctype = rtype;
480 if (ctype) {
481 switch (restricted_binop(op, ctype)) {
482 case 1:
483 if ((lclass ^ rclass) & TYPE_FOULED)
484 ctype = unfoul(ctype);
485 break;
486 case 3:
487 if (!(lclass & rclass & TYPE_FOULED))
488 break;
489 case 0:
490 ctype = NULL;
491 default:
492 break;
496 return ctype;
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)
523 goto Restr;
525 Normal:
526 if (!(lclass & TYPE_FLOAT)) {
527 if (!(rclass & TYPE_FLOAT))
528 return bigger_int_type(ltype, rtype);
529 else
530 return 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))
535 return rtype;
536 else
537 return ltype;
538 } else
539 return ltype;
541 Restr:
542 ctype = restricted_binop_type(op, left, right,
543 lclass, rclass, ltype, rtype);
544 if (ctype)
545 return ctype;
547 unrestrict(left, lclass, &ltype);
548 unrestrict(right, rclass, &rtype);
550 goto Normal;
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;
562 int multiply;
564 classify_type(degenerate(expr->left), &ctype);
565 base = examine_pointer_target(ctype);
567 if (!base) {
568 expression_error(expr, "missing type information");
569 return NULL;
571 if (is_function(base)) {
572 expression_error(expr, "arithmetics on pointers to functions");
573 return NULL;
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)
580 ctype = &ptr_ctype;
581 expr->ctype = ctype;
583 if (multiply == 1 && itype->bit_size >= bits_in_pointer)
584 return ctype;
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);
590 if (v & mask)
591 v |= -mask;
592 else
593 v &= mask - 1;
594 v *= multiply;
595 mask = 1ULL << (bits_in_pointer - 1);
596 v &= mask | (mask - 1);
597 val->value = v;
598 val->ctype = ssize_t_ctype;
599 expr->right = val;
600 return ctype;
603 if (itype->bit_size < bits_in_pointer)
604 index = cast_to(index, ssize_t_ctype);
606 if (multiply > 1) {
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;
613 mul->op = '*';
614 mul->ctype = ssize_t_ctype;
615 mul->left = index;
616 mul->right = val;
617 index = mul;
620 expr->right = index;
621 return 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;
638 for (;;) {
639 unsigned long diff;
640 int type;
641 struct symbol *base1 = t1->ctype.base_type;
642 struct symbol *base2 = t2->ctype.base_type;
645 * FIXME! Collect alignment and context too here!
647 if (move1) {
648 if (t1 && t1->type != SYM_PTR) {
649 mod1 |= t1->ctype.modifiers;
650 as1 |= t1->ctype.attribute->as;
652 move1 = 0;
655 if (move2) {
656 if (t2 && t2->type != SYM_PTR) {
657 mod2 |= t2->ctype.modifiers;
658 as2 |= t2->ctype.attribute->as;
660 move2 = 0;
663 if (t1 == t2)
664 break;
665 if (!t1 || !t2)
666 return "different types";
668 if (t1->type == SYM_NODE || t1->type == SYM_ENUM) {
669 t1 = base1;
670 move1 = 1;
671 if (!t1)
672 return "bad types";
673 continue;
676 if (t2->type == SYM_NODE || t2->type == SYM_ENUM) {
677 t2 = base2;
678 move2 = 1;
679 if (!t2)
680 return "bad types";
681 continue;
684 move1 = move2 = 1;
685 type = t1->type;
686 if (type != t2->type)
687 return "different base types";
689 switch (type) {
690 default:
691 sparse_error(t1->pos,
692 "internal error: bad type in derived(%d)",
693 type);
694 return "bad types";
695 case SYM_RESTRICT:
696 return "different base types";
697 case SYM_UNION:
698 case SYM_STRUCT:
699 /* allow definition of incomplete structs and unions */
700 if (t1->ident == t2->ident)
701 return NULL;
702 return "different base types";
703 case SYM_ARRAY:
704 /* XXX: we ought to compare sizes */
705 break;
706 case SYM_PTR:
707 if (as1 != as2)
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;
719 break;
720 case SYM_FN: {
721 struct symbol *arg1, *arg2;
722 int i;
724 if (as1 != as2)
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);
739 i = 1;
740 for (;;) {
741 const char *diffstr;
742 if (!arg1 && !arg2)
743 break;
744 if (!arg1 || !arg2)
745 return "different argument counts";
746 diffstr = type_difference(&arg1->ctype,
747 &arg2->ctype,
748 MOD_IGN, MOD_IGN);
749 if (diffstr) {
750 static char argdiff[80];
751 sprintf(argdiff, "incompatible argument %d (%s)", i, diffstr);
752 return argdiff;
754 NEXT_PTR_LIST(arg1);
755 NEXT_PTR_LIST(arg2);
756 i++;
758 FINISH_PTR_LIST(arg2);
759 FINISH_PTR_LIST(arg1);
760 break;
762 case SYM_BASETYPE:
763 if (as1 != as2)
764 return "different address spaces";
765 if (base1 != base2)
766 return "different base types";
767 diff = (mod1 ^ mod2) & ~MOD_IGNORE;
768 if (!diff)
769 return NULL;
770 if (diff & MOD_SIZE)
771 return "different type sizes";
772 else if (diff & ~MOD_SIGNEDNESS)
773 return "different modifiers";
774 else
775 return "different signedness";
777 t1 = base1;
778 t2 = base2;
780 if (as1 != as2)
781 return "different address spaces";
782 if ((mod1 ^ mod2) & ~MOD_IGNORE & ~MOD_SIGNEDNESS)
783 return "different modifiers";
784 return NULL;
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)
797 mod = 0;
798 return mod;
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), &ltype);
810 classify_type(degenerate(r), &rtype);
812 lbase = examine_pointer_target(ltype);
813 examine_pointer_target(rtype);
814 typediff = type_difference(&ltype->ctype, &rtype->ctype,
815 target_qualifiers(rtype),
816 target_qualifiers(ltype));
817 if (typediff)
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");
822 return NULL;
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;
833 val->value = value;
835 if (value & (value-1)) {
836 if (Wptr_subtraction_blows)
837 warning(expr->pos, "potentially expensive pointer subtraction");
840 sub->op = '-';
841 sub->ctype = ssize_t_ctype;
842 sub->left = l;
843 sub->right = r;
845 div->op = '/';
846 div->left = sub;
847 div->right = val;
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;
859 if (!expr)
860 return NULL;
862 if (!iterator && expr->type == EXPR_ASSIGNMENT && expr->op == '=')
863 warning(expr->pos, "assignment expression in conditional");
865 ctype = evaluate_expression(expr);
866 if (ctype) {
867 if (is_safe_type(ctype))
868 warning(expr->pos, "testing a 'safe expression'");
871 return ctype;
874 static struct symbol *evaluate_logical(struct expression *expr)
876 if (!evaluate_conditional(expr->left, 0))
877 return NULL;
878 if (!evaluate_conditional(expr->right, 0))
879 return NULL;
881 /* the result is int [6.5.13(3), 6.5.14(3)] */
882 expr->ctype = &int_ctype;
883 if (expr->flags) {
884 if (!(expr->left->flags & expr->right->flags & Int_const_expr))
885 expr->flags = 0;
887 return &int_ctype;
890 static struct symbol *evaluate_binop(struct expression *expr)
892 struct symbol *ltype, *rtype, *ctype;
893 int lclass = classify_type(expr->left->ctype, &ltype);
894 int rclass = classify_type(expr->right->ctype, &rtype);
895 int op = expr->op;
897 if (expr->flags) {
898 if (!(expr->left->flags & expr->right->flags & Int_const_expr))
899 expr->flags = 0;
902 /* number op number */
903 if (lclass & rclass & TYPE_NUM) {
904 if ((lclass | rclass) & TYPE_FLOAT) {
905 switch (op) {
906 case '+': case '-': case '*': case '/':
907 break;
908 default:
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, &ltype);
916 unrestrict(expr->right, rclass, &rtype);
917 ctype = ltype = integer_promotion(ltype);
918 rtype = integer_promotion(rtype);
919 } else {
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",
927 left_not ? "!" : "",
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);
938 expr->ctype = ctype;
939 return ctype;
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, &ltype);
952 expr->left = expr->right;
953 expr->right = index;
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;
970 return expr->ctype;
973 static int modify_for_unsigned(int op)
975 if (op == '<')
976 op = SPECIAL_UNSIGNED_LT;
977 else if (op == '>')
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;
983 return op;
986 static inline int is_null_pointer_constant(struct expression *e)
988 if (e->ctype == &null_ctype)
989 return 1;
990 if (!(e->flags & Int_const_expr))
991 return 0;
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), &ltype);
1000 int rclass = classify_type(degenerate(right), &rtype);
1001 struct symbol *ctype;
1002 const char *typediff;
1004 if (expr->flags) {
1005 if (!(expr->left->flags & expr->right->flags & Int_const_expr))
1006 expr->flags = 0;
1009 /* Type types? */
1010 if (is_type_type(ltype) && is_type_type(rtype))
1011 goto OK;
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);
1024 goto OK;
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);
1035 if (is_null1 == 2)
1036 bad_null(left);
1037 if (is_null2 == 2)
1038 bad_null(right);
1039 if (is_null1 && is_null2) {
1040 int positive = expr->op == SPECIAL_EQUAL;
1041 expr->type = EXPR_VALUE;
1042 expr->value = positive;
1043 goto OK;
1045 if (is_null1 && (rclass & TYPE_PTR)) {
1046 left = cast_to(left, rtype);
1047 goto OK;
1049 if (is_null2 && (lclass & TYPE_PTR)) {
1050 right = cast_to(right, ltype);
1051 goto OK;
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);
1067 goto OK;
1069 if (rbase == &void_ctype) {
1070 left = cast_to(left, rtype);
1071 goto OK;
1076 typediff = type_difference(&ltype->ctype, &rtype->ctype,
1077 target_qualifiers(rtype),
1078 target_qualifiers(ltype));
1079 if (!typediff)
1080 goto OK;
1082 expression_error(expr, "incompatible types in comparison expression (%s)", typediff);
1083 return NULL;
1086 /* the result is int [6.5.8(6), 6.5.9(3)]*/
1087 expr->ctype = &int_ctype;
1088 return &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;
1102 int lclass, rclass;
1103 const char * typediff;
1104 int qual;
1106 if (!evaluate_conditional(expr->conditional, 0))
1107 return NULL;
1108 if (!evaluate_expression(expr->cond_false))
1109 return NULL;
1111 ctype = degenerate(expr->conditional);
1112 rtype = degenerate(expr->cond_false);
1114 true = &expr->conditional;
1115 ltype = ctype;
1116 if (expr->cond_true) {
1117 if (!evaluate_expression(expr->cond_true))
1118 return NULL;
1119 ltype = degenerate(expr->cond_true);
1120 true = &expr->cond_true;
1123 if (expr->flags) {
1124 int flags = expr->conditional->flags & Int_const_expr;
1125 flags &= (*true)->flags & expr->cond_false->flags;
1126 if (!flags)
1127 expr->flags = 0;
1130 lclass = classify_type(ltype, &ltype);
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);
1137 goto out;
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);
1147 ctype = &ptr_ctype;
1148 goto out;
1150 if (is_null1 && (rclass & TYPE_PTR)) {
1151 if (is_null1 == 2)
1152 bad_null(*true);
1153 *true = cast_to(*true, rtype);
1154 ctype = rtype;
1155 goto out;
1157 if (is_null2 && (lclass & TYPE_PTR)) {
1158 if (is_null2 == 2)
1159 bad_null(expr->cond_false);
1160 expr->cond_false = cast_to(expr->cond_false, ltype);
1161 ctype = ltype;
1162 goto out;
1164 if (!(lclass & rclass & TYPE_PTR)) {
1165 typediff = "different types";
1166 goto Err;
1168 /* OK, it's pointer on pointer */
1169 if (ltype->ctype.attribute->as != rtype->ctype.attribute->as) {
1170 typediff = "different address spaces";
1171 goto Err;
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 */
1181 ctype = ltype;
1182 goto Qual;
1185 if (rbase == &void_ctype) {
1186 /* XXX: pointers to function should warn here */
1187 ctype = rtype;
1188 goto Qual;
1190 /* XXX: that should be pointer to composite */
1191 ctype = ltype;
1192 typediff = type_difference(&ltype->ctype, &rtype->ctype,
1193 qual, qual);
1194 if (!typediff)
1195 goto Qual;
1196 goto Err;
1199 /* void on void, struct on same struct, union on same union */
1200 if (ltype == rtype) {
1201 ctype = ltype;
1202 goto out;
1204 typediff = "different base types";
1206 Err:
1207 expression_error(expr, "incompatible types in conditional expression (%s)", typediff);
1208 return NULL;
1210 out:
1211 expr->ctype = ctype;
1212 return ctype;
1214 Qual:
1215 if (qual & ~ctype->ctype.modifiers) {
1216 struct symbol *sym = alloc_symbol(ctype->pos, SYM_PTR);
1217 *sym = *ctype;
1218 sym->ctype.modifiers |= qual;
1219 ctype = sym;
1221 *true = cast_to(*true, ctype);
1222 expr->cond_false = cast_to(expr->cond_false, ctype);
1223 goto out;
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);
1242 int op = expr->op;
1244 if (tclass & sclass & TYPE_NUM) {
1245 if (tclass & TYPE_FLOAT && !compatible_float_op(op)) {
1246 expression_error(expr, "invalid assignment");
1247 return 0;
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);
1254 return 0;
1256 /* allowed assignments unfoul */
1257 if (sclass & TYPE_FOULED && unfoul(s) == t)
1258 goto Cast;
1259 if (!restricted_value(expr->right, t))
1260 return 1;
1261 } else if (!(sclass & TYPE_RESTRICT))
1262 goto Cast;
1263 /* source and target would better be identical restricted */
1264 if (t == s)
1265 return 1;
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);
1270 return 0;
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);
1276 return 1;
1278 expression_error(expr, "invalid pointer assignment");
1279 return 0;
1282 expression_error(expr, "invalid assignment");
1283 return 0;
1285 Cast:
1286 expr->right = cast_to(expr->right, target);
1287 return 1;
1290 static int whitelist_pointers(struct symbol *t1, struct symbol *t2)
1292 if (t1 == t2)
1293 return 0; /* yes, 0 - we don't want a cast_to here */
1294 if (t1 == &void_ctype)
1295 return 1;
1296 if (t2 == &void_ctype)
1297 return 1;
1298 if (classify_type(t1, &t1) != TYPE_NUM)
1299 return 0;
1300 if (classify_type(t2, &t2) != TYPE_NUM)
1301 return 0;
1302 if (t1 == t2)
1303 return 1;
1304 if (t1->ctype.modifiers & t2->ctype.modifiers & MOD_CHAR)
1305 return 1;
1306 if ((t1->ctype.modifiers ^ t2->ctype.modifiers) & MOD_SIZE)
1307 return 0;
1308 return !Wtypesign;
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)
1323 goto Cast;
1324 if (!restricted_value(*rp, target))
1325 return 1;
1326 if (s == t)
1327 return 1;
1328 } else if (!(sclass & TYPE_RESTRICT))
1329 goto Cast;
1330 *typediff = "different base types";
1331 return 0;
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);
1339 if (is_null) {
1340 if (is_null == 2)
1341 bad_null(*rp);
1342 goto Cast;
1344 if (!(sclass & TYPE_PTR)) {
1345 *typediff = "different base types";
1346 return 0;
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";
1360 return 0;
1362 if (mod2 & ~mod1) {
1363 *typediff = "different modifiers";
1364 return 0;
1366 goto Cast;
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);
1370 if (*typediff)
1371 return 0;
1372 return 1;
1375 if ((tclass & TYPE_COMPOUND) && s == t)
1376 return 1;
1378 if (tclass & TYPE_NUM) {
1379 /* XXX: need to turn into comparison with NULL */
1380 if (t == &bool_ctype && (sclass & TYPE_PTR))
1381 goto Cast;
1382 *typediff = "different base types";
1383 return 0;
1385 *typediff = "invalid types";
1386 return 0;
1388 Cast:
1389 *rp = cast_to(*rp, target);
1390 return 1;
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);
1404 return 0;
1407 return 1;
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)
1416 return 0;
1418 FOR_EACH_PTR(t->symbol_list, member) {
1419 const char *typediff;
1420 if (check_assignment_types(member, rp, &typediff))
1421 return 1;
1422 } END_FOR_EACH_PTR(member);
1424 return 0;
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))
1431 return 1;
1433 return compatible_assignment_types(expr, target, rp, where);
1436 static void mark_assigned(struct expression *expr)
1438 struct symbol *sym;
1440 if (!expr)
1441 return;
1442 switch (expr->type) {
1443 case EXPR_SYMBOL:
1444 sym = expr->symbol;
1445 if (!sym)
1446 return;
1447 if (sym->type != SYM_NODE)
1448 return;
1449 sym->ctype.modifiers |= MOD_ASSIGNED;
1450 return;
1452 case EXPR_BINOP:
1453 mark_assigned(expr->left);
1454 mark_assigned(expr->right);
1455 return;
1456 case EXPR_CAST:
1457 case EXPR_FORCE_CAST:
1458 mark_assigned(expr->cast_expression);
1459 return;
1460 case EXPR_SLICE:
1461 mark_assigned(expr->base);
1462 return;
1463 default:
1464 /* Hmm? */
1465 return;
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");
1486 return NULL;
1489 ltype = left->ctype;
1491 if (expr->op != '=') {
1492 if (!evaluate_assign_op(expr))
1493 return NULL;
1494 } else {
1495 if (!compatible_assignment_types(where, ltype, &expr->right, "assignment"))
1496 return NULL;
1499 evaluate_assign_to(left, ltype);
1501 expr->ctype = ltype;
1502 return ltype;
1505 static void examine_fn_arguments(struct symbol *fn)
1507 struct symbol *s;
1509 FOR_EACH_PTR(fn->arguments, s) {
1510 struct symbol *arg = evaluate_symbol(s);
1511 /* Array/function arguments silently degenerate into pointers */
1512 if (arg) {
1513 struct symbol *ptr;
1514 switch(arg->type) {
1515 case SYM_ARRAY:
1516 case SYM_FN:
1517 ptr = alloc_symbol(s->pos, SYM_PTR);
1518 if (arg->type == SYM_ARRAY)
1519 ptr->ctype = arg->ctype;
1520 else
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;
1528 s->bit_size = 0;
1529 s->examined = 0;
1530 examine_symbol_type(s);
1531 break;
1532 default:
1533 /* nothing */
1534 break;
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);
1546 *newsym = *sym;
1547 attr_set_as(&newsym->ctype, as);
1548 newsym->ctype.modifiers = mod;
1549 sym = newsym;
1551 return sym;
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;
1566 access_symbol(sym);
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;
1583 return node;
1586 /* Arrays degenerate into pointers on pointer arithmetic */
1587 static struct symbol *degenerate(struct expression *expr)
1589 struct symbol *ctype, *base;
1591 if (!expr)
1592 return NULL;
1593 ctype = expr->ctype;
1594 if (!ctype)
1595 return NULL;
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) {
1607 case SYM_ARRAY:
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);
1617 e0->symbol = a;
1618 e0->ctype = &lazy_ptr_ctype;
1620 e1 = alloc_expression(expr->pos, EXPR_PREOP);
1621 e1->unop = e0;
1622 e1->op = '*';
1623 e1->ctype = expr->base->ctype; /* XXX */
1625 e2 = alloc_expression(expr->pos, EXPR_ASSIGNMENT);
1626 e2->left = e1;
1627 e2->right = expr->base;
1628 e2->op = '=';
1629 e2->ctype = expr->base->ctype;
1631 if (expr->r_bitpos) {
1632 e3 = alloc_expression(expr->pos, EXPR_BINOP);
1633 e3->op = '+';
1634 e3->left = e0;
1635 e3->right = alloc_const_expression(expr->pos,
1636 bits_to_bytes(expr->r_bitpos));
1637 e3->ctype = &lazy_ptr_ctype;
1638 } else {
1639 e3 = e0;
1642 e4 = alloc_expression(expr->pos, EXPR_COMMA);
1643 e4->left = e2;
1644 e4->right = e3;
1645 e4->ctype = &lazy_ptr_ctype;
1647 expr->unop = e4;
1648 expr->type = EXPR_PREOP;
1649 expr->op = '*';
1651 case SYM_FN:
1652 if (expr->op != '*' || expr->type != EXPR_PREOP) {
1653 expression_error(expr, "strange non-value function or array");
1654 return &bad_ctype;
1656 *expr = *expr->unop;
1657 ctype = create_pointer(expr, ctype, 1);
1658 expr->ctype = ctype;
1659 default:
1660 /* nothing */;
1662 return 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");
1672 return NULL;
1674 ctype = op->ctype;
1675 *expr = *op->unop;
1676 expr->flags = 0;
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;
1692 return expr->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 == '&') {
1703 *expr = *op->unop;
1704 expr->flags = 0;
1705 return expr->ctype;
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) {
1716 default:
1717 expression_error(expr, "cannot dereference this type");
1718 return NULL;
1719 case SYM_PTR:
1720 node->ctype.modifiers = target->ctype.modifiers & MOD_SPECIFIER;
1721 merge_type(node, ctype);
1722 break;
1724 case SYM_ARRAY:
1725 if (!lvalue_expression(op)) {
1726 expression_error(op, "non-lvalue array??");
1727 return NULL;
1730 /* Do the implied "addressof" on the array */
1731 *op = *op->unop;
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);
1739 break;
1742 node->bit_size = target->bit_size;
1743 node->array_size = target->array_size;
1745 expr->ctype = node;
1746 return node;
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);
1757 int multiply = 0;
1759 if (!class || class & TYPE_COMPOUND) {
1760 expression_error(expr, "need scalar for ++/--");
1761 return NULL;
1763 if (!lvalue_expression(expr->unop)) {
1764 expression_error(expr, "need lvalue expression for ++/--");
1765 return NULL;
1768 if ((class & TYPE_RESTRICT) && restricted_unop(expr->op, &ctype))
1769 unrestrict(expr, class, &ctype);
1771 if (class & TYPE_NUM) {
1772 multiply = 1;
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);
1779 if (multiply) {
1780 evaluate_assign_to(op, op->ctype);
1781 expr->op_value = multiply;
1782 expr->ctype = ctype;
1783 return ctype;
1786 expression_error(expr, "bad argument type for ++/--");
1787 return NULL;
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))
1795 expr->flags = 0;
1796 /* should be an arithmetic type */
1797 if (!(class & TYPE_NUM))
1798 return bad_expr_type(expr);
1799 if (class & TYPE_RESTRICT)
1800 goto Restr;
1801 Normal:
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 */
1807 } else {
1808 return bad_expr_type(expr);
1810 if (expr->op == '+')
1811 *expr = *expr->unop;
1812 expr->ctype = ctype;
1813 return ctype;
1814 Restr:
1815 if (restricted_unop(expr->op, &ctype))
1816 unrestrict(expr, class, &ctype);
1817 goto Normal;
1820 static struct symbol *evaluate_preop(struct expression *expr)
1822 struct symbol *ctype = expr->unop->ctype;
1824 switch (expr->op) {
1825 case '(':
1826 *expr = *expr->unop;
1827 return ctype;
1829 case '+':
1830 case '-':
1831 case '~':
1832 return evaluate_sign(expr);
1834 case '*':
1835 return evaluate_dereference(expr);
1837 case '&':
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);
1848 case '!':
1849 if (expr->flags && !(expr->unop->flags & Int_const_expr))
1850 expr->flags = 0;
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;
1857 expr->left = arg;
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)]*/
1866 ctype = &int_ctype;
1867 break;
1869 default:
1870 break;
1872 expr->ctype = ctype;
1873 return 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;
1881 if (!head)
1882 return NULL;
1883 do {
1884 int i;
1885 for (i = 0; i < list->nr; i++) {
1886 struct symbol *sym = (struct symbol *) list->list[i];
1887 if (sym->ident) {
1888 if (sym->ident != ident)
1889 continue;
1890 *offset = sym->offset;
1891 return sym;
1892 } else {
1893 struct symbol *ctype = sym->ctype.base_type;
1894 struct symbol *sub;
1895 if (!ctype)
1896 continue;
1897 if (ctype->type != SYM_UNION && ctype->type != SYM_STRUCT)
1898 continue;
1899 sub = find_identifier(ident, ctype->symbol_list, offset);
1900 if (!sub)
1901 continue;
1902 *offset += sym->offset;
1903 return sub;
1906 } while ((list = list->next) != head);
1907 return NULL;
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);
1924 add->op = '+';
1925 add->left = expr;
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;
1935 return add;
1938 /* structure/union dereference */
1939 static struct symbol *evaluate_member_dereference(struct expression *expr)
1941 int offset;
1942 struct symbol *ctype, *member;
1943 struct expression *deref = expr->deref, *add;
1944 struct ident *ident = expr->member;
1945 unsigned int mod;
1946 int address_space;
1948 if (!evaluate_expression(deref))
1949 return NULL;
1950 if (!ident) {
1951 expression_error(expr, "bad member name");
1952 return NULL;
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");
1966 return NULL;
1968 offset = 0;
1969 member = find_identifier(ident, ctype->symbol_list, &offset);
1970 if (!member) {
1971 const char *type = ctype->type == SYM_STRUCT ? "struct" : "union";
1972 const char *name = "<unnamed>";
1973 int namelen = 9;
1974 if (ctype->ident) {
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);
1981 else
1982 expression_error(expr, "using member '%s' in "
1983 "incomplete %s %.*s", show_ident(ident),
1984 type, namelen, name);
1985 return NULL;
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) {
1997 expr->base = deref;
1998 expr->r_bitpos = 0;
1999 } else {
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;
2008 return member;
2011 deref = deref->unop;
2012 expr->deref = deref;
2014 add = evaluate_offset(deref, offset);
2015 expr->type = EXPR_PREOP;
2016 expr->op = '*';
2017 expr->unop = add;
2019 expr->ctype = member;
2020 return member;
2023 static int is_promoted(struct expression *expr)
2025 while (1) {
2026 switch (expr->type) {
2027 case EXPR_BINOP:
2028 case EXPR_SELECT:
2029 case EXPR_CONDITIONAL:
2030 return 1;
2031 case EXPR_COMMA:
2032 expr = expr->right;
2033 continue;
2034 case EXPR_PREOP:
2035 switch (expr->op) {
2036 case '(':
2037 expr = expr->unop;
2038 continue;
2039 case '+':
2040 case '-':
2041 case '~':
2042 return 1;
2043 default:
2044 return 0;
2046 default:
2047 return 0;
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;
2058 if (!sym) {
2059 sym = evaluate_expression(expr->cast_expression);
2060 if (!sym)
2061 return NULL;
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))
2068 sym = &int_ctype;
2069 } else if (is_fouled_type(sym)) {
2070 sym = &int_ctype;
2073 examine_symbol_type(sym);
2074 if (is_bitfield_type(sym)) {
2075 expression_error(expr, "trying to examine bitfield type");
2076 return NULL;
2078 return sym;
2081 static struct symbol *evaluate_sizeof(struct expression *expr)
2083 struct symbol *type;
2084 int size;
2086 type = evaluate_type_information(expr);
2087 if (!type)
2088 return NULL;
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)) {
2098 if (Wsizeof_bool)
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);
2113 expr->taint = 0;
2114 expr->ctype = size_t_ctype;
2115 return size_t_ctype;
2118 static struct symbol *evaluate_ptrsizeof(struct expression *expr)
2120 struct symbol *type;
2121 int size;
2123 type = evaluate_type_information(expr);
2124 if (!type)
2125 return NULL;
2127 if (type->type == SYM_NODE)
2128 type = type->ctype.base_type;
2129 if (!type)
2130 return NULL;
2131 switch (type->type) {
2132 case SYM_ARRAY:
2133 break;
2134 case SYM_PTR:
2135 type = get_base_type(type);
2136 if (type)
2137 break;
2138 default:
2139 expression_error(expr, "expected pointer expression");
2140 return NULL;
2142 size = type->bit_size;
2143 if (size & (bits_in_char-1))
2144 size = 0;
2145 expr->type = EXPR_VALUE;
2146 expr->value = bits_to_bytes(size);
2147 expr->taint = 0;
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);
2157 if (!type)
2158 return NULL;
2160 expr->type = EXPR_VALUE;
2161 expr->value = type->ctype.alignment;
2162 expr->taint = 0;
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;
2172 int i = 1;
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);
2180 if (!ctype)
2181 return 0;
2183 target = argtype;
2184 if (!target) {
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);
2196 else
2197 degenerate(expr);
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);
2206 i++;
2207 NEXT_PTR_LIST(argtype);
2208 } END_FOR_EACH_PTR(expr);
2209 FINISH_PTR_LIST(argtype);
2210 return 1;
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;
2218 e->type = EXPR_POS;
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 struct symbol *sym = e->field;
2228 e->type = EXPR_POS;
2229 e->init_offset = sym->offset;
2230 e->init_nr = 1;
2231 e->init_expr = child;
2234 static void convert_designators(struct expression *e)
2236 while (e) {
2237 if (e->type == EXPR_INDEX)
2238 convert_index(e);
2239 else if (e->type == EXPR_IDENTIFIER)
2240 convert_ident(e);
2241 else
2242 break;
2243 e = e->init_expr;
2247 static void excess(struct expression *e, const char *s)
2249 warning(e->pos, "excessive elements in %s initializer", s);
2253 * implicit designator for the first element
2255 static struct expression *first_subobject(struct symbol *ctype, int class,
2256 struct expression **v)
2258 struct expression *e = *v, *new;
2260 if (ctype->type == SYM_NODE)
2261 ctype = ctype->ctype.base_type;
2263 if (class & TYPE_PTR) { /* array */
2264 if (!ctype->bit_size)
2265 return NULL;
2266 new = alloc_expression(e->pos, EXPR_INDEX);
2267 new->idx_expression = e;
2268 new->ctype = ctype->ctype.base_type;
2269 } else {
2270 struct symbol *field, *p;
2271 PREPARE_PTR_LIST(ctype->symbol_list, p);
2272 while (p && !p->ident && is_bitfield_type(p))
2273 NEXT_PTR_LIST(p);
2274 field = p;
2275 FINISH_PTR_LIST(p);
2276 if (!field)
2277 return NULL;
2278 new = alloc_expression(e->pos, EXPR_IDENTIFIER);
2279 new->ident_expression = e;
2280 new->field = new->ctype = field;
2282 *v = new;
2283 return new;
2287 * sanity-check explicit designators; return the innermost one or NULL
2288 * in case of error. Assign types.
2290 static struct expression *check_designators(struct expression *e,
2291 struct symbol *ctype)
2293 struct expression *last = NULL;
2294 const char *err;
2295 while (1) {
2296 if (ctype->type == SYM_NODE)
2297 ctype = ctype->ctype.base_type;
2298 if (e->type == EXPR_INDEX) {
2299 struct symbol *type;
2300 if (ctype->type != SYM_ARRAY) {
2301 err = "array index in non-array";
2302 break;
2304 type = ctype->ctype.base_type;
2305 if (ctype->bit_size >= 0 && type->bit_size >= 0) {
2306 unsigned offset = e->idx_to * type->bit_size;
2307 if (offset >= ctype->bit_size) {
2308 err = "index out of bounds in";
2309 break;
2312 e->ctype = ctype = type;
2313 ctype = type;
2314 last = e;
2315 if (!e->idx_expression) {
2316 err = "invalid";
2317 break;
2319 e = e->idx_expression;
2320 } else if (e->type == EXPR_IDENTIFIER) {
2321 int offset = 0;
2322 if (ctype->type != SYM_STRUCT && ctype->type != SYM_UNION) {
2323 err = "field name not in struct or union";
2324 break;
2326 ctype = find_identifier(e->expr_ident, ctype->symbol_list, &offset);
2327 if (!ctype) {
2328 err = "unknown field name in";
2329 break;
2331 e->field = e->ctype = ctype;
2332 last = e;
2333 if (!e->ident_expression) {
2334 err = "invalid";
2335 break;
2337 e = e->ident_expression;
2338 } else if (e->type == EXPR_POS) {
2339 err = "internal front-end error: EXPR_POS in";
2340 break;
2341 } else
2342 return last;
2344 expression_error(e, "%s initializer", err);
2345 return NULL;
2349 * choose the next subobject to initialize.
2351 * Get designators for next element, switch old ones to EXPR_POS.
2352 * Return the resulting expression or NULL if we'd run out of subobjects.
2353 * The innermost designator is returned in *v. Designators in old
2354 * are assumed to be already sanity-checked.
2356 static struct expression *next_designators(struct expression *old,
2357 struct symbol *ctype,
2358 struct expression *e, struct expression **v)
2360 struct expression *new = NULL;
2362 if (!old)
2363 return NULL;
2364 if (old->type == EXPR_INDEX) {
2365 struct expression *copy;
2366 unsigned n;
2368 copy = next_designators(old->idx_expression,
2369 old->ctype, e, v);
2370 if (!copy) {
2371 n = old->idx_to + 1;
2372 if (n * old->ctype->bit_size == ctype->bit_size) {
2373 convert_index(old);
2374 return NULL;
2376 copy = e;
2377 *v = new = alloc_expression(e->pos, EXPR_INDEX);
2378 } else {
2379 n = old->idx_to;
2380 new = alloc_expression(e->pos, EXPR_INDEX);
2383 new->idx_from = new->idx_to = n;
2384 new->idx_expression = copy;
2385 new->ctype = old->ctype;
2386 convert_index(old);
2387 } else if (old->type == EXPR_IDENTIFIER) {
2388 struct expression *copy;
2389 struct symbol *field;
2391 copy = next_designators(old->ident_expression,
2392 old->ctype, e, v);
2393 if (!copy) {
2394 field = old->field->next_subobject;
2395 if (!field) {
2396 convert_ident(old);
2397 return NULL;
2399 copy = e;
2400 *v = new = alloc_expression(e->pos, EXPR_IDENTIFIER);
2401 } else {
2402 field = old->field;
2403 new = alloc_expression(e->pos, EXPR_IDENTIFIER);
2406 new->field = field;
2407 new->expr_ident = field->ident;
2408 new->ident_expression = copy;
2409 new->ctype = field;
2410 convert_ident(old);
2412 return new;
2415 static int handle_simple_initializer(struct expression **ep, int nested,
2416 int class, struct symbol *ctype);
2419 * deal with traversing subobjects [6.7.8(17,18,20)]
2421 static void handle_list_initializer(struct expression *expr,
2422 int class, struct symbol *ctype)
2424 struct expression *e, *last = NULL, *top = NULL, *next;
2425 int jumped = 0;
2427 FOR_EACH_PTR(expr->expr_list, e) {
2428 struct expression **v;
2429 struct symbol *type;
2430 int lclass;
2432 if (e->type != EXPR_INDEX && e->type != EXPR_IDENTIFIER) {
2433 struct symbol *struct_sym;
2434 if (!top) {
2435 top = e;
2436 last = first_subobject(ctype, class, &top);
2437 } else {
2438 last = next_designators(last, ctype, e, &top);
2440 if (!last) {
2441 excess(e, class & TYPE_PTR ? "array" :
2442 "struct or union");
2443 DELETE_CURRENT_PTR(e);
2444 continue;
2446 struct_sym = ctype->type == SYM_NODE ? ctype->ctype.base_type : ctype;
2447 if (Wdesignated_init && struct_sym->designated_init)
2448 warning(e->pos, "%s%.*s%spositional init of field in %s %s, declared with attribute designated_init",
2449 ctype->ident ? "in initializer for " : "",
2450 ctype->ident ? ctype->ident->len : 0,
2451 ctype->ident ? ctype->ident->name : "",
2452 ctype->ident ? ": " : "",
2453 get_type_name(struct_sym->type),
2454 show_ident(struct_sym->ident));
2455 if (jumped) {
2456 warning(e->pos, "advancing past deep designator");
2457 jumped = 0;
2459 REPLACE_CURRENT_PTR(e, last);
2460 } else {
2461 next = check_designators(e, ctype);
2462 if (!next) {
2463 DELETE_CURRENT_PTR(e);
2464 continue;
2466 top = next;
2467 /* deeper than one designator? */
2468 jumped = top != e;
2469 convert_designators(last);
2470 last = e;
2473 found:
2474 lclass = classify_type(top->ctype, &type);
2475 if (top->type == EXPR_INDEX)
2476 v = &top->idx_expression;
2477 else
2478 v = &top->ident_expression;
2480 if (handle_simple_initializer(v, 1, lclass, top->ctype))
2481 continue;
2483 if (!(lclass & TYPE_COMPOUND)) {
2484 warning(e->pos, "bogus scalar initializer");
2485 DELETE_CURRENT_PTR(e);
2486 continue;
2489 next = first_subobject(type, lclass, v);
2490 if (next) {
2491 warning(e->pos, "missing braces around initializer");
2492 top = next;
2493 goto found;
2496 DELETE_CURRENT_PTR(e);
2497 excess(e, lclass & TYPE_PTR ? "array" : "struct or union");
2499 } END_FOR_EACH_PTR(e);
2501 convert_designators(last);
2502 expr->ctype = ctype;
2505 static int is_string_literal(struct expression **v)
2507 struct expression *e = *v;
2508 while (e && e->type == EXPR_PREOP && e->op == '(')
2509 e = e->unop;
2510 if (!e || e->type != EXPR_STRING)
2511 return 0;
2512 if (e != *v && Wparen_string)
2513 warning(e->pos,
2514 "array initialized from parenthesized string constant");
2515 *v = e;
2516 return 1;
2520 * We want a normal expression, possibly in one layer of braces. Warn
2521 * if the latter happens inside a list (it's legal, but likely to be
2522 * an effect of screwup). In case of anything not legal, we are definitely
2523 * having an effect of screwup, so just fail and let the caller warn.
2525 static struct expression *handle_scalar(struct expression *e, int nested)
2527 struct expression *v = NULL, *p;
2528 int count = 0;
2530 /* normal case */
2531 if (e->type != EXPR_INITIALIZER)
2532 return e;
2534 FOR_EACH_PTR(e->expr_list, p) {
2535 if (!v)
2536 v = p;
2537 count++;
2538 } END_FOR_EACH_PTR(p);
2539 if (count != 1)
2540 return NULL;
2541 switch(v->type) {
2542 case EXPR_INITIALIZER:
2543 case EXPR_INDEX:
2544 case EXPR_IDENTIFIER:
2545 return NULL;
2546 default:
2547 break;
2549 if (nested)
2550 warning(e->pos, "braces around scalar initializer");
2551 return v;
2555 * deal with the cases that don't care about subobjects:
2556 * scalar <- assignment expression, possibly in braces [6.7.8(11)]
2557 * character array <- string literal, possibly in braces [6.7.8(14)]
2558 * struct or union <- assignment expression of compatible type [6.7.8(13)]
2559 * compound type <- initializer list in braces [6.7.8(16)]
2560 * The last one punts to handle_list_initializer() which, in turn will call
2561 * us for individual elements of the list.
2563 * We do not handle 6.7.8(15) (wide char array <- wide string literal) for
2564 * the lack of support of wide char stuff in general.
2566 * One note: we need to take care not to evaluate a string literal until
2567 * we know that we *will* handle it right here. Otherwise we would screw
2568 * the cases like struct { struct {char s[10]; ...} ...} initialized with
2569 * { "string", ...} - we need to preserve that string literal recognizable
2570 * until we dig into the inner struct.
2572 static int handle_simple_initializer(struct expression **ep, int nested,
2573 int class, struct symbol *ctype)
2575 int is_string = is_string_type(ctype);
2576 struct expression *e = *ep, *p;
2577 struct symbol *type;
2579 if (!e)
2580 return 0;
2582 /* scalar */
2583 if (!(class & TYPE_COMPOUND)) {
2584 e = handle_scalar(e, nested);
2585 if (!e)
2586 return 0;
2587 *ep = e;
2588 if (!evaluate_expression(e))
2589 return 1;
2590 compatible_assignment_types(e, ctype, ep, "initializer");
2591 return 1;
2595 * sublist; either a string, or we dig in; the latter will deal with
2596 * pathologies, so we don't need anything fancy here.
2598 if (e->type == EXPR_INITIALIZER) {
2599 if (is_string) {
2600 struct expression *v = NULL;
2601 int count = 0;
2603 FOR_EACH_PTR(e->expr_list, p) {
2604 if (!v)
2605 v = p;
2606 count++;
2607 } END_FOR_EACH_PTR(p);
2608 if (count == 1 && is_string_literal(&v)) {
2609 *ep = e = v;
2610 goto String;
2613 handle_list_initializer(e, class, ctype);
2614 return 1;
2617 /* string */
2618 if (is_string_literal(&e)) {
2619 /* either we are doing array of char, or we'll have to dig in */
2620 if (is_string) {
2621 *ep = e;
2622 goto String;
2624 return 0;
2626 /* struct or union can be initialized by compatible */
2627 if (class != TYPE_COMPOUND)
2628 return 0;
2629 type = evaluate_expression(e);
2630 if (!type)
2631 return 0;
2632 if (ctype->type == SYM_NODE)
2633 ctype = ctype->ctype.base_type;
2634 if (type->type == SYM_NODE)
2635 type = type->ctype.base_type;
2636 if (ctype == type)
2637 return 1;
2638 return 0;
2640 String:
2641 p = alloc_expression(e->pos, EXPR_STRING);
2642 *p = *e;
2643 type = evaluate_expression(p);
2644 if (ctype->bit_size != -1) {
2645 if (ctype->bit_size + bits_in_char < type->bit_size)
2646 warning(e->pos,
2647 "too long initializer-string for array of char");
2648 else if (Winit_cstring && ctype->bit_size + bits_in_char == type->bit_size) {
2649 warning(e->pos,
2650 "too long initializer-string for array of char(no space for nul char)");
2653 *ep = p;
2654 return 1;
2657 static void evaluate_initializer(struct symbol *ctype, struct expression **ep)
2659 struct symbol *type;
2660 int class = classify_type(ctype, &type);
2661 if (!handle_simple_initializer(ep, 0, class, ctype))
2662 expression_error(*ep, "invalid initializer");
2665 static struct symbol *evaluate_cast(struct expression *expr)
2667 struct expression *target = expr->cast_expression;
2668 struct symbol *ctype;
2669 struct symbol *t1, *t2;
2670 int class1, class2;
2671 int as1 = 0, as2 = 0;
2673 if (!target)
2674 return NULL;
2677 * Special case: a cast can be followed by an
2678 * initializer, in which case we need to pass
2679 * the type value down to that initializer rather
2680 * than trying to evaluate it as an expression
2682 * A more complex case is when the initializer is
2683 * dereferenced as part of a post-fix expression.
2684 * We need to produce an expression that can be dereferenced.
2686 if (target->type == EXPR_INITIALIZER) {
2687 struct symbol *sym = expr->cast_type;
2688 struct expression *addr = alloc_expression(expr->pos, EXPR_SYMBOL);
2690 sym->initializer = target;
2691 evaluate_symbol(sym);
2693 addr->ctype = &lazy_ptr_ctype; /* Lazy eval */
2694 addr->symbol = sym;
2696 expr->type = EXPR_PREOP;
2697 expr->op = '*';
2698 expr->unop = addr;
2699 expr->ctype = sym;
2701 return sym;
2704 ctype = examine_symbol_type(expr->cast_type);
2705 expr->ctype = ctype;
2706 expr->cast_type = ctype;
2708 evaluate_expression(target);
2709 degenerate(target);
2711 class1 = classify_type(ctype, &t1);
2713 /* cast to non-integer type -> not an integer constant expression */
2714 if (!is_int(class1))
2715 expr->flags = 0;
2716 /* if argument turns out to be not an integer constant expression *and*
2717 it was not a floating literal to start with -> too bad */
2718 else if (expr->flags == Int_const_expr &&
2719 !(target->flags & Int_const_expr))
2720 expr->flags = 0;
2722 * You can always throw a value away by casting to
2723 * "void" - that's an implicit "force". Note that
2724 * the same is _not_ true of "void *".
2726 if (t1 == &void_ctype)
2727 goto out;
2729 if (class1 & (TYPE_COMPOUND | TYPE_FN))
2730 warning(expr->pos, "cast to non-scalar");
2732 t2 = target->ctype;
2733 if (!t2) {
2734 expression_error(expr, "cast from unknown type");
2735 goto out;
2737 class2 = classify_type(t2, &t2);
2739 if (class2 & TYPE_COMPOUND)
2740 warning(expr->pos, "cast from non-scalar");
2742 if (expr->type == EXPR_FORCE_CAST)
2743 goto out;
2745 /* allowed cast unfouls */
2746 if (class2 & TYPE_FOULED)
2747 t2 = unfoul(t2);
2749 if (t1 != t2) {
2750 if (class1 & TYPE_RESTRICT)
2751 warning(expr->pos, "cast to %s",
2752 show_typename(t1));
2753 if (class2 & TYPE_RESTRICT)
2754 warning(expr->pos, "cast from %s",
2755 show_typename(t2));
2758 if (t1 == &ulong_ctype)
2759 as1 = -1;
2760 else if (class1 == TYPE_PTR) {
2761 examine_pointer_target(t1);
2762 as1 = t1->ctype.attribute->as;
2765 if (t2 == &ulong_ctype)
2766 as2 = -1;
2767 else if (class2 == TYPE_PTR) {
2768 examine_pointer_target(t2);
2769 as2 = t2->ctype.attribute->as;
2772 if (!as1 && as2 > 0)
2773 warning(expr->pos, "cast removes address space of expression");
2774 if (as1 > 0 && as2 > 0 && as1 != as2)
2775 warning(expr->pos, "cast between address spaces (<asn:%d>-><asn:%d>)", as2, as1);
2776 if (as1 > 0 && !as2 &&
2777 !is_null_pointer_constant(target) && Wcast_to_as)
2778 warning(expr->pos,
2779 "cast adds address space to expression (<asn:%d>)", as1);
2781 if (!(t1->ctype.modifiers & MOD_PTRINHERIT) && class1 == TYPE_PTR &&
2782 !as1 && (target->flags & Int_const_expr)) {
2783 if (t1->ctype.base_type == &void_ctype) {
2784 if (is_zero_constant(target)) {
2785 /* NULL */
2786 expr->type = EXPR_VALUE;
2787 expr->ctype = &null_ctype;
2788 expr->value = 0;
2789 return ctype;
2793 out:
2794 return ctype;
2798 * Evaluate a call expression with a symbol. This
2799 * should expand inline functions, and evaluate
2800 * builtins.
2802 static int evaluate_symbol_call(struct expression *expr)
2804 struct expression *fn = expr->fn;
2805 struct symbol *ctype = fn->ctype;
2807 if (fn->type != EXPR_PREOP)
2808 return 0;
2810 if (ctype->op && ctype->op->evaluate)
2811 return ctype->op->evaluate(expr);
2813 if (ctype->ctype.modifiers & MOD_INLINE) {
2814 int ret;
2815 struct symbol *curr = current_fn;
2817 if (ctype->definition)
2818 ctype = ctype->definition;
2820 current_fn = ctype->ctype.base_type;
2822 ret = inline_function(expr, ctype);
2824 /* restore the old function */
2825 current_fn = curr;
2826 return ret;
2829 return 0;
2832 static struct symbol *evaluate_call(struct expression *expr)
2834 int args, fnargs;
2835 struct symbol *ctype, *sym;
2836 struct expression *fn = expr->fn;
2837 struct expression_list *arglist = expr->args;
2839 if (!evaluate_expression(fn))
2840 return NULL;
2841 sym = ctype = fn->ctype;
2842 if (ctype->type == SYM_NODE)
2843 ctype = ctype->ctype.base_type;
2844 if (ctype->type == SYM_PTR)
2845 ctype = get_base_type(ctype);
2847 if (ctype->type != SYM_FN) {
2848 struct expression *arg;
2849 expression_error(expr, "not a function %s",
2850 show_ident(sym->ident));
2851 /* do typechecking in arguments */
2852 FOR_EACH_PTR (arglist, arg) {
2853 evaluate_expression(arg);
2854 } END_FOR_EACH_PTR(arg);
2855 return NULL;
2858 examine_fn_arguments(ctype);
2859 if (sym->type == SYM_NODE && fn->type == EXPR_PREOP &&
2860 sym->op && sym->op->args) {
2861 if (!sym->op->args(expr))
2862 return NULL;
2863 } else {
2864 if (!evaluate_arguments(sym, ctype, arglist))
2865 return NULL;
2866 args = expression_list_size(expr->args);
2867 fnargs = symbol_list_size(ctype->arguments);
2868 if (args < fnargs)
2869 expression_error(expr,
2870 "not enough arguments for function %s",
2871 show_ident(sym->ident));
2872 if (args > fnargs && !ctype->variadic)
2873 expression_error(expr,
2874 "too many arguments for function %s",
2875 show_ident(sym->ident));
2877 if (sym->type == SYM_NODE) {
2878 if (evaluate_symbol_call(expr))
2879 return expr->ctype;
2881 expr->ctype = ctype->ctype.base_type;
2882 return expr->ctype;
2885 static struct symbol *evaluate_offsetof(struct expression *expr)
2887 struct expression *e = expr->down;
2888 struct symbol *ctype = expr->in;
2889 int class;
2891 if (expr->op == '.') {
2892 struct symbol *field;
2893 int offset = 0;
2894 if (!ctype) {
2895 expression_error(expr, "expected structure or union");
2896 return NULL;
2898 examine_symbol_type(ctype);
2899 class = classify_type(ctype, &ctype);
2900 if (class != TYPE_COMPOUND) {
2901 expression_error(expr, "expected structure or union");
2902 return NULL;
2905 field = find_identifier(expr->ident, ctype->symbol_list, &offset);
2906 if (!field) {
2907 expression_error(expr, "unknown member");
2908 return NULL;
2910 ctype = field;
2911 expr->type = EXPR_VALUE;
2912 expr->flags = Int_const_expr;
2913 expr->value = offset;
2914 expr->taint = 0;
2915 expr->ctype = size_t_ctype;
2916 } else {
2917 if (!ctype) {
2918 expression_error(expr, "expected structure or union");
2919 return NULL;
2921 examine_symbol_type(ctype);
2922 class = classify_type(ctype, &ctype);
2923 if (class != (TYPE_COMPOUND | TYPE_PTR)) {
2924 expression_error(expr, "expected array");
2925 return NULL;
2927 ctype = ctype->ctype.base_type;
2928 if (!expr->index) {
2929 expr->type = EXPR_VALUE;
2930 expr->flags = Int_const_expr;
2931 expr->value = 0;
2932 expr->taint = 0;
2933 expr->ctype = size_t_ctype;
2934 } else {
2935 struct expression *idx = expr->index, *m;
2936 struct symbol *i_type = evaluate_expression(idx);
2937 int i_class = classify_type(i_type, &i_type);
2938 if (!is_int(i_class)) {
2939 expression_error(expr, "non-integer index");
2940 return NULL;
2942 unrestrict(idx, i_class, &i_type);
2943 idx = cast_to(idx, size_t_ctype);
2944 m = alloc_const_expression(expr->pos,
2945 bits_to_bytes(ctype->bit_size));
2946 m->ctype = size_t_ctype;
2947 m->flags = Int_const_expr;
2948 expr->type = EXPR_BINOP;
2949 expr->left = idx;
2950 expr->right = m;
2951 expr->op = '*';
2952 expr->ctype = size_t_ctype;
2953 expr->flags = m->flags & idx->flags & Int_const_expr;
2956 if (e) {
2957 struct expression *copy = __alloc_expression(0);
2958 *copy = *expr;
2959 if (e->type == EXPR_OFFSETOF)
2960 e->in = ctype;
2961 if (!evaluate_expression(e))
2962 return NULL;
2963 expr->type = EXPR_BINOP;
2964 expr->flags = e->flags & copy->flags & Int_const_expr;
2965 expr->op = '+';
2966 expr->ctype = size_t_ctype;
2967 expr->left = copy;
2968 expr->right = e;
2970 return size_t_ctype;
2973 struct symbol *evaluate_expression(struct expression *expr)
2975 if (!expr)
2976 return NULL;
2977 if (expr->ctype)
2978 return expr->ctype;
2980 switch (expr->type) {
2981 case EXPR_VALUE:
2982 case EXPR_FVALUE:
2983 expression_error(expr, "value expression without a type");
2984 return NULL;
2985 case EXPR_STRING:
2986 return evaluate_string(expr);
2987 case EXPR_SYMBOL:
2988 return evaluate_symbol_expression(expr);
2989 case EXPR_BINOP:
2990 if (!evaluate_expression(expr->left))
2991 return NULL;
2992 if (!evaluate_expression(expr->right))
2993 return NULL;
2994 return evaluate_binop(expr);
2995 case EXPR_LOGICAL:
2996 return evaluate_logical(expr);
2997 case EXPR_COMMA:
2998 evaluate_expression(expr->left);
2999 if (!evaluate_expression(expr->right))
3000 return NULL;
3001 return evaluate_comma(expr);
3002 case EXPR_COMPARE:
3003 if (!evaluate_expression(expr->left))
3004 return NULL;
3005 if (!evaluate_expression(expr->right))
3006 return NULL;
3007 return evaluate_compare(expr);
3008 case EXPR_ASSIGNMENT:
3009 if (!evaluate_expression(expr->left))
3010 return NULL;
3011 if (!evaluate_expression(expr->right))
3012 return NULL;
3013 return evaluate_assignment(expr);
3014 case EXPR_PREOP:
3015 if (!evaluate_expression(expr->unop))
3016 return NULL;
3017 return evaluate_preop(expr);
3018 case EXPR_POSTOP:
3019 if (!evaluate_expression(expr->unop))
3020 return NULL;
3021 return evaluate_postop(expr);
3022 case EXPR_CAST:
3023 case EXPR_FORCE_CAST:
3024 case EXPR_IMPLIED_CAST:
3025 return evaluate_cast(expr);
3026 case EXPR_SIZEOF:
3027 return evaluate_sizeof(expr);
3028 case EXPR_PTRSIZEOF:
3029 return evaluate_ptrsizeof(expr);
3030 case EXPR_ALIGNOF:
3031 return evaluate_alignof(expr);
3032 case EXPR_DEREF:
3033 return evaluate_member_dereference(expr);
3034 case EXPR_CALL:
3035 return evaluate_call(expr);
3036 case EXPR_SELECT:
3037 case EXPR_CONDITIONAL:
3038 return evaluate_conditional_expression(expr);
3039 case EXPR_STATEMENT:
3040 expr->ctype = evaluate_statement(expr->statement);
3041 return expr->ctype;
3043 case EXPR_LABEL:
3044 expr->ctype = &ptr_ctype;
3045 return &ptr_ctype;
3047 case EXPR_TYPE:
3048 /* Evaluate the type of the symbol .. */
3049 evaluate_symbol(expr->symbol);
3050 /* .. but the type of the _expression_ is a "type" */
3051 expr->ctype = &type_ctype;
3052 return &type_ctype;
3054 case EXPR_OFFSETOF:
3055 return evaluate_offsetof(expr);
3057 /* These can not exist as stand-alone expressions */
3058 case EXPR_INITIALIZER:
3059 case EXPR_IDENTIFIER:
3060 case EXPR_INDEX:
3061 case EXPR_POS:
3062 expression_error(expr, "internal front-end error: initializer in expression");
3063 return NULL;
3064 case EXPR_SLICE:
3065 expression_error(expr, "internal front-end error: SLICE re-evaluated");
3066 return NULL;
3068 return NULL;
3071 static void check_duplicates(struct symbol *sym)
3073 int declared = 0;
3074 struct symbol *next = sym;
3075 int initialized = sym->initializer != NULL;
3077 while ((next = next->same_symbol) != NULL) {
3078 const char *typediff;
3079 evaluate_symbol(next);
3080 if (initialized && next->initializer) {
3081 sparse_error(sym->pos, "symbol '%s' has multiple initializers (originally initialized at %s:%d)",
3082 show_ident(sym->ident),
3083 stream_name(next->pos.stream), next->pos.line);
3084 /* Only warn once */
3085 initialized = 0;
3087 declared++;
3088 typediff = type_difference(&sym->ctype, &next->ctype, 0, 0);
3089 if (typediff) {
3090 sparse_error(sym->pos, "symbol '%s' redeclared with different type (originally declared at %s:%d) - %s",
3091 show_ident(sym->ident),
3092 stream_name(next->pos.stream), next->pos.line, typediff);
3093 return;
3096 if (!declared) {
3097 unsigned long mod = sym->ctype.modifiers;
3098 if (mod & (MOD_STATIC | MOD_REGISTER))
3099 return;
3100 if (!(mod & MOD_TOPLEVEL))
3101 return;
3102 if (!Wdecl)
3103 return;
3104 if (sym->ident == &main_ident)
3105 return;
3106 warning(sym->pos, "symbol '%s' was not declared. Should it be static?", show_ident(sym->ident));
3110 static struct symbol *evaluate_symbol(struct symbol *sym)
3112 struct symbol *base_type;
3114 if (!sym)
3115 return sym;
3116 if (sym->evaluated)
3117 return sym;
3118 sym->evaluated = 1;
3120 sym = examine_symbol_type(sym);
3121 base_type = get_base_type(sym);
3122 if (!base_type)
3123 return NULL;
3125 /* Evaluate the initializers */
3126 if (sym->initializer)
3127 evaluate_initializer(sym, &sym->initializer);
3129 /* And finally, evaluate the body of the symbol too */
3130 if (base_type->type == SYM_FN) {
3131 struct symbol *curr = current_fn;
3133 if (sym->definition && sym->definition != sym)
3134 return evaluate_symbol(sym->definition);
3136 current_fn = base_type;
3138 examine_fn_arguments(base_type);
3139 if (!base_type->stmt && base_type->inline_stmt)
3140 uninline(sym);
3141 if (base_type->stmt)
3142 evaluate_statement(base_type->stmt);
3144 current_fn = curr;
3147 return base_type;
3150 void evaluate_symbol_list(struct symbol_list *list)
3152 struct symbol *sym;
3154 FOR_EACH_PTR(list, sym) {
3155 evaluate_symbol(sym);
3156 check_duplicates(sym);
3157 } END_FOR_EACH_PTR(sym);
3160 static struct symbol *evaluate_return_expression(struct statement *stmt)
3162 struct expression *expr = stmt->expression;
3163 struct symbol *fntype;
3165 evaluate_expression(expr);
3166 fntype = current_fn->ctype.base_type;
3167 if (!fntype || fntype == &void_ctype) {
3168 if (expr && expr->ctype != &void_ctype)
3169 expression_error(expr, "return expression in %s function", fntype?"void":"typeless");
3170 if (expr && Wreturn_void)
3171 warning(stmt->pos, "returning void-valued expression");
3172 return NULL;
3175 if (!expr) {
3176 sparse_error(stmt->pos, "return with no return value");
3177 return NULL;
3179 if (!expr->ctype)
3180 return NULL;
3181 compatible_assignment_types(expr, fntype, &stmt->expression, "return expression");
3182 return NULL;
3185 static void evaluate_if_statement(struct statement *stmt)
3187 if (!stmt->if_conditional)
3188 return;
3190 evaluate_conditional(stmt->if_conditional, 0);
3191 evaluate_statement(stmt->if_true);
3192 evaluate_statement(stmt->if_false);
3195 static void evaluate_iterator(struct statement *stmt)
3197 evaluate_symbol_list(stmt->iterator_syms);
3198 evaluate_conditional(stmt->iterator_pre_condition, 1);
3199 evaluate_conditional(stmt->iterator_post_condition,1);
3200 evaluate_statement(stmt->iterator_pre_statement);
3201 evaluate_statement(stmt->iterator_statement);
3202 evaluate_statement(stmt->iterator_post_statement);
3205 static void verify_output_constraint(struct expression *expr, const char *constraint)
3207 switch (*constraint) {
3208 case '=': /* Assignment */
3209 case '+': /* Update */
3210 break;
3211 default:
3212 expression_error(expr, "output constraint is not an assignment constraint (\"%s\")", constraint);
3216 static void verify_input_constraint(struct expression *expr, const char *constraint)
3218 switch (*constraint) {
3219 case '=': /* Assignment */
3220 case '+': /* Update */
3221 expression_error(expr, "input constraint with assignment (\"%s\")", constraint);
3225 static void evaluate_asm_statement(struct statement *stmt)
3227 struct expression *expr;
3228 struct symbol *sym;
3229 int state;
3231 expr = stmt->asm_string;
3232 if (!expr || expr->type != EXPR_STRING) {
3233 sparse_error(stmt->pos, "need constant string for inline asm");
3234 return;
3237 state = 0;
3238 FOR_EACH_PTR(stmt->asm_outputs, expr) {
3239 switch (state) {
3240 case 0: /* Identifier */
3241 state = 1;
3242 continue;
3244 case 1: /* Constraint */
3245 state = 2;
3246 if (!expr || expr->type != EXPR_STRING) {
3247 sparse_error(expr ? expr->pos : stmt->pos, "asm output constraint is not a string");
3248 *THIS_ADDRESS(expr) = NULL;
3249 continue;
3251 verify_output_constraint(expr, expr->string->data);
3252 continue;
3254 case 2: /* Expression */
3255 state = 0;
3256 if (!evaluate_expression(expr))
3257 return;
3258 if (!lvalue_expression(expr))
3259 warning(expr->pos, "asm output is not an lvalue");
3260 evaluate_assign_to(expr, expr->ctype);
3261 continue;
3263 } END_FOR_EACH_PTR(expr);
3265 state = 0;
3266 FOR_EACH_PTR(stmt->asm_inputs, expr) {
3267 switch (state) {
3268 case 0: /* Identifier */
3269 state = 1;
3270 continue;
3272 case 1: /* Constraint */
3273 state = 2;
3274 if (!expr || expr->type != EXPR_STRING) {
3275 sparse_error(expr ? expr->pos : stmt->pos, "asm input constraint is not a string");
3276 *THIS_ADDRESS(expr) = NULL;
3277 continue;
3279 verify_input_constraint(expr, expr->string->data);
3280 continue;
3282 case 2: /* Expression */
3283 state = 0;
3284 if (!evaluate_expression(expr))
3285 return;
3286 continue;
3288 } END_FOR_EACH_PTR(expr);
3290 FOR_EACH_PTR(stmt->asm_clobbers, expr) {
3291 if (!expr) {
3292 sparse_error(stmt->pos, "bad asm clobbers");
3293 return;
3295 if (expr->type == EXPR_STRING)
3296 continue;
3297 expression_error(expr, "asm clobber is not a string");
3298 } END_FOR_EACH_PTR(expr);
3300 FOR_EACH_PTR(stmt->asm_labels, sym) {
3301 if (!sym || sym->type != SYM_LABEL) {
3302 sparse_error(stmt->pos, "bad asm label");
3303 return;
3305 } END_FOR_EACH_PTR(sym);
3308 static void evaluate_case_statement(struct statement *stmt)
3310 evaluate_expression(stmt->case_expression);
3311 evaluate_expression(stmt->case_to);
3312 evaluate_statement(stmt->case_statement);
3315 static void check_case_type(struct expression *switch_expr,
3316 struct expression *case_expr,
3317 struct expression **enumcase)
3319 struct symbol *switch_type, *case_type;
3320 int sclass, cclass;
3322 if (!case_expr)
3323 return;
3325 switch_type = switch_expr->ctype;
3326 case_type = evaluate_expression(case_expr);
3328 if (!switch_type || !case_type)
3329 goto Bad;
3330 if (enumcase) {
3331 if (*enumcase)
3332 warn_for_different_enum_types(case_expr->pos, case_type, (*enumcase)->ctype);
3333 else if (is_enum_type(case_type))
3334 *enumcase = case_expr;
3337 sclass = classify_type(switch_type, &switch_type);
3338 cclass = classify_type(case_type, &case_type);
3340 /* both should be arithmetic */
3341 if (!(sclass & cclass & TYPE_NUM))
3342 goto Bad;
3344 /* neither should be floating */
3345 if ((sclass | cclass) & TYPE_FLOAT)
3346 goto Bad;
3348 /* if neither is restricted, we are OK */
3349 if (!((sclass | cclass) & TYPE_RESTRICT))
3350 return;
3352 if (!restricted_binop_type(SPECIAL_EQUAL, case_expr, switch_expr,
3353 cclass, sclass, case_type, switch_type)) {
3354 unrestrict(case_expr, cclass, &case_type);
3355 unrestrict(switch_expr, sclass, &switch_type);
3357 return;
3359 Bad:
3360 expression_error(case_expr, "incompatible types for 'case' statement");
3363 static void evaluate_switch_statement(struct statement *stmt)
3365 struct symbol *sym;
3366 struct expression *enumcase = NULL;
3367 struct expression **enumcase_holder = &enumcase;
3368 struct expression *sel = stmt->switch_expression;
3370 evaluate_expression(sel);
3371 evaluate_statement(stmt->switch_statement);
3372 if (!sel)
3373 return;
3374 if (sel->ctype && is_enum_type(sel->ctype))
3375 enumcase_holder = NULL; /* Only check cases against switch */
3377 FOR_EACH_PTR(stmt->switch_case->symbol_list, sym) {
3378 struct statement *case_stmt = sym->stmt;
3379 check_case_type(sel, case_stmt->case_expression, enumcase_holder);
3380 check_case_type(sel, case_stmt->case_to, enumcase_holder);
3381 } END_FOR_EACH_PTR(sym);
3384 static void evaluate_goto_statement(struct statement *stmt)
3386 struct symbol *label = stmt->goto_label;
3388 if (label && !label->stmt)
3389 sparse_error(stmt->pos, "label '%s' was not declared", show_ident(label->ident));
3391 evaluate_expression(stmt->goto_expression);
3394 struct symbol *evaluate_statement(struct statement *stmt)
3396 if (!stmt)
3397 return NULL;
3399 switch (stmt->type) {
3400 case STMT_DECLARATION: {
3401 struct symbol *s;
3402 FOR_EACH_PTR(stmt->declaration, s) {
3403 evaluate_symbol(s);
3404 } END_FOR_EACH_PTR(s);
3405 return NULL;
3408 case STMT_RETURN:
3409 return evaluate_return_expression(stmt);
3411 case STMT_EXPRESSION:
3412 if (!evaluate_expression(stmt->expression))
3413 return NULL;
3414 if (stmt->expression->ctype == &null_ctype)
3415 stmt->expression = cast_to(stmt->expression, &ptr_ctype);
3416 return degenerate(stmt->expression);
3418 case STMT_COMPOUND: {
3419 struct statement *s;
3420 struct symbol *type = NULL;
3422 /* Evaluate the return symbol in the compound statement */
3423 evaluate_symbol(stmt->ret);
3426 * Then, evaluate each statement, making the type of the
3427 * compound statement be the type of the last statement
3429 type = evaluate_statement(stmt->args);
3430 FOR_EACH_PTR(stmt->stmts, s) {
3431 type = evaluate_statement(s);
3432 } END_FOR_EACH_PTR(s);
3433 if (!type)
3434 type = &void_ctype;
3435 return type;
3437 case STMT_IF:
3438 evaluate_if_statement(stmt);
3439 return NULL;
3440 case STMT_ITERATOR:
3441 evaluate_iterator(stmt);
3442 return NULL;
3443 case STMT_SWITCH:
3444 evaluate_switch_statement(stmt);
3445 return NULL;
3446 case STMT_CASE:
3447 evaluate_case_statement(stmt);
3448 return NULL;
3449 case STMT_LABEL:
3450 return evaluate_statement(stmt->label_statement);
3451 case STMT_GOTO:
3452 evaluate_goto_statement(stmt);
3453 return NULL;
3454 case STMT_NONE:
3455 break;
3456 case STMT_ASM:
3457 evaluate_asm_statement(stmt);
3458 return NULL;
3459 case STMT_CONTEXT:
3460 evaluate_expression(stmt->expression);
3461 return NULL;
3462 case STMT_RANGE:
3463 evaluate_expression(stmt->range_expression);
3464 evaluate_expression(stmt->range_low);
3465 evaluate_expression(stmt->range_high);
3466 return NULL;
3468 return NULL;