Fix the annotated inline call position
[smatch.git] / expand.c
blobaafbfe0467c2e5d87c6b75404be7f9d47afc607d
1 /*
2 * sparse/expand.c
4 * Copyright (C) 2003 Transmeta Corp.
5 * 2003-2004 Linus Torvalds
7 * Licensed under the Open Software License version 1.1
9 * expand constant expressions.
11 #include <stdlib.h>
12 #include <stdarg.h>
13 #include <stddef.h>
14 #include <stdio.h>
15 #include <string.h>
16 #include <ctype.h>
17 #include <unistd.h>
18 #include <fcntl.h>
19 #include <limits.h>
21 #include "lib.h"
22 #include "allocate.h"
23 #include "parse.h"
24 #include "token.h"
25 #include "symbol.h"
26 #include "target.h"
27 #include "expression.h"
29 /* Random cost numbers */
30 #define SIDE_EFFECTS 10000 /* The expression has side effects */
31 #define UNSAFE 100 /* The expression may be "infinitely costly" due to exceptions */
32 #define SELECT_COST 20 /* Cut-off for turning a conditional into a select */
33 #define BRANCH_COST 10 /* Cost of a conditional branch */
35 static int expand_expression(struct expression *);
36 static int expand_statement(struct statement *);
38 static int expand_symbol_expression(struct expression *expr)
40 struct symbol *sym = expr->symbol;
42 if (sym == &zero_int) {
43 if (Wundefined_preprocessor)
44 warning(expr->pos, "undefined preprocessor identifier '%s'", show_ident(expr->symbol_name));
45 expr->type = EXPR_VALUE;
46 expr->value = 0;
47 return 0;
49 /* The cost of a symbol expression is lower for on-stack symbols */
50 return (sym->ctype.modifiers & (MOD_STATIC | MOD_EXTERN)) ? 2 : 1;
53 static long long get_longlong(struct expression *expr)
55 int no_expand = expr->ctype->ctype.modifiers & MOD_UNSIGNED;
56 long long mask = 1ULL << (expr->ctype->bit_size - 1);
57 long long value = expr->value;
58 long long ormask, andmask;
60 if (!(value & mask))
61 no_expand = 1;
62 andmask = mask | (mask-1);
63 ormask = ~andmask;
64 if (no_expand)
65 ormask = 0;
66 return (value & andmask) | ormask;
69 void cast_value(struct expression *expr, struct symbol *newtype,
70 struct expression *old, struct symbol *oldtype)
72 int old_size = oldtype->bit_size;
73 int new_size = newtype->bit_size;
74 long long value, mask, signmask;
75 long long oldmask, oldsignmask, dropped;
77 if (newtype->ctype.base_type == &fp_type ||
78 oldtype->ctype.base_type == &fp_type)
79 goto Float;
81 // For pointers and integers, we can just move the value around
82 expr->type = EXPR_VALUE;
83 if (old_size == new_size) {
84 expr->value = old->value;
85 return;
88 // expand it to the full "long long" value
89 value = get_longlong(old);
91 Int:
92 // Truncate it to the new size
93 signmask = 1ULL << (new_size-1);
94 mask = signmask | (signmask-1);
95 expr->value = value & mask;
97 // Stop here unless checking for truncation
98 if (!Wcast_truncate)
99 return;
101 // Check if we dropped any bits..
102 oldsignmask = 1ULL << (old_size-1);
103 oldmask = oldsignmask | (oldsignmask-1);
104 dropped = oldmask & ~mask;
106 // OK if the bits were (and still are) purely sign bits
107 if (value & dropped) {
108 if (!(value & oldsignmask) || !(value & signmask) || (value & dropped) != dropped)
109 warning(old->pos, "cast truncates bits from constant value (%llx becomes %llx)",
110 value & oldmask,
111 value & mask);
113 return;
115 Float:
116 if (newtype->ctype.base_type != &fp_type) {
117 value = (long long)old->fvalue;
118 expr->type = EXPR_VALUE;
119 goto Int;
122 if (oldtype->ctype.base_type != &fp_type)
123 expr->fvalue = (long double)get_longlong(old);
124 else
125 expr->fvalue = old->value;
127 if (!(newtype->ctype.modifiers & MOD_LONGLONG)) {
128 if ((newtype->ctype.modifiers & MOD_LONG))
129 expr->fvalue = (double)expr->fvalue;
130 else
131 expr->fvalue = (float)expr->fvalue;
133 expr->type = EXPR_FVALUE;
136 static int check_shift_count(struct expression *expr, struct symbol *ctype, unsigned int count)
138 if (count >= ctype->bit_size) {
139 warning(expr->pos, "shift too big (%u) for type %s", count, show_typename(ctype));
140 count &= ctype->bit_size-1;
142 return count;
146 * CAREFUL! We need to get the size and sign of the
147 * result right!
149 #define CONVERT(op,s) (((op)<<1)+(s))
150 #define SIGNED(op) CONVERT(op, 1)
151 #define UNSIGNED(op) CONVERT(op, 0)
152 static int simplify_int_binop(struct expression *expr, struct symbol *ctype)
154 struct expression *left = expr->left, *right = expr->right;
155 unsigned long long v, l, r, mask;
156 signed long long sl, sr;
157 int is_signed;
159 if (right->type != EXPR_VALUE)
160 return 0;
161 r = right->value;
162 if (expr->op == SPECIAL_LEFTSHIFT || expr->op == SPECIAL_RIGHTSHIFT) {
163 r = check_shift_count(expr, ctype, r);
164 right->value = r;
166 if (left->type != EXPR_VALUE)
167 return 0;
168 l = left->value; r = right->value;
169 is_signed = !(ctype->ctype.modifiers & MOD_UNSIGNED);
170 mask = 1ULL << (ctype->bit_size-1);
171 sl = l; sr = r;
172 if (is_signed && (sl & mask))
173 sl |= ~(mask-1);
174 if (is_signed && (sr & mask))
175 sr |= ~(mask-1);
177 switch (CONVERT(expr->op,is_signed)) {
178 case SIGNED('+'):
179 case UNSIGNED('+'):
180 v = l + r;
181 break;
183 case SIGNED('-'):
184 case UNSIGNED('-'):
185 v = l - r;
186 break;
188 case SIGNED('&'):
189 case UNSIGNED('&'):
190 v = l & r;
191 break;
193 case SIGNED('|'):
194 case UNSIGNED('|'):
195 v = l | r;
196 break;
198 case SIGNED('^'):
199 case UNSIGNED('^'):
200 v = l ^ r;
201 break;
203 case SIGNED('*'):
204 v = sl * sr;
205 break;
207 case UNSIGNED('*'):
208 v = l * r;
209 break;
211 case SIGNED('/'):
212 if (!r)
213 goto Div;
214 if (l == mask && sr == -1)
215 goto Overflow;
216 v = sl / sr;
217 break;
219 case UNSIGNED('/'):
220 if (!r) goto Div;
221 v = l / r;
222 break;
224 case SIGNED('%'):
225 if (!r)
226 goto Div;
227 v = sl % sr;
228 break;
230 case UNSIGNED('%'):
231 if (!r) goto Div;
232 v = l % r;
233 break;
235 case SIGNED(SPECIAL_LEFTSHIFT):
236 case UNSIGNED(SPECIAL_LEFTSHIFT):
237 v = l << r;
238 break;
240 case SIGNED(SPECIAL_RIGHTSHIFT):
241 v = sl >> r;
242 break;
244 case UNSIGNED(SPECIAL_RIGHTSHIFT):
245 v = l >> r;
246 break;
248 default:
249 return 0;
251 mask = mask | (mask-1);
252 expr->value = v & mask;
253 expr->type = EXPR_VALUE;
254 return 1;
255 Div:
256 warning(expr->pos, "division by zero");
257 return 0;
258 Overflow:
259 warning(expr->pos, "constant integer operation overflow");
260 return 0;
263 static int simplify_cmp_binop(struct expression *expr, struct symbol *ctype)
265 struct expression *left = expr->left, *right = expr->right;
266 unsigned long long l, r, mask;
267 signed long long sl, sr;
269 if (left->type != EXPR_VALUE || right->type != EXPR_VALUE)
270 return 0;
271 l = left->value; r = right->value;
272 mask = 1ULL << (ctype->bit_size-1);
273 sl = l; sr = r;
274 if (sl & mask)
275 sl |= ~(mask-1);
276 if (sr & mask)
277 sr |= ~(mask-1);
278 switch (expr->op) {
279 case '<': expr->value = sl < sr; break;
280 case '>': expr->value = sl > sr; break;
281 case SPECIAL_LTE: expr->value = sl <= sr; break;
282 case SPECIAL_GTE: expr->value = sl >= sr; break;
283 case SPECIAL_EQUAL: expr->value = l == r; break;
284 case SPECIAL_NOTEQUAL: expr->value = l != r; break;
285 case SPECIAL_UNSIGNED_LT:expr->value = l < r; break;
286 case SPECIAL_UNSIGNED_GT:expr->value = l > r; break;
287 case SPECIAL_UNSIGNED_LTE:expr->value = l <= r; break;
288 case SPECIAL_UNSIGNED_GTE:expr->value = l >= r; break;
290 expr->type = EXPR_VALUE;
291 return 1;
294 static int simplify_float_binop(struct expression *expr)
296 struct expression *left = expr->left, *right = expr->right;
297 unsigned long mod = expr->ctype->ctype.modifiers;
298 long double l, r, res;
300 if (left->type != EXPR_FVALUE || right->type != EXPR_FVALUE)
301 return 0;
303 l = left->fvalue;
304 r = right->fvalue;
306 if (mod & MOD_LONGLONG) {
307 switch (expr->op) {
308 case '+': res = l + r; break;
309 case '-': res = l - r; break;
310 case '*': res = l * r; break;
311 case '/': if (!r) goto Div;
312 res = l / r; break;
313 default: return 0;
315 } else if (mod & MOD_LONG) {
316 switch (expr->op) {
317 case '+': res = (double) l + (double) r; break;
318 case '-': res = (double) l - (double) r; break;
319 case '*': res = (double) l * (double) r; break;
320 case '/': if (!r) goto Div;
321 res = (double) l / (double) r; break;
322 default: return 0;
324 } else {
325 switch (expr->op) {
326 case '+': res = (float)l + (float)r; break;
327 case '-': res = (float)l - (float)r; break;
328 case '*': res = (float)l * (float)r; break;
329 case '/': if (!r) goto Div;
330 res = (float)l / (float)r; break;
331 default: return 0;
334 expr->type = EXPR_FVALUE;
335 expr->fvalue = res;
336 return 1;
337 Div:
338 warning(expr->pos, "division by zero");
339 return 0;
342 static int simplify_float_cmp(struct expression *expr, struct symbol *ctype)
344 struct expression *left = expr->left, *right = expr->right;
345 long double l, r;
347 if (left->type != EXPR_FVALUE || right->type != EXPR_FVALUE)
348 return 0;
350 l = left->fvalue;
351 r = right->fvalue;
352 switch (expr->op) {
353 case '<': expr->value = l < r; break;
354 case '>': expr->value = l > r; break;
355 case SPECIAL_LTE: expr->value = l <= r; break;
356 case SPECIAL_GTE: expr->value = l >= r; break;
357 case SPECIAL_EQUAL: expr->value = l == r; break;
358 case SPECIAL_NOTEQUAL: expr->value = l != r; break;
360 expr->type = EXPR_VALUE;
361 return 1;
364 static int expand_binop(struct expression *expr)
366 int cost;
368 cost = expand_expression(expr->left);
369 cost += expand_expression(expr->right);
370 if (simplify_int_binop(expr, expr->ctype))
371 return 0;
372 if (simplify_float_binop(expr))
373 return 0;
374 return cost + 1;
377 static int expand_logical(struct expression *expr)
379 struct expression *left = expr->left;
380 struct expression *right;
381 int cost, rcost;
383 /* Do immediate short-circuiting ... */
384 cost = expand_expression(left);
385 if (left->type == EXPR_VALUE) {
386 if (expr->op == SPECIAL_LOGICAL_AND) {
387 if (!left->value) {
388 expr->type = EXPR_VALUE;
389 expr->value = 0;
390 return 0;
392 } else {
393 if (left->value) {
394 expr->type = EXPR_VALUE;
395 expr->value = 1;
396 return 0;
401 right = expr->right;
402 rcost = expand_expression(right);
403 if (left->type == EXPR_VALUE && right->type == EXPR_VALUE) {
405 * We know the left value doesn't matter, since
406 * otherwise we would have short-circuited it..
408 expr->type = EXPR_VALUE;
409 expr->value = right->value != 0;
410 return 0;
414 * If the right side is safe and cheaper than a branch,
415 * just avoid the branch and turn it into a regular binop
416 * style SAFELOGICAL.
418 if (rcost < BRANCH_COST) {
419 expr->type = EXPR_BINOP;
420 rcost -= BRANCH_COST - 1;
423 return cost + BRANCH_COST + rcost;
426 static int expand_comma(struct expression *expr)
428 int cost;
430 cost = expand_expression(expr->left);
431 cost += expand_expression(expr->right);
432 if (expr->left->type == EXPR_VALUE || expr->left->type == EXPR_FVALUE)
433 *expr = *expr->right;
434 return cost;
437 #define MOD_IGN (MOD_VOLATILE | MOD_CONST)
439 static int compare_types(int op, struct symbol *left, struct symbol *right)
441 switch (op) {
442 case SPECIAL_EQUAL:
443 return !type_difference(left, right, MOD_IGN, MOD_IGN);
444 case SPECIAL_NOTEQUAL:
445 return type_difference(left, right, MOD_IGN, MOD_IGN) != NULL;
446 case '<':
447 return left->bit_size < right->bit_size;
448 case '>':
449 return left->bit_size > right->bit_size;
450 case SPECIAL_LTE:
451 return left->bit_size <= right->bit_size;
452 case SPECIAL_GTE:
453 return left->bit_size >= right->bit_size;
455 return 0;
458 static int expand_compare(struct expression *expr)
460 struct expression *left = expr->left, *right = expr->right;
461 int cost;
463 cost = expand_expression(left);
464 cost += expand_expression(right);
466 if (left && right) {
467 /* Type comparison? */
468 if (left->type == EXPR_TYPE && right->type == EXPR_TYPE) {
469 int op = expr->op;
470 expr->type = EXPR_VALUE;
471 expr->value = compare_types(op, left->symbol, right->symbol);
472 return 0;
474 if (simplify_cmp_binop(expr, left->ctype))
475 return 0;
476 if (simplify_float_cmp(expr, left->ctype))
477 return 0;
479 return cost + 1;
482 static int expand_conditional(struct expression *expr)
484 struct expression *cond = expr->conditional;
485 struct expression *true = expr->cond_true;
486 struct expression *false = expr->cond_false;
487 int cost, cond_cost;
489 cond_cost = expand_expression(cond);
490 if (cond->type == EXPR_VALUE) {
491 if (!cond->value)
492 true = false;
493 if (!true)
494 true = cond;
495 *expr = *true;
496 return expand_expression(expr);
499 cost = expand_expression(true);
500 cost += expand_expression(false);
502 if (cost < SELECT_COST) {
503 expr->type = EXPR_SELECT;
504 cost -= BRANCH_COST - 1;
507 return cost + cond_cost + BRANCH_COST;
510 static int expand_assignment(struct expression *expr)
512 expand_expression(expr->left);
513 expand_expression(expr->right);
514 return SIDE_EFFECTS;
517 static int expand_addressof(struct expression *expr)
519 return expand_expression(expr->unop);
523 * Look up a trustable initializer value at the requested offset.
525 * Return NULL if no such value can be found or statically trusted.
527 * FIXME!! We should check that the size is right!
529 static struct expression *constant_symbol_value(struct symbol *sym, int offset)
531 struct expression *value;
533 if (sym->ctype.modifiers & (MOD_ASSIGNED | MOD_ADDRESSABLE))
534 return NULL;
535 value = sym->initializer;
536 if (!value)
537 return NULL;
538 if (value->type == EXPR_INITIALIZER) {
539 struct expression *entry;
540 FOR_EACH_PTR(value->expr_list, entry) {
541 if (entry->type != EXPR_POS) {
542 if (offset)
543 continue;
544 return entry;
546 if (entry->init_offset < offset)
547 continue;
548 if (entry->init_offset > offset)
549 return NULL;
550 return entry->init_expr;
551 } END_FOR_EACH_PTR(entry);
552 return NULL;
554 return value;
557 static int expand_dereference(struct expression *expr)
559 struct expression *unop = expr->unop;
560 unsigned int offset;
562 expand_expression(unop);
565 * NOTE! We get a bogus warning right now for some special
566 * cases: apparently I've screwed up the optimization of
567 * a zero-offset dereference, and the ctype is wrong.
569 * Leave the warning in anyway, since this is also a good
570 * test for me to get the type evaluation right..
572 if (expr->ctype->ctype.modifiers & MOD_NODEREF)
573 warning(unop->pos, "dereference of noderef expression");
576 * Is it "symbol" or "symbol + offset"?
578 offset = 0;
579 if (unop->type == EXPR_BINOP && unop->op == '+') {
580 struct expression *right = unop->right;
581 if (right->type == EXPR_VALUE) {
582 offset = right->value;
583 unop = unop->left;
587 if (unop->type == EXPR_SYMBOL) {
588 struct symbol *sym = unop->symbol;
589 struct expression *value = constant_symbol_value(sym, offset);
591 /* Const symbol with a constant initializer? */
592 if (value) {
593 /* FIXME! We should check that the size is right! */
594 if (value->type == EXPR_VALUE) {
595 expr->type = EXPR_VALUE;
596 expr->value = value->value;
597 return 0;
598 } else if (value->type == EXPR_FVALUE) {
599 expr->type = EXPR_FVALUE;
600 expr->fvalue = value->fvalue;
601 return 0;
605 /* Direct symbol dereference? Cheap and safe */
606 return (sym->ctype.modifiers & (MOD_STATIC | MOD_EXTERN)) ? 2 : 1;
609 return UNSAFE;
612 static int simplify_preop(struct expression *expr)
614 struct expression *op = expr->unop;
615 unsigned long long v, mask;
617 if (op->type != EXPR_VALUE)
618 return 0;
620 mask = 1ULL << (expr->ctype->bit_size-1);
621 v = op->value;
622 switch (expr->op) {
623 case '+': break;
624 case '-':
625 if (v == mask && !(expr->ctype->ctype.modifiers & MOD_UNSIGNED))
626 goto Overflow;
627 v = -v;
628 break;
629 case '!': v = !v; break;
630 case '~': v = ~v; break;
631 default: return 0;
633 mask = mask | (mask-1);
634 expr->value = v & mask;
635 expr->type = EXPR_VALUE;
636 return 1;
638 Overflow:
639 warning(expr->pos, "constant integer operation overflow");
640 return 0;
643 static int simplify_float_preop(struct expression *expr)
645 struct expression *op = expr->unop;
646 long double v;
648 if (op->type != EXPR_FVALUE)
649 return 0;
650 v = op->fvalue;
651 switch (expr->op) {
652 case '+': break;
653 case '-': v = -v; break;
654 default: return 0;
656 expr->fvalue = v;
657 expr->type = EXPR_FVALUE;
658 return 1;
662 * Unary post-ops: x++ and x--
664 static int expand_postop(struct expression *expr)
666 expand_expression(expr->unop);
667 return SIDE_EFFECTS;
670 static int expand_preop(struct expression *expr)
672 int cost;
674 switch (expr->op) {
675 case '*':
676 return expand_dereference(expr);
678 case '&':
679 return expand_addressof(expr);
681 case SPECIAL_INCREMENT:
682 case SPECIAL_DECREMENT:
684 * From a type evaluation standpoint the preops are
685 * the same as the postops
687 return expand_postop(expr);
689 default:
690 break;
692 cost = expand_expression(expr->unop);
694 if (simplify_preop(expr))
695 return 0;
696 if (simplify_float_preop(expr))
697 return 0;
698 return cost + 1;
701 static int expand_arguments(struct expression_list *head)
703 int cost = 0;
704 struct expression *expr;
706 FOR_EACH_PTR (head, expr) {
707 cost += expand_expression(expr);
708 } END_FOR_EACH_PTR(expr);
709 return cost;
712 static int expand_cast(struct expression *expr)
714 int cost;
715 struct expression *target = expr->cast_expression;
717 cost = expand_expression(target);
719 /* Simplify normal integer casts.. */
720 if (target->type == EXPR_VALUE || target->type == EXPR_FVALUE) {
721 cast_value(expr, expr->ctype, target, target->ctype);
722 return 0;
724 return cost + 1;
727 /* The arguments are constant if the cost of all of them is zero */
728 int expand_constant_p(struct expression *expr, int cost)
730 expr->type = EXPR_VALUE;
731 expr->value = !cost;
732 return 0;
735 /* The arguments are safe, if their cost is less than SIDE_EFFECTS */
736 int expand_safe_p(struct expression *expr, int cost)
738 expr->type = EXPR_VALUE;
739 expr->value = (cost < SIDE_EFFECTS);
740 return 0;
744 * expand a call expression with a symbol. This
745 * should expand builtins.
747 static int expand_symbol_call(struct expression *expr, int cost)
749 struct expression *fn = expr->fn;
750 struct symbol *ctype = fn->ctype;
752 if (fn->type != EXPR_PREOP)
753 return SIDE_EFFECTS;
755 if (ctype->op && ctype->op->expand)
756 return ctype->op->expand(expr, cost);
758 return SIDE_EFFECTS;
761 static int expand_call(struct expression *expr)
763 int cost;
764 struct symbol *sym;
765 struct expression *fn = expr->fn;
767 cost = expand_arguments(expr->args);
768 sym = fn->ctype;
769 if (!sym) {
770 expression_error(expr, "function has no type");
771 return SIDE_EFFECTS;
773 if (sym->type == SYM_NODE)
774 return expand_symbol_call(expr, cost);
776 return SIDE_EFFECTS;
779 static int expand_expression_list(struct expression_list *list)
781 int cost = 0;
782 struct expression *expr;
784 FOR_EACH_PTR(list, expr) {
785 cost += expand_expression(expr);
786 } END_FOR_EACH_PTR(expr);
787 return cost;
791 * We can simplify nested position expressions if
792 * this is a simple (single) positional expression.
794 static int expand_pos_expression(struct expression *expr)
796 struct expression *nested = expr->init_expr;
797 unsigned long offset = expr->init_offset;
798 int nr = expr->init_nr;
800 if (nr == 1) {
801 switch (nested->type) {
802 case EXPR_POS:
803 offset += nested->init_offset;
804 *expr = *nested;
805 expr->init_offset = offset;
806 nested = expr;
807 break;
809 case EXPR_INITIALIZER: {
810 struct expression *reuse = nested, *entry;
811 *expr = *nested;
812 FOR_EACH_PTR(expr->expr_list, entry) {
813 if (entry->type == EXPR_POS) {
814 entry->init_offset += offset;
815 } else {
816 if (!reuse) {
818 * This happens rarely, but it can happen
819 * with bitfields that are all at offset
820 * zero..
822 reuse = alloc_expression(entry->pos, EXPR_POS);
824 reuse->type = EXPR_POS;
825 reuse->ctype = entry->ctype;
826 reuse->init_offset = offset;
827 reuse->init_nr = 1;
828 reuse->init_expr = entry;
829 REPLACE_CURRENT_PTR(entry, reuse);
830 reuse = NULL;
832 } END_FOR_EACH_PTR(entry);
833 nested = expr;
834 break;
837 default:
838 break;
841 return expand_expression(nested);
844 static unsigned long bit_offset(const struct expression *expr)
846 unsigned long offset = 0;
847 while (expr->type == EXPR_POS) {
848 offset += expr->init_offset << 3;
849 expr = expr->init_expr;
851 if (expr && expr->ctype)
852 offset += expr->ctype->bit_offset;
853 return offset;
856 static int compare_expressions(const void *_a, const void *_b)
858 const struct expression *a = _a;
859 const struct expression *b = _b;
860 unsigned long a_pos = bit_offset(a);
861 unsigned long b_pos = bit_offset(b);
863 return (a_pos < b_pos) ? -1 : (a_pos == b_pos) ? 0 : 1;
866 static void sort_expression_list(struct expression_list **list)
868 sort_list((struct ptr_list **)list, compare_expressions);
871 static void verify_nonoverlapping(struct expression_list **list)
873 struct expression *a = NULL;
874 struct expression *b;
876 FOR_EACH_PTR(*list, b) {
877 if (a && a->ctype && a->ctype->bit_size && bit_offset(a) == bit_offset(b)) {
878 sparse_error(a->pos, "Initializer entry defined twice");
879 info(b->pos, " also defined here");
880 return;
882 a = b;
883 } END_FOR_EACH_PTR(b);
886 static int expand_expression(struct expression *expr)
888 if (!expr)
889 return 0;
890 if (!expr->ctype || expr->ctype == &bad_ctype)
891 return UNSAFE;
893 switch (expr->type) {
894 case EXPR_VALUE:
895 case EXPR_FVALUE:
896 case EXPR_STRING:
897 return 0;
898 case EXPR_TYPE:
899 case EXPR_SYMBOL:
900 return expand_symbol_expression(expr);
901 case EXPR_BINOP:
902 return expand_binop(expr);
904 case EXPR_LOGICAL:
905 return expand_logical(expr);
907 case EXPR_COMMA:
908 return expand_comma(expr);
910 case EXPR_COMPARE:
911 return expand_compare(expr);
913 case EXPR_ASSIGNMENT:
914 return expand_assignment(expr);
916 case EXPR_PREOP:
917 return expand_preop(expr);
919 case EXPR_POSTOP:
920 return expand_postop(expr);
922 case EXPR_CAST:
923 case EXPR_IMPLIED_CAST:
924 return expand_cast(expr);
926 case EXPR_CALL:
927 return expand_call(expr);
929 case EXPR_DEREF:
930 warning(expr->pos, "we should not have an EXPR_DEREF left at expansion time");
931 return UNSAFE;
933 case EXPR_SELECT:
934 case EXPR_CONDITIONAL:
935 return expand_conditional(expr);
937 case EXPR_STATEMENT: {
938 struct statement *stmt = expr->statement;
939 int cost = expand_statement(stmt);
941 if (stmt->type == STMT_EXPRESSION && stmt->expression)
942 *expr = *stmt->expression;
943 return cost;
946 case EXPR_LABEL:
947 return 0;
949 case EXPR_INITIALIZER:
950 sort_expression_list(&expr->expr_list);
951 verify_nonoverlapping(&expr->expr_list);
952 return expand_expression_list(expr->expr_list);
954 case EXPR_IDENTIFIER:
955 return UNSAFE;
957 case EXPR_INDEX:
958 return UNSAFE;
960 case EXPR_SLICE:
961 return expand_expression(expr->base) + 1;
963 case EXPR_POS:
964 return expand_pos_expression(expr);
966 case EXPR_SIZEOF:
967 case EXPR_PTRSIZEOF:
968 case EXPR_ALIGNOF:
969 expression_error(expr, "internal front-end error: sizeof in expansion?");
970 return UNSAFE;
972 return SIDE_EFFECTS;
975 static void expand_const_expression(struct expression *expr, const char *where)
977 if (expr) {
978 expand_expression(expr);
979 if (expr->type != EXPR_VALUE)
980 expression_error(expr, "Expected constant expression in %s", where);
984 int expand_symbol(struct symbol *sym)
986 int retval;
987 struct symbol *base_type;
989 if (!sym)
990 return 0;
991 base_type = sym->ctype.base_type;
992 if (!base_type)
993 return 0;
995 retval = expand_expression(sym->initializer);
996 /* expand the body of the symbol */
997 if (base_type->type == SYM_FN) {
998 if (base_type->stmt)
999 expand_statement(base_type->stmt);
1001 return retval;
1004 static void expand_return_expression(struct statement *stmt)
1006 expand_expression(stmt->expression);
1009 static int expand_if_statement(struct statement *stmt)
1011 struct expression *expr = stmt->if_conditional;
1013 if (!expr || !expr->ctype || expr->ctype == &bad_ctype)
1014 return UNSAFE;
1016 expand_expression(expr);
1018 /* This is only valid if nobody jumps into the "dead" side */
1019 #if 0
1020 /* Simplify constant conditionals without even evaluating the false side */
1021 if (expr->type == EXPR_VALUE) {
1022 struct statement *simple;
1023 simple = expr->value ? stmt->if_true : stmt->if_false;
1025 /* Nothing? */
1026 if (!simple) {
1027 stmt->type = STMT_NONE;
1028 return 0;
1030 expand_statement(simple);
1031 *stmt = *simple;
1032 return SIDE_EFFECTS;
1034 #endif
1035 expand_statement(stmt->if_true);
1036 expand_statement(stmt->if_false);
1037 return SIDE_EFFECTS;
1041 * Expanding a compound statement is really just
1042 * about adding up the costs of each individual
1043 * statement.
1045 * We also collapse a simple compound statement:
1046 * this would trigger for simple inline functions,
1047 * except we would have to check the "return"
1048 * symbol usage. Next time.
1050 static int expand_compound(struct statement *stmt)
1052 struct statement *s, *last;
1053 int cost, statements;
1055 if (stmt->ret)
1056 expand_symbol(stmt->ret);
1058 last = stmt->args;
1059 cost = expand_statement(last);
1060 statements = last != NULL;
1061 FOR_EACH_PTR(stmt->stmts, s) {
1062 statements++;
1063 last = s;
1064 cost += expand_statement(s);
1065 } END_FOR_EACH_PTR(s);
1067 if (statements == 1 && !stmt->ret)
1068 *stmt = *last;
1070 return cost;
1073 static int expand_statement(struct statement *stmt)
1075 if (!stmt)
1076 return 0;
1078 switch (stmt->type) {
1079 case STMT_DECLARATION: {
1080 struct symbol *sym;
1081 FOR_EACH_PTR(stmt->declaration, sym) {
1082 expand_symbol(sym);
1083 } END_FOR_EACH_PTR(sym);
1084 return SIDE_EFFECTS;
1087 case STMT_RETURN:
1088 expand_return_expression(stmt);
1089 return SIDE_EFFECTS;
1091 case STMT_EXPRESSION:
1092 return expand_expression(stmt->expression);
1094 case STMT_COMPOUND:
1095 return expand_compound(stmt);
1097 case STMT_IF:
1098 return expand_if_statement(stmt);
1100 case STMT_ITERATOR:
1101 expand_expression(stmt->iterator_pre_condition);
1102 expand_expression(stmt->iterator_post_condition);
1103 expand_statement(stmt->iterator_pre_statement);
1104 expand_statement(stmt->iterator_statement);
1105 expand_statement(stmt->iterator_post_statement);
1106 return SIDE_EFFECTS;
1108 case STMT_SWITCH:
1109 expand_expression(stmt->switch_expression);
1110 expand_statement(stmt->switch_statement);
1111 return SIDE_EFFECTS;
1113 case STMT_CASE:
1114 expand_const_expression(stmt->case_expression, "case statement");
1115 expand_const_expression(stmt->case_to, "case statement");
1116 expand_statement(stmt->case_statement);
1117 return SIDE_EFFECTS;
1119 case STMT_LABEL:
1120 expand_statement(stmt->label_statement);
1121 return SIDE_EFFECTS;
1123 case STMT_GOTO:
1124 expand_expression(stmt->goto_expression);
1125 return SIDE_EFFECTS;
1127 case STMT_NONE:
1128 break;
1129 case STMT_ASM:
1130 /* FIXME! Do the asm parameter evaluation! */
1131 break;
1132 case STMT_CONTEXT:
1133 expand_expression(stmt->expression);
1134 break;
1135 case STMT_RANGE:
1136 expand_expression(stmt->range_expression);
1137 expand_expression(stmt->range_low);
1138 expand_expression(stmt->range_high);
1139 break;
1141 return SIDE_EFFECTS;
1144 long long get_expression_value(struct expression *expr)
1146 long long value, mask;
1147 struct symbol *ctype;
1149 if (!expr)
1150 return 0;
1151 ctype = evaluate_expression(expr);
1152 if (!ctype) {
1153 expression_error(expr, "bad constant expression type");
1154 return 0;
1156 expand_expression(expr);
1157 if (expr->type != EXPR_VALUE) {
1158 expression_error(expr, "bad constant expression");
1159 return 0;
1162 value = expr->value;
1163 mask = 1ULL << (ctype->bit_size-1);
1165 if (value & mask) {
1166 while (ctype->type != SYM_BASETYPE)
1167 ctype = ctype->ctype.base_type;
1168 if (!(ctype->ctype.modifiers & MOD_UNSIGNED))
1169 value = value | mask | ~(mask-1);
1171 return value;