allocate.h: Stop needlessly returning a void value in __DO_ALLOCATOR
[smatch.git] / expand.c
blob72d9be629f58a005d71b6cb95f7c818c16c4c973
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 *);
37 static int conservative;
39 static int expand_symbol_expression(struct expression *expr)
41 struct symbol *sym = expr->symbol;
43 if (sym == &zero_int) {
44 if (Wundefined_preprocessor)
45 warning(expr->pos, "undefined preprocessor identifier '%s'", show_ident(expr->symbol_name));
46 expr->type = EXPR_VALUE;
47 expr->value = 0;
48 expr->taint = 0;
49 return 0;
51 /* The cost of a symbol expression is lower for on-stack symbols */
52 return (sym->ctype.modifiers & (MOD_STATIC | MOD_EXTERN)) ? 2 : 1;
55 static long long get_longlong(struct expression *expr)
57 int no_expand = expr->ctype->ctype.modifiers & MOD_UNSIGNED;
58 long long mask = 1ULL << (expr->ctype->bit_size - 1);
59 long long value = expr->value;
60 long long ormask, andmask;
62 if (!(value & mask))
63 no_expand = 1;
64 andmask = mask | (mask-1);
65 ormask = ~andmask;
66 if (no_expand)
67 ormask = 0;
68 return (value & andmask) | ormask;
71 void cast_value(struct expression *expr, struct symbol *newtype,
72 struct expression *old, struct symbol *oldtype)
74 int old_size = oldtype->bit_size;
75 int new_size = newtype->bit_size;
76 long long value, mask, signmask;
77 long long oldmask, oldsignmask, dropped;
79 if (newtype->ctype.base_type == &fp_type ||
80 oldtype->ctype.base_type == &fp_type)
81 goto Float;
83 // For pointers and integers, we can just move the value around
84 expr->type = EXPR_VALUE;
85 expr->taint = old->taint;
86 if (old_size == new_size) {
87 expr->value = old->value;
88 return;
91 // expand it to the full "long long" value
92 value = get_longlong(old);
94 Int:
95 // Truncate it to the new size
96 signmask = 1ULL << (new_size-1);
97 mask = signmask | (signmask-1);
98 expr->value = value & mask;
100 // Stop here unless checking for truncation
101 if (!Wcast_truncate || conservative)
102 return;
104 // Check if we dropped any bits..
105 oldsignmask = 1ULL << (old_size-1);
106 oldmask = oldsignmask | (oldsignmask-1);
107 dropped = oldmask & ~mask;
109 // OK if the bits were (and still are) purely sign bits
110 if (value & dropped) {
111 if (!(value & oldsignmask) || !(value & signmask) || (value & dropped) != dropped)
112 warning(old->pos, "cast truncates bits from constant value (%llx becomes %llx)",
113 value & oldmask,
114 value & mask);
116 return;
118 Float:
119 if (newtype->ctype.base_type != &fp_type) {
120 value = (long long)old->fvalue;
121 expr->type = EXPR_VALUE;
122 expr->taint = 0;
123 goto Int;
126 if (oldtype->ctype.base_type != &fp_type)
127 expr->fvalue = (long double)get_longlong(old);
128 else
129 expr->fvalue = old->value;
131 if (!(newtype->ctype.modifiers & MOD_LONGLONG)) {
132 if ((newtype->ctype.modifiers & MOD_LONG))
133 expr->fvalue = (double)expr->fvalue;
134 else
135 expr->fvalue = (float)expr->fvalue;
137 expr->type = EXPR_FVALUE;
140 static int check_shift_count(struct expression *expr, struct symbol *ctype, unsigned int count)
142 warning(expr->pos, "shift too big (%u) for type %s", count, show_typename(ctype));
143 count &= ctype->bit_size-1;
144 return count;
148 * CAREFUL! We need to get the size and sign of the
149 * result right!
151 #define CONVERT(op,s) (((op)<<1)+(s))
152 #define SIGNED(op) CONVERT(op, 1)
153 #define UNSIGNED(op) CONVERT(op, 0)
154 static int simplify_int_binop(struct expression *expr, struct symbol *ctype)
156 struct expression *left = expr->left, *right = expr->right;
157 unsigned long long v, l, r, mask;
158 signed long long sl, sr;
159 int is_signed;
161 if (right->type != EXPR_VALUE)
162 return 0;
163 r = right->value;
164 if (expr->op == SPECIAL_LEFTSHIFT || expr->op == SPECIAL_RIGHTSHIFT) {
165 if (r >= ctype->bit_size) {
166 if (conservative)
167 return 0;
168 r = check_shift_count(expr, ctype, r);
169 right->value = r;
172 if (left->type != EXPR_VALUE)
173 return 0;
174 l = left->value; r = right->value;
175 is_signed = !(ctype->ctype.modifiers & MOD_UNSIGNED);
176 mask = 1ULL << (ctype->bit_size-1);
177 sl = l; sr = r;
178 if (is_signed && (sl & mask))
179 sl |= ~(mask-1);
180 if (is_signed && (sr & mask))
181 sr |= ~(mask-1);
183 switch (CONVERT(expr->op,is_signed)) {
184 case SIGNED('+'):
185 case UNSIGNED('+'):
186 v = l + r;
187 break;
189 case SIGNED('-'):
190 case UNSIGNED('-'):
191 v = l - r;
192 break;
194 case SIGNED('&'):
195 case UNSIGNED('&'):
196 v = l & r;
197 break;
199 case SIGNED('|'):
200 case UNSIGNED('|'):
201 v = l | r;
202 break;
204 case SIGNED('^'):
205 case UNSIGNED('^'):
206 v = l ^ r;
207 break;
209 case SIGNED('*'):
210 v = sl * sr;
211 break;
213 case UNSIGNED('*'):
214 v = l * r;
215 break;
217 case SIGNED('/'):
218 if (!r)
219 goto Div;
220 if (l == mask && sr == -1)
221 goto Overflow;
222 v = sl / sr;
223 break;
225 case UNSIGNED('/'):
226 if (!r) goto Div;
227 v = l / r;
228 break;
230 case SIGNED('%'):
231 if (!r)
232 goto Div;
233 v = sl % sr;
234 break;
236 case UNSIGNED('%'):
237 if (!r) goto Div;
238 v = l % r;
239 break;
241 case SIGNED(SPECIAL_LEFTSHIFT):
242 case UNSIGNED(SPECIAL_LEFTSHIFT):
243 v = l << r;
244 break;
246 case SIGNED(SPECIAL_RIGHTSHIFT):
247 v = sl >> r;
248 break;
250 case UNSIGNED(SPECIAL_RIGHTSHIFT):
251 v = l >> r;
252 break;
254 default:
255 return 0;
257 mask = mask | (mask-1);
258 expr->value = v & mask;
259 expr->type = EXPR_VALUE;
260 expr->taint = left->taint | right->taint;
261 return 1;
262 Div:
263 if (!conservative)
264 warning(expr->pos, "division by zero");
265 return 0;
266 Overflow:
267 if (!conservative)
268 warning(expr->pos, "constant integer operation overflow");
269 return 0;
272 static int simplify_cmp_binop(struct expression *expr, struct symbol *ctype)
274 struct expression *left = expr->left, *right = expr->right;
275 unsigned long long l, r, mask;
276 signed long long sl, sr;
278 if (left->type != EXPR_VALUE || right->type != EXPR_VALUE)
279 return 0;
280 l = left->value; r = right->value;
281 mask = 1ULL << (ctype->bit_size-1);
282 sl = l; sr = r;
283 if (sl & mask)
284 sl |= ~(mask-1);
285 if (sr & mask)
286 sr |= ~(mask-1);
287 switch (expr->op) {
288 case '<': expr->value = sl < sr; break;
289 case '>': expr->value = sl > sr; break;
290 case SPECIAL_LTE: expr->value = sl <= sr; break;
291 case SPECIAL_GTE: expr->value = sl >= sr; break;
292 case SPECIAL_EQUAL: expr->value = l == r; break;
293 case SPECIAL_NOTEQUAL: expr->value = l != r; break;
294 case SPECIAL_UNSIGNED_LT:expr->value = l < r; break;
295 case SPECIAL_UNSIGNED_GT:expr->value = l > r; break;
296 case SPECIAL_UNSIGNED_LTE:expr->value = l <= r; break;
297 case SPECIAL_UNSIGNED_GTE:expr->value = l >= r; break;
299 expr->type = EXPR_VALUE;
300 expr->taint = left->taint | right->taint;
301 return 1;
304 static int simplify_float_binop(struct expression *expr)
306 struct expression *left = expr->left, *right = expr->right;
307 unsigned long mod = expr->ctype->ctype.modifiers;
308 long double l, r, res;
310 if (left->type != EXPR_FVALUE || right->type != EXPR_FVALUE)
311 return 0;
313 l = left->fvalue;
314 r = right->fvalue;
316 if (mod & MOD_LONGLONG) {
317 switch (expr->op) {
318 case '+': res = l + r; break;
319 case '-': res = l - r; break;
320 case '*': res = l * r; break;
321 case '/': if (!r) goto Div;
322 res = l / r; break;
323 default: return 0;
325 } else if (mod & MOD_LONG) {
326 switch (expr->op) {
327 case '+': res = (double) l + (double) r; break;
328 case '-': res = (double) l - (double) r; break;
329 case '*': res = (double) l * (double) r; break;
330 case '/': if (!r) goto Div;
331 res = (double) l / (double) r; break;
332 default: return 0;
334 } else {
335 switch (expr->op) {
336 case '+': res = (float)l + (float)r; break;
337 case '-': res = (float)l - (float)r; break;
338 case '*': res = (float)l * (float)r; break;
339 case '/': if (!r) goto Div;
340 res = (float)l / (float)r; break;
341 default: return 0;
344 expr->type = EXPR_FVALUE;
345 expr->fvalue = res;
346 return 1;
347 Div:
348 if (!conservative)
349 warning(expr->pos, "division by zero");
350 return 0;
353 static int simplify_float_cmp(struct expression *expr, struct symbol *ctype)
355 struct expression *left = expr->left, *right = expr->right;
356 long double l, r;
358 if (left->type != EXPR_FVALUE || right->type != EXPR_FVALUE)
359 return 0;
361 l = left->fvalue;
362 r = right->fvalue;
363 switch (expr->op) {
364 case '<': expr->value = l < r; break;
365 case '>': expr->value = l > r; break;
366 case SPECIAL_LTE: expr->value = l <= r; break;
367 case SPECIAL_GTE: expr->value = l >= r; break;
368 case SPECIAL_EQUAL: expr->value = l == r; break;
369 case SPECIAL_NOTEQUAL: expr->value = l != r; break;
371 expr->type = EXPR_VALUE;
372 expr->taint = 0;
373 return 1;
376 static int expand_binop(struct expression *expr)
378 int cost;
380 cost = expand_expression(expr->left);
381 cost += expand_expression(expr->right);
382 if (simplify_int_binop(expr, expr->ctype))
383 return 0;
384 if (simplify_float_binop(expr))
385 return 0;
386 return cost + 1;
389 static int expand_logical(struct expression *expr)
391 struct expression *left = expr->left;
392 struct expression *right;
393 int cost, rcost;
395 /* Do immediate short-circuiting ... */
396 cost = expand_expression(left);
397 if (left->type == EXPR_VALUE) {
398 if (expr->op == SPECIAL_LOGICAL_AND) {
399 if (!left->value) {
400 expr->type = EXPR_VALUE;
401 expr->value = 0;
402 expr->taint = left->taint;
403 return 0;
405 } else {
406 if (left->value) {
407 expr->type = EXPR_VALUE;
408 expr->value = 1;
409 expr->taint = left->taint;
410 return 0;
415 right = expr->right;
416 rcost = expand_expression(right);
417 if (left->type == EXPR_VALUE && right->type == EXPR_VALUE) {
419 * We know the left value doesn't matter, since
420 * otherwise we would have short-circuited it..
422 expr->type = EXPR_VALUE;
423 expr->value = right->value != 0;
424 expr->taint = left->taint | right->taint;
425 return 0;
429 * If the right side is safe and cheaper than a branch,
430 * just avoid the branch and turn it into a regular binop
431 * style SAFELOGICAL.
433 if (rcost < BRANCH_COST) {
434 expr->type = EXPR_BINOP;
435 rcost -= BRANCH_COST - 1;
438 return cost + BRANCH_COST + rcost;
441 static int expand_comma(struct expression *expr)
443 int cost;
445 cost = expand_expression(expr->left);
446 cost += expand_expression(expr->right);
447 if (expr->left->type == EXPR_VALUE || expr->left->type == EXPR_FVALUE) {
448 unsigned flags = expr->flags;
449 unsigned taint;
450 taint = expr->left->type == EXPR_VALUE ? expr->left->taint : 0;
451 *expr = *expr->right;
452 expr->flags = flags;
453 if (expr->type == EXPR_VALUE)
454 expr->taint |= Taint_comma | taint;
456 return cost;
459 #define MOD_IGN (MOD_VOLATILE | MOD_CONST)
461 static int compare_types(int op, struct symbol *left, struct symbol *right)
463 struct ctype c1 = {.base_type = left};
464 struct ctype c2 = {.base_type = right};
465 switch (op) {
466 case SPECIAL_EQUAL:
467 return !type_difference(&c1, &c2, MOD_IGN, MOD_IGN);
468 case SPECIAL_NOTEQUAL:
469 return type_difference(&c1, &c2, MOD_IGN, MOD_IGN) != NULL;
470 case '<':
471 return left->bit_size < right->bit_size;
472 case '>':
473 return left->bit_size > right->bit_size;
474 case SPECIAL_LTE:
475 return left->bit_size <= right->bit_size;
476 case SPECIAL_GTE:
477 return left->bit_size >= right->bit_size;
479 return 0;
482 static int expand_compare(struct expression *expr)
484 struct expression *left = expr->left, *right = expr->right;
485 int cost;
487 cost = expand_expression(left);
488 cost += expand_expression(right);
490 if (left && right) {
491 /* Type comparison? */
492 if (left->type == EXPR_TYPE && right->type == EXPR_TYPE) {
493 int op = expr->op;
494 expr->type = EXPR_VALUE;
495 expr->value = compare_types(op, left->symbol, right->symbol);
496 expr->taint = 0;
497 return 0;
499 if (simplify_cmp_binop(expr, left->ctype))
500 return 0;
501 if (simplify_float_cmp(expr, left->ctype))
502 return 0;
504 return cost + 1;
507 static int expand_conditional(struct expression *expr)
509 struct expression *cond = expr->conditional;
510 struct expression *true = expr->cond_true;
511 struct expression *false = expr->cond_false;
512 int cost, cond_cost;
514 cond_cost = expand_expression(cond);
515 if (cond->type == EXPR_VALUE) {
516 unsigned flags = expr->flags;
517 if (!cond->value)
518 true = false;
519 if (!true)
520 true = cond;
521 cost = expand_expression(true);
522 *expr = *true;
523 expr->flags = flags;
524 if (expr->type == EXPR_VALUE)
525 expr->taint |= cond->taint;
526 return cost;
529 cost = expand_expression(true);
530 cost += expand_expression(false);
532 if (cost < SELECT_COST) {
533 expr->type = EXPR_SELECT;
534 cost -= BRANCH_COST - 1;
537 return cost + cond_cost + BRANCH_COST;
540 static int expand_assignment(struct expression *expr)
542 expand_expression(expr->left);
543 expand_expression(expr->right);
544 return SIDE_EFFECTS;
547 static int expand_addressof(struct expression *expr)
549 return expand_expression(expr->unop);
553 * Look up a trustable initializer value at the requested offset.
555 * Return NULL if no such value can be found or statically trusted.
557 * FIXME!! We should check that the size is right!
559 static struct expression *constant_symbol_value(struct symbol *sym, int offset)
561 struct expression *value;
563 if (sym->ctype.modifiers & (MOD_ASSIGNED | MOD_ADDRESSABLE))
564 return NULL;
565 value = sym->initializer;
566 if (!value)
567 return NULL;
568 if (value->type == EXPR_INITIALIZER) {
569 struct expression *entry;
570 FOR_EACH_PTR(value->expr_list, entry) {
571 if (entry->type != EXPR_POS) {
572 if (offset)
573 continue;
574 return entry;
576 if (entry->init_offset < offset)
577 continue;
578 if (entry->init_offset > offset)
579 return NULL;
580 return entry->init_expr;
581 } END_FOR_EACH_PTR(entry);
582 return NULL;
584 return value;
587 static int expand_dereference(struct expression *expr)
589 struct expression *unop = expr->unop;
590 unsigned int offset;
592 expand_expression(unop);
595 * NOTE! We get a bogus warning right now for some special
596 * cases: apparently I've screwed up the optimization of
597 * a zero-offset dereference, and the ctype is wrong.
599 * Leave the warning in anyway, since this is also a good
600 * test for me to get the type evaluation right..
602 if (expr->ctype->ctype.modifiers & MOD_NODEREF)
603 warning(unop->pos, "dereference of noderef expression");
606 * Is it "symbol" or "symbol + offset"?
608 offset = 0;
609 if (unop->type == EXPR_BINOP && unop->op == '+') {
610 struct expression *right = unop->right;
611 if (right->type == EXPR_VALUE) {
612 offset = right->value;
613 unop = unop->left;
617 if (unop->type == EXPR_SYMBOL) {
618 struct symbol *sym = unop->symbol;
619 struct expression *value = constant_symbol_value(sym, offset);
621 /* Const symbol with a constant initializer? */
622 if (value) {
623 /* FIXME! We should check that the size is right! */
624 if (value->type == EXPR_VALUE) {
625 expr->type = EXPR_VALUE;
626 expr->value = value->value;
627 expr->taint = 0;
628 return 0;
629 } else if (value->type == EXPR_FVALUE) {
630 expr->type = EXPR_FVALUE;
631 expr->fvalue = value->fvalue;
632 return 0;
636 /* Direct symbol dereference? Cheap and safe */
637 return (sym->ctype.modifiers & (MOD_STATIC | MOD_EXTERN)) ? 2 : 1;
640 return UNSAFE;
643 static int simplify_preop(struct expression *expr)
645 struct expression *op = expr->unop;
646 unsigned long long v, mask;
648 if (op->type != EXPR_VALUE)
649 return 0;
651 mask = 1ULL << (expr->ctype->bit_size-1);
652 v = op->value;
653 switch (expr->op) {
654 case '+': break;
655 case '-':
656 if (v == mask && !(expr->ctype->ctype.modifiers & MOD_UNSIGNED))
657 goto Overflow;
658 v = -v;
659 break;
660 case '!': v = !v; break;
661 case '~': v = ~v; break;
662 default: return 0;
664 mask = mask | (mask-1);
665 expr->value = v & mask;
666 expr->type = EXPR_VALUE;
667 expr->taint = op->taint;
668 return 1;
670 Overflow:
671 if (!conservative)
672 warning(expr->pos, "constant integer operation overflow");
673 return 0;
676 static int simplify_float_preop(struct expression *expr)
678 struct expression *op = expr->unop;
679 long double v;
681 if (op->type != EXPR_FVALUE)
682 return 0;
683 v = op->fvalue;
684 switch (expr->op) {
685 case '+': break;
686 case '-': v = -v; break;
687 default: return 0;
689 expr->fvalue = v;
690 expr->type = EXPR_FVALUE;
691 return 1;
695 * Unary post-ops: x++ and x--
697 static int expand_postop(struct expression *expr)
699 expand_expression(expr->unop);
700 return SIDE_EFFECTS;
703 static int expand_preop(struct expression *expr)
705 int cost;
707 switch (expr->op) {
708 case '*':
709 return expand_dereference(expr);
711 case '&':
712 return expand_addressof(expr);
714 case SPECIAL_INCREMENT:
715 case SPECIAL_DECREMENT:
717 * From a type evaluation standpoint the preops are
718 * the same as the postops
720 return expand_postop(expr);
722 default:
723 break;
725 cost = expand_expression(expr->unop);
727 if (simplify_preop(expr))
728 return 0;
729 if (simplify_float_preop(expr))
730 return 0;
731 return cost + 1;
734 static int expand_arguments(struct expression_list *head)
736 int cost = 0;
737 struct expression *expr;
739 FOR_EACH_PTR (head, expr) {
740 cost += expand_expression(expr);
741 } END_FOR_EACH_PTR(expr);
742 return cost;
745 static int expand_cast(struct expression *expr)
747 int cost;
748 struct expression *target = expr->cast_expression;
750 cost = expand_expression(target);
752 /* Simplify normal integer casts.. */
753 if (target->type == EXPR_VALUE || target->type == EXPR_FVALUE) {
754 cast_value(expr, expr->ctype, target, target->ctype);
755 return 0;
757 return cost + 1;
760 /* The arguments are constant if the cost of all of them is zero */
761 int expand_constant_p(struct expression *expr, int cost)
763 expr->type = EXPR_VALUE;
764 expr->value = !cost;
765 expr->taint = 0;
766 return 0;
769 /* The arguments are safe, if their cost is less than SIDE_EFFECTS */
770 int expand_safe_p(struct expression *expr, int cost)
772 expr->type = EXPR_VALUE;
773 expr->value = (cost < SIDE_EFFECTS);
774 expr->taint = 0;
775 return 0;
779 * expand a call expression with a symbol. This
780 * should expand builtins.
782 static int expand_symbol_call(struct expression *expr, int cost)
784 struct expression *fn = expr->fn;
785 struct symbol *ctype = fn->ctype;
787 if (fn->type != EXPR_PREOP)
788 return SIDE_EFFECTS;
790 if (ctype->op && ctype->op->expand)
791 return ctype->op->expand(expr, cost);
793 return SIDE_EFFECTS;
796 static int expand_call(struct expression *expr)
798 int cost;
799 struct symbol *sym;
800 struct expression *fn = expr->fn;
802 cost = expand_arguments(expr->args);
803 sym = fn->ctype;
804 if (!sym) {
805 expression_error(expr, "function has no type");
806 return SIDE_EFFECTS;
808 if (sym->type == SYM_NODE)
809 return expand_symbol_call(expr, cost);
811 return SIDE_EFFECTS;
814 static int expand_expression_list(struct expression_list *list)
816 int cost = 0;
817 struct expression *expr;
819 FOR_EACH_PTR(list, expr) {
820 cost += expand_expression(expr);
821 } END_FOR_EACH_PTR(expr);
822 return cost;
826 * We can simplify nested position expressions if
827 * this is a simple (single) positional expression.
829 static int expand_pos_expression(struct expression *expr)
831 struct expression *nested = expr->init_expr;
832 unsigned long offset = expr->init_offset;
833 int nr = expr->init_nr;
835 if (nr == 1) {
836 switch (nested->type) {
837 case EXPR_POS:
838 offset += nested->init_offset;
839 *expr = *nested;
840 expr->init_offset = offset;
841 nested = expr;
842 break;
844 case EXPR_INITIALIZER: {
845 struct expression *reuse = nested, *entry;
846 *expr = *nested;
847 FOR_EACH_PTR(expr->expr_list, entry) {
848 if (entry->type == EXPR_POS) {
849 entry->init_offset += offset;
850 } else {
851 if (!reuse) {
853 * This happens rarely, but it can happen
854 * with bitfields that are all at offset
855 * zero..
857 reuse = alloc_expression(entry->pos, EXPR_POS);
859 reuse->type = EXPR_POS;
860 reuse->ctype = entry->ctype;
861 reuse->init_offset = offset;
862 reuse->init_nr = 1;
863 reuse->init_expr = entry;
864 REPLACE_CURRENT_PTR(entry, reuse);
865 reuse = NULL;
867 } END_FOR_EACH_PTR(entry);
868 nested = expr;
869 break;
872 default:
873 break;
876 return expand_expression(nested);
879 static unsigned long bit_offset(const struct expression *expr)
881 unsigned long offset = 0;
882 while (expr->type == EXPR_POS) {
883 offset += expr->init_offset << 3;
884 expr = expr->init_expr;
886 if (expr && expr->ctype)
887 offset += expr->ctype->bit_offset;
888 return offset;
891 static int compare_expressions(const void *_a, const void *_b)
893 const struct expression *a = _a;
894 const struct expression *b = _b;
895 unsigned long a_pos = bit_offset(a);
896 unsigned long b_pos = bit_offset(b);
898 return (a_pos < b_pos) ? -1 : (a_pos == b_pos) ? 0 : 1;
901 static void sort_expression_list(struct expression_list **list)
903 sort_list((struct ptr_list **)list, compare_expressions);
906 static void verify_nonoverlapping(struct expression_list **list)
908 struct expression *a = NULL;
909 struct expression *b;
911 FOR_EACH_PTR(*list, b) {
912 if (!b->ctype || !b->ctype->bit_size)
913 continue;
914 if (a && bit_offset(a) == bit_offset(b)) {
915 sparse_error(a->pos, "Initializer entry defined twice");
916 info(b->pos, " also defined here");
917 return;
919 a = b;
920 } END_FOR_EACH_PTR(b);
923 static int expand_expression(struct expression *expr)
925 if (!expr)
926 return 0;
927 if (!expr->ctype || expr->ctype == &bad_ctype)
928 return UNSAFE;
930 switch (expr->type) {
931 case EXPR_VALUE:
932 case EXPR_FVALUE:
933 case EXPR_STRING:
934 return 0;
935 case EXPR_TYPE:
936 case EXPR_SYMBOL:
937 return expand_symbol_expression(expr);
938 case EXPR_BINOP:
939 return expand_binop(expr);
941 case EXPR_LOGICAL:
942 return expand_logical(expr);
944 case EXPR_COMMA:
945 return expand_comma(expr);
947 case EXPR_COMPARE:
948 return expand_compare(expr);
950 case EXPR_ASSIGNMENT:
951 return expand_assignment(expr);
953 case EXPR_PREOP:
954 return expand_preop(expr);
956 case EXPR_POSTOP:
957 return expand_postop(expr);
959 case EXPR_CAST:
960 case EXPR_FORCE_CAST:
961 case EXPR_IMPLIED_CAST:
962 return expand_cast(expr);
964 case EXPR_CALL:
965 return expand_call(expr);
967 case EXPR_DEREF:
968 warning(expr->pos, "we should not have an EXPR_DEREF left at expansion time");
969 return UNSAFE;
971 case EXPR_SELECT:
972 case EXPR_CONDITIONAL:
973 return expand_conditional(expr);
975 case EXPR_STATEMENT: {
976 struct statement *stmt = expr->statement;
977 int cost = expand_statement(stmt);
979 if (stmt->type == STMT_EXPRESSION && stmt->expression)
980 *expr = *stmt->expression;
981 return cost;
984 case EXPR_LABEL:
985 return 0;
987 case EXPR_INITIALIZER:
988 sort_expression_list(&expr->expr_list);
989 verify_nonoverlapping(&expr->expr_list);
990 return expand_expression_list(expr->expr_list);
992 case EXPR_IDENTIFIER:
993 return UNSAFE;
995 case EXPR_INDEX:
996 return UNSAFE;
998 case EXPR_SLICE:
999 return expand_expression(expr->base) + 1;
1001 case EXPR_POS:
1002 return expand_pos_expression(expr);
1004 case EXPR_SIZEOF:
1005 case EXPR_PTRSIZEOF:
1006 case EXPR_ALIGNOF:
1007 case EXPR_OFFSETOF:
1008 expression_error(expr, "internal front-end error: sizeof in expansion?");
1009 return UNSAFE;
1011 return SIDE_EFFECTS;
1014 static void expand_const_expression(struct expression *expr, const char *where)
1016 if (expr) {
1017 expand_expression(expr);
1018 if (expr->type != EXPR_VALUE)
1019 expression_error(expr, "Expected constant expression in %s", where);
1023 int expand_symbol(struct symbol *sym)
1025 int retval;
1026 struct symbol *base_type;
1028 if (!sym)
1029 return 0;
1030 base_type = sym->ctype.base_type;
1031 if (!base_type)
1032 return 0;
1034 retval = expand_expression(sym->initializer);
1035 /* expand the body of the symbol */
1036 if (base_type->type == SYM_FN) {
1037 if (base_type->stmt)
1038 expand_statement(base_type->stmt);
1040 return retval;
1043 static void expand_return_expression(struct statement *stmt)
1045 expand_expression(stmt->expression);
1048 static int expand_if_statement(struct statement *stmt)
1050 struct expression *expr = stmt->if_conditional;
1052 if (!expr || !expr->ctype || expr->ctype == &bad_ctype)
1053 return UNSAFE;
1055 expand_expression(expr);
1057 /* This is only valid if nobody jumps into the "dead" side */
1058 #if 0
1059 /* Simplify constant conditionals without even evaluating the false side */
1060 if (expr->type == EXPR_VALUE) {
1061 struct statement *simple;
1062 simple = expr->value ? stmt->if_true : stmt->if_false;
1064 /* Nothing? */
1065 if (!simple) {
1066 stmt->type = STMT_NONE;
1067 return 0;
1069 expand_statement(simple);
1070 *stmt = *simple;
1071 return SIDE_EFFECTS;
1073 #endif
1074 expand_statement(stmt->if_true);
1075 expand_statement(stmt->if_false);
1076 return SIDE_EFFECTS;
1080 * Expanding a compound statement is really just
1081 * about adding up the costs of each individual
1082 * statement.
1084 * We also collapse a simple compound statement:
1085 * this would trigger for simple inline functions,
1086 * except we would have to check the "return"
1087 * symbol usage. Next time.
1089 static int expand_compound(struct statement *stmt)
1091 struct statement *s, *last;
1092 int cost, statements;
1094 if (stmt->ret)
1095 expand_symbol(stmt->ret);
1097 last = stmt->args;
1098 cost = expand_statement(last);
1099 statements = last != NULL;
1100 FOR_EACH_PTR(stmt->stmts, s) {
1101 statements++;
1102 last = s;
1103 cost += expand_statement(s);
1104 } END_FOR_EACH_PTR(s);
1106 if (statements == 1 && !stmt->ret)
1107 *stmt = *last;
1109 return cost;
1112 static int expand_statement(struct statement *stmt)
1114 if (!stmt)
1115 return 0;
1117 switch (stmt->type) {
1118 case STMT_DECLARATION: {
1119 struct symbol *sym;
1120 FOR_EACH_PTR(stmt->declaration, sym) {
1121 expand_symbol(sym);
1122 } END_FOR_EACH_PTR(sym);
1123 return SIDE_EFFECTS;
1126 case STMT_RETURN:
1127 expand_return_expression(stmt);
1128 return SIDE_EFFECTS;
1130 case STMT_EXPRESSION:
1131 return expand_expression(stmt->expression);
1133 case STMT_COMPOUND:
1134 return expand_compound(stmt);
1136 case STMT_IF:
1137 return expand_if_statement(stmt);
1139 case STMT_ITERATOR:
1140 expand_expression(stmt->iterator_pre_condition);
1141 expand_expression(stmt->iterator_post_condition);
1142 expand_statement(stmt->iterator_pre_statement);
1143 expand_statement(stmt->iterator_statement);
1144 expand_statement(stmt->iterator_post_statement);
1145 return SIDE_EFFECTS;
1147 case STMT_SWITCH:
1148 expand_expression(stmt->switch_expression);
1149 expand_statement(stmt->switch_statement);
1150 return SIDE_EFFECTS;
1152 case STMT_CASE:
1153 expand_const_expression(stmt->case_expression, "case statement");
1154 expand_const_expression(stmt->case_to, "case statement");
1155 expand_statement(stmt->case_statement);
1156 return SIDE_EFFECTS;
1158 case STMT_LABEL:
1159 expand_statement(stmt->label_statement);
1160 return SIDE_EFFECTS;
1162 case STMT_GOTO:
1163 expand_expression(stmt->goto_expression);
1164 return SIDE_EFFECTS;
1166 case STMT_NONE:
1167 break;
1168 case STMT_ASM:
1169 /* FIXME! Do the asm parameter evaluation! */
1170 break;
1171 case STMT_CONTEXT:
1172 expand_expression(stmt->expression);
1173 break;
1174 case STMT_RANGE:
1175 expand_expression(stmt->range_expression);
1176 expand_expression(stmt->range_low);
1177 expand_expression(stmt->range_high);
1178 break;
1180 return SIDE_EFFECTS;
1183 static inline int bad_integer_constant_expression(struct expression *expr)
1185 if (!(expr->flags & Int_const_expr))
1186 return 1;
1187 if (expr->taint & Taint_comma)
1188 return 1;
1189 return 0;
1192 static long long __get_expression_value(struct expression *expr, int strict)
1194 long long value, mask;
1195 struct symbol *ctype;
1197 if (!expr)
1198 return 0;
1199 ctype = evaluate_expression(expr);
1200 if (!ctype) {
1201 expression_error(expr, "bad constant expression type");
1202 return 0;
1204 expand_expression(expr);
1205 if (expr->type != EXPR_VALUE) {
1206 expression_error(expr, "bad constant expression");
1207 return 0;
1209 if (strict && bad_integer_constant_expression(expr)) {
1210 expression_error(expr, "bad integer constant expression");
1211 return 0;
1214 value = expr->value;
1215 mask = 1ULL << (ctype->bit_size-1);
1217 if (value & mask) {
1218 while (ctype->type != SYM_BASETYPE)
1219 ctype = ctype->ctype.base_type;
1220 if (!(ctype->ctype.modifiers & MOD_UNSIGNED))
1221 value = value | mask | ~(mask-1);
1223 return value;
1226 long long get_expression_value(struct expression *expr)
1228 return __get_expression_value(expr, 0);
1231 long long const_expression_value(struct expression *expr)
1233 return __get_expression_value(expr, 1);
1236 int is_zero_constant(struct expression *expr)
1238 int saved = conservative;
1239 conservative = 1;
1240 expand_expression(expr);
1241 conservative = saved;
1242 return expr->type == EXPR_VALUE && !expr->value;