4 * Copyright (C) 2003 Transmeta Corp.
5 * 2003-2004 Linus Torvalds
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 * expand constant expressions.
43 #include "expression.h"
48 static int expand_expression(struct expression
*);
49 static int expand_statement(struct statement
*);
51 // If set, don't issue a warning on divide-by-0, invalid shift, ...
52 // and don't mark the expression as erroneous but leave it as-is.
53 // This allows testing some characteristics of the expression
54 // without creating any side-effects (e.g.: is_zero_constant()).
55 static int conservative
;
57 static int expand_symbol_expression(struct expression
*expr
)
59 struct symbol
*sym
= expr
->symbol
;
61 if (sym
== &zero_int
) {
63 warning(expr
->pos
, "undefined preprocessor identifier '%s'", show_ident(expr
->symbol_name
));
64 expr
->type
= EXPR_VALUE
;
70 // expand compound literals (C99 & C11 6.5.2.5)
71 // FIXME: is this the correct way to identify them?
72 // All compound literals are anonymous but is
74 if (sym
->initializer
&& !expr
->symbol_name
)
75 return expand_expression(sym
->initializer
);
77 /* The cost of a symbol expression is lower for on-stack symbols */
78 return (sym
->ctype
.modifiers
& (MOD_STATIC
| MOD_EXTERN
)) ? 2 : 1;
81 static long long get_longlong(struct expression
*expr
)
83 int no_expand
= expr
->ctype
->ctype
.modifiers
& MOD_UNSIGNED
;
84 long long mask
= 1ULL << (expr
->ctype
->bit_size
- 1);
85 long long value
= expr
->value
;
86 long long ormask
, andmask
;
90 andmask
= mask
| (mask
-1);
94 return (value
& andmask
) | ormask
;
97 void cast_value(struct expression
*expr
, struct symbol
*newtype
,
98 struct expression
*old
, struct symbol
*oldtype
)
100 int old_size
= oldtype
->bit_size
;
101 int new_size
= newtype
->bit_size
;
102 long long value
, mask
, signmask
;
103 long long oldmask
, oldsignmask
, dropped
;
105 if (is_float_type(newtype
) || is_float_type(oldtype
))
108 // For pointers and integers, we can just move the value around
109 expr
->type
= EXPR_VALUE
;
110 expr
->taint
= old
->taint
;
111 if (old_size
== new_size
) {
112 expr
->value
= old
->value
;
116 // expand it to the full "long long" value
117 value
= get_longlong(old
);
120 // _Bool requires a zero test rather than truncation.
121 if (is_bool_type(newtype
)) {
122 expr
->value
= !!value
;
123 if (!conservative
&& value
!= 0 && value
!= 1)
124 warning(old
->pos
, "odd constant _Bool cast (%llx becomes 1)", value
);
128 // Truncate it to the new size
129 signmask
= 1ULL << (new_size
-1);
130 mask
= signmask
| (signmask
-1);
131 expr
->value
= value
& mask
;
133 // Stop here unless checking for truncation
134 if (!Wcast_truncate
|| conservative
)
137 // Check if we dropped any bits..
138 oldsignmask
= 1ULL << (old_size
-1);
139 oldmask
= oldsignmask
| (oldsignmask
-1);
140 dropped
= oldmask
& ~mask
;
142 // OK if the bits were (and still are) purely sign bits
143 if (value
& dropped
) {
144 if (!(value
& oldsignmask
) || !(value
& signmask
) || (value
& dropped
) != dropped
)
145 warning(old
->pos
, "cast truncates bits from constant value (%llx becomes %llx)",
152 if (!is_float_type(newtype
)) {
153 value
= (long long)old
->fvalue
;
154 expr
->type
= EXPR_VALUE
;
159 if (!is_float_type(oldtype
))
160 expr
->fvalue
= (long double)get_longlong(old
);
162 expr
->fvalue
= old
->fvalue
;
164 if (newtype
->rank
<= 0) {
165 if (newtype
->rank
== 0)
166 expr
->fvalue
= (double)expr
->fvalue
;
168 expr
->fvalue
= (float)expr
->fvalue
;
170 expr
->type
= EXPR_FVALUE
;
173 /* Return true if constant shift size is valid */
174 static bool check_shift_count(struct expression
*expr
, struct expression
*right
)
176 struct symbol
*ctype
= expr
->ctype
;
177 long long count
= get_longlong(right
);
179 if (count
>= 0 && count
< ctype
->bit_size
)
185 * CAREFUL! We need to get the size and sign of the
188 #define CONVERT(op,s) (((op)<<1)+(s))
189 #define SIGNED(op) CONVERT(op, 1)
190 #define UNSIGNED(op) CONVERT(op, 0)
191 static int simplify_int_binop(struct expression
*expr
, struct symbol
*ctype
)
193 struct expression
*left
= expr
->left
, *right
= expr
->right
;
194 unsigned long long v
, l
, r
, mask
;
195 signed long long sl
, sr
;
198 if (right
->type
!= EXPR_VALUE
)
201 if (expr
->op
== SPECIAL_LEFTSHIFT
|| expr
->op
== SPECIAL_RIGHTSHIFT
) {
202 if (!check_shift_count(expr
, right
))
205 if (left
->type
!= EXPR_VALUE
)
207 l
= left
->value
; r
= right
->value
;
208 is_signed
= !(ctype
->ctype
.modifiers
& MOD_UNSIGNED
);
209 mask
= 1ULL << (ctype
->bit_size
-1);
211 if (is_signed
&& (sl
& mask
))
213 if (is_signed
&& (sr
& mask
))
216 switch (CONVERT(expr
->op
,is_signed
)) {
253 if (l
== mask
&& sr
== -1)
266 if (l
== mask
&& sr
== -1)
276 case SIGNED(SPECIAL_LEFTSHIFT
):
277 case UNSIGNED(SPECIAL_LEFTSHIFT
):
281 case SIGNED(SPECIAL_RIGHTSHIFT
):
285 case UNSIGNED(SPECIAL_RIGHTSHIFT
):
292 mask
= mask
| (mask
-1);
293 expr
->value
= v
& mask
;
294 expr
->type
= EXPR_VALUE
;
295 expr
->taint
= left
->taint
| right
->taint
;
299 warning(expr
->pos
, "division by zero");
303 warning(expr
->pos
, "constant integer operation overflow");
307 static int simplify_cmp_binop(struct expression
*expr
, struct symbol
*ctype
)
309 struct expression
*left
= expr
->left
, *right
= expr
->right
;
310 unsigned long long l
, r
, mask
;
311 signed long long sl
, sr
;
313 if (left
->type
!= EXPR_VALUE
|| right
->type
!= EXPR_VALUE
)
315 l
= left
->value
; r
= right
->value
;
316 mask
= 1ULL << (ctype
->bit_size
-1);
323 case '<': expr
->value
= sl
< sr
; break;
324 case '>': expr
->value
= sl
> sr
; break;
325 case SPECIAL_LTE
: expr
->value
= sl
<= sr
; break;
326 case SPECIAL_GTE
: expr
->value
= sl
>= sr
; break;
327 case SPECIAL_EQUAL
: expr
->value
= l
== r
; break;
328 case SPECIAL_NOTEQUAL
: expr
->value
= l
!= r
; break;
329 case SPECIAL_UNSIGNED_LT
:expr
->value
= l
< r
; break;
330 case SPECIAL_UNSIGNED_GT
:expr
->value
= l
> r
; break;
331 case SPECIAL_UNSIGNED_LTE
:expr
->value
= l
<= r
; break;
332 case SPECIAL_UNSIGNED_GTE
:expr
->value
= l
>= r
; break;
334 expr
->type
= EXPR_VALUE
;
335 expr
->taint
= left
->taint
| right
->taint
;
339 static int simplify_float_binop(struct expression
*expr
)
341 struct expression
*left
= expr
->left
, *right
= expr
->right
;
342 int rank
= expr
->ctype
->rank
;
343 long double l
, r
, res
;
345 if (left
->type
!= EXPR_FVALUE
|| right
->type
!= EXPR_FVALUE
)
353 case '+': res
= l
+ r
; break;
354 case '-': res
= l
- r
; break;
355 case '*': res
= l
* r
; break;
356 case '/': if (!r
) goto Div
;
360 } else if (rank
== 0) {
362 case '+': res
= (double) l
+ (double) r
; break;
363 case '-': res
= (double) l
- (double) r
; break;
364 case '*': res
= (double) l
* (double) r
; break;
365 case '/': if (!r
) goto Div
;
366 res
= (double) l
/ (double) r
; break;
371 case '+': res
= (float)l
+ (float)r
; break;
372 case '-': res
= (float)l
- (float)r
; break;
373 case '*': res
= (float)l
* (float)r
; break;
374 case '/': if (!r
) goto Div
;
375 res
= (float)l
/ (float)r
; break;
379 expr
->type
= EXPR_FVALUE
;
384 warning(expr
->pos
, "division by zero");
388 static int simplify_float_cmp(struct expression
*expr
, struct symbol
*ctype
)
390 struct expression
*left
= expr
->left
, *right
= expr
->right
;
393 if (left
->type
!= EXPR_FVALUE
|| right
->type
!= EXPR_FVALUE
)
399 case '<': expr
->value
= l
< r
; break;
400 case '>': expr
->value
= l
> r
; break;
401 case SPECIAL_LTE
: expr
->value
= l
<= r
; break;
402 case SPECIAL_GTE
: expr
->value
= l
>= r
; break;
403 case SPECIAL_EQUAL
: expr
->value
= l
== r
; break;
404 case SPECIAL_NOTEQUAL
: expr
->value
= l
!= r
; break;
406 expr
->type
= EXPR_VALUE
;
411 static int expand_binop(struct expression
*expr
)
415 cost
= expand_expression(expr
->left
);
416 cost
+= expand_expression(expr
->right
);
417 if (simplify_int_binop(expr
, expr
->ctype
))
419 if (simplify_float_binop(expr
))
424 static int expand_logical(struct expression
*expr
)
426 struct expression
*left
= expr
->left
;
427 struct expression
*right
;
430 /* Do immediate short-circuiting ... */
431 cost
= expand_expression(left
);
432 if (left
->type
== EXPR_VALUE
) {
433 if (expr
->op
== SPECIAL_LOGICAL_AND
) {
435 expr
->type
= EXPR_VALUE
;
437 expr
->taint
= left
->taint
;
442 expr
->type
= EXPR_VALUE
;
444 expr
->taint
= left
->taint
;
451 rcost
= expand_expression(right
);
452 if (left
->type
== EXPR_VALUE
&& right
->type
== EXPR_VALUE
) {
454 * We know the left value doesn't matter, since
455 * otherwise we would have short-circuited it..
457 expr
->type
= EXPR_VALUE
;
458 expr
->value
= right
->value
!= 0;
459 expr
->taint
= left
->taint
| right
->taint
;
464 * If the right side is safe and cheaper than a branch,
465 * just avoid the branch and turn it into a regular binop
468 if (rcost
< BRANCH_COST
) {
469 expr
->type
= EXPR_BINOP
;
470 rcost
-= BRANCH_COST
- 1;
473 return cost
+ BRANCH_COST
+ rcost
;
476 static int expand_comma(struct expression
*expr
)
480 cost
= expand_expression(expr
->left
);
481 cost
+= expand_expression(expr
->right
);
482 if (expr
->left
->type
== EXPR_VALUE
|| expr
->left
->type
== EXPR_FVALUE
) {
483 unsigned flags
= expr
->flags
;
485 taint
= expr
->left
->type
== EXPR_VALUE
? expr
->left
->taint
: 0;
486 *expr
= *expr
->right
;
488 if (expr
->type
== EXPR_VALUE
)
489 expr
->taint
|= Taint_comma
| taint
;
494 #define MOD_IGN (MOD_QUALIFIER)
496 static int compare_types(int op
, struct symbol
*left
, struct symbol
*right
)
498 struct ctype c1
= {.base_type
= left
};
499 struct ctype c2
= {.base_type
= right
};
502 return !type_difference(&c1
, &c2
, MOD_IGN
, MOD_IGN
);
503 case SPECIAL_NOTEQUAL
:
504 return type_difference(&c1
, &c2
, MOD_IGN
, MOD_IGN
) != NULL
;
506 return left
->bit_size
< right
->bit_size
;
508 return left
->bit_size
> right
->bit_size
;
510 return left
->bit_size
<= right
->bit_size
;
512 return left
->bit_size
>= right
->bit_size
;
517 static int expand_compare(struct expression
*expr
)
519 struct expression
*left
= expr
->left
, *right
= expr
->right
;
522 cost
= expand_expression(left
);
523 cost
+= expand_expression(right
);
526 /* Type comparison? */
527 if (left
->type
== EXPR_TYPE
&& right
->type
== EXPR_TYPE
) {
529 expr
->type
= EXPR_VALUE
;
530 expr
->value
= compare_types(op
, left
->symbol
, right
->symbol
);
534 if (simplify_cmp_binop(expr
, left
->ctype
))
536 if (simplify_float_cmp(expr
, left
->ctype
))
542 static int expand_conditional(struct expression
*expr
)
544 struct expression
*cond
= expr
->conditional
;
545 struct expression
*valt
= expr
->cond_true
;
546 struct expression
*valf
= expr
->cond_false
;
549 cond_cost
= expand_expression(cond
);
550 if (cond
->type
== EXPR_VALUE
) {
551 unsigned flags
= expr
->flags
;
556 cost
= expand_expression(valt
);
559 if (expr
->type
== EXPR_VALUE
)
560 expr
->taint
|= cond
->taint
;
564 cost
= expand_expression(valt
);
565 cost
+= expand_expression(valf
);
567 if (cost
< SELECT_COST
) {
568 expr
->type
= EXPR_SELECT
;
569 cost
-= BRANCH_COST
- 1;
572 return cost
+ cond_cost
+ BRANCH_COST
;
575 static void check_assignment(struct expression
*expr
)
577 struct expression
*right
;
580 case SPECIAL_SHL_ASSIGN
:
581 case SPECIAL_SHR_ASSIGN
:
583 if (right
->type
!= EXPR_VALUE
)
585 check_shift_count(expr
, right
);
591 static int expand_assignment(struct expression
*expr
)
593 expand_expression(expr
->left
);
594 expand_expression(expr
->right
);
597 check_assignment(expr
);
601 static int expand_addressof(struct expression
*expr
)
603 return expand_expression(expr
->unop
);
607 // lookup the type of a struct's memeber at the requested offset
608 static struct symbol
*find_member(struct symbol
*sym
, int offset
)
610 struct ptr_list
*head
, *list
;
612 head
= (struct ptr_list
*) sym
->symbol_list
;
619 for (i
= 0; i
< nr
; i
++) {
620 struct symbol
*ent
= (struct symbol
*) list
->list
[i
];
621 int curr
= ent
->offset
;
627 } while ((list
= list
->next
) != head
);
632 // lookup a suitable default initializer value at the requested offset
633 static struct expression
*default_initializer(struct symbol
*sym
, int offset
)
635 static struct expression value
;
641 sym
= sym
->ctype
.base_type
;
644 type
= find_member(sym
, offset
);
649 type
= sym
->ctype
.base_type
;
655 if (is_integral_type(type
))
656 value
.type
= EXPR_VALUE
;
657 else if (is_float_type(type
))
658 value
.type
= EXPR_FVALUE
;
667 * Look up a trustable initializer value at the requested offset.
669 * Return NULL if no such value can be found or statically trusted.
671 static struct expression
*constant_symbol_value(struct symbol
*sym
, int offset
)
673 struct expression
*value
;
675 if (sym
->ctype
.modifiers
& MOD_ACCESS
)
677 value
= sym
->initializer
;
680 if (value
->type
== EXPR_INITIALIZER
) {
681 struct expression
*entry
;
682 FOR_EACH_PTR(value
->expr_list
, entry
) {
683 if (entry
->type
!= EXPR_POS
) {
688 if (entry
->init_offset
< offset
)
690 if (entry
->init_offset
> offset
)
692 return entry
->init_expr
;
693 } END_FOR_EACH_PTR(entry
);
695 value
= default_initializer(sym
, offset
);
700 static int expand_dereference(struct expression
*expr
)
702 struct expression
*unop
= expr
->unop
;
705 expand_expression(unop
);
708 * NOTE! We get a bogus warning right now for some special
709 * cases: apparently I've screwed up the optimization of
710 * a zero-offset dereference, and the ctype is wrong.
712 * Leave the warning in anyway, since this is also a good
713 * test for me to get the type evaluation right..
715 if (expr
->ctype
->ctype
.modifiers
& MOD_NODEREF
)
716 warning(unop
->pos
, "dereference of noderef expression");
719 * Is it "symbol" or "symbol + offset"?
722 while (unop
->type
== EXPR_BINOP
&& unop
->op
== '+') {
723 struct expression
*right
= unop
->right
;
724 if (right
->type
!= EXPR_VALUE
)
726 offset
+= right
->value
;
730 if (unop
->type
== EXPR_SYMBOL
) {
731 struct symbol
*sym
= unop
->symbol
;
732 struct symbol
*ctype
= expr
->ctype
;
733 struct expression
*value
= constant_symbol_value(sym
, offset
);
735 /* Const symbol with a constant initializer? */
736 if (value
&& value
->ctype
) {
737 if (ctype
->bit_size
!= value
->ctype
->bit_size
)
739 if (value
->type
== EXPR_VALUE
) {
740 if (!is_integral_type(ctype
))
742 if (is_bitfield_type(value
->ctype
))
744 expr
->type
= EXPR_VALUE
;
745 expr
->value
= value
->value
;
748 } else if (value
->type
== EXPR_FVALUE
) {
749 if (!is_float_type(ctype
))
751 expr
->type
= EXPR_FVALUE
;
752 expr
->fvalue
= value
->fvalue
;
757 /* Direct symbol dereference? Cheap and safe */
758 return (sym
->ctype
.modifiers
& (MOD_STATIC
| MOD_EXTERN
)) ? 2 : 1;
764 static int simplify_preop(struct expression
*expr
)
766 struct expression
*op
= expr
->unop
;
767 unsigned long long v
, mask
;
769 if (op
->type
!= EXPR_VALUE
)
772 mask
= 1ULL << (expr
->ctype
->bit_size
-1);
777 if (v
== mask
&& !(expr
->ctype
->ctype
.modifiers
& MOD_UNSIGNED
))
781 case '!': v
= !v
; break;
782 case '~': v
= ~v
; break;
785 mask
= mask
| (mask
-1);
786 expr
->value
= v
& mask
;
787 expr
->type
= EXPR_VALUE
;
788 expr
->taint
= op
->taint
;
793 warning(expr
->pos
, "constant integer operation overflow");
797 static int simplify_float_preop(struct expression
*expr
)
799 struct expression
*op
= expr
->unop
;
802 if (op
->type
!= EXPR_FVALUE
)
807 case '-': v
= -v
; break;
811 expr
->type
= EXPR_FVALUE
;
816 * Unary post-ops: x++ and x--
818 static int expand_postop(struct expression
*expr
)
820 expand_expression(expr
->unop
);
824 static int expand_preop(struct expression
*expr
)
830 return expand_dereference(expr
);
833 return expand_addressof(expr
);
835 case SPECIAL_INCREMENT
:
836 case SPECIAL_DECREMENT
:
838 * From a type evaluation standpoint the preops are
839 * the same as the postops
841 return expand_postop(expr
);
846 cost
= expand_expression(expr
->unop
);
848 if (simplify_preop(expr
))
850 if (simplify_float_preop(expr
))
855 static int expand_arguments(struct expression_list
*head
)
858 struct expression
*expr
;
860 FOR_EACH_PTR (head
, expr
) {
861 cost
+= expand_expression(expr
);
862 } END_FOR_EACH_PTR(expr
);
866 static int expand_cast(struct expression
*expr
)
869 struct expression
*target
= expr
->cast_expression
;
871 cost
= expand_expression(target
);
873 /* Simplify normal integer casts.. */
874 if (target
->type
== EXPR_VALUE
|| target
->type
== EXPR_FVALUE
) {
875 cast_value(expr
, expr
->ctype
, target
, target
->ctype
);
882 * expand a call expression with a symbol. This
883 * should expand builtins.
885 static int expand_symbol_call(struct expression
*expr
, int cost
)
887 struct expression
*fn
= expr
->fn
;
888 struct symbol
*ctype
= fn
->ctype
;
890 expand_expression(fn
);
892 if (fn
->type
!= EXPR_PREOP
)
895 if (ctype
->ctype
.modifiers
& MOD_INLINE
) {
898 def
= ctype
->definition
? ctype
->definition
: ctype
;
899 if (inline_function(expr
, def
)) {
900 struct symbol
*fn
= def
->ctype
.base_type
;
901 struct symbol
*curr
= current_fn
;
904 evaluate_statement(expr
->statement
);
908 cost
= expand_expression(expr
);
914 if (ctype
->op
&& ctype
->op
->expand
)
915 return ctype
->op
->expand(expr
, cost
);
917 if (ctype
->ctype
.modifiers
& MOD_PURE
)
923 static int expand_call(struct expression
*expr
)
927 struct expression
*fn
= expr
->fn
;
929 cost
= expand_arguments(expr
->args
);
932 expression_error(expr
, "function has no type");
935 if (sym
->type
== SYM_NODE
)
936 return expand_symbol_call(expr
, cost
);
941 static int expand_expression_list(struct expression_list
*list
)
944 struct expression
*expr
;
946 FOR_EACH_PTR(list
, expr
) {
947 cost
+= expand_expression(expr
);
948 } END_FOR_EACH_PTR(expr
);
953 * We can simplify nested position expressions if
954 * this is a simple (single) positional expression.
956 static int expand_pos_expression(struct expression
*expr
)
958 struct expression
*nested
= expr
->init_expr
;
959 unsigned long offset
= expr
->init_offset
;
960 int nr
= expr
->init_nr
;
963 switch (nested
->type
) {
965 offset
+= nested
->init_offset
;
967 expr
->init_offset
= offset
;
971 case EXPR_INITIALIZER
: {
972 struct expression
*reuse
= nested
, *entry
;
974 FOR_EACH_PTR(expr
->expr_list
, entry
) {
975 if (entry
->type
== EXPR_POS
) {
976 entry
->init_offset
+= offset
;
980 * This happens rarely, but it can happen
981 * with bitfields that are all at offset
984 reuse
= alloc_expression(entry
->pos
, EXPR_POS
);
986 reuse
->type
= EXPR_POS
;
987 reuse
->ctype
= entry
->ctype
;
988 reuse
->init_offset
= offset
;
990 reuse
->init_expr
= entry
;
991 REPLACE_CURRENT_PTR(entry
, reuse
);
994 } END_FOR_EACH_PTR(entry
);
1003 return expand_expression(nested
);
1006 static unsigned long bit_offset(const struct expression
*expr
)
1008 unsigned long offset
= 0;
1009 while (expr
->type
== EXPR_POS
) {
1010 offset
+= bytes_to_bits(expr
->init_offset
);
1011 expr
= expr
->init_expr
;
1013 if (expr
&& expr
->ctype
)
1014 offset
+= expr
->ctype
->bit_offset
;
1018 static unsigned long bit_range(const struct expression
*expr
)
1020 unsigned long range
= 0;
1021 unsigned long size
= 0;
1022 while (expr
->type
== EXPR_POS
) {
1023 unsigned long nr
= expr
->init_nr
;
1024 size
= expr
->ctype
->bit_size
;
1025 range
+= (nr
- 1) * size
;
1026 expr
= expr
->init_expr
;
1032 static int compare_expressions(const void *_a
, const void *_b
)
1034 const struct expression
*a
= _a
;
1035 const struct expression
*b
= _b
;
1036 unsigned long a_pos
= bit_offset(a
);
1037 unsigned long b_pos
= bit_offset(b
);
1039 return (a_pos
< b_pos
) ? -1 : (a_pos
== b_pos
) ? 0 : 1;
1042 static void sort_expression_list(struct expression_list
**list
)
1044 sort_list((struct ptr_list
**)list
, compare_expressions
);
1047 static void verify_nonoverlapping(struct expression_list
**list
, struct expression
*expr
)
1049 struct expression
*a
= NULL
;
1050 unsigned long max
= 0;
1051 unsigned long whole
= expr
->ctype
->bit_size
;
1052 struct expression
*b
;
1054 if (!Woverride_init
)
1057 FOR_EACH_PTR(*list
, b
) {
1058 unsigned long off
, end
;
1059 if (!b
->ctype
|| !b
->ctype
->bit_size
)
1061 off
= bit_offset(b
);
1062 if (a
&& off
< max
) {
1063 warning(a
->pos
, "Initializer entry defined twice");
1064 info(b
->pos
, " also defined here");
1065 if (!Woverride_init_all
)
1068 end
= off
+ bit_range(b
);
1069 if (!a
&& !Woverride_init_whole_range
) {
1070 // If first entry is the whole range, do not let
1071 // any warning about it (this allow to initialize
1072 // an array with some default value and then override
1073 // some specific entries).
1074 if (off
== 0 && end
== whole
)
1081 } END_FOR_EACH_PTR(b
);
1084 static int expand_expression(struct expression
*expr
)
1088 if (!expr
->ctype
|| expr
->ctype
== &bad_ctype
)
1091 switch (expr
->type
) {
1098 return expand_symbol_expression(expr
);
1100 return expand_binop(expr
);
1103 return expand_logical(expr
);
1106 return expand_comma(expr
);
1109 return expand_compare(expr
);
1111 case EXPR_ASSIGNMENT
:
1112 return expand_assignment(expr
);
1115 return expand_preop(expr
);
1118 return expand_postop(expr
);
1121 case EXPR_FORCE_CAST
:
1122 case EXPR_IMPLIED_CAST
:
1123 return expand_cast(expr
);
1126 return expand_call(expr
);
1129 warning(expr
->pos
, "we should not have an EXPR_DEREF left at expansion time");
1133 case EXPR_CONDITIONAL
:
1134 return expand_conditional(expr
);
1136 case EXPR_STATEMENT
: {
1137 struct statement
*stmt
= expr
->statement
;
1138 int cost
= expand_statement(stmt
);
1140 if (stmt
->type
== STMT_EXPRESSION
&& stmt
->expression
)
1141 *expr
= *stmt
->expression
;
1148 case EXPR_INITIALIZER
:
1149 sort_expression_list(&expr
->expr_list
);
1150 verify_nonoverlapping(&expr
->expr_list
, expr
);
1151 return expand_expression_list(expr
->expr_list
);
1153 case EXPR_IDENTIFIER
:
1160 return expand_expression(expr
->base
) + 1;
1163 return expand_pos_expression(expr
);
1167 case EXPR_PTRSIZEOF
:
1170 expression_error(expr
, "internal front-end error: sizeof in expansion?");
1173 return SIDE_EFFECTS
;
1176 static void expand_const_expression(struct expression
*expr
, const char *where
)
1179 expand_expression(expr
);
1180 if (expr
->type
!= EXPR_VALUE
) {
1181 expression_error(expr
, "Expected constant expression in %s", where
);
1182 expr
->ctype
= &int_ctype
;
1183 expr
->type
= EXPR_VALUE
;
1189 int expand_symbol(struct symbol
*sym
)
1192 struct symbol
*base_type
;
1196 base_type
= sym
->ctype
.base_type
;
1200 retval
= expand_expression(sym
->initializer
);
1201 /* expand the body of the symbol */
1202 if (base_type
->type
== SYM_FN
) {
1203 if (base_type
->stmt
)
1204 expand_statement(base_type
->stmt
);
1209 static void expand_return_expression(struct statement
*stmt
)
1211 expand_expression(stmt
->expression
);
1214 static int expand_if_statement(struct statement
*stmt
)
1216 struct expression
*expr
= stmt
->if_conditional
;
1218 if (!expr
|| !expr
->ctype
|| expr
->ctype
== &bad_ctype
)
1221 expand_expression(expr
);
1223 /* This is only valid if nobody jumps into the "dead" side */
1225 /* Simplify constant conditionals without even evaluating the false side */
1226 if (expr
->type
== EXPR_VALUE
) {
1227 struct statement
*simple
;
1228 simple
= expr
->value
? stmt
->if_true
: stmt
->if_false
;
1232 stmt
->type
= STMT_NONE
;
1235 expand_statement(simple
);
1237 return SIDE_EFFECTS
;
1240 expand_statement(stmt
->if_true
);
1241 expand_statement(stmt
->if_false
);
1242 return SIDE_EFFECTS
;
1245 static int expand_asm_statement(struct statement
*stmt
)
1247 struct asm_operand
*op
;
1250 FOR_EACH_PTR(stmt
->asm_outputs
, op
) {
1251 cost
+= expand_expression(op
->expr
);
1252 } END_FOR_EACH_PTR(op
);
1254 FOR_EACH_PTR(stmt
->asm_inputs
, op
) {
1255 cost
+= expand_expression(op
->expr
);
1256 } END_FOR_EACH_PTR(op
);
1262 * Expanding a compound statement is really just
1263 * about adding up the costs of each individual
1266 * We also collapse a simple compound statement:
1267 * this would trigger for simple inline functions,
1268 * except we would have to check the "return"
1269 * symbol usage. Next time.
1271 static int expand_compound(struct statement
*stmt
)
1273 struct statement
*s
, *last
;
1274 int cost
, statements
;
1277 expand_symbol(stmt
->ret
);
1280 cost
= expand_statement(last
);
1281 statements
= last
!= NULL
;
1282 FOR_EACH_PTR(stmt
->stmts
, s
) {
1285 cost
+= expand_statement(s
);
1286 } END_FOR_EACH_PTR(s
);
1288 if (statements
== 1 && !stmt
->ret
)
1294 static int expand_statement(struct statement
*stmt
)
1299 switch (stmt
->type
) {
1300 case STMT_DECLARATION
: {
1302 FOR_EACH_PTR(stmt
->declaration
, sym
) {
1304 } END_FOR_EACH_PTR(sym
);
1305 return SIDE_EFFECTS
;
1309 expand_return_expression(stmt
);
1310 return SIDE_EFFECTS
;
1312 case STMT_EXPRESSION
:
1313 return expand_expression(stmt
->expression
);
1316 return expand_compound(stmt
);
1319 return expand_if_statement(stmt
);
1322 expand_expression(stmt
->iterator_pre_condition
);
1323 expand_expression(stmt
->iterator_post_condition
);
1324 expand_statement(stmt
->iterator_pre_statement
);
1325 expand_statement(stmt
->iterator_statement
);
1326 expand_statement(stmt
->iterator_post_statement
);
1327 return SIDE_EFFECTS
;
1330 expand_expression(stmt
->switch_expression
);
1331 expand_statement(stmt
->switch_statement
);
1332 return SIDE_EFFECTS
;
1335 expand_const_expression(stmt
->case_expression
, "case statement");
1336 expand_const_expression(stmt
->case_to
, "case statement");
1337 expand_statement(stmt
->case_statement
);
1338 return SIDE_EFFECTS
;
1341 expand_statement(stmt
->label_statement
);
1342 return SIDE_EFFECTS
;
1345 expand_expression(stmt
->goto_expression
);
1346 return SIDE_EFFECTS
;
1351 expand_asm_statement(stmt
);
1354 expand_expression(stmt
->expression
);
1357 expand_expression(stmt
->range_expression
);
1358 expand_expression(stmt
->range_low
);
1359 expand_expression(stmt
->range_high
);
1362 return SIDE_EFFECTS
;
1365 static inline int bad_integer_constant_expression(struct expression
*expr
)
1367 if (!(expr
->flags
& CEF_ICE
))
1369 if (expr
->taint
& Taint_comma
)
1374 static long long __get_expression_value(struct expression
*expr
, int strict
)
1376 long long value
, mask
;
1377 struct symbol
*ctype
;
1381 ctype
= evaluate_expression(expr
);
1383 expression_error(expr
, "bad constant expression type");
1386 expand_expression(expr
);
1387 if (expr
->type
!= EXPR_VALUE
) {
1389 expression_error(expr
, "bad constant expression");
1392 #if 0 // This complains about "1 ? 1 :__bits_per()" which the kernel use
1393 if ((strict
== 1) && bad_integer_constant_expression(expr
)) {
1394 expression_error(expr
, "bad integer constant expression");
1399 value
= expr
->value
;
1400 mask
= 1ULL << (ctype
->bit_size
-1);
1403 while (ctype
->type
!= SYM_BASETYPE
)
1404 ctype
= ctype
->ctype
.base_type
;
1405 if (!(ctype
->ctype
.modifiers
& MOD_UNSIGNED
))
1406 value
= value
| mask
| ~(mask
-1);
1411 long long get_expression_value(struct expression
*expr
)
1413 return __get_expression_value(expr
, 0);
1416 long long const_expression_value(struct expression
*expr
)
1418 return __get_expression_value(expr
, 1);
1421 long long get_expression_value_silent(struct expression
*expr
)
1424 return __get_expression_value(expr
, 2);
1427 int expr_truth_value(struct expression
*expr
)
1429 const int saved
= conservative
;
1430 struct symbol
*ctype
;
1435 ctype
= evaluate_expression(expr
);
1440 expand_expression(expr
);
1441 conservative
= saved
;
1444 switch (expr
->type
) {
1449 return expr
->value
!= 0;
1451 return expr
->fvalue
!= 0;
1457 int is_zero_constant(struct expression
*expr
)
1459 const int saved
= conservative
;
1461 expand_expression(expr
);
1462 conservative
= saved
;
1463 return expr
->type
== EXPR_VALUE
&& !expr
->value
;