1 /* Build expressions with type checking for C compiler.
2 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
23 /* This file is part of the C front end.
24 It contains routines to build C expressions given their operands,
25 including computing the types of the result, C-specific error checks,
26 and some optimization. */
30 #include "coretypes.h"
34 #include "langhooks.h"
44 #include "tree-iterator.h"
45 #include "tree-gimple.h"
48 /* Nonzero if we've already printed a "missing braces around initializer"
49 message within this initializer. */
50 static int missing_braces_mentioned
;
52 static int require_constant_value
;
53 static int require_constant_elements
;
55 static tree
qualify_type (tree
, tree
);
56 static int tagged_types_tu_compatible_p (tree
, tree
);
57 static int comp_target_types (tree
, tree
, int);
58 static int function_types_compatible_p (tree
, tree
);
59 static int type_lists_compatible_p (tree
, tree
);
60 static tree
decl_constant_value_for_broken_optimization (tree
);
61 static tree
default_function_array_conversion (tree
);
62 static tree
lookup_field (tree
, tree
);
63 static tree
convert_arguments (tree
, tree
, tree
, tree
);
64 static tree
pointer_diff (tree
, tree
);
65 static tree
convert_for_assignment (tree
, tree
, const char *, tree
, tree
,
67 static void warn_for_assignment (const char *, const char *, tree
, int);
68 static tree
valid_compound_expr_initializer (tree
, tree
);
69 static void push_string (const char *);
70 static void push_member_name (tree
);
71 static void push_array_bounds (int);
72 static int spelling_length (void);
73 static char *print_spelling (char *);
74 static void warning_init (const char *);
75 static tree
digest_init (tree
, tree
, bool, int);
76 static void output_init_element (tree
, bool, tree
, tree
, int);
77 static void output_pending_init_elements (int);
78 static int set_designator (int);
79 static void push_range_stack (tree
);
80 static void add_pending_init (tree
, tree
);
81 static void set_nonincremental_init (void);
82 static void set_nonincremental_init_from_string (tree
);
83 static tree
find_init_member (tree
);
84 static int lvalue_or_else (tree
, const char *);
86 /* Do `exp = require_complete_type (exp);' to make sure exp
87 does not have an incomplete type. (That includes void types.) */
90 require_complete_type (tree value
)
92 tree type
= TREE_TYPE (value
);
94 if (value
== error_mark_node
|| type
== error_mark_node
)
95 return error_mark_node
;
97 /* First, detect a valid value with a complete type. */
98 if (COMPLETE_TYPE_P (type
))
101 c_incomplete_type_error (value
, type
);
102 return error_mark_node
;
105 /* Print an error message for invalid use of an incomplete type.
106 VALUE is the expression that was used (or 0 if that isn't known)
107 and TYPE is the type that was invalid. */
110 c_incomplete_type_error (tree value
, tree type
)
112 const char *type_code_string
;
114 /* Avoid duplicate error message. */
115 if (TREE_CODE (type
) == ERROR_MARK
)
118 if (value
!= 0 && (TREE_CODE (value
) == VAR_DECL
119 || TREE_CODE (value
) == PARM_DECL
))
120 error ("`%s' has an incomplete type",
121 IDENTIFIER_POINTER (DECL_NAME (value
)));
125 /* We must print an error message. Be clever about what it says. */
127 switch (TREE_CODE (type
))
130 type_code_string
= "struct";
134 type_code_string
= "union";
138 type_code_string
= "enum";
142 error ("invalid use of void expression");
146 if (TYPE_DOMAIN (type
))
148 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) == NULL
)
150 error ("invalid use of flexible array member");
153 type
= TREE_TYPE (type
);
156 error ("invalid use of array with unspecified bounds");
163 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
164 error ("invalid use of undefined type `%s %s'",
165 type_code_string
, IDENTIFIER_POINTER (TYPE_NAME (type
)));
167 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
168 error ("invalid use of incomplete typedef `%s'",
169 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type
))));
173 /* Given a type, apply default promotions wrt unnamed function
174 arguments and return the new type. */
177 c_type_promotes_to (tree type
)
179 if (TYPE_MAIN_VARIANT (type
) == float_type_node
)
180 return double_type_node
;
182 if (c_promoting_integer_type_p (type
))
184 /* Preserve unsignedness if not really getting any wider. */
185 if (TYPE_UNSIGNED (type
)
186 && (TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
)))
187 return unsigned_type_node
;
188 return integer_type_node
;
194 /* Return a variant of TYPE which has all the type qualifiers of LIKE
195 as well as those of TYPE. */
198 qualify_type (tree type
, tree like
)
200 return c_build_qualified_type (type
,
201 TYPE_QUALS (type
) | TYPE_QUALS (like
));
204 /* Return the composite type of two compatible types.
206 We assume that comptypes has already been done and returned
207 nonzero; if that isn't so, this may crash. In particular, we
208 assume that qualifiers match. */
211 composite_type (tree t1
, tree t2
)
213 enum tree_code code1
;
214 enum tree_code code2
;
217 /* Save time if the two types are the same. */
219 if (t1
== t2
) return t1
;
221 /* If one type is nonsense, use the other. */
222 if (t1
== error_mark_node
)
224 if (t2
== error_mark_node
)
227 code1
= TREE_CODE (t1
);
228 code2
= TREE_CODE (t2
);
230 /* Merge the attributes. */
231 attributes
= targetm
.merge_type_attributes (t1
, t2
);
233 /* If one is an enumerated type and the other is the compatible
234 integer type, the composite type might be either of the two
235 (DR#013 question 3). For consistency, use the enumerated type as
236 the composite type. */
238 if (code1
== ENUMERAL_TYPE
&& code2
== INTEGER_TYPE
)
240 if (code2
== ENUMERAL_TYPE
&& code1
== INTEGER_TYPE
)
249 /* For two pointers, do this recursively on the target type. */
251 tree pointed_to_1
= TREE_TYPE (t1
);
252 tree pointed_to_2
= TREE_TYPE (t2
);
253 tree target
= composite_type (pointed_to_1
, pointed_to_2
);
254 t1
= build_pointer_type (target
);
255 t1
= build_type_attribute_variant (t1
, attributes
);
256 return qualify_type (t1
, t2
);
261 tree elt
= composite_type (TREE_TYPE (t1
), TREE_TYPE (t2
));
263 /* We should not have any type quals on arrays at all. */
264 if (TYPE_QUALS (t1
) || TYPE_QUALS (t2
))
267 /* Save space: see if the result is identical to one of the args. */
268 if (elt
== TREE_TYPE (t1
) && TYPE_DOMAIN (t1
))
269 return build_type_attribute_variant (t1
, attributes
);
270 if (elt
== TREE_TYPE (t2
) && TYPE_DOMAIN (t2
))
271 return build_type_attribute_variant (t2
, attributes
);
273 if (elt
== TREE_TYPE (t1
) && !TYPE_DOMAIN (t2
) && !TYPE_DOMAIN (t1
))
274 return build_type_attribute_variant (t1
, attributes
);
275 if (elt
== TREE_TYPE (t2
) && !TYPE_DOMAIN (t2
) && !TYPE_DOMAIN (t1
))
276 return build_type_attribute_variant (t2
, attributes
);
278 /* Merge the element types, and have a size if either arg has one. */
279 t1
= build_array_type (elt
, TYPE_DOMAIN (TYPE_DOMAIN (t1
) ? t1
: t2
));
280 return build_type_attribute_variant (t1
, attributes
);
284 /* Function types: prefer the one that specified arg types.
285 If both do, merge the arg types. Also merge the return types. */
287 tree valtype
= composite_type (TREE_TYPE (t1
), TREE_TYPE (t2
));
288 tree p1
= TYPE_ARG_TYPES (t1
);
289 tree p2
= TYPE_ARG_TYPES (t2
);
294 /* Save space: see if the result is identical to one of the args. */
295 if (valtype
== TREE_TYPE (t1
) && ! TYPE_ARG_TYPES (t2
))
296 return build_type_attribute_variant (t1
, attributes
);
297 if (valtype
== TREE_TYPE (t2
) && ! TYPE_ARG_TYPES (t1
))
298 return build_type_attribute_variant (t2
, attributes
);
300 /* Simple way if one arg fails to specify argument types. */
301 if (TYPE_ARG_TYPES (t1
) == 0)
303 t1
= build_function_type (valtype
, TYPE_ARG_TYPES (t2
));
304 t1
= build_type_attribute_variant (t1
, attributes
);
305 return qualify_type (t1
, t2
);
307 if (TYPE_ARG_TYPES (t2
) == 0)
309 t1
= build_function_type (valtype
, TYPE_ARG_TYPES (t1
));
310 t1
= build_type_attribute_variant (t1
, attributes
);
311 return qualify_type (t1
, t2
);
314 /* If both args specify argument types, we must merge the two
315 lists, argument by argument. */
316 /* Tell global_bindings_p to return false so that variable_size
317 doesn't abort on VLAs in parameter types. */
318 c_override_global_bindings_to_false
= true;
320 len
= list_length (p1
);
323 for (i
= 0; i
< len
; i
++)
324 newargs
= tree_cons (NULL_TREE
, NULL_TREE
, newargs
);
329 p1
= TREE_CHAIN (p1
), p2
= TREE_CHAIN (p2
), n
= TREE_CHAIN (n
))
331 /* A null type means arg type is not specified.
332 Take whatever the other function type has. */
333 if (TREE_VALUE (p1
) == 0)
335 TREE_VALUE (n
) = TREE_VALUE (p2
);
338 if (TREE_VALUE (p2
) == 0)
340 TREE_VALUE (n
) = TREE_VALUE (p1
);
344 /* Given wait (union {union wait *u; int *i} *)
345 and wait (union wait *),
346 prefer union wait * as type of parm. */
347 if (TREE_CODE (TREE_VALUE (p1
)) == UNION_TYPE
348 && TREE_VALUE (p1
) != TREE_VALUE (p2
))
351 for (memb
= TYPE_FIELDS (TREE_VALUE (p1
));
352 memb
; memb
= TREE_CHAIN (memb
))
353 if (comptypes (TREE_TYPE (memb
), TREE_VALUE (p2
)))
355 TREE_VALUE (n
) = TREE_VALUE (p2
);
357 pedwarn ("function types not truly compatible in ISO C");
361 if (TREE_CODE (TREE_VALUE (p2
)) == UNION_TYPE
362 && TREE_VALUE (p2
) != TREE_VALUE (p1
))
365 for (memb
= TYPE_FIELDS (TREE_VALUE (p2
));
366 memb
; memb
= TREE_CHAIN (memb
))
367 if (comptypes (TREE_TYPE (memb
), TREE_VALUE (p1
)))
369 TREE_VALUE (n
) = TREE_VALUE (p1
);
371 pedwarn ("function types not truly compatible in ISO C");
375 TREE_VALUE (n
) = composite_type (TREE_VALUE (p1
), TREE_VALUE (p2
));
379 c_override_global_bindings_to_false
= false;
380 t1
= build_function_type (valtype
, newargs
);
381 t1
= qualify_type (t1
, t2
);
382 /* ... falls through ... */
386 return build_type_attribute_variant (t1
, attributes
);
391 /* Return the type of a conditional expression between pointers to
392 possibly differently qualified versions of compatible types.
394 We assume that comp_target_types has already been done and returned
395 nonzero; if that isn't so, this may crash. */
398 common_pointer_type (tree t1
, tree t2
)
405 /* Save time if the two types are the same. */
407 if (t1
== t2
) return t1
;
409 /* If one type is nonsense, use the other. */
410 if (t1
== error_mark_node
)
412 if (t2
== error_mark_node
)
415 if (TREE_CODE (t1
) != POINTER_TYPE
|| TREE_CODE (t2
) != POINTER_TYPE
)
418 /* Merge the attributes. */
419 attributes
= targetm
.merge_type_attributes (t1
, t2
);
421 /* Find the composite type of the target types, and combine the
422 qualifiers of the two types' targets. */
423 pointed_to_1
= TREE_TYPE (t1
);
424 pointed_to_2
= TREE_TYPE (t2
);
425 target
= composite_type (TYPE_MAIN_VARIANT (pointed_to_1
),
426 TYPE_MAIN_VARIANT (pointed_to_2
));
427 t1
= build_pointer_type (c_build_qualified_type
429 TYPE_QUALS (pointed_to_1
) |
430 TYPE_QUALS (pointed_to_2
)));
431 return build_type_attribute_variant (t1
, attributes
);
434 /* Return the common type for two arithmetic types under the usual
435 arithmetic conversions. The default conversions have already been
436 applied, and enumerated types converted to their compatible integer
437 types. The resulting type is unqualified and has no attributes.
439 This is the type for the result of most arithmetic operations
440 if the operands have the given two types. */
443 common_type (tree t1
, tree t2
)
445 enum tree_code code1
;
446 enum tree_code code2
;
448 /* If one type is nonsense, use the other. */
449 if (t1
== error_mark_node
)
451 if (t2
== error_mark_node
)
454 if (TYPE_QUALS (t1
) != TYPE_UNQUALIFIED
)
455 t1
= TYPE_MAIN_VARIANT (t1
);
457 if (TYPE_QUALS (t2
) != TYPE_UNQUALIFIED
)
458 t2
= TYPE_MAIN_VARIANT (t2
);
460 if (TYPE_ATTRIBUTES (t1
) != NULL_TREE
)
461 t1
= build_type_attribute_variant (t1
, NULL_TREE
);
463 if (TYPE_ATTRIBUTES (t2
) != NULL_TREE
)
464 t2
= build_type_attribute_variant (t2
, NULL_TREE
);
466 /* Save time if the two types are the same. */
468 if (t1
== t2
) return t1
;
470 code1
= TREE_CODE (t1
);
471 code2
= TREE_CODE (t2
);
473 if (code1
!= VECTOR_TYPE
&& code1
!= COMPLEX_TYPE
474 && code1
!= REAL_TYPE
&& code1
!= INTEGER_TYPE
)
477 if (code2
!= VECTOR_TYPE
&& code2
!= COMPLEX_TYPE
478 && code2
!= REAL_TYPE
&& code2
!= INTEGER_TYPE
)
481 /* If one type is a vector type, return that type. (How the usual
482 arithmetic conversions apply to the vector types extension is not
483 precisely specified.) */
484 if (code1
== VECTOR_TYPE
)
487 if (code2
== VECTOR_TYPE
)
490 /* If one type is complex, form the common type of the non-complex
491 components, then make that complex. Use T1 or T2 if it is the
493 if (code1
== COMPLEX_TYPE
|| code2
== COMPLEX_TYPE
)
495 tree subtype1
= code1
== COMPLEX_TYPE
? TREE_TYPE (t1
) : t1
;
496 tree subtype2
= code2
== COMPLEX_TYPE
? TREE_TYPE (t2
) : t2
;
497 tree subtype
= common_type (subtype1
, subtype2
);
499 if (code1
== COMPLEX_TYPE
&& TREE_TYPE (t1
) == subtype
)
501 else if (code2
== COMPLEX_TYPE
&& TREE_TYPE (t2
) == subtype
)
504 return build_complex_type (subtype
);
507 /* If only one is real, use it as the result. */
509 if (code1
== REAL_TYPE
&& code2
!= REAL_TYPE
)
512 if (code2
== REAL_TYPE
&& code1
!= REAL_TYPE
)
515 /* Both real or both integers; use the one with greater precision. */
517 if (TYPE_PRECISION (t1
) > TYPE_PRECISION (t2
))
519 else if (TYPE_PRECISION (t2
) > TYPE_PRECISION (t1
))
522 /* Same precision. Prefer long longs to longs to ints when the
523 same precision, following the C99 rules on integer type rank
524 (which are equivalent to the C90 rules for C90 types). */
526 if (TYPE_MAIN_VARIANT (t1
) == long_long_unsigned_type_node
527 || TYPE_MAIN_VARIANT (t2
) == long_long_unsigned_type_node
)
528 return long_long_unsigned_type_node
;
530 if (TYPE_MAIN_VARIANT (t1
) == long_long_integer_type_node
531 || TYPE_MAIN_VARIANT (t2
) == long_long_integer_type_node
)
533 if (TYPE_UNSIGNED (t1
) || TYPE_UNSIGNED (t2
))
534 return long_long_unsigned_type_node
;
536 return long_long_integer_type_node
;
539 if (TYPE_MAIN_VARIANT (t1
) == long_unsigned_type_node
540 || TYPE_MAIN_VARIANT (t2
) == long_unsigned_type_node
)
541 return long_unsigned_type_node
;
543 if (TYPE_MAIN_VARIANT (t1
) == long_integer_type_node
544 || TYPE_MAIN_VARIANT (t2
) == long_integer_type_node
)
546 /* But preserve unsignedness from the other type,
547 since long cannot hold all the values of an unsigned int. */
548 if (TYPE_UNSIGNED (t1
) || TYPE_UNSIGNED (t2
))
549 return long_unsigned_type_node
;
551 return long_integer_type_node
;
554 /* Likewise, prefer long double to double even if same size. */
555 if (TYPE_MAIN_VARIANT (t1
) == long_double_type_node
556 || TYPE_MAIN_VARIANT (t2
) == long_double_type_node
)
557 return long_double_type_node
;
559 /* Otherwise prefer the unsigned one. */
561 if (TYPE_UNSIGNED (t1
))
567 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
568 or various other operations. Return 2 if they are compatible
569 but a warning may be needed if you use them together. */
572 comptypes (tree type1
, tree type2
)
578 /* Suppress errors caused by previously reported errors. */
580 if (t1
== t2
|| !t1
|| !t2
581 || TREE_CODE (t1
) == ERROR_MARK
|| TREE_CODE (t2
) == ERROR_MARK
)
584 /* If either type is the internal version of sizetype, return the
586 if (TREE_CODE (t1
) == INTEGER_TYPE
&& TYPE_IS_SIZETYPE (t1
)
587 && TYPE_ORIG_SIZE_TYPE (t1
))
588 t1
= TYPE_ORIG_SIZE_TYPE (t1
);
590 if (TREE_CODE (t2
) == INTEGER_TYPE
&& TYPE_IS_SIZETYPE (t2
)
591 && TYPE_ORIG_SIZE_TYPE (t2
))
592 t2
= TYPE_ORIG_SIZE_TYPE (t2
);
595 /* Enumerated types are compatible with integer types, but this is
596 not transitive: two enumerated types in the same translation unit
597 are compatible with each other only if they are the same type. */
599 if (TREE_CODE (t1
) == ENUMERAL_TYPE
&& TREE_CODE (t2
) != ENUMERAL_TYPE
)
600 t1
= c_common_type_for_size (TYPE_PRECISION (t1
), TYPE_UNSIGNED (t1
));
601 else if (TREE_CODE (t2
) == ENUMERAL_TYPE
&& TREE_CODE (t1
) != ENUMERAL_TYPE
)
602 t2
= c_common_type_for_size (TYPE_PRECISION (t2
), TYPE_UNSIGNED (t2
));
607 /* Different classes of types can't be compatible. */
609 if (TREE_CODE (t1
) != TREE_CODE (t2
))
612 /* Qualifiers must match. C99 6.7.3p9 */
614 if (TYPE_QUALS (t1
) != TYPE_QUALS (t2
))
617 /* Allow for two different type nodes which have essentially the same
618 definition. Note that we already checked for equality of the type
619 qualifiers (just above). */
621 if (TYPE_MAIN_VARIANT (t1
) == TYPE_MAIN_VARIANT (t2
))
624 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
625 if (! (attrval
= targetm
.comp_type_attributes (t1
, t2
)))
628 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
631 switch (TREE_CODE (t1
))
634 /* We must give ObjC the first crack at comparing pointers, since
635 protocol qualifiers may be involved. */
636 if (c_dialect_objc () && (val
= objc_comptypes (t1
, t2
, 0)) >= 0)
638 val
= (TREE_TYPE (t1
) == TREE_TYPE (t2
)
639 ? 1 : comptypes (TREE_TYPE (t1
), TREE_TYPE (t2
)));
643 val
= function_types_compatible_p (t1
, t2
);
648 tree d1
= TYPE_DOMAIN (t1
);
649 tree d2
= TYPE_DOMAIN (t2
);
650 bool d1_variable
, d2_variable
;
651 bool d1_zero
, d2_zero
;
654 /* Target types must match incl. qualifiers. */
655 if (TREE_TYPE (t1
) != TREE_TYPE (t2
)
656 && 0 == (val
= comptypes (TREE_TYPE (t1
), TREE_TYPE (t2
))))
659 /* Sizes must match unless one is missing or variable. */
660 if (d1
== 0 || d2
== 0 || d1
== d2
)
663 d1_zero
= ! TYPE_MAX_VALUE (d1
);
664 d2_zero
= ! TYPE_MAX_VALUE (d2
);
666 d1_variable
= (! d1_zero
667 && (TREE_CODE (TYPE_MIN_VALUE (d1
)) != INTEGER_CST
668 || TREE_CODE (TYPE_MAX_VALUE (d1
)) != INTEGER_CST
));
669 d2_variable
= (! d2_zero
670 && (TREE_CODE (TYPE_MIN_VALUE (d2
)) != INTEGER_CST
671 || TREE_CODE (TYPE_MAX_VALUE (d2
)) != INTEGER_CST
));
673 if (d1_variable
|| d2_variable
)
675 if (d1_zero
&& d2_zero
)
677 if (d1_zero
|| d2_zero
678 || ! tree_int_cst_equal (TYPE_MIN_VALUE (d1
), TYPE_MIN_VALUE (d2
))
679 || ! tree_int_cst_equal (TYPE_MAX_VALUE (d1
), TYPE_MAX_VALUE (d2
)))
686 /* We are dealing with two distinct structs. In assorted Objective-C
687 corner cases, however, these can still be deemed equivalent. */
688 if (c_dialect_objc () && objc_comptypes (t1
, t2
, 0) == 1)
693 if (val
!= 1 && !same_translation_unit_p (t1
, t2
))
694 val
= tagged_types_tu_compatible_p (t1
, t2
);
698 val
= TYPE_VECTOR_SUBPARTS (t1
) == TYPE_VECTOR_SUBPARTS (t2
)
699 && comptypes (TREE_TYPE (t1
), TREE_TYPE (t2
));
705 return attrval
== 2 && val
== 1 ? 2 : val
;
708 /* Return 1 if TTL and TTR are pointers to types that are equivalent,
709 ignoring their qualifiers. REFLEXIVE is only used by ObjC - set it
710 to 1 or 0 depending if the check of the pointer types is meant to
711 be reflexive or not (typically, assignments are not reflexive,
712 while comparisons are reflexive).
716 comp_target_types (tree ttl
, tree ttr
, int reflexive
)
720 /* Give objc_comptypes a crack at letting these types through. */
721 if ((val
= objc_comptypes (ttl
, ttr
, reflexive
)) >= 0)
724 val
= comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (ttl
)),
725 TYPE_MAIN_VARIANT (TREE_TYPE (ttr
)));
727 if (val
== 2 && pedantic
)
728 pedwarn ("types are not quite compatible");
732 /* Subroutines of `comptypes'. */
734 /* Determine whether two trees derive from the same translation unit.
735 If the CONTEXT chain ends in a null, that tree's context is still
736 being parsed, so if two trees have context chains ending in null,
737 they're in the same translation unit. */
739 same_translation_unit_p (tree t1
, tree t2
)
741 while (t1
&& TREE_CODE (t1
) != TRANSLATION_UNIT_DECL
)
742 switch (TREE_CODE_CLASS (TREE_CODE (t1
)))
744 case 'd': t1
= DECL_CONTEXT (t1
); break;
745 case 't': t1
= TYPE_CONTEXT (t1
); break;
746 case 'x': t1
= BLOCK_SUPERCONTEXT (t1
); break; /* assume block */
750 while (t2
&& TREE_CODE (t2
) != TRANSLATION_UNIT_DECL
)
751 switch (TREE_CODE_CLASS (TREE_CODE (t2
)))
753 case 'd': t2
= DECL_CONTEXT (t2
); break;
754 case 't': t2
= TYPE_CONTEXT (t2
); break;
755 case 'x': t2
= BLOCK_SUPERCONTEXT (t2
); break; /* assume block */
762 /* The C standard says that two structures in different translation
763 units are compatible with each other only if the types of their
764 fields are compatible (among other things). So, consider two copies
765 of this structure: */
767 struct tagged_tu_seen
{
768 const struct tagged_tu_seen
* next
;
773 /* Can they be compatible with each other? We choose to break the
774 recursion by allowing those types to be compatible. */
776 static const struct tagged_tu_seen
* tagged_tu_seen_base
;
778 /* Return 1 if two 'struct', 'union', or 'enum' types T1 and T2 are
779 compatible. If the two types are not the same (which has been
780 checked earlier), this can only happen when multiple translation
781 units are being compiled. See C99 6.2.7 paragraph 1 for the exact
785 tagged_types_tu_compatible_p (tree t1
, tree t2
)
788 bool needs_warning
= false;
790 /* We have to verify that the tags of the types are the same. This
791 is harder than it looks because this may be a typedef, so we have
792 to go look at the original type. It may even be a typedef of a
794 In the case of compiler-created builtin structs the TYPE_DECL
795 may be a dummy, with no DECL_ORIGINAL_TYPE. Don't fault. */
796 while (TYPE_NAME (t1
)
797 && TREE_CODE (TYPE_NAME (t1
)) == TYPE_DECL
798 && DECL_ORIGINAL_TYPE (TYPE_NAME (t1
)))
799 t1
= DECL_ORIGINAL_TYPE (TYPE_NAME (t1
));
801 while (TYPE_NAME (t2
)
802 && TREE_CODE (TYPE_NAME (t2
)) == TYPE_DECL
803 && DECL_ORIGINAL_TYPE (TYPE_NAME (t2
)))
804 t2
= DECL_ORIGINAL_TYPE (TYPE_NAME (t2
));
806 /* C90 didn't have the requirement that the two tags be the same. */
807 if (flag_isoc99
&& TYPE_NAME (t1
) != TYPE_NAME (t2
))
810 /* C90 didn't say what happened if one or both of the types were
811 incomplete; we choose to follow C99 rules here, which is that they
813 if (TYPE_SIZE (t1
) == NULL
814 || TYPE_SIZE (t2
) == NULL
)
818 const struct tagged_tu_seen
* tts_i
;
819 for (tts_i
= tagged_tu_seen_base
; tts_i
!= NULL
; tts_i
= tts_i
->next
)
820 if (tts_i
->t1
== t1
&& tts_i
->t2
== t2
)
824 switch (TREE_CODE (t1
))
829 /* Speed up the case where the type values are in the same order. */
830 tree tv1
= TYPE_VALUES (t1
);
831 tree tv2
= TYPE_VALUES (t2
);
836 for (;tv1
&& tv2
; tv1
= TREE_CHAIN (tv1
), tv2
= TREE_CHAIN (tv2
))
838 if (TREE_PURPOSE (tv1
) != TREE_PURPOSE (tv2
))
840 if (simple_cst_equal (TREE_VALUE (tv1
), TREE_VALUE (tv2
)) != 1)
844 if (tv1
== NULL_TREE
&& tv2
== NULL_TREE
)
846 if (tv1
== NULL_TREE
|| tv2
== NULL_TREE
)
849 if (list_length (TYPE_VALUES (t1
)) != list_length (TYPE_VALUES (t2
)))
852 for (s1
= TYPE_VALUES (t1
); s1
; s1
= TREE_CHAIN (s1
))
854 s2
= purpose_member (TREE_PURPOSE (s1
), TYPE_VALUES (t2
));
856 || simple_cst_equal (TREE_VALUE (s1
), TREE_VALUE (s2
)) != 1)
864 if (list_length (TYPE_FIELDS (t1
)) != list_length (TYPE_FIELDS (t2
)))
867 for (s1
= TYPE_FIELDS (t1
); s1
; s1
= TREE_CHAIN (s1
))
870 struct tagged_tu_seen tts
;
872 tts
.next
= tagged_tu_seen_base
;
875 tagged_tu_seen_base
= &tts
;
877 if (DECL_NAME (s1
) != NULL
)
878 for (s2
= TYPE_FIELDS (t2
); s2
; s2
= TREE_CHAIN (s2
))
879 if (DECL_NAME (s1
) == DECL_NAME (s2
))
882 result
= comptypes (TREE_TYPE (s1
), TREE_TYPE (s2
));
886 needs_warning
= true;
888 if (TREE_CODE (s1
) == FIELD_DECL
889 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1
),
890 DECL_FIELD_BIT_OFFSET (s2
)) != 1)
896 tagged_tu_seen_base
= tts
.next
;
900 return needs_warning
? 2 : 1;
905 struct tagged_tu_seen tts
;
907 tts
.next
= tagged_tu_seen_base
;
910 tagged_tu_seen_base
= &tts
;
912 for (s1
= TYPE_FIELDS (t1
), s2
= TYPE_FIELDS (t2
);
914 s1
= TREE_CHAIN (s1
), s2
= TREE_CHAIN (s2
))
917 if (TREE_CODE (s1
) != TREE_CODE (s2
)
918 || DECL_NAME (s1
) != DECL_NAME (s2
))
920 result
= comptypes (TREE_TYPE (s1
), TREE_TYPE (s2
));
924 needs_warning
= true;
926 if (TREE_CODE (s1
) == FIELD_DECL
927 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1
),
928 DECL_FIELD_BIT_OFFSET (s2
)) != 1)
931 tagged_tu_seen_base
= tts
.next
;
934 return needs_warning
? 2 : 1;
942 /* Return 1 if two function types F1 and F2 are compatible.
943 If either type specifies no argument types,
944 the other must specify a fixed number of self-promoting arg types.
945 Otherwise, if one type specifies only the number of arguments,
946 the other must specify that number of self-promoting arg types.
947 Otherwise, the argument types must match. */
950 function_types_compatible_p (tree f1
, tree f2
)
953 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
958 ret1
= TREE_TYPE (f1
);
959 ret2
= TREE_TYPE (f2
);
961 /* 'volatile' qualifiers on a function's return type used to mean
962 the function is noreturn. */
963 if (TYPE_VOLATILE (ret1
) != TYPE_VOLATILE (ret2
))
964 pedwarn ("function return types not compatible due to `volatile'");
965 if (TYPE_VOLATILE (ret1
))
966 ret1
= build_qualified_type (TYPE_MAIN_VARIANT (ret1
),
967 TYPE_QUALS (ret1
) & ~TYPE_QUAL_VOLATILE
);
968 if (TYPE_VOLATILE (ret2
))
969 ret2
= build_qualified_type (TYPE_MAIN_VARIANT (ret2
),
970 TYPE_QUALS (ret2
) & ~TYPE_QUAL_VOLATILE
);
971 val
= comptypes (ret1
, ret2
);
975 args1
= TYPE_ARG_TYPES (f1
);
976 args2
= TYPE_ARG_TYPES (f2
);
978 /* An unspecified parmlist matches any specified parmlist
979 whose argument types don't need default promotions. */
983 if (!self_promoting_args_p (args2
))
985 /* If one of these types comes from a non-prototype fn definition,
986 compare that with the other type's arglist.
987 If they don't match, ask for a warning (but no error). */
988 if (TYPE_ACTUAL_ARG_TYPES (f1
)
989 && 1 != type_lists_compatible_p (args2
, TYPE_ACTUAL_ARG_TYPES (f1
)))
995 if (!self_promoting_args_p (args1
))
997 if (TYPE_ACTUAL_ARG_TYPES (f2
)
998 && 1 != type_lists_compatible_p (args1
, TYPE_ACTUAL_ARG_TYPES (f2
)))
1003 /* Both types have argument lists: compare them and propagate results. */
1004 val1
= type_lists_compatible_p (args1
, args2
);
1005 return val1
!= 1 ? val1
: val
;
1008 /* Check two lists of types for compatibility,
1009 returning 0 for incompatible, 1 for compatible,
1010 or 2 for compatible with warning. */
1013 type_lists_compatible_p (tree args1
, tree args2
)
1015 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
1021 if (args1
== 0 && args2
== 0)
1023 /* If one list is shorter than the other,
1024 they fail to match. */
1025 if (args1
== 0 || args2
== 0)
1027 /* A null pointer instead of a type
1028 means there is supposed to be an argument
1029 but nothing is specified about what type it has.
1030 So match anything that self-promotes. */
1031 if (TREE_VALUE (args1
) == 0)
1033 if (c_type_promotes_to (TREE_VALUE (args2
)) != TREE_VALUE (args2
))
1036 else if (TREE_VALUE (args2
) == 0)
1038 if (c_type_promotes_to (TREE_VALUE (args1
)) != TREE_VALUE (args1
))
1041 /* If one of the lists has an error marker, ignore this arg. */
1042 else if (TREE_CODE (TREE_VALUE (args1
)) == ERROR_MARK
1043 || TREE_CODE (TREE_VALUE (args2
)) == ERROR_MARK
)
1045 else if (! (newval
= comptypes (TYPE_MAIN_VARIANT (TREE_VALUE (args1
)),
1046 TYPE_MAIN_VARIANT (TREE_VALUE (args2
)))))
1048 /* Allow wait (union {union wait *u; int *i} *)
1049 and wait (union wait *) to be compatible. */
1050 if (TREE_CODE (TREE_VALUE (args1
)) == UNION_TYPE
1051 && (TYPE_NAME (TREE_VALUE (args1
)) == 0
1052 || TYPE_TRANSPARENT_UNION (TREE_VALUE (args1
)))
1053 && TREE_CODE (TYPE_SIZE (TREE_VALUE (args1
))) == INTEGER_CST
1054 && tree_int_cst_equal (TYPE_SIZE (TREE_VALUE (args1
)),
1055 TYPE_SIZE (TREE_VALUE (args2
))))
1058 for (memb
= TYPE_FIELDS (TREE_VALUE (args1
));
1059 memb
; memb
= TREE_CHAIN (memb
))
1060 if (comptypes (TREE_TYPE (memb
), TREE_VALUE (args2
)))
1065 else if (TREE_CODE (TREE_VALUE (args2
)) == UNION_TYPE
1066 && (TYPE_NAME (TREE_VALUE (args2
)) == 0
1067 || TYPE_TRANSPARENT_UNION (TREE_VALUE (args2
)))
1068 && TREE_CODE (TYPE_SIZE (TREE_VALUE (args2
))) == INTEGER_CST
1069 && tree_int_cst_equal (TYPE_SIZE (TREE_VALUE (args2
)),
1070 TYPE_SIZE (TREE_VALUE (args1
))))
1073 for (memb
= TYPE_FIELDS (TREE_VALUE (args2
));
1074 memb
; memb
= TREE_CHAIN (memb
))
1075 if (comptypes (TREE_TYPE (memb
), TREE_VALUE (args1
)))
1084 /* comptypes said ok, but record if it said to warn. */
1088 args1
= TREE_CHAIN (args1
);
1089 args2
= TREE_CHAIN (args2
);
1093 /* Compute the size to increment a pointer by. */
1096 c_size_in_bytes (tree type
)
1098 enum tree_code code
= TREE_CODE (type
);
1100 if (code
== FUNCTION_TYPE
|| code
== VOID_TYPE
|| code
== ERROR_MARK
)
1101 return size_one_node
;
1103 if (!COMPLETE_OR_VOID_TYPE_P (type
))
1105 error ("arithmetic on pointer to an incomplete type");
1106 return size_one_node
;
1109 /* Convert in case a char is more than one unit. */
1110 return size_binop (CEIL_DIV_EXPR
, TYPE_SIZE_UNIT (type
),
1111 size_int (TYPE_PRECISION (char_type_node
)
1115 /* Return either DECL or its known constant value (if it has one). */
1118 decl_constant_value (tree decl
)
1120 if (/* Don't change a variable array bound or initial value to a constant
1121 in a place where a variable is invalid. Note that DECL_INITIAL
1122 isn't valid for a PARM_DECL. */
1123 current_function_decl
!= 0
1124 && TREE_CODE (decl
) != PARM_DECL
1125 && ! TREE_THIS_VOLATILE (decl
)
1126 && TREE_READONLY (decl
)
1127 && DECL_INITIAL (decl
) != 0
1128 && TREE_CODE (DECL_INITIAL (decl
)) != ERROR_MARK
1129 /* This is invalid if initial value is not constant.
1130 If it has either a function call, a memory reference,
1131 or a variable, then re-evaluating it could give different results. */
1132 && TREE_CONSTANT (DECL_INITIAL (decl
))
1133 /* Check for cases where this is sub-optimal, even though valid. */
1134 && TREE_CODE (DECL_INITIAL (decl
)) != CONSTRUCTOR
)
1135 return DECL_INITIAL (decl
);
1139 /* Return either DECL or its known constant value (if it has one), but
1140 return DECL if pedantic or DECL has mode BLKmode. This is for
1141 bug-compatibility with the old behavior of decl_constant_value
1142 (before GCC 3.0); every use of this function is a bug and it should
1143 be removed before GCC 3.1. It is not appropriate to use pedantic
1144 in a way that affects optimization, and BLKmode is probably not the
1145 right test for avoiding misoptimizations either. */
1148 decl_constant_value_for_broken_optimization (tree decl
)
1150 if (pedantic
|| DECL_MODE (decl
) == BLKmode
)
1153 return decl_constant_value (decl
);
1157 /* Perform the default conversion of arrays and functions to pointers.
1158 Return the result of converting EXP. For any other expression, just
1162 default_function_array_conversion (tree exp
)
1165 tree type
= TREE_TYPE (exp
);
1166 enum tree_code code
= TREE_CODE (type
);
1169 /* Strip NON_LVALUE_EXPRs and no-op conversions, since we aren't using as
1172 Do not use STRIP_NOPS here! It will remove conversions from pointer
1173 to integer and cause infinite recursion. */
1175 while (TREE_CODE (exp
) == NON_LVALUE_EXPR
1176 || (TREE_CODE (exp
) == NOP_EXPR
1177 && TREE_TYPE (TREE_OPERAND (exp
, 0)) == TREE_TYPE (exp
)))
1179 if (TREE_CODE (exp
) == NON_LVALUE_EXPR
)
1181 exp
= TREE_OPERAND (exp
, 0);
1184 if (TREE_NO_WARNING (orig_exp
))
1185 TREE_NO_WARNING (exp
) = 1;
1187 if (code
== FUNCTION_TYPE
)
1189 return build_unary_op (ADDR_EXPR
, exp
, 0);
1191 if (code
== ARRAY_TYPE
)
1194 tree restype
= TREE_TYPE (type
);
1200 if (TREE_CODE_CLASS (TREE_CODE (exp
)) == 'r' || DECL_P (exp
))
1202 constp
= TREE_READONLY (exp
);
1203 volatilep
= TREE_THIS_VOLATILE (exp
);
1206 if (TYPE_QUALS (type
) || constp
|| volatilep
)
1208 = c_build_qualified_type (restype
,
1210 | (constp
* TYPE_QUAL_CONST
)
1211 | (volatilep
* TYPE_QUAL_VOLATILE
));
1213 if (TREE_CODE (exp
) == INDIRECT_REF
)
1214 return convert (build_pointer_type (restype
),
1215 TREE_OPERAND (exp
, 0));
1217 if (TREE_CODE (exp
) == COMPOUND_EXPR
)
1219 tree op1
= default_conversion (TREE_OPERAND (exp
, 1));
1220 return build (COMPOUND_EXPR
, TREE_TYPE (op1
),
1221 TREE_OPERAND (exp
, 0), op1
);
1224 lvalue_array_p
= !not_lvalue
&& lvalue_p (exp
);
1225 if (!flag_isoc99
&& !lvalue_array_p
)
1227 /* Before C99, non-lvalue arrays do not decay to pointers.
1228 Normally, using such an array would be invalid; but it can
1229 be used correctly inside sizeof or as a statement expression.
1230 Thus, do not give an error here; an error will result later. */
1234 ptrtype
= build_pointer_type (restype
);
1236 if (TREE_CODE (exp
) == VAR_DECL
)
1238 /* We are making an ADDR_EXPR of ptrtype. This is a valid
1239 ADDR_EXPR because it's the best way of representing what
1240 happens in C when we take the address of an array and place
1241 it in a pointer to the element type. */
1242 adr
= build1 (ADDR_EXPR
, ptrtype
, exp
);
1243 if (!c_mark_addressable (exp
))
1244 return error_mark_node
;
1245 TREE_SIDE_EFFECTS (adr
) = 0; /* Default would be, same as EXP. */
1248 /* This way is better for a COMPONENT_REF since it can
1249 simplify the offset for a component. */
1250 adr
= build_unary_op (ADDR_EXPR
, exp
, 1);
1251 return convert (ptrtype
, adr
);
1256 /* Perform default promotions for C data used in expressions.
1257 Arrays and functions are converted to pointers;
1258 enumeral types or short or char, to int.
1259 In addition, manifest constants symbols are replaced by their values. */
1262 default_conversion (tree exp
)
1265 tree type
= TREE_TYPE (exp
);
1266 enum tree_code code
= TREE_CODE (type
);
1268 if (code
== FUNCTION_TYPE
|| code
== ARRAY_TYPE
)
1269 return default_function_array_conversion (exp
);
1271 /* Constants can be used directly unless they're not loadable. */
1272 if (TREE_CODE (exp
) == CONST_DECL
)
1273 exp
= DECL_INITIAL (exp
);
1275 /* Replace a nonvolatile const static variable with its value unless
1276 it is an array, in which case we must be sure that taking the
1277 address of the array produces consistent results. */
1278 else if (optimize
&& TREE_CODE (exp
) == VAR_DECL
&& code
!= ARRAY_TYPE
)
1280 exp
= decl_constant_value_for_broken_optimization (exp
);
1281 type
= TREE_TYPE (exp
);
1284 /* Strip NON_LVALUE_EXPRs and no-op conversions, since we aren't using as
1287 Do not use STRIP_NOPS here! It will remove conversions from pointer
1288 to integer and cause infinite recursion. */
1290 while (TREE_CODE (exp
) == NON_LVALUE_EXPR
1291 || (TREE_CODE (exp
) == NOP_EXPR
1292 && TREE_TYPE (TREE_OPERAND (exp
, 0)) == TREE_TYPE (exp
)))
1293 exp
= TREE_OPERAND (exp
, 0);
1295 if (TREE_NO_WARNING (orig_exp
))
1296 TREE_NO_WARNING (exp
) = 1;
1298 /* Normally convert enums to int,
1299 but convert wide enums to something wider. */
1300 if (code
== ENUMERAL_TYPE
)
1302 type
= c_common_type_for_size (MAX (TYPE_PRECISION (type
),
1303 TYPE_PRECISION (integer_type_node
)),
1304 ((TYPE_PRECISION (type
)
1305 >= TYPE_PRECISION (integer_type_node
))
1306 && TYPE_UNSIGNED (type
)));
1308 return convert (type
, exp
);
1311 if (TREE_CODE (exp
) == COMPONENT_REF
1312 && DECL_C_BIT_FIELD (TREE_OPERAND (exp
, 1))
1313 /* If it's thinner than an int, promote it like a
1314 c_promoting_integer_type_p, otherwise leave it alone. */
1315 && 0 > compare_tree_int (DECL_SIZE (TREE_OPERAND (exp
, 1)),
1316 TYPE_PRECISION (integer_type_node
)))
1317 return convert (integer_type_node
, exp
);
1319 if (c_promoting_integer_type_p (type
))
1321 /* Preserve unsignedness if not really getting any wider. */
1322 if (TYPE_UNSIGNED (type
)
1323 && TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
))
1324 return convert (unsigned_type_node
, exp
);
1326 return convert (integer_type_node
, exp
);
1329 if (code
== VOID_TYPE
)
1331 error ("void value not ignored as it ought to be");
1332 return error_mark_node
;
1337 /* Look up COMPONENT in a structure or union DECL.
1339 If the component name is not found, returns NULL_TREE. Otherwise,
1340 the return value is a TREE_LIST, with each TREE_VALUE a FIELD_DECL
1341 stepping down the chain to the component, which is in the last
1342 TREE_VALUE of the list. Normally the list is of length one, but if
1343 the component is embedded within (nested) anonymous structures or
1344 unions, the list steps down the chain to the component. */
1347 lookup_field (tree decl
, tree component
)
1349 tree type
= TREE_TYPE (decl
);
1352 /* If TYPE_LANG_SPECIFIC is set, then it is a sorted array of pointers
1353 to the field elements. Use a binary search on this array to quickly
1354 find the element. Otherwise, do a linear search. TYPE_LANG_SPECIFIC
1355 will always be set for structures which have many elements. */
1357 if (TYPE_LANG_SPECIFIC (type
))
1360 tree
*field_array
= &TYPE_LANG_SPECIFIC (type
)->s
->elts
[0];
1362 field
= TYPE_FIELDS (type
);
1364 top
= TYPE_LANG_SPECIFIC (type
)->s
->len
;
1365 while (top
- bot
> 1)
1367 half
= (top
- bot
+ 1) >> 1;
1368 field
= field_array
[bot
+half
];
1370 if (DECL_NAME (field
) == NULL_TREE
)
1372 /* Step through all anon unions in linear fashion. */
1373 while (DECL_NAME (field_array
[bot
]) == NULL_TREE
)
1375 field
= field_array
[bot
++];
1376 if (TREE_CODE (TREE_TYPE (field
)) == RECORD_TYPE
1377 || TREE_CODE (TREE_TYPE (field
)) == UNION_TYPE
)
1379 tree anon
= lookup_field (field
, component
);
1382 return tree_cons (NULL_TREE
, field
, anon
);
1386 /* Entire record is only anon unions. */
1390 /* Restart the binary search, with new lower bound. */
1394 if (DECL_NAME (field
) == component
)
1396 if (DECL_NAME (field
) < component
)
1402 if (DECL_NAME (field_array
[bot
]) == component
)
1403 field
= field_array
[bot
];
1404 else if (DECL_NAME (field
) != component
)
1409 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
1411 if (DECL_NAME (field
) == NULL_TREE
1412 && (TREE_CODE (TREE_TYPE (field
)) == RECORD_TYPE
1413 || TREE_CODE (TREE_TYPE (field
)) == UNION_TYPE
))
1415 tree anon
= lookup_field (field
, component
);
1418 return tree_cons (NULL_TREE
, field
, anon
);
1421 if (DECL_NAME (field
) == component
)
1425 if (field
== NULL_TREE
)
1429 return tree_cons (NULL_TREE
, field
, NULL_TREE
);
1432 /* Make an expression to refer to the COMPONENT field of
1433 structure or union value DATUM. COMPONENT is an IDENTIFIER_NODE. */
1436 build_component_ref (tree datum
, tree component
)
1438 tree type
= TREE_TYPE (datum
);
1439 enum tree_code code
= TREE_CODE (type
);
1443 if (!objc_is_public (datum
, component
))
1444 return error_mark_node
;
1446 /* If DATUM is a COMPOUND_EXPR, move our reference inside it.
1447 Ensure that the arguments are not lvalues; otherwise,
1448 if the component is an array, it would wrongly decay to a pointer in
1450 We cannot do this with a COND_EXPR, because in a conditional expression
1451 the default promotions are applied to both sides, and this would yield
1452 the wrong type of the result; for example, if the components have
1454 switch (TREE_CODE (datum
))
1458 tree value
= build_component_ref (TREE_OPERAND (datum
, 1), component
);
1459 return build (COMPOUND_EXPR
, TREE_TYPE (value
),
1460 TREE_OPERAND (datum
, 0), non_lvalue (value
));
1466 /* See if there is a field or component with name COMPONENT. */
1468 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
)
1470 if (!COMPLETE_TYPE_P (type
))
1472 c_incomplete_type_error (NULL_TREE
, type
);
1473 return error_mark_node
;
1476 field
= lookup_field (datum
, component
);
1480 error ("%s has no member named `%s'",
1481 code
== RECORD_TYPE
? "structure" : "union",
1482 IDENTIFIER_POINTER (component
));
1483 return error_mark_node
;
1486 /* Chain the COMPONENT_REFs if necessary down to the FIELD.
1487 This might be better solved in future the way the C++ front
1488 end does it - by giving the anonymous entities each a
1489 separate name and type, and then have build_component_ref
1490 recursively call itself. We can't do that here. */
1493 tree subdatum
= TREE_VALUE (field
);
1495 if (TREE_TYPE (subdatum
) == error_mark_node
)
1496 return error_mark_node
;
1498 ref
= build (COMPONENT_REF
, TREE_TYPE (subdatum
), datum
, subdatum
,
1500 if (TREE_READONLY (datum
) || TREE_READONLY (subdatum
))
1501 TREE_READONLY (ref
) = 1;
1502 if (TREE_THIS_VOLATILE (datum
) || TREE_THIS_VOLATILE (subdatum
))
1503 TREE_THIS_VOLATILE (ref
) = 1;
1505 if (TREE_DEPRECATED (subdatum
))
1506 warn_deprecated_use (subdatum
);
1510 field
= TREE_CHAIN (field
);
1516 else if (code
!= ERROR_MARK
)
1517 error ("request for member `%s' in something not a structure or union",
1518 IDENTIFIER_POINTER (component
));
1520 return error_mark_node
;
1523 /* Given an expression PTR for a pointer, return an expression
1524 for the value pointed to.
1525 ERRORSTRING is the name of the operator to appear in error messages. */
1528 build_indirect_ref (tree ptr
, const char *errorstring
)
1530 tree pointer
= default_conversion (ptr
);
1531 tree type
= TREE_TYPE (pointer
);
1533 if (TREE_CODE (type
) == POINTER_TYPE
)
1535 if (TREE_CODE (pointer
) == ADDR_EXPR
1536 && (TREE_TYPE (TREE_OPERAND (pointer
, 0))
1537 == TREE_TYPE (type
)))
1538 return TREE_OPERAND (pointer
, 0);
1541 tree t
= TREE_TYPE (type
);
1542 tree ref
= build1 (INDIRECT_REF
, TYPE_MAIN_VARIANT (t
), pointer
);
1544 if (!COMPLETE_OR_VOID_TYPE_P (t
) && TREE_CODE (t
) != ARRAY_TYPE
)
1546 error ("dereferencing pointer to incomplete type");
1547 return error_mark_node
;
1549 if (VOID_TYPE_P (t
) && skip_evaluation
== 0)
1550 warning ("dereferencing `void *' pointer");
1552 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
1553 so that we get the proper error message if the result is used
1554 to assign to. Also, &* is supposed to be a no-op.
1555 And ANSI C seems to specify that the type of the result
1556 should be the const type. */
1557 /* A de-reference of a pointer to const is not a const. It is valid
1558 to change it via some other pointer. */
1559 TREE_READONLY (ref
) = TYPE_READONLY (t
);
1560 TREE_SIDE_EFFECTS (ref
)
1561 = TYPE_VOLATILE (t
) || TREE_SIDE_EFFECTS (pointer
);
1562 TREE_THIS_VOLATILE (ref
) = TYPE_VOLATILE (t
);
1566 else if (TREE_CODE (pointer
) != ERROR_MARK
)
1567 error ("invalid type argument of `%s'", errorstring
);
1568 return error_mark_node
;
1571 /* This handles expressions of the form "a[i]", which denotes
1574 This is logically equivalent in C to *(a+i), but we may do it differently.
1575 If A is a variable or a member, we generate a primitive ARRAY_REF.
1576 This avoids forcing the array out of registers, and can work on
1577 arrays that are not lvalues (for example, members of structures returned
1581 build_array_ref (tree array
, tree index
)
1585 error ("subscript missing in array reference");
1586 return error_mark_node
;
1589 if (TREE_TYPE (array
) == error_mark_node
1590 || TREE_TYPE (index
) == error_mark_node
)
1591 return error_mark_node
;
1593 if (TREE_CODE (TREE_TYPE (array
)) == ARRAY_TYPE
)
1597 /* Subscripting with type char is likely to lose
1598 on a machine where chars are signed.
1599 So warn on any machine, but optionally.
1600 Don't warn for unsigned char since that type is safe.
1601 Don't warn for signed char because anyone who uses that
1602 must have done so deliberately. */
1603 if (warn_char_subscripts
1604 && TYPE_MAIN_VARIANT (TREE_TYPE (index
)) == char_type_node
)
1605 warning ("array subscript has type `char'");
1607 /* Apply default promotions *after* noticing character types. */
1608 index
= default_conversion (index
);
1610 /* Require integer *after* promotion, for sake of enums. */
1611 if (TREE_CODE (TREE_TYPE (index
)) != INTEGER_TYPE
)
1613 error ("array subscript is not an integer");
1614 return error_mark_node
;
1617 /* An array that is indexed by a non-constant
1618 cannot be stored in a register; we must be able to do
1619 address arithmetic on its address.
1620 Likewise an array of elements of variable size. */
1621 if (TREE_CODE (index
) != INTEGER_CST
1622 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array
)))
1623 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array
)))) != INTEGER_CST
))
1625 if (!c_mark_addressable (array
))
1626 return error_mark_node
;
1628 /* An array that is indexed by a constant value which is not within
1629 the array bounds cannot be stored in a register either; because we
1630 would get a crash in store_bit_field/extract_bit_field when trying
1631 to access a non-existent part of the register. */
1632 if (TREE_CODE (index
) == INTEGER_CST
1633 && TYPE_DOMAIN (TREE_TYPE (array
))
1634 && ! int_fits_type_p (index
, TYPE_DOMAIN (TREE_TYPE (array
))))
1636 if (!c_mark_addressable (array
))
1637 return error_mark_node
;
1643 while (TREE_CODE (foo
) == COMPONENT_REF
)
1644 foo
= TREE_OPERAND (foo
, 0);
1645 if (TREE_CODE (foo
) == VAR_DECL
&& C_DECL_REGISTER (foo
))
1646 pedwarn ("ISO C forbids subscripting `register' array");
1647 else if (! flag_isoc99
&& ! lvalue_p (foo
))
1648 pedwarn ("ISO C90 forbids subscripting non-lvalue array");
1651 type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (array
)));
1652 rval
= build (ARRAY_REF
, type
, array
, index
, NULL_TREE
, NULL_TREE
);
1653 /* Array ref is const/volatile if the array elements are
1654 or if the array is. */
1655 TREE_READONLY (rval
)
1656 |= (TYPE_READONLY (TREE_TYPE (TREE_TYPE (array
)))
1657 | TREE_READONLY (array
));
1658 TREE_SIDE_EFFECTS (rval
)
1659 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array
)))
1660 | TREE_SIDE_EFFECTS (array
));
1661 TREE_THIS_VOLATILE (rval
)
1662 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array
)))
1663 /* This was added by rms on 16 Nov 91.
1664 It fixes vol struct foo *a; a->elts[1]
1665 in an inline function.
1666 Hope it doesn't break something else. */
1667 | TREE_THIS_VOLATILE (array
));
1668 return require_complete_type (fold (rval
));
1672 tree ar
= default_conversion (array
);
1673 tree ind
= default_conversion (index
);
1675 /* Do the same warning check as above, but only on the part that's
1676 syntactically the index and only if it is also semantically
1678 if (warn_char_subscripts
1679 && TREE_CODE (TREE_TYPE (index
)) == INTEGER_TYPE
1680 && TYPE_MAIN_VARIANT (TREE_TYPE (index
)) == char_type_node
)
1681 warning ("subscript has type `char'");
1683 /* Put the integer in IND to simplify error checking. */
1684 if (TREE_CODE (TREE_TYPE (ar
)) == INTEGER_TYPE
)
1691 if (ar
== error_mark_node
)
1694 if (TREE_CODE (TREE_TYPE (ar
)) != POINTER_TYPE
1695 || TREE_CODE (TREE_TYPE (TREE_TYPE (ar
))) == FUNCTION_TYPE
)
1697 error ("subscripted value is neither array nor pointer");
1698 return error_mark_node
;
1700 if (TREE_CODE (TREE_TYPE (ind
)) != INTEGER_TYPE
)
1702 error ("array subscript is not an integer");
1703 return error_mark_node
;
1706 return build_indirect_ref (build_binary_op (PLUS_EXPR
, ar
, ind
, 0),
1711 /* Build an external reference to identifier ID. FUN indicates
1712 whether this will be used for a function call. */
1714 build_external_ref (tree id
, int fun
)
1717 tree decl
= lookup_name (id
);
1718 tree objc_ivar
= lookup_objc_ivar (id
);
1720 if (decl
&& decl
!= error_mark_node
)
1722 /* Properly declared variable or function reference. */
1725 else if (decl
!= objc_ivar
&& !DECL_FILE_SCOPE_P (decl
))
1727 warning ("local declaration of `%s' hides instance variable",
1728 IDENTIFIER_POINTER (id
));
1737 /* Implicit function declaration. */
1738 ref
= implicitly_declare (id
);
1739 else if (decl
== error_mark_node
)
1740 /* Don't complain about something that's already been
1741 complained about. */
1742 return error_mark_node
;
1745 undeclared_variable (id
);
1746 return error_mark_node
;
1749 if (TREE_TYPE (ref
) == error_mark_node
)
1750 return error_mark_node
;
1752 if (TREE_DEPRECATED (ref
))
1753 warn_deprecated_use (ref
);
1755 if (!skip_evaluation
)
1756 assemble_external (ref
);
1757 TREE_USED (ref
) = 1;
1759 if (TREE_CODE (ref
) == CONST_DECL
)
1761 ref
= DECL_INITIAL (ref
);
1762 TREE_CONSTANT (ref
) = 1;
1763 TREE_INVARIANT (ref
) = 1;
1765 else if (current_function_decl
!= 0
1766 && !DECL_FILE_SCOPE_P (current_function_decl
)
1767 && (TREE_CODE (ref
) == VAR_DECL
1768 || TREE_CODE (ref
) == PARM_DECL
1769 || TREE_CODE (ref
) == FUNCTION_DECL
))
1771 tree context
= decl_function_context (ref
);
1773 if (context
!= 0 && context
!= current_function_decl
)
1774 DECL_NONLOCAL (ref
) = 1;
1780 /* Build a function call to function FUNCTION with parameters PARAMS.
1781 PARAMS is a list--a chain of TREE_LIST nodes--in which the
1782 TREE_VALUE of each node is a parameter-expression.
1783 FUNCTION's data type may be a function type or a pointer-to-function. */
1786 build_function_call (tree function
, tree params
)
1788 tree fntype
, fundecl
= 0;
1789 tree coerced_params
;
1790 tree name
= NULL_TREE
, result
;
1793 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
1794 STRIP_TYPE_NOPS (function
);
1796 /* Convert anything with function type to a pointer-to-function. */
1797 if (TREE_CODE (function
) == FUNCTION_DECL
)
1799 name
= DECL_NAME (function
);
1801 /* Differs from default_conversion by not setting TREE_ADDRESSABLE
1802 (because calling an inline function does not mean the function
1803 needs to be separately compiled). */
1804 fntype
= build_type_variant (TREE_TYPE (function
),
1805 TREE_READONLY (function
),
1806 TREE_THIS_VOLATILE (function
));
1808 function
= build1 (ADDR_EXPR
, build_pointer_type (fntype
), function
);
1811 function
= default_conversion (function
);
1813 fntype
= TREE_TYPE (function
);
1815 if (TREE_CODE (fntype
) == ERROR_MARK
)
1816 return error_mark_node
;
1818 if (!(TREE_CODE (fntype
) == POINTER_TYPE
1819 && TREE_CODE (TREE_TYPE (fntype
)) == FUNCTION_TYPE
))
1821 error ("called object is not a function");
1822 return error_mark_node
;
1825 if (fundecl
&& TREE_THIS_VOLATILE (fundecl
))
1826 current_function_returns_abnormally
= 1;
1828 /* fntype now gets the type of function pointed to. */
1829 fntype
= TREE_TYPE (fntype
);
1831 /* Check that the function is called through a compatible prototype.
1832 If it is not, replace the call by a trap, wrapped up in a compound
1833 expression if necessary. This has the nice side-effect to prevent
1834 the tree-inliner from generating invalid assignment trees which may
1835 blow up in the RTL expander later.
1837 ??? This doesn't work for Objective-C because objc_comptypes
1838 refuses to compare function prototypes, yet the compiler appears
1839 to build calls that are flagged as invalid by C's comptypes. */
1840 if (! c_dialect_objc ()
1841 && TREE_CODE (function
) == NOP_EXPR
1842 && TREE_CODE (tem
= TREE_OPERAND (function
, 0)) == ADDR_EXPR
1843 && TREE_CODE (tem
= TREE_OPERAND (tem
, 0)) == FUNCTION_DECL
1844 && ! comptypes (fntype
, TREE_TYPE (tem
)))
1846 tree return_type
= TREE_TYPE (fntype
);
1847 tree trap
= build_function_call (built_in_decls
[BUILT_IN_TRAP
],
1850 /* This situation leads to run-time undefined behavior. We can't,
1851 therefore, simply error unless we can prove that all possible
1852 executions of the program must execute the code. */
1853 warning ("function called through a non-compatible type");
1855 /* We can, however, treat "undefined" any way we please.
1856 Call abort to encourage the user to fix the program. */
1857 inform ("if this code is reached, the program will abort");
1859 if (VOID_TYPE_P (return_type
))
1865 if (AGGREGATE_TYPE_P (return_type
))
1866 rhs
= build_compound_literal (return_type
,
1867 build_constructor (return_type
,
1870 rhs
= fold (build1 (NOP_EXPR
, return_type
, integer_zero_node
));
1872 return build (COMPOUND_EXPR
, return_type
, trap
, rhs
);
1876 /* Convert the parameters to the types declared in the
1877 function prototype, or apply default promotions. */
1880 = convert_arguments (TYPE_ARG_TYPES (fntype
), params
, name
, fundecl
);
1882 /* Check that the arguments to the function are valid. */
1884 check_function_arguments (TYPE_ATTRIBUTES (fntype
), coerced_params
);
1886 result
= build (CALL_EXPR
, TREE_TYPE (fntype
),
1887 function
, coerced_params
, NULL_TREE
);
1888 TREE_SIDE_EFFECTS (result
) = 1;
1890 if (require_constant_value
)
1892 result
= fold_initializer (result
);
1894 if (TREE_CONSTANT (result
)
1895 && (name
== NULL_TREE
1896 || strncmp (IDENTIFIER_POINTER (name
), "__builtin_", 10) != 0))
1897 pedwarn_init ("initializer element is not constant");
1900 result
= fold (result
);
1902 if (VOID_TYPE_P (TREE_TYPE (result
)))
1904 return require_complete_type (result
);
1907 /* Convert the argument expressions in the list VALUES
1908 to the types in the list TYPELIST. The result is a list of converted
1909 argument expressions.
1911 If TYPELIST is exhausted, or when an element has NULL as its type,
1912 perform the default conversions.
1914 PARMLIST is the chain of parm decls for the function being called.
1915 It may be 0, if that info is not available.
1916 It is used only for generating error messages.
1918 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
1920 This is also where warnings about wrong number of args are generated.
1922 Both VALUES and the returned value are chains of TREE_LIST nodes
1923 with the elements of the list in the TREE_VALUE slots of those nodes. */
1926 convert_arguments (tree typelist
, tree values
, tree name
, tree fundecl
)
1928 tree typetail
, valtail
;
1932 /* Scan the given expressions and types, producing individual
1933 converted arguments and pushing them on RESULT in reverse order. */
1935 for (valtail
= values
, typetail
= typelist
, parmnum
= 0;
1937 valtail
= TREE_CHAIN (valtail
), parmnum
++)
1939 tree type
= typetail
? TREE_VALUE (typetail
) : 0;
1940 tree val
= TREE_VALUE (valtail
);
1942 if (type
== void_type_node
)
1945 error ("too many arguments to function `%s'",
1946 IDENTIFIER_POINTER (name
));
1948 error ("too many arguments to function");
1952 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
1953 /* Do not use STRIP_NOPS here! We do not want an enumerator with value 0
1954 to convert automatically to a pointer. */
1955 if (TREE_CODE (val
) == NON_LVALUE_EXPR
)
1956 val
= TREE_OPERAND (val
, 0);
1958 val
= default_function_array_conversion (val
);
1960 val
= require_complete_type (val
);
1964 /* Formal parm type is specified by a function prototype. */
1967 if (!COMPLETE_TYPE_P (type
))
1969 error ("type of formal parameter %d is incomplete", parmnum
+ 1);
1974 /* Optionally warn about conversions that
1975 differ from the default conversions. */
1976 if (warn_conversion
|| warn_traditional
)
1978 unsigned int formal_prec
= TYPE_PRECISION (type
);
1980 if (INTEGRAL_TYPE_P (type
)
1981 && TREE_CODE (TREE_TYPE (val
)) == REAL_TYPE
)
1982 warn_for_assignment ("%s as integer rather than floating due to prototype", (char *) 0, name
, parmnum
+ 1);
1983 if (INTEGRAL_TYPE_P (type
)
1984 && TREE_CODE (TREE_TYPE (val
)) == COMPLEX_TYPE
)
1985 warn_for_assignment ("%s as integer rather than complex due to prototype", (char *) 0, name
, parmnum
+ 1);
1986 else if (TREE_CODE (type
) == COMPLEX_TYPE
1987 && TREE_CODE (TREE_TYPE (val
)) == REAL_TYPE
)
1988 warn_for_assignment ("%s as complex rather than floating due to prototype", (char *) 0, name
, parmnum
+ 1);
1989 else if (TREE_CODE (type
) == REAL_TYPE
1990 && INTEGRAL_TYPE_P (TREE_TYPE (val
)))
1991 warn_for_assignment ("%s as floating rather than integer due to prototype", (char *) 0, name
, parmnum
+ 1);
1992 else if (TREE_CODE (type
) == COMPLEX_TYPE
1993 && INTEGRAL_TYPE_P (TREE_TYPE (val
)))
1994 warn_for_assignment ("%s as complex rather than integer due to prototype", (char *) 0, name
, parmnum
+ 1);
1995 else if (TREE_CODE (type
) == REAL_TYPE
1996 && TREE_CODE (TREE_TYPE (val
)) == COMPLEX_TYPE
)
1997 warn_for_assignment ("%s as floating rather than complex due to prototype", (char *) 0, name
, parmnum
+ 1);
1998 /* ??? At some point, messages should be written about
1999 conversions between complex types, but that's too messy
2001 else if (TREE_CODE (type
) == REAL_TYPE
2002 && TREE_CODE (TREE_TYPE (val
)) == REAL_TYPE
)
2004 /* Warn if any argument is passed as `float',
2005 since without a prototype it would be `double'. */
2006 if (formal_prec
== TYPE_PRECISION (float_type_node
))
2007 warn_for_assignment ("%s as `float' rather than `double' due to prototype", (char *) 0, name
, parmnum
+ 1);
2009 /* Detect integer changing in width or signedness.
2010 These warnings are only activated with
2011 -Wconversion, not with -Wtraditional. */
2012 else if (warn_conversion
&& INTEGRAL_TYPE_P (type
)
2013 && INTEGRAL_TYPE_P (TREE_TYPE (val
)))
2015 tree would_have_been
= default_conversion (val
);
2016 tree type1
= TREE_TYPE (would_have_been
);
2018 if (TREE_CODE (type
) == ENUMERAL_TYPE
2019 && (TYPE_MAIN_VARIANT (type
)
2020 == TYPE_MAIN_VARIANT (TREE_TYPE (val
))))
2021 /* No warning if function asks for enum
2022 and the actual arg is that enum type. */
2024 else if (formal_prec
!= TYPE_PRECISION (type1
))
2025 warn_for_assignment ("%s with different width due to prototype", (char *) 0, name
, parmnum
+ 1);
2026 else if (TYPE_UNSIGNED (type
) == TYPE_UNSIGNED (type1
))
2028 /* Don't complain if the formal parameter type
2029 is an enum, because we can't tell now whether
2030 the value was an enum--even the same enum. */
2031 else if (TREE_CODE (type
) == ENUMERAL_TYPE
)
2033 else if (TREE_CODE (val
) == INTEGER_CST
2034 && int_fits_type_p (val
, type
))
2035 /* Change in signedness doesn't matter
2036 if a constant value is unaffected. */
2038 /* Likewise for a constant in a NOP_EXPR. */
2039 else if (TREE_CODE (val
) == NOP_EXPR
2040 && TREE_CODE (TREE_OPERAND (val
, 0)) == INTEGER_CST
2041 && int_fits_type_p (TREE_OPERAND (val
, 0), type
))
2043 /* If the value is extended from a narrower
2044 unsigned type, it doesn't matter whether we
2045 pass it as signed or unsigned; the value
2046 certainly is the same either way. */
2047 else if (TYPE_PRECISION (TREE_TYPE (val
)) < TYPE_PRECISION (type
)
2048 && TYPE_UNSIGNED (TREE_TYPE (val
)))
2050 else if (TYPE_UNSIGNED (type
))
2051 warn_for_assignment ("%s as unsigned due to prototype", (char *) 0, name
, parmnum
+ 1);
2053 warn_for_assignment ("%s as signed due to prototype", (char *) 0, name
, parmnum
+ 1);
2057 parmval
= convert_for_assignment (type
, val
,
2058 (char *) 0, /* arg passing */
2059 fundecl
, name
, parmnum
+ 1);
2061 if (targetm
.calls
.promote_prototypes (fundecl
? TREE_TYPE (fundecl
) : 0)
2062 && INTEGRAL_TYPE_P (type
)
2063 && (TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
)))
2064 parmval
= default_conversion (parmval
);
2066 result
= tree_cons (NULL_TREE
, parmval
, result
);
2068 else if (TREE_CODE (TREE_TYPE (val
)) == REAL_TYPE
2069 && (TYPE_PRECISION (TREE_TYPE (val
))
2070 < TYPE_PRECISION (double_type_node
)))
2071 /* Convert `float' to `double'. */
2072 result
= tree_cons (NULL_TREE
, convert (double_type_node
, val
), result
);
2074 /* Convert `short' and `char' to full-size `int'. */
2075 result
= tree_cons (NULL_TREE
, default_conversion (val
), result
);
2078 typetail
= TREE_CHAIN (typetail
);
2081 if (typetail
!= 0 && TREE_VALUE (typetail
) != void_type_node
)
2084 error ("too few arguments to function `%s'",
2085 IDENTIFIER_POINTER (name
));
2087 error ("too few arguments to function");
2090 return nreverse (result
);
2093 /* This is the entry point used by the parser
2094 for binary operators in the input.
2095 In addition to constructing the expression,
2096 we check for operands that were written with other binary operators
2097 in a way that is likely to confuse the user. */
2100 parser_build_binary_op (enum tree_code code
, struct c_expr arg1
,
2103 struct c_expr result
;
2105 enum tree_code code1
= arg1
.original_code
;
2106 enum tree_code code2
= arg2
.original_code
;
2108 result
.value
= build_binary_op (code
, arg1
.value
, arg2
.value
, 1);
2109 result
.original_code
= code
;
2111 if (TREE_CODE (result
.value
) == ERROR_MARK
)
2114 /* Check for cases such as x+y<<z which users are likely
2116 if (warn_parentheses
)
2118 if (code
== LSHIFT_EXPR
|| code
== RSHIFT_EXPR
)
2120 if (code1
== PLUS_EXPR
|| code1
== MINUS_EXPR
2121 || code2
== PLUS_EXPR
|| code2
== MINUS_EXPR
)
2122 warning ("suggest parentheses around + or - inside shift");
2125 if (code
== TRUTH_ORIF_EXPR
)
2127 if (code1
== TRUTH_ANDIF_EXPR
2128 || code2
== TRUTH_ANDIF_EXPR
)
2129 warning ("suggest parentheses around && within ||");
2132 if (code
== BIT_IOR_EXPR
)
2134 if (code1
== BIT_AND_EXPR
|| code1
== BIT_XOR_EXPR
2135 || code1
== PLUS_EXPR
|| code1
== MINUS_EXPR
2136 || code2
== BIT_AND_EXPR
|| code2
== BIT_XOR_EXPR
2137 || code2
== PLUS_EXPR
|| code2
== MINUS_EXPR
)
2138 warning ("suggest parentheses around arithmetic in operand of |");
2139 /* Check cases like x|y==z */
2140 if (TREE_CODE_CLASS (code1
) == '<' || TREE_CODE_CLASS (code2
) == '<')
2141 warning ("suggest parentheses around comparison in operand of |");
2144 if (code
== BIT_XOR_EXPR
)
2146 if (code1
== BIT_AND_EXPR
2147 || code1
== PLUS_EXPR
|| code1
== MINUS_EXPR
2148 || code2
== BIT_AND_EXPR
2149 || code2
== PLUS_EXPR
|| code2
== MINUS_EXPR
)
2150 warning ("suggest parentheses around arithmetic in operand of ^");
2151 /* Check cases like x^y==z */
2152 if (TREE_CODE_CLASS (code1
) == '<' || TREE_CODE_CLASS (code2
) == '<')
2153 warning ("suggest parentheses around comparison in operand of ^");
2156 if (code
== BIT_AND_EXPR
)
2158 if (code1
== PLUS_EXPR
|| code1
== MINUS_EXPR
2159 || code2
== PLUS_EXPR
|| code2
== MINUS_EXPR
)
2160 warning ("suggest parentheses around + or - in operand of &");
2161 /* Check cases like x&y==z */
2162 if (TREE_CODE_CLASS (code1
) == '<' || TREE_CODE_CLASS (code2
) == '<')
2163 warning ("suggest parentheses around comparison in operand of &");
2165 /* Similarly, check for cases like 1<=i<=10 that are probably errors. */
2166 if (TREE_CODE_CLASS (code
) == '<'
2167 && (TREE_CODE_CLASS (code1
) == '<'
2168 || TREE_CODE_CLASS (code2
) == '<'))
2169 warning ("comparisons like X<=Y<=Z do not have their mathematical meaning");
2173 unsigned_conversion_warning (result
.value
, arg1
.value
);
2174 unsigned_conversion_warning (result
.value
, arg2
.value
);
2175 overflow_warning (result
.value
);
2180 /* Return a tree for the difference of pointers OP0 and OP1.
2181 The resulting tree has type int. */
2184 pointer_diff (tree op0
, tree op1
)
2186 tree restype
= ptrdiff_type_node
;
2188 tree target_type
= TREE_TYPE (TREE_TYPE (op0
));
2189 tree con0
, con1
, lit0
, lit1
;
2190 tree orig_op1
= op1
;
2192 if (pedantic
|| warn_pointer_arith
)
2194 if (TREE_CODE (target_type
) == VOID_TYPE
)
2195 pedwarn ("pointer of type `void *' used in subtraction");
2196 if (TREE_CODE (target_type
) == FUNCTION_TYPE
)
2197 pedwarn ("pointer to a function used in subtraction");
2200 /* If the conversion to ptrdiff_type does anything like widening or
2201 converting a partial to an integral mode, we get a convert_expression
2202 that is in the way to do any simplifications.
2203 (fold-const.c doesn't know that the extra bits won't be needed.
2204 split_tree uses STRIP_SIGN_NOPS, which leaves conversions to a
2205 different mode in place.)
2206 So first try to find a common term here 'by hand'; we want to cover
2207 at least the cases that occur in legal static initializers. */
2208 con0
= TREE_CODE (op0
) == NOP_EXPR
? TREE_OPERAND (op0
, 0) : op0
;
2209 con1
= TREE_CODE (op1
) == NOP_EXPR
? TREE_OPERAND (op1
, 0) : op1
;
2211 if (TREE_CODE (con0
) == PLUS_EXPR
)
2213 lit0
= TREE_OPERAND (con0
, 1);
2214 con0
= TREE_OPERAND (con0
, 0);
2217 lit0
= integer_zero_node
;
2219 if (TREE_CODE (con1
) == PLUS_EXPR
)
2221 lit1
= TREE_OPERAND (con1
, 1);
2222 con1
= TREE_OPERAND (con1
, 0);
2225 lit1
= integer_zero_node
;
2227 if (operand_equal_p (con0
, con1
, 0))
2234 /* First do the subtraction as integers;
2235 then drop through to build the divide operator.
2236 Do not do default conversions on the minus operator
2237 in case restype is a short type. */
2239 op0
= build_binary_op (MINUS_EXPR
, convert (restype
, op0
),
2240 convert (restype
, op1
), 0);
2241 /* This generates an error if op1 is pointer to incomplete type. */
2242 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (orig_op1
))))
2243 error ("arithmetic on pointer to an incomplete type");
2245 /* This generates an error if op0 is pointer to incomplete type. */
2246 op1
= c_size_in_bytes (target_type
);
2248 /* Divide by the size, in easiest possible way. */
2249 return fold (build (EXACT_DIV_EXPR
, restype
, op0
, convert (restype
, op1
)));
2252 /* Construct and perhaps optimize a tree representation
2253 for a unary operation. CODE, a tree_code, specifies the operation
2254 and XARG is the operand.
2255 For any CODE other than ADDR_EXPR, FLAG nonzero suppresses
2256 the default promotions (such as from short to int).
2257 For ADDR_EXPR, the default promotions are not applied; FLAG nonzero
2258 allows non-lvalues; this is only used to handle conversion of non-lvalue
2259 arrays to pointers in C99. */
2262 build_unary_op (enum tree_code code
, tree xarg
, int flag
)
2264 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
2267 enum tree_code typecode
= TREE_CODE (TREE_TYPE (arg
));
2269 int noconvert
= flag
;
2271 if (typecode
== ERROR_MARK
)
2272 return error_mark_node
;
2273 if (typecode
== ENUMERAL_TYPE
|| typecode
== BOOLEAN_TYPE
)
2274 typecode
= INTEGER_TYPE
;
2279 /* This is used for unary plus, because a CONVERT_EXPR
2280 is enough to prevent anybody from looking inside for
2281 associativity, but won't generate any code. */
2282 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
2283 || typecode
== COMPLEX_TYPE
2284 || typecode
== VECTOR_TYPE
))
2286 error ("wrong type argument to unary plus");
2287 return error_mark_node
;
2289 else if (!noconvert
)
2290 arg
= default_conversion (arg
);
2291 arg
= non_lvalue (arg
);
2295 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
2296 || typecode
== COMPLEX_TYPE
2297 || typecode
== VECTOR_TYPE
))
2299 error ("wrong type argument to unary minus");
2300 return error_mark_node
;
2302 else if (!noconvert
)
2303 arg
= default_conversion (arg
);
2307 if (typecode
== INTEGER_TYPE
|| typecode
== VECTOR_TYPE
)
2310 arg
= default_conversion (arg
);
2312 else if (typecode
== COMPLEX_TYPE
)
2316 pedwarn ("ISO C does not support `~' for complex conjugation");
2318 arg
= default_conversion (arg
);
2322 error ("wrong type argument to bit-complement");
2323 return error_mark_node
;
2328 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
))
2330 error ("wrong type argument to abs");
2331 return error_mark_node
;
2333 else if (!noconvert
)
2334 arg
= default_conversion (arg
);
2338 /* Conjugating a real value is a no-op, but allow it anyway. */
2339 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
2340 || typecode
== COMPLEX_TYPE
))
2342 error ("wrong type argument to conjugation");
2343 return error_mark_node
;
2345 else if (!noconvert
)
2346 arg
= default_conversion (arg
);
2349 case TRUTH_NOT_EXPR
:
2350 if (typecode
!= INTEGER_TYPE
2351 && typecode
!= REAL_TYPE
&& typecode
!= POINTER_TYPE
2352 && typecode
!= COMPLEX_TYPE
2353 /* These will convert to a pointer. */
2354 && typecode
!= ARRAY_TYPE
&& typecode
!= FUNCTION_TYPE
)
2356 error ("wrong type argument to unary exclamation mark");
2357 return error_mark_node
;
2359 arg
= lang_hooks
.truthvalue_conversion (arg
);
2360 return invert_truthvalue (arg
);
2366 if (TREE_CODE (arg
) == COMPLEX_CST
)
2367 return TREE_REALPART (arg
);
2368 else if (TREE_CODE (TREE_TYPE (arg
)) == COMPLEX_TYPE
)
2369 return fold (build1 (REALPART_EXPR
, TREE_TYPE (TREE_TYPE (arg
)), arg
));
2374 if (TREE_CODE (arg
) == COMPLEX_CST
)
2375 return TREE_IMAGPART (arg
);
2376 else if (TREE_CODE (TREE_TYPE (arg
)) == COMPLEX_TYPE
)
2377 return fold (build1 (IMAGPART_EXPR
, TREE_TYPE (TREE_TYPE (arg
)), arg
));
2379 return convert (TREE_TYPE (arg
), integer_zero_node
);
2381 case PREINCREMENT_EXPR
:
2382 case POSTINCREMENT_EXPR
:
2383 case PREDECREMENT_EXPR
:
2384 case POSTDECREMENT_EXPR
:
2386 /* Increment or decrement the real part of the value,
2387 and don't change the imaginary part. */
2388 if (typecode
== COMPLEX_TYPE
)
2393 pedwarn ("ISO C does not support `++' and `--' on complex types");
2395 arg
= stabilize_reference (arg
);
2396 real
= build_unary_op (REALPART_EXPR
, arg
, 1);
2397 imag
= build_unary_op (IMAGPART_EXPR
, arg
, 1);
2398 return build (COMPLEX_EXPR
, TREE_TYPE (arg
),
2399 build_unary_op (code
, real
, 1), imag
);
2402 /* Report invalid types. */
2404 if (typecode
!= POINTER_TYPE
2405 && typecode
!= INTEGER_TYPE
&& typecode
!= REAL_TYPE
)
2407 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
2408 error ("wrong type argument to increment");
2410 error ("wrong type argument to decrement");
2412 return error_mark_node
;
2417 tree result_type
= TREE_TYPE (arg
);
2419 arg
= get_unwidened (arg
, 0);
2420 argtype
= TREE_TYPE (arg
);
2422 /* Compute the increment. */
2424 if (typecode
== POINTER_TYPE
)
2426 /* If pointer target is an undefined struct,
2427 we just cannot know how to do the arithmetic. */
2428 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (result_type
)))
2430 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
2431 error ("increment of pointer to unknown structure");
2433 error ("decrement of pointer to unknown structure");
2435 else if ((pedantic
|| warn_pointer_arith
)
2436 && (TREE_CODE (TREE_TYPE (result_type
)) == FUNCTION_TYPE
2437 || TREE_CODE (TREE_TYPE (result_type
)) == VOID_TYPE
))
2439 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
2440 pedwarn ("wrong type argument to increment");
2442 pedwarn ("wrong type argument to decrement");
2445 inc
= c_size_in_bytes (TREE_TYPE (result_type
));
2448 inc
= integer_one_node
;
2450 inc
= convert (argtype
, inc
);
2452 /* Complain about anything else that is not a true lvalue. */
2453 if (!lvalue_or_else (arg
, ((code
== PREINCREMENT_EXPR
2454 || code
== POSTINCREMENT_EXPR
)
2455 ? "invalid lvalue in increment"
2456 : "invalid lvalue in decrement")))
2457 return error_mark_node
;
2459 /* Report a read-only lvalue. */
2460 if (TREE_READONLY (arg
))
2461 readonly_error (arg
,
2462 ((code
== PREINCREMENT_EXPR
2463 || code
== POSTINCREMENT_EXPR
)
2464 ? "increment" : "decrement"));
2466 if (TREE_CODE (TREE_TYPE (arg
)) == BOOLEAN_TYPE
)
2467 val
= boolean_increment (code
, arg
);
2469 val
= build (code
, TREE_TYPE (arg
), arg
, inc
);
2470 TREE_SIDE_EFFECTS (val
) = 1;
2471 val
= convert (result_type
, val
);
2472 if (TREE_CODE (val
) != code
)
2473 TREE_NO_WARNING (val
) = 1;
2478 /* Note that this operation never does default_conversion. */
2480 /* Let &* cancel out to simplify resulting code. */
2481 if (TREE_CODE (arg
) == INDIRECT_REF
)
2483 /* Don't let this be an lvalue. */
2484 if (lvalue_p (TREE_OPERAND (arg
, 0)))
2485 return non_lvalue (TREE_OPERAND (arg
, 0));
2486 return TREE_OPERAND (arg
, 0);
2489 /* For &x[y], return x+y */
2490 if (TREE_CODE (arg
) == ARRAY_REF
)
2492 if (!c_mark_addressable (TREE_OPERAND (arg
, 0)))
2493 return error_mark_node
;
2494 return build_binary_op (PLUS_EXPR
, TREE_OPERAND (arg
, 0),
2495 TREE_OPERAND (arg
, 1), 1);
2498 /* Anything not already handled and not a true memory reference
2499 or a non-lvalue array is an error. */
2500 else if (typecode
!= FUNCTION_TYPE
&& !flag
2501 && !lvalue_or_else (arg
, "invalid lvalue in unary `&'"))
2502 return error_mark_node
;
2504 /* Ordinary case; arg is a COMPONENT_REF or a decl. */
2505 argtype
= TREE_TYPE (arg
);
2507 /* If the lvalue is const or volatile, merge that into the type
2508 to which the address will point. Note that you can't get a
2509 restricted pointer by taking the address of something, so we
2510 only have to deal with `const' and `volatile' here. */
2511 if ((DECL_P (arg
) || TREE_CODE_CLASS (TREE_CODE (arg
)) == 'r')
2512 && (TREE_READONLY (arg
) || TREE_THIS_VOLATILE (arg
)))
2513 argtype
= c_build_type_variant (argtype
,
2514 TREE_READONLY (arg
),
2515 TREE_THIS_VOLATILE (arg
));
2517 argtype
= build_pointer_type (argtype
);
2519 if (!c_mark_addressable (arg
))
2520 return error_mark_node
;
2525 if (TREE_CODE (arg
) == COMPONENT_REF
)
2527 tree field
= TREE_OPERAND (arg
, 1);
2529 addr
= build_unary_op (ADDR_EXPR
, TREE_OPERAND (arg
, 0), flag
);
2531 if (DECL_C_BIT_FIELD (field
))
2533 error ("attempt to take address of bit-field structure member `%s'",
2534 IDENTIFIER_POINTER (DECL_NAME (field
)));
2535 return error_mark_node
;
2538 addr
= fold (build (PLUS_EXPR
, argtype
,
2539 convert (argtype
, addr
),
2540 convert (argtype
, byte_position (field
))));
2543 addr
= build1 (code
, argtype
, arg
);
2545 if (TREE_CODE (arg
) == COMPOUND_LITERAL_EXPR
)
2546 TREE_INVARIANT (addr
) = TREE_CONSTANT (addr
) = 1;
2556 argtype
= TREE_TYPE (arg
);
2557 val
= build1 (code
, argtype
, arg
);
2558 return require_constant_value
? fold_initializer (val
) : fold (val
);
2561 /* Return nonzero if REF is an lvalue valid for this language.
2562 Lvalues can be assigned, unless their type has TYPE_READONLY.
2563 Lvalues can have their address taken, unless they have C_DECL_REGISTER. */
2568 enum tree_code code
= TREE_CODE (ref
);
2575 return lvalue_p (TREE_OPERAND (ref
, 0));
2577 case COMPOUND_LITERAL_EXPR
:
2587 return (TREE_CODE (TREE_TYPE (ref
)) != FUNCTION_TYPE
2588 && TREE_CODE (TREE_TYPE (ref
)) != METHOD_TYPE
);
2591 return TREE_CODE (TREE_TYPE (ref
)) == ARRAY_TYPE
;
2598 /* Return nonzero if REF is an lvalue valid for this language;
2599 otherwise, print an error message and return zero. */
2602 lvalue_or_else (tree ref
, const char *msgid
)
2604 int win
= lvalue_p (ref
);
2607 error ("%s", msgid
);
2613 /* Warn about storing in something that is `const'. */
2616 readonly_error (tree arg
, const char *msgid
)
2618 if (TREE_CODE (arg
) == COMPONENT_REF
)
2620 if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg
, 0))))
2621 readonly_error (TREE_OPERAND (arg
, 0), msgid
);
2623 error ("%s of read-only member `%s'", _(msgid
),
2624 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (arg
, 1))));
2626 else if (TREE_CODE (arg
) == VAR_DECL
)
2627 error ("%s of read-only variable `%s'", _(msgid
),
2628 IDENTIFIER_POINTER (DECL_NAME (arg
)));
2630 error ("%s of read-only location", _(msgid
));
2633 /* Mark EXP saying that we need to be able to take the
2634 address of it; it should not be allocated in a register.
2635 Returns true if successful. */
2638 c_mark_addressable (tree exp
)
2643 switch (TREE_CODE (x
))
2646 if (DECL_C_BIT_FIELD (TREE_OPERAND (x
, 1)))
2648 error ("cannot take address of bit-field `%s'",
2649 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (x
, 1))));
2653 /* ... fall through ... */
2659 x
= TREE_OPERAND (x
, 0);
2662 case COMPOUND_LITERAL_EXPR
:
2664 TREE_ADDRESSABLE (x
) = 1;
2671 if (C_DECL_REGISTER (x
)
2672 && DECL_NONLOCAL (x
))
2674 if (TREE_PUBLIC (x
) || TREE_STATIC (x
) || DECL_EXTERNAL (x
))
2676 error ("global register variable `%s' used in nested function",
2677 IDENTIFIER_POINTER (DECL_NAME (x
)));
2680 pedwarn ("register variable `%s' used in nested function",
2681 IDENTIFIER_POINTER (DECL_NAME (x
)));
2683 else if (C_DECL_REGISTER (x
))
2685 if (TREE_PUBLIC (x
) || TREE_STATIC (x
) || DECL_EXTERNAL (x
))
2687 error ("address of global register variable `%s' requested",
2688 IDENTIFIER_POINTER (DECL_NAME (x
)));
2692 pedwarn ("address of register variable `%s' requested",
2693 IDENTIFIER_POINTER (DECL_NAME (x
)));
2698 TREE_ADDRESSABLE (x
) = 1;
2705 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
2708 build_conditional_expr (tree ifexp
, tree op1
, tree op2
)
2712 enum tree_code code1
;
2713 enum tree_code code2
;
2714 tree result_type
= NULL
;
2715 tree orig_op1
= op1
, orig_op2
= op2
;
2717 ifexp
= lang_hooks
.truthvalue_conversion (default_conversion (ifexp
));
2719 /* Promote both alternatives. */
2721 if (TREE_CODE (TREE_TYPE (op1
)) != VOID_TYPE
)
2722 op1
= default_conversion (op1
);
2723 if (TREE_CODE (TREE_TYPE (op2
)) != VOID_TYPE
)
2724 op2
= default_conversion (op2
);
2726 if (TREE_CODE (ifexp
) == ERROR_MARK
2727 || TREE_CODE (TREE_TYPE (op1
)) == ERROR_MARK
2728 || TREE_CODE (TREE_TYPE (op2
)) == ERROR_MARK
)
2729 return error_mark_node
;
2731 type1
= TREE_TYPE (op1
);
2732 code1
= TREE_CODE (type1
);
2733 type2
= TREE_TYPE (op2
);
2734 code2
= TREE_CODE (type2
);
2736 /* C90 does not permit non-lvalue arrays in conditional expressions.
2737 In C99 they will be pointers by now. */
2738 if (code1
== ARRAY_TYPE
|| code2
== ARRAY_TYPE
)
2740 error ("non-lvalue array in conditional expression");
2741 return error_mark_node
;
2744 /* Quickly detect the usual case where op1 and op2 have the same type
2746 if (TYPE_MAIN_VARIANT (type1
) == TYPE_MAIN_VARIANT (type2
))
2749 result_type
= type1
;
2751 result_type
= TYPE_MAIN_VARIANT (type1
);
2753 else if ((code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
2754 || code1
== COMPLEX_TYPE
)
2755 && (code2
== INTEGER_TYPE
|| code2
== REAL_TYPE
2756 || code2
== COMPLEX_TYPE
))
2758 result_type
= common_type (type1
, type2
);
2760 /* If -Wsign-compare, warn here if type1 and type2 have
2761 different signedness. We'll promote the signed to unsigned
2762 and later code won't know it used to be different.
2763 Do this check on the original types, so that explicit casts
2764 will be considered, but default promotions won't. */
2765 if (warn_sign_compare
&& !skip_evaluation
)
2767 int unsigned_op1
= TYPE_UNSIGNED (TREE_TYPE (orig_op1
));
2768 int unsigned_op2
= TYPE_UNSIGNED (TREE_TYPE (orig_op2
));
2770 if (unsigned_op1
^ unsigned_op2
)
2772 /* Do not warn if the result type is signed, since the
2773 signed type will only be chosen if it can represent
2774 all the values of the unsigned type. */
2775 if (! TYPE_UNSIGNED (result_type
))
2777 /* Do not warn if the signed quantity is an unsuffixed
2778 integer literal (or some static constant expression
2779 involving such literals) and it is non-negative. */
2780 else if ((unsigned_op2
&& tree_expr_nonnegative_p (op1
))
2781 || (unsigned_op1
&& tree_expr_nonnegative_p (op2
)))
2784 warning ("signed and unsigned type in conditional expression");
2788 else if (code1
== VOID_TYPE
|| code2
== VOID_TYPE
)
2790 if (pedantic
&& (code1
!= VOID_TYPE
|| code2
!= VOID_TYPE
))
2791 pedwarn ("ISO C forbids conditional expr with only one void side");
2792 result_type
= void_type_node
;
2794 else if (code1
== POINTER_TYPE
&& code2
== POINTER_TYPE
)
2796 if (comp_target_types (type1
, type2
, 1))
2797 result_type
= common_pointer_type (type1
, type2
);
2798 else if (integer_zerop (op1
) && TREE_TYPE (type1
) == void_type_node
2799 && TREE_CODE (orig_op1
) != NOP_EXPR
)
2800 result_type
= qualify_type (type2
, type1
);
2801 else if (integer_zerop (op2
) && TREE_TYPE (type2
) == void_type_node
2802 && TREE_CODE (orig_op2
) != NOP_EXPR
)
2803 result_type
= qualify_type (type1
, type2
);
2804 else if (VOID_TYPE_P (TREE_TYPE (type1
)))
2806 if (pedantic
&& TREE_CODE (TREE_TYPE (type2
)) == FUNCTION_TYPE
)
2807 pedwarn ("ISO C forbids conditional expr between `void *' and function pointer");
2808 result_type
= build_pointer_type (qualify_type (TREE_TYPE (type1
),
2809 TREE_TYPE (type2
)));
2811 else if (VOID_TYPE_P (TREE_TYPE (type2
)))
2813 if (pedantic
&& TREE_CODE (TREE_TYPE (type1
)) == FUNCTION_TYPE
)
2814 pedwarn ("ISO C forbids conditional expr between `void *' and function pointer");
2815 result_type
= build_pointer_type (qualify_type (TREE_TYPE (type2
),
2816 TREE_TYPE (type1
)));
2820 pedwarn ("pointer type mismatch in conditional expression");
2821 result_type
= build_pointer_type (void_type_node
);
2824 else if (code1
== POINTER_TYPE
&& code2
== INTEGER_TYPE
)
2826 if (! integer_zerop (op2
))
2827 pedwarn ("pointer/integer type mismatch in conditional expression");
2830 op2
= null_pointer_node
;
2832 result_type
= type1
;
2834 else if (code2
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
2836 if (!integer_zerop (op1
))
2837 pedwarn ("pointer/integer type mismatch in conditional expression");
2840 op1
= null_pointer_node
;
2842 result_type
= type2
;
2847 if (flag_cond_mismatch
)
2848 result_type
= void_type_node
;
2851 error ("type mismatch in conditional expression");
2852 return error_mark_node
;
2856 /* Merge const and volatile flags of the incoming types. */
2858 = build_type_variant (result_type
,
2859 TREE_READONLY (op1
) || TREE_READONLY (op2
),
2860 TREE_THIS_VOLATILE (op1
) || TREE_THIS_VOLATILE (op2
));
2862 if (result_type
!= TREE_TYPE (op1
))
2863 op1
= convert_and_check (result_type
, op1
);
2864 if (result_type
!= TREE_TYPE (op2
))
2865 op2
= convert_and_check (result_type
, op2
);
2867 if (TREE_CODE (ifexp
) == INTEGER_CST
)
2868 return non_lvalue (integer_zerop (ifexp
) ? op2
: op1
);
2870 return fold (build (COND_EXPR
, result_type
, ifexp
, op1
, op2
));
2873 /* Return a compound expression that performs two expressions and
2874 returns the value of the second of them. */
2877 build_compound_expr (tree expr1
, tree expr2
)
2879 /* Convert arrays and functions to pointers. */
2880 expr2
= default_function_array_conversion (expr2
);
2882 /* Don't let (0, 0) be null pointer constant. */
2883 if (integer_zerop (expr2
))
2884 expr2
= non_lvalue (expr2
);
2886 if (! TREE_SIDE_EFFECTS (expr1
))
2888 /* The left-hand operand of a comma expression is like an expression
2889 statement: with -Wextra or -Wunused, we should warn if it doesn't have
2890 any side-effects, unless it was explicitly cast to (void). */
2891 if (warn_unused_value
2892 && ! (TREE_CODE (expr1
) == CONVERT_EXPR
2893 && VOID_TYPE_P (TREE_TYPE (expr1
))))
2894 warning ("left-hand operand of comma expression has no effect");
2897 /* With -Wunused, we should also warn if the left-hand operand does have
2898 side-effects, but computes a value which is not used. For example, in
2899 `foo() + bar(), baz()' the result of the `+' operator is not used,
2900 so we should issue a warning. */
2901 else if (warn_unused_value
)
2902 warn_if_unused_value (expr1
, input_location
);
2904 return build (COMPOUND_EXPR
, TREE_TYPE (expr2
), expr1
, expr2
);
2907 /* Build an expression representing a cast to type TYPE of expression EXPR. */
2910 build_c_cast (tree type
, tree expr
)
2914 if (type
== error_mark_node
|| expr
== error_mark_node
)
2915 return error_mark_node
;
2917 /* The ObjC front-end uses TYPE_MAIN_VARIANT to tie together types differing
2918 only in <protocol> qualifications. But when constructing cast expressions,
2919 the protocols do matter and must be kept around. */
2920 if (!c_dialect_objc () || !objc_is_object_ptr (type
))
2921 type
= TYPE_MAIN_VARIANT (type
);
2923 if (TREE_CODE (type
) == ARRAY_TYPE
)
2925 error ("cast specifies array type");
2926 return error_mark_node
;
2929 if (TREE_CODE (type
) == FUNCTION_TYPE
)
2931 error ("cast specifies function type");
2932 return error_mark_node
;
2935 if (type
== TYPE_MAIN_VARIANT (TREE_TYPE (value
)))
2939 if (TREE_CODE (type
) == RECORD_TYPE
2940 || TREE_CODE (type
) == UNION_TYPE
)
2941 pedwarn ("ISO C forbids casting nonscalar to the same type");
2944 else if (TREE_CODE (type
) == UNION_TYPE
)
2947 value
= default_function_array_conversion (value
);
2949 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
2950 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (field
)),
2951 TYPE_MAIN_VARIANT (TREE_TYPE (value
))))
2959 pedwarn ("ISO C forbids casts to union type");
2960 t
= digest_init (type
,
2961 build_constructor (type
,
2962 build_tree_list (field
, value
)),
2964 TREE_CONSTANT (t
) = TREE_CONSTANT (value
);
2965 TREE_INVARIANT (t
) = TREE_INVARIANT (value
);
2968 error ("cast to union type from type not present in union");
2969 return error_mark_node
;
2975 /* If casting to void, avoid the error that would come
2976 from default_conversion in the case of a non-lvalue array. */
2977 if (type
== void_type_node
)
2978 return build1 (CONVERT_EXPR
, type
, value
);
2980 /* Convert functions and arrays to pointers,
2981 but don't convert any other types. */
2982 value
= default_function_array_conversion (value
);
2983 otype
= TREE_TYPE (value
);
2985 /* Optionally warn about potentially worrisome casts. */
2988 && TREE_CODE (type
) == POINTER_TYPE
2989 && TREE_CODE (otype
) == POINTER_TYPE
)
2991 tree in_type
= type
;
2992 tree in_otype
= otype
;
2996 /* Check that the qualifiers on IN_TYPE are a superset of
2997 the qualifiers of IN_OTYPE. The outermost level of
2998 POINTER_TYPE nodes is uninteresting and we stop as soon
2999 as we hit a non-POINTER_TYPE node on either type. */
3002 in_otype
= TREE_TYPE (in_otype
);
3003 in_type
= TREE_TYPE (in_type
);
3005 /* GNU C allows cv-qualified function types. 'const'
3006 means the function is very pure, 'volatile' means it
3007 can't return. We need to warn when such qualifiers
3008 are added, not when they're taken away. */
3009 if (TREE_CODE (in_otype
) == FUNCTION_TYPE
3010 && TREE_CODE (in_type
) == FUNCTION_TYPE
)
3011 added
|= (TYPE_QUALS (in_type
) & ~TYPE_QUALS (in_otype
));
3013 discarded
|= (TYPE_QUALS (in_otype
) & ~TYPE_QUALS (in_type
));
3015 while (TREE_CODE (in_type
) == POINTER_TYPE
3016 && TREE_CODE (in_otype
) == POINTER_TYPE
);
3019 warning ("cast adds new qualifiers to function type");
3022 /* There are qualifiers present in IN_OTYPE that are not
3023 present in IN_TYPE. */
3024 warning ("cast discards qualifiers from pointer target type");
3027 /* Warn about possible alignment problems. */
3028 if (STRICT_ALIGNMENT
&& warn_cast_align
3029 && TREE_CODE (type
) == POINTER_TYPE
3030 && TREE_CODE (otype
) == POINTER_TYPE
3031 && TREE_CODE (TREE_TYPE (otype
)) != VOID_TYPE
3032 && TREE_CODE (TREE_TYPE (otype
)) != FUNCTION_TYPE
3033 /* Don't warn about opaque types, where the actual alignment
3034 restriction is unknown. */
3035 && !((TREE_CODE (TREE_TYPE (otype
)) == UNION_TYPE
3036 || TREE_CODE (TREE_TYPE (otype
)) == RECORD_TYPE
)
3037 && TYPE_MODE (TREE_TYPE (otype
)) == VOIDmode
)
3038 && TYPE_ALIGN (TREE_TYPE (type
)) > TYPE_ALIGN (TREE_TYPE (otype
)))
3039 warning ("cast increases required alignment of target type");
3041 if (TREE_CODE (type
) == INTEGER_TYPE
3042 && TREE_CODE (otype
) == POINTER_TYPE
3043 && TYPE_PRECISION (type
) != TYPE_PRECISION (otype
)
3044 && !TREE_CONSTANT (value
))
3045 warning ("cast from pointer to integer of different size");
3047 if (warn_bad_function_cast
3048 && TREE_CODE (value
) == CALL_EXPR
3049 && TREE_CODE (type
) != TREE_CODE (otype
))
3050 warning ("cast does not match function type");
3052 if (TREE_CODE (type
) == POINTER_TYPE
3053 && TREE_CODE (otype
) == INTEGER_TYPE
3054 && TYPE_PRECISION (type
) != TYPE_PRECISION (otype
)
3055 /* Don't warn about converting any constant. */
3056 && !TREE_CONSTANT (value
))
3057 warning ("cast to pointer from integer of different size");
3059 if (TREE_CODE (type
) == POINTER_TYPE
3060 && TREE_CODE (otype
) == POINTER_TYPE
3061 && TREE_CODE (expr
) == ADDR_EXPR
3062 && DECL_P (TREE_OPERAND (expr
, 0))
3063 && flag_strict_aliasing
&& warn_strict_aliasing
3064 && !VOID_TYPE_P (TREE_TYPE (type
)))
3066 /* Casting the address of a decl to non void pointer. Warn
3067 if the cast breaks type based aliasing. */
3068 if (!COMPLETE_TYPE_P (TREE_TYPE (type
)))
3069 warning ("type-punning to incomplete type might break strict-aliasing rules");
3072 HOST_WIDE_INT set1
= get_alias_set (TREE_TYPE (TREE_OPERAND (expr
, 0)));
3073 HOST_WIDE_INT set2
= get_alias_set (TREE_TYPE (type
));
3075 if (!alias_sets_conflict_p (set1
, set2
))
3076 warning ("dereferencing type-punned pointer will break strict-aliasing rules");
3077 else if (warn_strict_aliasing
> 1
3078 && !alias_sets_might_conflict_p (set1
, set2
))
3079 warning ("dereferencing type-punned pointer might break strict-aliasing rules");
3083 /* If pedantic, warn for conversions between function and object
3084 pointer types, except for converting a null pointer constant
3085 to function pointer type. */
3087 && TREE_CODE (type
) == POINTER_TYPE
3088 && TREE_CODE (otype
) == POINTER_TYPE
3089 && TREE_CODE (TREE_TYPE (otype
)) == FUNCTION_TYPE
3090 && TREE_CODE (TREE_TYPE (type
)) != FUNCTION_TYPE
)
3091 pedwarn ("ISO C forbids conversion of function pointer to object pointer type");
3094 && TREE_CODE (type
) == POINTER_TYPE
3095 && TREE_CODE (otype
) == POINTER_TYPE
3096 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
3097 && TREE_CODE (TREE_TYPE (otype
)) != FUNCTION_TYPE
3098 && !(integer_zerop (value
) && TREE_TYPE (otype
) == void_type_node
3099 && TREE_CODE (expr
) != NOP_EXPR
))
3100 pedwarn ("ISO C forbids conversion of object pointer to function pointer type");
3103 /* Replace a nonvolatile const static variable with its value. */
3104 if (optimize
&& TREE_CODE (value
) == VAR_DECL
)
3105 value
= decl_constant_value (value
);
3106 value
= convert (type
, value
);
3108 /* Ignore any integer overflow caused by the cast. */
3109 if (TREE_CODE (value
) == INTEGER_CST
)
3111 TREE_OVERFLOW (value
) = TREE_OVERFLOW (ovalue
);
3113 if (TREE_CODE_CLASS (TREE_CODE (ovalue
)) == 'c')
3114 TREE_CONSTANT_OVERFLOW (value
) = TREE_CONSTANT_OVERFLOW (ovalue
);
3118 /* Don't let (void *) (FOO *) 0 be a null pointer constant. */
3119 if (TREE_CODE (value
) == INTEGER_CST
3120 && TREE_CODE (expr
) == INTEGER_CST
3121 && TREE_CODE (TREE_TYPE (expr
)) != INTEGER_TYPE
)
3122 value
= non_lvalue (value
);
3124 /* Don't let a cast be an lvalue. */
3126 value
= non_lvalue (value
);
3131 /* Interpret a cast of expression EXPR to type TYPE. */
3133 c_cast_expr (tree type
, tree expr
)
3135 int saved_wsp
= warn_strict_prototypes
;
3137 /* This avoids warnings about unprototyped casts on
3138 integers. E.g. "#define SIG_DFL (void(*)())0". */
3139 if (TREE_CODE (expr
) == INTEGER_CST
)
3140 warn_strict_prototypes
= 0;
3141 type
= groktypename (type
);
3142 warn_strict_prototypes
= saved_wsp
;
3144 return build_c_cast (type
, expr
);
3148 /* Build an assignment expression of lvalue LHS from value RHS.
3149 MODIFYCODE is the code for a binary operator that we use
3150 to combine the old value of LHS with RHS to get the new value.
3151 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment. */
3154 build_modify_expr (tree lhs
, enum tree_code modifycode
, tree rhs
)
3158 tree lhstype
= TREE_TYPE (lhs
);
3159 tree olhstype
= lhstype
;
3161 /* Types that aren't fully specified cannot be used in assignments. */
3162 lhs
= require_complete_type (lhs
);
3164 /* Avoid duplicate error messages from operands that had errors. */
3165 if (TREE_CODE (lhs
) == ERROR_MARK
|| TREE_CODE (rhs
) == ERROR_MARK
)
3166 return error_mark_node
;
3168 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3169 /* Do not use STRIP_NOPS here. We do not want an enumerator
3170 whose value is 0 to count as a null pointer constant. */
3171 if (TREE_CODE (rhs
) == NON_LVALUE_EXPR
)
3172 rhs
= TREE_OPERAND (rhs
, 0);
3176 /* If a binary op has been requested, combine the old LHS value with the RHS
3177 producing the value we should actually store into the LHS. */
3179 if (modifycode
!= NOP_EXPR
)
3181 lhs
= stabilize_reference (lhs
);
3182 newrhs
= build_binary_op (modifycode
, lhs
, rhs
, 1);
3185 if (!lvalue_or_else (lhs
, "invalid lvalue in assignment"))
3186 return error_mark_node
;
3188 /* Warn about storing in something that is `const'. */
3190 if (TREE_READONLY (lhs
) || TYPE_READONLY (lhstype
)
3191 || ((TREE_CODE (lhstype
) == RECORD_TYPE
3192 || TREE_CODE (lhstype
) == UNION_TYPE
)
3193 && C_TYPE_FIELDS_READONLY (lhstype
)))
3194 readonly_error (lhs
, "assignment");
3196 /* If storing into a structure or union member,
3197 it has probably been given type `int'.
3198 Compute the type that would go with
3199 the actual amount of storage the member occupies. */
3201 if (TREE_CODE (lhs
) == COMPONENT_REF
3202 && (TREE_CODE (lhstype
) == INTEGER_TYPE
3203 || TREE_CODE (lhstype
) == BOOLEAN_TYPE
3204 || TREE_CODE (lhstype
) == REAL_TYPE
3205 || TREE_CODE (lhstype
) == ENUMERAL_TYPE
))
3206 lhstype
= TREE_TYPE (get_unwidened (lhs
, 0));
3208 /* If storing in a field that is in actuality a short or narrower than one,
3209 we must store in the field in its actual type. */
3211 if (lhstype
!= TREE_TYPE (lhs
))
3213 lhs
= copy_node (lhs
);
3214 TREE_TYPE (lhs
) = lhstype
;
3217 /* Convert new value to destination type. */
3219 newrhs
= convert_for_assignment (lhstype
, newrhs
, _("assignment"),
3220 NULL_TREE
, NULL_TREE
, 0);
3221 if (TREE_CODE (newrhs
) == ERROR_MARK
)
3222 return error_mark_node
;
3226 result
= build (MODIFY_EXPR
, lhstype
, lhs
, newrhs
);
3227 TREE_SIDE_EFFECTS (result
) = 1;
3229 /* If we got the LHS in a different type for storing in,
3230 convert the result back to the nominal type of LHS
3231 so that the value we return always has the same type
3232 as the LHS argument. */
3234 if (olhstype
== TREE_TYPE (result
))
3236 return convert_for_assignment (olhstype
, result
, _("assignment"),
3237 NULL_TREE
, NULL_TREE
, 0);
3240 /* Convert value RHS to type TYPE as preparation for an assignment
3241 to an lvalue of type TYPE.
3242 The real work of conversion is done by `convert'.
3243 The purpose of this function is to generate error messages
3244 for assignments that are not allowed in C.
3245 ERRTYPE is a string to use in error messages:
3246 "assignment", "return", etc. If it is null, this is parameter passing
3247 for a function call (and different error messages are output).
3249 FUNNAME is the name of the function being called,
3250 as an IDENTIFIER_NODE, or null.
3251 PARMNUM is the number of the argument, for printing in error messages. */
3254 convert_for_assignment (tree type
, tree rhs
, const char *errtype
,
3255 tree fundecl
, tree funname
, int parmnum
)
3257 enum tree_code codel
= TREE_CODE (type
);
3259 enum tree_code coder
;
3261 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3262 /* Do not use STRIP_NOPS here. We do not want an enumerator
3263 whose value is 0 to count as a null pointer constant. */
3264 if (TREE_CODE (rhs
) == NON_LVALUE_EXPR
)
3265 rhs
= TREE_OPERAND (rhs
, 0);
3267 if (TREE_CODE (TREE_TYPE (rhs
)) == ARRAY_TYPE
3268 || TREE_CODE (TREE_TYPE (rhs
)) == FUNCTION_TYPE
)
3269 rhs
= default_conversion (rhs
);
3270 else if (optimize
&& TREE_CODE (rhs
) == VAR_DECL
)
3271 rhs
= decl_constant_value_for_broken_optimization (rhs
);
3273 rhstype
= TREE_TYPE (rhs
);
3274 coder
= TREE_CODE (rhstype
);
3276 if (coder
== ERROR_MARK
)
3277 return error_mark_node
;
3279 if (TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (rhstype
))
3281 overflow_warning (rhs
);
3282 /* Check for Objective-C protocols. This will automatically
3283 issue a warning if there are protocol violations. No need to
3284 use the return value. */
3285 if (c_dialect_objc ())
3286 objc_comptypes (type
, rhstype
, 0);
3290 if (coder
== VOID_TYPE
)
3292 error ("void value not ignored as it ought to be");
3293 return error_mark_node
;
3295 /* A type converts to a reference to it.
3296 This code doesn't fully support references, it's just for the
3297 special case of va_start and va_copy. */
3298 if (codel
== REFERENCE_TYPE
3299 && comptypes (TREE_TYPE (type
), TREE_TYPE (rhs
)) == 1)
3301 if (!lvalue_p (rhs
))
3303 error ("cannot pass rvalue to reference parameter");
3304 return error_mark_node
;
3306 if (!c_mark_addressable (rhs
))
3307 return error_mark_node
;
3308 rhs
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (rhs
)), rhs
);
3310 /* We already know that these two types are compatible, but they
3311 may not be exactly identical. In fact, `TREE_TYPE (type)' is
3312 likely to be __builtin_va_list and `TREE_TYPE (rhs)' is
3313 likely to be va_list, a typedef to __builtin_va_list, which
3314 is different enough that it will cause problems later. */
3315 if (TREE_TYPE (TREE_TYPE (rhs
)) != TREE_TYPE (type
))
3316 rhs
= build1 (NOP_EXPR
, build_pointer_type (TREE_TYPE (type
)), rhs
);
3318 rhs
= build1 (NOP_EXPR
, type
, rhs
);
3321 /* Some types can interconvert without explicit casts. */
3322 else if (codel
== VECTOR_TYPE
3323 && vector_types_convertible_p (type
, TREE_TYPE (rhs
)))
3324 return convert (type
, rhs
);
3325 /* Arithmetic types all interconvert, and enum is treated like int. */
3326 else if ((codel
== INTEGER_TYPE
|| codel
== REAL_TYPE
3327 || codel
== ENUMERAL_TYPE
|| codel
== COMPLEX_TYPE
3328 || codel
== BOOLEAN_TYPE
)
3329 && (coder
== INTEGER_TYPE
|| coder
== REAL_TYPE
3330 || coder
== ENUMERAL_TYPE
|| coder
== COMPLEX_TYPE
3331 || coder
== BOOLEAN_TYPE
))
3332 return convert_and_check (type
, rhs
);
3334 /* Conversion to a transparent union from its member types.
3335 This applies only to function arguments. */
3336 else if (codel
== UNION_TYPE
&& TYPE_TRANSPARENT_UNION (type
) && ! errtype
)
3339 tree marginal_memb_type
= 0;
3341 for (memb_types
= TYPE_FIELDS (type
); memb_types
;
3342 memb_types
= TREE_CHAIN (memb_types
))
3344 tree memb_type
= TREE_TYPE (memb_types
);
3346 if (comptypes (TYPE_MAIN_VARIANT (memb_type
),
3347 TYPE_MAIN_VARIANT (rhstype
)))
3350 if (TREE_CODE (memb_type
) != POINTER_TYPE
)
3353 if (coder
== POINTER_TYPE
)
3355 tree ttl
= TREE_TYPE (memb_type
);
3356 tree ttr
= TREE_TYPE (rhstype
);
3358 /* Any non-function converts to a [const][volatile] void *
3359 and vice versa; otherwise, targets must be the same.
3360 Meanwhile, the lhs target must have all the qualifiers of
3362 if (VOID_TYPE_P (ttl
) || VOID_TYPE_P (ttr
)
3363 || comp_target_types (memb_type
, rhstype
, 0))
3365 /* If this type won't generate any warnings, use it. */
3366 if (TYPE_QUALS (ttl
) == TYPE_QUALS (ttr
)
3367 || ((TREE_CODE (ttr
) == FUNCTION_TYPE
3368 && TREE_CODE (ttl
) == FUNCTION_TYPE
)
3369 ? ((TYPE_QUALS (ttl
) | TYPE_QUALS (ttr
))
3370 == TYPE_QUALS (ttr
))
3371 : ((TYPE_QUALS (ttl
) | TYPE_QUALS (ttr
))
3372 == TYPE_QUALS (ttl
))))
3375 /* Keep looking for a better type, but remember this one. */
3376 if (! marginal_memb_type
)
3377 marginal_memb_type
= memb_type
;
3381 /* Can convert integer zero to any pointer type. */
3382 if (integer_zerop (rhs
)
3383 || (TREE_CODE (rhs
) == NOP_EXPR
3384 && integer_zerop (TREE_OPERAND (rhs
, 0))))
3386 rhs
= null_pointer_node
;
3391 if (memb_types
|| marginal_memb_type
)
3395 /* We have only a marginally acceptable member type;
3396 it needs a warning. */
3397 tree ttl
= TREE_TYPE (marginal_memb_type
);
3398 tree ttr
= TREE_TYPE (rhstype
);
3400 /* Const and volatile mean something different for function
3401 types, so the usual warnings are not appropriate. */
3402 if (TREE_CODE (ttr
) == FUNCTION_TYPE
3403 && TREE_CODE (ttl
) == FUNCTION_TYPE
)
3405 /* Because const and volatile on functions are
3406 restrictions that say the function will not do
3407 certain things, it is okay to use a const or volatile
3408 function where an ordinary one is wanted, but not
3410 if (TYPE_QUALS (ttl
) & ~TYPE_QUALS (ttr
))
3411 warn_for_assignment ("%s makes qualified function pointer from unqualified",
3412 errtype
, funname
, parmnum
);
3414 else if (TYPE_QUALS (ttr
) & ~TYPE_QUALS (ttl
))
3415 warn_for_assignment ("%s discards qualifiers from pointer target type",
3420 if (pedantic
&& ! DECL_IN_SYSTEM_HEADER (fundecl
))
3421 pedwarn ("ISO C prohibits argument conversion to union type");
3423 return build1 (NOP_EXPR
, type
, rhs
);
3427 /* Conversions among pointers */
3428 else if ((codel
== POINTER_TYPE
|| codel
== REFERENCE_TYPE
)
3429 && (coder
== codel
))
3431 tree ttl
= TREE_TYPE (type
);
3432 tree ttr
= TREE_TYPE (rhstype
);
3433 bool is_opaque_pointer
;
3434 int target_cmp
= 0; /* Cache comp_target_types () result. */
3436 /* Opaque pointers are treated like void pointers. */
3437 is_opaque_pointer
= (targetm
.vector_opaque_p (type
)
3438 || targetm
.vector_opaque_p (rhstype
))
3439 && TREE_CODE (ttl
) == VECTOR_TYPE
3440 && TREE_CODE (ttr
) == VECTOR_TYPE
;
3442 /* Any non-function converts to a [const][volatile] void *
3443 and vice versa; otherwise, targets must be the same.
3444 Meanwhile, the lhs target must have all the qualifiers of the rhs. */
3445 if (VOID_TYPE_P (ttl
) || VOID_TYPE_P (ttr
)
3446 || (target_cmp
= comp_target_types (type
, rhstype
, 0))
3447 || is_opaque_pointer
3448 || (c_common_unsigned_type (TYPE_MAIN_VARIANT (ttl
))
3449 == c_common_unsigned_type (TYPE_MAIN_VARIANT (ttr
))))
3452 && ((VOID_TYPE_P (ttl
) && TREE_CODE (ttr
) == FUNCTION_TYPE
)
3455 /* Check TREE_CODE to catch cases like (void *) (char *) 0
3456 which are not ANSI null ptr constants. */
3457 && (!integer_zerop (rhs
) || TREE_CODE (rhs
) == NOP_EXPR
)
3458 && TREE_CODE (ttl
) == FUNCTION_TYPE
)))
3459 warn_for_assignment ("ISO C forbids %s between function pointer and `void *'",
3460 errtype
, funname
, parmnum
);
3461 /* Const and volatile mean something different for function types,
3462 so the usual warnings are not appropriate. */
3463 else if (TREE_CODE (ttr
) != FUNCTION_TYPE
3464 && TREE_CODE (ttl
) != FUNCTION_TYPE
)
3466 if (TYPE_QUALS (ttr
) & ~TYPE_QUALS (ttl
))
3467 warn_for_assignment ("%s discards qualifiers from pointer target type",
3468 errtype
, funname
, parmnum
);
3469 /* If this is not a case of ignoring a mismatch in signedness,
3471 else if (VOID_TYPE_P (ttl
) || VOID_TYPE_P (ttr
)
3474 /* If there is a mismatch, do warn. */
3476 warn_for_assignment ("pointer targets in %s differ in signedness",
3477 errtype
, funname
, parmnum
);
3479 else if (TREE_CODE (ttl
) == FUNCTION_TYPE
3480 && TREE_CODE (ttr
) == FUNCTION_TYPE
)
3482 /* Because const and volatile on functions are restrictions
3483 that say the function will not do certain things,
3484 it is okay to use a const or volatile function
3485 where an ordinary one is wanted, but not vice-versa. */
3486 if (TYPE_QUALS (ttl
) & ~TYPE_QUALS (ttr
))
3487 warn_for_assignment ("%s makes qualified function pointer from unqualified",
3488 errtype
, funname
, parmnum
);
3492 warn_for_assignment ("%s from incompatible pointer type",
3493 errtype
, funname
, parmnum
);
3494 return convert (type
, rhs
);
3496 else if (codel
== POINTER_TYPE
&& coder
== ARRAY_TYPE
)
3498 error ("invalid use of non-lvalue array");
3499 return error_mark_node
;
3501 else if (codel
== POINTER_TYPE
&& coder
== INTEGER_TYPE
)
3503 /* An explicit constant 0 can convert to a pointer,
3504 or one that results from arithmetic, even including
3505 a cast to integer type. */
3506 if (! (TREE_CODE (rhs
) == INTEGER_CST
&& integer_zerop (rhs
))
3508 ! (TREE_CODE (rhs
) == NOP_EXPR
3509 && TREE_CODE (TREE_TYPE (rhs
)) == INTEGER_TYPE
3510 && TREE_CODE (TREE_OPERAND (rhs
, 0)) == INTEGER_CST
3511 && integer_zerop (TREE_OPERAND (rhs
, 0))))
3512 warn_for_assignment ("%s makes pointer from integer without a cast",
3513 errtype
, funname
, parmnum
);
3515 return convert (type
, rhs
);
3517 else if (codel
== INTEGER_TYPE
&& coder
== POINTER_TYPE
)
3519 warn_for_assignment ("%s makes integer from pointer without a cast",
3520 errtype
, funname
, parmnum
);
3521 return convert (type
, rhs
);
3523 else if (codel
== BOOLEAN_TYPE
&& coder
== POINTER_TYPE
)
3524 return convert (type
, rhs
);
3530 tree selector
= objc_message_selector ();
3532 if (selector
&& parmnum
> 2)
3533 error ("incompatible type for argument %d of `%s'",
3534 parmnum
- 2, IDENTIFIER_POINTER (selector
));
3536 error ("incompatible type for argument %d of `%s'",
3537 parmnum
, IDENTIFIER_POINTER (funname
));
3540 error ("incompatible type for argument %d of indirect function call",
3544 error ("incompatible types in %s", errtype
);
3546 return error_mark_node
;
3549 /* Convert VALUE for assignment into inlined parameter PARM. ARGNUM
3550 is used for error and waring reporting and indicates which argument
3551 is being processed. */
3554 c_convert_parm_for_inlining (tree parm
, tree value
, tree fn
, int argnum
)
3558 /* If FN was prototyped, the value has been converted already
3559 in convert_arguments. */
3560 if (! value
|| TYPE_ARG_TYPES (TREE_TYPE (fn
)))
3563 type
= TREE_TYPE (parm
);
3564 ret
= convert_for_assignment (type
, value
,
3565 (char *) 0 /* arg passing */, fn
,
3566 DECL_NAME (fn
), argnum
);
3567 if (targetm
.calls
.promote_prototypes (TREE_TYPE (fn
))
3568 && INTEGRAL_TYPE_P (type
)
3569 && (TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
)))
3570 ret
= default_conversion (ret
);
3574 /* Print a warning using MSGID.
3575 It gets OPNAME as its one parameter.
3576 if OPNAME is null and ARGNUM is 0, it is replaced by "passing arg of `FUNCTION'".
3577 Otherwise if OPNAME is null, it is replaced by "passing arg ARGNUM of `FUNCTION'".
3578 FUNCTION and ARGNUM are handled specially if we are building an
3579 Objective-C selector. */
3582 warn_for_assignment (const char *msgid
, const char *opname
, tree function
,
3587 tree selector
= objc_message_selector ();
3590 if (selector
&& argnum
> 2)
3592 function
= selector
;
3599 /* Function name is known; supply it. */
3600 const char *const argstring
= _("passing arg of `%s'");
3601 new_opname
= (char *) alloca (IDENTIFIER_LENGTH (function
)
3602 + strlen (argstring
) + 1 + 1);
3603 sprintf (new_opname
, argstring
,
3604 IDENTIFIER_POINTER (function
));
3608 /* Function name unknown (call through ptr). */
3609 const char *const argnofun
= _("passing arg of pointer to function");
3610 new_opname
= (char *) alloca (strlen (argnofun
) + 1 + 1);
3611 sprintf (new_opname
, argnofun
);
3616 /* Function name is known; supply it. */
3617 const char *const argstring
= _("passing arg %d of `%s'");
3618 new_opname
= (char *) alloca (IDENTIFIER_LENGTH (function
)
3619 + strlen (argstring
) + 1 + 25 /*%d*/ + 1);
3620 sprintf (new_opname
, argstring
, argnum
,
3621 IDENTIFIER_POINTER (function
));
3625 /* Function name unknown (call through ptr); just give arg number. */
3626 const char *const argnofun
= _("passing arg %d of pointer to function");
3627 new_opname
= (char *) alloca (strlen (argnofun
) + 1 + 25 /*%d*/ + 1);
3628 sprintf (new_opname
, argnofun
, argnum
);
3630 opname
= new_opname
;
3632 pedwarn (msgid
, opname
);
3635 /* If VALUE is a compound expr all of whose expressions are constant, then
3636 return its value. Otherwise, return error_mark_node.
3638 This is for handling COMPOUND_EXPRs as initializer elements
3639 which is allowed with a warning when -pedantic is specified. */
3642 valid_compound_expr_initializer (tree value
, tree endtype
)
3644 if (TREE_CODE (value
) == COMPOUND_EXPR
)
3646 if (valid_compound_expr_initializer (TREE_OPERAND (value
, 0), endtype
)
3648 return error_mark_node
;
3649 return valid_compound_expr_initializer (TREE_OPERAND (value
, 1),
3652 else if (! TREE_CONSTANT (value
)
3653 && ! initializer_constant_valid_p (value
, endtype
))
3654 return error_mark_node
;
3659 /* Perform appropriate conversions on the initial value of a variable,
3660 store it in the declaration DECL,
3661 and print any error messages that are appropriate.
3662 If the init is invalid, store an ERROR_MARK. */
3665 store_init_value (tree decl
, tree init
)
3669 /* If variable's type was invalidly declared, just ignore it. */
3671 type
= TREE_TYPE (decl
);
3672 if (TREE_CODE (type
) == ERROR_MARK
)
3675 /* Digest the specified initializer into an expression. */
3677 value
= digest_init (type
, init
, true, TREE_STATIC (decl
));
3679 /* Store the expression if valid; else report error. */
3681 if (warn_traditional
&& !in_system_header
3682 && AGGREGATE_TYPE_P (TREE_TYPE (decl
)) && ! TREE_STATIC (decl
))
3683 warning ("traditional C rejects automatic aggregate initialization");
3685 DECL_INITIAL (decl
) = value
;
3687 /* ANSI wants warnings about out-of-range constant initializers. */
3688 STRIP_TYPE_NOPS (value
);
3689 constant_expression_warning (value
);
3691 /* Check if we need to set array size from compound literal size. */
3692 if (TREE_CODE (type
) == ARRAY_TYPE
3693 && TYPE_DOMAIN (type
) == 0
3694 && value
!= error_mark_node
)
3696 tree inside_init
= init
;
3698 if (TREE_CODE (init
) == NON_LVALUE_EXPR
)
3699 inside_init
= TREE_OPERAND (init
, 0);
3700 inside_init
= fold (inside_init
);
3702 if (TREE_CODE (inside_init
) == COMPOUND_LITERAL_EXPR
)
3704 tree decl
= COMPOUND_LITERAL_EXPR_DECL (inside_init
);
3706 if (TYPE_DOMAIN (TREE_TYPE (decl
)))
3708 /* For int foo[] = (int [3]){1}; we need to set array size
3709 now since later on array initializer will be just the
3710 brace enclosed list of the compound literal. */
3711 TYPE_DOMAIN (type
) = TYPE_DOMAIN (TREE_TYPE (decl
));
3713 layout_decl (decl
, 0);
3719 /* Methods for storing and printing names for error messages. */
3721 /* Implement a spelling stack that allows components of a name to be pushed
3722 and popped. Each element on the stack is this structure. */
3734 #define SPELLING_STRING 1
3735 #define SPELLING_MEMBER 2
3736 #define SPELLING_BOUNDS 3
3738 static struct spelling
*spelling
; /* Next stack element (unused). */
3739 static struct spelling
*spelling_base
; /* Spelling stack base. */
3740 static int spelling_size
; /* Size of the spelling stack. */
3742 /* Macros to save and restore the spelling stack around push_... functions.
3743 Alternative to SAVE_SPELLING_STACK. */
3745 #define SPELLING_DEPTH() (spelling - spelling_base)
3746 #define RESTORE_SPELLING_DEPTH(DEPTH) (spelling = spelling_base + (DEPTH))
3748 /* Push an element on the spelling stack with type KIND and assign VALUE
3751 #define PUSH_SPELLING(KIND, VALUE, MEMBER) \
3753 int depth = SPELLING_DEPTH (); \
3755 if (depth >= spelling_size) \
3757 spelling_size += 10; \
3758 spelling_base = XRESIZEVEC (struct spelling, spelling_base, \
3760 RESTORE_SPELLING_DEPTH (depth); \
3763 spelling->kind = (KIND); \
3764 spelling->MEMBER = (VALUE); \
3768 /* Push STRING on the stack. Printed literally. */
3771 push_string (const char *string
)
3773 PUSH_SPELLING (SPELLING_STRING
, string
, u
.s
);
3776 /* Push a member name on the stack. Printed as '.' STRING. */
3779 push_member_name (tree decl
)
3781 const char *const string
3782 = DECL_NAME (decl
) ? IDENTIFIER_POINTER (DECL_NAME (decl
)) : "<anonymous>";
3783 PUSH_SPELLING (SPELLING_MEMBER
, string
, u
.s
);
3786 /* Push an array bounds on the stack. Printed as [BOUNDS]. */
3789 push_array_bounds (int bounds
)
3791 PUSH_SPELLING (SPELLING_BOUNDS
, bounds
, u
.i
);
3794 /* Compute the maximum size in bytes of the printed spelling. */
3797 spelling_length (void)
3802 for (p
= spelling_base
; p
< spelling
; p
++)
3804 if (p
->kind
== SPELLING_BOUNDS
)
3807 size
+= strlen (p
->u
.s
) + 1;
3813 /* Print the spelling to BUFFER and return it. */
3816 print_spelling (char *buffer
)
3821 for (p
= spelling_base
; p
< spelling
; p
++)
3822 if (p
->kind
== SPELLING_BOUNDS
)
3824 sprintf (d
, "[%d]", p
->u
.i
);
3830 if (p
->kind
== SPELLING_MEMBER
)
3832 for (s
= p
->u
.s
; (*d
= *s
++); d
++)
3839 /* Issue an error message for a bad initializer component.
3840 MSGID identifies the message.
3841 The component name is taken from the spelling stack. */
3844 error_init (const char *msgid
)
3848 error ("%s", _(msgid
));
3849 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
3851 error ("(near initialization for `%s')", ofwhat
);
3854 /* Issue a pedantic warning for a bad initializer component.
3855 MSGID identifies the message.
3856 The component name is taken from the spelling stack. */
3859 pedwarn_init (const char *msgid
)
3863 pedwarn ("%s", _(msgid
));
3864 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
3866 pedwarn ("(near initialization for `%s')", ofwhat
);
3869 /* Issue a warning for a bad initializer component.
3870 MSGID identifies the message.
3871 The component name is taken from the spelling stack. */
3874 warning_init (const char *msgid
)
3878 warning ("%s", _(msgid
));
3879 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
3881 warning ("(near initialization for `%s')", ofwhat
);
3884 /* If TYPE is an array type and EXPR is a parenthesized string
3885 constant, warn if pedantic that EXPR is being used to initialize an
3886 object of type TYPE. */
3889 maybe_warn_string_init (tree type
, struct c_expr expr
)
3892 && TREE_CODE (type
) == ARRAY_TYPE
3893 && TREE_CODE (expr
.value
) == STRING_CST
3894 && expr
.original_code
!= STRING_CST
)
3895 pedwarn_init ("array initialized from parenthesized string constant");
3898 /* Digest the parser output INIT as an initializer for type TYPE.
3899 Return a C expression of type TYPE to represent the initial value.
3901 If INIT is a string constant, STRICT_STRING is true if it is
3902 unparenthesized or we should not warn here for it being parenthesized.
3903 For other types of INIT, STRICT_STRING is not used.
3905 REQUIRE_CONSTANT requests an error if non-constant initializers or
3906 elements are seen. */
3909 digest_init (tree type
, tree init
, bool strict_string
, int require_constant
)
3911 enum tree_code code
= TREE_CODE (type
);
3912 tree inside_init
= init
;
3914 if (type
== error_mark_node
3915 || init
== error_mark_node
3916 || TREE_TYPE (init
) == error_mark_node
)
3917 return error_mark_node
;
3919 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3920 /* Do not use STRIP_NOPS here. We do not want an enumerator
3921 whose value is 0 to count as a null pointer constant. */
3922 if (TREE_CODE (init
) == NON_LVALUE_EXPR
)
3923 inside_init
= TREE_OPERAND (init
, 0);
3925 inside_init
= fold (inside_init
);
3927 /* Initialization of an array of chars from a string constant
3928 optionally enclosed in braces. */
3930 if (code
== ARRAY_TYPE
&& inside_init
3931 && TREE_CODE (inside_init
) == STRING_CST
)
3933 tree typ1
= TYPE_MAIN_VARIANT (TREE_TYPE (type
));
3934 /* Note that an array could be both an array of character type
3935 and an array of wchar_t if wchar_t is signed char or unsigned
3937 bool char_array
= (typ1
== char_type_node
3938 || typ1
== signed_char_type_node
3939 || typ1
== unsigned_char_type_node
);
3940 bool wchar_array
= !!comptypes (typ1
, wchar_type_node
);
3941 if (char_array
|| wchar_array
)
3945 expr
.value
= inside_init
;
3946 expr
.original_code
= (strict_string
? STRING_CST
: ERROR_MARK
);
3947 maybe_warn_string_init (type
, expr
);
3950 = (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init
)))
3953 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
3954 TYPE_MAIN_VARIANT (type
)))
3957 if (!wchar_array
&& !char_string
)
3959 error_init ("char-array initialized from wide string");
3960 return error_mark_node
;
3962 if (char_string
&& !char_array
)
3964 error_init ("wchar_t-array initialized from non-wide string");
3965 return error_mark_node
;
3968 TREE_TYPE (inside_init
) = type
;
3969 if (TYPE_DOMAIN (type
) != 0
3970 && TYPE_SIZE (type
) != 0
3971 && TREE_CODE (TYPE_SIZE (type
)) == INTEGER_CST
3972 /* Subtract 1 (or sizeof (wchar_t))
3973 because it's ok to ignore the terminating null char
3974 that is counted in the length of the constant. */
3975 && 0 > compare_tree_int (TYPE_SIZE_UNIT (type
),
3976 TREE_STRING_LENGTH (inside_init
)
3977 - ((TYPE_PRECISION (typ1
)
3978 != TYPE_PRECISION (char_type_node
))
3979 ? (TYPE_PRECISION (wchar_type_node
)
3982 pedwarn_init ("initializer-string for array of chars is too long");
3986 else if (INTEGRAL_TYPE_P (typ1
))
3988 error_init ("array of inappropriate type initialized "
3989 "from string constant");
3990 return error_mark_node
;
3994 /* Build a VECTOR_CST from a *constant* vector constructor. If the
3995 vector constructor is not constant (e.g. {1,2,3,foo()}) then punt
3996 below and handle as a constructor. */
3997 if (code
== VECTOR_TYPE
3998 && vector_types_convertible_p (TREE_TYPE (inside_init
), type
)
3999 && TREE_CONSTANT (inside_init
))
4001 if (TREE_CODE (inside_init
) == VECTOR_CST
4002 && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
4003 TYPE_MAIN_VARIANT (type
)))
4006 return build_vector (type
, CONSTRUCTOR_ELTS (inside_init
));
4009 /* Any type can be initialized
4010 from an expression of the same type, optionally with braces. */
4012 if (inside_init
&& TREE_TYPE (inside_init
) != 0
4013 && (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
4014 TYPE_MAIN_VARIANT (type
))
4015 || (code
== ARRAY_TYPE
4016 && comptypes (TREE_TYPE (inside_init
), type
))
4017 || (code
== VECTOR_TYPE
4018 && comptypes (TREE_TYPE (inside_init
), type
))
4019 || (code
== POINTER_TYPE
4020 && TREE_CODE (TREE_TYPE (inside_init
)) == ARRAY_TYPE
4021 && comptypes (TREE_TYPE (TREE_TYPE (inside_init
)),
4023 || (code
== POINTER_TYPE
4024 && TREE_CODE (TREE_TYPE (inside_init
)) == FUNCTION_TYPE
4025 && comptypes (TREE_TYPE (inside_init
),
4026 TREE_TYPE (type
)))))
4028 if (code
== POINTER_TYPE
)
4030 inside_init
= default_function_array_conversion (inside_init
);
4032 if (TREE_CODE (TREE_TYPE (inside_init
)) == ARRAY_TYPE
)
4034 error_init ("invalid use of non-lvalue array");
4035 return error_mark_node
;
4039 if (code
== VECTOR_TYPE
)
4040 /* Although the types are compatible, we may require a
4042 inside_init
= convert (type
, inside_init
);
4044 if (require_constant
&& !flag_isoc99
4045 && TREE_CODE (inside_init
) == COMPOUND_LITERAL_EXPR
)
4047 /* As an extension, allow initializing objects with static storage
4048 duration with compound literals (which are then treated just as
4049 the brace enclosed list they contain). */
4050 tree decl
= COMPOUND_LITERAL_EXPR_DECL (inside_init
);
4051 inside_init
= DECL_INITIAL (decl
);
4054 if (code
== ARRAY_TYPE
&& TREE_CODE (inside_init
) != STRING_CST
4055 && TREE_CODE (inside_init
) != CONSTRUCTOR
)
4057 error_init ("array initialized from non-constant array expression");
4058 return error_mark_node
;
4061 if (optimize
&& TREE_CODE (inside_init
) == VAR_DECL
)
4062 inside_init
= decl_constant_value_for_broken_optimization (inside_init
);
4064 /* Compound expressions can only occur here if -pedantic or
4065 -pedantic-errors is specified. In the later case, we always want
4066 an error. In the former case, we simply want a warning. */
4067 if (require_constant
&& pedantic
4068 && TREE_CODE (inside_init
) == COMPOUND_EXPR
)
4071 = valid_compound_expr_initializer (inside_init
,
4072 TREE_TYPE (inside_init
));
4073 if (inside_init
== error_mark_node
)
4074 error_init ("initializer element is not constant");
4076 pedwarn_init ("initializer element is not constant");
4077 if (flag_pedantic_errors
)
4078 inside_init
= error_mark_node
;
4080 else if (require_constant
4081 && (!TREE_CONSTANT (inside_init
)
4082 /* This test catches things like `7 / 0' which
4083 result in an expression for which TREE_CONSTANT
4084 is true, but which is not actually something
4085 that is a legal constant. We really should not
4086 be using this function, because it is a part of
4087 the back-end. Instead, the expression should
4088 already have been turned into ERROR_MARK_NODE. */
4089 || !initializer_constant_valid_p (inside_init
,
4090 TREE_TYPE (inside_init
))))
4092 error_init ("initializer element is not constant");
4093 inside_init
= error_mark_node
;
4099 /* Handle scalar types, including conversions. */
4101 if (code
== INTEGER_TYPE
|| code
== REAL_TYPE
|| code
== POINTER_TYPE
4102 || code
== ENUMERAL_TYPE
|| code
== BOOLEAN_TYPE
|| code
== COMPLEX_TYPE
4103 || code
== VECTOR_TYPE
)
4105 /* Note that convert_for_assignment calls default_conversion
4106 for arrays and functions. We must not call it in the
4107 case where inside_init is a null pointer constant. */
4109 = convert_for_assignment (type
, init
, _("initialization"),
4110 NULL_TREE
, NULL_TREE
, 0);
4112 if (require_constant
&& ! TREE_CONSTANT (inside_init
))
4114 error_init ("initializer element is not constant");
4115 inside_init
= error_mark_node
;
4117 else if (require_constant
4118 && initializer_constant_valid_p (inside_init
, TREE_TYPE (inside_init
)) == 0)
4120 error_init ("initializer element is not computable at load time");
4121 inside_init
= error_mark_node
;
4127 /* Come here only for records and arrays. */
4129 if (COMPLETE_TYPE_P (type
) && TREE_CODE (TYPE_SIZE (type
)) != INTEGER_CST
)
4131 error_init ("variable-sized object may not be initialized");
4132 return error_mark_node
;
4135 error_init ("invalid initializer");
4136 return error_mark_node
;
4139 /* Handle initializers that use braces. */
4141 /* Type of object we are accumulating a constructor for.
4142 This type is always a RECORD_TYPE, UNION_TYPE or ARRAY_TYPE. */
4143 static tree constructor_type
;
4145 /* For a RECORD_TYPE or UNION_TYPE, this is the chain of fields
4147 static tree constructor_fields
;
4149 /* For an ARRAY_TYPE, this is the specified index
4150 at which to store the next element we get. */
4151 static tree constructor_index
;
4153 /* For an ARRAY_TYPE, this is the maximum index. */
4154 static tree constructor_max_index
;
4156 /* For a RECORD_TYPE, this is the first field not yet written out. */
4157 static tree constructor_unfilled_fields
;
4159 /* For an ARRAY_TYPE, this is the index of the first element
4160 not yet written out. */
4161 static tree constructor_unfilled_index
;
4163 /* In a RECORD_TYPE, the byte index of the next consecutive field.
4164 This is so we can generate gaps between fields, when appropriate. */
4165 static tree constructor_bit_index
;
4167 /* If we are saving up the elements rather than allocating them,
4168 this is the list of elements so far (in reverse order,
4169 most recent first). */
4170 static tree constructor_elements
;
4172 /* 1 if constructor should be incrementally stored into a constructor chain,
4173 0 if all the elements should be kept in AVL tree. */
4174 static int constructor_incremental
;
4176 /* 1 if so far this constructor's elements are all compile-time constants. */
4177 static int constructor_constant
;
4179 /* 1 if so far this constructor's elements are all valid address constants. */
4180 static int constructor_simple
;
4182 /* 1 if this constructor is erroneous so far. */
4183 static int constructor_erroneous
;
4185 /* Structure for managing pending initializer elements, organized as an
4190 struct init_node
*left
, *right
;
4191 struct init_node
*parent
;
4197 /* Tree of pending elements at this constructor level.
4198 These are elements encountered out of order
4199 which belong at places we haven't reached yet in actually
4201 Will never hold tree nodes across GC runs. */
4202 static struct init_node
*constructor_pending_elts
;
4204 /* The SPELLING_DEPTH of this constructor. */
4205 static int constructor_depth
;
4207 /* 0 if implicitly pushing constructor levels is allowed. */
4208 int constructor_no_implicit
= 0; /* 0 for C; 1 for some other languages. */
4210 /* DECL node for which an initializer is being read.
4211 0 means we are reading a constructor expression
4212 such as (struct foo) {...}. */
4213 static tree constructor_decl
;
4215 /* start_init saves the ASMSPEC arg here for really_start_incremental_init. */
4216 static const char *constructor_asmspec
;
4218 /* Nonzero if this is an initializer for a top-level decl. */
4219 static int constructor_top_level
;
4221 /* Nonzero if there were any member designators in this initializer. */
4222 static int constructor_designated
;
4224 /* Nesting depth of designator list. */
4225 static int designator_depth
;
4227 /* Nonzero if there were diagnosed errors in this designator list. */
4228 static int designator_errorneous
;
4231 /* This stack has a level for each implicit or explicit level of
4232 structuring in the initializer, including the outermost one. It
4233 saves the values of most of the variables above. */
4235 struct constructor_range_stack
;
4237 struct constructor_stack
4239 struct constructor_stack
*next
;
4244 tree unfilled_index
;
4245 tree unfilled_fields
;
4248 struct init_node
*pending_elts
;
4251 /* If value nonzero, this value should replace the entire
4252 constructor at this level. */
4253 struct c_expr replacement_value
;
4254 struct constructor_range_stack
*range_stack
;
4264 struct constructor_stack
*constructor_stack
;
4266 /* This stack represents designators from some range designator up to
4267 the last designator in the list. */
4269 struct constructor_range_stack
4271 struct constructor_range_stack
*next
, *prev
;
4272 struct constructor_stack
*stack
;
4279 struct constructor_range_stack
*constructor_range_stack
;
4281 /* This stack records separate initializers that are nested.
4282 Nested initializers can't happen in ANSI C, but GNU C allows them
4283 in cases like { ... (struct foo) { ... } ... }. */
4285 struct initializer_stack
4287 struct initializer_stack
*next
;
4289 const char *asmspec
;
4290 struct constructor_stack
*constructor_stack
;
4291 struct constructor_range_stack
*constructor_range_stack
;
4293 struct spelling
*spelling
;
4294 struct spelling
*spelling_base
;
4297 char require_constant_value
;
4298 char require_constant_elements
;
4301 struct initializer_stack
*initializer_stack
;
4303 /* Prepare to parse and output the initializer for variable DECL. */
4306 start_init (tree decl
, tree asmspec_tree
, int top_level
)
4309 struct initializer_stack
*p
= XNEW (struct initializer_stack
);
4310 const char *asmspec
= 0;
4313 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
4315 p
->decl
= constructor_decl
;
4316 p
->asmspec
= constructor_asmspec
;
4317 p
->require_constant_value
= require_constant_value
;
4318 p
->require_constant_elements
= require_constant_elements
;
4319 p
->constructor_stack
= constructor_stack
;
4320 p
->constructor_range_stack
= constructor_range_stack
;
4321 p
->elements
= constructor_elements
;
4322 p
->spelling
= spelling
;
4323 p
->spelling_base
= spelling_base
;
4324 p
->spelling_size
= spelling_size
;
4325 p
->top_level
= constructor_top_level
;
4326 p
->next
= initializer_stack
;
4327 initializer_stack
= p
;
4329 constructor_decl
= decl
;
4330 constructor_asmspec
= asmspec
;
4331 constructor_designated
= 0;
4332 constructor_top_level
= top_level
;
4336 require_constant_value
= TREE_STATIC (decl
);
4337 require_constant_elements
4338 = ((TREE_STATIC (decl
) || (pedantic
&& !flag_isoc99
))
4339 /* For a scalar, you can always use any value to initialize,
4340 even within braces. */
4341 && (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
4342 || TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
4343 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
4344 || TREE_CODE (TREE_TYPE (decl
)) == QUAL_UNION_TYPE
));
4345 locus
= IDENTIFIER_POINTER (DECL_NAME (decl
));
4349 require_constant_value
= 0;
4350 require_constant_elements
= 0;
4351 locus
= "(anonymous)";
4354 constructor_stack
= 0;
4355 constructor_range_stack
= 0;
4357 missing_braces_mentioned
= 0;
4361 RESTORE_SPELLING_DEPTH (0);
4364 push_string (locus
);
4370 struct initializer_stack
*p
= initializer_stack
;
4372 /* Free the whole constructor stack of this initializer. */
4373 while (constructor_stack
)
4375 struct constructor_stack
*q
= constructor_stack
;
4376 constructor_stack
= q
->next
;
4380 if (constructor_range_stack
)
4383 /* Pop back to the data of the outer initializer (if any). */
4384 free (spelling_base
);
4386 constructor_decl
= p
->decl
;
4387 constructor_asmspec
= p
->asmspec
;
4388 require_constant_value
= p
->require_constant_value
;
4389 require_constant_elements
= p
->require_constant_elements
;
4390 constructor_stack
= p
->constructor_stack
;
4391 constructor_range_stack
= p
->constructor_range_stack
;
4392 constructor_elements
= p
->elements
;
4393 spelling
= p
->spelling
;
4394 spelling_base
= p
->spelling_base
;
4395 spelling_size
= p
->spelling_size
;
4396 constructor_top_level
= p
->top_level
;
4397 initializer_stack
= p
->next
;
4401 /* Call here when we see the initializer is surrounded by braces.
4402 This is instead of a call to push_init_level;
4403 it is matched by a call to pop_init_level.
4405 TYPE is the type to initialize, for a constructor expression.
4406 For an initializer for a decl, TYPE is zero. */
4409 really_start_incremental_init (tree type
)
4411 struct constructor_stack
*p
= XNEW (struct constructor_stack
);
4414 type
= TREE_TYPE (constructor_decl
);
4416 if (targetm
.vector_opaque_p (type
))
4417 error ("opaque vector types cannot be initialized");
4419 p
->type
= constructor_type
;
4420 p
->fields
= constructor_fields
;
4421 p
->index
= constructor_index
;
4422 p
->max_index
= constructor_max_index
;
4423 p
->unfilled_index
= constructor_unfilled_index
;
4424 p
->unfilled_fields
= constructor_unfilled_fields
;
4425 p
->bit_index
= constructor_bit_index
;
4426 p
->elements
= constructor_elements
;
4427 p
->constant
= constructor_constant
;
4428 p
->simple
= constructor_simple
;
4429 p
->erroneous
= constructor_erroneous
;
4430 p
->pending_elts
= constructor_pending_elts
;
4431 p
->depth
= constructor_depth
;
4432 p
->replacement_value
.value
= 0;
4433 p
->replacement_value
.original_code
= ERROR_MARK
;
4437 p
->incremental
= constructor_incremental
;
4438 p
->designated
= constructor_designated
;
4440 constructor_stack
= p
;
4442 constructor_constant
= 1;
4443 constructor_simple
= 1;
4444 constructor_depth
= SPELLING_DEPTH ();
4445 constructor_elements
= 0;
4446 constructor_pending_elts
= 0;
4447 constructor_type
= type
;
4448 constructor_incremental
= 1;
4449 constructor_designated
= 0;
4450 designator_depth
= 0;
4451 designator_errorneous
= 0;
4453 if (TREE_CODE (constructor_type
) == RECORD_TYPE
4454 || TREE_CODE (constructor_type
) == UNION_TYPE
)
4456 constructor_fields
= TYPE_FIELDS (constructor_type
);
4457 /* Skip any nameless bit fields at the beginning. */
4458 while (constructor_fields
!= 0 && DECL_C_BIT_FIELD (constructor_fields
)
4459 && DECL_NAME (constructor_fields
) == 0)
4460 constructor_fields
= TREE_CHAIN (constructor_fields
);
4462 constructor_unfilled_fields
= constructor_fields
;
4463 constructor_bit_index
= bitsize_zero_node
;
4465 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
4467 if (TYPE_DOMAIN (constructor_type
))
4469 constructor_max_index
4470 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
));
4472 /* Detect non-empty initializations of zero-length arrays. */
4473 if (constructor_max_index
== NULL_TREE
4474 && TYPE_SIZE (constructor_type
))
4475 constructor_max_index
= build_int_2 (-1, -1);
4477 /* constructor_max_index needs to be an INTEGER_CST. Attempts
4478 to initialize VLAs will cause a proper error; avoid tree
4479 checking errors as well by setting a safe value. */
4480 if (constructor_max_index
4481 && TREE_CODE (constructor_max_index
) != INTEGER_CST
)
4482 constructor_max_index
= build_int_2 (-1, -1);
4485 = convert (bitsizetype
,
4486 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
4489 constructor_index
= bitsize_zero_node
;
4491 constructor_unfilled_index
= constructor_index
;
4493 else if (TREE_CODE (constructor_type
) == VECTOR_TYPE
)
4495 /* Vectors are like simple fixed-size arrays. */
4496 constructor_max_index
=
4497 build_int_2 (TYPE_VECTOR_SUBPARTS (constructor_type
) - 1, 0);
4498 constructor_index
= convert (bitsizetype
, bitsize_zero_node
);
4499 constructor_unfilled_index
= constructor_index
;
4503 /* Handle the case of int x = {5}; */
4504 constructor_fields
= constructor_type
;
4505 constructor_unfilled_fields
= constructor_type
;
4509 /* Push down into a subobject, for initialization.
4510 If this is for an explicit set of braces, IMPLICIT is 0.
4511 If it is because the next element belongs at a lower level,
4512 IMPLICIT is 1 (or 2 if the push is because of designator list). */
4515 push_init_level (int implicit
)
4517 struct constructor_stack
*p
;
4518 tree value
= NULL_TREE
;
4520 /* If we've exhausted any levels that didn't have braces,
4522 while (constructor_stack
->implicit
)
4524 if ((TREE_CODE (constructor_type
) == RECORD_TYPE
4525 || TREE_CODE (constructor_type
) == UNION_TYPE
)
4526 && constructor_fields
== 0)
4527 process_init_element (pop_init_level (1));
4528 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
4529 && constructor_max_index
4530 && tree_int_cst_lt (constructor_max_index
, constructor_index
))
4531 process_init_element (pop_init_level (1));
4536 /* Unless this is an explicit brace, we need to preserve previous
4540 if ((TREE_CODE (constructor_type
) == RECORD_TYPE
4541 || TREE_CODE (constructor_type
) == UNION_TYPE
)
4542 && constructor_fields
)
4543 value
= find_init_member (constructor_fields
);
4544 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
4545 value
= find_init_member (constructor_index
);
4548 p
= XNEW (struct constructor_stack
);
4549 p
->type
= constructor_type
;
4550 p
->fields
= constructor_fields
;
4551 p
->index
= constructor_index
;
4552 p
->max_index
= constructor_max_index
;
4553 p
->unfilled_index
= constructor_unfilled_index
;
4554 p
->unfilled_fields
= constructor_unfilled_fields
;
4555 p
->bit_index
= constructor_bit_index
;
4556 p
->elements
= constructor_elements
;
4557 p
->constant
= constructor_constant
;
4558 p
->simple
= constructor_simple
;
4559 p
->erroneous
= constructor_erroneous
;
4560 p
->pending_elts
= constructor_pending_elts
;
4561 p
->depth
= constructor_depth
;
4562 p
->replacement_value
.value
= 0;
4563 p
->replacement_value
.original_code
= ERROR_MARK
;
4564 p
->implicit
= implicit
;
4566 p
->incremental
= constructor_incremental
;
4567 p
->designated
= constructor_designated
;
4568 p
->next
= constructor_stack
;
4570 constructor_stack
= p
;
4572 constructor_constant
= 1;
4573 constructor_simple
= 1;
4574 constructor_depth
= SPELLING_DEPTH ();
4575 constructor_elements
= 0;
4576 constructor_incremental
= 1;
4577 constructor_designated
= 0;
4578 constructor_pending_elts
= 0;
4581 p
->range_stack
= constructor_range_stack
;
4582 constructor_range_stack
= 0;
4583 designator_depth
= 0;
4584 designator_errorneous
= 0;
4587 /* Don't die if an entire brace-pair level is superfluous
4588 in the containing level. */
4589 if (constructor_type
== 0)
4591 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
4592 || TREE_CODE (constructor_type
) == UNION_TYPE
)
4594 /* Don't die if there are extra init elts at the end. */
4595 if (constructor_fields
== 0)
4596 constructor_type
= 0;
4599 constructor_type
= TREE_TYPE (constructor_fields
);
4600 push_member_name (constructor_fields
);
4601 constructor_depth
++;
4604 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
4606 constructor_type
= TREE_TYPE (constructor_type
);
4607 push_array_bounds (tree_low_cst (constructor_index
, 0));
4608 constructor_depth
++;
4611 if (constructor_type
== 0)
4613 error_init ("extra brace group at end of initializer");
4614 constructor_fields
= 0;
4615 constructor_unfilled_fields
= 0;
4619 if (value
&& TREE_CODE (value
) == CONSTRUCTOR
)
4621 constructor_constant
= TREE_CONSTANT (value
);
4622 constructor_simple
= TREE_STATIC (value
);
4623 constructor_elements
= CONSTRUCTOR_ELTS (value
);
4624 if (constructor_elements
4625 && (TREE_CODE (constructor_type
) == RECORD_TYPE
4626 || TREE_CODE (constructor_type
) == ARRAY_TYPE
))
4627 set_nonincremental_init ();
4630 if (implicit
== 1 && warn_missing_braces
&& !missing_braces_mentioned
)
4632 missing_braces_mentioned
= 1;
4633 warning_init ("missing braces around initializer");
4636 if (TREE_CODE (constructor_type
) == RECORD_TYPE
4637 || TREE_CODE (constructor_type
) == UNION_TYPE
)
4639 constructor_fields
= TYPE_FIELDS (constructor_type
);
4640 /* Skip any nameless bit fields at the beginning. */
4641 while (constructor_fields
!= 0 && DECL_C_BIT_FIELD (constructor_fields
)
4642 && DECL_NAME (constructor_fields
) == 0)
4643 constructor_fields
= TREE_CHAIN (constructor_fields
);
4645 constructor_unfilled_fields
= constructor_fields
;
4646 constructor_bit_index
= bitsize_zero_node
;
4648 else if (TREE_CODE (constructor_type
) == VECTOR_TYPE
)
4650 /* Vectors are like simple fixed-size arrays. */
4651 constructor_max_index
=
4652 build_int_2 (TYPE_VECTOR_SUBPARTS (constructor_type
) - 1, 0);
4653 constructor_index
= convert (bitsizetype
, integer_zero_node
);
4654 constructor_unfilled_index
= constructor_index
;
4656 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
4658 if (TYPE_DOMAIN (constructor_type
))
4660 constructor_max_index
4661 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
));
4663 /* Detect non-empty initializations of zero-length arrays. */
4664 if (constructor_max_index
== NULL_TREE
4665 && TYPE_SIZE (constructor_type
))
4666 constructor_max_index
= build_int_2 (-1, -1);
4668 /* constructor_max_index needs to be an INTEGER_CST. Attempts
4669 to initialize VLAs will cause a proper error; avoid tree
4670 checking errors as well by setting a safe value. */
4671 if (constructor_max_index
4672 && TREE_CODE (constructor_max_index
) != INTEGER_CST
)
4673 constructor_max_index
= build_int_2 (-1, -1);
4676 = convert (bitsizetype
,
4677 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
4680 constructor_index
= bitsize_zero_node
;
4682 constructor_unfilled_index
= constructor_index
;
4683 if (value
&& TREE_CODE (value
) == STRING_CST
)
4685 /* We need to split the char/wchar array into individual
4686 characters, so that we don't have to special case it
4688 set_nonincremental_init_from_string (value
);
4693 warning_init ("braces around scalar initializer");
4694 constructor_fields
= constructor_type
;
4695 constructor_unfilled_fields
= constructor_type
;
4699 /* At the end of an implicit or explicit brace level,
4700 finish up that level of constructor. If a single expression
4701 with redundant braces initialized that level, return the
4702 c_expr structure for that expression. Otherwise, the original_code
4703 element is set to ERROR_MARK.
4704 If we were outputting the elements as they are read, return 0 as the value
4705 from inner levels (process_init_element ignores that),
4706 but return error_mark_node as the value from the outermost level
4707 (that's what we want to put in DECL_INITIAL).
4708 Otherwise, return a CONSTRUCTOR expression as the value. */
4711 pop_init_level (int implicit
)
4713 struct constructor_stack
*p
;
4716 ret
.original_code
= ERROR_MARK
;
4720 /* When we come to an explicit close brace,
4721 pop any inner levels that didn't have explicit braces. */
4722 while (constructor_stack
->implicit
)
4723 process_init_element (pop_init_level (1));
4725 if (constructor_range_stack
)
4729 /* Now output all pending elements. */
4730 constructor_incremental
= 1;
4731 output_pending_init_elements (1);
4733 p
= constructor_stack
;
4735 /* Error for initializing a flexible array member, or a zero-length
4736 array member in an inappropriate context. */
4737 if (constructor_type
&& constructor_fields
4738 && TREE_CODE (constructor_type
) == ARRAY_TYPE
4739 && TYPE_DOMAIN (constructor_type
)
4740 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
)))
4742 /* Silently discard empty initializations. The parser will
4743 already have pedwarned for empty brackets. */
4744 if (integer_zerop (constructor_unfilled_index
))
4745 constructor_type
= NULL_TREE
;
4746 else if (! TYPE_SIZE (constructor_type
))
4748 if (constructor_depth
> 2)
4749 error_init ("initialization of flexible array member in a nested context");
4751 pedwarn_init ("initialization of a flexible array member");
4753 /* We have already issued an error message for the existence
4754 of a flexible array member not at the end of the structure.
4755 Discard the initializer so that we do not abort later. */
4756 if (TREE_CHAIN (constructor_fields
) != NULL_TREE
)
4757 constructor_type
= NULL_TREE
;
4760 /* Zero-length arrays are no longer special, so we should no longer
4765 /* Warn when some struct elements are implicitly initialized to zero. */
4768 && TREE_CODE (constructor_type
) == RECORD_TYPE
4769 && constructor_unfilled_fields
)
4771 /* Do not warn for flexible array members or zero-length arrays. */
4772 while (constructor_unfilled_fields
4773 && (! DECL_SIZE (constructor_unfilled_fields
)
4774 || integer_zerop (DECL_SIZE (constructor_unfilled_fields
))))
4775 constructor_unfilled_fields
= TREE_CHAIN (constructor_unfilled_fields
);
4777 /* Do not warn if this level of the initializer uses member
4778 designators; it is likely to be deliberate. */
4779 if (constructor_unfilled_fields
&& !constructor_designated
)
4781 push_member_name (constructor_unfilled_fields
);
4782 warning_init ("missing initializer");
4783 RESTORE_SPELLING_DEPTH (constructor_depth
);
4787 /* Pad out the end of the structure. */
4788 if (p
->replacement_value
.value
)
4789 /* If this closes a superfluous brace pair,
4790 just pass out the element between them. */
4791 ret
= p
->replacement_value
;
4792 else if (constructor_type
== 0)
4794 else if (TREE_CODE (constructor_type
) != RECORD_TYPE
4795 && TREE_CODE (constructor_type
) != UNION_TYPE
4796 && TREE_CODE (constructor_type
) != ARRAY_TYPE
4797 && TREE_CODE (constructor_type
) != VECTOR_TYPE
)
4799 /* A nonincremental scalar initializer--just return
4800 the element, after verifying there is just one. */
4801 if (constructor_elements
== 0)
4803 if (!constructor_erroneous
)
4804 error_init ("empty scalar initializer");
4805 ret
.value
= error_mark_node
;
4807 else if (TREE_CHAIN (constructor_elements
) != 0)
4809 error_init ("extra elements in scalar initializer");
4810 ret
.value
= TREE_VALUE (constructor_elements
);
4813 ret
.value
= TREE_VALUE (constructor_elements
);
4817 if (constructor_erroneous
)
4818 ret
.value
= error_mark_node
;
4821 ret
.value
= build_constructor (constructor_type
,
4822 nreverse (constructor_elements
));
4823 if (constructor_constant
)
4824 TREE_CONSTANT (ret
.value
) = TREE_INVARIANT (ret
.value
) = 1;
4825 if (constructor_constant
&& constructor_simple
)
4826 TREE_STATIC (ret
.value
) = 1;
4830 constructor_type
= p
->type
;
4831 constructor_fields
= p
->fields
;
4832 constructor_index
= p
->index
;
4833 constructor_max_index
= p
->max_index
;
4834 constructor_unfilled_index
= p
->unfilled_index
;
4835 constructor_unfilled_fields
= p
->unfilled_fields
;
4836 constructor_bit_index
= p
->bit_index
;
4837 constructor_elements
= p
->elements
;
4838 constructor_constant
= p
->constant
;
4839 constructor_simple
= p
->simple
;
4840 constructor_erroneous
= p
->erroneous
;
4841 constructor_incremental
= p
->incremental
;
4842 constructor_designated
= p
->designated
;
4843 constructor_pending_elts
= p
->pending_elts
;
4844 constructor_depth
= p
->depth
;
4846 constructor_range_stack
= p
->range_stack
;
4847 RESTORE_SPELLING_DEPTH (constructor_depth
);
4849 constructor_stack
= p
->next
;
4854 if (constructor_stack
== 0)
4856 ret
.value
= error_mark_node
;
4864 /* Common handling for both array range and field name designators.
4865 ARRAY argument is nonzero for array ranges. Returns zero for success. */
4868 set_designator (int array
)
4871 enum tree_code subcode
;
4873 /* Don't die if an entire brace-pair level is superfluous
4874 in the containing level. */
4875 if (constructor_type
== 0)
4878 /* If there were errors in this designator list already, bail out silently. */
4879 if (designator_errorneous
)
4882 if (!designator_depth
)
4884 if (constructor_range_stack
)
4887 /* Designator list starts at the level of closest explicit
4889 while (constructor_stack
->implicit
)
4890 process_init_element (pop_init_level (1));
4891 constructor_designated
= 1;
4895 if (constructor_no_implicit
)
4897 error_init ("initialization designators may not nest");
4901 if (TREE_CODE (constructor_type
) == RECORD_TYPE
4902 || TREE_CODE (constructor_type
) == UNION_TYPE
)
4904 subtype
= TREE_TYPE (constructor_fields
);
4905 if (subtype
!= error_mark_node
)
4906 subtype
= TYPE_MAIN_VARIANT (subtype
);
4908 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
4910 subtype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
4915 subcode
= TREE_CODE (subtype
);
4916 if (array
&& subcode
!= ARRAY_TYPE
)
4918 error_init ("array index in non-array initializer");
4921 else if (!array
&& subcode
!= RECORD_TYPE
&& subcode
!= UNION_TYPE
)
4923 error_init ("field name not in record or union initializer");
4927 constructor_designated
= 1;
4928 push_init_level (2);
4932 /* If there are range designators in designator list, push a new designator
4933 to constructor_range_stack. RANGE_END is end of such stack range or
4934 NULL_TREE if there is no range designator at this level. */
4937 push_range_stack (tree range_end
)
4939 struct constructor_range_stack
*p
;
4941 p
= GGC_NEW (struct constructor_range_stack
);
4942 p
->prev
= constructor_range_stack
;
4944 p
->fields
= constructor_fields
;
4945 p
->range_start
= constructor_index
;
4946 p
->index
= constructor_index
;
4947 p
->stack
= constructor_stack
;
4948 p
->range_end
= range_end
;
4949 if (constructor_range_stack
)
4950 constructor_range_stack
->next
= p
;
4951 constructor_range_stack
= p
;
4954 /* Within an array initializer, specify the next index to be initialized.
4955 FIRST is that index. If LAST is nonzero, then initialize a range
4956 of indices, running from FIRST through LAST. */
4959 set_init_index (tree first
, tree last
)
4961 if (set_designator (1))
4964 designator_errorneous
= 1;
4966 if (!INTEGRAL_TYPE_P (TREE_TYPE (first
))
4967 || (last
&& !INTEGRAL_TYPE_P (TREE_TYPE (last
))))
4969 error_init ("array index in initializer not of integer type");
4973 while ((TREE_CODE (first
) == NOP_EXPR
4974 || TREE_CODE (first
) == CONVERT_EXPR
4975 || TREE_CODE (first
) == NON_LVALUE_EXPR
)
4976 && (TYPE_MODE (TREE_TYPE (first
))
4977 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (first
, 0)))))
4978 first
= TREE_OPERAND (first
, 0);
4981 while ((TREE_CODE (last
) == NOP_EXPR
4982 || TREE_CODE (last
) == CONVERT_EXPR
4983 || TREE_CODE (last
) == NON_LVALUE_EXPR
)
4984 && (TYPE_MODE (TREE_TYPE (last
))
4985 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (last
, 0)))))
4986 last
= TREE_OPERAND (last
, 0);
4988 if (TREE_CODE (first
) != INTEGER_CST
)
4989 error_init ("nonconstant array index in initializer");
4990 else if (last
!= 0 && TREE_CODE (last
) != INTEGER_CST
)
4991 error_init ("nonconstant array index in initializer");
4992 else if (TREE_CODE (constructor_type
) != ARRAY_TYPE
)
4993 error_init ("array index in non-array initializer");
4994 else if (tree_int_cst_sgn (first
) == -1)
4995 error_init ("array index in initializer exceeds array bounds");
4996 else if (constructor_max_index
4997 && tree_int_cst_lt (constructor_max_index
, first
))
4998 error_init ("array index in initializer exceeds array bounds");
5001 constructor_index
= convert (bitsizetype
, first
);
5005 if (tree_int_cst_equal (first
, last
))
5007 else if (tree_int_cst_lt (last
, first
))
5009 error_init ("empty index range in initializer");
5014 last
= convert (bitsizetype
, last
);
5015 if (constructor_max_index
!= 0
5016 && tree_int_cst_lt (constructor_max_index
, last
))
5018 error_init ("array index range in initializer exceeds array bounds");
5025 designator_errorneous
= 0;
5026 if (constructor_range_stack
|| last
)
5027 push_range_stack (last
);
5031 /* Within a struct initializer, specify the next field to be initialized. */
5034 set_init_label (tree fieldname
)
5038 if (set_designator (0))
5041 designator_errorneous
= 1;
5043 if (TREE_CODE (constructor_type
) != RECORD_TYPE
5044 && TREE_CODE (constructor_type
) != UNION_TYPE
)
5046 error_init ("field name not in record or union initializer");
5050 for (tail
= TYPE_FIELDS (constructor_type
); tail
;
5051 tail
= TREE_CHAIN (tail
))
5053 if (DECL_NAME (tail
) == fieldname
)
5058 error ("unknown field `%s' specified in initializer",
5059 IDENTIFIER_POINTER (fieldname
));
5062 constructor_fields
= tail
;
5064 designator_errorneous
= 0;
5065 if (constructor_range_stack
)
5066 push_range_stack (NULL_TREE
);
5070 /* Add a new initializer to the tree of pending initializers. PURPOSE
5071 identifies the initializer, either array index or field in a structure.
5072 VALUE is the value of that index or field. */
5075 add_pending_init (tree purpose
, tree value
)
5077 struct init_node
*p
, **q
, *r
;
5079 q
= &constructor_pending_elts
;
5082 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5087 if (tree_int_cst_lt (purpose
, p
->purpose
))
5089 else if (tree_int_cst_lt (p
->purpose
, purpose
))
5093 if (TREE_SIDE_EFFECTS (p
->value
))
5094 warning_init ("initialized field with side-effects overwritten");
5104 bitpos
= bit_position (purpose
);
5108 if (tree_int_cst_lt (bitpos
, bit_position (p
->purpose
)))
5110 else if (p
->purpose
!= purpose
)
5114 if (TREE_SIDE_EFFECTS (p
->value
))
5115 warning_init ("initialized field with side-effects overwritten");
5122 r
= GGC_NEW (struct init_node
);
5123 r
->purpose
= purpose
;
5134 struct init_node
*s
;
5138 if (p
->balance
== 0)
5140 else if (p
->balance
< 0)
5147 p
->left
->parent
= p
;
5164 constructor_pending_elts
= r
;
5169 struct init_node
*t
= r
->right
;
5173 r
->right
->parent
= r
;
5178 p
->left
->parent
= p
;
5181 p
->balance
= t
->balance
< 0;
5182 r
->balance
= -(t
->balance
> 0);
5197 constructor_pending_elts
= t
;
5203 /* p->balance == +1; growth of left side balances the node. */
5208 else /* r == p->right */
5210 if (p
->balance
== 0)
5211 /* Growth propagation from right side. */
5213 else if (p
->balance
> 0)
5220 p
->right
->parent
= p
;
5237 constructor_pending_elts
= r
;
5239 else /* r->balance == -1 */
5242 struct init_node
*t
= r
->left
;
5246 r
->left
->parent
= r
;
5251 p
->right
->parent
= p
;
5254 r
->balance
= (t
->balance
< 0);
5255 p
->balance
= -(t
->balance
> 0);
5270 constructor_pending_elts
= t
;
5276 /* p->balance == -1; growth of right side balances the node. */
5287 /* Build AVL tree from a sorted chain. */
5290 set_nonincremental_init (void)
5294 if (TREE_CODE (constructor_type
) != RECORD_TYPE
5295 && TREE_CODE (constructor_type
) != ARRAY_TYPE
)
5298 for (chain
= constructor_elements
; chain
; chain
= TREE_CHAIN (chain
))
5299 add_pending_init (TREE_PURPOSE (chain
), TREE_VALUE (chain
));
5300 constructor_elements
= 0;
5301 if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
5303 constructor_unfilled_fields
= TYPE_FIELDS (constructor_type
);
5304 /* Skip any nameless bit fields at the beginning. */
5305 while (constructor_unfilled_fields
!= 0
5306 && DECL_C_BIT_FIELD (constructor_unfilled_fields
)
5307 && DECL_NAME (constructor_unfilled_fields
) == 0)
5308 constructor_unfilled_fields
= TREE_CHAIN (constructor_unfilled_fields
);
5311 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5313 if (TYPE_DOMAIN (constructor_type
))
5314 constructor_unfilled_index
5315 = convert (bitsizetype
,
5316 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
5318 constructor_unfilled_index
= bitsize_zero_node
;
5320 constructor_incremental
= 0;
5323 /* Build AVL tree from a string constant. */
5326 set_nonincremental_init_from_string (tree str
)
5328 tree value
, purpose
, type
;
5329 HOST_WIDE_INT val
[2];
5330 const char *p
, *end
;
5331 int byte
, wchar_bytes
, charwidth
, bitpos
;
5333 if (TREE_CODE (constructor_type
) != ARRAY_TYPE
)
5336 if (TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str
)))
5337 == TYPE_PRECISION (char_type_node
))
5339 else if (TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str
)))
5340 == TYPE_PRECISION (wchar_type_node
))
5341 wchar_bytes
= TYPE_PRECISION (wchar_type_node
) / BITS_PER_UNIT
;
5345 charwidth
= TYPE_PRECISION (char_type_node
);
5346 type
= TREE_TYPE (constructor_type
);
5347 p
= TREE_STRING_POINTER (str
);
5348 end
= p
+ TREE_STRING_LENGTH (str
);
5350 for (purpose
= bitsize_zero_node
;
5351 p
< end
&& !tree_int_cst_lt (constructor_max_index
, purpose
);
5352 purpose
= size_binop (PLUS_EXPR
, purpose
, bitsize_one_node
))
5354 if (wchar_bytes
== 1)
5356 val
[1] = (unsigned char) *p
++;
5363 for (byte
= 0; byte
< wchar_bytes
; byte
++)
5365 if (BYTES_BIG_ENDIAN
)
5366 bitpos
= (wchar_bytes
- byte
- 1) * charwidth
;
5368 bitpos
= byte
* charwidth
;
5369 val
[bitpos
< HOST_BITS_PER_WIDE_INT
]
5370 |= ((unsigned HOST_WIDE_INT
) ((unsigned char) *p
++))
5371 << (bitpos
% HOST_BITS_PER_WIDE_INT
);
5375 if (!TYPE_UNSIGNED (type
))
5377 bitpos
= ((wchar_bytes
- 1) * charwidth
) + HOST_BITS_PER_CHAR
;
5378 if (bitpos
< HOST_BITS_PER_WIDE_INT
)
5380 if (val
[1] & (((HOST_WIDE_INT
) 1) << (bitpos
- 1)))
5382 val
[1] |= ((HOST_WIDE_INT
) -1) << bitpos
;
5386 else if (bitpos
== HOST_BITS_PER_WIDE_INT
)
5391 else if (val
[0] & (((HOST_WIDE_INT
) 1)
5392 << (bitpos
- 1 - HOST_BITS_PER_WIDE_INT
)))
5393 val
[0] |= ((HOST_WIDE_INT
) -1)
5394 << (bitpos
- HOST_BITS_PER_WIDE_INT
);
5397 value
= build_int_2 (val
[1], val
[0]);
5398 TREE_TYPE (value
) = type
;
5399 add_pending_init (purpose
, value
);
5402 constructor_incremental
= 0;
5405 /* Return value of FIELD in pending initializer or zero if the field was
5406 not initialized yet. */
5409 find_init_member (tree field
)
5411 struct init_node
*p
;
5413 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5415 if (constructor_incremental
5416 && tree_int_cst_lt (field
, constructor_unfilled_index
))
5417 set_nonincremental_init ();
5419 p
= constructor_pending_elts
;
5422 if (tree_int_cst_lt (field
, p
->purpose
))
5424 else if (tree_int_cst_lt (p
->purpose
, field
))
5430 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
5432 tree bitpos
= bit_position (field
);
5434 if (constructor_incremental
5435 && (!constructor_unfilled_fields
5436 || tree_int_cst_lt (bitpos
,
5437 bit_position (constructor_unfilled_fields
))))
5438 set_nonincremental_init ();
5440 p
= constructor_pending_elts
;
5443 if (field
== p
->purpose
)
5445 else if (tree_int_cst_lt (bitpos
, bit_position (p
->purpose
)))
5451 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
5453 if (constructor_elements
5454 && TREE_PURPOSE (constructor_elements
) == field
)
5455 return TREE_VALUE (constructor_elements
);
5460 /* "Output" the next constructor element.
5461 At top level, really output it to assembler code now.
5462 Otherwise, collect it in a list from which we will make a CONSTRUCTOR.
5463 TYPE is the data type that the containing data type wants here.
5464 FIELD is the field (a FIELD_DECL) or the index that this element fills.
5465 If VALUE is a string constant, STRICT_STRING is true if it is
5466 unparenthesized or we should not warn here for it being parenthesized.
5467 For other types of VALUE, STRICT_STRING is not used.
5469 PENDING if non-nil means output pending elements that belong
5470 right after this element. (PENDING is normally 1;
5471 it is 0 while outputting pending elements, to avoid recursion.) */
5474 output_init_element (tree value
, bool strict_string
, tree type
, tree field
,
5477 if (type
== error_mark_node
)
5479 constructor_erroneous
= 1;
5482 if (TREE_CODE (TREE_TYPE (value
)) == FUNCTION_TYPE
5483 || (TREE_CODE (TREE_TYPE (value
)) == ARRAY_TYPE
5484 && !(TREE_CODE (value
) == STRING_CST
5485 && TREE_CODE (type
) == ARRAY_TYPE
5486 && INTEGRAL_TYPE_P (TREE_TYPE (type
)))
5487 && !comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (value
)),
5488 TYPE_MAIN_VARIANT (type
))))
5489 value
= default_conversion (value
);
5491 if (TREE_CODE (value
) == COMPOUND_LITERAL_EXPR
5492 && require_constant_value
&& !flag_isoc99
&& pending
)
5494 /* As an extension, allow initializing objects with static storage
5495 duration with compound literals (which are then treated just as
5496 the brace enclosed list they contain). */
5497 tree decl
= COMPOUND_LITERAL_EXPR_DECL (value
);
5498 value
= DECL_INITIAL (decl
);
5501 if (value
== error_mark_node
)
5502 constructor_erroneous
= 1;
5503 else if (!TREE_CONSTANT (value
))
5504 constructor_constant
= 0;
5505 else if (initializer_constant_valid_p (value
, TREE_TYPE (value
)) == 0
5506 || ((TREE_CODE (constructor_type
) == RECORD_TYPE
5507 || TREE_CODE (constructor_type
) == UNION_TYPE
)
5508 && DECL_C_BIT_FIELD (field
)
5509 && TREE_CODE (value
) != INTEGER_CST
))
5510 constructor_simple
= 0;
5512 if (require_constant_value
&& ! TREE_CONSTANT (value
))
5514 error_init ("initializer element is not constant");
5515 value
= error_mark_node
;
5517 else if (require_constant_elements
5518 && initializer_constant_valid_p (value
, TREE_TYPE (value
)) == 0)
5519 pedwarn ("initializer element is not computable at load time");
5521 /* If this field is empty (and not at the end of structure),
5522 don't do anything other than checking the initializer. */
5524 && (TREE_TYPE (field
) == error_mark_node
5525 || (COMPLETE_TYPE_P (TREE_TYPE (field
))
5526 && integer_zerop (TYPE_SIZE (TREE_TYPE (field
)))
5527 && (TREE_CODE (constructor_type
) == ARRAY_TYPE
5528 || TREE_CHAIN (field
)))))
5531 value
= digest_init (type
, value
, strict_string
, require_constant_value
);
5532 if (value
== error_mark_node
)
5534 constructor_erroneous
= 1;
5538 /* If this element doesn't come next in sequence,
5539 put it on constructor_pending_elts. */
5540 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
5541 && (!constructor_incremental
5542 || !tree_int_cst_equal (field
, constructor_unfilled_index
)))
5544 if (constructor_incremental
5545 && tree_int_cst_lt (field
, constructor_unfilled_index
))
5546 set_nonincremental_init ();
5548 add_pending_init (field
, value
);
5551 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
5552 && (!constructor_incremental
5553 || field
!= constructor_unfilled_fields
))
5555 /* We do this for records but not for unions. In a union,
5556 no matter which field is specified, it can be initialized
5557 right away since it starts at the beginning of the union. */
5558 if (constructor_incremental
)
5560 if (!constructor_unfilled_fields
)
5561 set_nonincremental_init ();
5564 tree bitpos
, unfillpos
;
5566 bitpos
= bit_position (field
);
5567 unfillpos
= bit_position (constructor_unfilled_fields
);
5569 if (tree_int_cst_lt (bitpos
, unfillpos
))
5570 set_nonincremental_init ();
5574 add_pending_init (field
, value
);
5577 else if (TREE_CODE (constructor_type
) == UNION_TYPE
5578 && constructor_elements
)
5580 if (TREE_SIDE_EFFECTS (TREE_VALUE (constructor_elements
)))
5581 warning_init ("initialized field with side-effects overwritten");
5583 /* We can have just one union field set. */
5584 constructor_elements
= 0;
5587 /* Otherwise, output this element either to
5588 constructor_elements or to the assembler file. */
5590 if (field
&& TREE_CODE (field
) == INTEGER_CST
)
5591 field
= copy_node (field
);
5592 constructor_elements
5593 = tree_cons (field
, value
, constructor_elements
);
5595 /* Advance the variable that indicates sequential elements output. */
5596 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5597 constructor_unfilled_index
5598 = size_binop (PLUS_EXPR
, constructor_unfilled_index
,
5600 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
5602 constructor_unfilled_fields
5603 = TREE_CHAIN (constructor_unfilled_fields
);
5605 /* Skip any nameless bit fields. */
5606 while (constructor_unfilled_fields
!= 0
5607 && DECL_C_BIT_FIELD (constructor_unfilled_fields
)
5608 && DECL_NAME (constructor_unfilled_fields
) == 0)
5609 constructor_unfilled_fields
=
5610 TREE_CHAIN (constructor_unfilled_fields
);
5612 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
5613 constructor_unfilled_fields
= 0;
5615 /* Now output any pending elements which have become next. */
5617 output_pending_init_elements (0);
5620 /* Output any pending elements which have become next.
5621 As we output elements, constructor_unfilled_{fields,index}
5622 advances, which may cause other elements to become next;
5623 if so, they too are output.
5625 If ALL is 0, we return when there are
5626 no more pending elements to output now.
5628 If ALL is 1, we output space as necessary so that
5629 we can output all the pending elements. */
5632 output_pending_init_elements (int all
)
5634 struct init_node
*elt
= constructor_pending_elts
;
5639 /* Look through the whole pending tree.
5640 If we find an element that should be output now,
5641 output it. Otherwise, set NEXT to the element
5642 that comes first among those still pending. */
5647 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5649 if (tree_int_cst_equal (elt
->purpose
,
5650 constructor_unfilled_index
))
5651 output_init_element (elt
->value
, true,
5652 TREE_TYPE (constructor_type
),
5653 constructor_unfilled_index
, 0);
5654 else if (tree_int_cst_lt (constructor_unfilled_index
,
5657 /* Advance to the next smaller node. */
5662 /* We have reached the smallest node bigger than the
5663 current unfilled index. Fill the space first. */
5664 next
= elt
->purpose
;
5670 /* Advance to the next bigger node. */
5675 /* We have reached the biggest node in a subtree. Find
5676 the parent of it, which is the next bigger node. */
5677 while (elt
->parent
&& elt
->parent
->right
== elt
)
5680 if (elt
&& tree_int_cst_lt (constructor_unfilled_index
,
5683 next
= elt
->purpose
;
5689 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
5690 || TREE_CODE (constructor_type
) == UNION_TYPE
)
5692 tree ctor_unfilled_bitpos
, elt_bitpos
;
5694 /* If the current record is complete we are done. */
5695 if (constructor_unfilled_fields
== 0)
5698 ctor_unfilled_bitpos
= bit_position (constructor_unfilled_fields
);
5699 elt_bitpos
= bit_position (elt
->purpose
);
5700 /* We can't compare fields here because there might be empty
5701 fields in between. */
5702 if (tree_int_cst_equal (elt_bitpos
, ctor_unfilled_bitpos
))
5704 constructor_unfilled_fields
= elt
->purpose
;
5705 output_init_element (elt
->value
, true, TREE_TYPE (elt
->purpose
),
5708 else if (tree_int_cst_lt (ctor_unfilled_bitpos
, elt_bitpos
))
5710 /* Advance to the next smaller node. */
5715 /* We have reached the smallest node bigger than the
5716 current unfilled field. Fill the space first. */
5717 next
= elt
->purpose
;
5723 /* Advance to the next bigger node. */
5728 /* We have reached the biggest node in a subtree. Find
5729 the parent of it, which is the next bigger node. */
5730 while (elt
->parent
&& elt
->parent
->right
== elt
)
5734 && (tree_int_cst_lt (ctor_unfilled_bitpos
,
5735 bit_position (elt
->purpose
))))
5737 next
= elt
->purpose
;
5745 /* Ordinarily return, but not if we want to output all
5746 and there are elements left. */
5747 if (! (all
&& next
!= 0))
5750 /* If it's not incremental, just skip over the gap, so that after
5751 jumping to retry we will output the next successive element. */
5752 if (TREE_CODE (constructor_type
) == RECORD_TYPE
5753 || TREE_CODE (constructor_type
) == UNION_TYPE
)
5754 constructor_unfilled_fields
= next
;
5755 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5756 constructor_unfilled_index
= next
;
5758 /* ELT now points to the node in the pending tree with the next
5759 initializer to output. */
5763 /* Add one non-braced element to the current constructor level.
5764 This adjusts the current position within the constructor's type.
5765 This may also start or terminate implicit levels
5766 to handle a partly-braced initializer.
5768 Once this has found the correct level for the new element,
5769 it calls output_init_element. */
5772 process_init_element (struct c_expr value
)
5774 tree orig_value
= value
.value
;
5775 int string_flag
= orig_value
!= 0 && TREE_CODE (orig_value
) == STRING_CST
;
5776 bool strict_string
= value
.original_code
== STRING_CST
;
5778 designator_depth
= 0;
5779 designator_errorneous
= 0;
5781 /* Handle superfluous braces around string cst as in
5782 char x[] = {"foo"}; */
5785 && TREE_CODE (constructor_type
) == ARRAY_TYPE
5786 && INTEGRAL_TYPE_P (TREE_TYPE (constructor_type
))
5787 && integer_zerop (constructor_unfilled_index
))
5789 if (constructor_stack
->replacement_value
.value
)
5790 error_init ("excess elements in char array initializer");
5791 constructor_stack
->replacement_value
= value
;
5795 if (constructor_stack
->replacement_value
.value
!= 0)
5797 error_init ("excess elements in struct initializer");
5801 /* Ignore elements of a brace group if it is entirely superfluous
5802 and has already been diagnosed. */
5803 if (constructor_type
== 0)
5806 /* If we've exhausted any levels that didn't have braces,
5808 while (constructor_stack
->implicit
)
5810 if ((TREE_CODE (constructor_type
) == RECORD_TYPE
5811 || TREE_CODE (constructor_type
) == UNION_TYPE
)
5812 && constructor_fields
== 0)
5813 process_init_element (pop_init_level (1));
5814 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
5815 && (constructor_max_index
== 0
5816 || tree_int_cst_lt (constructor_max_index
,
5817 constructor_index
)))
5818 process_init_element (pop_init_level (1));
5823 /* In the case of [LO ... HI] = VALUE, only evaluate VALUE once. */
5824 if (constructor_range_stack
)
5826 /* If value is a compound literal and we'll be just using its
5827 content, don't put it into a SAVE_EXPR. */
5828 if (TREE_CODE (value
.value
) != COMPOUND_LITERAL_EXPR
5829 || !require_constant_value
5831 value
.value
= save_expr (value
.value
);
5836 if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
5839 enum tree_code fieldcode
;
5841 if (constructor_fields
== 0)
5843 pedwarn_init ("excess elements in struct initializer");
5847 fieldtype
= TREE_TYPE (constructor_fields
);
5848 if (fieldtype
!= error_mark_node
)
5849 fieldtype
= TYPE_MAIN_VARIANT (fieldtype
);
5850 fieldcode
= TREE_CODE (fieldtype
);
5852 /* Error for non-static initialization of a flexible array member. */
5853 if (fieldcode
== ARRAY_TYPE
5854 && !require_constant_value
5855 && TYPE_SIZE (fieldtype
) == NULL_TREE
5856 && TREE_CHAIN (constructor_fields
) == NULL_TREE
)
5858 error_init ("non-static initialization of a flexible array member");
5862 /* Accept a string constant to initialize a subarray. */
5863 if (value
.value
!= 0
5864 && fieldcode
== ARRAY_TYPE
5865 && INTEGRAL_TYPE_P (TREE_TYPE (fieldtype
))
5867 value
.value
= orig_value
;
5868 /* Otherwise, if we have come to a subaggregate,
5869 and we don't have an element of its type, push into it. */
5870 else if (value
.value
!= 0 && !constructor_no_implicit
5871 && value
.value
!= error_mark_node
5872 && TYPE_MAIN_VARIANT (TREE_TYPE (value
.value
)) != fieldtype
5873 && (fieldcode
== RECORD_TYPE
|| fieldcode
== ARRAY_TYPE
5874 || fieldcode
== UNION_TYPE
))
5876 push_init_level (1);
5882 push_member_name (constructor_fields
);
5883 output_init_element (value
.value
, strict_string
,
5884 fieldtype
, constructor_fields
, 1);
5885 RESTORE_SPELLING_DEPTH (constructor_depth
);
5888 /* Do the bookkeeping for an element that was
5889 directly output as a constructor. */
5891 /* For a record, keep track of end position of last field. */
5892 if (DECL_SIZE (constructor_fields
))
5893 constructor_bit_index
5894 = size_binop (PLUS_EXPR
,
5895 bit_position (constructor_fields
),
5896 DECL_SIZE (constructor_fields
));
5898 /* If the current field was the first one not yet written out,
5899 it isn't now, so update. */
5900 if (constructor_unfilled_fields
== constructor_fields
)
5902 constructor_unfilled_fields
= TREE_CHAIN (constructor_fields
);
5903 /* Skip any nameless bit fields. */
5904 while (constructor_unfilled_fields
!= 0
5905 && DECL_C_BIT_FIELD (constructor_unfilled_fields
)
5906 && DECL_NAME (constructor_unfilled_fields
) == 0)
5907 constructor_unfilled_fields
=
5908 TREE_CHAIN (constructor_unfilled_fields
);
5912 constructor_fields
= TREE_CHAIN (constructor_fields
);
5913 /* Skip any nameless bit fields at the beginning. */
5914 while (constructor_fields
!= 0
5915 && DECL_C_BIT_FIELD (constructor_fields
)
5916 && DECL_NAME (constructor_fields
) == 0)
5917 constructor_fields
= TREE_CHAIN (constructor_fields
);
5919 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
5922 enum tree_code fieldcode
;
5924 if (constructor_fields
== 0)
5926 pedwarn_init ("excess elements in union initializer");
5930 fieldtype
= TREE_TYPE (constructor_fields
);
5931 if (fieldtype
!= error_mark_node
)
5932 fieldtype
= TYPE_MAIN_VARIANT (fieldtype
);
5933 fieldcode
= TREE_CODE (fieldtype
);
5935 /* Warn that traditional C rejects initialization of unions.
5936 We skip the warning if the value is zero. This is done
5937 under the assumption that the zero initializer in user
5938 code appears conditioned on e.g. __STDC__ to avoid
5939 "missing initializer" warnings and relies on default
5940 initialization to zero in the traditional C case.
5941 We also skip the warning if the initializer is designated,
5942 again on the assumption that this must be conditional on
5943 __STDC__ anyway (and we've already complained about the
5944 member-designator already). */
5945 if (warn_traditional
&& !in_system_header
&& !constructor_designated
5946 && !(value
.value
&& (integer_zerop (value
.value
)
5947 || real_zerop (value
.value
))))
5948 warning ("traditional C rejects initialization of unions");
5950 /* Accept a string constant to initialize a subarray. */
5951 if (value
.value
!= 0
5952 && fieldcode
== ARRAY_TYPE
5953 && INTEGRAL_TYPE_P (TREE_TYPE (fieldtype
))
5955 value
.value
= orig_value
;
5956 /* Otherwise, if we have come to a subaggregate,
5957 and we don't have an element of its type, push into it. */
5958 else if (value
.value
!= 0 && !constructor_no_implicit
5959 && value
.value
!= error_mark_node
5960 && TYPE_MAIN_VARIANT (TREE_TYPE (value
.value
)) != fieldtype
5961 && (fieldcode
== RECORD_TYPE
|| fieldcode
== ARRAY_TYPE
5962 || fieldcode
== UNION_TYPE
))
5964 push_init_level (1);
5970 push_member_name (constructor_fields
);
5971 output_init_element (value
.value
, strict_string
,
5972 fieldtype
, constructor_fields
, 1);
5973 RESTORE_SPELLING_DEPTH (constructor_depth
);
5976 /* Do the bookkeeping for an element that was
5977 directly output as a constructor. */
5979 constructor_bit_index
= DECL_SIZE (constructor_fields
);
5980 constructor_unfilled_fields
= TREE_CHAIN (constructor_fields
);
5983 constructor_fields
= 0;
5985 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5987 tree elttype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
5988 enum tree_code eltcode
= TREE_CODE (elttype
);
5990 /* Accept a string constant to initialize a subarray. */
5991 if (value
.value
!= 0
5992 && eltcode
== ARRAY_TYPE
5993 && INTEGRAL_TYPE_P (TREE_TYPE (elttype
))
5995 value
.value
= orig_value
;
5996 /* Otherwise, if we have come to a subaggregate,
5997 and we don't have an element of its type, push into it. */
5998 else if (value
.value
!= 0 && !constructor_no_implicit
5999 && value
.value
!= error_mark_node
6000 && TYPE_MAIN_VARIANT (TREE_TYPE (value
.value
)) != elttype
6001 && (eltcode
== RECORD_TYPE
|| eltcode
== ARRAY_TYPE
6002 || eltcode
== UNION_TYPE
))
6004 push_init_level (1);
6008 if (constructor_max_index
!= 0
6009 && (tree_int_cst_lt (constructor_max_index
, constructor_index
)
6010 || integer_all_onesp (constructor_max_index
)))
6012 pedwarn_init ("excess elements in array initializer");
6016 /* Now output the actual element. */
6019 push_array_bounds (tree_low_cst (constructor_index
, 0));
6020 output_init_element (value
.value
, strict_string
,
6021 elttype
, constructor_index
, 1);
6022 RESTORE_SPELLING_DEPTH (constructor_depth
);
6026 = size_binop (PLUS_EXPR
, constructor_index
, bitsize_one_node
);
6029 /* If we are doing the bookkeeping for an element that was
6030 directly output as a constructor, we must update
6031 constructor_unfilled_index. */
6032 constructor_unfilled_index
= constructor_index
;
6034 else if (TREE_CODE (constructor_type
) == VECTOR_TYPE
)
6036 tree elttype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
6038 /* Do a basic check of initializer size. Note that vectors
6039 always have a fixed size derived from their type. */
6040 if (tree_int_cst_lt (constructor_max_index
, constructor_index
))
6042 pedwarn_init ("excess elements in vector initializer");
6046 /* Now output the actual element. */
6048 output_init_element (value
.value
, strict_string
,
6049 elttype
, constructor_index
, 1);
6052 = size_binop (PLUS_EXPR
, constructor_index
, bitsize_one_node
);
6055 /* If we are doing the bookkeeping for an element that was
6056 directly output as a constructor, we must update
6057 constructor_unfilled_index. */
6058 constructor_unfilled_index
= constructor_index
;
6061 /* Handle the sole element allowed in a braced initializer
6062 for a scalar variable. */
6063 else if (constructor_fields
== 0)
6065 pedwarn_init ("excess elements in scalar initializer");
6071 output_init_element (value
.value
, strict_string
,
6072 constructor_type
, NULL_TREE
, 1);
6073 constructor_fields
= 0;
6076 /* Handle range initializers either at this level or anywhere higher
6077 in the designator stack. */
6078 if (constructor_range_stack
)
6080 struct constructor_range_stack
*p
, *range_stack
;
6083 range_stack
= constructor_range_stack
;
6084 constructor_range_stack
= 0;
6085 while (constructor_stack
!= range_stack
->stack
)
6087 if (!constructor_stack
->implicit
)
6089 process_init_element (pop_init_level (1));
6091 for (p
= range_stack
;
6092 !p
->range_end
|| tree_int_cst_equal (p
->index
, p
->range_end
);
6095 if (!constructor_stack
->implicit
)
6097 process_init_element (pop_init_level (1));
6100 p
->index
= size_binop (PLUS_EXPR
, p
->index
, bitsize_one_node
);
6101 if (tree_int_cst_equal (p
->index
, p
->range_end
) && !p
->prev
)
6106 constructor_index
= p
->index
;
6107 constructor_fields
= p
->fields
;
6108 if (finish
&& p
->range_end
&& p
->index
== p
->range_start
)
6116 push_init_level (2);
6117 p
->stack
= constructor_stack
;
6118 if (p
->range_end
&& tree_int_cst_equal (p
->index
, p
->range_end
))
6119 p
->index
= p
->range_start
;
6123 constructor_range_stack
= range_stack
;
6130 constructor_range_stack
= 0;
6133 /* Build a complete asm-statement, whose components are a CV_QUALIFIER
6134 (guaranteed to be 'volatile' or null) and ARGS (represented using
6135 an ASM_EXPR node). */
6137 build_asm_stmt (tree cv_qualifier
, tree args
)
6139 if (!ASM_VOLATILE_P (args
) && cv_qualifier
)
6140 ASM_VOLATILE_P (args
) = 1;
6141 return add_stmt (args
);
6144 /* Build an asm-expr, whose components are a STRING, some OUTPUTS,
6145 some INPUTS, and some CLOBBERS. The latter three may be NULL.
6146 SIMPLE indicates whether there was anything at all after the
6147 string in the asm expression -- asm("blah") and asm("blah" : )
6148 are subtly different. We use a ASM_EXPR node to represent this. */
6150 build_asm_expr (tree string
, tree outputs
, tree inputs
, tree clobbers
,
6156 const char *constraint
;
6157 bool allows_mem
, allows_reg
, is_inout
;
6161 ninputs
= list_length (inputs
);
6162 noutputs
= list_length (outputs
);
6164 /* Remove output conversions that change the type but not the mode. */
6165 for (i
= 0, tail
= outputs
; tail
; ++i
, tail
= TREE_CHAIN (tail
))
6167 tree output
= TREE_VALUE (tail
);
6168 STRIP_NOPS (output
);
6169 TREE_VALUE (tail
) = output
;
6170 lvalue_or_else (output
, "invalid lvalue in asm statement");
6172 constraint
= TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail
)));
6174 if (!parse_output_constraint (&constraint
, i
, ninputs
, noutputs
,
6175 &allows_mem
, &allows_reg
, &is_inout
))
6177 /* By marking this operand as erroneous, we will not try
6178 to process this operand again in expand_asm_operands. */
6179 TREE_VALUE (tail
) = error_mark_node
;
6183 /* If the operand is a DECL that is going to end up in
6184 memory, assume it is addressable. This is a bit more
6185 conservative than it would ideally be; the exact test is
6186 buried deep in expand_asm_operands and depends on the
6187 DECL_RTL for the OPERAND -- which we don't have at this
6189 if (!allows_reg
&& DECL_P (output
))
6190 c_mark_addressable (output
);
6193 /* Perform default conversions on array and function inputs.
6194 Don't do this for other types as it would screw up operands
6195 expected to be in memory. */
6196 for (tail
= inputs
; tail
; tail
= TREE_CHAIN (tail
))
6197 TREE_VALUE (tail
) = default_function_array_conversion (TREE_VALUE (tail
));
6199 args
= build_stmt (ASM_EXPR
, string
, outputs
, inputs
, clobbers
);
6201 /* Simple asm statements are treated as volatile. */
6204 ASM_VOLATILE_P (args
) = 1;
6205 ASM_INPUT_P (args
) = 1;
6210 /* Generate a goto statement to LABEL. */
6213 c_finish_goto_label (tree label
)
6215 tree decl
= lookup_label (label
);
6219 TREE_USED (decl
) = 1;
6220 return add_stmt (build (GOTO_EXPR
, void_type_node
, decl
));
6223 /* Generate a computed goto statement to EXPR. */
6226 c_finish_goto_ptr (tree expr
)
6229 pedwarn ("ISO C forbids `goto *expr;'");
6230 expr
= convert (ptr_type_node
, expr
);
6231 return add_stmt (build (GOTO_EXPR
, void_type_node
, expr
));
6234 /* Generate a C `return' statement. RETVAL is the expression for what
6235 to return, or a null pointer for `return;' with no value. */
6238 c_finish_return (tree retval
)
6240 tree valtype
= TREE_TYPE (TREE_TYPE (current_function_decl
));
6242 if (TREE_THIS_VOLATILE (current_function_decl
))
6243 warning ("function declared `noreturn' has a `return' statement");
6247 current_function_returns_null
= 1;
6248 if ((warn_return_type
|| flag_isoc99
)
6249 && valtype
!= 0 && TREE_CODE (valtype
) != VOID_TYPE
)
6250 pedwarn_c99 ("`return' with no value, in function returning non-void");
6252 else if (valtype
== 0 || TREE_CODE (valtype
) == VOID_TYPE
)
6254 current_function_returns_null
= 1;
6255 if (pedantic
|| TREE_CODE (TREE_TYPE (retval
)) != VOID_TYPE
)
6256 pedwarn ("`return' with a value, in function returning void");
6260 tree t
= convert_for_assignment (valtype
, retval
, _("return"),
6261 NULL_TREE
, NULL_TREE
, 0);
6262 tree res
= DECL_RESULT (current_function_decl
);
6265 current_function_returns_value
= 1;
6266 if (t
== error_mark_node
)
6269 inner
= t
= convert (TREE_TYPE (res
), t
);
6271 /* Strip any conversions, additions, and subtractions, and see if
6272 we are returning the address of a local variable. Warn if so. */
6275 switch (TREE_CODE (inner
))
6277 case NOP_EXPR
: case NON_LVALUE_EXPR
: case CONVERT_EXPR
:
6279 inner
= TREE_OPERAND (inner
, 0);
6283 /* If the second operand of the MINUS_EXPR has a pointer
6284 type (or is converted from it), this may be valid, so
6285 don't give a warning. */
6287 tree op1
= TREE_OPERAND (inner
, 1);
6289 while (! POINTER_TYPE_P (TREE_TYPE (op1
))
6290 && (TREE_CODE (op1
) == NOP_EXPR
6291 || TREE_CODE (op1
) == NON_LVALUE_EXPR
6292 || TREE_CODE (op1
) == CONVERT_EXPR
))
6293 op1
= TREE_OPERAND (op1
, 0);
6295 if (POINTER_TYPE_P (TREE_TYPE (op1
)))
6298 inner
= TREE_OPERAND (inner
, 0);
6303 inner
= TREE_OPERAND (inner
, 0);
6305 while (TREE_CODE_CLASS (TREE_CODE (inner
)) == 'r')
6306 inner
= TREE_OPERAND (inner
, 0);
6309 && ! DECL_EXTERNAL (inner
)
6310 && ! TREE_STATIC (inner
)
6311 && DECL_CONTEXT (inner
) == current_function_decl
)
6312 warning ("function returns address of local variable");
6322 retval
= build (MODIFY_EXPR
, TREE_TYPE (res
), res
, t
);
6325 return add_stmt (build_stmt (RETURN_EXPR
, retval
));
6329 /* The SWITCH_STMT being built. */
6332 /* The original type of the testing expression, ie. before the
6333 default conversion is applied. */
6336 /* A splay-tree mapping the low element of a case range to the high
6337 element, or NULL_TREE if there is no high element. Used to
6338 determine whether or not a new case label duplicates an old case
6339 label. We need a tree, rather than simply a hash table, because
6340 of the GNU case range extension. */
6343 /* The next node on the stack. */
6344 struct c_switch
*next
;
6347 /* A stack of the currently active switch statements. The innermost
6348 switch statement is on the top of the stack. There is no need to
6349 mark the stack for garbage collection because it is only active
6350 during the processing of the body of a function, and we never
6351 collect at that point. */
6353 struct c_switch
*c_switch_stack
;
6355 /* Start a C switch statement, testing expression EXP. Return the new
6359 c_start_case (tree exp
)
6361 enum tree_code code
;
6362 tree type
, orig_type
= error_mark_node
;
6363 struct c_switch
*cs
;
6365 if (exp
!= error_mark_node
)
6367 code
= TREE_CODE (TREE_TYPE (exp
));
6368 orig_type
= TREE_TYPE (exp
);
6370 if (! INTEGRAL_TYPE_P (orig_type
)
6371 && code
!= ERROR_MARK
)
6373 error ("switch quantity not an integer");
6374 exp
= integer_zero_node
;
6378 type
= TYPE_MAIN_VARIANT (TREE_TYPE (exp
));
6380 if (warn_traditional
&& !in_system_header
6381 && (type
== long_integer_type_node
6382 || type
== long_unsigned_type_node
))
6383 warning ("`long' switch expression not converted to `int' in ISO C");
6385 exp
= default_conversion (exp
);
6386 type
= TREE_TYPE (exp
);
6390 /* Add this new SWITCH_STMT to the stack. */
6391 cs
= XNEW (struct c_switch
);
6392 cs
->switch_stmt
= build_stmt ((enum tree_code
) SWITCH_STMT
, exp
, NULL_TREE
,
6394 cs
->orig_type
= orig_type
;
6395 cs
->cases
= splay_tree_new (case_compare
, NULL
, NULL
);
6396 cs
->next
= c_switch_stack
;
6397 c_switch_stack
= cs
;
6399 return add_stmt (cs
->switch_stmt
);
6402 /* Process a case label. */
6405 do_case (tree low_value
, tree high_value
)
6407 tree label
= NULL_TREE
;
6411 label
= c_add_case_label (c_switch_stack
->cases
,
6412 SWITCH_COND (c_switch_stack
->switch_stmt
),
6413 c_switch_stack
->orig_type
,
6414 low_value
, high_value
);
6415 if (label
== error_mark_node
)
6419 error ("case label not within a switch statement");
6421 error ("`default' label not within a switch statement");
6426 /* Finish the switch statement. */
6429 c_finish_case (tree body
)
6431 struct c_switch
*cs
= c_switch_stack
;
6433 SWITCH_BODY (cs
->switch_stmt
) = body
;
6435 /* Emit warnings as needed. */
6436 c_do_switch_warnings (cs
->cases
, cs
->switch_stmt
);
6438 /* Pop the stack. */
6439 c_switch_stack
= cs
->next
;
6440 splay_tree_delete (cs
->cases
);
6444 /* Emit an if statement. IF_LOCUS is the location of the 'if'. COND,
6445 THEN_BLOCK and ELSE_BLOCK are expressions to be used; ELSE_BLOCK
6446 may be null. NESTED_IF is true if THEN_BLOCK contains another IF
6447 statement, and was not surrounded with parenthesis. */
6450 c_finish_if_stmt (location_t if_locus
, tree cond
, tree then_block
,
6451 tree else_block
, bool nested_if
)
6455 /* Diagnose an ambiguous else if if-then-else is nested inside if-then. */
6456 if (warn_parentheses
&& nested_if
&& else_block
== NULL
)
6458 tree inner_if
= then_block
;
6460 /* We know from the grammar productions that there is an IF nested
6461 within THEN_BLOCK. Due to labels and c99 conditional declarations,
6462 it might not be exactly THEN_BLOCK, but should be the last
6463 non-container statement within. */
6465 switch (TREE_CODE (inner_if
))
6470 inner_if
= BIND_EXPR_BODY (inner_if
);
6472 case STATEMENT_LIST
:
6473 inner_if
= expr_last (then_block
);
6475 case TRY_FINALLY_EXPR
:
6476 case TRY_CATCH_EXPR
:
6477 inner_if
= TREE_OPERAND (inner_if
, 0);
6484 if (COND_EXPR_ELSE (inner_if
))
6485 warning ("%Hsuggest explicit braces to avoid ambiguous `else'",
6489 /* Diagnose ";" via the special empty statement node that we create. */
6492 if (TREE_CODE (then_block
) == NOP_EXPR
&& !TREE_TYPE (then_block
))
6495 warning ("%Hempty body in an if-statement",
6496 EXPR_LOCUS (then_block
));
6497 then_block
= alloc_stmt_list ();
6500 && TREE_CODE (else_block
) == NOP_EXPR
6501 && !TREE_TYPE (else_block
))
6503 warning ("%Hempty body in an else-statement",
6504 EXPR_LOCUS (else_block
));
6505 else_block
= alloc_stmt_list ();
6509 stmt
= build3 (COND_EXPR
, NULL_TREE
, cond
, then_block
, else_block
);
6510 SET_EXPR_LOCATION (stmt
, if_locus
);
6514 /* Emit a general-purpose loop construct. START_LOCUS is the location of
6515 the beginning of the loop. COND is the loop condition. COND_IS_FIRST
6516 is false for DO loops. INCR is the FOR increment expression. BODY is
6517 the statement controlled by the loop. BLAB is the break label. CLAB is
6518 the continue label. Everything is allowed to be NULL. */
6521 c_finish_loop (location_t start_locus
, tree cond
, tree incr
, tree body
,
6522 tree blab
, tree clab
, bool cond_is_first
)
6524 tree entry
= NULL
, exit
= NULL
, t
;
6526 /* Detect do { ... } while (0) and don't generate loop construct. */
6527 if (cond
&& !cond_is_first
&& integer_zerop (cond
))
6529 if (cond_is_first
|| cond
)
6531 tree top
= build1 (LABEL_EXPR
, void_type_node
, NULL_TREE
);
6533 /* If we have an exit condition, then we build an IF with gotos either
6534 out of the loop, or to the top of it. If there's no exit condition,
6535 then we just build a jump back to the top. */
6536 exit
= build_and_jump (&LABEL_EXPR_LABEL (top
));
6540 /* Canonicalize the loop condition to the end. This means
6541 generating a branch to the loop condition. Reuse the
6542 continue label, if possible. */
6547 entry
= build1 (LABEL_EXPR
, void_type_node
, NULL_TREE
);
6548 t
= build_and_jump (&LABEL_EXPR_LABEL (entry
));
6551 t
= build1 (GOTO_EXPR
, void_type_node
, clab
);
6552 SET_EXPR_LOCATION (t
, start_locus
);
6556 t
= build_and_jump (&blab
);
6557 exit
= build (COND_EXPR
, void_type_node
, cond
, exit
, t
);
6560 SET_EXPR_LOCATION (exit
, start_locus
);
6562 SET_EXPR_LOCATION (exit
, input_location
);
6571 add_stmt (build1 (LABEL_EXPR
, void_type_node
, clab
));
6579 add_stmt (build1 (LABEL_EXPR
, void_type_node
, blab
));
6583 c_finish_bc_stmt (tree
*label_p
, bool is_break
)
6585 tree label
= *label_p
;
6588 *label_p
= label
= create_artificial_label ();
6589 else if (TREE_CODE (label
) != LABEL_DECL
)
6592 error ("break statement not within loop or switch");
6594 error ("continue statement not within a loop");
6598 return add_stmt (build (GOTO_EXPR
, void_type_node
, label
));
6601 /* A helper routine for c_process_expr_stmt and c_finish_stmt_expr. */
6604 emit_side_effect_warnings (tree expr
)
6606 if (expr
== error_mark_node
)
6608 else if (!TREE_SIDE_EFFECTS (expr
))
6610 if (!VOID_TYPE_P (TREE_TYPE (expr
)) && !TREE_NO_WARNING (expr
))
6611 warning ("%Hstatement with no effect",
6612 EXPR_HAS_LOCATION (expr
) ? EXPR_LOCUS (expr
) : &input_location
);
6614 else if (warn_unused_value
)
6615 warn_if_unused_value (expr
, input_location
);
6618 /* Process an expression as if it were a complete statement. Emit
6619 diagnostics, but do not call ADD_STMT. */
6622 c_process_expr_stmt (tree expr
)
6627 /* Do default conversion if safe and possibly important,
6628 in case within ({...}). */
6629 if ((TREE_CODE (TREE_TYPE (expr
)) == ARRAY_TYPE
6630 && (flag_isoc99
|| lvalue_p (expr
)))
6631 || TREE_CODE (TREE_TYPE (expr
)) == FUNCTION_TYPE
)
6632 expr
= default_conversion (expr
);
6634 if (warn_sequence_point
)
6635 verify_sequence_points (expr
);
6637 if (TREE_TYPE (expr
) != error_mark_node
6638 && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr
))
6639 && TREE_CODE (TREE_TYPE (expr
)) != ARRAY_TYPE
)
6640 error ("expression statement has incomplete type");
6642 /* If we're not processing a statement expression, warn about unused values.
6643 Warnings for statement expressions will be emitted later, once we figure
6644 out which is the result. */
6645 if (!STATEMENT_LIST_STMT_EXPR (cur_stmt_list
)
6646 && (extra_warnings
|| warn_unused_value
))
6647 emit_side_effect_warnings (expr
);
6649 /* If the expression is not of a type to which we cannot assign a line
6650 number, wrap the thing in a no-op NOP_EXPR. */
6651 if (DECL_P (expr
) || TREE_CODE_CLASS (TREE_CODE (expr
)) == 'c')
6652 expr
= build1 (NOP_EXPR
, TREE_TYPE (expr
), expr
);
6655 SET_EXPR_LOCATION (expr
, input_location
);
6660 /* Emit an expression as a statement. */
6663 c_finish_expr_stmt (tree expr
)
6666 return add_stmt (c_process_expr_stmt (expr
));
6671 /* Do the opposite and emit a statement as an expression. To begin,
6672 create a new binding level and return it. */
6675 c_begin_stmt_expr (void)
6679 /* We must force a BLOCK for this level so that, if it is not expanded
6680 later, there is a way to turn off the entire subtree of blocks that
6681 are contained in it. */
6683 ret
= c_begin_compound_stmt (true);
6685 /* Mark the current statement list as belonging to a statement list. */
6686 STATEMENT_LIST_STMT_EXPR (ret
) = 1;
6692 c_finish_stmt_expr (tree body
)
6694 tree last
, type
, tmp
, val
;
6697 body
= c_end_compound_stmt (body
, true);
6699 /* Locate the last statement in BODY. See c_end_compound_stmt
6700 about always returning a BIND_EXPR. */
6701 last_p
= &BIND_EXPR_BODY (body
);
6702 last
= BIND_EXPR_BODY (body
);
6705 if (TREE_CODE (last
) == STATEMENT_LIST
)
6707 tree_stmt_iterator i
;
6709 /* This can happen with degenerate cases like ({ }). No value. */
6710 if (!TREE_SIDE_EFFECTS (last
))
6713 /* If we're supposed to generate side effects warnings, process
6714 all of the statements except the last. */
6715 if (extra_warnings
|| warn_unused_value
)
6717 for (i
= tsi_start (last
); !tsi_one_before_end_p (i
); tsi_next (&i
))
6718 emit_side_effect_warnings (tsi_stmt (i
));
6721 i
= tsi_last (last
);
6722 last_p
= tsi_stmt_ptr (i
);
6726 /* If the end of the list is exception related, then the list was split
6727 by a call to push_cleanup. Continue searching. */
6728 if (TREE_CODE (last
) == TRY_FINALLY_EXPR
6729 || TREE_CODE (last
) == TRY_CATCH_EXPR
)
6731 last_p
= &TREE_OPERAND (last
, 0);
6733 goto continue_searching
;
6736 /* In the case that the BIND_EXPR is not necessary, return the
6737 expression out from inside it. */
6738 if (last
== error_mark_node
6739 || (last
== BIND_EXPR_BODY (body
)
6740 && BIND_EXPR_VARS (body
) == NULL
))
6743 /* Extract the type of said expression. */
6744 type
= TREE_TYPE (last
);
6746 /* If we're not returning a value at all, then the BIND_EXPR that
6747 we already have is a fine expression to return. */
6748 if (!type
|| VOID_TYPE_P (type
))
6751 /* Now that we've located the expression containing the value, it seems
6752 silly to make voidify_wrapper_expr repeat the process. Create a
6753 temporary of the appropriate type and stick it in a TARGET_EXPR. */
6754 tmp
= create_tmp_var_raw (type
, NULL
);
6756 /* Unwrap a no-op NOP_EXPR as added by c_finish_expr_stmt. This avoids
6757 tree_expr_nonnegative_p giving up immediately. */
6759 if (TREE_CODE (val
) == NOP_EXPR
6760 && TREE_TYPE (val
) == TREE_TYPE (TREE_OPERAND (val
, 0)))
6761 val
= TREE_OPERAND (val
, 0);
6763 *last_p
= build (MODIFY_EXPR
, void_type_node
, tmp
, val
);
6764 SET_EXPR_LOCUS (*last_p
, EXPR_LOCUS (last
));
6766 return build (TARGET_EXPR
, type
, tmp
, body
, NULL_TREE
, NULL_TREE
);
6769 /* Begin and end compound statements. This is as simple as pushing
6770 and popping new statement lists from the tree. */
6773 c_begin_compound_stmt (bool do_scope
)
6775 tree stmt
= push_stmt_list ();
6782 c_end_compound_stmt (tree stmt
, bool do_scope
)
6788 if (c_dialect_objc ())
6789 objc_clear_super_receiver ();
6790 block
= pop_scope ();
6793 stmt
= pop_stmt_list (stmt
);
6794 stmt
= c_build_bind_expr (block
, stmt
);
6796 /* If this compound statement is nested immediately inside a statement
6797 expression, then force a BIND_EXPR to be created. Otherwise we'll
6798 do the wrong thing for ({ { 1; } }) or ({ 1; { } }). In particular,
6799 STATEMENT_LISTs merge, and thus we can lose track of what statement
6802 && STATEMENT_LIST_STMT_EXPR (cur_stmt_list
)
6803 && TREE_CODE (stmt
) != BIND_EXPR
)
6805 stmt
= build (BIND_EXPR
, void_type_node
, NULL
, stmt
, NULL
);
6806 TREE_SIDE_EFFECTS (stmt
) = 1;
6812 /* Queue a cleanup. CLEANUP is an expression/statement to be executed
6813 when the current scope is exited. EH_ONLY is true when this is not
6814 meant to apply to normal control flow transfer. */
6817 push_cleanup (tree
ARG_UNUSED (decl
), tree cleanup
, bool eh_only
)
6819 enum tree_code code
;
6823 code
= eh_only
? TRY_CATCH_EXPR
: TRY_FINALLY_EXPR
;
6824 stmt
= build_stmt (code
, NULL
, cleanup
);
6826 stmt_expr
= STATEMENT_LIST_STMT_EXPR (cur_stmt_list
);
6827 list
= push_stmt_list ();
6828 TREE_OPERAND (stmt
, 0) = list
;
6829 STATEMENT_LIST_STMT_EXPR (list
) = stmt_expr
;
6832 /* Build a binary-operation expression without default conversions.
6833 CODE is the kind of expression to build.
6834 This function differs from `build' in several ways:
6835 the data type of the result is computed and recorded in it,
6836 warnings are generated if arg data types are invalid,
6837 special handling for addition and subtraction of pointers is known,
6838 and some optimization is done (operations on narrow ints
6839 are done in the narrower type when that gives the same result).
6840 Constant folding is also done before the result is returned.
6842 Note that the operands will never have enumeral types, or function
6843 or array types, because either they will have the default conversions
6844 performed or they have both just been converted to some other type in which
6845 the arithmetic is to be done. */
6848 build_binary_op (enum tree_code code
, tree orig_op0
, tree orig_op1
,
6852 enum tree_code code0
, code1
;
6855 /* Expression code to give to the expression when it is built.
6856 Normally this is CODE, which is what the caller asked for,
6857 but in some special cases we change it. */
6858 enum tree_code resultcode
= code
;
6860 /* Data type in which the computation is to be performed.
6861 In the simplest cases this is the common type of the arguments. */
6862 tree result_type
= NULL
;
6864 /* Nonzero means operands have already been type-converted
6865 in whatever way is necessary.
6866 Zero means they need to be converted to RESULT_TYPE. */
6869 /* Nonzero means create the expression with this type, rather than
6871 tree build_type
= 0;
6873 /* Nonzero means after finally constructing the expression
6874 convert it to this type. */
6875 tree final_type
= 0;
6877 /* Nonzero if this is an operation like MIN or MAX which can
6878 safely be computed in short if both args are promoted shorts.
6879 Also implies COMMON.
6880 -1 indicates a bitwise operation; this makes a difference
6881 in the exact conditions for when it is safe to do the operation
6882 in a narrower mode. */
6885 /* Nonzero if this is a comparison operation;
6886 if both args are promoted shorts, compare the original shorts.
6887 Also implies COMMON. */
6888 int short_compare
= 0;
6890 /* Nonzero if this is a right-shift operation, which can be computed on the
6891 original short and then promoted if the operand is a promoted short. */
6892 int short_shift
= 0;
6894 /* Nonzero means set RESULT_TYPE to the common type of the args. */
6899 op0
= default_conversion (orig_op0
);
6900 op1
= default_conversion (orig_op1
);
6908 type0
= TREE_TYPE (op0
);
6909 type1
= TREE_TYPE (op1
);
6911 /* The expression codes of the data types of the arguments tell us
6912 whether the arguments are integers, floating, pointers, etc. */
6913 code0
= TREE_CODE (type0
);
6914 code1
= TREE_CODE (type1
);
6916 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
6917 STRIP_TYPE_NOPS (op0
);
6918 STRIP_TYPE_NOPS (op1
);
6920 /* If an error was already reported for one of the arguments,
6921 avoid reporting another error. */
6923 if (code0
== ERROR_MARK
|| code1
== ERROR_MARK
)
6924 return error_mark_node
;
6929 /* Handle the pointer + int case. */
6930 if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
6931 return pointer_int_sum (PLUS_EXPR
, op0
, op1
);
6932 else if (code1
== POINTER_TYPE
&& code0
== INTEGER_TYPE
)
6933 return pointer_int_sum (PLUS_EXPR
, op1
, op0
);
6939 /* Subtraction of two similar pointers.
6940 We must subtract them as integers, then divide by object size. */
6941 if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
6942 && comp_target_types (type0
, type1
, 1))
6943 return pointer_diff (op0
, op1
);
6944 /* Handle pointer minus int. Just like pointer plus int. */
6945 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
6946 return pointer_int_sum (MINUS_EXPR
, op0
, op1
);
6955 case TRUNC_DIV_EXPR
:
6957 case FLOOR_DIV_EXPR
:
6958 case ROUND_DIV_EXPR
:
6959 case EXACT_DIV_EXPR
:
6960 /* Floating point division by zero is a legitimate way to obtain
6961 infinities and NaNs. */
6962 if (warn_div_by_zero
&& skip_evaluation
== 0 && integer_zerop (op1
))
6963 warning ("division by zero");
6965 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
6966 || code0
== COMPLEX_TYPE
|| code0
== VECTOR_TYPE
)
6967 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
6968 || code1
== COMPLEX_TYPE
|| code1
== VECTOR_TYPE
))
6970 if (code0
== COMPLEX_TYPE
|| code0
== VECTOR_TYPE
)
6971 code0
= TREE_CODE (TREE_TYPE (TREE_TYPE (op0
)));
6972 if (code1
== COMPLEX_TYPE
|| code1
== VECTOR_TYPE
)
6973 code1
= TREE_CODE (TREE_TYPE (TREE_TYPE (op1
)));
6975 if (!(code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
))
6976 resultcode
= RDIV_EXPR
;
6978 /* Although it would be tempting to shorten always here, that
6979 loses on some targets, since the modulo instruction is
6980 undefined if the quotient can't be represented in the
6981 computation mode. We shorten only if unsigned or if
6982 dividing by something we know != -1. */
6983 shorten
= (TYPE_UNSIGNED (TREE_TYPE (orig_op0
))
6984 || (TREE_CODE (op1
) == INTEGER_CST
6985 && ! integer_all_onesp (op1
)));
6993 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
6995 else if (code0
== VECTOR_TYPE
&& code1
== VECTOR_TYPE
)
6999 case TRUNC_MOD_EXPR
:
7000 case FLOOR_MOD_EXPR
:
7001 if (warn_div_by_zero
&& skip_evaluation
== 0 && integer_zerop (op1
))
7002 warning ("division by zero");
7004 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
7006 /* Although it would be tempting to shorten always here, that loses
7007 on some targets, since the modulo instruction is undefined if the
7008 quotient can't be represented in the computation mode. We shorten
7009 only if unsigned or if dividing by something we know != -1. */
7010 shorten
= (TYPE_UNSIGNED (TREE_TYPE (orig_op0
))
7011 || (TREE_CODE (op1
) == INTEGER_CST
7012 && ! integer_all_onesp (op1
)));
7017 case TRUTH_ANDIF_EXPR
:
7018 case TRUTH_ORIF_EXPR
:
7019 case TRUTH_AND_EXPR
:
7021 case TRUTH_XOR_EXPR
:
7022 if ((code0
== INTEGER_TYPE
|| code0
== POINTER_TYPE
7023 || code0
== REAL_TYPE
|| code0
== COMPLEX_TYPE
)
7024 && (code1
== INTEGER_TYPE
|| code1
== POINTER_TYPE
7025 || code1
== REAL_TYPE
|| code1
== COMPLEX_TYPE
))
7027 /* Result of these operations is always an int,
7028 but that does not mean the operands should be
7029 converted to ints! */
7030 result_type
= integer_type_node
;
7031 op0
= lang_hooks
.truthvalue_conversion (op0
);
7032 op1
= lang_hooks
.truthvalue_conversion (op1
);
7037 /* Shift operations: result has same type as first operand;
7038 always convert second operand to int.
7039 Also set SHORT_SHIFT if shifting rightward. */
7042 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
7044 if (TREE_CODE (op1
) == INTEGER_CST
&& skip_evaluation
== 0)
7046 if (tree_int_cst_sgn (op1
) < 0)
7047 warning ("right shift count is negative");
7050 if (! integer_zerop (op1
))
7053 if (compare_tree_int (op1
, TYPE_PRECISION (type0
)) >= 0)
7054 warning ("right shift count >= width of type");
7058 /* Use the type of the value to be shifted. */
7059 result_type
= type0
;
7060 /* Convert the shift-count to an integer, regardless of size
7061 of value being shifted. */
7062 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1
)) != integer_type_node
)
7063 op1
= convert (integer_type_node
, op1
);
7064 /* Avoid converting op1 to result_type later. */
7070 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
7072 if (TREE_CODE (op1
) == INTEGER_CST
&& skip_evaluation
== 0)
7074 if (tree_int_cst_sgn (op1
) < 0)
7075 warning ("left shift count is negative");
7077 else if (compare_tree_int (op1
, TYPE_PRECISION (type0
)) >= 0)
7078 warning ("left shift count >= width of type");
7081 /* Use the type of the value to be shifted. */
7082 result_type
= type0
;
7083 /* Convert the shift-count to an integer, regardless of size
7084 of value being shifted. */
7085 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1
)) != integer_type_node
)
7086 op1
= convert (integer_type_node
, op1
);
7087 /* Avoid converting op1 to result_type later. */
7094 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
7096 if (TREE_CODE (op1
) == INTEGER_CST
&& skip_evaluation
== 0)
7098 if (tree_int_cst_sgn (op1
) < 0)
7099 warning ("shift count is negative");
7100 else if (compare_tree_int (op1
, TYPE_PRECISION (type0
)) >= 0)
7101 warning ("shift count >= width of type");
7104 /* Use the type of the value to be shifted. */
7105 result_type
= type0
;
7106 /* Convert the shift-count to an integer, regardless of size
7107 of value being shifted. */
7108 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1
)) != integer_type_node
)
7109 op1
= convert (integer_type_node
, op1
);
7110 /* Avoid converting op1 to result_type later. */
7117 if (warn_float_equal
&& (code0
== REAL_TYPE
|| code1
== REAL_TYPE
))
7118 warning ("comparing floating point with == or != is unsafe");
7119 /* Result of comparison is always int,
7120 but don't convert the args to int! */
7121 build_type
= integer_type_node
;
7122 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
7123 || code0
== COMPLEX_TYPE
)
7124 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
7125 || code1
== COMPLEX_TYPE
))
7127 else if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
)
7129 tree tt0
= TREE_TYPE (type0
);
7130 tree tt1
= TREE_TYPE (type1
);
7131 /* Anything compares with void *. void * compares with anything.
7132 Otherwise, the targets must be compatible
7133 and both must be object or both incomplete. */
7134 if (comp_target_types (type0
, type1
, 1))
7135 result_type
= common_pointer_type (type0
, type1
);
7136 else if (VOID_TYPE_P (tt0
))
7138 /* op0 != orig_op0 detects the case of something
7139 whose value is 0 but which isn't a valid null ptr const. */
7140 if (pedantic
&& (!integer_zerop (op0
) || op0
!= orig_op0
)
7141 && TREE_CODE (tt1
) == FUNCTION_TYPE
)
7142 pedwarn ("ISO C forbids comparison of `void *' with function pointer");
7144 else if (VOID_TYPE_P (tt1
))
7146 if (pedantic
&& (!integer_zerop (op1
) || op1
!= orig_op1
)
7147 && TREE_CODE (tt0
) == FUNCTION_TYPE
)
7148 pedwarn ("ISO C forbids comparison of `void *' with function pointer");
7151 pedwarn ("comparison of distinct pointer types lacks a cast");
7153 if (result_type
== NULL_TREE
)
7154 result_type
= ptr_type_node
;
7156 else if (code0
== POINTER_TYPE
&& TREE_CODE (op1
) == INTEGER_CST
7157 && integer_zerop (op1
))
7158 result_type
= type0
;
7159 else if (code1
== POINTER_TYPE
&& TREE_CODE (op0
) == INTEGER_CST
7160 && integer_zerop (op0
))
7161 result_type
= type1
;
7162 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
7164 result_type
= type0
;
7165 pedwarn ("comparison between pointer and integer");
7167 else if (code0
== INTEGER_TYPE
&& code1
== POINTER_TYPE
)
7169 result_type
= type1
;
7170 pedwarn ("comparison between pointer and integer");
7176 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
)
7177 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
))
7179 else if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
)
7181 if (comp_target_types (type0
, type1
, 1))
7183 result_type
= common_pointer_type (type0
, type1
);
7185 && TREE_CODE (TREE_TYPE (type0
)) == FUNCTION_TYPE
)
7186 pedwarn ("ISO C forbids ordered comparisons of pointers to functions");
7190 result_type
= ptr_type_node
;
7191 pedwarn ("comparison of distinct pointer types lacks a cast");
7200 build_type
= integer_type_node
;
7201 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
)
7202 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
))
7204 else if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
)
7206 if (comp_target_types (type0
, type1
, 1))
7208 result_type
= common_pointer_type (type0
, type1
);
7209 if (!COMPLETE_TYPE_P (TREE_TYPE (type0
))
7210 != !COMPLETE_TYPE_P (TREE_TYPE (type1
)))
7211 pedwarn ("comparison of complete and incomplete pointers");
7213 && TREE_CODE (TREE_TYPE (type0
)) == FUNCTION_TYPE
)
7214 pedwarn ("ISO C forbids ordered comparisons of pointers to functions");
7218 result_type
= ptr_type_node
;
7219 pedwarn ("comparison of distinct pointer types lacks a cast");
7222 else if (code0
== POINTER_TYPE
&& TREE_CODE (op1
) == INTEGER_CST
7223 && integer_zerop (op1
))
7225 result_type
= type0
;
7226 if (pedantic
|| extra_warnings
)
7227 pedwarn ("ordered comparison of pointer with integer zero");
7229 else if (code1
== POINTER_TYPE
&& TREE_CODE (op0
) == INTEGER_CST
7230 && integer_zerop (op0
))
7232 result_type
= type1
;
7234 pedwarn ("ordered comparison of pointer with integer zero");
7236 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
7238 result_type
= type0
;
7239 pedwarn ("comparison between pointer and integer");
7241 else if (code0
== INTEGER_TYPE
&& code1
== POINTER_TYPE
)
7243 result_type
= type1
;
7244 pedwarn ("comparison between pointer and integer");
7248 case UNORDERED_EXPR
:
7256 build_type
= integer_type_node
;
7257 if (code0
!= REAL_TYPE
|| code1
!= REAL_TYPE
)
7259 error ("unordered comparison on non-floating point argument");
7260 return error_mark_node
;
7269 if (code0
== ERROR_MARK
|| code1
== ERROR_MARK
)
7270 return error_mark_node
;
7272 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
|| code0
== COMPLEX_TYPE
7273 || code0
== VECTOR_TYPE
)
7275 (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
|| code1
== COMPLEX_TYPE
7276 || code1
== VECTOR_TYPE
))
7278 int none_complex
= (code0
!= COMPLEX_TYPE
&& code1
!= COMPLEX_TYPE
);
7280 if (shorten
|| common
|| short_compare
)
7281 result_type
= common_type (type0
, type1
);
7283 /* For certain operations (which identify themselves by shorten != 0)
7284 if both args were extended from the same smaller type,
7285 do the arithmetic in that type and then extend.
7287 shorten !=0 and !=1 indicates a bitwise operation.
7288 For them, this optimization is safe only if
7289 both args are zero-extended or both are sign-extended.
7290 Otherwise, we might change the result.
7291 Eg, (short)-1 | (unsigned short)-1 is (int)-1
7292 but calculated in (unsigned short) it would be (unsigned short)-1. */
7294 if (shorten
&& none_complex
)
7296 int unsigned0
, unsigned1
;
7297 tree arg0
= get_narrower (op0
, &unsigned0
);
7298 tree arg1
= get_narrower (op1
, &unsigned1
);
7299 /* UNS is 1 if the operation to be done is an unsigned one. */
7300 int uns
= TYPE_UNSIGNED (result_type
);
7303 final_type
= result_type
;
7305 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
7306 but it *requires* conversion to FINAL_TYPE. */
7308 if ((TYPE_PRECISION (TREE_TYPE (op0
))
7309 == TYPE_PRECISION (TREE_TYPE (arg0
)))
7310 && TREE_TYPE (op0
) != final_type
)
7311 unsigned0
= TYPE_UNSIGNED (TREE_TYPE (op0
));
7312 if ((TYPE_PRECISION (TREE_TYPE (op1
))
7313 == TYPE_PRECISION (TREE_TYPE (arg1
)))
7314 && TREE_TYPE (op1
) != final_type
)
7315 unsigned1
= TYPE_UNSIGNED (TREE_TYPE (op1
));
7317 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
7319 /* For bitwise operations, signedness of nominal type
7320 does not matter. Consider only how operands were extended. */
7324 /* Note that in all three cases below we refrain from optimizing
7325 an unsigned operation on sign-extended args.
7326 That would not be valid. */
7328 /* Both args variable: if both extended in same way
7329 from same width, do it in that width.
7330 Do it unsigned if args were zero-extended. */
7331 if ((TYPE_PRECISION (TREE_TYPE (arg0
))
7332 < TYPE_PRECISION (result_type
))
7333 && (TYPE_PRECISION (TREE_TYPE (arg1
))
7334 == TYPE_PRECISION (TREE_TYPE (arg0
)))
7335 && unsigned0
== unsigned1
7336 && (unsigned0
|| !uns
))
7338 = c_common_signed_or_unsigned_type
7339 (unsigned0
, common_type (TREE_TYPE (arg0
), TREE_TYPE (arg1
)));
7340 else if (TREE_CODE (arg0
) == INTEGER_CST
7341 && (unsigned1
|| !uns
)
7342 && (TYPE_PRECISION (TREE_TYPE (arg1
))
7343 < TYPE_PRECISION (result_type
))
7345 = c_common_signed_or_unsigned_type (unsigned1
,
7347 int_fits_type_p (arg0
, type
)))
7349 else if (TREE_CODE (arg1
) == INTEGER_CST
7350 && (unsigned0
|| !uns
)
7351 && (TYPE_PRECISION (TREE_TYPE (arg0
))
7352 < TYPE_PRECISION (result_type
))
7354 = c_common_signed_or_unsigned_type (unsigned0
,
7356 int_fits_type_p (arg1
, type
)))
7360 /* Shifts can be shortened if shifting right. */
7365 tree arg0
= get_narrower (op0
, &unsigned_arg
);
7367 final_type
= result_type
;
7369 if (arg0
== op0
&& final_type
== TREE_TYPE (op0
))
7370 unsigned_arg
= TYPE_UNSIGNED (TREE_TYPE (op0
));
7372 if (TYPE_PRECISION (TREE_TYPE (arg0
)) < TYPE_PRECISION (result_type
)
7373 /* We can shorten only if the shift count is less than the
7374 number of bits in the smaller type size. */
7375 && compare_tree_int (op1
, TYPE_PRECISION (TREE_TYPE (arg0
))) < 0
7376 /* We cannot drop an unsigned shift after sign-extension. */
7377 && (!TYPE_UNSIGNED (final_type
) || unsigned_arg
))
7379 /* Do an unsigned shift if the operand was zero-extended. */
7381 = c_common_signed_or_unsigned_type (unsigned_arg
,
7383 /* Convert value-to-be-shifted to that type. */
7384 if (TREE_TYPE (op0
) != result_type
)
7385 op0
= convert (result_type
, op0
);
7390 /* Comparison operations are shortened too but differently.
7391 They identify themselves by setting short_compare = 1. */
7395 /* Don't write &op0, etc., because that would prevent op0
7396 from being kept in a register.
7397 Instead, make copies of the our local variables and
7398 pass the copies by reference, then copy them back afterward. */
7399 tree xop0
= op0
, xop1
= op1
, xresult_type
= result_type
;
7400 enum tree_code xresultcode
= resultcode
;
7402 = shorten_compare (&xop0
, &xop1
, &xresult_type
, &xresultcode
);
7407 op0
= xop0
, op1
= xop1
;
7409 resultcode
= xresultcode
;
7411 if (warn_sign_compare
&& skip_evaluation
== 0)
7413 int op0_signed
= ! TYPE_UNSIGNED (TREE_TYPE (orig_op0
));
7414 int op1_signed
= ! TYPE_UNSIGNED (TREE_TYPE (orig_op1
));
7415 int unsignedp0
, unsignedp1
;
7416 tree primop0
= get_narrower (op0
, &unsignedp0
);
7417 tree primop1
= get_narrower (op1
, &unsignedp1
);
7421 STRIP_TYPE_NOPS (xop0
);
7422 STRIP_TYPE_NOPS (xop1
);
7424 /* Give warnings for comparisons between signed and unsigned
7425 quantities that may fail.
7427 Do the checking based on the original operand trees, so that
7428 casts will be considered, but default promotions won't be.
7430 Do not warn if the comparison is being done in a signed type,
7431 since the signed type will only be chosen if it can represent
7432 all the values of the unsigned type. */
7433 if (! TYPE_UNSIGNED (result_type
))
7435 /* Do not warn if both operands are the same signedness. */
7436 else if (op0_signed
== op1_signed
)
7443 sop
= xop0
, uop
= xop1
;
7445 sop
= xop1
, uop
= xop0
;
7447 /* Do not warn if the signed quantity is an
7448 unsuffixed integer literal (or some static
7449 constant expression involving such literals or a
7450 conditional expression involving such literals)
7451 and it is non-negative. */
7452 if (tree_expr_nonnegative_p (sop
))
7454 /* Do not warn if the comparison is an equality operation,
7455 the unsigned quantity is an integral constant, and it
7456 would fit in the result if the result were signed. */
7457 else if (TREE_CODE (uop
) == INTEGER_CST
7458 && (resultcode
== EQ_EXPR
|| resultcode
== NE_EXPR
)
7460 (uop
, c_common_signed_type (result_type
)))
7462 /* Do not warn if the unsigned quantity is an enumeration
7463 constant and its maximum value would fit in the result
7464 if the result were signed. */
7465 else if (TREE_CODE (uop
) == INTEGER_CST
7466 && TREE_CODE (TREE_TYPE (uop
)) == ENUMERAL_TYPE
7468 (TYPE_MAX_VALUE (TREE_TYPE(uop
)),
7469 c_common_signed_type (result_type
)))
7472 warning ("comparison between signed and unsigned");
7475 /* Warn if two unsigned values are being compared in a size
7476 larger than their original size, and one (and only one) is the
7477 result of a `~' operator. This comparison will always fail.
7479 Also warn if one operand is a constant, and the constant
7480 does not have all bits set that are set in the ~ operand
7481 when it is extended. */
7483 if ((TREE_CODE (primop0
) == BIT_NOT_EXPR
)
7484 != (TREE_CODE (primop1
) == BIT_NOT_EXPR
))
7486 if (TREE_CODE (primop0
) == BIT_NOT_EXPR
)
7487 primop0
= get_narrower (TREE_OPERAND (primop0
, 0),
7490 primop1
= get_narrower (TREE_OPERAND (primop1
, 0),
7493 if (host_integerp (primop0
, 0) || host_integerp (primop1
, 0))
7496 HOST_WIDE_INT constant
, mask
;
7497 int unsignedp
, bits
;
7499 if (host_integerp (primop0
, 0))
7502 unsignedp
= unsignedp1
;
7503 constant
= tree_low_cst (primop0
, 0);
7508 unsignedp
= unsignedp0
;
7509 constant
= tree_low_cst (primop1
, 0);
7512 bits
= TYPE_PRECISION (TREE_TYPE (primop
));
7513 if (bits
< TYPE_PRECISION (result_type
)
7514 && bits
< HOST_BITS_PER_WIDE_INT
&& unsignedp
)
7516 mask
= (~ (HOST_WIDE_INT
) 0) << bits
;
7517 if ((mask
& constant
) != mask
)
7518 warning ("comparison of promoted ~unsigned with constant");
7521 else if (unsignedp0
&& unsignedp1
7522 && (TYPE_PRECISION (TREE_TYPE (primop0
))
7523 < TYPE_PRECISION (result_type
))
7524 && (TYPE_PRECISION (TREE_TYPE (primop1
))
7525 < TYPE_PRECISION (result_type
)))
7526 warning ("comparison of promoted ~unsigned with unsigned");
7532 /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
7533 If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
7534 Then the expression will be built.
7535 It will be given type FINAL_TYPE if that is nonzero;
7536 otherwise, it will be given type RESULT_TYPE. */
7540 binary_op_error (code
);
7541 return error_mark_node
;
7546 if (TREE_TYPE (op0
) != result_type
)
7547 op0
= convert (result_type
, op0
);
7548 if (TREE_TYPE (op1
) != result_type
)
7549 op1
= convert (result_type
, op1
);
7552 if (build_type
== NULL_TREE
)
7553 build_type
= result_type
;
7556 tree result
= build (resultcode
, build_type
, op0
, op1
);
7558 /* Treat expressions in initializers specially as they can't trap. */
7559 result
= require_constant_value
? fold_initializer (result
)
7562 if (final_type
!= 0)
7563 result
= convert (final_type
, result
);
7568 /* Build the result of __builtin_offsetof. TYPE is the first argument to
7569 offsetof, i.e. a type. LIST is a tree_list that encodes component and
7570 array references; PURPOSE is set for the former and VALUE is set for
7574 build_offsetof (tree type
, tree list
)
7578 /* Build "*(type *)0". */
7579 t
= convert (build_pointer_type (type
), null_pointer_node
);
7580 t
= build_indirect_ref (t
, "");
7582 /* Build COMPONENT and ARRAY_REF expressions as needed. */
7583 for (list
= nreverse (list
); list
; list
= TREE_CHAIN (list
))
7584 if (TREE_PURPOSE (list
))
7585 t
= build_component_ref (t
, TREE_PURPOSE (list
));
7587 t
= build_array_ref (t
, TREE_VALUE (list
));
7589 /* Finalize the offsetof expression. For now all we need to do is take
7590 the address of the expression we created, and cast that to an integer
7591 type; this mirrors the traditional macro implementation of offsetof. */
7592 t
= build_unary_op (ADDR_EXPR
, t
, 0);
7593 return convert (size_type_node
, t
);